[polly] r266066 - Introduce and use MemoryAccess::getPwAff() [NFC]
Johannes Doerfert via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 12 06:26:45 PDT 2016
Author: jdoerfert
Date: Tue Apr 12 08:26:45 2016
New Revision: 266066
URL: http://llvm.org/viewvc/llvm-project?rev=266066&view=rev
Log:
Introduce and use MemoryAccess::getPwAff() [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=266066&r1=266065&r2=266066&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopInfo.h (original)
+++ polly/trunk/include/polly/ScopInfo.h Tue Apr 12 08:26:45 2016
@@ -797,6 +797,9 @@ public:
/// @brief Return the access function subscript in the dimension @p Dim.
const SCEV *getSubscript(unsigned Dim) const { return Subscripts[Dim]; }
+ /// @brief Compute the isl representation for the SCEV @p E wrt. this access.
+ __isl_give isl_pw_aff *getPwAff(const SCEV *E);
+
/// Get the stride of this memory access in the specified Schedule. Schedule
/// is a map from the statement to a schedule where the innermost dimension is
/// the dimension of the innermost loop containing the statement.
Modified: polly/trunk/lib/Analysis/ScopInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopInfo.cpp?rev=266066&r1=266065&r2=266066&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopInfo.cpp (original)
+++ polly/trunk/lib/Analysis/ScopInfo.cpp Tue Apr 12 08:26:45 2016
@@ -676,14 +676,14 @@ void MemoryAccess::buildMemIntrinsicAcce
assert(isa<MemIntrinsic>(getAccessInstruction()));
assert(Subscripts.size() == 2 && Sizes.size() == 0);
- auto *SubscriptPWA = Statement->getPwAff(Subscripts[0]);
+ auto *SubscriptPWA = getPwAff(Subscripts[0]);
auto *SubscriptMap = isl_map_from_pw_aff(SubscriptPWA);
isl_map *LengthMap;
if (Subscripts[1] == nullptr) {
LengthMap = isl_map_universe(isl_map_get_space(SubscriptMap));
} else {
- auto *LengthPWA = Statement->getPwAff(Subscripts[1]);
+ auto *LengthPWA = getPwAff(Subscripts[1]);
LengthMap = isl_map_from_pw_aff(LengthPWA);
auto *RangeSpace = isl_space_range(isl_map_get_space(LengthMap));
LengthMap = isl_map_apply_range(LengthMap, isl_map_lex_gt(RangeSpace));
@@ -742,7 +742,7 @@ __isl_give isl_map *MemoryAccess::foldAc
for (int i = Size - 2; i >= 0; --i) {
isl_space *Space;
isl_map *MapOne, *MapTwo;
- isl_pw_aff *DimSize = Statement->getPwAff(Sizes[i]);
+ isl_pw_aff *DimSize = getPwAff(Sizes[i]);
isl_space *SpaceSize = isl_pw_aff_get_space(DimSize);
isl_pw_aff_free(DimSize);
@@ -840,7 +840,7 @@ void MemoryAccess::buildAccessRelation(c
AccessRelation = isl_map_universe(Space);
for (int i = 0, Size = Subscripts.size(); i < Size; ++i) {
- isl_pw_aff *Affine = Statement->getPwAff(Subscripts[i]);
+ isl_pw_aff *Affine = getPwAff(Subscripts[i]);
isl_map *SubscriptMap = isl_map_from_pw_aff(Affine);
AccessRelation = isl_map_flat_range_product(AccessRelation, SubscriptMap);
}
@@ -919,6 +919,11 @@ void MemoryAccess::print(raw_ostream &OS
void MemoryAccess::dump() const { print(errs()); }
+__isl_give isl_pw_aff *MemoryAccess::getPwAff(const SCEV *E) {
+ auto *Stmt = getStatement();
+ return Stmt->getParent()->getPwAff(E, Stmt->getEntryBlock());
+}
+
// Create a map in the size of the provided set domain, that maps from the
// one element of the provided set domain to another element of the provided
// set domain.
More information about the llvm-commits
mailing list