本文整理了Java中org.jf.dexlib2.Opcode.isOdexedInstanceVolatile()
方法的一些代码示例,展示了Opcode.isOdexedInstanceVolatile()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Opcode.isOdexedInstanceVolatile()
方法的具体详情如下:
包路径:org.jf.dexlib2.Opcode
类名称:Opcode
方法名:isOdexedInstanceVolatile
暂无
代码示例来源:origin: KB5201314/ZjDroid
private boolean isAllowedOdex(@Nonnull Opcode opcode) {
baksmaliOptions options = methodDef.classDef.options;
if (options.allowOdex) {
return true;
}
if (methodDef.classDef.options.apiLevel >= 14) {
return false;
}
return opcode.isOdexedInstanceVolatile() || opcode.isOdexedStaticVolatile() ||
opcode == Opcode.THROW_VERIFICATION_ERROR;
}
代码示例来源:origin: com.taobao.android/dex_patch
private boolean isAllowedOdex(@Nonnull Opcode opcode) {
baksmaliOptions options = methodDef.classDef.options;
if (options.allowOdex) {
return true;
}
if (methodDef.classDef.options.apiLevel >= 14) {
return false;
}
return opcode.isOdexedInstanceVolatile() || opcode.isOdexedStaticVolatile()
|| opcode == Opcode.THROW_VERIFICATION_ERROR;
}
代码示例来源:origin: KB5201314/ZjDroid
private static int getOpcodeSubtype(@Nonnull Opcode opcode) {
if (opcode.isOdexedInstanceQuick()) {
return 0;
} else if (opcode.isOdexedInstanceVolatile()) {
return 1;
} else if (opcode.isOdexedStaticVolatile()) {
return 2;
}
throw new RuntimeException(String.format("Not an odexed field access opcode: %s", opcode.name));
}
内容来源于网络,如有侵权,请联系作者删除!