当前位置: 首页>>代码示例>>Java>>正文


Java Instruction22t类代码示例

本文整理汇总了Java中org.jf.dexlib2.iface.instruction.formats.Instruction22t的典型用法代码示例。如果您正苦于以下问题:Java Instruction22t类的具体用法?Java Instruction22t怎么用?Java Instruction22t使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


Instruction22t类属于org.jf.dexlib2.iface.instruction.formats包,在下文中一共展示了Instruction22t类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: ifStatement

import org.jf.dexlib2.iface.instruction.formats.Instruction22t; //导入依赖的package包/类
protected IfStmt ifStatement(DexBody body) {
      Instruction22t i = (Instruction22t) instruction;
      Local one = body.getRegisterLocal(i.getRegisterA());
      Local other = body.getRegisterLocal(i.getRegisterB());
      BinopExpr condition = getComparisonExpr(one, other);
      jif = (JIfStmt)Jimple.v().newIfStmt(condition, targetInstruction.getUnit());
      // setUnit() is called in ConditionalJumpInstruction

if (IDalvikTyper.ENABLE_DVKTYPER) {
    Debug.printDbg(IDalvikTyper.DEBUG, "constraint if: "+ jif +" condition: "+ condition);
    DalvikTyper.v().addConstraint(condition.getOp1Box(), condition.getOp2Box());
      }
      
      
      return jif;
      
  }
 
开发者ID:flankerhqd,项目名称:JAADAS,代码行数:18,代码来源:IfTestInstruction.java

示例2: newBuilderInstruction22t

import org.jf.dexlib2.iface.instruction.formats.Instruction22t; //导入依赖的package包/类
@Nonnull
private BuilderInstruction22t newBuilderInstruction22t(int codeAddress, int[] codeAddressToIndex,
                                                       @Nonnull Instruction22t instruction) {
    return new BuilderInstruction22t(
            instruction.getOpcode(),
            instruction.getRegisterA(),
            instruction.getRegisterB(),
            newLabel(codeAddressToIndex, codeAddress + instruction.getCodeOffset()));
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:10,代码来源:BuilderMutableMethodImplementation.java

示例3: of

import org.jf.dexlib2.iface.instruction.formats.Instruction22t; //导入依赖的package包/类
public static ImmutableInstruction22t of(Instruction22t instruction) {
    if (instruction instanceof ImmutableInstruction22t) {
        return (ImmutableInstruction22t)instruction;
    }
    return new ImmutableInstruction22t(
            instruction.getOpcode(),
            instruction.getRegisterA(),
            instruction.getRegisterB(),
            instruction.getCodeOffset());
}
 
开发者ID:CvvT,项目名称:andbg,代码行数:11,代码来源:ImmutableInstruction22t.java

示例4: of

import org.jf.dexlib2.iface.instruction.formats.Instruction22t; //导入依赖的package包/类
public static ImmutableInstruction22t of(Instruction22t instruction) {
    if (instruction instanceof ImmutableInstruction22t) {
        return (ImmutableInstruction22t) instruction;
    }
    return new ImmutableInstruction22t(
            instruction.getOpcode(),
            instruction.getRegisterA(),
            instruction.getRegisterB(),
            instruction.getCodeOffset());
}
 
开发者ID:niranjan94,项目名称:show-java,代码行数:11,代码来源:ImmutableInstruction22t.java

示例5: write

import org.jf.dexlib2.iface.instruction.formats.Instruction22t; //导入依赖的package包/类
public void write(@Nonnull Instruction22t instruction) {
    try {
        writer.write(instruction.getOpcode().value);
        writer.write(packNibbles(instruction.getRegisterA(), instruction.getRegisterB()));
        writer.writeShort(instruction.getCodeOffset());
    } catch (IOException ex) {
        throw new RuntimeException(ex);
    }
}
 
开发者ID:niranjan94,项目名称:show-java,代码行数:10,代码来源:InstructionWriter.java


注:本文中的org.jf.dexlib2.iface.instruction.formats.Instruction22t类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。