Methods Summary |
---|
public java.lang.String | argTypes()What are the types of the stack operands ?
return VMOp.ops[opcode()].argTypes();
|
public boolean | branches()
switch (opcode()) {
case opc_ireturn:
case opc_lreturn:
case opc_freturn:
case opc_dreturn:
case opc_areturn:
case opc_return:
case opc_athrow:
return true;
default:
return false;
}
|
public int | nStackArgs()
return VMOp.ops[opcode()].nStackArgs();
|
public int | nStackResults()
return VMOp.ops[opcode()].nStackResults();
|
void | print(java.io.PrintStream out, int indent)
ClassPrint.spaces(out, indent);
out.println(offset() + " " + opName(opcode()));//NOI18N
|
public java.lang.String | resultTypes()What are the types of the stack results?
return VMOp.ops[opcode()].resultTypes();
|
int | size()
return 1;
|
int | store(byte[] buf, int index)
buf[index] = (byte) opcode();
return index+1;
|