Home | History | Annotate | Download | only in instruction

Lines Matching refs:opcode

44     public BranchInstruction(byte opcode, int branchOffset)
46 this.opcode = opcode;
58 this.opcode = branchInstruction.opcode;
70 switch (opcode)
76 default: return opcode;
86 if (opcode == InstructionConstants.OP_GOTO_W)
88 opcode = InstructionConstants.OP_GOTO;
90 else if (opcode == InstructionConstants.OP_JSR_W)
92 opcode = InstructionConstants.OP_JSR;
98 if (opcode == InstructionConstants.OP_GOTO)
100 opcode = InstructionConstants.OP_GOTO_W;
102 else if (opcode == InstructionConstants.OP_JSR)
104 opcode = InstructionConstants.OP_JSR_W;
165 return opcode == InstructionConstants.OP_GOTO_W ||
166 opcode == InstructionConstants.OP_JSR_W ? 4 :