Package org.openjdk.asmtools.jasm
Class OpcodeTables
- java.lang.Object
-
- org.openjdk.asmtools.jasm.OpcodeTables
-
public class OpcodeTables extends java.lang.Object
OpcodeTables The OpcodeTables class follows a Singleton Pattern. This class contains Enums, that are contained in private hash maps (lookup tables and reverse lookup tables). These hash maps all have public accessors, which clients use to look-up opcodes. Tokens in this table carry no external state, and are typically treated as constants. They do not need to be reset.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
OpcodeTables.Opcode
static class
OpcodeTables.OpcodeType
Marker: describes the type of Opcode.
-
Constructor Summary
Constructors Constructor Description OpcodeTables()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OpcodeTables.Opcode
opcode(java.lang.Integer mnem_code)
static OpcodeTables.Opcode
opcode(java.lang.String mnemonic)
-
-
-
Method Detail
-
opcode
public static OpcodeTables.Opcode opcode(java.lang.String mnemonic)
-
opcode
public static OpcodeTables.Opcode opcode(java.lang.Integer mnem_code)
-
-