Lines Matching refs:Caller
157 const FunctionDecl *Caller,
165 const FunctionDecl *Caller,
170 const FunctionDecl *Caller,
874 CodeGenModule &CGM, SourceLocation CallLoc, const FunctionDecl *Caller, in checkFunctionCallABIStreaming() argument
876 if (!Caller || !Callee || !Callee->hasAttr<AlwaysInlineAttr>()) in checkFunctionCallABIStreaming()
880 IsArmStreamingFunction(Caller, /*IncludeLocallyStreaming=*/true); in checkFunctionCallABIStreaming()
883 bool CallerIsStreamingCompatible = isStreamingCompatible(Caller); in checkFunctionCallABIStreaming()
892 << Caller->getDeclName() << Callee->getDeclName() << "streaming"; in checkFunctionCallABIStreaming()
903 CodeGenModule &CGM, SourceLocation CallLoc, const FunctionDecl *Caller, in checkFunctionCallABISoftFloat() argument
909 if (!Caller || TI.hasFeature("fp") || ABIInfo.isSoftFloat()) in checkFunctionCallABISoftFloat()
913 Callee ? Callee : Caller, CallLoc); in checkFunctionCallABISoftFloat()
917 Callee ? Callee : Caller, CallLoc); in checkFunctionCallABISoftFloat()
922 const FunctionDecl *Caller, in checkFunctionCallABI() argument
926 checkFunctionCallABIStreaming(CGM, CallLoc, Caller, Callee); in checkFunctionCallABI()
927 checkFunctionCallABISoftFloat(CGM, CallLoc, Caller, Callee, Args, ReturnType); in checkFunctionCallABI()