本文整理汇总了Java中org.objectweb.asm.util.AbstractVisitor.OPCODES属性的典型用法代码示例。如果您正苦于以下问题:Java AbstractVisitor.OPCODES属性的具体用法?Java AbstractVisitor.OPCODES怎么用?Java AbstractVisitor.OPCODES使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.objectweb.asm.util.AbstractVisitor
的用法示例。
在下文中一共展示了AbstractVisitor.OPCODES属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visitTableSwitchInsn
public final void visitTableSwitchInsn(
int min,
int max,
Label dflt,
Label[] labels)
{
AttributesImpl attrs = new AttributesImpl();
attrs.addAttribute("", "min", "min", "", Integer.toString(min));
attrs.addAttribute("", "max", "max", "", Integer.toString(max));
attrs.addAttribute("", "dflt", "dflt", "", getLabel(dflt));
String o = AbstractVisitor.OPCODES[Opcodes.TABLESWITCH];
addStart(o, attrs);
for (int i = 0; i < labels.length; i++) {
AttributesImpl att2 = new AttributesImpl();
att2.addAttribute("", "name", "name", "", getLabel(labels[i]));
addElement("label", att2);
}
addEnd(o);
}
示例2: visitLookupSwitchInsn
public final void visitLookupSwitchInsn(
Label dflt,
int[] keys,
Label[] labels)
{
AttributesImpl att = new AttributesImpl();
att.addAttribute("", "dflt", "dflt", "", getLabel(dflt));
String o = AbstractVisitor.OPCODES[Opcodes.LOOKUPSWITCH];
addStart(o, att);
for (int i = 0; i < labels.length; i++) {
AttributesImpl att2 = new AttributesImpl();
att2.addAttribute("", "name", "name", "", getLabel(labels[i]));
att2.addAttribute("", "key", "key", "", Integer.toString(keys[i]));
addElement("label", att2);
}
addEnd(o);
}
示例3: visitInvokeDynamicInsn
@Override
public void visitInvokeDynamicInsn(String name, String desc, Handle bsm,
Object... bsmArgs) {
AttributesImpl attrs = new AttributesImpl();
attrs.addAttribute("", "name", "name", "", name);
attrs.addAttribute("", "desc", "desc", "", desc);
attrs.addAttribute("", "bsm", "bsm", "",
SAXClassAdapter.encode(bsm.toString()));
String o = AbstractVisitor.OPCODES[Opcodes.INVOKEDYNAMIC];
addStart(o, attrs);
for (int i = 0; i < bsmArgs.length; i++) {
AttributesImpl cattrs = new AttributesImpl();
cattrs.addAttribute("", "cst", "cst", "",
SAXClassAdapter.encode(bsmArgs[i].toString()));
cattrs.addAttribute("", "desc", "desc", "",
Type.getDescriptor(bsmArgs[i].getClass()));
addElement("bsmArg", cattrs);
}
addEnd(o);
}