• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java PackedSwitchPayload类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: newBuilderPackedSwitchPayload

import org.jf.dexlib2.iface.instruction.formats.PackedSwitchPayload; //导入依赖的package包/类
@Nonnull
private BuilderPackedSwitchPayload newBuilderPackedSwitchPayload(@Nonnull MethodLocation location,
                                                                 @Nonnull int[] codeAddressToIndex,
                                                                 @Nonnull PackedSwitchPayload instruction) {
    List<? extends SwitchElement> switchElements = instruction.getSwitchElements();
    if (switchElements.size() == 0) {
        return new BuilderPackedSwitchPayload(0, null);
    }

    MethodLocation switchLocation = findSwitchForPayload(location);
    int baseAddress;
    if (switchLocation == null) {
        baseAddress = 0;
    } else {
        baseAddress = switchLocation.codeAddress;
    }

    List<Label> labels = Lists.newArrayList();
    for (SwitchElement element : switchElements) {
        labels.add(newLabel(codeAddressToIndex, element.getOffset() + baseAddress));
    }

    return new BuilderPackedSwitchPayload(switchElements.get(0).getKey(), labels);
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:25,代码来源:BuilderMutableMethodImplementation.java


示例2: makeInstructionFormatMethodItem

import org.jf.dexlib2.iface.instruction.formats.PackedSwitchPayload; //导入依赖的package包/类
public static InstructionMethodItem makeInstructionFormatMethodItem(
        MethodDefinition methodDef, int codeAddress, Instruction instruction) {

    if (instruction instanceof OffsetInstruction) {
        return new OffsetInstructionFormatMethodItem(methodDef.classDef.options, methodDef, codeAddress,
                (OffsetInstruction)instruction);
    }

    if (instruction instanceof UnresolvedOdexInstruction) {
        return new UnresolvedOdexInstructionMethodItem(methodDef, codeAddress,
                (UnresolvedOdexInstruction)instruction);
    }

    switch (instruction.getOpcode().format) {
        case ArrayPayload:
            return new ArrayDataMethodItem(methodDef, codeAddress, (ArrayPayload)instruction);
        case PackedSwitchPayload:
            return new PackedSwitchMethodItem(methodDef, codeAddress, (PackedSwitchPayload)instruction);
        case SparseSwitchPayload:
            return new SparseSwitchMethodItem(methodDef, codeAddress, (SparseSwitchPayload)instruction);
        default:
            return new InstructionMethodItem<Instruction>(methodDef, codeAddress, instruction);
    }
}
 
开发者ID:alibaba,项目名称:atlas,代码行数:25,代码来源:InstructionMethodItemFactory.java


示例3: switchStatement

import org.jf.dexlib2.iface.instruction.formats.PackedSwitchPayload; //导入依赖的package包/类
protected Stmt switchStatement(DexBody body, Instruction targetData, Local key) {
     PackedSwitchPayload i = (PackedSwitchPayload) targetData;
     List<? extends SwitchElement> seList = i.getSwitchElements();

     // the default target always follows the switch statement
     int defaultTargetAddress = codeAddress + instruction.getCodeUnits();
     Unit defaultTarget = body.instructionAtAddress(defaultTargetAddress).getUnit();

     List<IntConstant> lookupValues = new ArrayList<IntConstant>();
     List<Unit> targets = new ArrayList<Unit>();
     for(SwitchElement se: seList) {
       lookupValues.add(IntConstant.v(se.getKey()));
       int offset = se.getOffset();
       targets.add(body.instructionAtAddress(codeAddress + offset).getUnit());
     }
     switchStmt = Jimple.v().newLookupSwitchStmt(key, lookupValues, targets, defaultTarget);
     setUnit(switchStmt);
     
     if (IDalvikTyper.ENABLE_DVKTYPER) {
Debug.printDbg(IDalvikTyper.DEBUG, "constraint: "+ switchStmt);
         DalvikTyper.v().setType(switchStmt.getKeyBox(), IntType.v(), true);
     }
     
     return switchStmt;
 }
 
开发者ID:flankerhqd,项目名称:JAADAS,代码行数:26,代码来源:PackedSwitchInstruction.java


示例4: write

import org.jf.dexlib2.iface.instruction.formats.PackedSwitchPayload; //导入依赖的package包/类
public void write(@Nonnull PackedSwitchPayload instruction) {
    try {
        writer.writeUbyte(0);
        writer.writeUbyte(instruction.getOpcode().value >> 8);
        List<? extends SwitchElement> elements = instruction.getSwitchElements();
        writer.writeUshort(elements.size());
        if (elements.size() == 0) {
            writer.writeInt(0);
        } else {
            writer.writeInt(elements.get(0).getKey());
            for (SwitchElement element : elements) {
                writer.writeInt(element.getOffset());
            }
        }
    } catch (IOException ex) {
        throw new RuntimeException(ex);
    }
}
 
开发者ID:niranjan94,项目名称:show-java,代码行数:19,代码来源:InstructionWriter.java


示例5: of

import org.jf.dexlib2.iface.instruction.formats.PackedSwitchPayload; //导入依赖的package包/类
@Nonnull
public static ImmutablePackedSwitchPayload of(PackedSwitchPayload instruction) {
    if (instruction instanceof ImmutablePackedSwitchPayload) {
        return (ImmutablePackedSwitchPayload)instruction;
    }
    return new ImmutablePackedSwitchPayload(
            instruction.getSwitchElements());
}
 
开发者ID:CvvT,项目名称:andbg,代码行数:9,代码来源:ImmutablePackedSwitchPayload.java


示例6: of

import org.jf.dexlib2.iface.instruction.formats.PackedSwitchPayload; //导入依赖的package包/类
public static ImmutablePackedSwitchPayload of(PackedSwitchPayload instruction) {
    if (instruction instanceof ImmutablePackedSwitchPayload) {
        return (ImmutablePackedSwitchPayload)instruction;
    }
    return new ImmutablePackedSwitchPayload(
            instruction.getSwitchElements());
}
 
开发者ID:AndreJCL,项目名称:JCL,代码行数:8,代码来源:ImmutablePackedSwitchPayload.java


示例7: of

import org.jf.dexlib2.iface.instruction.formats.PackedSwitchPayload; //导入依赖的package包/类
@Nonnull
public static ImmutablePackedSwitchPayload of(PackedSwitchPayload instruction) {
    if (instruction instanceof ImmutablePackedSwitchPayload) {
        return (ImmutablePackedSwitchPayload) instruction;
    }
    return new ImmutablePackedSwitchPayload(
            instruction.getSwitchElements());
}
 
开发者ID:niranjan94,项目名称:show-java,代码行数:9,代码来源:ImmutablePackedSwitchPayload.java


示例8: calculateComplexity

import org.jf.dexlib2.iface.instruction.formats.PackedSwitchPayload; //导入依赖的package包/类
private static int calculateComplexity(@Nonnull DexBackedMethodImplementation implementation) {
    // Cyclomatic complexity = <branches> - <exits> + 2
    int branches = 0;
    int exits = 0;
    for (Instruction instruction : implementation.getInstructions()) {
        switch (instruction.getOpcode()) {
            case IF_EQ:
            case IF_EQZ:
            case IF_GE:
            case IF_GEZ:
            case IF_GT:
            case IF_GTZ:
            case IF_LE:
            case IF_LEZ:
            case IF_LT:
            case IF_LTZ:
            case IF_NE:
            case IF_NEZ:
                branches += 2;
                break;
            case PACKED_SWITCH_PAYLOAD:
                branches += ((PackedSwitchPayload) instruction).getSwitchElements().size();
                break;
            case RETURN:
            case RETURN_OBJECT:
            case RETURN_VOID:
            case RETURN_VOID_BARRIER:
            case RETURN_VOID_NO_BARRIER:
            case RETURN_WIDE:
                exits += 1;
                break;
            case SPARSE_SWITCH_PAYLOAD:
                branches += ((SparseSwitchPayload) instruction).getSwitchElements().size();
                break;
            case THROW:
            case THROW_VERIFICATION_ERROR:
                exits += 1;
                break;
        }
    }
    return branches - exits + 2;
}
 
开发者ID:CalebFenton,项目名称:apkfile,代码行数:43,代码来源:DexMethod.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java PGPLiteralData类代码示例发布时间:2022-05-21
下一篇:
Java DoFn类代码示例发布时间:2022-05-21
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap