27eae4b36cac18ba0991f41494e39c2ae4ce4722
[libfirm] / ir / be / amd64 / amd64_new_nodes.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  * @brief   This file implements the creation of the achitecture specific firm
23  *          opcodes and the coresponding node constructors for the amd64
24  *          assembler irg.
25  */
26 #include "config.h"
27
28 #include <stdlib.h>
29
30 #include "irprog_t.h"
31 #include "irgraph_t.h"
32 #include "irnode_t.h"
33 #include "irmode_t.h"
34 #include "ircons_t.h"
35 #include "iropt_t.h"
36 #include "irop.h"
37 #include "irprintf.h"
38 #include "xmalloc.h"
39
40 #include "bearch.h"
41
42 #include "amd64_nodes_attr.h"
43 #include "amd64_new_nodes.h"
44 #include "gen_amd64_regalloc_if.h"
45
46 void set_amd64_ls_mode(ir_node *node, ir_mode *mode)
47 {
48   amd64_attr_t *attr = get_amd64_attr(node);
49   attr->ls_mode = mode;
50 }
51
52 /**
53  * Dumper interface for dumping amd64 nodes in vcg.
54  * @param F        the output file
55  * @param n        the node to dump
56  * @param reason   indicates which kind of information should be dumped
57  */
58 static void amd64_dump_node(FILE *F, ir_node *n, dump_reason_t reason)
59 {
60         ir_mode *mode = NULL;
61
62         switch (reason) {
63         case dump_node_opcode_txt:
64                 fprintf(F, "%s", get_irn_opname(n));
65                 break;
66
67         case dump_node_mode_txt:
68                 mode = get_irn_mode(n);
69
70                 if (mode) {
71                         fprintf(F, "[%s]", get_mode_name(mode));
72                 } else {
73                         fprintf(F, "[?NOMODE?]");
74                 }
75                 break;
76
77         case dump_node_nodeattr_txt:
78
79                 /* TODO: dump some attributes which should show up */
80                 /* in node name in dump (e.g. consts or the like)  */
81
82                 break;
83
84         case dump_node_info_txt:
85                 arch_dump_reqs_and_registers(F, n);
86                 break;
87         }
88 }
89
90 const amd64_attr_t *get_amd64_attr_const(const ir_node *node)
91 {
92         assert(is_amd64_irn(node) && "need amd64 node to get attributes");
93         return (const amd64_attr_t *)get_irn_generic_attr_const(node);
94 }
95
96 amd64_attr_t *get_amd64_attr(ir_node *node)
97 {
98         assert(is_amd64_irn(node) && "need amd64 node to get attributes");
99         return (amd64_attr_t *)get_irn_generic_attr(node);
100 }
101
102 const amd64_SymConst_attr_t *get_amd64_SymConst_attr_const(const ir_node *node)
103 {
104         const amd64_SymConst_attr_t *attr
105                 = (const amd64_SymConst_attr_t*)get_irn_generic_attr_const(node);
106         return attr;
107 }
108
109 amd64_SymConst_attr_t *get_amd64_SymConst_attr(ir_node *node)
110 {
111         amd64_SymConst_attr_t *attr
112                 = (amd64_SymConst_attr_t*)get_irn_generic_attr(node);
113         return attr;
114 }
115
116 /**
117  * Initializes the nodes attributes.
118  */
119 static void init_amd64_attributes(ir_node *node, arch_irn_flags_t flags,
120                               const arch_register_req_t **in_reqs,
121                               const be_execution_unit_t ***execution_units,
122                               int n_res)
123 {
124         ir_graph        *irg  = get_irn_irg(node);
125         struct obstack  *obst = get_irg_obstack(irg);
126         amd64_attr_t *attr    = get_amd64_attr(node);
127
128         backend_info_t  *info;
129         (void) execution_units;
130
131         arch_set_irn_flags(node, flags);
132         arch_set_irn_register_reqs_in(node, in_reqs);
133
134         info            = be_get_info(node);
135         info->out_infos = NEW_ARR_D(reg_out_info_t, obst, n_res);
136         memset(info->out_infos, 0, n_res * sizeof(info->out_infos[0]));
137
138         attr->data.ins_permuted = 0;
139         attr->data.cmp_unsigned = 0;
140         attr->ext.relation      = ir_relation_false;
141         attr->ext.imm_value     = 0;
142 }
143
144 /**
145  * Initialize SymConst attributes.
146  */
147 static void init_amd64_SymConst_attributes(ir_node *node, ir_entity *entity)
148 {
149         amd64_SymConst_attr_t *attr = get_amd64_SymConst_attr(node);
150         attr->entity    = entity;
151         attr->fp_offset = 0;
152 }
153
154 /** Compare node attributes for SymConst. */
155 static int cmp_amd64_attr_SymConst(const ir_node *a, const ir_node *b)
156 {
157         const amd64_SymConst_attr_t *attr_a = get_amd64_SymConst_attr_const(a);
158         const amd64_SymConst_attr_t *attr_b = get_amd64_SymConst_attr_const(b);
159
160         if (attr_a->entity != attr_b->entity
161             || attr_a->fp_offset != attr_b->fp_offset)
162                 return 1;
163
164         return 0;
165 }
166
167 /** Compare common amd64 node attributes. */
168 static int cmp_amd64_attr(const ir_node *a, const ir_node *b)
169 {
170         const amd64_attr_t *attr_a = get_amd64_attr_const(a);
171         const amd64_attr_t *attr_b = get_amd64_attr_const(b);
172
173         return attr_a->ext.imm_value != attr_b->ext.imm_value;
174 }
175
176 /** copies the AMD64 attributes of a node. */
177 static void amd64_copy_attr(ir_graph *irg, const ir_node *old_node,
178                           ir_node *new_node)
179 {
180         struct obstack   *obst       = get_irg_obstack(irg);
181         const amd64_attr_t *attr_old = get_amd64_attr_const(old_node);
182         amd64_attr_t     *attr_new   = get_amd64_attr(new_node);
183         backend_info_t   *old_info   = be_get_info(old_node);
184         backend_info_t   *new_info   = be_get_info(new_node);
185
186         /* copy the attributes */
187         memcpy(attr_new, attr_old, get_op_attr_size(get_irn_op(old_node)));
188
189         /* copy out flags */
190         new_info->flags = old_info->flags;
191         new_info->out_infos =
192                 DUP_ARR_D(reg_out_info_t, obst, old_info->out_infos);
193         new_info->in_reqs = old_info->in_reqs;
194 }
195
196 /* Include the generated constructor functions */
197 #include "gen_amd64_new_nodes.c.inl"