Searched refs:CheckLoc (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | StackProtector.cpp | 558 static bool CreatePrologue(Function *F, Module *M, Instruction *CheckLoc, in CreatePrologue() argument 562 PointerType *PtrTy = PointerType::getUnqual(CheckLoc->getContext()); in CreatePrologue() 589 Instruction *CheckLoc = dyn_cast<ReturnInst>(BB.getTerminator()); in InsertStackProtectors() local 590 if (!CheckLoc && !DisableCheckNoReturn) in InsertStackProtectors() 596 CheckLoc = CB; in InsertStackProtectors() 600 if (!CheckLoc) in InsertStackProtectors() 606 SupportsSelectionDAGSP &= CreatePrologue(F, M, CheckLoc, TLI, AI); in InsertStackProtectors() 629 Instruction *Prev = CheckLoc->getPrevNonDebugInstruction(); in InsertStackProtectors() 632 CheckLoc = Prev; in InsertStackProtectors() 640 IRBuilder<> B(CheckLoc); in InsertStackProtectors() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | NumericalStabilitySanitizer.cpp | 347 class CheckLoc { class 350 static CheckLoc makeStore(Value *Address) { in makeStore() 351 CheckLoc Result(kStore); in makeStore() 355 static CheckLoc makeLoad(Value *Address) { in makeLoad() 356 CheckLoc Result(kLoad); in makeLoad() 362 static CheckLoc makeArg(int ArgId) { in makeArg() 363 CheckLoc Result(kArg); in makeArg() 369 static CheckLoc makeRet() { return CheckLoc(kRet); } in makeRet() 372 static CheckLoc makeInsert() { return CheckLoc(kInsert); } in makeInsert() 410 explicit CheckLoc(CheckType CheckTy) : CheckTy(CheckTy) {} in CheckLoc() function in __anon1c7024df0111::CheckLoc [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/FileCheck/ |
| H A D | FileCheck.h | 118 SMLoc CheckLoc; member 172 const Check::FileCheckType &CheckTy, SMLoc CheckLoc,
|
| /freebsd/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheck.cpp | 1343 SMLoc CheckLoc = Diags->rbegin()->CheckLoc; in ProcessMatchResult() local 1345 I != E && I->CheckLoc == CheckLoc; ++I) in ProcessMatchResult() 1499 SMLoc CheckLoc, MatchType MatchTy, in FileCheckDiag() argument 1501 : CheckTy(CheckTy), CheckLoc(CheckLoc), MatchTy(MatchTy), Note(Note) { in FileCheckDiag() 2467 SMLoc CheckLoc = Diags->rbegin()->CheckLoc; in CheckDag() local 2469 I != E && I->CheckLoc == CheckLoc; ++I) in CheckDag()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 3614 CXXCastPath &BasePath, SourceLocation CheckLoc, SourceRange OpRange, in CheckMemberPointerConversion() argument 3619 (void)isCompleteType(CheckLoc, FromType); in CheckMemberPointerConversion() 3620 (void)isCompleteType(CheckLoc, QualType(ToPtrType, 0)); in CheckMemberPointerConversion() 3666 Diag(CheckLoc, PD); in CheckMemberPointerConversion() 3673 Diag(CheckLoc, PD); in CheckMemberPointerConversion() 3685 CheckLoc, Base, Derived, Paths.front(), in CheckMemberPointerConversion()
|
| H A D | SemaChecking.cpp | 14085 void Sema::CheckCompletedExpr(Expr *E, SourceLocation CheckLoc, in CheckCompletedExpr() argument 14089 CheckImplicitConversions(E, CheckLoc); in CheckCompletedExpr()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 3076 void CheckCompletedExpr(Expr *E, SourceLocation CheckLoc = SourceLocation(), 10160 CXXCastPath &BasePath, SourceLocation CheckLoc, SourceRange OpRange,
|