2001-09-19 16:26:10 +00:00
|
|
|
|
|
|
|
|
2001-09-08 14:22:50 +00:00
|
|
|
#ifndef REG_ALLOC_COMMON_H
|
2002-05-22 17:06:56 +00:00
|
|
|
#define REG_ALLOC_COMMON_H
|
2002-02-04 05:52:08 +00:00
|
|
|
|
2001-09-08 14:22:50 +00:00
|
|
|
// set DEBUG_RA for printing out debug messages
|
|
|
|
// if DEBUG_RA is 1 normal output messages
|
|
|
|
// if DEBUG_RA is 2 extensive debug info for each instr
|
|
|
|
|
2001-09-19 16:26:10 +00:00
|
|
|
enum RegAllocDebugLevel_t {
|
|
|
|
RA_DEBUG_None = 0,
|
|
|
|
RA_DEBUG_Normal = 1,
|
|
|
|
RA_DEBUG_Verbose = 2,
|
|
|
|
};
|
|
|
|
|
2002-05-22 17:06:56 +00:00
|
|
|
extern RegAllocDebugLevel_t DEBUG_RA;
|
2001-09-08 14:22:50 +00:00
|
|
|
|
|
|
|
#endif
|