-
Notifications
You must be signed in to change notification settings - Fork 46
/
init.c
291 lines (273 loc) · 6.77 KB
/
init.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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
#include <assert.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include "util.h"
#include "cc.h"
struct object {
unsigned long long offset;
struct type *type;
union {
struct member *mem;
unsigned long long idx;
} u;
bool iscur;
};
struct initparser {
/* TODO: keep track of type depth, and allocate maximum possible
number of nested objects in initializer */
struct object obj[32], *cur, *sub;
struct init *init, **last;
};
struct init *
mkinit(unsigned long long start, unsigned long long end, struct bitfield bits, struct expr *expr)
{
struct init *init;
init = xmalloc(sizeof(*init));
init->start = start;
init->end = end;
init->expr = expr;
init->bits = bits;
init->next = NULL;
return init;
}
static void
initadd(struct initparser *p, struct init *new)
{
struct init **init, *old;
init = p->last;
for (; old = *init; init = &old->next) {
if (old->end * 8 - old->bits.after <= new->start * 8 + new->bits.before)
continue;
/* no overlap, insert before `old` */
if (new->end * 8 - new->bits.after <= old->start * 8 + old->bits.before)
break;
/* replace any initializers that `new` covers */
if (old->end * 8 - old->bits.after <= new->end * 8 - new->bits.after) {
do old = old->next;
while (old && old->end * 8 - old->bits.after <= new->end * 8 - new->bits.after);
break;
}
/* `old` covers `new`, keep looking */
}
new->next = old;
*init = new;
p->last = &new->next;
}
static void
subobj(struct initparser *p, struct type *t, unsigned long long off)
{
off += p->sub->offset;
if (++p->sub == p->obj + LEN(p->obj))
fatal("internal error: too many designators");
p->sub->type = t;
p->sub->offset = off;
p->sub->iscur = false;
}
static bool
findmember(struct initparser *p, char *name)
{
struct member *m;
for (m = p->sub->type->u.structunion.members; m; m = m->next) {
if (m->name) {
if (strcmp(m->name, name) == 0) {
p->sub->u.mem = m;
subobj(p, m->type, m->offset);
return true;
}
} else {
subobj(p, m->type, m->offset);
if (findmember(p, name))
return true;
--p->sub;
}
}
return false;
}
static void
designator(struct scope *s, struct initparser *p)
{
struct type *t;
char *name;
p->last = &p->init;
p->sub = p->cur;
for (;;) {
t = p->sub->type;
switch (tok.kind) {
case TLBRACK:
if (t->kind != TYPEARRAY)
error(&tok.loc, "index designator is only valid for array types");
next();
p->sub->u.idx = intconstexpr(s, false) * t->base->size;
if (p->sub->u.idx >= t->size) {
if (!t->incomplete)
error(&tok.loc, "index designator is larger than array length");
t->size = p->sub->u.idx + t->base->size;
}
expect(TRBRACK, "for index designator");
subobj(p, t->base, p->sub->u.idx);
break;
case TPERIOD:
if (t->kind != TYPESTRUCT && t->kind != TYPEUNION)
error(&tok.loc, "member designator only valid for struct/union types");
next();
name = expect(TIDENT, "for member designator");
if (!findmember(p, name))
error(&tok.loc, "%s has no member named '%s'", t->kind == TYPEUNION ? "union" : "struct", name);
free(name);
break;
default:
expect(TASSIGN, "after designator");
return;
}
}
}
static void
focus(struct initparser *p)
{
struct type *t;
switch (p->sub->type->kind) {
case TYPEARRAY:
t = p->sub->type->base;
p->sub->u.idx = 0;
if (p->sub->type->incomplete)
p->sub->type->size = t->size;
break;
case TYPESTRUCT:
case TYPEUNION:
p->sub->u.mem = p->sub->type->u.structunion.members;
t = p->sub->u.mem->type;
break;
default:
fatal("internal error: init cursor has unexpected type");
return; /* unreachable */
}
subobj(p, t, 0);
}
static void
advance(struct initparser *p)
{
struct type *t;
for (;;) {
--p->sub;
t = p->sub->type;
switch (t->kind) {
case TYPEARRAY:
p->sub->u.idx += t->base->size;
if (p->sub->u.idx == t->size) {
if (!t->incomplete)
break;
t->size += t->base->size;
}
subobj(p, t->base, p->sub->u.idx);
return;
case TYPESTRUCT:
p->sub->u.mem = p->sub->u.mem->next;
if (p->sub->u.mem) {
subobj(p, p->sub->u.mem->type, p->sub->u.mem->offset);
return;
}
break;
}
if (p->sub == p->cur)
error(&tok.loc, "too many initializers for type");
}
}
/* 6.7.9 Initialization */
struct init *
parseinit(struct scope *s, struct type *t)
{
struct initparser p;
struct expr *expr;
struct type *base;
struct bitfield bits;
p.cur = NULL;
p.sub = p.obj;
p.sub->offset = 0;
p.sub->type = t;
p.sub->iscur = false;
p.init = NULL;
p.last = &p.init;
if (t->incomplete) {
if (t->kind != TYPEARRAY)
error(&tok.loc, "initializer specified for incomplete type");
} else if (t->kind == TYPEARRAY && t->size == 0) {
error(&tok.loc, "initializer specified for variable length array type");
}
for (;;) {
if (p.cur) {
if (tok.kind == TLBRACK || tok.kind == TPERIOD)
designator(s, &p);
else if (p.sub != p.cur)
advance(&p);
else if (p.cur->type->kind == TYPESTRUCT || p.cur->type->kind == TYPEUNION)
focus(&p);
}
if (consume(TLBRACE)) {
if (consume(TRBRACE)){
if (p.sub->type->incomplete)
error(&tok.loc, "array of unknown size has empty initializer");
goto next;
}
if (p.cur == p.sub) {
if (p.cur->type->prop & PROPSCALAR)
error(&tok.loc, "nested braces around scalar initializer");
assert(p.cur->type->kind == TYPEARRAY);
focus(&p);
}
p.cur = p.sub;
p.cur->iscur = true;
continue;
}
expr = assignexpr(s);
for (;;) {
t = p.sub->type;
switch (t->kind) {
case TYPEARRAY:
if (!expr->decayed || expr->base->kind != EXPRSTRING || !(t->base->prop & PROPINT))
break;
base = t->base;
expr = expr->base;
if (!(base->prop & PROPCHAR && expr->type->base->prop & PROPCHAR) && !typecompatible(base, expr->type->base))
error(&tok.loc, "cannot initialize array with string literal of different width");
if (t->incomplete)
t->size = expr->type->size;
goto add;
case TYPESTRUCT:
case TYPEUNION:
if (typecompatible(expr->type, t))
goto add;
break;
default: /* scalar type */
assert(t->prop & PROPSCALAR);
expr = exprassign(expr, t);
goto add;
}
focus(&p);
}
add:
if (p.sub > p.obj && (p.sub[-1].type->kind == TYPESTRUCT || p.sub[-1].type->kind == TYPEUNION))
bits = p.sub[-1].u.mem->bits;
else
bits = (struct bitfield){0};
initadd(&p, mkinit(p.sub->offset, p.sub->offset + p.sub->type->size, bits, expr));
for (;;) {
if (p.sub->type->incomplete)
p.sub->type->incomplete = false;
next:
if (!p.cur)
return p.init;
if (tok.kind == TCOMMA) {
next();
if (tok.kind != TRBRACE)
break;
} else if (tok.kind != TRBRACE) {
error(&tok.loc, "expected ',' or '}' after initializer");
}
next();
p.sub = p.cur;
do p.cur = p.cur == p.obj ? NULL : p.cur - 1;
while (p.cur && !p.cur->iscur);
}
}
}