Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 1 | //===-- LoopUtils.cpp - Loop Utility functions -------------------------===// |
| 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 | // This file defines common loop utility functions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Adam Nemet | 2f2bd8c | 2016-07-26 17:52:02 +0000 | [diff] [blame] | 14 | #include "llvm/Transforms/Utils/LoopUtils.h" |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 15 | #include "llvm/Analysis/AliasAnalysis.h" |
| 16 | #include "llvm/Analysis/BasicAliasAnalysis.h" |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 17 | #include "llvm/Analysis/GlobalsModRef.h" |
Adam Nemet | 2f2bd8c | 2016-07-26 17:52:02 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/GlobalsModRef.h" |
| 19 | #include "llvm/Analysis/LoopInfo.h" |
Igor Laevsky | c3ccf5d | 2016-10-28 12:57:20 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/LoopPass.h" |
Weiming Zhao | 45d4cb9 | 2015-11-24 18:57:06 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/ScalarEvolution.h" |
Adam Nemet | 2f2bd8c | 2016-07-26 17:52:02 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h" |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 23 | #include "llvm/Analysis/ScalarEvolutionExpander.h" |
Weiming Zhao | 45d4cb9 | 2015-11-24 18:57:06 +0000 | [diff] [blame] | 24 | #include "llvm/Analysis/ScalarEvolutionExpressions.h" |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 25 | #include "llvm/IR/Dominators.h" |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 26 | #include "llvm/IR/Instructions.h" |
Weiming Zhao | 45d4cb9 | 2015-11-24 18:57:06 +0000 | [diff] [blame] | 27 | #include "llvm/IR/Module.h" |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 28 | #include "llvm/IR/PatternMatch.h" |
| 29 | #include "llvm/IR/ValueHandle.h" |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 30 | #include "llvm/Pass.h" |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 31 | #include "llvm/Support/Debug.h" |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 32 | |
| 33 | using namespace llvm; |
| 34 | using namespace llvm::PatternMatch; |
| 35 | |
| 36 | #define DEBUG_TYPE "loop-utils" |
| 37 | |
Tyler Nowicki | 0a91310 | 2015-06-16 18:07:34 +0000 | [diff] [blame] | 38 | bool RecurrenceDescriptor::areAllUsesIn(Instruction *I, |
| 39 | SmallPtrSetImpl<Instruction *> &Set) { |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 40 | for (User::op_iterator Use = I->op_begin(), E = I->op_end(); Use != E; ++Use) |
| 41 | if (!Set.count(dyn_cast<Instruction>(*Use))) |
| 42 | return false; |
| 43 | return true; |
| 44 | } |
| 45 | |
Chad Rosier | c94f8e2 | 2015-08-27 14:12:17 +0000 | [diff] [blame] | 46 | bool RecurrenceDescriptor::isIntegerRecurrenceKind(RecurrenceKind Kind) { |
| 47 | switch (Kind) { |
| 48 | default: |
| 49 | break; |
| 50 | case RK_IntegerAdd: |
| 51 | case RK_IntegerMult: |
| 52 | case RK_IntegerOr: |
| 53 | case RK_IntegerAnd: |
| 54 | case RK_IntegerXor: |
| 55 | case RK_IntegerMinMax: |
| 56 | return true; |
| 57 | } |
| 58 | return false; |
| 59 | } |
| 60 | |
| 61 | bool RecurrenceDescriptor::isFloatingPointRecurrenceKind(RecurrenceKind Kind) { |
| 62 | return (Kind != RK_NoRecurrence) && !isIntegerRecurrenceKind(Kind); |
| 63 | } |
| 64 | |
| 65 | bool RecurrenceDescriptor::isArithmeticRecurrenceKind(RecurrenceKind Kind) { |
| 66 | switch (Kind) { |
| 67 | default: |
| 68 | break; |
| 69 | case RK_IntegerAdd: |
| 70 | case RK_IntegerMult: |
| 71 | case RK_FloatAdd: |
| 72 | case RK_FloatMult: |
| 73 | return true; |
| 74 | } |
| 75 | return false; |
| 76 | } |
| 77 | |
| 78 | Instruction * |
| 79 | RecurrenceDescriptor::lookThroughAnd(PHINode *Phi, Type *&RT, |
| 80 | SmallPtrSetImpl<Instruction *> &Visited, |
| 81 | SmallPtrSetImpl<Instruction *> &CI) { |
| 82 | if (!Phi->hasOneUse()) |
| 83 | return Phi; |
| 84 | |
| 85 | const APInt *M = nullptr; |
| 86 | Instruction *I, *J = cast<Instruction>(Phi->use_begin()->getUser()); |
| 87 | |
| 88 | // Matches either I & 2^x-1 or 2^x-1 & I. If we find a match, we update RT |
| 89 | // with a new integer type of the corresponding bit width. |
| 90 | if (match(J, m_CombineOr(m_And(m_Instruction(I), m_APInt(M)), |
| 91 | m_And(m_APInt(M), m_Instruction(I))))) { |
| 92 | int32_t Bits = (*M + 1).exactLogBase2(); |
| 93 | if (Bits > 0) { |
| 94 | RT = IntegerType::get(Phi->getContext(), Bits); |
| 95 | Visited.insert(Phi); |
| 96 | CI.insert(J); |
| 97 | return J; |
| 98 | } |
| 99 | } |
| 100 | return Phi; |
| 101 | } |
| 102 | |
| 103 | bool RecurrenceDescriptor::getSourceExtensionKind( |
| 104 | Instruction *Start, Instruction *Exit, Type *RT, bool &IsSigned, |
| 105 | SmallPtrSetImpl<Instruction *> &Visited, |
| 106 | SmallPtrSetImpl<Instruction *> &CI) { |
| 107 | |
| 108 | SmallVector<Instruction *, 8> Worklist; |
| 109 | bool FoundOneOperand = false; |
Matthew Simpson | 29dc0f7 | 2015-09-10 21:12:57 +0000 | [diff] [blame] | 110 | unsigned DstSize = RT->getPrimitiveSizeInBits(); |
Chad Rosier | c94f8e2 | 2015-08-27 14:12:17 +0000 | [diff] [blame] | 111 | Worklist.push_back(Exit); |
| 112 | |
| 113 | // Traverse the instructions in the reduction expression, beginning with the |
| 114 | // exit value. |
| 115 | while (!Worklist.empty()) { |
| 116 | Instruction *I = Worklist.pop_back_val(); |
| 117 | for (Use &U : I->operands()) { |
| 118 | |
| 119 | // Terminate the traversal if the operand is not an instruction, or we |
| 120 | // reach the starting value. |
| 121 | Instruction *J = dyn_cast<Instruction>(U.get()); |
| 122 | if (!J || J == Start) |
| 123 | continue; |
| 124 | |
| 125 | // Otherwise, investigate the operation if it is also in the expression. |
| 126 | if (Visited.count(J)) { |
| 127 | Worklist.push_back(J); |
| 128 | continue; |
| 129 | } |
| 130 | |
| 131 | // If the operand is not in Visited, it is not a reduction operation, but |
| 132 | // it does feed into one. Make sure it is either a single-use sign- or |
Matthew Simpson | 29dc0f7 | 2015-09-10 21:12:57 +0000 | [diff] [blame] | 133 | // zero-extend instruction. |
Chad Rosier | c94f8e2 | 2015-08-27 14:12:17 +0000 | [diff] [blame] | 134 | CastInst *Cast = dyn_cast<CastInst>(J); |
| 135 | bool IsSExtInst = isa<SExtInst>(J); |
Matthew Simpson | 29dc0f7 | 2015-09-10 21:12:57 +0000 | [diff] [blame] | 136 | if (!Cast || !Cast->hasOneUse() || !(isa<ZExtInst>(J) || IsSExtInst)) |
| 137 | return false; |
| 138 | |
| 139 | // Ensure the source type of the extend is no larger than the reduction |
| 140 | // type. It is not necessary for the types to be identical. |
| 141 | unsigned SrcSize = Cast->getSrcTy()->getPrimitiveSizeInBits(); |
| 142 | if (SrcSize > DstSize) |
Chad Rosier | c94f8e2 | 2015-08-27 14:12:17 +0000 | [diff] [blame] | 143 | return false; |
| 144 | |
| 145 | // Furthermore, ensure that all such extends are of the same kind. |
| 146 | if (FoundOneOperand) { |
| 147 | if (IsSigned != IsSExtInst) |
| 148 | return false; |
| 149 | } else { |
| 150 | FoundOneOperand = true; |
| 151 | IsSigned = IsSExtInst; |
| 152 | } |
| 153 | |
Matthew Simpson | 29dc0f7 | 2015-09-10 21:12:57 +0000 | [diff] [blame] | 154 | // Lastly, if the source type of the extend matches the reduction type, |
| 155 | // add the extend to CI so that we can avoid accounting for it in the |
| 156 | // cost model. |
| 157 | if (SrcSize == DstSize) |
| 158 | CI.insert(Cast); |
Chad Rosier | c94f8e2 | 2015-08-27 14:12:17 +0000 | [diff] [blame] | 159 | } |
| 160 | } |
| 161 | return true; |
| 162 | } |
| 163 | |
Tyler Nowicki | 0a91310 | 2015-06-16 18:07:34 +0000 | [diff] [blame] | 164 | bool RecurrenceDescriptor::AddReductionVar(PHINode *Phi, RecurrenceKind Kind, |
| 165 | Loop *TheLoop, bool HasFunNoNaNAttr, |
| 166 | RecurrenceDescriptor &RedDes) { |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 167 | if (Phi->getNumIncomingValues() != 2) |
| 168 | return false; |
| 169 | |
| 170 | // Reduction variables are only found in the loop header block. |
| 171 | if (Phi->getParent() != TheLoop->getHeader()) |
| 172 | return false; |
| 173 | |
| 174 | // Obtain the reduction start value from the value that comes from the loop |
| 175 | // preheader. |
| 176 | Value *RdxStart = Phi->getIncomingValueForBlock(TheLoop->getLoopPreheader()); |
| 177 | |
| 178 | // ExitInstruction is the single value which is used outside the loop. |
| 179 | // We only allow for a single reduction value to be used outside the loop. |
| 180 | // This includes users of the reduction, variables (which form a cycle |
| 181 | // which ends in the phi node). |
| 182 | Instruction *ExitInstruction = nullptr; |
| 183 | // Indicates that we found a reduction operation in our scan. |
| 184 | bool FoundReduxOp = false; |
| 185 | |
| 186 | // We start with the PHI node and scan for all of the users of this |
| 187 | // instruction. All users must be instructions that can be used as reduction |
| 188 | // variables (such as ADD). We must have a single out-of-block user. The cycle |
| 189 | // must include the original PHI. |
| 190 | bool FoundStartPHI = false; |
| 191 | |
| 192 | // To recognize min/max patterns formed by a icmp select sequence, we store |
| 193 | // the number of instruction we saw from the recognized min/max pattern, |
| 194 | // to make sure we only see exactly the two instructions. |
| 195 | unsigned NumCmpSelectPatternInst = 0; |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 196 | InstDesc ReduxDesc(false, nullptr); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 197 | |
Chad Rosier | c94f8e2 | 2015-08-27 14:12:17 +0000 | [diff] [blame] | 198 | // Data used for determining if the recurrence has been type-promoted. |
| 199 | Type *RecurrenceType = Phi->getType(); |
| 200 | SmallPtrSet<Instruction *, 4> CastInsts; |
| 201 | Instruction *Start = Phi; |
| 202 | bool IsSigned = false; |
| 203 | |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 204 | SmallPtrSet<Instruction *, 8> VisitedInsts; |
| 205 | SmallVector<Instruction *, 8> Worklist; |
Chad Rosier | c94f8e2 | 2015-08-27 14:12:17 +0000 | [diff] [blame] | 206 | |
| 207 | // Return early if the recurrence kind does not match the type of Phi. If the |
| 208 | // recurrence kind is arithmetic, we attempt to look through AND operations |
| 209 | // resulting from the type promotion performed by InstCombine. Vector |
| 210 | // operations are not limited to the legal integer widths, so we may be able |
| 211 | // to evaluate the reduction in the narrower width. |
| 212 | if (RecurrenceType->isFloatingPointTy()) { |
| 213 | if (!isFloatingPointRecurrenceKind(Kind)) |
| 214 | return false; |
| 215 | } else { |
| 216 | if (!isIntegerRecurrenceKind(Kind)) |
| 217 | return false; |
| 218 | if (isArithmeticRecurrenceKind(Kind)) |
| 219 | Start = lookThroughAnd(Phi, RecurrenceType, VisitedInsts, CastInsts); |
| 220 | } |
| 221 | |
| 222 | Worklist.push_back(Start); |
| 223 | VisitedInsts.insert(Start); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 224 | |
| 225 | // A value in the reduction can be used: |
| 226 | // - By the reduction: |
| 227 | // - Reduction operation: |
| 228 | // - One use of reduction value (safe). |
| 229 | // - Multiple use of reduction value (not safe). |
| 230 | // - PHI: |
| 231 | // - All uses of the PHI must be the reduction (safe). |
| 232 | // - Otherwise, not safe. |
Michael Kuperstein | 7cefb40 | 2017-01-18 19:02:52 +0000 | [diff] [blame] | 233 | // - By instructions outside of the loop (safe). |
| 234 | // * One value may have several outside users, but all outside |
| 235 | // uses must be of the same value. |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 236 | // - By an instruction that is not part of the reduction (not safe). |
| 237 | // This is either: |
| 238 | // * An instruction type other than PHI or the reduction operation. |
| 239 | // * A PHI in the header other than the initial PHI. |
| 240 | while (!Worklist.empty()) { |
| 241 | Instruction *Cur = Worklist.back(); |
| 242 | Worklist.pop_back(); |
| 243 | |
| 244 | // No Users. |
| 245 | // If the instruction has no users then this is a broken chain and can't be |
| 246 | // a reduction variable. |
| 247 | if (Cur->use_empty()) |
| 248 | return false; |
| 249 | |
| 250 | bool IsAPhi = isa<PHINode>(Cur); |
| 251 | |
| 252 | // A header PHI use other than the original PHI. |
| 253 | if (Cur != Phi && IsAPhi && Cur->getParent() == Phi->getParent()) |
| 254 | return false; |
| 255 | |
| 256 | // Reductions of instructions such as Div, and Sub is only possible if the |
| 257 | // LHS is the reduction variable. |
| 258 | if (!Cur->isCommutative() && !IsAPhi && !isa<SelectInst>(Cur) && |
| 259 | !isa<ICmpInst>(Cur) && !isa<FCmpInst>(Cur) && |
| 260 | !VisitedInsts.count(dyn_cast<Instruction>(Cur->getOperand(0)))) |
| 261 | return false; |
| 262 | |
Chad Rosier | c94f8e2 | 2015-08-27 14:12:17 +0000 | [diff] [blame] | 263 | // Any reduction instruction must be of one of the allowed kinds. We ignore |
| 264 | // the starting value (the Phi or an AND instruction if the Phi has been |
| 265 | // type-promoted). |
| 266 | if (Cur != Start) { |
| 267 | ReduxDesc = isRecurrenceInstr(Cur, Kind, ReduxDesc, HasFunNoNaNAttr); |
| 268 | if (!ReduxDesc.isRecurrence()) |
| 269 | return false; |
| 270 | } |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 271 | |
| 272 | // A reduction operation must only have one use of the reduction value. |
| 273 | if (!IsAPhi && Kind != RK_IntegerMinMax && Kind != RK_FloatMinMax && |
| 274 | hasMultipleUsesOf(Cur, VisitedInsts)) |
| 275 | return false; |
| 276 | |
| 277 | // All inputs to a PHI node must be a reduction value. |
| 278 | if (IsAPhi && Cur != Phi && !areAllUsesIn(Cur, VisitedInsts)) |
| 279 | return false; |
| 280 | |
| 281 | if (Kind == RK_IntegerMinMax && |
| 282 | (isa<ICmpInst>(Cur) || isa<SelectInst>(Cur))) |
| 283 | ++NumCmpSelectPatternInst; |
| 284 | if (Kind == RK_FloatMinMax && (isa<FCmpInst>(Cur) || isa<SelectInst>(Cur))) |
| 285 | ++NumCmpSelectPatternInst; |
| 286 | |
| 287 | // Check whether we found a reduction operator. |
Chad Rosier | c94f8e2 | 2015-08-27 14:12:17 +0000 | [diff] [blame] | 288 | FoundReduxOp |= !IsAPhi && Cur != Start; |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 289 | |
| 290 | // Process users of current instruction. Push non-PHI nodes after PHI nodes |
| 291 | // onto the stack. This way we are going to have seen all inputs to PHI |
| 292 | // nodes once we get to them. |
| 293 | SmallVector<Instruction *, 8> NonPHIs; |
| 294 | SmallVector<Instruction *, 8> PHIs; |
| 295 | for (User *U : Cur->users()) { |
| 296 | Instruction *UI = cast<Instruction>(U); |
| 297 | |
| 298 | // Check if we found the exit user. |
| 299 | BasicBlock *Parent = UI->getParent(); |
| 300 | if (!TheLoop->contains(Parent)) { |
Michael Kuperstein | 7cefb40 | 2017-01-18 19:02:52 +0000 | [diff] [blame] | 301 | // If we already know this instruction is used externally, move on to |
| 302 | // the next user. |
| 303 | if (ExitInstruction == Cur) |
| 304 | continue; |
| 305 | |
| 306 | // Exit if you find multiple values used outside or if the header phi |
| 307 | // node is being used. In this case the user uses the value of the |
| 308 | // previous iteration, in which case we would loose "VF-1" iterations of |
| 309 | // the reduction operation if we vectorize. |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 310 | if (ExitInstruction != nullptr || Cur == Phi) |
| 311 | return false; |
| 312 | |
| 313 | // The instruction used by an outside user must be the last instruction |
| 314 | // before we feed back to the reduction phi. Otherwise, we loose VF-1 |
| 315 | // operations on the value. |
David Majnemer | 4253126 | 2016-08-12 03:55:06 +0000 | [diff] [blame] | 316 | if (!is_contained(Phi->operands(), Cur)) |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 317 | return false; |
| 318 | |
| 319 | ExitInstruction = Cur; |
| 320 | continue; |
| 321 | } |
| 322 | |
| 323 | // Process instructions only once (termination). Each reduction cycle |
| 324 | // value must only be used once, except by phi nodes and min/max |
| 325 | // reductions which are represented as a cmp followed by a select. |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 326 | InstDesc IgnoredVal(false, nullptr); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 327 | if (VisitedInsts.insert(UI).second) { |
| 328 | if (isa<PHINode>(UI)) |
| 329 | PHIs.push_back(UI); |
| 330 | else |
| 331 | NonPHIs.push_back(UI); |
| 332 | } else if (!isa<PHINode>(UI) && |
| 333 | ((!isa<FCmpInst>(UI) && !isa<ICmpInst>(UI) && |
| 334 | !isa<SelectInst>(UI)) || |
Tyler Nowicki | 0a91310 | 2015-06-16 18:07:34 +0000 | [diff] [blame] | 335 | !isMinMaxSelectCmpPattern(UI, IgnoredVal).isRecurrence())) |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 336 | return false; |
| 337 | |
| 338 | // Remember that we completed the cycle. |
| 339 | if (UI == Phi) |
| 340 | FoundStartPHI = true; |
| 341 | } |
| 342 | Worklist.append(PHIs.begin(), PHIs.end()); |
| 343 | Worklist.append(NonPHIs.begin(), NonPHIs.end()); |
| 344 | } |
| 345 | |
| 346 | // This means we have seen one but not the other instruction of the |
| 347 | // pattern or more than just a select and cmp. |
| 348 | if ((Kind == RK_IntegerMinMax || Kind == RK_FloatMinMax) && |
| 349 | NumCmpSelectPatternInst != 2) |
| 350 | return false; |
| 351 | |
| 352 | if (!FoundStartPHI || !FoundReduxOp || !ExitInstruction) |
| 353 | return false; |
| 354 | |
Chad Rosier | c94f8e2 | 2015-08-27 14:12:17 +0000 | [diff] [blame] | 355 | // If we think Phi may have been type-promoted, we also need to ensure that |
| 356 | // all source operands of the reduction are either SExtInsts or ZEstInsts. If |
| 357 | // so, we will be able to evaluate the reduction in the narrower bit width. |
| 358 | if (Start != Phi) |
| 359 | if (!getSourceExtensionKind(Start, ExitInstruction, RecurrenceType, |
| 360 | IsSigned, VisitedInsts, CastInsts)) |
| 361 | return false; |
| 362 | |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 363 | // We found a reduction var if we have reached the original phi node and we |
| 364 | // only have a single instruction with out-of-loop users. |
| 365 | |
| 366 | // The ExitInstruction(Instruction which is allowed to have out-of-loop users) |
Tyler Nowicki | 0a91310 | 2015-06-16 18:07:34 +0000 | [diff] [blame] | 367 | // is saved as part of the RecurrenceDescriptor. |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 368 | |
| 369 | // Save the description of this reduction variable. |
Chad Rosier | c94f8e2 | 2015-08-27 14:12:17 +0000 | [diff] [blame] | 370 | RecurrenceDescriptor RD( |
| 371 | RdxStart, ExitInstruction, Kind, ReduxDesc.getMinMaxKind(), |
| 372 | ReduxDesc.getUnsafeAlgebraInst(), RecurrenceType, IsSigned, CastInsts); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 373 | RedDes = RD; |
| 374 | |
| 375 | return true; |
| 376 | } |
| 377 | |
| 378 | /// Returns true if the instruction is a Select(ICmp(X, Y), X, Y) instruction |
| 379 | /// pattern corresponding to a min(X, Y) or max(X, Y). |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 380 | RecurrenceDescriptor::InstDesc |
| 381 | RecurrenceDescriptor::isMinMaxSelectCmpPattern(Instruction *I, InstDesc &Prev) { |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 382 | |
| 383 | assert((isa<ICmpInst>(I) || isa<FCmpInst>(I) || isa<SelectInst>(I)) && |
| 384 | "Expect a select instruction"); |
| 385 | Instruction *Cmp = nullptr; |
| 386 | SelectInst *Select = nullptr; |
| 387 | |
| 388 | // We must handle the select(cmp()) as a single instruction. Advance to the |
| 389 | // select. |
| 390 | if ((Cmp = dyn_cast<ICmpInst>(I)) || (Cmp = dyn_cast<FCmpInst>(I))) { |
| 391 | if (!Cmp->hasOneUse() || !(Select = dyn_cast<SelectInst>(*I->user_begin()))) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 392 | return InstDesc(false, I); |
| 393 | return InstDesc(Select, Prev.getMinMaxKind()); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 394 | } |
| 395 | |
| 396 | // Only handle single use cases for now. |
| 397 | if (!(Select = dyn_cast<SelectInst>(I))) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 398 | return InstDesc(false, I); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 399 | if (!(Cmp = dyn_cast<ICmpInst>(I->getOperand(0))) && |
| 400 | !(Cmp = dyn_cast<FCmpInst>(I->getOperand(0)))) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 401 | return InstDesc(false, I); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 402 | if (!Cmp->hasOneUse()) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 403 | return InstDesc(false, I); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 404 | |
| 405 | Value *CmpLeft; |
| 406 | Value *CmpRight; |
| 407 | |
| 408 | // Look for a min/max pattern. |
| 409 | if (m_UMin(m_Value(CmpLeft), m_Value(CmpRight)).match(Select)) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 410 | return InstDesc(Select, MRK_UIntMin); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 411 | else if (m_UMax(m_Value(CmpLeft), m_Value(CmpRight)).match(Select)) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 412 | return InstDesc(Select, MRK_UIntMax); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 413 | else if (m_SMax(m_Value(CmpLeft), m_Value(CmpRight)).match(Select)) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 414 | return InstDesc(Select, MRK_SIntMax); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 415 | else if (m_SMin(m_Value(CmpLeft), m_Value(CmpRight)).match(Select)) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 416 | return InstDesc(Select, MRK_SIntMin); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 417 | else if (m_OrdFMin(m_Value(CmpLeft), m_Value(CmpRight)).match(Select)) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 418 | return InstDesc(Select, MRK_FloatMin); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 419 | else if (m_OrdFMax(m_Value(CmpLeft), m_Value(CmpRight)).match(Select)) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 420 | return InstDesc(Select, MRK_FloatMax); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 421 | else if (m_UnordFMin(m_Value(CmpLeft), m_Value(CmpRight)).match(Select)) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 422 | return InstDesc(Select, MRK_FloatMin); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 423 | else if (m_UnordFMax(m_Value(CmpLeft), m_Value(CmpRight)).match(Select)) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 424 | return InstDesc(Select, MRK_FloatMax); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 425 | |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 426 | return InstDesc(false, I); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 427 | } |
| 428 | |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 429 | RecurrenceDescriptor::InstDesc |
Tyler Nowicki | 0a91310 | 2015-06-16 18:07:34 +0000 | [diff] [blame] | 430 | RecurrenceDescriptor::isRecurrenceInstr(Instruction *I, RecurrenceKind Kind, |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 431 | InstDesc &Prev, bool HasFunNoNaNAttr) { |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 432 | bool FP = I->getType()->isFloatingPointTy(); |
Tyler Nowicki | c1a86f5 | 2015-08-10 19:51:46 +0000 | [diff] [blame] | 433 | Instruction *UAI = Prev.getUnsafeAlgebraInst(); |
| 434 | if (!UAI && FP && !I->hasUnsafeAlgebra()) |
| 435 | UAI = I; // Found an unsafe (unvectorizable) algebra instruction. |
| 436 | |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 437 | switch (I->getOpcode()) { |
| 438 | default: |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 439 | return InstDesc(false, I); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 440 | case Instruction::PHI: |
Tim Northover | 10a1e8b | 2016-05-27 16:40:27 +0000 | [diff] [blame] | 441 | return InstDesc(I, Prev.getMinMaxKind(), Prev.getUnsafeAlgebraInst()); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 442 | case Instruction::Sub: |
| 443 | case Instruction::Add: |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 444 | return InstDesc(Kind == RK_IntegerAdd, I); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 445 | case Instruction::Mul: |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 446 | return InstDesc(Kind == RK_IntegerMult, I); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 447 | case Instruction::And: |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 448 | return InstDesc(Kind == RK_IntegerAnd, I); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 449 | case Instruction::Or: |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 450 | return InstDesc(Kind == RK_IntegerOr, I); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 451 | case Instruction::Xor: |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 452 | return InstDesc(Kind == RK_IntegerXor, I); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 453 | case Instruction::FMul: |
Tyler Nowicki | c1a86f5 | 2015-08-10 19:51:46 +0000 | [diff] [blame] | 454 | return InstDesc(Kind == RK_FloatMult, I, UAI); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 455 | case Instruction::FSub: |
| 456 | case Instruction::FAdd: |
Tyler Nowicki | c1a86f5 | 2015-08-10 19:51:46 +0000 | [diff] [blame] | 457 | return InstDesc(Kind == RK_FloatAdd, I, UAI); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 458 | case Instruction::FCmp: |
| 459 | case Instruction::ICmp: |
| 460 | case Instruction::Select: |
| 461 | if (Kind != RK_IntegerMinMax && |
| 462 | (!HasFunNoNaNAttr || Kind != RK_FloatMinMax)) |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 463 | return InstDesc(false, I); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 464 | return isMinMaxSelectCmpPattern(I, Prev); |
| 465 | } |
| 466 | } |
| 467 | |
Tyler Nowicki | 0a91310 | 2015-06-16 18:07:34 +0000 | [diff] [blame] | 468 | bool RecurrenceDescriptor::hasMultipleUsesOf( |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 469 | Instruction *I, SmallPtrSetImpl<Instruction *> &Insts) { |
| 470 | unsigned NumUses = 0; |
| 471 | for (User::op_iterator Use = I->op_begin(), E = I->op_end(); Use != E; |
| 472 | ++Use) { |
| 473 | if (Insts.count(dyn_cast<Instruction>(*Use))) |
| 474 | ++NumUses; |
| 475 | if (NumUses > 1) |
| 476 | return true; |
| 477 | } |
| 478 | |
| 479 | return false; |
| 480 | } |
Tyler Nowicki | 0a91310 | 2015-06-16 18:07:34 +0000 | [diff] [blame] | 481 | bool RecurrenceDescriptor::isReductionPHI(PHINode *Phi, Loop *TheLoop, |
| 482 | RecurrenceDescriptor &RedDes) { |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 483 | |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 484 | BasicBlock *Header = TheLoop->getHeader(); |
| 485 | Function &F = *Header->getParent(); |
Nirav Dave | 8dd66e5 | 2016-03-30 15:41:12 +0000 | [diff] [blame] | 486 | bool HasFunNoNaNAttr = |
| 487 | F.getFnAttribute("no-nans-fp-math").getValueAsString() == "true"; |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 488 | |
| 489 | if (AddReductionVar(Phi, RK_IntegerAdd, TheLoop, HasFunNoNaNAttr, RedDes)) { |
| 490 | DEBUG(dbgs() << "Found an ADD reduction PHI." << *Phi << "\n"); |
| 491 | return true; |
| 492 | } |
| 493 | if (AddReductionVar(Phi, RK_IntegerMult, TheLoop, HasFunNoNaNAttr, RedDes)) { |
| 494 | DEBUG(dbgs() << "Found a MUL reduction PHI." << *Phi << "\n"); |
| 495 | return true; |
| 496 | } |
| 497 | if (AddReductionVar(Phi, RK_IntegerOr, TheLoop, HasFunNoNaNAttr, RedDes)) { |
| 498 | DEBUG(dbgs() << "Found an OR reduction PHI." << *Phi << "\n"); |
| 499 | return true; |
| 500 | } |
| 501 | if (AddReductionVar(Phi, RK_IntegerAnd, TheLoop, HasFunNoNaNAttr, RedDes)) { |
| 502 | DEBUG(dbgs() << "Found an AND reduction PHI." << *Phi << "\n"); |
| 503 | return true; |
| 504 | } |
| 505 | if (AddReductionVar(Phi, RK_IntegerXor, TheLoop, HasFunNoNaNAttr, RedDes)) { |
| 506 | DEBUG(dbgs() << "Found a XOR reduction PHI." << *Phi << "\n"); |
| 507 | return true; |
| 508 | } |
| 509 | if (AddReductionVar(Phi, RK_IntegerMinMax, TheLoop, HasFunNoNaNAttr, |
| 510 | RedDes)) { |
| 511 | DEBUG(dbgs() << "Found a MINMAX reduction PHI." << *Phi << "\n"); |
| 512 | return true; |
| 513 | } |
| 514 | if (AddReductionVar(Phi, RK_FloatMult, TheLoop, HasFunNoNaNAttr, RedDes)) { |
| 515 | DEBUG(dbgs() << "Found an FMult reduction PHI." << *Phi << "\n"); |
| 516 | return true; |
| 517 | } |
| 518 | if (AddReductionVar(Phi, RK_FloatAdd, TheLoop, HasFunNoNaNAttr, RedDes)) { |
| 519 | DEBUG(dbgs() << "Found an FAdd reduction PHI." << *Phi << "\n"); |
| 520 | return true; |
| 521 | } |
| 522 | if (AddReductionVar(Phi, RK_FloatMinMax, TheLoop, HasFunNoNaNAttr, RedDes)) { |
| 523 | DEBUG(dbgs() << "Found an float MINMAX reduction PHI." << *Phi << "\n"); |
| 524 | return true; |
| 525 | } |
| 526 | // Not a reduction of known type. |
| 527 | return false; |
| 528 | } |
| 529 | |
Matthew Simpson | 29c997c | 2016-02-19 17:56:08 +0000 | [diff] [blame] | 530 | bool RecurrenceDescriptor::isFirstOrderRecurrence(PHINode *Phi, Loop *TheLoop, |
| 531 | DominatorTree *DT) { |
| 532 | |
| 533 | // Ensure the phi node is in the loop header and has two incoming values. |
| 534 | if (Phi->getParent() != TheLoop->getHeader() || |
| 535 | Phi->getNumIncomingValues() != 2) |
| 536 | return false; |
| 537 | |
| 538 | // Ensure the loop has a preheader and a single latch block. The loop |
| 539 | // vectorizer will need the latch to set up the next iteration of the loop. |
| 540 | auto *Preheader = TheLoop->getLoopPreheader(); |
| 541 | auto *Latch = TheLoop->getLoopLatch(); |
| 542 | if (!Preheader || !Latch) |
| 543 | return false; |
| 544 | |
| 545 | // Ensure the phi node's incoming blocks are the loop preheader and latch. |
| 546 | if (Phi->getBasicBlockIndex(Preheader) < 0 || |
| 547 | Phi->getBasicBlockIndex(Latch) < 0) |
| 548 | return false; |
| 549 | |
| 550 | // Get the previous value. The previous value comes from the latch edge while |
| 551 | // the initial value comes form the preheader edge. |
| 552 | auto *Previous = dyn_cast<Instruction>(Phi->getIncomingValueForBlock(Latch)); |
Matthew Simpson | 53207a9 | 2016-04-11 19:48:18 +0000 | [diff] [blame] | 553 | if (!Previous || !TheLoop->contains(Previous) || isa<PHINode>(Previous)) |
Matthew Simpson | 29c997c | 2016-02-19 17:56:08 +0000 | [diff] [blame] | 554 | return false; |
| 555 | |
Anna Thomas | dcdb325 | 2017-04-13 18:59:25 +0000 | [diff] [blame^] | 556 | // Ensure every user of the phi node is dominated by the previous value. |
| 557 | // The dominance requirement ensures the loop vectorizer will not need to |
| 558 | // vectorize the initial value prior to the first iteration of the loop. |
Matthew Simpson | 29c997c | 2016-02-19 17:56:08 +0000 | [diff] [blame] | 559 | for (User *U : Phi->users()) |
Anna Thomas | 00dc1b7 | 2017-04-11 21:02:00 +0000 | [diff] [blame] | 560 | if (auto *I = dyn_cast<Instruction>(U)) { |
Matthew Simpson | 29c997c | 2016-02-19 17:56:08 +0000 | [diff] [blame] | 561 | if (!DT->dominates(Previous, I)) |
| 562 | return false; |
Anna Thomas | 00dc1b7 | 2017-04-11 21:02:00 +0000 | [diff] [blame] | 563 | } |
Matthew Simpson | 29c997c | 2016-02-19 17:56:08 +0000 | [diff] [blame] | 564 | |
| 565 | return true; |
| 566 | } |
| 567 | |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 568 | /// This function returns the identity element (or neutral element) for |
| 569 | /// the operation K. |
Tyler Nowicki | 0a91310 | 2015-06-16 18:07:34 +0000 | [diff] [blame] | 570 | Constant *RecurrenceDescriptor::getRecurrenceIdentity(RecurrenceKind K, |
| 571 | Type *Tp) { |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 572 | switch (K) { |
| 573 | case RK_IntegerXor: |
| 574 | case RK_IntegerAdd: |
| 575 | case RK_IntegerOr: |
| 576 | // Adding, Xoring, Oring zero to a number does not change it. |
| 577 | return ConstantInt::get(Tp, 0); |
| 578 | case RK_IntegerMult: |
| 579 | // Multiplying a number by 1 does not change it. |
| 580 | return ConstantInt::get(Tp, 1); |
| 581 | case RK_IntegerAnd: |
| 582 | // AND-ing a number with an all-1 value does not change it. |
| 583 | return ConstantInt::get(Tp, -1, true); |
| 584 | case RK_FloatMult: |
| 585 | // Multiplying a number by 1 does not change it. |
| 586 | return ConstantFP::get(Tp, 1.0L); |
| 587 | case RK_FloatAdd: |
| 588 | // Adding zero to a number does not change it. |
| 589 | return ConstantFP::get(Tp, 0.0L); |
| 590 | default: |
Tyler Nowicki | 0a91310 | 2015-06-16 18:07:34 +0000 | [diff] [blame] | 591 | llvm_unreachable("Unknown recurrence kind"); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 592 | } |
| 593 | } |
| 594 | |
Tyler Nowicki | 0a91310 | 2015-06-16 18:07:34 +0000 | [diff] [blame] | 595 | /// This function translates the recurrence kind to an LLVM binary operator. |
| 596 | unsigned RecurrenceDescriptor::getRecurrenceBinOp(RecurrenceKind Kind) { |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 597 | switch (Kind) { |
| 598 | case RK_IntegerAdd: |
| 599 | return Instruction::Add; |
| 600 | case RK_IntegerMult: |
| 601 | return Instruction::Mul; |
| 602 | case RK_IntegerOr: |
| 603 | return Instruction::Or; |
| 604 | case RK_IntegerAnd: |
| 605 | return Instruction::And; |
| 606 | case RK_IntegerXor: |
| 607 | return Instruction::Xor; |
| 608 | case RK_FloatMult: |
| 609 | return Instruction::FMul; |
| 610 | case RK_FloatAdd: |
| 611 | return Instruction::FAdd; |
| 612 | case RK_IntegerMinMax: |
| 613 | return Instruction::ICmp; |
| 614 | case RK_FloatMinMax: |
| 615 | return Instruction::FCmp; |
| 616 | default: |
Tyler Nowicki | 0a91310 | 2015-06-16 18:07:34 +0000 | [diff] [blame] | 617 | llvm_unreachable("Unknown recurrence operation"); |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 618 | } |
| 619 | } |
| 620 | |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 621 | Value *RecurrenceDescriptor::createMinMaxOp(IRBuilder<> &Builder, |
| 622 | MinMaxRecurrenceKind RK, |
| 623 | Value *Left, Value *Right) { |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 624 | CmpInst::Predicate P = CmpInst::ICMP_NE; |
| 625 | switch (RK) { |
| 626 | default: |
Tyler Nowicki | 0a91310 | 2015-06-16 18:07:34 +0000 | [diff] [blame] | 627 | llvm_unreachable("Unknown min/max recurrence kind"); |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 628 | case MRK_UIntMin: |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 629 | P = CmpInst::ICMP_ULT; |
| 630 | break; |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 631 | case MRK_UIntMax: |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 632 | P = CmpInst::ICMP_UGT; |
| 633 | break; |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 634 | case MRK_SIntMin: |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 635 | P = CmpInst::ICMP_SLT; |
| 636 | break; |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 637 | case MRK_SIntMax: |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 638 | P = CmpInst::ICMP_SGT; |
| 639 | break; |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 640 | case MRK_FloatMin: |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 641 | P = CmpInst::FCMP_OLT; |
| 642 | break; |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 643 | case MRK_FloatMax: |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 644 | P = CmpInst::FCMP_OGT; |
| 645 | break; |
| 646 | } |
| 647 | |
James Molloy | 50a4c27 | 2015-09-21 19:41:19 +0000 | [diff] [blame] | 648 | // We only match FP sequences with unsafe algebra, so we can unconditionally |
| 649 | // set it on any generated instructions. |
| 650 | IRBuilder<>::FastMathFlagGuard FMFG(Builder); |
| 651 | FastMathFlags FMF; |
| 652 | FMF.setUnsafeAlgebra(); |
Sanjay Patel | a252815 | 2016-01-12 18:03:37 +0000 | [diff] [blame] | 653 | Builder.setFastMathFlags(FMF); |
James Molloy | 50a4c27 | 2015-09-21 19:41:19 +0000 | [diff] [blame] | 654 | |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 655 | Value *Cmp; |
Tyler Nowicki | 27b2c39 | 2015-06-16 22:59:45 +0000 | [diff] [blame] | 656 | if (RK == MRK_FloatMin || RK == MRK_FloatMax) |
Karthik Bhat | 76aa662 | 2015-04-20 04:38:33 +0000 | [diff] [blame] | 657 | Cmp = Builder.CreateFCmp(P, Left, Right, "rdx.minmax.cmp"); |
| 658 | else |
| 659 | Cmp = Builder.CreateICmp(P, Left, Right, "rdx.minmax.cmp"); |
| 660 | |
| 661 | Value *Select = Builder.CreateSelect(Cmp, Left, Right, "rdx.minmax.select"); |
| 662 | return Select; |
| 663 | } |
Karthik Bhat | 24e6cc2 | 2015-04-23 08:29:20 +0000 | [diff] [blame] | 664 | |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 665 | InductionDescriptor::InductionDescriptor(Value *Start, InductionKind K, |
Elena Demikhovsky | 376a18b | 2016-07-24 07:24:54 +0000 | [diff] [blame] | 666 | const SCEV *Step, BinaryOperator *BOp) |
| 667 | : StartValue(Start), IK(K), Step(Step), InductionBinOp(BOp) { |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 668 | assert(IK != IK_NoInduction && "Not an induction"); |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 669 | |
| 670 | // Start value type should match the induction kind and the value |
| 671 | // itself should not be null. |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 672 | assert(StartValue && "StartValue is null"); |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 673 | assert((IK != IK_PtrInduction || StartValue->getType()->isPointerTy()) && |
| 674 | "StartValue is not a pointer for pointer induction"); |
| 675 | assert((IK != IK_IntInduction || StartValue->getType()->isIntegerTy()) && |
| 676 | "StartValue is not an integer for integer induction"); |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 677 | |
| 678 | // Check the Step Value. It should be non-zero integer value. |
| 679 | assert((!getConstIntStepValue() || !getConstIntStepValue()->isZero()) && |
| 680 | "Step value is zero"); |
| 681 | |
| 682 | assert((IK != IK_PtrInduction || getConstIntStepValue()) && |
| 683 | "Step value should be constant for pointer induction"); |
Elena Demikhovsky | 376a18b | 2016-07-24 07:24:54 +0000 | [diff] [blame] | 684 | assert((IK == IK_FpInduction || Step->getType()->isIntegerTy()) && |
| 685 | "StepValue is not an integer"); |
| 686 | |
| 687 | assert((IK != IK_FpInduction || Step->getType()->isFloatingPointTy()) && |
| 688 | "StepValue is not FP for FpInduction"); |
| 689 | assert((IK != IK_FpInduction || (InductionBinOp && |
| 690 | (InductionBinOp->getOpcode() == Instruction::FAdd || |
| 691 | InductionBinOp->getOpcode() == Instruction::FSub))) && |
| 692 | "Binary opcode should be specified for FP induction"); |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 693 | } |
| 694 | |
| 695 | int InductionDescriptor::getConsecutiveDirection() const { |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 696 | ConstantInt *ConstStep = getConstIntStepValue(); |
| 697 | if (ConstStep && (ConstStep->isOne() || ConstStep->isMinusOne())) |
| 698 | return ConstStep->getSExtValue(); |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 699 | return 0; |
| 700 | } |
| 701 | |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 702 | ConstantInt *InductionDescriptor::getConstIntStepValue() const { |
| 703 | if (isa<SCEVConstant>(Step)) |
| 704 | return dyn_cast<ConstantInt>(cast<SCEVConstant>(Step)->getValue()); |
| 705 | return nullptr; |
| 706 | } |
| 707 | |
| 708 | Value *InductionDescriptor::transform(IRBuilder<> &B, Value *Index, |
| 709 | ScalarEvolution *SE, |
| 710 | const DataLayout& DL) const { |
| 711 | |
| 712 | SCEVExpander Exp(*SE, DL, "induction"); |
Elena Demikhovsky | 376a18b | 2016-07-24 07:24:54 +0000 | [diff] [blame] | 713 | assert(Index->getType() == Step->getType() && |
| 714 | "Index type does not match StepValue type"); |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 715 | switch (IK) { |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 716 | case IK_IntInduction: { |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 717 | assert(Index->getType() == StartValue->getType() && |
| 718 | "Index type does not match StartValue type"); |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 719 | |
| 720 | // FIXME: Theoretically, we can call getAddExpr() of ScalarEvolution |
| 721 | // and calculate (Start + Index * Step) for all cases, without |
| 722 | // special handling for "isOne" and "isMinusOne". |
| 723 | // But in the real life the result code getting worse. We mix SCEV |
| 724 | // expressions and ADD/SUB operations and receive redundant |
| 725 | // intermediate values being calculated in different ways and |
| 726 | // Instcombine is unable to reduce them all. |
| 727 | |
| 728 | if (getConstIntStepValue() && |
| 729 | getConstIntStepValue()->isMinusOne()) |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 730 | return B.CreateSub(StartValue, Index); |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 731 | if (getConstIntStepValue() && |
| 732 | getConstIntStepValue()->isOne()) |
| 733 | return B.CreateAdd(StartValue, Index); |
| 734 | const SCEV *S = SE->getAddExpr(SE->getSCEV(StartValue), |
| 735 | SE->getMulExpr(Step, SE->getSCEV(Index))); |
| 736 | return Exp.expandCodeFor(S, StartValue->getType(), &*B.GetInsertPoint()); |
| 737 | } |
| 738 | case IK_PtrInduction: { |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 739 | assert(isa<SCEVConstant>(Step) && |
| 740 | "Expected constant step for pointer induction"); |
| 741 | const SCEV *S = SE->getMulExpr(SE->getSCEV(Index), Step); |
| 742 | Index = Exp.expandCodeFor(S, Index->getType(), &*B.GetInsertPoint()); |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 743 | return B.CreateGEP(nullptr, StartValue, Index); |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 744 | } |
Elena Demikhovsky | 376a18b | 2016-07-24 07:24:54 +0000 | [diff] [blame] | 745 | case IK_FpInduction: { |
| 746 | assert(Step->getType()->isFloatingPointTy() && "Expected FP Step value"); |
| 747 | assert(InductionBinOp && |
| 748 | (InductionBinOp->getOpcode() == Instruction::FAdd || |
| 749 | InductionBinOp->getOpcode() == Instruction::FSub) && |
| 750 | "Original bin op should be defined for FP induction"); |
| 751 | |
| 752 | Value *StepValue = cast<SCEVUnknown>(Step)->getValue(); |
| 753 | |
| 754 | // Floating point operations had to be 'fast' to enable the induction. |
| 755 | FastMathFlags Flags; |
| 756 | Flags.setUnsafeAlgebra(); |
| 757 | |
| 758 | Value *MulExp = B.CreateFMul(StepValue, Index); |
| 759 | if (isa<Instruction>(MulExp)) |
| 760 | // We have to check, the MulExp may be a constant. |
| 761 | cast<Instruction>(MulExp)->setFastMathFlags(Flags); |
| 762 | |
| 763 | Value *BOp = B.CreateBinOp(InductionBinOp->getOpcode() , StartValue, |
| 764 | MulExp, "induction"); |
| 765 | if (isa<Instruction>(BOp)) |
| 766 | cast<Instruction>(BOp)->setFastMathFlags(Flags); |
| 767 | |
| 768 | return BOp; |
| 769 | } |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 770 | case IK_NoInduction: |
| 771 | return nullptr; |
| 772 | } |
| 773 | llvm_unreachable("invalid enum"); |
| 774 | } |
| 775 | |
Elena Demikhovsky | 376a18b | 2016-07-24 07:24:54 +0000 | [diff] [blame] | 776 | bool InductionDescriptor::isFPInductionPHI(PHINode *Phi, const Loop *TheLoop, |
| 777 | ScalarEvolution *SE, |
| 778 | InductionDescriptor &D) { |
| 779 | |
| 780 | // Here we only handle FP induction variables. |
| 781 | assert(Phi->getType()->isFloatingPointTy() && "Unexpected Phi type"); |
| 782 | |
| 783 | if (TheLoop->getHeader() != Phi->getParent()) |
| 784 | return false; |
| 785 | |
| 786 | // The loop may have multiple entrances or multiple exits; we can analyze |
| 787 | // this phi if it has a unique entry value and a unique backedge value. |
| 788 | if (Phi->getNumIncomingValues() != 2) |
| 789 | return false; |
| 790 | Value *BEValue = nullptr, *StartValue = nullptr; |
| 791 | if (TheLoop->contains(Phi->getIncomingBlock(0))) { |
| 792 | BEValue = Phi->getIncomingValue(0); |
| 793 | StartValue = Phi->getIncomingValue(1); |
| 794 | } else { |
| 795 | assert(TheLoop->contains(Phi->getIncomingBlock(1)) && |
| 796 | "Unexpected Phi node in the loop"); |
| 797 | BEValue = Phi->getIncomingValue(1); |
| 798 | StartValue = Phi->getIncomingValue(0); |
| 799 | } |
| 800 | |
| 801 | BinaryOperator *BOp = dyn_cast<BinaryOperator>(BEValue); |
| 802 | if (!BOp) |
| 803 | return false; |
| 804 | |
| 805 | Value *Addend = nullptr; |
| 806 | if (BOp->getOpcode() == Instruction::FAdd) { |
| 807 | if (BOp->getOperand(0) == Phi) |
| 808 | Addend = BOp->getOperand(1); |
| 809 | else if (BOp->getOperand(1) == Phi) |
| 810 | Addend = BOp->getOperand(0); |
| 811 | } else if (BOp->getOpcode() == Instruction::FSub) |
| 812 | if (BOp->getOperand(0) == Phi) |
| 813 | Addend = BOp->getOperand(1); |
| 814 | |
| 815 | if (!Addend) |
| 816 | return false; |
| 817 | |
| 818 | // The addend should be loop invariant |
| 819 | if (auto *I = dyn_cast<Instruction>(Addend)) |
| 820 | if (TheLoop->contains(I)) |
| 821 | return false; |
| 822 | |
| 823 | // FP Step has unknown SCEV |
| 824 | const SCEV *Step = SE->getUnknown(Addend); |
| 825 | D = InductionDescriptor(StartValue, IK_FpInduction, Step, BOp); |
| 826 | return true; |
| 827 | } |
| 828 | |
| 829 | bool InductionDescriptor::isInductionPHI(PHINode *Phi, const Loop *TheLoop, |
Silviu Baranga | c05bab8 | 2016-05-05 15:20:39 +0000 | [diff] [blame] | 830 | PredicatedScalarEvolution &PSE, |
| 831 | InductionDescriptor &D, |
| 832 | bool Assume) { |
| 833 | Type *PhiTy = Phi->getType(); |
Elena Demikhovsky | 376a18b | 2016-07-24 07:24:54 +0000 | [diff] [blame] | 834 | |
| 835 | // Handle integer and pointer inductions variables. |
| 836 | // Now we handle also FP induction but not trying to make a |
| 837 | // recurrent expression from the PHI node in-place. |
| 838 | |
| 839 | if (!PhiTy->isIntegerTy() && !PhiTy->isPointerTy() && |
| 840 | !PhiTy->isFloatTy() && !PhiTy->isDoubleTy() && !PhiTy->isHalfTy()) |
Silviu Baranga | c05bab8 | 2016-05-05 15:20:39 +0000 | [diff] [blame] | 841 | return false; |
| 842 | |
Elena Demikhovsky | 376a18b | 2016-07-24 07:24:54 +0000 | [diff] [blame] | 843 | if (PhiTy->isFloatingPointTy()) |
| 844 | return isFPInductionPHI(Phi, TheLoop, PSE.getSE(), D); |
| 845 | |
Silviu Baranga | c05bab8 | 2016-05-05 15:20:39 +0000 | [diff] [blame] | 846 | const SCEV *PhiScev = PSE.getSCEV(Phi); |
| 847 | const auto *AR = dyn_cast<SCEVAddRecExpr>(PhiScev); |
| 848 | |
| 849 | // We need this expression to be an AddRecExpr. |
| 850 | if (Assume && !AR) |
| 851 | AR = PSE.getAsAddRec(Phi); |
| 852 | |
| 853 | if (!AR) { |
| 854 | DEBUG(dbgs() << "LV: PHI is not a poly recurrence.\n"); |
| 855 | return false; |
| 856 | } |
| 857 | |
Elena Demikhovsky | 376a18b | 2016-07-24 07:24:54 +0000 | [diff] [blame] | 858 | return isInductionPHI(Phi, TheLoop, PSE.getSE(), D, AR); |
Silviu Baranga | c05bab8 | 2016-05-05 15:20:39 +0000 | [diff] [blame] | 859 | } |
| 860 | |
Elena Demikhovsky | 376a18b | 2016-07-24 07:24:54 +0000 | [diff] [blame] | 861 | bool InductionDescriptor::isInductionPHI(PHINode *Phi, const Loop *TheLoop, |
Silviu Baranga | c05bab8 | 2016-05-05 15:20:39 +0000 | [diff] [blame] | 862 | ScalarEvolution *SE, |
| 863 | InductionDescriptor &D, |
| 864 | const SCEV *Expr) { |
Karthik Bhat | 24e6cc2 | 2015-04-23 08:29:20 +0000 | [diff] [blame] | 865 | Type *PhiTy = Phi->getType(); |
| 866 | // We only handle integer and pointer inductions variables. |
| 867 | if (!PhiTy->isIntegerTy() && !PhiTy->isPointerTy()) |
| 868 | return false; |
| 869 | |
| 870 | // Check that the PHI is consecutive. |
Silviu Baranga | c05bab8 | 2016-05-05 15:20:39 +0000 | [diff] [blame] | 871 | const SCEV *PhiScev = Expr ? Expr : SE->getSCEV(Phi); |
Karthik Bhat | 24e6cc2 | 2015-04-23 08:29:20 +0000 | [diff] [blame] | 872 | const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(PhiScev); |
Silviu Baranga | c05bab8 | 2016-05-05 15:20:39 +0000 | [diff] [blame] | 873 | |
Karthik Bhat | 24e6cc2 | 2015-04-23 08:29:20 +0000 | [diff] [blame] | 874 | if (!AR) { |
| 875 | DEBUG(dbgs() << "LV: PHI is not a poly recurrence.\n"); |
| 876 | return false; |
| 877 | } |
| 878 | |
Michael Kuperstein | ee31cbe | 2017-01-10 19:32:30 +0000 | [diff] [blame] | 879 | if (AR->getLoop() != TheLoop) { |
| 880 | // FIXME: We should treat this as a uniform. Unfortunately, we |
| 881 | // don't currently know how to handled uniform PHIs. |
| 882 | DEBUG(dbgs() << "LV: PHI is a recurrence with respect to an outer loop.\n"); |
| 883 | return false; |
| 884 | } |
| 885 | |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 886 | Value *StartValue = |
| 887 | Phi->getIncomingValueForBlock(AR->getLoop()->getLoopPreheader()); |
Karthik Bhat | 24e6cc2 | 2015-04-23 08:29:20 +0000 | [diff] [blame] | 888 | const SCEV *Step = AR->getStepRecurrence(*SE); |
| 889 | // Calculate the pointer stride and check if it is consecutive. |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 890 | // The stride may be a constant or a loop invariant integer value. |
| 891 | const SCEVConstant *ConstStep = dyn_cast<SCEVConstant>(Step); |
Elena Demikhovsky | 376a18b | 2016-07-24 07:24:54 +0000 | [diff] [blame] | 892 | if (!ConstStep && !SE->isLoopInvariant(Step, TheLoop)) |
Karthik Bhat | 24e6cc2 | 2015-04-23 08:29:20 +0000 | [diff] [blame] | 893 | return false; |
| 894 | |
Karthik Bhat | 24e6cc2 | 2015-04-23 08:29:20 +0000 | [diff] [blame] | 895 | if (PhiTy->isIntegerTy()) { |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 896 | D = InductionDescriptor(StartValue, IK_IntInduction, Step); |
Karthik Bhat | 24e6cc2 | 2015-04-23 08:29:20 +0000 | [diff] [blame] | 897 | return true; |
| 898 | } |
| 899 | |
| 900 | assert(PhiTy->isPointerTy() && "The PHI must be a pointer"); |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 901 | // Pointer induction should be a constant. |
| 902 | if (!ConstStep) |
| 903 | return false; |
| 904 | |
| 905 | ConstantInt *CV = ConstStep->getValue(); |
Karthik Bhat | 24e6cc2 | 2015-04-23 08:29:20 +0000 | [diff] [blame] | 906 | Type *PointerElementType = PhiTy->getPointerElementType(); |
| 907 | // The pointer stride cannot be determined if the pointer element type is not |
| 908 | // sized. |
| 909 | if (!PointerElementType->isSized()) |
| 910 | return false; |
| 911 | |
| 912 | const DataLayout &DL = Phi->getModule()->getDataLayout(); |
| 913 | int64_t Size = static_cast<int64_t>(DL.getTypeAllocSize(PointerElementType)); |
David Majnemer | b58f32f | 2015-06-05 10:52:40 +0000 | [diff] [blame] | 914 | if (!Size) |
| 915 | return false; |
| 916 | |
Karthik Bhat | 24e6cc2 | 2015-04-23 08:29:20 +0000 | [diff] [blame] | 917 | int64_t CVSize = CV->getSExtValue(); |
| 918 | if (CVSize % Size) |
| 919 | return false; |
Elena Demikhovsky | c434d09 | 2016-05-10 07:33:35 +0000 | [diff] [blame] | 920 | auto *StepValue = SE->getConstant(CV->getType(), CVSize / Size, |
| 921 | true /* signed */); |
James Molloy | 1bbf15c | 2015-08-27 09:53:00 +0000 | [diff] [blame] | 922 | D = InductionDescriptor(StartValue, IK_PtrInduction, StepValue); |
Karthik Bhat | 24e6cc2 | 2015-04-23 08:29:20 +0000 | [diff] [blame] | 923 | return true; |
| 924 | } |
Ashutosh Nema | c5b7b55 | 2015-08-19 05:40:42 +0000 | [diff] [blame] | 925 | |
| 926 | /// \brief Returns the instructions that use values defined in the loop. |
| 927 | SmallVector<Instruction *, 8> llvm::findDefsUsedOutsideOfLoop(Loop *L) { |
| 928 | SmallVector<Instruction *, 8> UsedOutside; |
| 929 | |
| 930 | for (auto *Block : L->getBlocks()) |
| 931 | // FIXME: I believe that this could use copy_if if the Inst reference could |
| 932 | // be adapted into a pointer. |
| 933 | for (auto &Inst : *Block) { |
| 934 | auto Users = Inst.users(); |
David Majnemer | 0a16c22 | 2016-08-11 21:15:00 +0000 | [diff] [blame] | 935 | if (any_of(Users, [&](User *U) { |
Ashutosh Nema | c5b7b55 | 2015-08-19 05:40:42 +0000 | [diff] [blame] | 936 | auto *Use = cast<Instruction>(U); |
| 937 | return !L->contains(Use->getParent()); |
| 938 | })) |
| 939 | UsedOutside.push_back(&Inst); |
| 940 | } |
| 941 | |
| 942 | return UsedOutside; |
| 943 | } |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 944 | |
| 945 | void llvm::getLoopAnalysisUsage(AnalysisUsage &AU) { |
| 946 | // By definition, all loop passes need the LoopInfo analysis and the |
| 947 | // Dominator tree it depends on. Because they all participate in the loop |
| 948 | // pass manager, they must also preserve these. |
| 949 | AU.addRequired<DominatorTreeWrapperPass>(); |
| 950 | AU.addPreserved<DominatorTreeWrapperPass>(); |
| 951 | AU.addRequired<LoopInfoWrapperPass>(); |
| 952 | AU.addPreserved<LoopInfoWrapperPass>(); |
| 953 | |
| 954 | // We must also preserve LoopSimplify and LCSSA. We locally access their IDs |
| 955 | // here because users shouldn't directly get them from this header. |
| 956 | extern char &LoopSimplifyID; |
| 957 | extern char &LCSSAID; |
| 958 | AU.addRequiredID(LoopSimplifyID); |
| 959 | AU.addPreservedID(LoopSimplifyID); |
| 960 | AU.addRequiredID(LCSSAID); |
| 961 | AU.addPreservedID(LCSSAID); |
Igor Laevsky | c3ccf5d | 2016-10-28 12:57:20 +0000 | [diff] [blame] | 962 | // This is used in the LPPassManager to perform LCSSA verification on passes |
| 963 | // which preserve lcssa form |
| 964 | AU.addRequired<LCSSAVerificationPass>(); |
| 965 | AU.addPreserved<LCSSAVerificationPass>(); |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 966 | |
| 967 | // Loop passes are designed to run inside of a loop pass manager which means |
| 968 | // that any function analyses they require must be required by the first loop |
| 969 | // pass in the manager (so that it is computed before the loop pass manager |
| 970 | // runs) and preserved by all loop pasess in the manager. To make this |
| 971 | // reasonably robust, the set needed for most loop passes is maintained here. |
| 972 | // If your loop pass requires an analysis not listed here, you will need to |
| 973 | // carefully audit the loop pass manager nesting structure that results. |
| 974 | AU.addRequired<AAResultsWrapperPass>(); |
| 975 | AU.addPreserved<AAResultsWrapperPass>(); |
| 976 | AU.addPreserved<BasicAAWrapperPass>(); |
| 977 | AU.addPreserved<GlobalsAAWrapperPass>(); |
| 978 | AU.addPreserved<SCEVAAWrapperPass>(); |
| 979 | AU.addRequired<ScalarEvolutionWrapperPass>(); |
| 980 | AU.addPreserved<ScalarEvolutionWrapperPass>(); |
| 981 | } |
| 982 | |
| 983 | /// Manually defined generic "LoopPass" dependency initialization. This is used |
| 984 | /// to initialize the exact set of passes from above in \c |
| 985 | /// getLoopAnalysisUsage. It can be used within a loop pass's initialization |
| 986 | /// with: |
| 987 | /// |
| 988 | /// INITIALIZE_PASS_DEPENDENCY(LoopPass) |
| 989 | /// |
| 990 | /// As-if "LoopPass" were a pass. |
| 991 | void llvm::initializeLoopPassPass(PassRegistry &Registry) { |
| 992 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
| 993 | INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) |
| 994 | INITIALIZE_PASS_DEPENDENCY(LoopSimplify) |
Easwaran Raman | e12c487 | 2016-06-09 19:44:46 +0000 | [diff] [blame] | 995 | INITIALIZE_PASS_DEPENDENCY(LCSSAWrapperPass) |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 996 | INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass) |
| 997 | INITIALIZE_PASS_DEPENDENCY(BasicAAWrapperPass) |
| 998 | INITIALIZE_PASS_DEPENDENCY(GlobalsAAWrapperPass) |
| 999 | INITIALIZE_PASS_DEPENDENCY(SCEVAAWrapperPass) |
| 1000 | INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass) |
| 1001 | } |
Adam Nemet | 963341c | 2016-04-21 17:33:17 +0000 | [diff] [blame] | 1002 | |
Adam Nemet | fe3def7 | 2016-04-22 19:10:05 +0000 | [diff] [blame] | 1003 | /// \brief Find string metadata for loop |
| 1004 | /// |
| 1005 | /// If it has a value (e.g. {"llvm.distribute", 1} return the value as an |
| 1006 | /// operand or null otherwise. If the string metadata is not found return |
| 1007 | /// Optional's not-a-value. |
| 1008 | Optional<const MDOperand *> llvm::findStringMetadataForLoop(Loop *TheLoop, |
| 1009 | StringRef Name) { |
Adam Nemet | 963341c | 2016-04-21 17:33:17 +0000 | [diff] [blame] | 1010 | MDNode *LoopID = TheLoop->getLoopID(); |
Adam Nemet | fe3def7 | 2016-04-22 19:10:05 +0000 | [diff] [blame] | 1011 | // Return none if LoopID is false. |
Adam Nemet | 963341c | 2016-04-21 17:33:17 +0000 | [diff] [blame] | 1012 | if (!LoopID) |
Adam Nemet | fe3def7 | 2016-04-22 19:10:05 +0000 | [diff] [blame] | 1013 | return None; |
Adam Nemet | 293be66 | 2016-04-21 17:33:20 +0000 | [diff] [blame] | 1014 | |
| 1015 | // First operand should refer to the loop id itself. |
| 1016 | assert(LoopID->getNumOperands() > 0 && "requires at least one operand"); |
| 1017 | assert(LoopID->getOperand(0) == LoopID && "invalid loop id"); |
| 1018 | |
Adam Nemet | 963341c | 2016-04-21 17:33:17 +0000 | [diff] [blame] | 1019 | // Iterate over LoopID operands and look for MDString Metadata |
| 1020 | for (unsigned i = 1, e = LoopID->getNumOperands(); i < e; ++i) { |
| 1021 | MDNode *MD = dyn_cast<MDNode>(LoopID->getOperand(i)); |
| 1022 | if (!MD) |
| 1023 | continue; |
| 1024 | MDString *S = dyn_cast<MDString>(MD->getOperand(0)); |
| 1025 | if (!S) |
| 1026 | continue; |
| 1027 | // Return true if MDString holds expected MetaData. |
| 1028 | if (Name.equals(S->getString())) |
Adam Nemet | fe3def7 | 2016-04-22 19:10:05 +0000 | [diff] [blame] | 1029 | switch (MD->getNumOperands()) { |
| 1030 | case 1: |
| 1031 | return nullptr; |
| 1032 | case 2: |
| 1033 | return &MD->getOperand(1); |
| 1034 | default: |
| 1035 | llvm_unreachable("loop metadata has 0 or 1 operand"); |
| 1036 | } |
Adam Nemet | 963341c | 2016-04-21 17:33:17 +0000 | [diff] [blame] | 1037 | } |
Adam Nemet | fe3def7 | 2016-04-22 19:10:05 +0000 | [diff] [blame] | 1038 | return None; |
Adam Nemet | 963341c | 2016-04-21 17:33:17 +0000 | [diff] [blame] | 1039 | } |
Evgeniy Stepanov | 122f984 | 2016-06-10 20:03:17 +0000 | [diff] [blame] | 1040 | |
| 1041 | /// Returns true if the instruction in a loop is guaranteed to execute at least |
| 1042 | /// once. |
| 1043 | bool llvm::isGuaranteedToExecute(const Instruction &Inst, |
| 1044 | const DominatorTree *DT, const Loop *CurLoop, |
| 1045 | const LoopSafetyInfo *SafetyInfo) { |
| 1046 | // We have to check to make sure that the instruction dominates all |
| 1047 | // of the exit blocks. If it doesn't, then there is a path out of the loop |
| 1048 | // which does not execute this instruction, so we can't hoist it. |
| 1049 | |
| 1050 | // If the instruction is in the header block for the loop (which is very |
| 1051 | // common), it is always guaranteed to dominate the exit blocks. Since this |
| 1052 | // is a common case, and can save some work, check it now. |
| 1053 | if (Inst.getParent() == CurLoop->getHeader()) |
| 1054 | // If there's a throw in the header block, we can't guarantee we'll reach |
| 1055 | // Inst. |
| 1056 | return !SafetyInfo->HeaderMayThrow; |
| 1057 | |
| 1058 | // Somewhere in this loop there is an instruction which may throw and make us |
| 1059 | // exit the loop. |
| 1060 | if (SafetyInfo->MayThrow) |
| 1061 | return false; |
| 1062 | |
| 1063 | // Get the exit blocks for the current loop. |
| 1064 | SmallVector<BasicBlock *, 8> ExitBlocks; |
| 1065 | CurLoop->getExitBlocks(ExitBlocks); |
| 1066 | |
| 1067 | // Verify that the block dominates each of the exit blocks of the loop. |
| 1068 | for (BasicBlock *ExitBlock : ExitBlocks) |
| 1069 | if (!DT->dominates(Inst.getParent(), ExitBlock)) |
| 1070 | return false; |
| 1071 | |
| 1072 | // As a degenerate case, if the loop is statically infinite then we haven't |
| 1073 | // proven anything since there are no exit blocks. |
| 1074 | if (ExitBlocks.empty()) |
| 1075 | return false; |
| 1076 | |
Eli Friedman | f1da33e | 2016-06-11 21:48:25 +0000 | [diff] [blame] | 1077 | // FIXME: In general, we have to prove that the loop isn't an infinite loop. |
| 1078 | // See http::llvm.org/PR24078 . (The "ExitBlocks.empty()" check above is |
| 1079 | // just a special case of this.) |
Evgeniy Stepanov | 122f984 | 2016-06-10 20:03:17 +0000 | [diff] [blame] | 1080 | return true; |
| 1081 | } |
Dehao Chen | 41d72a8 | 2016-11-17 01:17:02 +0000 | [diff] [blame] | 1082 | |
| 1083 | Optional<unsigned> llvm::getLoopEstimatedTripCount(Loop *L) { |
| 1084 | // Only support loops with a unique exiting block, and a latch. |
| 1085 | if (!L->getExitingBlock()) |
| 1086 | return None; |
| 1087 | |
| 1088 | // Get the branch weights for the the loop's backedge. |
| 1089 | BranchInst *LatchBR = |
| 1090 | dyn_cast<BranchInst>(L->getLoopLatch()->getTerminator()); |
| 1091 | if (!LatchBR || LatchBR->getNumSuccessors() != 2) |
| 1092 | return None; |
| 1093 | |
| 1094 | assert((LatchBR->getSuccessor(0) == L->getHeader() || |
| 1095 | LatchBR->getSuccessor(1) == L->getHeader()) && |
| 1096 | "At least one edge out of the latch must go to the header"); |
| 1097 | |
| 1098 | // To estimate the number of times the loop body was executed, we want to |
| 1099 | // know the number of times the backedge was taken, vs. the number of times |
| 1100 | // we exited the loop. |
Dehao Chen | 41d72a8 | 2016-11-17 01:17:02 +0000 | [diff] [blame] | 1101 | uint64_t TrueVal, FalseVal; |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 1102 | if (!LatchBR->extractProfMetadata(TrueVal, FalseVal)) |
Dehao Chen | 41d72a8 | 2016-11-17 01:17:02 +0000 | [diff] [blame] | 1103 | return None; |
| 1104 | |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 1105 | if (!TrueVal || !FalseVal) |
| 1106 | return 0; |
Dehao Chen | 41d72a8 | 2016-11-17 01:17:02 +0000 | [diff] [blame] | 1107 | |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 1108 | // Divide the count of the backedge by the count of the edge exiting the loop, |
| 1109 | // rounding to nearest. |
Dehao Chen | 41d72a8 | 2016-11-17 01:17:02 +0000 | [diff] [blame] | 1110 | if (LatchBR->getSuccessor(0) == L->getHeader()) |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 1111 | return (TrueVal + (FalseVal / 2)) / FalseVal; |
Dehao Chen | 41d72a8 | 2016-11-17 01:17:02 +0000 | [diff] [blame] | 1112 | else |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 1113 | return (FalseVal + (TrueVal / 2)) / TrueVal; |
Dehao Chen | 41d72a8 | 2016-11-17 01:17:02 +0000 | [diff] [blame] | 1114 | } |