[polly] r310213 - [ScopInfo] Move InvariantAccess to isl++ [NFC]
Tobias Grosser via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 6 10:25:14 PDT 2017
Author: grosser
Date: Sun Aug 6 10:25:14 2017
New Revision: 310213
URL: http://llvm.org/viewvc/llvm-project?rev=310213&view=rev
Log:
[ScopInfo] Move InvariantAccess to isl++ [NFC]
Modified:
polly/trunk/include/polly/ScopInfo.h
polly/trunk/lib/Analysis/ScopInfo.cpp
Modified: polly/trunk/include/polly/ScopInfo.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopInfo.h?rev=310213&r1=310212&r2=310213&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopInfo.h (original)
+++ polly/trunk/include/polly/ScopInfo.h Sun Aug 6 10:25:14 2017
@@ -1122,7 +1122,7 @@ struct InvariantAccess {
MemoryAccess *MA;
/// The context under which the access is not invariant.
- isl_set *NonHoistableCtx;
+ isl::set NonHoistableCtx;
};
/// Ordered container type to hold invariant accesses.
Modified: polly/trunk/lib/Analysis/ScopInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopInfo.cpp?rev=310213&r1=310212&r2=310213&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopInfo.cpp (original)
+++ polly/trunk/lib/Analysis/ScopInfo.cpp Sun Aug 6 10:25:14 2017
@@ -3886,8 +3886,6 @@ void Scop::addInvariantLoads(ScopStmt &S
auto *AccInst = InvMAs.front().MA->getAccessInstruction();
invalidate(COMPLEXITY, AccInst->getDebugLoc(), AccInst->getParent());
isl_set_free(DomainCtx);
- for (auto &InvMA : InvMAs)
- isl_set_free(InvMA.NonHoistableCtx);
return;
}
@@ -3919,7 +3917,7 @@ void Scop::addInvariantLoads(ScopStmt &S
for (auto &InvMA : InvMAs) {
auto *MA = InvMA.MA;
- auto *NHCtx = InvMA.NonHoistableCtx;
+ auto *NHCtx = InvMA.NonHoistableCtx.copy();
// Check for another invariant access that accesses the same location as
// MA and if found consolidate them. Otherwise create a new equivalence
@@ -4116,7 +4114,7 @@ void Scop::hoistInvariantLoads() {
for (MemoryAccess *Access : Stmt)
if (isl::set NHCtx = getNonHoistableCtx(Access, Writes))
- InvariantAccesses.push_back({Access, NHCtx.release()});
+ InvariantAccesses.push_back({Access, NHCtx});
// Transfer the memory access from the statement to the SCoP.
for (auto InvMA : InvariantAccesses)
More information about the llvm-commits
mailing list