在方法级别检测字节码

时间:2012-09-17 11:23:47

标签: constants code-coverage bytecode bytecode-manipulation

if(iHandles[f].getInstruction() instanceof IFEQ  ) {
            getFieldInstruction = iHandles[f+1].getInstruction();
            System.out.println("found IF");
            InstructionList iprint = iFactory.createPrintln("The control is in IF");
            iList.setPositions();
            main.setMaxStack();
            main.setMaxLocals();
            main.removeLineNumbers();
            iList.insert(getFieldInstruction, iprint);
            main.setInstructionList(iList);

        }

在上面的代码中,我正在 if 语句处检测字节码。 我使用 IFEQ IF_ICMPNE 等常量来搜索字节码中的 if 语句。 我想在每种方法中检测字节码。我可以使用哪些常量来执行此操作?或者怎么可能?

1 个答案:

答案 0 :(得分:0)

以上代码适用于,如果 ... getFieldInstruction = iHandles[0].getInstruction(); 仪器方法。