Home | History | Annotate | Download | only in IPA

Lines Matching defs:Callee

135         // Not a call, or being used as a parameter rather than as the callee.
152 const Function *Callee = CS.getCalledFunction();
153 if (Callee)
154 Node->addCalledFunction(CS, getOrInsertFunction(Callee));
295 // the specified callee function. This takes more time to execute than
297 void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) {
299 if (CalledFunctions[i].second == Callee) {
300 Callee->DropRef();
308 /// from this node to the specified callee function.
309 void CallGraphNode::removeOneAbstractEdgeTo(CallGraphNode *Callee) {
311 assert(I != CalledFunctions.end() && "Cannot find callee to remove!");
313 if (CR.second == Callee && CR.first == 0) {
314 Callee->DropRef();