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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 IceV_Loop = 1 << 13, | 332 IceV_Loop = 1 << 13, |
333 IceV_Mem = 1 << 14, | 333 IceV_Mem = 1 << 14, |
334 // Leave some extra space to make it easier to add new per-pass items. | 334 // Leave some extra space to make it easier to add new per-pass items. |
335 IceV_NO_PER_PASS_DUMP_BEYOND = 1 << 19, | 335 IceV_NO_PER_PASS_DUMP_BEYOND = 1 << 19, |
336 // Items greater than IceV_NO_PER_PASS_DUMP_BEYOND don't by themselves trigger | 336 // Items greater than IceV_NO_PER_PASS_DUMP_BEYOND don't by themselves trigger |
337 // per-pass Cfg dump output. | 337 // per-pass Cfg dump output. |
338 IceV_Status = 1 << 20, | 338 IceV_Status = 1 << 20, |
339 IceV_AvailableRegs = 1 << 21, | 339 IceV_AvailableRegs = 1 << 21, |
340 IceV_GlobalInit = 1 << 22, | 340 IceV_GlobalInit = 1 << 22, |
341 IceV_ConstPoolStats = 1 << 23, | 341 IceV_ConstPoolStats = 1 << 23, |
| 342 IceV_Wasm = 1 << 24, |
342 IceV_All = ~IceV_None, | 343 IceV_All = ~IceV_None, |
343 IceV_Most = | 344 IceV_Most = |
344 IceV_All & ~IceV_LinearScan & ~IceV_GlobalInit & ~IceV_ConstPoolStats | 345 IceV_All & ~IceV_LinearScan & ~IceV_GlobalInit & ~IceV_ConstPoolStats |
345 }; | 346 }; |
346 using VerboseMask = uint32_t; | 347 using VerboseMask = uint32_t; |
347 | 348 |
348 enum FileType { | 349 enum FileType { |
349 FT_Elf, /// ELF .o file | 350 FT_Elf, /// ELF .o file |
350 FT_Asm, /// Assembly .s file | 351 FT_Asm, /// Assembly .s file |
351 FT_Iasm /// "Integrated assembler" .byte-style .s file | 352 FT_Iasm /// "Integrated assembler" .byte-style .s file |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 RPE_PooledConstantReordering, | 431 RPE_PooledConstantReordering, |
431 RPE_RegAllocRandomization, | 432 RPE_RegAllocRandomization, |
432 RPE_num | 433 RPE_num |
433 }; | 434 }; |
434 | 435 |
435 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>; | 436 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>; |
436 | 437 |
437 } // end of namespace Ice | 438 } // end of namespace Ice |
438 | 439 |
439 #endif // SUBZERO_SRC_ICEDEFS_H | 440 #endif // SUBZERO_SRC_ICEDEFS_H |
OLD | NEW |