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