Vikram S. Adve | c9f1e71 | 2002-09-14 22:18:37 +0000 | [diff] [blame] | 1 | //===-- RegAllocCommon.h --------------------------------------------------===// |
| 2 | // |
| 3 | // Shared declarations for register allocation. |
| 4 | // |
| 5 | //===----------------------------------------------------------------------===// |
| 6 | |
| 7 | #ifndef LLVM_CODEGEN_REGALLOCCOMMON_H |
| 8 | #define LLVM_CODEGEN_REGALLOCCOMMON_H |
| 9 | |
Vikram S. Adve | c9f1e71 | 2002-09-14 22:18:37 +0000 | [diff] [blame] | 10 | enum RegAllocDebugLevel_t { |
| 11 | RA_DEBUG_None = 0, |
| 12 | RA_DEBUG_Results = 1, |
| 13 | RA_DEBUG_Coloring = 2, |
| 14 | RA_DEBUG_Interference = 3, |
| 15 | RA_DEBUG_LiveRanges = 4, |
| 16 | RA_DEBUG_Verbose = 5 |
| 17 | }; |
| 18 | |
| 19 | extern RegAllocDebugLevel_t DEBUG_RA; |
| 20 | |
| 21 | #endif |