Home | History | Annotate | Download | only in IPA

Lines Matching defs:Callee

145           const Function *Callee = CS.getCalledFunction();
146 if (Callee)
147 Node->addCalledFunction(CS, getOrInsertFunction(Callee));
292 // the specified callee function. This takes more time to execute than
294 void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) {
296 if (CalledFunctions[i].second == Callee) {
297 Callee->DropRef();
305 /// from this node to the specified callee function.
306 void CallGraphNode::removeOneAbstractEdgeTo(CallGraphNode *Callee) {
308 assert(I != CalledFunctions.end() && "Cannot find callee to remove!");
310 if (CR.second == Callee && CR.first == 0) {
311 Callee->DropRef();