Searched refs:BIPUSH (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DBIPUSH.java65 * BIPUSH - Push byte on stack
71 public class BIPUSH extends Instruction implements ConstantPushInstruction { class in inherits:Instruction,ConstantPushInstruction
78 BIPUSH() {} method in class:BIPUSH
82 public BIPUSH(byte b) { method in class:BIPUSH
83 super(com.sun.org.apache.bcel.internal.Constants.BIPUSH, (short)2);
H A DPUSH.java64 * Wrapper class for push operations, which are implemented either as BIPUSH,
83 else if((value >= -128) && (value <= 127)) // Use BIPUSH
84 instruction = new BIPUSH((byte)value);
H A DEmptyVisitor.java144 public void visitBIPUSH(BIPUSH obj) { }
H A DVisitor.java147 public void visitBIPUSH(BIPUSH obj);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DOpcodes.java185 int BIPUSH = 16; // visitIntInsn field in interface:Opcodes
H A DFrame.java291 // 1, //BIPUSH, // visitIntInsn
881 case Opcodes.BIPUSH:
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/
H A DConstants.java173 public static final short BIPUSH = 16; field in interface:Constants
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DOpcode.java59 BIPUSH(0x10, BYTE), enum constant in enum:Opcode
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokerBytecodeGenerator.java363 mv.visitIntInsn(Opcodes.BIPUSH, i & 0xFF);

Completed in 58 milliseconds