diff options
author | Adam Nemet <anemet@apple.com> | 2015-07-28 05:01:53 +0000 |
---|---|---|
committer | Adam Nemet <anemet@apple.com> | 2015-07-28 05:01:53 +0000 |
commit | 0a674401bf6c2a1e2ef46ac377c2ea4b8118d446 (patch) | |
tree | 8f7100a23e82c7df08cd31b390e47b0992eaa7bd /llvm/lib/Transforms/Utils/LoopVersioning.cpp | |
parent | 70bd288534d90addd8a6d19e01a19c069b59df34 (diff) | |
download | llvm-0a674401bf6c2a1e2ef46ac377c2ea4b8118d446.zip llvm-0a674401bf6c2a1e2ef46ac377c2ea4b8118d446.tar.gz llvm-0a674401bf6c2a1e2ef46ac377c2ea4b8118d446.tar.bz2 |
[LDist][LVer] Explicitly pass the set of memchecks to LoopVersioning, NFC
Before the patch, the checks were generated internally in
addRuntimeCheck. Now, we use the new overloaded version of
addRuntimeCheck that takes the ready-made set of checks as a parameter.
The checks are now generated by the client (LoopDistribution) with the
new RuntimePointerChecking::generateChecks API.
Also the new printChecks API is used to print out the checks for
debugging.
This is to continue the transition over to the new model whereby clients
will get the full set of checks from LAA, filter it and then pass it to
LoopVersioning and in turn to addRuntimeCheck.
llvm-svn: 243382
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopVersioning.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LoopVersioning.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopVersioning.cpp b/llvm/lib/Transforms/Utils/LoopVersioning.cpp index 832079d..b2182bd 100644 --- a/llvm/lib/Transforms/Utils/LoopVersioning.cpp +++ b/llvm/lib/Transforms/Utils/LoopVersioning.cpp @@ -22,11 +22,12 @@ using namespace llvm; -LoopVersioning::LoopVersioning(const LoopAccessInfo &LAI, Loop *L, LoopInfo *LI, - DominatorTree *DT, - const SmallVector<int, 8> *PtrToPartition) +LoopVersioning::LoopVersioning( + SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks, + const LoopAccessInfo &LAI, Loop *L, LoopInfo *LI, DominatorTree *DT, + const SmallVector<int, 8> *PtrToPartition) : VersionedLoop(L), NonVersionedLoop(nullptr), - PtrToPartition(PtrToPartition), LAI(LAI), LI(LI), DT(DT) { + PtrToPartition(PtrToPartition), Checks(Checks), LAI(LAI), LI(LI), DT(DT) { assert(L->getExitBlock() && "No single exit block"); assert(L->getLoopPreheader() && "No preheader"); } @@ -41,7 +42,7 @@ void LoopVersioning::versionLoop(Pass *P) { // Add the memcheck in the original preheader (this is empty initially). BasicBlock *MemCheckBB = VersionedLoop->getLoopPreheader(); std::tie(FirstCheckInst, MemRuntimeCheck) = - LAI.addRuntimeCheck(MemCheckBB->getTerminator(), PtrToPartition); + LAI.addRuntimeCheck(MemCheckBB->getTerminator(), Checks); assert(MemRuntimeCheck && "called even though needsAnyChecking = false"); // Rename the block to make the IR more readable. |