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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 IceV_Succs = 1 << 4, | 232 IceV_Succs = 1 << 4, |
233 IceV_Liveness = 1 << 5, | 233 IceV_Liveness = 1 << 5, |
234 IceV_RegOrigins = 1 << 6, | 234 IceV_RegOrigins = 1 << 6, |
235 IceV_LinearScan = 1 << 7, | 235 IceV_LinearScan = 1 << 7, |
236 IceV_Frame = 1 << 8, | 236 IceV_Frame = 1 << 8, |
237 IceV_AddrOpt = 1 << 9, | 237 IceV_AddrOpt = 1 << 9, |
238 IceV_Random = 1 << 10, | 238 IceV_Random = 1 << 10, |
239 IceV_Folding = 1 << 11, | 239 IceV_Folding = 1 << 11, |
240 IceV_RMW = 1 << 12, | 240 IceV_RMW = 1 << 12, |
241 IceV_Loop = 1 << 13, | 241 IceV_Loop = 1 << 13, |
| 242 IceV_Status = 1 << 14, |
242 IceV_All = ~IceV_None, | 243 IceV_All = ~IceV_None, |
243 IceV_Most = IceV_All & ~IceV_LinearScan | 244 IceV_Most = IceV_All & ~IceV_LinearScan |
244 }; | 245 }; |
245 using VerboseMask = uint32_t; | 246 using VerboseMask = uint32_t; |
246 | 247 |
247 enum FileType { | 248 enum FileType { |
248 FT_Elf, /// ELF .o file | 249 FT_Elf, /// ELF .o file |
249 FT_Asm, /// Assembly .s file | 250 FT_Asm, /// Assembly .s file |
250 FT_Iasm /// "Integrated assembler" .byte-style .s file | 251 FT_Iasm /// "Integrated assembler" .byte-style .s file |
251 }; | 252 }; |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 RPE_GlobalVariableReordering, | 302 RPE_GlobalVariableReordering, |
302 RPE_NopInsertion, | 303 RPE_NopInsertion, |
303 RPE_PooledConstantReordering, | 304 RPE_PooledConstantReordering, |
304 RPE_RegAllocRandomization, | 305 RPE_RegAllocRandomization, |
305 RPE_num | 306 RPE_num |
306 }; | 307 }; |
307 | 308 |
308 } // end of namespace Ice | 309 } // end of namespace Ice |
309 | 310 |
310 #endif // SUBZERO_SRC_ICEDEFS_H | 311 #endif // SUBZERO_SRC_ICEDEFS_H |
OLD | NEW |