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


Java Opcodes.F_FULL属性代码示例

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


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

示例1: accept

/**
 * Makes the given visitor visit this stack map frame.
 * 
 * @param mv
 *            a method visitor.
 */
@Override
public void accept(final MethodVisitor mv) {
    switch (type) {
    case Opcodes.F_NEW:
    case Opcodes.F_FULL:
        mv.visitFrame(type, local.size(), asArray(local), stack.size(),
                asArray(stack));
        break;
    case Opcodes.F_APPEND:
        mv.visitFrame(type, local.size(), asArray(local), 0, null);
        break;
    case Opcodes.F_CHOP:
        mv.visitFrame(type, local.size(), null, 0, null);
        break;
    case Opcodes.F_SAME:
        mv.visitFrame(type, 0, null, 0, null);
        break;
    case Opcodes.F_SAME1:
        mv.visitFrame(type, 0, null, 1, asArray(stack));
        break;
    }
}
 
开发者ID:scouter-project,项目名称:bytescope,代码行数:28,代码来源:FrameNode.java

示例2: visitFrame

@Override
public void visitFrame(final int type, final int nLocal,
        final Object[] local, final int nStack, final Object[] stack) {
    AttributesImpl attrs = new AttributesImpl();
    switch (type) {
    case Opcodes.F_NEW:
    case Opcodes.F_FULL:
        if (type == Opcodes.F_NEW) {
            attrs.addAttribute("", "type", "type", "", "NEW");
        } else {
            attrs.addAttribute("", "type", "type", "", "FULL");
        }
        sa.addStart("frame", attrs);
        appendFrameTypes(true, nLocal, local);
        appendFrameTypes(false, nStack, stack);
        break;
    case Opcodes.F_APPEND:
        attrs.addAttribute("", "type", "type", "", "APPEND");
        sa.addStart("frame", attrs);
        appendFrameTypes(true, nLocal, local);
        break;
    case Opcodes.F_CHOP:
        attrs.addAttribute("", "type", "type", "", "CHOP");
        attrs.addAttribute("", "count", "count", "",
                Integer.toString(nLocal));
        sa.addStart("frame", attrs);
        break;
    case Opcodes.F_SAME:
        attrs.addAttribute("", "type", "type", "", "SAME");
        sa.addStart("frame", attrs);
        break;
    case Opcodes.F_SAME1:
        attrs.addAttribute("", "type", "type", "", "SAME1");
        sa.addStart("frame", attrs);
        appendFrameTypes(false, 1, stack);
        break;
    }
    sa.addEnd("frame");
}
 
开发者ID:scouter-project,项目名称:scouter,代码行数:39,代码来源:SAXCodeAdapter.java

示例3: visitFrame

@Override
public void visitFrame(final int type, final int nLocal,
        final Object[] local, final int nStack, final Object[] stack) {
    buf.setLength(0);
    buf.append(ltab);
    buf.append("FRAME ");
    switch (type) {
    case Opcodes.F_NEW:
    case Opcodes.F_FULL:
        buf.append("FULL [");
        appendFrameTypes(nLocal, local);
        buf.append("] [");
        appendFrameTypes(nStack, stack);
        buf.append(']');
        break;
    case Opcodes.F_APPEND:
        buf.append("APPEND [");
        appendFrameTypes(nLocal, local);
        buf.append(']');
        break;
    case Opcodes.F_CHOP:
        buf.append("CHOP ").append(nLocal);
        break;
    case Opcodes.F_SAME:
        buf.append("SAME");
        break;
    case Opcodes.F_SAME1:
        buf.append("SAME1 ");
        appendFrameTypes(1, stack);
        break;
    }
    buf.append('\n');
    text.add(buf.toString());
}
 
开发者ID:scouter-project,项目名称:scouter,代码行数:34,代码来源:Textifier.java

示例4: FrameNode

/**
 * Constructs a new {@link FrameNode}.
 * 
 * @param type
 *            the type of this frame. Must be {@link Opcodes#F_NEW} for
 *            expanded frames, or {@link Opcodes#F_FULL},
 *            {@link Opcodes#F_APPEND}, {@link Opcodes#F_CHOP},
 *            {@link Opcodes#F_SAME} or {@link Opcodes#F_APPEND},
 *            {@link Opcodes#F_SAME1} for compressed frames.
 * @param nLocal
 *            number of local variables of this stack map frame.
 * @param local
 *            the types of the local variables of this stack map frame.
 *            Elements of this list can be Integer, String or LabelNode
 *            objects (for primitive, reference and uninitialized types
 *            respectively - see {@link MethodVisitor}).
 * @param nStack
 *            number of operand stack elements of this stack map frame.
 * @param stack
 *            the types of the operand stack elements of this stack map
 *            frame. Elements of this list can be Integer, String or
 *            LabelNode objects (for primitive, reference and uninitialized
 *            types respectively - see {@link MethodVisitor}).
 */
public FrameNode(final int type, final int nLocal, final Object[] local,
        final int nStack, final Object[] stack) {
    super(-1);
    this.type = type;
    switch (type) {
    case Opcodes.F_NEW:
    case Opcodes.F_FULL:
        this.local = asList(nLocal, local);
        this.stack = asList(nStack, stack);
        break;
    case Opcodes.F_APPEND:
        this.local = asList(nLocal, local);
        break;
    case Opcodes.F_CHOP:
        this.local = Arrays.asList(new Object[nLocal]);
        break;
    case Opcodes.F_SAME:
        break;
    case Opcodes.F_SAME1:
        this.stack = asList(1, stack);
        break;
    }
}
 
开发者ID:scouter-project,项目名称:bytescope,代码行数:47,代码来源:FrameNode.java

示例5: visitFrame

@Override
public void visitFrame(final int type, final int nLocal,
        final Object[] local, final int nStack, final Object[] stack) {
    buf.setLength(0);
    switch (type) {
    case Opcodes.F_NEW:
    case Opcodes.F_FULL:
        declareFrameTypes(nLocal, local);
        declareFrameTypes(nStack, stack);
        if (type == Opcodes.F_NEW) {
            buf.append(name).append(".visitFrame(Opcodes.F_NEW, ");
        } else {
            buf.append(name).append(".visitFrame(Opcodes.F_FULL, ");
        }
        buf.append(nLocal).append(", new Object[] {");
        appendFrameTypes(nLocal, local);
        buf.append("}, ").append(nStack).append(", new Object[] {");
        appendFrameTypes(nStack, stack);
        buf.append('}');
        break;
    case Opcodes.F_APPEND:
        declareFrameTypes(nLocal, local);
        buf.append(name).append(".visitFrame(Opcodes.F_APPEND,")
                .append(nLocal).append(", new Object[] {");
        appendFrameTypes(nLocal, local);
        buf.append("}, 0, null");
        break;
    case Opcodes.F_CHOP:
        buf.append(name).append(".visitFrame(Opcodes.F_CHOP,")
                .append(nLocal).append(", null, 0, null");
        break;
    case Opcodes.F_SAME:
        buf.append(name).append(
                ".visitFrame(Opcodes.F_SAME, 0, null, 0, null");
        break;
    case Opcodes.F_SAME1:
        declareFrameTypes(1, stack);
        buf.append(name).append(
                ".visitFrame(Opcodes.F_SAME1, 0, null, 1, new Object[] {");
        appendFrameTypes(1, stack);
        buf.append('}');
        break;
    }
    buf.append(");\n");
    text.add(buf.toString());
}
 
开发者ID:scouter-project,项目名称:scouter,代码行数:46,代码来源:ASMifier.java

示例6: visitFrame

@Override
public void visitFrame(final int type, final int nLocal,
        final Object[] local, final int nStack, final Object[] stack) {
    if (insnCount == lastFrame) {
        throw new IllegalStateException(
                "At most one frame can be visited at a given code location.");
    }
    lastFrame = insnCount;
    int mLocal;
    int mStack;
    switch (type) {
    case Opcodes.F_NEW:
    case Opcodes.F_FULL:
        mLocal = Integer.MAX_VALUE;
        mStack = Integer.MAX_VALUE;
        break;

    case Opcodes.F_SAME:
        mLocal = 0;
        mStack = 0;
        break;

    case Opcodes.F_SAME1:
        mLocal = 0;
        mStack = 1;
        break;

    case Opcodes.F_APPEND:
    case Opcodes.F_CHOP:
        mLocal = 3;
        mStack = 0;
        break;

    default:
        throw new IllegalArgumentException("Invalid frame type " + type);
    }

    if (nLocal > mLocal) {
        throw new IllegalArgumentException("Invalid nLocal=" + nLocal
                + " for frame type " + type);
    }
    if (nStack > mStack) {
        throw new IllegalArgumentException("Invalid nStack=" + nStack
                + " for frame type " + type);
    }

    if (type != Opcodes.F_CHOP) {
        if (nLocal > 0 && (local == null || local.length < nLocal)) {
            throw new IllegalArgumentException(
                    "Array local[] is shorter than nLocal");
        }
        for (int i = 0; i < nLocal; ++i) {
            checkFrameValue(local[i]);
        }
    }
    if (nStack > 0 && (stack == null || stack.length < nStack)) {
        throw new IllegalArgumentException(
                "Array stack[] is shorter than nStack");
    }
    for (int i = 0; i < nStack; ++i) {
        checkFrameValue(stack[i]);
    }
    if (type == Opcodes.F_NEW) {
        ++expandedFrames;
    } else {
        ++compressedFrames;
    }
    if (expandedFrames > 0 && compressedFrames > 0) {
        throw new RuntimeException(
                "Expanded and compressed frames must not be mixed.");
    }
    super.visitFrame(type, nLocal, local, nStack, stack);
}
 
开发者ID:scouter-project,项目名称:scouter,代码行数:73,代码来源:CheckMethodAdapter.java


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