| 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 RPE_BasicBlockReordering, | 302 RPE_BasicBlockReordering, |
| 303 RPE_ConstantBlinding, | 303 RPE_ConstantBlinding, |
| 304 RPE_FunctionReordering, | 304 RPE_FunctionReordering, |
| 305 RPE_GlobalVariableReordering, | 305 RPE_GlobalVariableReordering, |
| 306 RPE_NopInsertion, | 306 RPE_NopInsertion, |
| 307 RPE_PooledConstantReordering, | 307 RPE_PooledConstantReordering, |
| 308 RPE_RegAllocRandomization, | 308 RPE_RegAllocRandomization, |
| 309 RPE_num | 309 RPE_num |
| 310 }; | 310 }; |
| 311 | 311 |
| 312 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>; |
| 313 |
| 312 } // end of namespace Ice | 314 } // end of namespace Ice |
| 313 | 315 |
| 314 #endif // SUBZERO_SRC_ICEDEFS_H | 316 #endif // SUBZERO_SRC_ICEDEFS_H |
| OLD | NEW |