- refactoring of backend generator scripts: You can create multiple constructors
[libfirm] / ir / be / TEMPLATE / TEMPLATE_new_nodes.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   This file implements the creation of the achitecture specific firm
23  *          opcodes and the coresponding node constructors for the TEMPLATE
24  *          assembler irg.
25  * @version $Id$
26  */
27 #include "config.h"
28
29 #include <stdlib.h>
30
31 #include "irprog_t.h"
32 #include "irgraph_t.h"
33 #include "irnode_t.h"
34 #include "irmode_t.h"
35 #include "ircons_t.h"
36 #include "iropt_t.h"
37 #include "irop.h"
38 #include "irvrfy_t.h"
39 #include "irprintf.h"
40 #include "xmalloc.h"
41
42 #include "../bearch.h"
43
44 #include "TEMPLATE_nodes_attr.h"
45 #include "TEMPLATE_new_nodes.h"
46 #include "gen_TEMPLATE_regalloc_if.h"
47
48 /**
49  * Dumper interface for dumping TEMPLATE nodes in vcg.
50  * @param n        the node to dump
51  * @param F        the output file
52  * @param reason   indicates which kind of information should be dumped
53  * @return 0 on success or != 0 on failure
54  */
55 static int TEMPLATE_dump_node(ir_node *n, FILE *F, dump_reason_t reason)
56 {
57         ir_mode *mode = NULL;
58
59         switch (reason) {
60         case dump_node_opcode_txt:
61                 fprintf(F, "%s", get_irn_opname(n));
62                 break;
63
64         case dump_node_mode_txt:
65                 mode = get_irn_mode(n);
66
67                 if (mode) {
68                         fprintf(F, "[%s]", get_mode_name(mode));
69                 } else {
70                         fprintf(F, "[?NOMODE?]");
71                 }
72                 break;
73
74         case dump_node_nodeattr_txt:
75
76                 /* TODO: dump some attributes which should show up */
77                 /* in node name in dump (e.g. consts or the like)  */
78
79                 break;
80
81         case dump_node_info_txt:
82                 arch_dump_reqs_and_registers(F, n);
83                 break;
84         }
85
86         return 0;
87 }
88
89 const TEMPLATE_attr_t *get_TEMPLATE_attr_const(const ir_node *node)
90 {
91         assert(is_TEMPLATE_irn(node) && "need TEMPLATE node to get attributes");
92         return (const TEMPLATE_attr_t *)get_irn_generic_attr_const(node);
93 }
94
95 TEMPLATE_attr_t *get_TEMPLATE_attr(ir_node *node)
96 {
97         assert(is_TEMPLATE_irn(node) && "need TEMPLATE node to get attributes");
98         return (TEMPLATE_attr_t *)get_irn_generic_attr(node);
99 }
100
101 /**
102  * Returns the argument register requirements of a TEMPLATE node.
103  */
104 const arch_register_req_t **get_TEMPLATE_in_req_all(const ir_node *node)
105 {
106         const TEMPLATE_attr_t *attr = get_TEMPLATE_attr_const(node);
107         return attr->in_req;
108 }
109
110 /**
111  * Returns the argument register requirement at position pos of an TEMPLATE node.
112  */
113 const arch_register_req_t *get_TEMPLATE_in_req(const ir_node *node, int pos)
114 {
115         const TEMPLATE_attr_t *attr = get_TEMPLATE_attr_const(node);
116         return attr->in_req[pos];
117 }
118
119 /**
120  * Sets the IN register requirements at position pos.
121  */
122 void set_TEMPLATE_req_in(ir_node *node, const arch_register_req_t *req, int pos)
123 {
124         TEMPLATE_attr_t *attr  = get_TEMPLATE_attr(node);
125         attr->in_req[pos] = req;
126 }
127
128 /**
129  * Initializes the nodes attributes.
130  */
131 void init_TEMPLATE_attributes(ir_node *node, arch_irn_flags_t flags,
132                               const arch_register_req_t **in_reqs,
133                               const be_execution_unit_t ***execution_units,
134                               int n_res)
135 {
136         ir_graph        *irg  = get_irn_irg(node);
137         struct obstack  *obst = get_irg_obstack(irg);
138         TEMPLATE_attr_t *attr = get_TEMPLATE_attr(node);
139         backend_info_t  *info;
140         (void) execution_units;
141
142         arch_irn_set_flags(node, flags);
143         attr->in_req  = in_reqs;
144
145         info            = be_get_info(node);
146         info->out_infos = NEW_ARR_D(reg_out_info_t, obst, n_res);
147         memset(info->out_infos, 0, n_res * sizeof(info->out_infos[0]));
148 }
149
150 static int TEMPLATE_compare_attr(ir_node *a, ir_node *b)
151 {
152         const TEMPLATE_attr_t *attr_a = get_TEMPLATE_attr_const(a);
153         const TEMPLATE_attr_t *attr_b = get_TEMPLATE_attr_const(b);
154         (void) attr_a;
155         (void) attr_b;
156
157         return 0;
158 }
159
160 /* Include the generated constructor functions */
161 #include "gen_TEMPLATE_new_nodes.c.inl"