Home
last modified time | relevance | path

Searched refs:GOTO_W (Results 1 – 9 of 9) sorted by relevance

/external/javassist/src/main/javassist/bytecode/analysis/
DUtil.java28 … pos += (opcode == JSR_W || opcode == GOTO_W) ? iter.s32bitAt(pos + 1) : iter.s16bitAt(pos + 1); in getJumpTarget()
33 …& opcode <= JSR) || opcode == IFNULL || opcode == IFNONNULL || opcode == JSR_W || opcode == GOTO_W; in isJumpInstruction()
37 return opcode == GOTO || opcode == GOTO_W; in isGoto()
DExecutor.java618 case GOTO_W: in execute()
/external/javassist/src/main/javassist/bytecode/
DOpcode.java114 int GOTO_W = 200; field
DCodeIterator.java879 else if (inst == GOTO_W || inst == JSR_W) { in insertGap2()
1175 else if (inst == GOTO_W || inst == JSR_W) { in makeJumpList()
1390 newcode[dest] = (byte)(((code[src] & 0xff) == GOTO) ? GOTO_W : JSR_W); in write32()
1409 newcode[dest + 3] = (byte)GOTO_W; in write32()
DCodeAnalyzer.java114 case GOTO_W : in processBranch()
DInstructionPrinter.java139 case GOTO_W: in instructionString()
/external/javassist/src/main/javassist/
DCtBehavior.java862 iterator.writeByte(Opcode.GOTO_W, pos); in insertGoto()
871 iterator.writeByte(Opcode.GOTO_W, pos); in insertGoto()
/external/javassist/src/main/javassist/bytecode/stackmap/
DBasicBlock.java271 else if (op == Opcode.GOTO_W)
DTracer.java676 case Opcode.GOTO_W : in doOpcode148_201()