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

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DTABLESWITCH.java64 * TABLESWITCH - Switch within given range of values, i.e., low..high
69 public class TABLESWITCH extends Select { class in inherits:Select
74 TABLESWITCH() {} method in class:TABLESWITCH
82 public TABLESWITCH(int[] match, InstructionHandle[] targets, method in class:TABLESWITCH
84 super(com.sun.org.apache.bcel.internal.Constants.TABLESWITCH, match, targets, target);
H A DSWITCH.java63 * TABLESWITCH instruction, depending on whether the match values (int[]) can be
77 * between the numbers, a TABLESWITCH instruction is generated, and
95 instruction = new TABLESWITCH(match, targets, target);
102 instruction = new TABLESWITCH(this.match, this.targets, target);
H A DEmptyVisitor.java130 public void visitTABLESWITCH(TABLESWITCH obj) { }
H A DVisitor.java133 public void visitTABLESWITCH(TABLESWITCH obj);
H A DInstructionList.java230 if(bi instanceof Select) { // Either LOOKUPSWITCH or TABLESWITCH
928 * offset (short vs. int) or alignment issues (TABLESWITCH and
936 case Constants.TABLESWITCH: case Constants.LOOKUPSWITCH:
1112 if(bi instanceof Select) { // Either LOOKUPSWITCH or TABLESWITCH
1205 if(b instanceof Select) { // Either LOOKUPSWITCH or TABLESWITCH
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DInstruction.java220 case TABLESWITCH: {
276 case TABLESWITCH: {
H A DOpcode.java213 TABLESWITCH(0xaa, DYNAMIC), enum constant in enum:Opcode
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DCodeHTML.java122 if((opcode == TABLESWITCH) || (opcode == LOOKUPSWITCH)) {
134 case TABLESWITCH:
445 // Get target addresses from GOTO, JSR, TABLESWITCH, etc.
450 case TABLESWITCH: case LOOKUPSWITCH:
463 if(opcode == TABLESWITCH) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DOpcodes.java339 int TABLESWITCH = 170; // visiTableSwitchInsn field in interface:Opcodes
H A DFrame.java445 // -1, //TABLESWITCH, // visiTableSwitchInsn
1008 case Opcodes.TABLESWITCH:
H A DMethodWriter.java1095 code.putByte(Opcodes.TABLESWITCH);
2120 * of TABLESWITCH and LOOKUPSWITCH instructions depends on their
2342 newCode.putByte(Opcodes.TABLESWITCH);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/
H A DConstants.java330 public static final short TABLESWITCH = 170; field in interface:Constants
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java210 if((opcode == Constants.TABLESWITCH) || (opcode == Constants.LOOKUPSWITCH)) {
229 case Constants.TABLESWITCH:
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DSort.java53 import com.sun.org.apache.bcel.internal.generic.TABLESWITCH;
744 il.insert(tblswitch,new TABLESWITCH(match, target, defaultTarget));
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMethodGenerator.java1585 // Handle LOOKUPSWITCH or TABLESWITCH which may have many
1929 * <p>The <code>TABLESWITCH</code> and <code>LOOKUPSWITCH</code>
2012 case Constants.TABLESWITCH:

Completed in 96 milliseconds