org.jf.dexlib2.Opcode.isOdexedInstanceVolatile()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(84)

本文整理了Java中org.jf.dexlib2.Opcode.isOdexedInstanceVolatile()方法的一些代码示例,展示了Opcode.isOdexedInstanceVolatile()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Opcode.isOdexedInstanceVolatile()方法的具体详情如下:
包路径:org.jf.dexlib2.Opcode
类名称:Opcode
方法名:isOdexedInstanceVolatile

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));
}

相关文章