Implemented debug support.
[libfirm] / ir / common / common_t.h
1 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
2 ** All rights reserved.
3 **
4 ** Authors: Martin Trapp, Christian Schaefer &
5 **          Goetz Lindenmaier
6 **
7 ** common_t.h: preprocessor flags
8 */
9
10 /* $Id$ */
11
12 # ifndef _COMMON_T_H_
13 # define _COMMON_T_H_
14
15 #include "common.h"
16
17 /** Global flags.  Set these by autoconf?? **/
18
19 /* When set Phi node construction uses the values valid when the fragile
20    operation is executed.  Else it uses the values valid at the end of the
21    block with the fragile operation. */
22 #define PRECISE_EXC_CONTEXT 1
23 // #define PRECISE_EXC_CONTEXT 0
24
25 /* There are two implementations of the Phi node construction.  The first
26    is faster, but does not work for blocks with more than 2 predecessors.
27    The second works always but is slower and causes more unnecessary Phi
28    nodes.
29    Select the implementations by the following preprocessor flag: */
30 #define USE_FAST_PHI_CONSTRUCTION 0
31
32 /* Further there are two versions of the fast Phi node construction.
33    If the following flag is set, new_r_Phi_in uses an explicit stack for
34    allocating and deallocating Phi nodes.  Else it uses the obstack
35    as a stack! */
36 #define USE_EXPLICIT_PHI_IN_STACK 1
37
38 /*
39 /* If this is defined debuging aids are created, e.g. a field in
40  * ir_node uniquely numbering the nodes.
41  * #define DEBUG_libfirm 1
42  * This is now set by the configure script as an option.
43  */
44 #ifdef HAVE_CONFIG_H
45 # include <config.h>
46 #endif
47
48 /* If this and DEBUG_libfirm are defined irdump uses the nodeid numbers as
49    labels for the vcg nodes.  This makes the vcg graph better readable.
50    Sometimes it's useful to see the pointer values, though. */
51 #define NODEID_AS_LABEL 1
52
53 # endif /*_COMMON_T_H_ */