- refactoring of backend generator scripts: You can create multiple constructors
[libfirm] / ir / be / beinsn.c
1 /*
2  * Copyright (C) 1995-2008 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  * @brief       A data structure to treat nodes and node-proj collections uniformly.
23  * @author      Sebastian Hack
24  * @version     $Id$
25  */
26 #include "config.h"
27
28 #include "irgraph_t.h"
29 #include "irmode_t.h"
30 #include "irnode_t.h"
31 #include "iredges.h"
32
33 #include "besched.h"
34 #include "beinsn_t.h"
35 #include "beirg.h"
36 #include "beabi.h"
37 #include "raw_bitset.h"
38
39 /**
40  * Add machine operands to the instruction uses.
41  *
42  * @param env      the insn construction environment
43  * @param insn     the be_insn that is build
44  * @param mach_op  the machine operand for which uses are added
45  */
46 static void add_machine_operands(const be_insn_env_t *env, be_insn_t *insn, ir_node *mach_op) {
47         struct obstack *obst = env->obst;
48         int i, n;
49
50         for (i = 0, n = get_irn_arity(mach_op); i < n; ++i) {
51                 ir_node *op = get_irn_n(mach_op, i);
52
53                 if (is_irn_machine_operand(op)) {
54                         add_machine_operands(env, insn, op);
55                 } else if (arch_irn_consider_in_reg_alloc(env->cls, op)) {
56                         be_operand_t o;
57
58                         /* found a register use, create an operand */
59                         o.req     = arch_get_register_req(mach_op, i);
60                         o.carrier = op;
61                         o.irn     = insn->irn;
62                         o.pos     = i;
63                         o.partner = NULL;
64                         o.has_constraints = arch_register_req_is(o.req, limited);
65                         obstack_grow(obst, &o, sizeof(o));
66                         insn->n_ops++;
67                         insn->in_constraints |= o.has_constraints;
68                 }
69         }
70 }
71
72 /**
73  * Create a be_insn_t for an IR node.
74  *
75  * @param env      the insn construction environment
76  * @param irn      the irn for which the be_insn should be build
77  *
78  * @return the be_insn for the IR node
79  */
80 be_insn_t *be_scan_insn(const be_insn_env_t *env, ir_node *irn)
81 {
82         struct obstack *obst = env->obst;
83         be_operand_t o;
84         be_insn_t *insn;
85         int i, n;
86         int pre_colored = 0;
87
88         insn = OALLOCZ(obst, be_insn_t);
89
90         insn->irn       = irn;
91         insn->next_insn = sched_next(irn);
92         if (get_irn_mode(irn) == mode_T) {
93                 const ir_edge_t *edge;
94                 ir_node *p;
95
96                 /* This instruction might create more than one def. These are handled
97                    by Proj's, find them. */
98                 foreach_out_edge(irn, edge) {
99                         p = get_edge_src_irn(edge);
100
101                         /* did not work if the result is a ProjT. This should NOT happen
102                            in the backend, but check it for now. */
103                         assert(get_irn_mode(p) != mode_T);
104
105                         if (arch_irn_consider_in_reg_alloc(env->cls, p)) {
106                                 /* found a def: create a new operand */
107                                 o.req             = arch_get_register_req_out(p);
108                                 o.carrier         = p;
109                                 o.irn             = irn;
110                                 o.pos             = -(get_Proj_proj(p) + 1);
111                                 o.partner         = NULL;
112                                 o.has_constraints = arch_register_req_is(o.req, limited);
113                                 obstack_grow(obst, &o, sizeof(o));
114                                 insn->n_ops++;
115                                 insn->out_constraints |= o.has_constraints;
116                                 pre_colored += arch_get_irn_register(p) != NULL;
117                         }
118                 }
119         } else if (arch_irn_consider_in_reg_alloc(env->cls, irn)) {
120                 /* only one def, create one operand */
121                 o.req     = arch_get_register_req_out(irn);
122                 o.carrier = irn;
123                 o.irn     = irn;
124                 o.pos     = -1;
125                 o.partner = NULL;
126                 o.has_constraints = arch_register_req_is(o.req, limited);
127                 obstack_grow(obst, &o, sizeof(o));
128                 insn->n_ops++;
129                 insn->out_constraints |= o.has_constraints;
130                 pre_colored += arch_get_irn_register(irn) != NULL;
131         }
132
133         if (pre_colored > 0) {
134                 assert(pre_colored == insn->n_ops && "partly pre-colored nodes not supported");
135                 insn->pre_colored = 1;
136         }
137         insn->use_start   = insn->n_ops;
138
139         /* now collect the uses for this node */
140         for (i = 0, n = get_irn_arity(irn); i < n; ++i) {
141                 ir_node *op = get_irn_n(irn, i);
142
143                 if (is_irn_machine_operand(op)) {
144                         add_machine_operands(env, insn, op);
145                 } else if (arch_irn_consider_in_reg_alloc(env->cls, op)) {
146                         /* found a register use, create an operand */
147                         o.req     = arch_get_register_req(irn, i);
148                         o.carrier = op;
149                         o.irn     = irn;
150                         o.pos     = i;
151                         o.partner = NULL;
152                         o.has_constraints = arch_register_req_is(o.req, limited);
153                         obstack_grow(obst, &o, sizeof(o));
154                         insn->n_ops++;
155                         insn->in_constraints |= o.has_constraints;
156                 }
157         }
158
159         insn->has_constraints = insn->in_constraints | insn->out_constraints;
160         insn->ops = obstack_finish(obst);
161
162         /* Compute the admissible registers bitsets. */
163         for (i = 0; i < insn->n_ops; ++i) {
164                 be_operand_t *op = &insn->ops[i];
165                 const arch_register_req_t   *req = op->req;
166                 const arch_register_class_t *cls = req->cls;
167                 arch_register_req_type_t    type = req->type;
168
169                 /* If there is no special requirement, we allow current class here */
170                 if (cls == NULL && req->type == arch_register_req_type_none) {
171                         cls  = env->cls;
172                         type = arch_register_req_type_normal;
173                 }
174
175                 assert(cls == env->cls);
176
177                 op->regs = bitset_obstack_alloc(obst, env->cls->n_regs);
178
179                 if (type & arch_register_req_type_limited) {
180                         rbitset_copy_to_bitset(req->limited, op->regs);
181                 } else {
182                         arch_put_non_ignore_regs(env->cls, op->regs);
183                         if (env->ignore_colors)
184                                 bitset_andnot(op->regs, env->ignore_colors);
185                 }
186         }
187
188         return insn;
189 }
190
191 be_insn_env_t *be_insn_env_init(be_insn_env_t *ie, const be_irg_t *birg,
192                                 const arch_register_class_t *cls,
193                                 struct obstack *obst)
194 {
195         ie->cls  = cls;
196         ie->obst = obst;
197         ie->ignore_colors = bitset_obstack_alloc(obst, cls->n_regs);
198         be_abi_put_ignore_regs(birg->abi, cls, ie->ignore_colors);
199
200         return ie;
201 }