| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 215   // Leave some extra space to make it easier to add new per-pass items. | 215   // Leave some extra space to make it easier to add new per-pass items. | 
| 216   IceV_NO_PER_PASS_DUMP_BEYOND = 1 << 19, | 216   IceV_NO_PER_PASS_DUMP_BEYOND = 1 << 19, | 
| 217   // Items greater than IceV_NO_PER_PASS_DUMP_BEYOND don't by themselves trigger | 217   // Items greater than IceV_NO_PER_PASS_DUMP_BEYOND don't by themselves trigger | 
| 218   // per-pass Cfg dump output. | 218   // per-pass Cfg dump output. | 
| 219   IceV_Status = 1 << 20, | 219   IceV_Status = 1 << 20, | 
| 220   IceV_AvailableRegs = 1 << 21, | 220   IceV_AvailableRegs = 1 << 21, | 
| 221   IceV_GlobalInit = 1 << 22, | 221   IceV_GlobalInit = 1 << 22, | 
| 222   IceV_ConstPoolStats = 1 << 23, | 222   IceV_ConstPoolStats = 1 << 23, | 
| 223   IceV_All = ~IceV_None, | 223   IceV_All = ~IceV_None, | 
| 224   IceV_Most = | 224   IceV_Most = | 
| 225       IceV_All & ~IceV_LinearScan & ~IceV_GlobalInit & IceV_ConstPoolStats | 225       IceV_All & ~IceV_LinearScan & ~IceV_GlobalInit & ~IceV_ConstPoolStats | 
| 226 }; | 226 }; | 
| 227 using VerboseMask = uint32_t; | 227 using VerboseMask = uint32_t; | 
| 228 | 228 | 
| 229 enum FileType { | 229 enum FileType { | 
| 230   FT_Elf, /// ELF .o file | 230   FT_Elf, /// ELF .o file | 
| 231   FT_Asm, /// Assembly .s file | 231   FT_Asm, /// Assembly .s file | 
| 232   FT_Iasm /// "Integrated assembler" .byte-style .s file | 232   FT_Iasm /// "Integrated assembler" .byte-style .s file | 
| 233 }; | 233 }; | 
| 234 | 234 | 
| 235 using Ostream = llvm::raw_ostream; | 235 using Ostream = llvm::raw_ostream; | 
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 285   RPE_PooledConstantReordering, | 285   RPE_PooledConstantReordering, | 
| 286   RPE_RegAllocRandomization, | 286   RPE_RegAllocRandomization, | 
| 287   RPE_num | 287   RPE_num | 
| 288 }; | 288 }; | 
| 289 | 289 | 
| 290 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>; | 290 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>; | 
| 291 | 291 | 
| 292 } // end of namespace Ice | 292 } // end of namespace Ice | 
| 293 | 293 | 
| 294 #endif // SUBZERO_SRC_ICEDEFS_H | 294 #endif // SUBZERO_SRC_ICEDEFS_H | 
| OLD | NEW | 
|---|