本文整理汇总了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;
}
示例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()));
}
示例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());
}
示例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());
}
示例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);
}
}