Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Callee

86         const Function *Callee = CS.getCalledFunction();
87 if (!Callee || !Intrinsic::isLeaf(Callee->getIntrinsicID()))
92 else if (!Callee->isIntrinsic())
93 Node->addCalledFunction(CS, getOrInsertFunction(Callee));
216 // the specified callee function. This takes more time to execute than
218 void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) {
220 if (CalledFunctions[i].second == Callee) {
221 Callee->DropRef();
229 /// from this node to the specified callee function.
230 void CallGraphNode::removeOneAbstractEdgeTo(CallGraphNode *Callee) {
232 assert(I != CalledFunctions.end() && "Cannot find callee to remove!");
234 if (CR.second == Callee && CR.first == nullptr) {
235 Callee->DropRef();