Home
last modified time | relevance | path

Searched refs:CallLoc (Results 1 – 15 of 15) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.cpp168 SourceLocation CallLoc = Data->Loc.acquire(); in handleFunctionTypeMismatch() local
171 if (ignoreReport(CallLoc, Opts, ET)) in handleFunctionTypeMismatch()
174 ScopedReport R(Opts, CallLoc, ET); in handleFunctionTypeMismatch()
181 Diag(CallLoc, DL_Error, ET, in handleFunctionTypeMismatch()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DSampleContextTracker.h41 LineLocation CallLoc = {0, 0})
43 CallSiteLoc(CallLoc){}; in ParentContext()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DTargetInfo.h69 virtual void checkFunctionCallABI(CodeGenModule &CGM, SourceLocation CallLoc, in checkFunctionCallABI() argument
H A DCGExprCXX.cpp334 SourceLocation CallLoc; in EmitCXXMemberOrOperatorMemberCallExpr() local
337 CallLoc = CE->getExprLoc(); in EmitCXXMemberOrOperatorMemberCallExpr()
348 EmitTypeCheck(CodeGenFunction::TCK_MemberCall, CallLoc, in EmitCXXMemberOrOperatorMemberCallExpr()
H A DTargetInfo.cpp2503 void checkFunctionCallABI(CodeGenModule &CGM, SourceLocation CallLoc,
2524 SourceLocation CallLoc, in checkAVXParamFeature() argument
2532 return Diag.Report(CallLoc, diag::warn_avx_calling_convention) in checkAVXParamFeature()
2537 return Diag.Report(CallLoc, diag::err_avx_calling_convention) in checkAVXParamFeature()
2546 SourceLocation CallLoc, in checkAVXParam() argument
2552 return checkAVXParamFeature(Diag, CallLoc, CallerMap, CalleeMap, Ty, in checkAVXParam()
2556 return checkAVXParamFeature(Diag, CallLoc, CallerMap, CalleeMap, Ty, "avx", in checkAVXParam()
2563 CodeGenModule &CGM, SourceLocation CallLoc, const FunctionDecl *Caller, in checkFunctionCallABI() argument
2588 if (checkAVXParam(CGM.getDiags(), CGM.getContext(), CallLoc, CallerMap, in checkFunctionCallABI()
2600 checkAVXParam(CGM.getDiags(), CGM.getContext(), CallLoc, CallerMap, in checkFunctionCallABI()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp550 SourceLocation CallLoc; member in __anon19193fee0111::CallStackFrame
584 CallStackFrame(EvalInfo &Info, SourceLocation CallLoc,
1441 Arguments(Call), CallLoc(CallLoc), Index(Info.NextCallIndex++) { in CallStackFrame()
6073 static bool HandleFunctionCall(SourceLocation CallLoc, in HandleFunctionCall() argument
6078 if (!Info.CheckCallLimit(CallLoc)) in HandleFunctionCall()
6081 CallStackFrame Frame(Info, CallLoc, Callee, This, Call); in HandleFunctionCall()
6135 SourceLocation CallLoc = E->getExprLoc(); in HandleConstructorCall() local
6136 if (!Info.CheckCallLimit(CallLoc)) in HandleConstructorCall()
6374 OpaqueValueExpr LocE(CallLoc, Info.Ctx.IntTy, VK_PRValue); in HandleDestructionImpl()
6422 Info.FFDiag(CallLoc); in HandleDestructionImpl()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp6243 LocTy CallLoc = Lex.getLoc(); in parseInvoke() local
6317 return error(CallLoc, "not enough parameters specified for call"); in parseInvoke()
6320 return error(CallLoc, "invoke instructions may not have an alignment"); in parseInvoke()
6553 LocTy CallLoc = Lex.getLoc(); in parseCallBr() local
6643 return error(CallLoc, "not enough parameters specified for call"); in parseCallBr()
6646 return error(CallLoc, "callbr instructions may not have an alignment"); in parseCallBr()
6982 LocTy CallLoc = Lex.getLoc(); in parseCall() local
7050 return error(CallLoc, "not enough parameters specified for call"); in parseCall()
7053 return error(CallLoc, "call instructions may not have an alignment"); in parseCall()
7066 return error(CallLoc, "fast-math-flags specified for call without " in parseCall()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp886 SourceLocation CallLoc = E->getExprLoc(); in BuildResolvedCoawaitExpr() local
890 *this, Coroutine->CoroutinePromise, CallLoc, E); in BuildResolvedCoawaitExpr()
H A DSemaExpr.cpp5685 InstantiateDefaultArgument(CallLoc, FD, Param)) in CheckCXXDefaultArgExpr()
5719 ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, in BuildCXXDefaultArgExpr() argument
5722 if (CheckCXXDefaultArgExpr(CallLoc, FD, Param)) in BuildCXXDefaultArgExpr()
6004 CheckStaticArrayArgument(CallLoc, Param, Arg); in GatherArgumentsForCall()
6017 ExprResult arg = checkUnknownAnyArg(CallLoc, A, paramType); in GatherArgumentsForCall()
6056 Sema::CheckStaticArrayArgument(SourceLocation CallLoc, in CheckStaticArrayArgument() argument
6071 Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange(); in CheckStaticArrayArgument()
6088 Diag(CallLoc, diag::warn_static_array_too_small) in CheckStaticArrayArgument()
6101 Diag(CallLoc, diag::warn_static_array_too_small) in CheckStaticArrayArgument()
6374 S.CheckCXXThisCapture(CallLoc); in tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs()
[all …]
H A DSemaChecking.cpp10262 SourceLocation CallLoc, in isArgumentExpandedFromMacro() argument
10264 if (!CallLoc.isMacroID()) in isArgumentExpandedFromMacro()
10265 return SM.getFileID(CallLoc) != SM.getFileID(ArgLoc); in isArgumentExpandedFromMacro()
10267 return SM.getFileID(SM.getImmediateMacroCallerLoc(CallLoc)) != in isArgumentExpandedFromMacro()
10285 SourceLocation CallLoc = Call->getRParenLoc(); in CheckMemaccessSize() local
10288 !isArgumentExpandedFromMacro(SM, CallLoc, SizeArg->getExprLoc())) { in CheckMemaccessSize()
10295 (CallLoc.isMacroID() && Lexer::getImmediateMacroName( in CheckMemaccessSize()
10296 CallLoc, SM, S.getLangOpts()) == "bzero")) { in CheckMemaccessSize()
H A DSemaTemplateInstantiateDecl.cpp4420 bool Sema::InstantiateDefaultArgument(SourceLocation CallLoc, FunctionDecl *FD, in InstantiateDefaultArgument() argument
4448 InstantiatingTemplate Inst(*this, CallLoc, Param, in InstantiateDefaultArgument()
4473 runWithSufficientStackSpace(CallLoc, [&] { in InstantiateDefaultArgument()
H A DSemaOverload.cpp6576 Sema &S, FunctionDecl *Function, Expr *ThisArg, SourceLocation CallLoc, in convertArgsForAvailabilityChecks() argument
6625 ExprResult R = S.BuildCXXDefaultArgExpr(CallLoc, Function, P); in convertArgsForAvailabilityChecks()
6638 SourceLocation CallLoc, in CheckEnableIf() argument
6650 *this, Function, /*ThisArg=*/nullptr, CallLoc, Args, Trap, in CheckEnableIf()
H A DSemaDeclCXX.cpp160 Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc, in CalledDecl() argument
168 Proto = Self->ResolveExceptionSpec(CallLoc, Proto); in CalledDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp3207 SourceLocation CallLoc = CP->callEnter.asLocation(); in getFirstStackedCallToHeaderFile() local
3210 if (CallLoc.isMacroID()) in getFirstStackedCallToHeaderFile()
3213 assert(AnalysisManager::isInCodeFile(CallLoc, SMgr) && in getFirstStackedCallToHeaderFile()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h3739 EnableIfAttr *CheckEnableIf(FunctionDecl *Function, SourceLocation CallLoc,
5420 void CheckStaticArrayArgument(SourceLocation CallLoc,
5825 bool CheckCXXDefaultArgExpr(SourceLocation CallLoc, FunctionDecl *FD,
5830 ExprResult BuildCXXDefaultArgExpr(SourceLocation CallLoc,
5879 void CalledDecl(SourceLocation CallLoc, const CXXMethodDecl *Method);
9458 bool InstantiateDefaultArgument(SourceLocation CallLoc, FunctionDecl *FD,
11446 bool GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl,