OLD | NEW |
1 //===- subzero/src/IceGlobalContext.h - Global context defs -----*- C++ -*-===// | 1 //===- subzero/src/IceGlobalContext.h - Global context defs -----*- C++ -*-===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 // | 9 // |
10 // This file declares aspects of the compilation that persist across | 10 // This file declares aspects of the compilation that persist across |
11 // multiple functions. | 11 // multiple functions. |
12 // | 12 // |
13 //===----------------------------------------------------------------------===// | 13 //===----------------------------------------------------------------------===// |
14 | 14 |
15 #ifndef SUBZERO_SRC_ICEGLOBALCONTEXT_H | 15 #ifndef SUBZERO_SRC_ICEGLOBALCONTEXT_H |
16 #define SUBZERO_SRC_ICEGLOBALCONTEXT_H | 16 #define SUBZERO_SRC_ICEGLOBALCONTEXT_H |
17 | 17 |
18 #include <memory> | 18 #include <memory> |
19 | 19 |
20 #include "llvm/Support/Allocator.h" | 20 #include "llvm/Support/Allocator.h" |
21 #include "llvm/Support/raw_ostream.h" | 21 #include "llvm/Support/raw_ostream.h" |
22 | 22 |
| 23 #include "IceClFlags.h" |
23 #include "IceDefs.h" | 24 #include "IceDefs.h" |
24 #include "IceIntrinsics.h" | 25 #include "IceIntrinsics.h" |
25 #include "IceRNG.h" | 26 #include "IceRNG.h" |
26 #include "IceTimerTree.h" | 27 #include "IceTimerTree.h" |
27 #include "IceTypes.h" | 28 #include "IceTypes.h" |
28 | 29 |
29 namespace Ice { | 30 namespace Ice { |
30 | 31 |
31 class ClFlags; | 32 class ClFlags; |
32 | 33 |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 | 217 |
217 private: | 218 private: |
218 TimerIdT ID; | 219 TimerIdT ID; |
219 GlobalContext *const Ctx; | 220 GlobalContext *const Ctx; |
220 const bool Active; | 221 const bool Active; |
221 }; | 222 }; |
222 | 223 |
223 } // end of namespace Ice | 224 } // end of namespace Ice |
224 | 225 |
225 #endif // SUBZERO_SRC_ICEGLOBALCONTEXT_H | 226 #endif // SUBZERO_SRC_ICEGLOBALCONTEXT_H |
OLD | NEW |