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


Java Instruction22s类代码示例

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


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

示例1: newBuilderInstruction22s

import org.jf.dexlib2.iface.instruction.formats.Instruction22s; //导入依赖的package包/类
@Nonnull
private BuilderInstruction22s newBuilderInstruction22s(@Nonnull Instruction22s instruction) {
    return new BuilderInstruction22s(
            instruction.getOpcode(),
            instruction.getRegisterA(),
            instruction.getRegisterB(),
            instruction.getNarrowLiteral());
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:9,代码来源:BuilderMutableMethodImplementation.java

示例2: of

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

示例3: jimplify

import org.jf.dexlib2.iface.instruction.formats.Instruction22s; //导入依赖的package包/类
public void jimplify (DexBody body) {
     if(!(instruction instanceof Instruction22s) && !(instruction instanceof Instruction22b))
         throw new IllegalArgumentException("Expected Instruction22s or Instruction22b but got: "+instruction.getClass());

     NarrowLiteralInstruction binOpLitInstr = (NarrowLiteralInstruction) this.instruction;
     int dest = ((TwoRegisterInstruction) instruction).getRegisterA();
     int source = ((TwoRegisterInstruction) instruction).getRegisterB();

     Local source1 = body.getRegisterLocal(source);

     IntConstant constant = IntConstant.v((int)binOpLitInstr.getNarrowLiteral());

     expr = getExpression(source1, constant);

     assign = Jimple.v().newAssignStmt(body.getRegisterLocal(dest), expr);
     assign.addTag(getTag());

     setUnit(assign);
     addTags(assign);
     body.add(assign);
     
     if (IDalvikTyper.ENABLE_DVKTYPER) {
Debug.printDbg(IDalvikTyper.DEBUG, "constraint: "+ assign);
         int op = (int)instruction.getOpcode().value;
       if (op >= 0xd8) {
         op -= 0xd8;
       } else {
         op -= 0xd0;
       }
       BinopExpr bexpr = (BinopExpr)expr;
       //body.dvkTyper.setType((op == 1) ? bexpr.getOp2Box() : bexpr.getOp1Box(), op1BinType[op]);
       DalvikTyper.v().setType(((JAssignStmt)assign).leftBox, op1BinType[op], false);
     }
 }
 
开发者ID:flankerhqd,项目名称:JAADAS,代码行数:35,代码来源:BinopLitInstruction.java

示例4: of

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

示例5: write

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


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