Searched refs:opc_ldc (Results 1 - 20 of 20) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DFloatExpression.java75 asm.add(where, opc_ldc, new Float(value));
H A DIntegerExpression.java94 asm.add(where, opc_ldc, new Integer(value));
H A DStringExpression.java60 asm.add(where, opc_ldc, this);
H A DIncDecExpression.java115 asm.add(where, opc_ldc, new Integer(1));
120 asm.add(where, opc_ldc, new Integer(1));
125 asm.add(where, opc_ldc, new Integer(1));
130 asm.add(where, opc_ldc, new Integer(1));
138 asm.add(where, opc_ldc, new Float(1));
H A DBitNotExpression.java83 asm.add(where, opc_ldc, new Integer(-1));
H A DBooleanExpression.java109 asm.add(where, opc_ldc, new Integer(value ? 1 : 0));
H A DArrayExpression.java95 asm.add(where, opc_ldc, new Integer(args.length));
125 asm.add(where, opc_ldc, new Integer(i));
H A DNotExpression.java142 asm.add(where, opc_ldc, new Integer(1));
H A DBinaryExpression.java215 asm.add(true, where, opc_ldc, new Integer(0));
218 asm.add(true, where, opc_ldc, new Integer(1));
H A DExpression.java435 asm.add(true, where, opc_ldc, new Integer(0));
438 asm.add(true, where, opc_ldc, new Integer(1));
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DLabel.java73 case opc_ldc:
H A DInstruction.java334 case opc_ldc:
424 case opc_ldc: case opc_ldc_w: case opc_bipush:
527 case opc_ldc:
530 opc = opc_ldc;
685 case opc_ldc:
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DClassFileConstants.java35 public static final byte opc_ldc = (byte) 0x12; field in interface:ClassFileConstants
H A DClassFileAssembler.java219 public void opc_ldc(byte cpIdx) { method in class:ClassFileAssembler
220 emitByte(opc_ldc);
/openjdk7/jdk/test/java/lang/instrument/
H A DRuntimeConstants.java130 int opc_ldc = 18; field in interface:RuntimeConstants
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DRuntimeConstants.java132 int opc_ldc = 18; field in interface:RuntimeConstants
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DRuntimeConstants.java139 int opc_ldc = 18; field in interface:RuntimeConstants
/openjdk7/jdk/src/share/classes/sun/misc/
H A DProxyGenerator.java118 private static final int opc_ldc = 18; field in class:ProxyGenerator
1358 out.writeByte(opc_ldc);
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java685 case opc_ldc: jvm.push(pool.get(i.u1At(1))); break;
1645 opc_ldc = 18, field in class:Indify
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp507 /* 0x10 */ &&opc_bipush, &&opc_sipush, &&opc_ldc, &&opc_ldc_w,

Completed in 86 milliseconds