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 15 matching lines...) Expand all Loading... |
26 #include <set> | 26 #include <set> |
27 #include <string> | 27 #include <string> |
28 #include <vector> | 28 #include <vector> |
29 #include "llvm/ADT/ArrayRef.h" | 29 #include "llvm/ADT/ArrayRef.h" |
30 #include "llvm/ADT/BitVector.h" | 30 #include "llvm/ADT/BitVector.h" |
31 #include "llvm/ADT/ilist.h" | 31 #include "llvm/ADT/ilist.h" |
32 #include "llvm/ADT/ilist_node.h" | 32 #include "llvm/ADT/ilist_node.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/ELF.h" |
36 #include "llvm/Support/raw_ostream.h" | 37 #include "llvm/Support/raw_ostream.h" |
37 | 38 |
38 namespace Ice { | 39 namespace Ice { |
39 | 40 |
40 class Cfg; | 41 class Cfg; |
41 class CfgNode; | 42 class CfgNode; |
42 class Constant; | 43 class Constant; |
43 class FunctionDeclaration; | 44 class FunctionDeclaration; |
44 class GlobalContext; | 45 class GlobalContext; |
45 class GlobalDeclaration; | 46 class GlobalDeclaration; |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 IceV_RegOrigins = 1 << 7, | 120 IceV_RegOrigins = 1 << 7, |
120 IceV_LinearScan = 1 << 8, | 121 IceV_LinearScan = 1 << 8, |
121 IceV_Frame = 1 << 9, | 122 IceV_Frame = 1 << 9, |
122 IceV_AddrOpt = 1 << 10, | 123 IceV_AddrOpt = 1 << 10, |
123 IceV_All = ~IceV_None, | 124 IceV_All = ~IceV_None, |
124 IceV_Most = IceV_All & ~IceV_LinearScan | 125 IceV_Most = IceV_All & ~IceV_LinearScan |
125 }; | 126 }; |
126 typedef uint32_t VerboseMask; | 127 typedef uint32_t VerboseMask; |
127 | 128 |
128 typedef llvm::raw_ostream Ostream; | 129 typedef llvm::raw_ostream Ostream; |
| 130 typedef llvm::raw_fd_ostream Fdstream; |
129 | 131 |
130 } // end of namespace Ice | 132 } // end of namespace Ice |
131 | 133 |
132 #endif // SUBZERO_SRC_ICEDEFS_H | 134 #endif // SUBZERO_SRC_ICEDEFS_H |
OLD | NEW |