Lines Matching defs:callOp
271 Operation *callOp = use.getUser();
272 assert(isa<CallOpInterface>(callOp) && "expected a call-like user");
275 BitVector nonLiveCallOperands(callOp->getNumOperands(), false);
277 operandsToOpOperands(cast<CallOpInterface>(callOp).getArgOperands());
280 cl.operands.push_back({callOp, nonLiveCallOperands});
310 Operation *callOp = use.getUser();
311 assert(isa<CallOpInterface>(callOp) && "expected a call-like user");
312 BitVector liveCallRets = markLives(callOp->getResults(), nonLiveSet, la);
330 Operation *callOp = use.getUser();
331 assert(isa<CallOpInterface>(callOp) && "expected a call-like user");
332 cl.results.push_back({callOp, nonLiveRets});
333 collectNonLiveValues(nonLiveSet, callOp->getResults(), nonLiveRets);