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 22 matching lines...) Expand all Loading... |
33 #include "llvm/ADT/STLExtras.h" | 33 #include "llvm/ADT/STLExtras.h" |
34 #include "llvm/Support/Casting.h" | 34 #include "llvm/Support/Casting.h" |
35 #include "llvm/Support/raw_ostream.h" | 35 #include "llvm/Support/raw_ostream.h" |
36 | 36 |
37 namespace Ice { | 37 namespace Ice { |
38 | 38 |
39 class Cfg; | 39 class Cfg; |
40 class CfgNode; | 40 class CfgNode; |
41 class Constant; | 41 class Constant; |
42 class GlobalContext; | 42 class GlobalContext; |
| 43 class GlobalAddress; |
43 class Inst; | 44 class Inst; |
44 class InstPhi; | 45 class InstPhi; |
45 class InstTarget; | 46 class InstTarget; |
46 class LiveRange; | 47 class LiveRange; |
47 class Liveness; | 48 class Liveness; |
48 class Operand; | 49 class Operand; |
49 class TargetLowering; | 50 class TargetLowering; |
50 class Variable; | 51 class Variable; |
51 class VariablesMetadata; | 52 class VariablesMetadata; |
52 | 53 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 IceV_All = ~IceV_None, | 102 IceV_All = ~IceV_None, |
102 IceV_Most = IceV_All & ~IceV_LinearScan | 103 IceV_Most = IceV_All & ~IceV_LinearScan |
103 }; | 104 }; |
104 typedef uint32_t VerboseMask; | 105 typedef uint32_t VerboseMask; |
105 | 106 |
106 typedef llvm::raw_ostream Ostream; | 107 typedef llvm::raw_ostream Ostream; |
107 | 108 |
108 } // end of namespace Ice | 109 } // end of namespace Ice |
109 | 110 |
110 #endif // SUBZERO_SRC_ICEDEFS_H | 111 #endif // SUBZERO_SRC_ICEDEFS_H |
OLD | NEW |