Lines Matching full:callee
28 llvm::Value *Callee,
62 Callee, ReturnValue, Args, MD);
170 const Expr *callee = CE->getCallee()->IgnoreParens();
172 if (isa<BinaryOperator>(callee))
175 const MemberExpr *ME = cast<MemberExpr>(callee);
180 llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
181 return EmitCall(getContext().getPointerType(MD->getType()), Callee,
272 llvm::Value *Callee;
285 Callee = BuildAppleKextVirtualCall(MD, ME->getQualifier(), Ty);
287 Callee = CGM.GetAddrOfCXXDestructor(Dtor, Dtor_Complete, FInfo, Ty);
291 Callee = CGM.GetAddrOfFunction(GlobalDecl(DDtor, Dtor_Complete), Ty);
293 EmitCXXMemberCall(MD, CE->getExprLoc(), Callee, ReturnValue, This,
300 Callee = CGM.GetAddrOfFunction(GlobalDecl(Ctor, Ctor_Complete), Ty);
302 Callee = BuildVirtualCall(MD, This, Ty);
307 Callee = BuildAppleKextVirtualCall(MD, ME->getQualifier(), Ty);
309 Callee = CGM.GetAddrOfFunction(MD, Ty);
311 Callee = CGM.GetAddrOfFunction(DevirtualizedMethod, Ty);
315 return EmitCXXMemberCall(MD, CE->getExprLoc(), Callee, ReturnValue, This,
350 // Ask the ABI to load the callee. Note that This is modified.
351 llvm::Value *Callee =
366 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required), Callee,
387 llvm::Value *Callee = EmitCXXOperatorMemberCallee(E, MD, This);
388 return EmitCXXMemberCall(MD, E->getExprLoc(), Callee, ReturnValue, This,
1008 const FunctionDecl *Callee,
1012 llvm::Value *CalleeAddr = CGF.CGM.GetAddrOfFunction(Callee);
1016 Callee, &CallOrInvoke);
1024 if (Callee->isReplaceableGlobalAllocationFunction() &&