Constify node_cmp_attr_func.
[libfirm] / ir / be / beinfo.c
1 /*
2  * Copyright (C) 1995-2011 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @author      Matthias Braun
23  * @version     $Id$
24  */
25 #include "config.h"
26
27 #include <stdbool.h>
28
29 #include "beinfo.h"
30 #include "bearch.h"
31 #include "benode.h"
32 #include "besched.h"
33 #include "irgwalk.h"
34 #include "irnode_t.h"
35 #include "irdump_t.h"
36 #include "error.h"
37
38 static copy_attr_func  old_phi_copy_attr;
39
40 void be_info_new_node(ir_node *node)
41 {
42         struct obstack *obst;
43         backend_info_t *info;
44
45         /* Projs need no be info, their tuple holds all information */
46         if (is_Proj(node))
47                 return;
48
49         obst = be_get_be_obst(current_ir_graph);
50         info = OALLOCZ(obst, backend_info_t);
51
52         assert(node->backend_info == NULL);
53         node->backend_info = info;
54
55         /* Hack! We still have middle end nodes in the backend (which was probably
56            a bad decision back then), which have no register constraints.
57            Set some none_requirements here.
58          */
59         if (get_irn_mode(node) != mode_T
60                         && get_irn_opcode(node) <= iro_Last) {
61                 info->out_infos = NEW_ARR_D(reg_out_info_t, obst, 1);
62                 memset(info->out_infos, 0, 1 * sizeof(info->out_infos[0]));
63                 info->out_infos[0].req = arch_no_register_req;
64         }
65 }
66
67 static void new_phi_copy_attr(ir_graph *irg, const ir_node *old_node,
68                               ir_node *new_node)
69 {
70         backend_info_t *old_info = be_get_info(old_node);
71         backend_info_t *new_info = be_get_info(new_node);
72
73         *new_info = *old_info;
74
75         old_phi_copy_attr(irg, old_node, new_node);
76 }
77
78 int be_nodes_equal(const ir_node *node1, const ir_node *node2)
79 {
80         const backend_info_t *info1 = be_get_info(node1);
81         const backend_info_t *info2 = be_get_info(node2);
82         size_t                len   = ARR_LEN(info1->out_infos);
83         int                   arity = get_irn_arity(node1);
84         int                   in;
85         size_t                i;
86
87         if (ARR_LEN(info2->out_infos) != len)
88                 return false;
89
90         assert(arity == get_irn_arity(node2));
91
92         for (in = 0; in < arity; ++in) {
93                 if (info1->in_reqs[in] != info2->in_reqs[in])
94                         return false;
95         }
96
97         for (i = 0; i < len; ++i) {
98                 const reg_out_info_t *out1 = &info1->out_infos[i];
99                 const reg_out_info_t *out2 = &info2->out_infos[i];
100                 if (out1->reg != out2->reg)
101                         return false;
102                 if (!reg_reqs_equal(out1->req, out2->req))
103                         return false;
104         }
105
106         return true;
107 }
108
109 static void init_walker(ir_node *node, void *data)
110 {
111         (void) data;
112         be_info_new_node(node);
113 }
114
115 static bool initialized = false;
116
117 void be_info_init(void)
118 {
119         if (initialized)
120                 panic("double initialization of be_info");
121
122         old_phi_copy_attr = op_Phi->ops.copy_attr;
123         op_Phi->ops.copy_attr = new_phi_copy_attr;
124         initialized = true;
125
126         /* phis have register and register requirements now which we want to dump */
127         assert(op_Phi->ops.dump_node == NULL);
128         op_Phi->ops.dump_node = be_dump_phi_reg_reqs;
129 }
130
131 /**
132  * Edge hook to dump the schedule edges.
133  */
134 static void sched_edge_hook(FILE *F, ir_node *irn)
135 {
136         if (is_Proj(irn))
137                 return;
138         if (get_irn_irg(irn)->be_data == NULL)
139                 return;
140
141         if (sched_is_scheduled(irn) && sched_has_prev(irn)) {
142                 ir_node *prev = sched_prev(irn);
143                 fprintf(F, "edge:{sourcename:\"");
144                 PRINT_NODEID(irn);
145                 fprintf(F, "\" targetname:\"");
146                 PRINT_NODEID(prev);
147                 fprintf(F, "\" color:magenta}\n");
148         }
149 }
150
151 void be_info_init_irg(ir_graph *irg)
152 {
153         irg_walk_anchors(irg, init_walker, NULL, NULL);
154
155         set_dump_node_edge_hook(sched_edge_hook);
156 }
157
158 void be_info_free(void)
159 {
160         if (!initialized)
161                 panic("be_info_free called without prior init");
162
163         assert(op_Phi->ops.copy_attr == new_phi_copy_attr);
164         op_Phi->ops.copy_attr = old_phi_copy_attr;
165         initialized = false;
166
167         assert(op_Phi->ops.dump_node == be_dump_phi_reg_reqs);
168         op_Phi->ops.dump_node = NULL;
169 }
170
171 int be_info_initialized(const ir_graph *irg)
172 {
173         (void) irg;
174         return initialized;
175 }