String type = instruction.getLoadClassType(cpg).getClassName();
//get the left, create the right
Expression left = context.getExpressions().pop();
Expression right = new Resolved(context.getCurrentInstruction(), Type.BOOLEAN, type);
InstanceOf instanceOf = new InstanceOf(context.getCurrentInstruction(), left, right);
context.getExpressions().push(instanceOf);
}