Home
last modified time | relevance | path

Searched refs:CheckLoc (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackProtector.cpp535 static bool CreatePrologue(Function *F, Module *M, Instruction *CheckLoc, in InsertStackProtectors()
539 PointerType *PtrTy = PointerType::getUnqual(CheckLoc->getContext()); in InsertStackProtectors()
567 Instruction *CheckLoc = dyn_cast<ReturnInst>(BB.getTerminator()); in InsertStackProtectors()
568 if (!CheckLoc && !DisableCheckNoReturn) in InsertStackProtectors()
574 CheckLoc = CB; in InsertStackProtectors()
578 if (!CheckLoc) in InsertStackProtectors()
584 SupportsSelectionDAGSP &= CreatePrologue(F, M, CheckLoc, TLI, AI); in InsertStackProtectors()
610 Instruction *Prev = CheckLoc->getPrevNonDebugInstruction(); in InsertStackProtectors()
612 CheckLoc = Prev;
616 CheckLoc in CreateFailBB()
451 CreatePrologue(Function * F,Module * M,Instruction * CheckLoc,const TargetLoweringBase * TLI,AllocaInst * & AI) CreatePrologue() argument
484 Instruction *CheckLoc = dyn_cast<ReturnInst>(BB.getTerminator()); InsertStackProtectors() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DNumericalStabilitySanitizer.cpp351 class CheckLoc { class
354 static CheckLoc makeStore(Value *Address) { in makeStore()
355 CheckLoc Result(kStore); in makeStore()
359 static CheckLoc makeLoad(Value *Address) { in makeLoad()
360 CheckLoc Result(kLoad); in makeLoad()
366 static CheckLoc makeArg(int ArgId) { in makeArg()
367 CheckLoc Result(kArg); in makeArg()
373 static CheckLoc makeRet() { return CheckLoc(kRet); } in makeRet()
376 static CheckLoc makeInsert() { return CheckLoc(kInsert); } in makeInsert()
414 explicit CheckLoc(CheckType CheckTy) : CheckTy(CheckTy) {} in CheckLoc() function in __anon1c7024df0111::CheckLoc
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/FileCheck/
H A DFileCheck.h117 SMLoc CheckLoc; member
171 SMLoc CheckLoc, MatchType MatchTy, SMRange InputRange,
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp1303 SMLoc CheckLoc = Diags->rbegin()->CheckLoc; in ProcessMatchResult() local
1305 I != E && I->CheckLoc == CheckLoc; ++I) in ProcessMatchResult()
1459 SMLoc CheckLoc, MatchType MatchTy, in FileCheckDiag() argument
1461 : CheckTy(CheckTy), CheckLoc(CheckLoc), MatchTy(MatchTy), Note(Note) { in FileCheckDiag()
2430 SMLoc CheckLoc = Diags->rbegin()->CheckLoc; in CheckDag() local
2432 I != E && I->CheckLoc == CheckLoc; ++I) in CheckDag()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp12652 void Sema::CheckCompletedExpr(Expr *E, SourceLocation CheckLoc, in CheckCompletedExpr() argument
12656 CheckImplicitConversions(E, CheckLoc); in CheckCompletedExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h2624 void CheckCompletedExpr(Expr *E, SourceLocation CheckLoc = SourceLocation(),