blob: 2b1edb68a31adbcb064a5aa259d16f0ab6a19cd6 [file] [log] [blame]
Vikram S. Advec9f1e712002-09-14 22:18:37 +00001//===-- 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. Advec9f1e712002-09-14 22:18:37 +000010enum 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
19extern RegAllocDebugLevel_t DEBUG_RA;
20
21#endif