Home | History | Annotate | Download | only in IPA

Lines Matching defs:Callee

83         const Function *Callee = CS.getCalledFunction();
84 if (!Callee)
87 else if (!Callee->isIntrinsic())
88 Node->addCalledFunction(CS, getOrInsertFunction(Callee));
195 // the specified callee function. This takes more time to execute than
197 void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) {
199 if (CalledFunctions[i].second == Callee) {
200 Callee->DropRef();
208 /// from this node to the specified callee function.
209 void CallGraphNode::removeOneAbstractEdgeTo(CallGraphNode *Callee) {
211 assert(I != CalledFunctions.end() && "Cannot find callee to remove!");
213 if (CR.second == Callee && CR.first == nullptr) {
214 Callee->DropRef();