// Process calls specially -- these are the sites of binding loads!
if (i instanceof CallInstr) {
CallInstr call = (CallInstr) i;
Operand o = call.getClosureArg();
if ((o != null) && (o instanceof MetaObject)) {
IRClosure cl = (IRClosure) ((MetaObject) o).scope;
CFG cl_cfg = cl.getCFG();
BindingLoadPlacementProblem cl_blp = new BindingLoadPlacementProblem();
cl_blp.initLoadsOnScopeExit(reqdLoads);
cl_blp.setup(cl_cfg);
cl_blp.compute_MOP_Solution();
cl_cfg.setDataFlowSolution(cl_blp.getName(), cl_blp);