OLD | NEW |
1 //===- subzero/src/IceDefs.h - Common Subzero declaraions -------*- C++ -*-===// | 1 //===- subzero/src/IceDefs.h - Common Subzero declaraions -------*- 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 various useful types and classes that have | 10 // This file declares various useful types and classes that have |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include <string> | 28 #include <string> |
29 #include <vector> | 29 #include <vector> |
30 | 30 |
31 #include "llvm/ADT/ArrayRef.h" | 31 #include "llvm/ADT/ArrayRef.h" |
32 #include "llvm/ADT/BitVector.h" | 32 #include "llvm/ADT/BitVector.h" |
33 #include "llvm/ADT/SmallBitVector.h" | 33 #include "llvm/ADT/SmallBitVector.h" |
34 #include "llvm/ADT/STLExtras.h" | 34 #include "llvm/ADT/STLExtras.h" |
35 #include "llvm/Support/Casting.h" | 35 #include "llvm/Support/Casting.h" |
36 #include "llvm/Support/Compiler.h" // LLVM_STATIC_ASSERT | 36 #include "llvm/Support/Compiler.h" // LLVM_STATIC_ASSERT |
37 #include "llvm/Support/raw_ostream.h" | 37 #include "llvm/Support/raw_ostream.h" |
38 #include "llvm/Support/Timer.h" | |
39 | 38 |
40 // Roll our own static_assert<> in the absence of C++11. TODO: change | 39 // Roll our own static_assert<> in the absence of C++11. TODO: change |
41 // to static_assert<> with C++11. | 40 // to static_assert<> with C++11. |
42 template <bool> struct staticAssert; | 41 template <bool> struct staticAssert; |
43 template <> struct staticAssert<true> {}; // only true is defined | 42 template <> struct staticAssert<true> {}; // only true is defined |
44 #define STATIC_ASSERT(x) staticAssert<(x)>() | 43 #define STATIC_ASSERT(x) staticAssert<(x)>() |
45 | 44 |
46 namespace Ice { | 45 namespace Ice { |
47 | 46 |
48 class Cfg; | 47 class Cfg; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 IceV_All = ~IceV_None, | 108 IceV_All = ~IceV_None, |
110 IceV_Most = IceV_All & ~IceV_LinearScan | 109 IceV_Most = IceV_All & ~IceV_LinearScan |
111 }; | 110 }; |
112 typedef uint32_t VerboseMask; | 111 typedef uint32_t VerboseMask; |
113 | 112 |
114 typedef llvm::raw_ostream Ostream; | 113 typedef llvm::raw_ostream Ostream; |
115 | 114 |
116 } // end of namespace Ice | 115 } // end of namespace Ice |
117 | 116 |
118 #endif // SUBZERO_SRC_ICEDEFS_H | 117 #endif // SUBZERO_SRC_ICEDEFS_H |
OLD | NEW |