Searched refs:INSTRUCTIONS (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionConstants.java211 public static final Instruction[] INSTRUCTIONS = new Instruction[256]; field in interface:InstructionConstants
220 INSTRUCTIONS[Constants.NOP] = NOP;
221 INSTRUCTIONS[Constants.ACONST_NULL] = ACONST_NULL;
222 INSTRUCTIONS[Constants.ICONST_M1] = ICONST_M1;
223 INSTRUCTIONS[Constants.ICONST_0] = ICONST_0;
224 INSTRUCTIONS[Constants.ICONST_1] = ICONST_1;
225 INSTRUCTIONS[Constants.ICONST_2] = ICONST_2;
226 INSTRUCTIONS[Constants.ICONST_3] = ICONST_3;
227 INSTRUCTIONS[Constants.ICONST_4] = ICONST_4;
228 INSTRUCTIONS[Constant
[all...]
H A DInstruction.java145 if(InstructionConstants.INSTRUCTIONS[this.getOpcode()] != null)
187 if(InstructionConstants.INSTRUCTIONS[opcode] != null)
188 return InstructionConstants.INSTRUCTIONS[opcode]; // Used predefined immutable object, if available
H A DPUSH.java82 instruction = INSTRUCTIONS[Constants.ICONST_0 + value];
96 instruction = INSTRUCTIONS[Constants.ICONST_0 + (value? 1 : 0)];
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DBCELFactory.java119 if((InstructionConstants.INSTRUCTIONS[opcode] != null) &&

Completed in 31 milliseconds