Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 1 | //===---- CGLoopInfo.h - LLVM CodeGen for loop metadata -*- 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 | // This is the internal state used for llvm translation for loop statement |
| 11 | // metadata. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Benjamin Kramer | 2f5db8b | 2014-08-13 16:25:19 +0000 | [diff] [blame] | 15 | #ifndef LLVM_CLANG_LIB_CODEGEN_CGLOOPINFO_H |
| 16 | #define LLVM_CLANG_LIB_CODEGEN_CGLOOPINFO_H |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 17 | |
Tyler Nowicki | 9d268e1 | 2015-06-11 23:23:17 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/ArrayRef.h" |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallVector.h" |
Hal Finkel | c07e19b | 2016-05-25 21:53:24 +0000 | [diff] [blame] | 20 | #include "llvm/IR/DebugLoc.h" |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 21 | #include "llvm/IR/Value.h" |
| 22 | #include "llvm/Support/Compiler.h" |
| 23 | |
| 24 | namespace llvm { |
| 25 | class BasicBlock; |
| 26 | class Instruction; |
| 27 | class MDNode; |
| 28 | } // end namespace llvm |
| 29 | |
| 30 | namespace clang { |
Tyler Nowicki | 9d268e1 | 2015-06-11 23:23:17 +0000 | [diff] [blame] | 31 | class Attr; |
Tyler Nowicki | 54c020d | 2015-07-27 20:10:20 +0000 | [diff] [blame] | 32 | class ASTContext; |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 33 | namespace CodeGen { |
| 34 | |
| 35 | /// \brief Attributes that may be specified on loops. |
| 36 | struct LoopAttributes { |
| 37 | explicit LoopAttributes(bool IsParallel = false); |
| 38 | void clear(); |
| 39 | |
| 40 | /// \brief Generate llvm.loop.parallel metadata for loads and stores. |
| 41 | bool IsParallel; |
| 42 | |
Tyler Nowicki | da46d0e | 2015-07-14 23:03:09 +0000 | [diff] [blame] | 43 | /// \brief State of loop vectorization or unrolling. |
Mark Heffernan | 397a98d | 2015-08-10 17:29:39 +0000 | [diff] [blame] | 44 | enum LVEnableState { Unspecified, Enable, Disable, Full }; |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 45 | |
Tyler Nowicki | da46d0e | 2015-07-14 23:03:09 +0000 | [diff] [blame] | 46 | /// \brief Value for llvm.loop.vectorize.enable metadata. |
| 47 | LVEnableState VectorizeEnable; |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 48 | |
Mark Heffernan | 397a98d | 2015-08-10 17:29:39 +0000 | [diff] [blame] | 49 | /// \brief Value for llvm.loop.unroll.* metadata (enable, disable, or full). |
Tyler Nowicki | 54c020d | 2015-07-27 20:10:20 +0000 | [diff] [blame] | 50 | LVEnableState UnrollEnable; |
| 51 | |
Tyler Nowicki | da46d0e | 2015-07-14 23:03:09 +0000 | [diff] [blame] | 52 | /// \brief Value for llvm.loop.vectorize.width metadata. |
| 53 | unsigned VectorizeWidth; |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 54 | |
Tyler Nowicki | da46d0e | 2015-07-14 23:03:09 +0000 | [diff] [blame] | 55 | /// \brief Value for llvm.loop.interleave.count metadata. |
| 56 | unsigned InterleaveCount; |
Tyler Nowicki | 54c020d | 2015-07-27 20:10:20 +0000 | [diff] [blame] | 57 | |
| 58 | /// \brief llvm.unroll. |
| 59 | unsigned UnrollCount; |
Adam Nemet | 2de463e | 2016-06-14 12:04:26 +0000 | [diff] [blame] | 60 | |
| 61 | /// \brief Value for llvm.loop.distribute.enable metadata. |
| 62 | LVEnableState DistributeEnable; |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | /// \brief Information used when generating a structured loop. |
| 66 | class LoopInfo { |
| 67 | public: |
| 68 | /// \brief Construct a new LoopInfo for the loop with entry Header. |
Hal Finkel | c07e19b | 2016-05-25 21:53:24 +0000 | [diff] [blame] | 69 | LoopInfo(llvm::BasicBlock *Header, const LoopAttributes &Attrs, |
Benjamin Kramer | 81cb4b7 | 2016-11-24 16:01:20 +0000 | [diff] [blame] | 70 | const llvm::DebugLoc &StartLoc, const llvm::DebugLoc &EndLoc); |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 71 | |
| 72 | /// \brief Get the loop id metadata for this loop. |
| 73 | llvm::MDNode *getLoopID() const { return LoopID; } |
| 74 | |
| 75 | /// \brief Get the header block of this loop. |
| 76 | llvm::BasicBlock *getHeader() const { return Header; } |
| 77 | |
| 78 | /// \brief Get the set of attributes active for this loop. |
| 79 | const LoopAttributes &getAttributes() const { return Attrs; } |
| 80 | |
| 81 | private: |
| 82 | /// \brief Loop ID metadata. |
| 83 | llvm::MDNode *LoopID; |
| 84 | /// \brief Header block of this loop. |
| 85 | llvm::BasicBlock *Header; |
| 86 | /// \brief The attributes for this loop. |
| 87 | LoopAttributes Attrs; |
| 88 | }; |
| 89 | |
| 90 | /// \brief A stack of loop information corresponding to loop nesting levels. |
| 91 | /// This stack can be used to prepare attributes which are applied when a loop |
| 92 | /// is emitted. |
| 93 | class LoopInfoStack { |
Aaron Ballman | abc1892 | 2015-02-15 22:54:08 +0000 | [diff] [blame] | 94 | LoopInfoStack(const LoopInfoStack &) = delete; |
| 95 | void operator=(const LoopInfoStack &) = delete; |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 96 | |
| 97 | public: |
| 98 | LoopInfoStack() {} |
| 99 | |
| 100 | /// \brief Begin a new structured loop. The set of staged attributes will be |
| 101 | /// applied to the loop and then cleared. |
Benjamin Kramer | 81cb4b7 | 2016-11-24 16:01:20 +0000 | [diff] [blame] | 102 | void push(llvm::BasicBlock *Header, const llvm::DebugLoc &StartLoc, |
| 103 | const llvm::DebugLoc &EndLoc); |
Tyler Nowicki | 54c020d | 2015-07-27 20:10:20 +0000 | [diff] [blame] | 104 | |
| 105 | /// \brief Begin a new structured loop. Stage attributes from the Attrs list. |
| 106 | /// The staged attributes are applied to the loop and then cleared. |
| 107 | void push(llvm::BasicBlock *Header, clang::ASTContext &Ctx, |
Benjamin Kramer | 81cb4b7 | 2016-11-24 16:01:20 +0000 | [diff] [blame] | 108 | llvm::ArrayRef<const Attr *> Attrs, const llvm::DebugLoc &StartLoc, |
| 109 | const llvm::DebugLoc &EndLoc); |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 110 | |
| 111 | /// \brief End the current loop. |
| 112 | void pop(); |
| 113 | |
| 114 | /// \brief Return the top loop id metadata. |
| 115 | llvm::MDNode *getCurLoopID() const { return getInfo().getLoopID(); } |
| 116 | |
| 117 | /// \brief Return true if the top loop is parallel. |
| 118 | bool getCurLoopParallel() const { |
| 119 | return hasInfo() ? getInfo().getAttributes().IsParallel : false; |
| 120 | } |
| 121 | |
| 122 | /// \brief Function called by the CodeGenFunction when an instruction is |
| 123 | /// created. |
| 124 | void InsertHelper(llvm::Instruction *I) const; |
| 125 | |
| 126 | /// \brief Set the next pushed loop as parallel. |
| 127 | void setParallel(bool Enable = true) { StagedAttrs.IsParallel = Enable; } |
| 128 | |
Tyler Nowicki | da46d0e | 2015-07-14 23:03:09 +0000 | [diff] [blame] | 129 | /// \brief Set the next pushed loop 'vectorize.enable' |
| 130 | void setVectorizeEnable(bool Enable = true) { |
| 131 | StagedAttrs.VectorizeEnable = |
| 132 | Enable ? LoopAttributes::Enable : LoopAttributes::Disable; |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 133 | } |
| 134 | |
Adam Nemet | 2de463e | 2016-06-14 12:04:26 +0000 | [diff] [blame] | 135 | /// \brief Set the next pushed loop as a distribution candidate. |
| 136 | void setDistributeState(bool Enable = true) { |
| 137 | StagedAttrs.DistributeEnable = |
| 138 | Enable ? LoopAttributes::Enable : LoopAttributes::Disable; |
| 139 | } |
| 140 | |
Tyler Nowicki | 54c020d | 2015-07-27 20:10:20 +0000 | [diff] [blame] | 141 | /// \brief Set the next pushed loop unroll state. |
Mark Heffernan | 397a98d | 2015-08-10 17:29:39 +0000 | [diff] [blame] | 142 | void setUnrollState(const LoopAttributes::LVEnableState &State) { |
| 143 | StagedAttrs.UnrollEnable = State; |
Tyler Nowicki | 54c020d | 2015-07-27 20:10:20 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Tyler Nowicki | da46d0e | 2015-07-14 23:03:09 +0000 | [diff] [blame] | 146 | /// \brief Set the vectorize width for the next loop pushed. |
| 147 | void setVectorizeWidth(unsigned W) { StagedAttrs.VectorizeWidth = W; } |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 148 | |
Tyler Nowicki | da46d0e | 2015-07-14 23:03:09 +0000 | [diff] [blame] | 149 | /// \brief Set the interleave count for the next loop pushed. |
| 150 | void setInterleaveCount(unsigned C) { StagedAttrs.InterleaveCount = C; } |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 151 | |
Tyler Nowicki | 54c020d | 2015-07-27 20:10:20 +0000 | [diff] [blame] | 152 | /// \brief Set the unroll count for the next loop pushed. |
| 153 | void setUnrollCount(unsigned C) { StagedAttrs.UnrollCount = C; } |
| 154 | |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 155 | private: |
| 156 | /// \brief Returns true if there is LoopInfo on the stack. |
| 157 | bool hasInfo() const { return !Active.empty(); } |
| 158 | /// \brief Return the LoopInfo for the current loop. HasInfo should be called |
| 159 | /// first to ensure LoopInfo is present. |
| 160 | const LoopInfo &getInfo() const { return Active.back(); } |
| 161 | /// \brief The set of attributes that will be applied to the next pushed loop. |
| 162 | LoopAttributes StagedAttrs; |
| 163 | /// \brief Stack of active loops. |
| 164 | llvm::SmallVector<LoopInfo, 4> Active; |
| 165 | }; |
| 166 | |
| 167 | } // end namespace CodeGen |
| 168 | } // end namespace clang |
| 169 | |
Benjamin Kramer | 2f5db8b | 2014-08-13 16:25:19 +0000 | [diff] [blame] | 170 | #endif |