1 //===------ FlattenAlgo.cpp ------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // Main algorithm of the FlattenSchedulePass. This is a separate file to avoid 11 // the unittest for this requiring linking against LLVM. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "polly/FlattenAlgo.h" 16 #include "polly/Support/ISLOStream.h" 17 #include "polly/Support/ISLTools.h" 18 #include "llvm/Support/Debug.h" 19 #define DEBUG_TYPE "polly-flatten-algo" 20 21 using namespace polly; 22 using namespace llvm; 23 24 namespace { 25 26 /// Whether a dimension of a set is bounded (lower and upper) by a constant, 27 /// i.e. there are two constants Min and Max, such that every value x of the 28 /// chosen dimensions is Min <= x <= Max. 29 bool isDimBoundedByConstant(isl::set Set, unsigned dim) { 30 auto ParamDims = Set.dim(isl::dim::param); 31 Set = Set.project_out(isl::dim::param, 0, ParamDims); 32 Set = Set.project_out(isl::dim::set, 0, dim); 33 auto SetDims = Set.dim(isl::dim::set); 34 Set = Set.project_out(isl::dim::set, 1, SetDims - 1); 35 return bool(Set.is_bounded()); 36 } 37 38 /// Whether a dimension of a set is (lower and upper) bounded by a constant or 39 /// parameters, i.e. there are two expressions Min_p and Max_p of the parameters 40 /// p, such that every value x of the chosen dimensions is 41 /// Min_p <= x <= Max_p. 42 bool isDimBoundedByParameter(isl::set Set, unsigned dim) { 43 Set = Set.project_out(isl::dim::set, 0, dim); 44 auto SetDims = Set.dim(isl::dim::set); 45 Set = Set.project_out(isl::dim::set, 1, SetDims - 1); 46 return bool(Set.is_bounded()); 47 } 48 49 /// Whether BMap's first out-dimension is not a constant. 50 bool isVariableDim(const isl::basic_map &BMap) { 51 auto FixedVal = BMap.plain_get_val_if_fixed(isl::dim::out, 0); 52 return !FixedVal || FixedVal.is_nan(); 53 } 54 55 /// Whether Map's first out dimension is no constant nor piecewise constant. 56 bool isVariableDim(const isl::map &Map) { 57 return Map.foreach_basic_map([](isl::basic_map BMap) -> isl::stat { 58 if (isVariableDim(BMap)) 59 return isl::stat::error; 60 return isl::stat::ok; 61 }) == isl::stat::ok; 62 } 63 64 /// Whether UMap's first out dimension is no (piecewise) constant. 65 bool isVariableDim(const isl::union_map &UMap) { 66 return UMap.foreach_map([](isl::map Map) -> isl::stat { 67 if (isVariableDim(Map)) 68 return isl::stat::error; 69 return isl::stat::ok; 70 }) == isl::stat::ok; 71 } 72 73 /// Compute @p UPwAff - @p Val. 74 isl::union_pw_aff subtract(isl::union_pw_aff UPwAff, isl::val Val) { 75 if (Val.is_zero()) 76 return UPwAff; 77 78 auto Result = isl::union_pw_aff::empty(UPwAff.get_space()); 79 UPwAff.foreach_pw_aff([=, &Result](isl::pw_aff PwAff) -> isl::stat { 80 auto ValAff = 81 isl::pw_aff(isl::set::universe(PwAff.get_space().domain()), Val); 82 auto Subtracted = PwAff.sub(ValAff); 83 Result = Result.union_add(isl::union_pw_aff(Subtracted)); 84 return isl::stat::ok; 85 }); 86 return Result; 87 } 88 89 /// Compute @UPwAff * @p Val. 90 isl::union_pw_aff multiply(isl::union_pw_aff UPwAff, isl::val Val) { 91 if (Val.is_one()) 92 return UPwAff; 93 94 auto Result = isl::union_pw_aff::empty(UPwAff.get_space()); 95 UPwAff.foreach_pw_aff([=, &Result](isl::pw_aff PwAff) -> isl::stat { 96 auto ValAff = 97 isl::pw_aff(isl::set::universe(PwAff.get_space().domain()), Val); 98 auto Multiplied = PwAff.mul(ValAff); 99 Result = Result.union_add(Multiplied); 100 return isl::stat::ok; 101 }); 102 return Result; 103 } 104 105 /// Remove @p n dimensions from @p UMap's range, starting at @p first. 106 /// 107 /// It is assumed that all maps in the maps have at least the necessary number 108 /// of out dimensions. 109 isl::union_map scheduleProjectOut(const isl::union_map &UMap, unsigned first, 110 unsigned n) { 111 if (n == 0) 112 return UMap; /* isl_map_project_out would also reset the tuple, which should 113 have no effect on schedule ranges */ 114 115 auto Result = isl::union_map::empty(UMap.get_space()); 116 UMap.foreach_map([=, &Result](isl::map Map) -> isl::stat { 117 auto Outprojected = Map.project_out(isl::dim::out, first, n); 118 Result = Result.add_map(Outprojected); 119 return isl::stat::ok; 120 }); 121 return Result; 122 } 123 124 /// Return the number of dimensions in the input map's range. 125 /// 126 /// Because this function takes an isl_union_map, the out dimensions could be 127 /// different. We return the maximum number in this case. However, a different 128 /// number of dimensions is not supported by the other code in this file. 129 size_t scheduleScatterDims(const isl::union_map &Schedule) { 130 unsigned Dims = 0; 131 Schedule.foreach_map([&Dims](isl::map Map) -> isl::stat { 132 Dims = std::max(Dims, Map.dim(isl::dim::out)); 133 return isl::stat::ok; 134 }); 135 return Dims; 136 } 137 138 /// Return the @p pos' range dimension, converted to an isl_union_pw_aff. 139 isl::union_pw_aff scheduleExtractDimAff(isl::union_map UMap, unsigned pos) { 140 auto SingleUMap = isl::union_map::empty(UMap.get_space()); 141 UMap.foreach_map([=, &SingleUMap](isl::map Map) -> isl::stat { 142 auto MapDims = Map.dim(isl::dim::out); 143 auto SingleMap = Map.project_out(isl::dim::out, 0, pos); 144 SingleMap = SingleMap.project_out(isl::dim::out, 1, MapDims - pos - 1); 145 SingleUMap = SingleUMap.add_map(SingleMap); 146 return isl::stat::ok; 147 }); 148 149 auto UAff = isl::union_pw_multi_aff(SingleUMap); 150 auto FirstMAff = isl::multi_union_pw_aff(UAff); 151 return FirstMAff.get_union_pw_aff(0); 152 } 153 154 /// Flatten a sequence-like first dimension. 155 /// 156 /// A sequence-like scatter dimension is constant, or at least only small 157 /// variation, typically the result of ordering a sequence of different 158 /// statements. An example would be: 159 /// { Stmt_A[] -> [0, X, ...]; Stmt_B[] -> [1, Y, ...] } 160 /// to schedule all instances of Stmt_A before any instance of Stmt_B. 161 /// 162 /// To flatten, first begin with an offset of zero. Then determine the lowest 163 /// possible value of the dimension, call it "i" [In the example we start at 0]. 164 /// Considering only schedules with that value, consider only instances with 165 /// that value and determine the extent of the next dimension. Let l_X(i) and 166 /// u_X(i) its minimum (lower bound) and maximum (upper bound) value. Add them 167 /// as "Offset + X - l_X(i)" to the new schedule, then add "u_X(i) - l_X(i) + 1" 168 /// to Offset and remove all i-instances from the old schedule. Repeat with the 169 /// remaining lowest value i' until there are no instances in the old schedule 170 /// left. 171 /// The example schedule would be transformed to: 172 /// { Stmt_X[] -> [X - l_X, ...]; Stmt_B -> [l_X - u_X + 1 + Y - l_Y, ...] } 173 isl::union_map tryFlattenSequence(isl::union_map Schedule) { 174 auto IslCtx = Schedule.get_ctx(); 175 auto ScatterSet = isl::set(Schedule.range()); 176 177 auto ParamSpace = Schedule.get_space().params(); 178 auto Dims = ScatterSet.dim(isl::dim::set); 179 assert(Dims >= 2); 180 181 // Would cause an infinite loop. 182 if (!isDimBoundedByConstant(ScatterSet, 0)) { 183 DEBUG(dbgs() << "Abort; dimension is not of fixed size\n"); 184 return nullptr; 185 } 186 187 auto AllDomains = Schedule.domain(); 188 auto AllDomainsToNull = isl::union_pw_multi_aff(AllDomains); 189 190 auto NewSchedule = isl::union_map::empty(ParamSpace); 191 auto Counter = isl::pw_aff(isl::local_space(ParamSpace.set_from_params())); 192 193 while (!ScatterSet.is_empty()) { 194 DEBUG(dbgs() << "Next counter:\n " << Counter << "\n"); 195 DEBUG(dbgs() << "Remaining scatter set:\n " << ScatterSet << "\n"); 196 auto ThisSet = ScatterSet.project_out(isl::dim::set, 1, Dims - 1); 197 auto ThisFirst = ThisSet.lexmin(); 198 auto ScatterFirst = ThisFirst.add_dims(isl::dim::set, Dims - 1); 199 200 auto SubSchedule = Schedule.intersect_range(ScatterFirst); 201 SubSchedule = scheduleProjectOut(SubSchedule, 0, 1); 202 SubSchedule = flattenSchedule(SubSchedule); 203 204 auto SubDims = scheduleScatterDims(SubSchedule); 205 auto FirstSubSchedule = scheduleProjectOut(SubSchedule, 1, SubDims - 1); 206 auto FirstScheduleAff = scheduleExtractDimAff(FirstSubSchedule, 0); 207 auto RemainingSubSchedule = scheduleProjectOut(SubSchedule, 0, 1); 208 209 auto FirstSubScatter = isl::set(FirstSubSchedule.range()); 210 DEBUG(dbgs() << "Next step in sequence is:\n " << FirstSubScatter << "\n"); 211 212 if (!isDimBoundedByParameter(FirstSubScatter, 0)) { 213 DEBUG(dbgs() << "Abort; sequence step is not bounded\n"); 214 return nullptr; 215 } 216 217 auto FirstSubScatterMap = isl::map::from_range(FirstSubScatter); 218 219 // isl_set_dim_max returns a strange isl_pw_aff with domain tuple_id of 220 // 'none'. It doesn't match with any space including a 0-dimensional 221 // anonymous tuple. 222 // Interesting, one can create such a set using 223 // isl_set_universe(ParamSpace). Bug? 224 auto PartMin = FirstSubScatterMap.dim_min(0); 225 auto PartMax = FirstSubScatterMap.dim_max(0); 226 auto One = isl::pw_aff(isl::set::universe(ParamSpace.set_from_params()), 227 isl::val::one(IslCtx)); 228 auto PartLen = PartMax.add(PartMin.neg()).add(One); 229 230 auto AllPartMin = isl::union_pw_aff(PartMin).pullback(AllDomainsToNull); 231 auto FirstScheduleAffNormalized = FirstScheduleAff.sub(AllPartMin); 232 auto AllCounter = isl::union_pw_aff(Counter).pullback(AllDomainsToNull); 233 auto FirstScheduleAffWithOffset = 234 FirstScheduleAffNormalized.add(AllCounter); 235 236 auto ScheduleWithOffset = isl::union_map(FirstScheduleAffWithOffset) 237 .flat_range_product(RemainingSubSchedule); 238 NewSchedule = NewSchedule.unite(ScheduleWithOffset); 239 240 ScatterSet = ScatterSet.subtract(ScatterFirst); 241 Counter = Counter.add(PartLen); 242 } 243 244 DEBUG(dbgs() << "Sequence-flatten result is:\n " << NewSchedule << "\n"); 245 return NewSchedule; 246 } 247 248 /// Flatten a loop-like first dimension. 249 /// 250 /// A loop-like dimension is one that depends on a variable (usually a loop's 251 /// induction variable). Let the input schedule look like this: 252 /// { Stmt[i] -> [i, X, ...] } 253 /// 254 /// To flatten, we determine the largest extent of X which may not depend on the 255 /// actual value of i. Let l_X() the smallest possible value of X and u_X() its 256 /// largest value. Then, construct a new schedule 257 /// { Stmt[i] -> [i * (u_X() - l_X() + 1), ...] } 258 isl::union_map tryFlattenLoop(isl::union_map Schedule) { 259 assert(scheduleScatterDims(Schedule) >= 2); 260 261 auto Remaining = scheduleProjectOut(Schedule, 0, 1); 262 auto SubSchedule = flattenSchedule(Remaining); 263 auto SubDims = scheduleScatterDims(SubSchedule); 264 265 auto SubExtent = isl::set(SubSchedule.range()); 266 auto SubExtentDims = SubExtent.dim(isl::dim::param); 267 SubExtent = SubExtent.project_out(isl::dim::param, 0, SubExtentDims); 268 SubExtent = SubExtent.project_out(isl::dim::set, 1, SubDims - 1); 269 270 if (!isDimBoundedByConstant(SubExtent, 0)) { 271 DEBUG(dbgs() << "Abort; dimension not bounded by constant\n"); 272 return nullptr; 273 } 274 275 auto Min = SubExtent.dim_min(0); 276 DEBUG(dbgs() << "Min bound:\n " << Min << "\n"); 277 auto MinVal = getConstant(Min, false, true); 278 auto Max = SubExtent.dim_max(0); 279 DEBUG(dbgs() << "Max bound:\n " << Max << "\n"); 280 auto MaxVal = getConstant(Max, true, false); 281 282 if (!MinVal || !MaxVal || MinVal.is_nan() || MaxVal.is_nan()) { 283 DEBUG(dbgs() << "Abort; dimension bounds could not be determined\n"); 284 return nullptr; 285 } 286 287 auto FirstSubScheduleAff = scheduleExtractDimAff(SubSchedule, 0); 288 auto RemainingSubSchedule = scheduleProjectOut(std::move(SubSchedule), 0, 1); 289 290 auto LenVal = MaxVal.sub(MinVal).add_ui(1); 291 auto FirstSubScheduleNormalized = subtract(FirstSubScheduleAff, MinVal); 292 293 // TODO: Normalize FirstAff to zero (convert to isl_map, determine minimum, 294 // subtract it) 295 auto FirstAff = scheduleExtractDimAff(Schedule, 0); 296 auto Offset = multiply(FirstAff, LenVal); 297 auto Index = FirstSubScheduleNormalized.add(Offset); 298 auto IndexMap = isl::union_map(Index); 299 300 auto Result = IndexMap.flat_range_product(RemainingSubSchedule); 301 DEBUG(dbgs() << "Loop-flatten result is:\n " << Result << "\n"); 302 return Result; 303 } 304 } // anonymous namespace 305 306 isl::union_map polly::flattenSchedule(isl::union_map Schedule) { 307 auto Dims = scheduleScatterDims(Schedule); 308 DEBUG(dbgs() << "Recursive schedule to process:\n " << Schedule << "\n"); 309 310 // Base case; no dimensions left 311 if (Dims == 0) { 312 // TODO: Add one dimension? 313 return Schedule; 314 } 315 316 // Base case; already one-dimensional 317 if (Dims == 1) 318 return Schedule; 319 320 // Fixed dimension; no need to preserve variabledness. 321 if (!isVariableDim(Schedule)) { 322 DEBUG(dbgs() << "Fixed dimension; try sequence flattening\n"); 323 auto NewScheduleSequence = tryFlattenSequence(Schedule); 324 if (NewScheduleSequence) 325 return NewScheduleSequence; 326 } 327 328 // Constant stride 329 DEBUG(dbgs() << "Try loop flattening\n"); 330 auto NewScheduleLoop = tryFlattenLoop(Schedule); 331 if (NewScheduleLoop) 332 return NewScheduleLoop; 333 334 // Try again without loop condition (may blow up the number of pieces!!) 335 DEBUG(dbgs() << "Try sequence flattening again\n"); 336 auto NewScheduleSequence = tryFlattenSequence(Schedule); 337 if (NewScheduleSequence) 338 return NewScheduleSequence; 339 340 // Cannot flatten 341 return Schedule; 342 } 343