nextPc = parseLookupSwitchInstruction(startPc);
} else {
nextPc = currentPc
+ JVMInstructionSet.getOpcodeLength(curOpcode, bWide);
}
Instruction ins = new Instruction(currentPc, curOpcode, getArgArray(
startPc, nextPc), nextPc, bWide);
il.add(ins);
bWide = (curOpcode == Opcodes.OPCODE_WIDE);
currentPc = nextPc;
}