Searched refs:opc_goto (Results 1 - 25 of 25) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DLabel.java69 case opc_goto:
H A DInstruction.java149 case opc_goto: {
221 if ((next.opc == opc_goto) && (value == next.next)) {
253 if ((next.opc == opc_goto) && (value == next.next)) {
418 case opc_jsr: case opc_goto: case opc_jsr_w:
518 case opc_sipush: case opc_goto: case opc_jsr:
731 case opc_goto: case opc_jsr: case opc_ifeq:
H A DAssembler.java158 case opc_goto:
303 case opc_goto:
532 case opc_goto: {
811 case opc_goto:
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBooleanExpression.java105 asm.add(where, opc_goto, lbl);
H A DBreakStatement.java91 asm.add(where, opc_goto, destctx.breakLabel);
H A DContinueStatement.java102 asm.add(where, opc_goto, destctx.contLabel);
H A DInlineReturnStatement.java98 asm.add(where, opc_goto, destctx.breakLabel);
H A DConditionalExpression.java199 asm.add(where, opc_goto, l2);
210 asm.add(where, opc_goto, l2);
H A DFinallyStatement.java307 asm.add(where, opc_goto, endLabel);
310 asm.add(where, opc_goto, bodyctx.contLabel);
H A DForStatement.java168 asm.add(where, opc_goto, l2);
184 asm.add(where, opc_goto, l1);
H A DIfStatement.java178 asm.add(true, where, opc_goto, l2);
H A DWhileStatement.java114 asm.add(where, opc_goto, newctx.contLabel);
H A DTryStatement.java289 asm.add(where, opc_goto, newctx.breakLabel);
295 asm.add(where, opc_goto, newctx.breakLabel);
H A DBinaryExpression.java216 asm.add(true, where, opc_goto, l2);
H A DStatement.java280 asm.add(where, opc_goto, label);
H A DSynchronizedStatement.java155 asm.add(where, opc_goto, endLabel);
H A DExpression.java436 asm.add(true, where, opc_goto, l2);
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DClassFileAssembler.java471 public void opc_goto(short bciOffset) { method in class:ClassFileAssembler
472 emitByte(opc_goto);
478 public void opc_goto(Label l) { method in class:ClassFileAssembler
480 emitByte(opc_goto);
H A DClassFileConstants.java90 public static final byte opc_goto = (byte) 0xa7; field in interface:ClassFileConstants
H A DMethodAccessorGenerator.java606 cb.opc_goto(nextParamLabel);
/openjdk7/jdk/test/java/lang/instrument/
H A DRuntimeConstants.java279 int opc_goto = 167; field in interface:RuntimeConstants
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInjectBytecodes.java375 case opc_jsr: case opc_goto:
388 case opc_jsr: case opc_goto:
551 case opc_jsr: case opc_goto:
569 case opc_goto:
H A DRuntimeConstants.java281 int opc_goto = 167; field in interface:RuntimeConstants
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DRuntimeConstants.java288 int opc_goto = 167; field in interface:RuntimeConstants
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp553 /* 0xA4 */ &&opc_if_icmple,&&opc_if_acmpeq,&&opc_if_acmpne, &&opc_goto,

Completed in 79 milliseconds