f7c30e6d58f3211a0077701056b14ac03c464fe8
[oota-llvm.git] / lib / Target / SparcV9 / RegAlloc / RegAllocCommon.h
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
10 #include "Support/CommandLine.h"
11
12 enum RegAllocDebugLevel_t {
13   RA_DEBUG_None         = 0,
14   RA_DEBUG_Results      = 1,
15   RA_DEBUG_Coloring     = 2,
16   RA_DEBUG_Interference = 3,
17   RA_DEBUG_LiveRanges   = 4,
18   RA_DEBUG_Verbose      = 5
19 };
20
21 extern RegAllocDebugLevel_t DEBUG_RA;
22
23 #endif