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


Java Instruction35c.getRegisterE方法代码示例

本文整理汇总了Java中org.jf.dexlib2.iface.instruction.formats.Instruction35c.getRegisterE方法的典型用法代码示例。如果您正苦于以下问题:Java Instruction35c.getRegisterE方法的具体用法?Java Instruction35c.getRegisterE怎么用?Java Instruction35c.getRegisterE使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.jf.dexlib2.iface.instruction.formats.Instruction35c的用法示例。


在下文中一共展示了Instruction35c.getRegisterE方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: newBuilderInstruction35c

import org.jf.dexlib2.iface.instruction.formats.Instruction35c; //导入方法依赖的package包/类
@Nonnull
private BuilderInstruction35c newBuilderInstruction35c(@Nonnull Instruction35c instruction) {
    return new BuilderInstruction35c(
            instruction.getOpcode(),
            instruction.getRegisterCount(),
            instruction.getRegisterC(),
            instruction.getRegisterD(),
            instruction.getRegisterE(),
            instruction.getRegisterF(),
            instruction.getRegisterG(),
            convertReference(instruction.getReference()));
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:13,代码来源:BuilderMutableMethodImplementation.java

示例2: of

import org.jf.dexlib2.iface.instruction.formats.Instruction35c; //导入方法依赖的package包/类
public static ImmutableInstruction35c of(Instruction35c instruction) {
    if (instruction instanceof ImmutableInstruction35c) {
        return (ImmutableInstruction35c)instruction;
    }
    return new ImmutableInstruction35c(
            instruction.getOpcode(),
            instruction.getRegisterCount(),
            instruction.getRegisterC(),
            instruction.getRegisterD(),
            instruction.getRegisterE(),
            instruction.getRegisterF(),
            instruction.getRegisterG(),
            instruction.getReference());
}
 
开发者ID:CvvT,项目名称:andbg,代码行数:15,代码来源:ImmutableInstruction35c.java

示例3: isRegisterUsed

import org.jf.dexlib2.iface.instruction.formats.Instruction35c; //导入方法依赖的package包/类
/**
 * Check if register is referenced by this instruction.
 *
 */
private boolean isRegisterUsed(int register) {
    Instruction35c i = (Instruction35c) instruction;
    return register == i.getRegisterD() ||
        register == i.getRegisterE() ||
        register == i.getRegisterF() ||
        register == i.getRegisterG() ||
        register == i.getRegisterC();
}
 
开发者ID:flankerhqd,项目名称:JAADAS,代码行数:13,代码来源:FilledNewArrayInstruction.java

示例4: of

import org.jf.dexlib2.iface.instruction.formats.Instruction35c; //导入方法依赖的package包/类
public static ImmutableInstruction35c of(Instruction35c instruction) {
    if (instruction instanceof ImmutableInstruction35c) {
        return (ImmutableInstruction35c) instruction;
    }
    return new ImmutableInstruction35c(
            instruction.getOpcode(),
            instruction.getRegisterCount(),
            instruction.getRegisterC(),
            instruction.getRegisterD(),
            instruction.getRegisterE(),
            instruction.getRegisterF(),
            instruction.getRegisterG(),
            instruction.getReference());
}
 
开发者ID:niranjan94,项目名称:show-java,代码行数:15,代码来源:ImmutableInstruction35c.java

示例5: analyzeInvokeDirectEmpty

import org.jf.dexlib2.iface.instruction.formats.Instruction35c; //导入方法依赖的package包/类
private void analyzeInvokeDirectEmpty(@Nonnull AnalyzedInstruction analyzedInstruction, boolean analyzeResult) {
    Instruction35c instruction = (Instruction35c) analyzedInstruction.instruction;

    Instruction35c deodexedInstruction = new ImmutableInstruction35c(Opcode.INVOKE_DIRECT,
            instruction.getRegisterCount(), instruction.getRegisterC(), instruction.getRegisterD(),
            instruction.getRegisterE(), instruction.getRegisterF(), instruction.getRegisterG(),
            instruction.getReference());

    analyzedInstruction.setDeodexedInstruction(deodexedInstruction);

    if (analyzeResult) {
        analyzeInstruction(analyzedInstruction);
    }
}
 
开发者ID:niranjan94,项目名称:show-java,代码行数:15,代码来源:MethodAnalyzer.java

示例6: newBuilderInstruction35c

import org.jf.dexlib2.iface.instruction.formats.Instruction35c; //导入方法依赖的package包/类
@Nonnull
private BuilderInstruction35c newBuilderInstruction35c(@Nonnull Instruction35c instruction) {
    return new BuilderInstruction35c(
            instruction.getOpcode(),
            instruction.getRegisterCount(),
            instruction.getRegisterC(),
            instruction.getRegisterD(),
            instruction.getRegisterE(),
            instruction.getRegisterF(),
            instruction.getRegisterG(),
            instruction.getReference());
}
 
开发者ID:niranjan94,项目名称:show-java,代码行数:13,代码来源:MutableMethodImplementation.java


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