Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:callee

29                                           llvm::Value *Callee,
63 Callee, ReturnValue, Args, MD);
78 const Expr *callee = CE->getCallee()->IgnoreParens();
80 if (isa<BinaryOperator>(callee))
83 const MemberExpr *ME = cast<MemberExpr>(callee);
88 llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
89 return EmitCall(getContext().getPointerType(MD->getType()), Callee,
180 llvm::Value *Callee;
193 Callee = BuildAppleKextVirtualCall(MD, ME->getQualifier(), Ty);
195 Callee = CGM.GetAddrOfCXXDestructor(Dtor, Dtor_Complete, FInfo, Ty);
199 Callee = CGM.GetAddrOfFunction(GlobalDecl(DDtor, Dtor_Complete), Ty);
201 EmitCXXMemberCall(MD, CE->getExprLoc(), Callee, ReturnValue, This,
208 Callee = CGM.GetAddrOfFunction(GlobalDecl(Ctor, Ctor_Complete), Ty);
210 Callee = CGM.getCXXABI().getVirtualFunctionPointer(*this, MD, This, Ty);
215 Callee = BuildAppleKextVirtualCall(MD, ME->getQualifier(), Ty);
217 Callee = CGM.GetAddrOfFunction(MD, Ty);
219 Callee = CGM.GetAddrOfFunction(DevirtualizedMethod, Ty);
228 return EmitCXXMemberCall(MD, CE->getExprLoc(), Callee, ReturnValue, This,
263 // Ask the ABI to load the callee. Note that This is modified.
264 llvm::Value *Callee =
280 Callee, ReturnValue, Args);
300 llvm::Value *Callee = EmitCXXOperatorMemberCallee(E, MD, This);
301 return EmitCXXMemberCall(MD, E->getExprLoc(), Callee, ReturnValue, This,
1000 const FunctionDecl *Callee,
1004 llvm::Value *CalleeAddr = CGF.CGM.GetAddrOfFunction(Callee);
1008 Callee, &CallOrInvoke);
1016 if (Callee->isReplaceableGlobalAllocationFunction() &&