OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CallLoc
(Results
1 - 18
of
18
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
SampleContextTracker.h
41
LineLocation
CallLoc
= {0, 0})
43
CallSiteLoc(
CallLoc
){};
/src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_handlers_cxx.cpp
168
SourceLocation
CallLoc
= Data->Loc.acquire();
171
if (ignoreReport(
CallLoc
, Opts, ET))
174
ScopedReport R(Opts,
CallLoc
, ET);
181
Diag(
CallLoc
, DL_Error, ET,
/src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_handlers_cxx.cpp
168
SourceLocation
CallLoc
= Data->Loc.acquire();
171
if (ignoreReport(
CallLoc
, Opts, ET))
174
ScopedReport R(Opts,
CallLoc
, ET);
181
Diag(
CallLoc
, DL_Error, ET,
ubsan_handlers.cpp
936
SourceLocation
CallLoc
= Data->Loc.acquire();
938
if (ignoreReport(
CallLoc
, Opts, ET))
941
ScopedReport R(Opts,
CallLoc
, ET);
948
Diag(
CallLoc
, DL_Error, ET,
/src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_handlers.cc
549
SourceLocation
CallLoc
= Data->Loc.acquire();
552
if (ignoreReport(
CallLoc
, Opts, ET))
555
ScopedReport R(Opts,
CallLoc
, ET);
562
Diag(
CallLoc
, DL_Error, ET,
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
TargetInfo.h
69
virtual void checkFunctionCallABI(CodeGenModule &CGM, SourceLocation
CallLoc
,
CGExprCXX.cpp
334
SourceLocation
CallLoc
;
337
CallLoc
= CE->getExprLoc();
348
EmitTypeCheck(CodeGenFunction::TCK_MemberCall,
CallLoc
,
TargetInfo.cpp
2503
void checkFunctionCallABI(CodeGenModule &CGM, SourceLocation
CallLoc
,
2524
SourceLocation
CallLoc
,
2532
return Diag.Report(
CallLoc
, diag::warn_avx_calling_convention)
2537
return Diag.Report(
CallLoc
, diag::err_avx_calling_convention)
2546
SourceLocation
CallLoc
,
2552
return checkAVXParamFeature(Diag,
CallLoc
, CallerMap, CalleeMap, Ty,
2556
return checkAVXParamFeature(Diag,
CallLoc
, CallerMap, CalleeMap, Ty, "avx",
2563
CodeGenModule &CGM, SourceLocation
CallLoc
, const FunctionDecl *Caller,
2588
if (checkAVXParam(CGM.getDiags(), CGM.getContext(),
CallLoc
, CallerMap,
2600
checkAVXParam(CGM.getDiags(), CGM.getContext(),
CallLoc
, CallerMap
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp
549
///
CallLoc
- The location of the call expression for this call.
550
SourceLocation
CallLoc
;
584
CallStackFrame(EvalInfo &Info, SourceLocation
CallLoc
,
633
SourceLocation getCallLocation() const override { return
CallLoc
; }
1437
CallStackFrame::CallStackFrame(EvalInfo &Info, SourceLocation
CallLoc
,
1441
Arguments(Call),
CallLoc
(
CallLoc
), Index(Info.NextCallIndex++) {
5439
static bool CheckConstexprFunction(EvalInfo &Info, SourceLocation
CallLoc
,
5453
Info.FFDiag(
CallLoc
, diag::note_invalid_subexpr_in_const_expr);
5462
Info.CCEDiag(
CallLoc
, diag::note_constexpr_virtual_call)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCoroutine.cpp
906
SourceLocation
CallLoc
= E->getExprLoc();
910
*this, Coroutine->CoroutinePromise,
CallLoc
, E);
SemaExpr.cpp
5627
bool Sema::CheckCXXDefaultArgExpr(SourceLocation
CallLoc
, FunctionDecl *FD,
5634
Diag(
CallLoc
, diag::note_recursive_default_argument_used_here);
5639
Diag(
CallLoc
, diag::err_use_of_default_argument_to_function_declared_later)
5647
InstantiateDefaultArgument(
CallLoc
, FD, Param))
5681
ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation
CallLoc
,
5684
if (CheckCXXDefaultArgExpr(
CallLoc
, FD, Param))
5686
return CXXDefaultArgExpr::Create(Context,
CallLoc
, Param, CurContext);
5895
bool Sema::GatherArgumentsForCall(SourceLocation
CallLoc
, FunctionDecl *FDecl,
5952
ExprResult ArgExpr = BuildCXXDefaultArgExpr(
CallLoc
, FDecl, Param);
5965
CheckStaticArrayArgument(
CallLoc
, Param, Arg)
[
all
...]
SemaChecking.cpp
9979
/// Check if the ArgLoc originated from a macro passed to the call at
CallLoc
.
9990
SourceLocation
CallLoc
,
9992
if (!
CallLoc
.isMacroID())
9993
return SM.getFileID(
CallLoc
) != SM.getFileID(ArgLoc);
9995
return SM.getFileID(SM.getImmediateMacroCallerLoc(
CallLoc
)) !=
10013
SourceLocation
CallLoc
= Call->getRParenLoc();
10016
!isArgumentExpandedFromMacro(SM,
CallLoc
, SizeArg->getExprLoc())) {
10023
(
CallLoc
.isMacroID() && Lexer::getImmediateMacroName(
10024
CallLoc
, SM, S.getLangOpts()) == "bzero")) {
SemaTemplateInstantiateDecl.cpp
4296
bool Sema::InstantiateDefaultArgument(SourceLocation
CallLoc
, FunctionDecl *FD,
4324
InstantiatingTemplate Inst(*this,
CallLoc
, Param,
4349
runWithSufficientStackSpace(
CallLoc
, [&] {
SemaOverload.cpp
6580
Sema &S, FunctionDecl *Function, Expr *ThisArg, SourceLocation
CallLoc
,
6629
ExprResult R = S.BuildCXXDefaultArgExpr(
CallLoc
, Function, P);
6642
SourceLocation
CallLoc
,
6654
*this, Function, /*ThisArg=*/nullptr,
CallLoc
, Args, Trap,
SemaDeclCXX.cpp
160
Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation
CallLoc
,
168
Proto = Self->ResolveExceptionSpec(
CallLoc
, Proto);
/src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp
6542
LocTy
CallLoc
= Lex.getLoc();
6616
return error(
CallLoc
, "not enough parameters specified for call");
6619
return error(
CallLoc
, "invoke instructions may not have an alignment");
6852
LocTy
CallLoc
= Lex.getLoc();
6942
return error(
CallLoc
, "not enough parameters specified for call");
6945
return error(
CallLoc
, "callbr instructions may not have an alignment");
7281
LocTy
CallLoc
= Lex.getLoc();
7349
return error(
CallLoc
, "not enough parameters specified for call");
7352
return error(
CallLoc
, "call instructions may not have an alignment");
7365
return error(
CallLoc
, "fast-math-flags specified for call without
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp
3181
SourceLocation
CallLoc
= CP->callEnter.asLocation();
3184
if (
CallLoc
.isMacroID())
3187
assert(AnalysisManager::isInCodeFile(
CallLoc
, SMgr) &&
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h
3709
EnableIfAttr *CheckEnableIf(FunctionDecl *Function, SourceLocation
CallLoc
,
5371
void CheckStaticArrayArgument(SourceLocation
CallLoc
,
5764
bool CheckCXXDefaultArgExpr(SourceLocation
CallLoc
, FunctionDecl *FD,
5769
ExprResult BuildCXXDefaultArgExpr(SourceLocation
CallLoc
,
5818
void CalledDecl(SourceLocation
CallLoc
, const CXXMethodDecl *Method);
9389
bool InstantiateDefaultArgument(SourceLocation
CallLoc
, FunctionDecl *FD,
11345
bool GatherArgumentsForCall(SourceLocation
CallLoc
, FunctionDecl *FDecl,
11702
ExprResult checkUnknownAnyArg(SourceLocation
callLoc
,
Completed in 151 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026