| 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 "IceDefs.h" | 20 #include "IceDefs.h" | 
| 21 #include "IceClFlags.h" | 21 #include "IceClFlags.h" | 
| 22 #include "IceELFObjectWriter.h" |  | 
| 23 #include "IceIntrinsics.h" | 22 #include "IceIntrinsics.h" | 
| 24 #include "IceRNG.h" | 23 #include "IceRNG.h" | 
| 25 #include "IceTimerTree.h" | 24 #include "IceTimerTree.h" | 
| 26 #include "IceTypes.h" | 25 #include "IceTypes.h" | 
| 27 | 26 | 
| 28 namespace Ice { | 27 namespace Ice { | 
| 29 | 28 | 
| 30 class ClFlags; | 29 class ClFlags; | 
| 31 class FuncSigType; | 30 class FuncSigType; | 
| 32 | 31 | 
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 242 | 241 | 
| 243 private: | 242 private: | 
| 244   TimerIdT ID; | 243   TimerIdT ID; | 
| 245   GlobalContext *const Ctx; | 244   GlobalContext *const Ctx; | 
| 246   bool Active; | 245   bool Active; | 
| 247 }; | 246 }; | 
| 248 | 247 | 
| 249 } // end of namespace Ice | 248 } // end of namespace Ice | 
| 250 | 249 | 
| 251 #endif // SUBZERO_SRC_ICEGLOBALCONTEXT_H | 250 #endif // SUBZERO_SRC_ICEGLOBALCONTEXT_H | 
| OLD | NEW | 
|---|