Added call to eliminate_phi_interferences. Enabled phi-destruction.
[libfirm] / ir / be / beutil.h
1
2 #ifndef _BEUTIL_H
3 #define _BEUTIL_H
4
5 #include <stdio.h>
6
7 #include "irnode.h"
8 #include "config.h"
9
10 #include "bearch.h"
11
12 /** Undefine this to disable debugging mode. */
13 #define BE_DEBUG 1
14
15 /**
16  * Convenient block getter.
17  * Works also, if the given node is a block.
18  * @param  irn The node.
19  * @return The block of the node, or the node itself, if the node is a
20  *         block.
21  */
22 static INLINE const ir_node *get_block(const ir_node *irn)
23 {
24   return is_Block(irn) ? irn : get_nodes_block(irn);
25 }
26
27 /**
28  * Check, if a node produces or consumes a data value.
29  * If it does, it is significant for scheduling and register allocation.
30  * A node produces/consumes a data value, if one of its operands is of
31  * mode datab, or his retuning mode is of mode datab.
32  * @param irn The node to check for.
33  * @return 1, if the node is a data node, 0 if not.
34  */
35 static INLINE int is_data_node(const ir_node *irn)
36 {
37         int i, n;
38
39         /* If the node produces a data value, return immediately. */
40         if(mode_is_datab(get_irn_mode(irn)))
41                 return 1;
42
43         /* else check, if it takes a data value, if that is so, return */
44         for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
45                 ir_node *op = get_irn_n(irn, i);
46                 if(mode_is_datab(get_irn_mode(op)))
47                         return 1;
48         }
49
50         /* Else the node does not produce/consume a data value */
51         return 0;
52 }
53
54 /**
55  * Make each constant local to its use.
56  * This duplicates all constants in order to simulate a realistic
57  * register pressure.
58  * @param irg The graph.
59  */
60 void localize_consts(ir_graph *irg);
61
62 /**
63  * Dump a vcg graph containing the controlflow graph, the schedule and
64  * allocated registers.
65  * @param irg The irg. Note that scheduling, register allocation must
66  * have been performed.
67  */
68 void dump_allocated_irg(arch_env_t *env, ir_graph *irg, char *suffix);
69
70
71
72 static INLINE FILE *ffopen(const char *base, const char *ext, const char *mode) {
73         FILE *out;
74         char buf[1024];
75
76         snprintf(buf, sizeof(buf), "%s.%s", base, ext);
77         if (! (out = fopen(buf, mode))) {
78                 fprintf(stderr, "Cannot open file %s in mode %s\n", buf, mode);
79                 return NULL;
80         }
81         return out;
82 }
83
84 /**
85  * Dump a graph with schedule edges.
86  * @param irg The graph.
87  * @param suffix A suffix to its file name.
88  */
89 void dump_ir_block_graph_sched(ir_graph *irg, const char *suffix);
90
91 #endif