It does not make any sense to remove AM, which loads a non-GP value to fix register...
[libfirm] / ir / tr / tpop.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   Opcode of types.
23  * @author  Goetz Lindenmaier, Michael Beck
24  * @version $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include "xmalloc.h"
31 #include "tpop_t.h"
32 #include "type_t.h"
33
34 tp_op *type_class;         tp_op *get_tpop_class      (void) { return type_class;       }
35 tp_op *type_struct;        tp_op *get_tpop_struct     (void) { return type_struct;      }
36 tp_op *type_method;        tp_op *get_tpop_method     (void) { return type_method;      }
37 tp_op *type_union;         tp_op *get_tpop_union      (void) { return type_union;       }
38 tp_op *type_array;         tp_op *get_tpop_array      (void) { return type_array;       }
39 tp_op *type_enumeration;   tp_op *get_tpop_enumeration(void) { return type_enumeration; }
40 tp_op *type_pointer;       tp_op *get_tpop_pointer    (void) { return type_pointer;     }
41 tp_op *type_primitive;     tp_op *get_tpop_primitive  (void) { return type_primitive;   }
42 tp_op *type_id;            tp_op *get_tpop_id         (void) { return type_id;          }
43 tp_op *tpop_none;          tp_op *get_tpop_none       (void) { return tpop_none;        }
44 tp_op *tpop_unknown;       tp_op *get_tpop_unknown    (void) { return tpop_unknown;     }
45
46 tp_op *
47 new_tpop(tp_opcode code, ident *name, unsigned flags, size_t attr_size,
48          const tp_op_ops *ops)
49 {
50         tp_op *res = XMALLOC(tp_op);
51         res->code          = code;
52         res->name          = name;
53         res->flags         = flags;
54         res->attr_size     = attr_size;
55
56         if (ops)
57                 memcpy(&res->ops, ops, sizeof(res->ops));
58         else
59                 memset(&res->ops, 0, sizeof(res->ops));
60
61         return res;
62 }
63
64 void
65 free_tpop(tp_op *tpop) {
66         free(tpop);
67 }
68
69 static const tp_op_ops
70         /** tpop operations for class types */
71         class_ops = {
72                 free_class_attrs,
73                 free_class_entities,
74                 NULL,
75                 set_class_mode,
76                 set_class_size,
77                 get_class_n_members,
78                 get_class_member,
79                 get_class_member_index
80         },
81         /** tpop operations for struct types */
82         struct_ops = {
83                 free_struct_attrs,
84                 free_struct_entities,
85                 NULL,
86                 set_struct_mode,
87                 set_struct_size,
88                 get_struct_n_members,
89                 get_struct_member,
90                 get_struct_member_index
91         },
92         /** tpop operations for method types */
93         method_ops = {
94                 free_method_attrs,
95                 free_method_entities,
96                 NULL,
97                 NULL,
98                 NULL,
99                 NULL,
100                 NULL,
101                 NULL
102                 },
103         /** tpop operations for union types */
104         union_ops = {
105                 free_union_attrs,
106                 free_union_entities,
107                 NULL,
108                 NULL,
109                 set_union_size,
110                 get_union_n_members,
111                 get_union_member,
112                 get_union_member_index
113         },
114         /** tpop operations for array types */
115         array_ops = {
116                 free_array_attrs,
117                 free_array_entities,
118                 free_array_automatic_entities,
119                 NULL,
120                 set_array_size,
121                 NULL,
122                 NULL,
123                 NULL
124         },
125         /** tpop operations for enumeration types */
126         enum_ops = {
127                 free_enumeration_attrs,
128                 free_enumeration_entities,
129                 NULL,
130                 set_enumeration_mode,
131                 NULL,
132                 NULL,
133                 NULL,
134                 NULL
135         },
136         /** tpop operations for pointer types */
137         pointer_ops = {
138                 free_pointer_attrs,
139                 free_pointer_entities,
140                 NULL,
141                 set_pointer_mode,
142                 NULL,
143                 NULL,
144                 NULL,
145                 NULL
146         },
147         /** tpop operations for pseudo types */
148         pseudo_ops = {
149                 NULL,
150                 NULL,
151                 NULL,
152                 NULL,
153                 set_default_size,
154                 NULL,
155                 NULL,
156                 NULL
157         },
158         /** tpop operations for primitive types */
159         null_ops = {
160                 NULL,
161                 NULL,
162                 NULL,
163                 NULL,
164                 NULL,
165                 NULL,
166                 NULL,
167                 NULL
168         };
169
170 #define C     TP_OP_FLAG_COMPOUND
171 #define ID(s) new_id_from_chars(s, sizeof(s) - 1)
172
173 void init_tpop(void) {
174         type_class       = new_tpop(tpo_class      , ID("class"),       C, sizeof (cls_attr), &class_ops);
175         type_struct      = new_tpop(tpo_struct     , ID("struct"),      C, sizeof (stc_attr), &struct_ops);
176         type_method      = new_tpop(tpo_method     , ID("method"),      0, sizeof (mtd_attr), &method_ops);
177         type_union       = new_tpop(tpo_union      , ID("union"),       C, sizeof (uni_attr), &union_ops);
178         type_array       = new_tpop(tpo_array      , ID("array"),       C, sizeof (arr_attr), &array_ops);
179         type_enumeration = new_tpop(tpo_enumeration, ID("enumeration"), 0, sizeof (enm_attr), &enum_ops);
180         type_pointer     = new_tpop(tpo_pointer    , ID("pointer"),     0, sizeof (ptr_attr), &pointer_ops);
181         type_primitive   = new_tpop(tpo_primitive  , ID("primitive"),   0, sizeof (pri_attr), &null_ops);
182         type_id          = new_tpop(tpo_id         , ID("type_id"),     0, /* sizeof (id_attr)  */ 0, &null_ops);
183         tpop_none        = new_tpop(tpo_none       , ID("None"),        0, /* sizeof (non_attr) */ 0, &pseudo_ops);
184         tpop_unknown     = new_tpop(tpo_unknown    , ID("Unknown"),     0, /* sizeof (ukn_attr) */ 0, &pseudo_ops);
185 }
186 #undef ID
187 #undef C
188
189 /* Finalize the tpop module.
190  * Frees all type opcodes.  */
191 void finish_tpop(void) {
192         free_tpop(type_class      ); type_class       = NULL;
193         free_tpop(type_struct     ); type_struct      = NULL;
194         free_tpop(type_method     ); type_method      = NULL;
195         free_tpop(type_union      ); type_union       = NULL;
196         free_tpop(type_array      ); type_array       = NULL;
197         free_tpop(type_enumeration); type_enumeration = NULL;
198         free_tpop(type_pointer    ); type_pointer     = NULL;
199         free_tpop(type_primitive  ); type_primitive   = NULL;
200         free_tpop(type_id         ); type_id          = NULL;
201         free_tpop(tpop_none       ); tpop_none        = NULL;
202         free_tpop(tpop_unknown    ); tpop_unknown     = NULL;
203         }
204
205 /* Returns the string for the tp_opcode. */
206 const char  *get_tpop_name(const tp_op *op) {
207         return get_id_str(op->name);
208 }
209
210 tp_opcode (get_tpop_code)(const tp_op *op) {
211         return _get_tpop_code(op);
212 }
213
214 ident *(get_tpop_ident)(const tp_op *op) {
215         return _get_tpop_ident(op);
216 }
217
218 /* returns the attribute size of the operator. */
219 int (get_tpop_attr_size)(const tp_op *op) {
220         return _get_tpop_attr_size(op);
221 }