Public Methods | |
Instruction_Tableswitch () | |
Instruction[] | branchpoints (Instruction next) |
int | compile (byte bc[], int index) |
int | nextOffset (int curr) |
void | offsetToPointer (ByteCode bc) |
int | parse (byte bc[], int index) |
String | toString (cp_info constant_pool[]) |
Public Attributes | |
byte | pad |
int | default_offset |
int | low |
int | high |
int | jump_offsets [] |
Instruction | default_inst |
Instruction | jump_insts [] |
Each subclass is derived from one of
Definition at line 138 of file Instruction_Tableswitch.java.
|
Returns an array of the instructions to which this instruction might branch (only valid if branches==true; default action is to return null).
Reimplemented from Instruction. Definition at line 151 of file Instruction_Tableswitch.java. |
|
Writes out the sequence of bytecodes represented by this instruction, including any arguments.
Reimplemented from Instruction. Definition at line 159 of file Instruction_Tableswitch.java. |
|
Returns the next available offset assuming this instruction begins on the indicated offset; default assumes no arguments.
Reimplemented from Instruction. Definition at line 179 of file Instruction_Tableswitch.java. |
|
Changes offset values in this instruction to Instruction references; default behaviour is to do nothing.
Reimplemented from Instruction. Definition at line 187 of file Instruction_Tableswitch.java. |
|
Assuming the actual bytecode for this instruction has been extracted already, and index is the offset of the next byte, this method parses whatever arguments the instruction requires and return the offset of the next available byte.
Reimplemented from Instruction. Definition at line 208 of file Instruction_Tableswitch.java. |
|
For displaying instructions.
Reimplemented from Instruction. Definition at line 236 of file Instruction_Tableswitch.java. |