-
Notifications
You must be signed in to change notification settings - Fork 46
/
type.c
271 lines (237 loc) · 6.18 KB
/
type.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
#include <string.h>
#include "util.h"
#include "cc.h"
#define INTTYPE(k, n, s, p) { \
.kind = k, .size = n, .align = n, .u.basic.issigned = s, \
.prop = PROPSCALAR|PROPARITH|PROPREAL|PROPINT|p, \
}
#define FLTTYPE(k, n) { \
.kind = k, .size = n, .align = n, \
.prop = PROPSCALAR|PROPARITH|PROPREAL|PROPFLOAT, \
}
struct type typevoid = {.kind = TYPEVOID, .incomplete = true};
struct type typebool = INTTYPE(TYPEBOOL, 1, false, 0);
struct type typechar = INTTYPE(TYPECHAR, 1, true, PROPCHAR);
struct type typeschar = INTTYPE(TYPECHAR, 1, true, PROPCHAR);
struct type typeuchar = INTTYPE(TYPECHAR, 1, false, PROPCHAR);
struct type typeshort = INTTYPE(TYPESHORT, 2, true, 0);
struct type typeushort = INTTYPE(TYPESHORT, 2, false, 0);
struct type typeint = INTTYPE(TYPEINT, 4, true, 0);
struct type typeuint = INTTYPE(TYPEINT, 4, false, 0);
struct type typelong = INTTYPE(TYPELONG, 8, true, 0);
struct type typeulong = INTTYPE(TYPELONG, 8, false, 0);
struct type typellong = INTTYPE(TYPELLONG, 8, true, 0);
struct type typeullong = INTTYPE(TYPELLONG, 8, false, 0);
struct type typefloat = FLTTYPE(TYPEFLOAT, 4);
struct type typedouble = FLTTYPE(TYPEDOUBLE, 8);
struct type typeldouble = FLTTYPE(TYPELDOUBLE, 16);
struct type typenullptr = {.kind = TYPENULLPTR, .size = 8, .align = 8, .prop = PROPSCALAR};
struct type *typeadjvalist;
struct type *
mktype(enum typekind kind, enum typeprop prop)
{
struct type *t;
t = xmalloc(sizeof(*t));
t->kind = kind;
t->prop = prop;
t->value = NULL;
t->incomplete = false;
t->flexible = false;
return t;
}
struct type *
mkpointertype(struct type *base, enum typequal qual)
{
struct type *t;
t = mktype(TYPEPOINTER, PROPSCALAR);
t->base = base;
t->qual = qual;
t->size = 8;
t->align = 8;
if (base)
t->prop |= base->prop & PROPVM;
return t;
}
struct type *
mkarraytype(struct type *base, enum typequal qual, unsigned long long len)
{
struct type *t;
t = mktype(TYPEARRAY, 0);
t->base = base;
t->qual = qual;
t->u.array.length = NULL;
t->u.array.ptrqual = QUALNONE;
t->incomplete = !len;
if (t->base) {
t->align = t->base->align;
t->size = t->base->size * len; /* XXX: overflow? */
}
return t;
}
static int
typerank(struct type *t)
{
if (t->kind == TYPEENUM)
t = t->base;
assert(t->prop & PROPINT);
switch (t->kind) {
case TYPEBOOL: return 1;
case TYPECHAR: return 2;
case TYPESHORT: return 3;
case TYPEINT: return 4;
case TYPELONG: return 5;
case TYPELLONG: return 6;
}
fatal("internal error; unhandled integer type");
return 0;
}
bool
typecompatible(struct type *t1, struct type *t2)
{
struct decl *p1, *p2;
struct expr *e1, *e2;
if (t1 == t2)
return true;
if (t1->kind != t2->kind) {
/*
enum types are compatible with their underlying
type, but not with each other (unless they are the
same type)
*/
return t1->kind == TYPEENUM && t2 == t1->base ||
t2->kind == TYPEENUM && t1 == t2->base;
}
switch (t1->kind) {
case TYPEPOINTER:
goto derived;
case TYPEARRAY:
if (t1->incomplete || t2->incomplete)
goto derived;
e1 = t1->u.array.length;
e2 = t2->u.array.length;
if (e1 && e2 && e1->kind == EXPRCONST && e2->kind == EXPRCONST && e1->u.constant.u != e2->u.constant.u)
return false;
goto derived;
case TYPEFUNC:
if (t1->u.func.isvararg != t2->u.func.isvararg)
return false;
for (p1 = t1->u.func.params, p2 = t2->u.func.params; p1 && p2; p1 = p1->next, p2 = p2->next) {
if (!typecompatible(p1->type, p2->type))
return false;
}
if (p1 || p2)
return false;
goto derived;
derived:
return t1->qual == t2->qual && typecompatible(t1->base, t2->base);
}
return false;
}
bool
typesame(struct type *t1, struct type *t2)
{
/* XXX: implement */
return typecompatible(t1, t2);
}
struct type *
typecomposite(struct type *t1, struct type *t2)
{
/* XXX: implement 6.2.7 */
/* XXX: merge with typecompatible? */
return t1;
}
struct type *
typepromote(struct type *t, unsigned width)
{
if (t == &typefloat)
return &typedouble;
if (t->prop & PROPINT && (typerank(t) <= typerank(&typeint) || width <= typeint.size * 8)) {
if (width == -1)
width = t->size * 8;
return width - t->u.basic.issigned < typeint.size * 8 ? &typeint : &typeuint;
}
return t;
}
struct type *
typecommonreal(struct type *t1, unsigned w1, struct type *t2, unsigned w2)
{
struct type *tmp;
assert(t1->prop & PROPREAL && t2->prop & PROPREAL);
if (t1 == &typeldouble || t2 == &typeldouble)
return &typeldouble;
if (t1 == &typedouble || t2 == &typedouble)
return &typedouble;
if (t1 == &typefloat || t2 == &typefloat)
return &typefloat;
t1 = typepromote(t1, w1);
t2 = typepromote(t2, w2);
if (t1 == t2)
return t1;
if (t1->u.basic.issigned == t2->u.basic.issigned)
return typerank(t1) > typerank(t2) ? t1 : t2;
if (t1->u.basic.issigned) {
tmp = t1;
t1 = t2;
t2 = tmp;
}
if (typerank(t1) >= typerank(t2))
return t1;
if (t1->size < t2->size)
return t2;
if (t2 == &typelong)
return &typeulong;
if (t2 == &typellong)
return &typeullong;
fatal("internal error; could not find common real type");
return NULL;
}
/* function parameter type adjustment (C11 6.7.6.3p7) */
struct type *
typeadjust(struct type *t, enum typequal *tq)
{
enum typequal ptrqual;
switch (t->kind) {
case TYPEARRAY:
ptrqual = t->u.array.ptrqual;
t = mkpointertype(t->base, *tq | t->qual);
*tq = ptrqual;
break;
case TYPEFUNC:
assert(*tq == QUALNONE);
t = mkpointertype(t, QUALNONE);
break;
}
return t;
}
struct member *
typemember(struct type *t, const char *name, unsigned long long *offset)
{
struct member *m, *sub;
assert(t->kind == TYPESTRUCT || t->kind == TYPEUNION);
for (m = t->u.structunion.members; m; m = m->next) {
if (m->name) {
if (strcmp(m->name, name) == 0) {
*offset += m->offset;
return m;
}
} else {
sub = typemember(m->type, name, offset);
if (sub) {
*offset += m->offset;
return sub;
}
}
}
return NULL;
}
bool
typehasint(struct type *t, unsigned long long i, bool sign)
{
assert(t->prop & PROPINT);
if (sign && i >= -1ull << 63)
return t->u.basic.issigned && i >= -1ull << (t->size << 3) - 1;
return i <= 0xffffffffffffffffull >> (8 - t->size << 3) + t->u.basic.issigned;
}