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