put Type types into a union again, but so that all the subtype are still available...
[cparser] / type_t.h
1 #ifndef TYPE_T_H
2 #define TYPE_T_H
3
4 #include <stdbool.h>
5 #include <assert.h>
6
7 #include <libfirm/firm_types.h>
8
9 #include "type.h"
10 #include "symbol.h"
11 #include "token_t.h"
12 #include "ast_t.h"
13 #include "adt/obst.h"
14
15 struct obstack *type_obst;
16
17 typedef enum {
18         TYPE_INVALID,
19         TYPE_ATOMIC,
20         TYPE_COMPOUND_STRUCT,
21         TYPE_COMPOUND_UNION,
22         TYPE_ENUM,
23         TYPE_FUNCTION,
24         TYPE_POINTER,
25         TYPE_ARRAY,
26         TYPE_BUILTIN,
27         TYPE_TYPEDEF,
28         TYPE_TYPEOF
29 } type_type_t;
30
31 /* note that the constant values represent the rank of the types as defined
32  * in ยง 6.3.1 */
33 typedef enum {
34         ATOMIC_TYPE_INVALID = 0,
35         ATOMIC_TYPE_VOID,
36         ATOMIC_TYPE_CHAR,
37         ATOMIC_TYPE_SCHAR,
38         ATOMIC_TYPE_UCHAR,
39         ATOMIC_TYPE_SHORT,
40         ATOMIC_TYPE_USHORT,
41         ATOMIC_TYPE_INT,
42         ATOMIC_TYPE_UINT,
43         ATOMIC_TYPE_LONG,
44         ATOMIC_TYPE_ULONG,
45         ATOMIC_TYPE_LONGLONG,
46         ATOMIC_TYPE_ULONGLONG,
47         ATOMIC_TYPE_FLOAT,
48         ATOMIC_TYPE_DOUBLE,
49         ATOMIC_TYPE_LONG_DOUBLE,
50         ATOMIC_TYPE_BOOL,
51 #ifdef PROVIDE_COMPLEX
52         ATOMIC_TYPE_FLOAT_COMPLEX,
53         ATOMIC_TYPE_DOUBLE_COMPLEX,
54         ATOMIC_TYPE_LONG_DOUBLE_COMPLEX,
55         ATOMIC_TYPE_FLOAT_IMAGINARY,
56         ATOMIC_TYPE_DOUBLE_IMAGINARY,
57         ATOMIC_TYPE_LONG_DOUBLE_IMAGINARY,
58 #endif
59 } atomic_type_type_t;
60
61 typedef enum {
62         TYPE_QUALIFIER_NONE     = 0,
63         TYPE_QUALIFIER_CONST    = 1 << 0,
64         TYPE_QUALIFIER_RESTRICT = 1 << 1,
65         TYPE_QUALIFIER_VOLATILE = 1 << 2,
66 } type_qualifier_t;
67
68 typedef unsigned int type_qualifiers_t;
69
70 struct type_base_t {
71         type_type_t       type;
72         type_qualifiers_t qualifiers;
73
74         ir_type          *firm_type;
75 };
76
77 struct atomic_type_t {
78         type_base_t         type;
79         atomic_type_type_t  atype;
80 };
81
82 struct builtin_type_t {
83         type_base_t  type;
84         symbol_t    *symbol;
85         type_t      *real_type;
86 };
87
88 struct pointer_type_t {
89         type_base_t  type;
90         type_t      *points_to;
91 };
92
93 struct array_type_t {
94         type_base_t   type;
95         type_t       *element_type;
96         expression_t *size;
97         bool          is_static;
98         bool          is_variable;
99 };
100
101 struct function_parameter_t {
102         type_t               *type;
103         function_parameter_t *next;
104 };
105
106 struct function_type_t {
107         type_base_t           type;
108         type_t               *result_type;
109         function_parameter_t *parameters;
110         bool                  variadic;
111         bool                  unspecified_parameters;
112 };
113
114 struct compound_type_t {
115         type_base_t    type;
116         /** the declaration of the compound type, its context field
117          *  contains the compound entries. */
118         declaration_t *declaration;
119 };
120
121 struct enum_type_t {
122         type_base_t    type;
123         /** the declaration of the enum type. You can find the enum entries by
124          *  walking the declaration->next list until you don't find
125          *  STORAGE_CLASS_ENUM_ENTRY declarations anymore */
126         declaration_t *declaration;
127 };
128
129 struct typedef_type_t {
130         type_base_t    type;
131         declaration_t *declaration;
132         type_t        *resolved_type;
133 };
134
135 struct typeof_type_t {
136         type_base_t   type;
137         expression_t *expression;
138         type_t       *typeof_type;
139         type_t       *resolved_type;
140 };
141
142 union type_t {
143         type_type_t      type;
144         type_base_t      base;
145         atomic_type_t    atomic;
146         builtin_type_t   builtin;
147         pointer_type_t   pointer;
148         array_type_t     array;
149         function_type_t  function;
150         compound_type_t  compound;
151         enum_type_t      enumt;
152         typedef_type_t   typedeft;
153         typeof_type_t    typeoft;
154 };
155
156 type_t *make_atomic_type(atomic_type_type_t type, type_qualifiers_t qualifiers);
157 type_t *make_pointer_type(type_t *points_to, type_qualifiers_t qualifiers);
158
159 static inline bool is_typeref(const type_t *type)
160 {
161         return type->type == TYPE_TYPEDEF || type->type == TYPE_TYPEOF;
162 }
163
164 static inline bool is_type_atomic(const type_t *type, atomic_type_type_t atype)
165 {
166         assert(!is_typeref(type));
167
168         if(type->type != TYPE_ATOMIC)
169                 return false;
170         const atomic_type_t *atomic_type = &type->atomic;
171
172         return atomic_type->atype == atype;
173 }
174
175 static inline bool is_type_pointer(const type_t *type)
176 {
177         assert(!is_typeref(type));
178         return type->type == TYPE_POINTER;
179 }
180
181 static inline bool is_type_compound(const type_t *type)
182 {
183         assert(!is_typeref(type));
184         return type->type == TYPE_COMPOUND_STRUCT
185                 || type->type == TYPE_COMPOUND_UNION;
186 }
187
188 #endif