Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp337 for (unsigned I = 0; I < CheckingGroups.size(); ++I) { in generateChecks()
338 for (unsigned J = I + 1; J < CheckingGroups.size(); ++J) { in generateChecks()
339 const RuntimeCheckingPtrGroup &CGI = CheckingGroups[I]; in generateChecks()
340 const RuntimeCheckingPtrGroup &CGJ = CheckingGroups[J]; in generateChecks()
439 CheckingGroups.clear(); in groupChecks()
468 CheckingGroups.push_back(RuntimeCheckingPtrGroup(I, *this)); in groupChecks()
542 llvm::copy(Groups, std::back_inserter(CheckingGroups)); in groupChecks()
597 for (unsigned I = 0; I < CheckingGroups.size(); ++I) { in print()
598 const auto &CG = CheckingGroups[I]; in print()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLoopVersioning.cpp193 for (const auto &Group : RtPtrChecking->CheckingGroups) { in prepareNoAliasMetadata()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h486 SmallVector<RuntimeCheckingPtrGroup, 2> CheckingGroups; variable