// require to move NEW instruction
int n= instructions.indexOf(mnode);
Frame f= frames[n];
Type[] args= Type.getArgumentTypes(mnode.desc);
SourceValue v= (SourceValue) f.getStack(f.getStackSize() - args.length - 1);
Set<AbstractInsnNode> insns= v.insns;
for (final AbstractInsnNode ins : insns)
{
if (ins.getOpcode() == NEW)
{