Home
last modified time | relevance | path

Searched refs:CheckingGroups (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp238 for (unsigned I = 0; I < CheckingGroups.size(); ++I) { in generateChecks()
239 for (unsigned J = I + 1; J < CheckingGroups.size(); ++J) { in generateChecks()
240 const RuntimePointerChecking::CheckingPtrGroup &CGI = CheckingGroups[I]; in generateChecks()
241 const RuntimePointerChecking::CheckingPtrGroup &CGJ = CheckingGroups[J]; in generateChecks()
326 CheckingGroups.clear(); in groupChecks()
355 CheckingGroups.push_back(CheckingPtrGroup(I, *this)); in groupChecks()
423 llvm::copy(Groups, std::back_inserter(CheckingGroups)); in groupChecks()
478 for (unsigned I = 0; I < CheckingGroups.size(); ++I) { in print()
479 const auto &CG = CheckingGroups[I]; in print()
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DLoopVersioning.cpp187 for (const auto &Group : RtPtrChecking->CheckingGroups) { in prepareNoAliasMetadata()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h457 SmallVector<CheckingPtrGroup, 2> CheckingGroups; variable