summaryrefslogtreecommitdiffstats
path: root/include/clang/Sema/LoopHint.h
diff options
context:
space:
mode:
authorMark Heffernan <meheff@google.com>2014-07-21 18:08:34 +0000
committerMark Heffernan <meheff@google.com>2014-07-21 18:08:34 +0000
commit30974231cab08ddc43e78dfe224009f8555d0ec3 (patch)
tree34d0e3ac36d147a146e0ff50dc9a503d1d0d9c22 /include/clang/Sema/LoopHint.h
parentd2b971aa5e42a2d09603085a3b2ab2b5820ef707 (diff)
Add support for '#pragma unroll'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@213574 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema/LoopHint.h')
-rw-r--r--include/clang/Sema/LoopHint.h17
1 files changed, 13 insertions, 4 deletions
diff --git a/include/clang/Sema/LoopHint.h b/include/clang/Sema/LoopHint.h
index 928cfb1ee8..d4b985df54 100644
--- a/include/clang/Sema/LoopHint.h
+++ b/include/clang/Sema/LoopHint.h
@@ -17,13 +17,22 @@
namespace clang {
-/// \brief Loop hint specified by a pragma loop directive.
+/// \brief Loop optimization hint for loop and unroll pragmas.
struct LoopHint {
+ // Source range of the directive.
SourceRange Range;
- Expr *ValueExpr;
- IdentifierLoc *LoopLoc;
- IdentifierLoc *ValueLoc;
+ // Identifier corresponding to the name of the pragma. "loop" for
+ // "#pragma clang loop" directives and "unroll" for "#pragma unroll"
+ // hints.
+ IdentifierLoc *PragmaNameLoc;
+ // Name of the loop hint. Examples: "unroll", "vectorize". In the
+ // "#pragma unroll" case, this is identical to PragmaNameLoc.
IdentifierLoc *OptionLoc;
+ // Identifier for the hint argument. If null, then the hint has no argument
+ // such as for "#pragma unroll".
+ IdentifierLoc *ValueLoc;
+ // Expression for the hint argument if it exists, null otherwise.
+ Expr *ValueExpr;
};
} // end namespace clang