Home | History | Annotate | Download | only in IPA

Lines Matching defs:Callee

145           const Function *Callee = CS.getCalledFunction();
146 if (!Callee)
149 else if (!Callee->isIntrinsic())
150 Node->addCalledFunction(CS, getOrInsertFunction(Callee));
293 // the specified callee function. This takes more time to execute than
295 void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) {
297 if (CalledFunctions[i].second == Callee) {
298 Callee->DropRef();
306 /// from this node to the specified callee function.
307 void CallGraphNode::removeOneAbstractEdgeTo(CallGraphNode *Callee) {
309 assert(I != CalledFunctions.end() && "Cannot find callee to remove!");
311 if (CR.second == Callee && CR.first == 0) {
312 Callee->DropRef();