| OLD | NEW |
| 1 //===- subzero/src/IceDefs.h - Common Subzero declarations ------*- C++ -*-===// | 1 //===- subzero/src/IceDefs.h - Common Subzero declarations ------*- 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 /// \file | 10 /// \file |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 class Cfg; | 51 class Cfg; |
| 52 class CfgNode; | 52 class CfgNode; |
| 53 class Constant; | 53 class Constant; |
| 54 class ELFObjectWriter; | 54 class ELFObjectWriter; |
| 55 class ELFStreamer; | 55 class ELFStreamer; |
| 56 class FunctionDeclaration; | 56 class FunctionDeclaration; |
| 57 class GlobalContext; | 57 class GlobalContext; |
| 58 class GlobalDeclaration; | 58 class GlobalDeclaration; |
| 59 class Inst; | 59 class Inst; |
| 60 class InstAssign; | 60 class InstAssign; |
| 61 class InstJumpTable; |
| 61 class InstPhi; | 62 class InstPhi; |
| 63 class InstSwitch; |
| 62 class InstTarget; | 64 class InstTarget; |
| 63 class LiveRange; | 65 class LiveRange; |
| 64 class Liveness; | 66 class Liveness; |
| 65 class Operand; | 67 class Operand; |
| 66 class TargetDataLowering; | 68 class TargetDataLowering; |
| 67 class TargetLowering; | 69 class TargetLowering; |
| 68 class Variable; | 70 class Variable; |
| 69 class VariableDeclaration; | 71 class VariableDeclaration; |
| 70 class VariablesMetadata; | 72 class VariablesMetadata; |
| 71 | 73 |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 llvm::iterator_range<typename T::reverse_iterator> reverse_range(T &Container) { | 268 llvm::iterator_range<typename T::reverse_iterator> reverse_range(T &Container) { |
| 267 return llvm::make_range(Container.rbegin(), Container.rend()); | 269 return llvm::make_range(Container.rbegin(), Container.rend()); |
| 268 } | 270 } |
| 269 | 271 |
| 270 /// Options for pooling and randomization of immediates. | 272 /// Options for pooling and randomization of immediates. |
| 271 enum RandomizeAndPoolImmediatesEnum { RPI_None, RPI_Randomize, RPI_Pool }; | 273 enum RandomizeAndPoolImmediatesEnum { RPI_None, RPI_Randomize, RPI_Pool }; |
| 272 | 274 |
| 273 } // end of namespace Ice | 275 } // end of namespace Ice |
| 274 | 276 |
| 275 #endif // SUBZERO_SRC_ICEDEFS_H | 277 #endif // SUBZERO_SRC_ICEDEFS_H |
| OLD | NEW |