| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 IceV_Preds = 1 << 3, | 218 IceV_Preds = 1 << 3, |
| 219 IceV_Succs = 1 << 4, | 219 IceV_Succs = 1 << 4, |
| 220 IceV_Liveness = 1 << 5, | 220 IceV_Liveness = 1 << 5, |
| 221 IceV_RegOrigins = 1 << 6, | 221 IceV_RegOrigins = 1 << 6, |
| 222 IceV_LinearScan = 1 << 7, | 222 IceV_LinearScan = 1 << 7, |
| 223 IceV_Frame = 1 << 8, | 223 IceV_Frame = 1 << 8, |
| 224 IceV_AddrOpt = 1 << 9, | 224 IceV_AddrOpt = 1 << 9, |
| 225 IceV_Random = 1 << 10, | 225 IceV_Random = 1 << 10, |
| 226 IceV_Folding = 1 << 11, | 226 IceV_Folding = 1 << 11, |
| 227 IceV_RMW = 1 << 12, | 227 IceV_RMW = 1 << 12, |
| 228 IceV_Loop = 1 << 13, |
| 228 IceV_All = ~IceV_None, | 229 IceV_All = ~IceV_None, |
| 229 IceV_Most = IceV_All & ~IceV_LinearScan | 230 IceV_Most = IceV_All & ~IceV_LinearScan |
| 230 }; | 231 }; |
| 231 typedef uint32_t VerboseMask; | 232 typedef uint32_t VerboseMask; |
| 232 | 233 |
| 233 enum FileType { | 234 enum FileType { |
| 234 FT_Elf, /// ELF .o file | 235 FT_Elf, /// ELF .o file |
| 235 FT_Asm, /// Assembly .s file | 236 FT_Asm, /// Assembly .s file |
| 236 FT_Iasm /// "Integrated assembler" .byte-style .s file | 237 FT_Iasm /// "Integrated assembler" .byte-style .s file |
| 237 }; | 238 }; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 RPE_GlobalVariableReordering, | 288 RPE_GlobalVariableReordering, |
| 288 RPE_NopInsertion, | 289 RPE_NopInsertion, |
| 289 RPE_PooledConstantReordering, | 290 RPE_PooledConstantReordering, |
| 290 RPE_RegAllocRandomization, | 291 RPE_RegAllocRandomization, |
| 291 RPE_num | 292 RPE_num |
| 292 }; | 293 }; |
| 293 | 294 |
| 294 } // end of namespace Ice | 295 } // end of namespace Ice |
| 295 | 296 |
| 296 #endif // SUBZERO_SRC_ICEDEFS_H | 297 #endif // SUBZERO_SRC_ICEDEFS_H |
| OLD | NEW |