Searched refs:JSR (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DJSR.java63 * JSR - Jump to subroutine
67 public class JSR extends JsrInstruction implements VariableLengthInstruction { class in inherits:JsrInstruction,VariableLengthInstruction
72 JSR() {} method in class:JSR
74 public JSR(InstructionHandle target) { method in class:JSR
75 super(com.sun.org.apache.bcel.internal.Constants.JSR, target);
84 if(opcode == com.sun.org.apache.bcel.internal.Constants.JSR)
H A DInstructionFactory.java612 case Constants.JSR: return new JSR(target);
H A DEmptyVisitor.java149 public void visitJSR(JSR obj) { }
H A DVisitor.java152 public void visitJSR(JSR obj);
H A DInstructionList.java932 case Constants.JSR: case Constants.GOTO:
H A DMethodGen.java901 if(opcode == Constants.JSR || opcode == Constants.JSR_W)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DLabel.java111 * Indicates if this basic block ends with a JSR instruction.
113 static final int JSR = 128; field in class:Label
148 * @see #JSR
412 if (opcode <= Opcodes.JSR) {
413 // changes IFEQ ... JSR to opcodes 202 to 217
498 * current block WITHOUT following any JSR target.
500 * @param JSR a JSR block that jumps to this subroutine. If this JSR is not
506 void visitSubroutine(final Label JSR, fina argument
[all...]
H A DOpcodes.java337 int JSR = 168; // - field in interface:Opcodes
H A DMethodWriter.java901 if (opcode == Opcodes.JSR) {
906 currentBlock.status |= Label.JSR;
911 * note that, by construction in this method, a JSR block
913 * the first one leads the next instruction after the JSR,
914 * while the second one leads to the JSR target.
931 * automatically replace GOTO with GOTO_W, JSR with JSR_W and IFxxx
938 } else if (opcode == Opcodes.JSR) {
1354 if ((l.status & Label.JSR) == 0) {
1358 // if l is a JSR block, adds b after the first two edges
1359 // to preserve the hypothesis about JSR bloc
[all...]
H A DFrame.java443 // 1, //JSR, // -
1174 case Opcodes.JSR:
1176 throw new RuntimeException("JSR/RET are not supported with computeFrames option");
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DCodeHTML.java195 case IF_ICMPLE: case IF_ICMPLT: case IF_ICMPNE: case JSR:
445 // Get target addresses from GOTO, JSR, TABLESWITCH, etc.
496 case IF_ICMPLE: case IF_ICMPLT: case IF_ICMPNE: case JSR:
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/
H A DConstants.java328 public static final short JSR = 168; field in interface:Constants
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DOpcode.java211 JSR(0xa8, BRANCH), enum constant in enum:Opcode
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java283 case Constants.IFLE: case Constants.IFLT: case Constants.JSR: case Constants.IFNE:
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMethodGenerator.java1932 * <p>The <code>GOTO</code> and <code>JSR</code>
1936 * <code>JSR</code>instructions based on the relative offset of the target
1992 // and JSR instructions. Ideally, that method would do the same for
2004 case Constants.JSR:

Completed in 98 milliseconds