Mercurial > ~dholland > hg > tradcpp > index.cgi
annotate macro.c @ 170:2ee7db420643
Fix joerg's expansionitem_eq(). Was wrong previously.
author | David A. Holland |
---|---|
date | Fri, 12 Jun 2015 02:02:38 -0400 |
parents | 80e243f2047d |
children | 5922e6ca6b80 |
rev | line source |
---|---|
30 | 1 /*- |
99
60184aa42604
add 2013 to copyrights where it seems warranted
David A. Holland
parents:
88
diff
changeset
|
2 * Copyright (c) 2010, 2013 The NetBSD Foundation, Inc. |
30 | 3 * All rights reserved. |
4 * | |
5 * This code is derived from software contributed to The NetBSD Foundation | |
6 * by David A. Holland. | |
7 * | |
8 * Redistribution and use in source and binary forms, with or without | |
9 * modification, are permitted provided that the following conditions | |
10 * are met: | |
11 * 1. Redistributions of source code must retain the above copyright | |
12 * notice, this list of conditions and the following disclaimer. | |
13 * 2. Redistributions in binary form must reproduce the above copyright | |
14 * notice, this list of conditions and the following disclaimer in the | |
15 * documentation and/or other materials provided with the distribution. | |
16 * | |
17 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | |
18 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | |
19 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
20 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | |
21 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
27 * POSSIBILITY OF SUCH DAMAGE. | |
28 */ | |
29 | |
33 | 30 #include <stdint.h> |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
31 #include <stdio.h> |
17 | 32 #include <stdlib.h> |
33 #include <string.h> | |
34 | |
35 #include "array.h" | |
36 #include "mode.h" | |
37 #include "place.h" | |
38 #include "macro.h" | |
19 | 39 #include "output.h" |
40 | |
41 struct expansionitem { | |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
42 enum { EI_PARAM, EI_STRING, EI_FILE, EI_LINE } itemtype; |
19 | 43 union { |
44 char *string; | |
45 unsigned param; | |
46 }; | |
47 }; | |
107 | 48 DECLARRAY(expansionitem, static UNUSED); |
47
2e25e55dba6b
Fix inline usage as per the version in dholland-make2.
David A. Holland
parents:
42
diff
changeset
|
49 DEFARRAY(expansionitem, static); |
17 | 50 |
51 struct macro { | |
52 struct place defplace; | |
53 struct place expansionplace; | |
18 | 54 struct stringarray params; |
19 | 55 struct expansionitemarray expansion; |
158
19278e2f885d
Roughly sort by size to reduce padding.
Joerg Sonnenberger <joerg@bec.de>
parents:
145
diff
changeset
|
56 char *name; |
19278e2f885d
Roughly sort by size to reduce padding.
Joerg Sonnenberger <joerg@bec.de>
parents:
145
diff
changeset
|
57 unsigned hash; |
19278e2f885d
Roughly sort by size to reduce padding.
Joerg Sonnenberger <joerg@bec.de>
parents:
145
diff
changeset
|
58 bool hasparams; |
19 | 59 bool inuse; |
17 | 60 }; |
107 | 61 DECLARRAY(macro, static UNUSED); |
47
2e25e55dba6b
Fix inline usage as per the version in dholland-make2.
David A. Holland
parents:
42
diff
changeset
|
62 DEFARRAY(macro, static); |
107 | 63 DECLARRAY(macroarray, static UNUSED); |
47
2e25e55dba6b
Fix inline usage as per the version in dholland-make2.
David A. Holland
parents:
42
diff
changeset
|
64 DEFARRAY(macroarray, static); |
17 | 65 |
66 static struct macroarrayarray macros; | |
67 static unsigned total_macros; | |
68 static unsigned hashmask; | |
69 | |
70 //////////////////////////////////////////////////////////// | |
71 // macro structure ops | |
72 | |
73 static | |
19 | 74 struct expansionitem * |
75 expansionitem_create_string(const char *string) | |
76 { | |
77 struct expansionitem *ei; | |
78 | |
79 ei = domalloc(sizeof(*ei)); | |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
80 ei->itemtype = EI_STRING; |
19 | 81 ei->string = dostrdup(string); |
82 return ei; | |
83 } | |
84 | |
85 static | |
86 struct expansionitem * | |
87 expansionitem_create_stringlen(const char *string, size_t len) | |
88 { | |
89 struct expansionitem *ei; | |
90 | |
91 ei = domalloc(sizeof(*ei)); | |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
92 ei->itemtype = EI_STRING; |
19 | 93 ei->string = dostrndup(string, len); |
94 return ei; | |
95 } | |
96 | |
97 static | |
98 struct expansionitem * | |
99 expansionitem_create_param(unsigned param) | |
100 { | |
101 struct expansionitem *ei; | |
102 | |
103 ei = domalloc(sizeof(*ei)); | |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
104 ei->itemtype = EI_PARAM; |
19 | 105 ei->param = param; |
106 return ei; | |
107 } | |
108 | |
109 static | |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
110 struct expansionitem * |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
111 expansionitem_create_file(void) |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
112 { |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
113 struct expansionitem *ei; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
114 |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
115 ei = domalloc(sizeof(*ei)); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
116 ei->itemtype = EI_FILE; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
117 return ei; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
118 } |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
119 |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
120 static |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
121 struct expansionitem * |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
122 expansionitem_create_line(void) |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
123 { |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
124 struct expansionitem *ei; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
125 |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
126 ei = domalloc(sizeof(*ei)); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
127 ei->itemtype = EI_LINE; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
128 return ei; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
129 } |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
130 |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
131 static |
19 | 132 void |
133 expansionitem_destroy(struct expansionitem *ei) | |
134 { | |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
135 if (ei->itemtype == EI_STRING) { |
39
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
136 dostrfree(ei->string); |
19 | 137 } |
39
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
138 dofree(ei, sizeof(*ei)); |
19 | 139 } |
140 | |
141 static | |
142 bool | |
143 expansionitem_eq(const struct expansionitem *ei1, | |
144 const struct expansionitem *ei2) | |
145 { | |
170
2ee7db420643
Fix joerg's expansionitem_eq(). Was wrong previously.
David A. Holland
parents:
169
diff
changeset
|
146 if (ei1->itemtype != ei2->itemtype) { |
19 | 147 return false; |
148 } | |
170
2ee7db420643
Fix joerg's expansionitem_eq(). Was wrong previously.
David A. Holland
parents:
169
diff
changeset
|
149 switch (ei1->itemtype) { |
2ee7db420643
Fix joerg's expansionitem_eq(). Was wrong previously.
David A. Holland
parents:
169
diff
changeset
|
150 case EI_STRING: |
19 | 151 if (strcmp(ei1->string, ei2->string) != 0) { |
152 return false; | |
153 } | |
170
2ee7db420643
Fix joerg's expansionitem_eq(). Was wrong previously.
David A. Holland
parents:
169
diff
changeset
|
154 break; |
2ee7db420643
Fix joerg's expansionitem_eq(). Was wrong previously.
David A. Holland
parents:
169
diff
changeset
|
155 case EI_PARAM: |
19 | 156 if (ei1->param != ei2->param) { |
157 return false; | |
158 } | |
170
2ee7db420643
Fix joerg's expansionitem_eq(). Was wrong previously.
David A. Holland
parents:
169
diff
changeset
|
159 break; |
2ee7db420643
Fix joerg's expansionitem_eq(). Was wrong previously.
David A. Holland
parents:
169
diff
changeset
|
160 case EI_FILE: |
2ee7db420643
Fix joerg's expansionitem_eq(). Was wrong previously.
David A. Holland
parents:
169
diff
changeset
|
161 case EI_LINE: |
2ee7db420643
Fix joerg's expansionitem_eq(). Was wrong previously.
David A. Holland
parents:
169
diff
changeset
|
162 break; |
19 | 163 } |
164 return true; | |
165 } | |
166 | |
167 static | |
17 | 168 struct macro * |
18 | 169 macro_create(struct place *p1, const char *name, unsigned hash, |
19 | 170 struct place *p2) |
17 | 171 { |
172 struct macro *m; | |
173 | |
174 m = domalloc(sizeof(*m)); | |
175 m->defplace = *p1; | |
176 m->expansionplace = *p2; | |
177 m->hash = hash; | |
178 m->name = dostrdup(name); | |
18 | 179 m->hasparams = false; |
180 stringarray_init(&m->params); | |
19 | 181 expansionitemarray_init(&m->expansion); |
182 m->inuse = false; | |
17 | 183 return m; |
184 } | |
185 | |
19 | 186 DESTROYALL_ARRAY(expansionitem, ); |
187 | |
17 | 188 static |
189 void | |
190 macro_destroy(struct macro *m) | |
191 { | |
19 | 192 expansionitemarray_destroyall(&m->expansion); |
193 expansionitemarray_cleanup(&m->expansion); | |
39
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
194 dostrfree(m->name); |
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
195 dofree(m, sizeof(*m)); |
17 | 196 } |
197 | |
18 | 198 static |
199 bool | |
200 macro_eq(const struct macro *m1, const struct macro *m2) | |
201 { | |
202 unsigned num1, num2, i; | |
19 | 203 struct expansionitem *ei1, *ei2; |
18 | 204 const char *p1, *p2; |
205 | |
206 if (strcmp(m1->name, m2->name) != 0) { | |
207 return false; | |
208 } | |
209 | |
210 if (m1->hasparams != m2->hasparams) { | |
211 return false; | |
212 } | |
213 | |
19 | 214 num1 = expansionitemarray_num(&m1->expansion); |
215 num2 = expansionitemarray_num(&m2->expansion); | |
216 if (num1 != num2) { | |
18 | 217 return false; |
218 } | |
219 | |
19 | 220 for (i=0; i<num1; i++) { |
221 ei1 = expansionitemarray_get(&m1->expansion, i); | |
222 ei2 = expansionitemarray_get(&m2->expansion, i); | |
223 if (!expansionitem_eq(ei1, ei2)) { | |
224 return false; | |
225 } | |
226 } | |
227 | |
18 | 228 num1 = stringarray_num(&m1->params); |
229 num2 = stringarray_num(&m2->params); | |
230 if (num1 != num2) { | |
231 return false; | |
232 } | |
233 | |
234 for (i=0; i<num1; i++) { | |
235 p1 = stringarray_get(&m1->params, i); | |
236 p2 = stringarray_get(&m2->params, i); | |
237 if (strcmp(p1, p2) != 0) { | |
238 return false; | |
239 } | |
240 } | |
241 return true; | |
242 } | |
243 | |
17 | 244 //////////////////////////////////////////////////////////// |
245 // macro table | |
246 | |
247 /* | |
248 * Unless I've screwed up, this is something called Fletcher's Checksum | |
249 * that showed up in Dr. Dobbs in, according to my notes, May 1992. The | |
250 * implementation is new. | |
251 */ | |
252 static | |
253 unsigned | |
19 | 254 hashfunc(const char *s, size_t len) |
17 | 255 { |
256 uint16_t x1, x2, a; | |
19 | 257 size_t i; |
17 | 258 |
259 x1 = (uint16_t) (len >> 16); | |
260 x2 = (uint16_t) (len); | |
261 if (x1==0) { | |
262 x1++; | |
263 } | |
264 if (x2==0) { | |
265 x2++; | |
266 } | |
267 | |
268 for (i=0; i<len; i+=2) { | |
269 if (i==len-1) { | |
270 a = (unsigned char)s[i]; | |
271 /* don't run off the end of the array */ | |
272 } | |
273 else { | |
274 a = (unsigned char)s[i] + | |
275 ((uint16_t)(unsigned char)s[i+1] << 8); | |
276 } | |
277 x1 += a; | |
278 if (x1 < a) { | |
279 x1++; | |
280 } | |
281 x2 += x1; | |
282 if (x2 < x1) { | |
283 x2++; | |
284 } | |
285 } | |
286 | |
287 x1 ^= 0xffff; | |
288 x2 ^= 0xffff; | |
289 return ((uint32_t)x2)*65535U + x1; | |
290 } | |
291 | |
292 static | |
293 void | |
294 macrotable_init(void) | |
295 { | |
296 unsigned i; | |
297 | |
298 macroarrayarray_init(¯os); | |
299 macroarrayarray_setsize(¯os, 4); | |
300 for (i=0; i<4; i++) { | |
301 macroarrayarray_set(¯os, i, NULL); | |
302 } | |
303 total_macros = 0; | |
304 hashmask = 0x3; | |
305 } | |
306 | |
307 DESTROYALL_ARRAY(macro, ); | |
308 | |
309 static | |
310 void | |
311 macrotable_cleanup(void) | |
312 { | |
313 struct macroarray *bucket; | |
314 unsigned numbuckets, i; | |
315 | |
316 numbuckets = macroarrayarray_num(¯os); | |
317 for (i=0; i<numbuckets; i++) { | |
318 bucket = macroarrayarray_get(¯os, i); | |
28 | 319 if (bucket != NULL) { |
320 macroarray_destroyall(bucket); | |
321 macroarray_destroy(bucket); | |
322 } | |
17 | 323 } |
324 macroarrayarray_setsize(¯os, 0); | |
325 macroarrayarray_cleanup(¯os); | |
326 } | |
327 | |
328 static | |
329 struct macro * | |
19 | 330 macrotable_findlen(const char *name, size_t len, bool remove) |
17 | 331 { |
332 unsigned hash; | |
333 struct macroarray *bucket; | |
334 struct macro *m, *m2; | |
335 unsigned i, num; | |
19 | 336 size_t mlen; |
17 | 337 |
19 | 338 hash = hashfunc(name, len); |
17 | 339 bucket = macroarrayarray_get(¯os, hash & hashmask); |
340 if (bucket == NULL) { | |
341 return NULL; | |
342 } | |
343 num = macroarray_num(bucket); | |
344 for (i=0; i<num; i++) { | |
345 m = macroarray_get(bucket, i); | |
346 if (hash != m->hash) { | |
347 continue; | |
348 } | |
19 | 349 mlen = strlen(m->name); |
350 if (len == mlen && !memcmp(name, m->name, len)) { | |
17 | 351 if (remove) { |
352 if (i < num-1) { | |
353 m2 = macroarray_get(bucket, num-1); | |
354 macroarray_set(bucket, i, m2); | |
355 } | |
356 macroarray_setsize(bucket, num-1); | |
357 total_macros--; | |
358 } | |
359 return m; | |
360 } | |
361 } | |
362 return NULL; | |
363 } | |
364 | |
365 static | |
19 | 366 struct macro * |
367 macrotable_find(const char *name, bool remove) | |
368 { | |
369 return macrotable_findlen(name, strlen(name), remove); | |
370 } | |
371 | |
372 static | |
17 | 373 void |
374 macrotable_rehash(void) | |
375 { | |
376 struct macroarray *newbucket, *oldbucket; | |
377 struct macro *m; | |
378 unsigned newmask, tossbit; | |
379 unsigned numbuckets, i; | |
380 unsigned oldnum, j, k; | |
381 | |
382 numbuckets = macroarrayarray_num(¯os); | |
383 macroarrayarray_setsize(¯os, numbuckets*2); | |
384 | |
385 assert(hashmask == numbuckets - 1); | |
386 newmask = (hashmask << 1) | 1U; | |
74 | 387 tossbit = newmask & ~hashmask; |
17 | 388 hashmask = newmask; |
389 | |
390 for (i=0; i<numbuckets; i++) { | |
391 newbucket = NULL; | |
392 oldbucket = macroarrayarray_get(¯os, i); | |
74 | 393 if (oldbucket == NULL) { |
394 macroarrayarray_set(¯os, numbuckets + i, NULL); | |
395 continue; | |
396 } | |
17 | 397 oldnum = macroarray_num(oldbucket); |
398 for (j=0; j<oldnum; j++) { | |
399 m = macroarray_get(oldbucket, j); | |
400 if (m->hash & tossbit) { | |
401 if (newbucket == NULL) { | |
402 newbucket = macroarray_create(); | |
403 } | |
404 macroarray_set(oldbucket, j, NULL); | |
405 macroarray_add(newbucket, m, NULL); | |
406 } | |
407 } | |
408 for (j=k=0; j<oldnum; j++) { | |
409 m = macroarray_get(oldbucket, j); | |
74 | 410 if (m != NULL) { |
411 if (k < j) { | |
412 macroarray_set(oldbucket, k, m); | |
413 } | |
414 k++; | |
17 | 415 } |
416 } | |
417 macroarray_setsize(oldbucket, k); | |
418 macroarrayarray_set(¯os, numbuckets + i, newbucket); | |
419 } | |
420 } | |
421 | |
422 static | |
423 void | |
424 macrotable_add(struct macro *m) | |
425 { | |
426 unsigned hash; | |
427 struct macroarray *bucket; | |
428 unsigned numbuckets; | |
429 | |
430 numbuckets = macroarrayarray_num(¯os); | |
431 if (total_macros > 0 && total_macros / numbuckets > 9) { | |
432 macrotable_rehash(); | |
433 } | |
434 | |
19 | 435 hash = hashfunc(m->name, strlen(m->name)); |
17 | 436 bucket = macroarrayarray_get(¯os, hash & hashmask); |
437 if (bucket == NULL) { | |
438 bucket = macroarray_create(); | |
439 macroarrayarray_set(¯os, hash & hashmask, bucket); | |
440 } | |
441 macroarray_add(bucket, m, NULL); | |
442 total_macros++; | |
443 } | |
444 | |
445 //////////////////////////////////////////////////////////// | |
446 // external macro definition interface | |
447 | |
18 | 448 static |
449 struct macro * | |
450 macro_define_common_start(struct place *p1, const char *macro, | |
19 | 451 struct place *p2) |
17 | 452 { |
453 struct macro *m; | |
19 | 454 unsigned hash; |
17 | 455 |
18 | 456 if (!is_identifier(macro)) { |
457 complain(p1, "Invalid macro name %s", macro); | |
458 complain_fail(); | |
459 } | |
460 | |
19 | 461 hash = hashfunc(macro, strlen(macro)); |
462 m = macro_create(p1, macro, hash, p2); | |
18 | 463 return m; |
464 } | |
465 | |
466 static | |
467 void | |
468 macro_define_common_end(struct macro *m) | |
469 { | |
470 struct macro *oldm; | |
471 bool ok; | |
472 | |
473 oldm = macrotable_find(m->name, false); | |
474 if (oldm != NULL) { | |
475 ok = macro_eq(m, oldm); | |
476 if (ok) { | |
84
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
477 /* in traditional cpp this is silent */ |
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
478 //complain(&m->defplace, |
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
479 // "Warning: redefinition of %s", m->name); |
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
480 //complain(&oldm->defplace, |
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
481 // "Previous definition was here"); |
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
482 //if (mode.werror) { |
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
483 // complain_fail(); |
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
484 //} |
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
485 } else { |
18 | 486 complain(&m->defplace, |
84
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
487 "Warning: non-identical redefinition of %s", |
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
488 m->name); |
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
489 complain(&oldm->defplace, |
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
490 "Previous definition was here"); |
7e4723d34248
Complain only about non-identical redefinitions of macros.
David A. Holland
parents:
74
diff
changeset
|
491 /* in traditional cpp this is not fatal */ |
17 | 492 if (mode.werror) { |
493 complain_fail(); | |
494 } | |
495 } | |
18 | 496 macro_destroy(m); |
17 | 497 return; |
498 } | |
18 | 499 macrotable_add(m); |
500 } | |
17 | 501 |
18 | 502 static |
503 void | |
504 macro_parse_parameters(struct macro *m, struct place *p, const char *params) | |
505 { | |
506 size_t len; | |
507 const char *s; | |
508 char *param; | |
509 | |
510 while (params != NULL) { | |
511 len = strspn(params, ws); | |
512 params += len; | |
513 p->column += len; | |
514 s = strchr(params, ','); | |
515 if (s) { | |
516 len = s-params; | |
517 param = dostrndup(params, len); | |
518 s++; | |
519 } else { | |
520 len = strlen(params); | |
521 param = dostrndup(params, len); | |
522 } | |
523 notrailingws(param, strlen(param)); | |
524 if (!is_identifier(param)) { | |
525 complain(p, "Invalid macro parameter name %s", param); | |
526 complain_fail(); | |
527 } else { | |
528 stringarray_add(&m->params, param, NULL); | |
529 } | |
530 params = s; | |
531 p->column += len; | |
532 } | |
533 } | |
534 | |
19 | 535 static |
536 bool | |
537 isparam(struct macro *m, const char *name, size_t len, unsigned *num_ret) | |
538 { | |
539 unsigned num, i; | |
540 const char *param; | |
541 | |
542 num = stringarray_num(&m->params); | |
543 for (i=0; i<num; i++) { | |
544 param = stringarray_get(&m->params, i); | |
27 | 545 if (strlen(param) == len && !memcmp(name, param, len)) { |
19 | 546 *num_ret = i; |
547 return true; | |
548 } | |
549 } | |
550 return false; | |
551 } | |
552 | |
553 static | |
554 void | |
555 macro_parse_expansion(struct macro *m, const char *buf) | |
556 { | |
557 size_t blockstart, wordstart, pos; | |
558 struct expansionitem *ei; | |
559 unsigned param; | |
560 | |
561 pos = blockstart = 0; | |
562 while (buf[pos] != '\0') { | |
563 pos += strspn(buf+pos, ws); | |
564 if (strchr(alnum, buf[pos])) { | |
565 wordstart = pos; | |
566 pos += strspn(buf+pos, alnum); | |
567 if (isparam(m, buf+wordstart, pos-wordstart, ¶m)) { | |
144 | 568 if (wordstart > blockstart) { |
19 | 569 ei = expansionitem_create_stringlen( |
570 buf + blockstart, | |
27 | 571 wordstart - blockstart); |
19 | 572 expansionitemarray_add(&m->expansion, |
573 ei, NULL); | |
574 } | |
575 ei = expansionitem_create_param(param); | |
576 expansionitemarray_add(&m->expansion, ei,NULL); | |
577 blockstart = pos; | |
578 continue; | |
579 } | |
580 continue; | |
581 } | |
582 pos++; | |
583 } | |
584 if (pos > blockstart) { | |
585 ei = expansionitem_create_stringlen(buf + blockstart, | |
25 | 586 pos - blockstart); |
19 | 587 expansionitemarray_add(&m->expansion, ei, NULL); |
588 } | |
589 } | |
590 | |
18 | 591 void |
592 macro_define_plain(struct place *p1, const char *macro, | |
593 struct place *p2, const char *expansion) | |
594 { | |
595 struct macro *m; | |
19 | 596 struct expansionitem *ei; |
18 | 597 |
19 | 598 m = macro_define_common_start(p1, macro, p2); |
599 ei = expansionitem_create_string(expansion); | |
600 expansionitemarray_add(&m->expansion, ei, NULL); | |
18 | 601 macro_define_common_end(m); |
602 } | |
603 | |
604 void | |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
605 macro_define_file(struct place *p) |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
606 { |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
607 struct macro *m; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
608 struct expansionitem *ei; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
609 |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
610 m = macro_define_common_start(p, "__FILE__", p); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
611 ei = expansionitem_create_file(); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
612 expansionitemarray_add(&m->expansion, ei, NULL); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
613 macro_define_common_end(m); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
614 } |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
615 |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
616 void |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
617 macro_define_line(struct place *p) |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
618 { |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
619 struct macro *m; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
620 struct expansionitem *ei; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
621 |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
622 m = macro_define_common_start(p, "__LINE__", p); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
623 ei = expansionitem_create_line(); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
624 expansionitemarray_add(&m->expansion, ei, NULL); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
625 macro_define_common_end(m); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
626 } |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
627 |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
628 void |
18 | 629 macro_define_params(struct place *p1, const char *macro, |
630 struct place *p2, const char *params, | |
631 struct place *p3, const char *expansion) | |
632 { | |
633 struct macro *m; | |
634 | |
19 | 635 m = macro_define_common_start(p1, macro, p3); |
25 | 636 m->hasparams = true; |
18 | 637 macro_parse_parameters(m, p2, params); |
19 | 638 macro_parse_expansion(m, expansion); |
18 | 639 macro_define_common_end(m); |
17 | 640 } |
641 | |
642 void | |
643 macro_undef(const char *macro) | |
644 { | |
645 struct macro *m; | |
646 | |
647 m = macrotable_find(macro, true); | |
648 if (m) { | |
649 macro_destroy(m); | |
650 } | |
651 } | |
652 | |
653 bool | |
654 macro_isdefined(const char *macro) | |
655 { | |
656 struct macro *m; | |
657 | |
658 m = macrotable_find(macro, false); | |
659 return m != NULL; | |
660 } | |
661 | |
662 //////////////////////////////////////////////////////////// | |
663 // macro expansion | |
664 | |
19 | 665 struct expstate { |
666 bool honordefined; | |
667 enum { ES_NORMAL, ES_WANTLPAREN, ES_NOARG, ES_HAVEARG } state; | |
668 struct macro *curmacro; | |
669 struct stringarray args; | |
670 unsigned argparens; | |
671 | |
672 bool tobuf; | |
673 char *buf; | |
674 size_t bufpos, bufmax; | |
675 }; | |
676 | |
677 static struct expstate mainstate; | |
678 | |
679 static void doexpand(struct expstate *es, struct place *p, | |
680 char *buf, size_t len); | |
681 | |
682 static | |
683 void | |
684 expstate_init(struct expstate *es, bool tobuf, bool honordefined) | |
685 { | |
686 es->honordefined = honordefined; | |
687 es->state = ES_NORMAL; | |
688 es->curmacro = NULL; | |
689 stringarray_init(&es->args); | |
690 es->argparens = 0; | |
691 es->tobuf = tobuf; | |
692 es->buf = NULL; | |
693 es->bufpos = 0; | |
694 es->bufmax = 0; | |
695 } | |
696 | |
697 static | |
698 void | |
699 expstate_cleanup(struct expstate *es) | |
700 { | |
701 assert(es->state == ES_NORMAL); | |
702 stringarray_cleanup(&es->args); | |
703 if (es->buf) { | |
39
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
704 dofree(es->buf, es->bufmax); |
19 | 705 } |
706 } | |
707 | |
708 static | |
709 void | |
710 expstate_destroyargs(struct expstate *es) | |
711 { | |
712 unsigned i, num; | |
713 | |
714 num = stringarray_num(&es->args); | |
715 for (i=0; i<num; i++) { | |
39
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
716 dostrfree(stringarray_get(&es->args, i)); |
19 | 717 } |
718 stringarray_setsize(&es->args, 0); | |
719 } | |
720 | |
721 static | |
722 void | |
21 | 723 expand_send(struct expstate *es, struct place *p, const char *buf, size_t len) |
19 | 724 { |
39
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
725 size_t oldmax; |
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
726 |
19 | 727 if (es->tobuf) { |
38
b156910b59b2
Wrap free() in dofree() to allow instrumenting it for debugging.
David A. Holland
parents:
33
diff
changeset
|
728 assert(es->bufpos <= es->bufmax); |
19 | 729 if (es->bufpos + len > es->bufmax) { |
39
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
730 oldmax = es->bufmax; |
19 | 731 if (es->bufmax == 0) { |
732 es->bufmax = 64; | |
733 } | |
734 while (es->bufpos + len > es->bufmax) { | |
735 es->bufmax *= 2; | |
736 } | |
39
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
737 es->buf = dorealloc(es->buf, oldmax, es->bufmax); |
19 | 738 } |
739 memcpy(es->buf + es->bufpos, buf, len); | |
740 es->bufpos += len; | |
38
b156910b59b2
Wrap free() in dofree() to allow instrumenting it for debugging.
David A. Holland
parents:
33
diff
changeset
|
741 assert(es->bufpos <= es->bufmax); |
19 | 742 } else { |
21 | 743 output(p, buf, len); |
19 | 744 } |
745 } | |
746 | |
747 static | |
748 void | |
21 | 749 expand_send_eof(struct expstate *es, struct place *p) |
19 | 750 { |
751 if (es->tobuf) { | |
21 | 752 expand_send(es, p, "", 1); |
19 | 753 es->bufpos--; |
754 } else { | |
755 output_eof(); | |
756 } | |
757 } | |
758 | |
759 static | |
760 void | |
161 | 761 expand_newarg(struct expstate *es, const char *buf, size_t len) |
19 | 762 { |
763 char *text; | |
764 | |
765 text = dostrndup(buf, len); | |
766 stringarray_add(&es->args, text, NULL); | |
767 } | |
768 | |
769 static | |
770 void | |
161 | 771 expand_appendarg(struct expstate *es, const char *buf, size_t len) |
19 | 772 { |
773 unsigned num; | |
774 char *text; | |
775 size_t oldlen; | |
776 | |
777 num = stringarray_num(&es->args); | |
778 assert(num > 0); | |
779 | |
780 text = stringarray_get(&es->args, num - 1); | |
781 oldlen = strlen(text); | |
39
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
782 text = dorealloc(text, oldlen + 1, oldlen + len + 1); |
19 | 783 memcpy(text + oldlen, buf, len); |
784 text[oldlen+len] = '\0'; | |
785 stringarray_set(&es->args, num - 1, text); | |
786 } | |
787 | |
788 static | |
789 char * | |
28 | 790 expand_substitute(struct place *p, struct expstate *es) |
19 | 791 { |
792 struct expansionitem *ei; | |
793 unsigned i, num; | |
794 size_t len; | |
795 char *arg; | |
796 char *ret; | |
28 | 797 unsigned numargs, numparams; |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
798 char numbuf[64]; |
28 | 799 |
800 numargs = stringarray_num(&es->args); | |
801 numparams = stringarray_num(&es->curmacro->params); | |
802 | |
803 if (numargs == 0 && numparams == 1) { | |
804 /* no arguments <=> one empty argument */ | |
805 stringarray_add(&es->args, dostrdup(""), NULL); | |
806 numargs++; | |
807 } | |
808 if (numargs != numparams) { | |
809 complain(p, "Wrong number of arguments for macro %s; " | |
810 "found %u, expected %u", | |
811 es->curmacro->name, numargs, numparams); | |
812 complain_fail(); | |
813 while (numargs < numparams) { | |
814 stringarray_add(&es->args, dostrdup(""), NULL); | |
815 numargs++; | |
816 } | |
817 } | |
19 | 818 |
819 len = 0; | |
820 num = expansionitemarray_num(&es->curmacro->expansion); | |
821 for (i=0; i<num; i++) { | |
822 ei = expansionitemarray_get(&es->curmacro->expansion, i); | |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
823 switch (ei->itemtype) { |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
824 case EI_STRING: |
19 | 825 len += strlen(ei->string); |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
826 break; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
827 case EI_PARAM: |
19 | 828 arg = stringarray_get(&es->args, ei->param); |
829 len += strlen(arg); | |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
830 break; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
831 case EI_FILE: |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
832 len += strlen(place_getname(p)) + 2; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
833 break; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
834 case EI_LINE: |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
835 len += snprintf(numbuf, sizeof(numbuf), "%u", p->line); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
836 break; |
19 | 837 } |
838 } | |
839 | |
840 ret = domalloc(len+1); | |
841 *ret = '\0'; | |
842 for (i=0; i<num; i++) { | |
843 ei = expansionitemarray_get(&es->curmacro->expansion, i); | |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
844 switch (ei->itemtype) { |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
845 case EI_STRING: |
19 | 846 strcat(ret, ei->string); |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
847 break; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
848 case EI_PARAM: |
19 | 849 arg = stringarray_get(&es->args, ei->param); |
850 strcat(ret, arg); | |
159
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
851 break; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
852 case EI_FILE: |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
853 strcat(ret, "\""); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
854 strcat(ret, place_getname(p)); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
855 strcat(ret, "\""); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
856 break; |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
857 case EI_LINE: |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
858 snprintf(numbuf, sizeof(numbuf), "%u", p->line); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
859 strcat(ret, numbuf); |
8cef6d7227a8
Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
158
diff
changeset
|
860 break; |
19 | 861 } |
862 } | |
863 | |
864 return ret; | |
865 } | |
866 | |
867 static | |
868 void | |
869 expand_domacro(struct expstate *es, struct place *p) | |
870 { | |
871 struct macro *m; | |
872 char *newbuf, *newbuf2; | |
873 | |
874 if (es->curmacro == NULL) { | |
875 /* defined() */ | |
876 if (stringarray_num(&es->args) != 1) { | |
877 complain(p, "Too many arguments for defined()"); | |
878 complain_fail(); | |
21 | 879 expand_send(es, p, "0", 1); |
19 | 880 return; |
881 } | |
882 m = macrotable_find(stringarray_get(&es->args, 0), false); | |
21 | 883 expand_send(es, p, (m != NULL) ? "1" : "0", 1); |
25 | 884 expstate_destroyargs(es); |
19 | 885 return; |
886 } | |
887 | |
888 assert(es->curmacro->inuse == false); | |
889 es->curmacro->inuse = true; | |
890 | |
28 | 891 newbuf = expand_substitute(p, es); |
19 | 892 newbuf2 = macroexpand(p, newbuf, strlen(newbuf), false); |
39
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
893 dostrfree(newbuf); |
25 | 894 expstate_destroyargs(es); |
19 | 895 doexpand(es, p, newbuf2, strlen(newbuf2)); |
39
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
896 dostrfree(newbuf2); |
19 | 897 |
898 es->curmacro->inuse = false; | |
899 } | |
900 | |
87
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
901 /* |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
902 * The traditional behavior if a function-like macro appears without |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
903 * arguments is to pretend it isn't a macro; that is, just emit its |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
904 * name. |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
905 */ |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
906 static |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
907 void |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
908 expand_missingargs(struct expstate *es, struct place *p, bool needspace) |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
909 { |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
910 if (es->curmacro == NULL) { |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
911 /* defined */ |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
912 expand_send(es, p, "defined", 7); |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
913 return; |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
914 } |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
915 expand_send(es, p, es->curmacro->name, strlen(es->curmacro->name)); |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
916 /* send a space in case we ate whitespace after the macro name */ |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
917 if (needspace) { |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
918 expand_send(es, p, " ", 1); |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
919 } |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
920 } |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
921 |
19 | 922 static |
923 void | |
161 | 924 expand_got_ws(struct expstate *es, struct place *p, const char *buf, size_t len) |
19 | 925 { |
926 switch (es->state) { | |
927 case ES_NORMAL: | |
21 | 928 expand_send(es, p, buf, len); |
19 | 929 break; |
930 case ES_WANTLPAREN: | |
152 | 931 /* XXX notyet */ |
932 //expand_send(es, p, buf, len); | |
19 | 933 break; |
934 case ES_NOARG: | |
118
c13f36775fe8
Preserve leading whitespace in macro arguments.
David A. Holland
parents:
117
diff
changeset
|
935 expand_newarg(es, buf, len); |
c13f36775fe8
Preserve leading whitespace in macro arguments.
David A. Holland
parents:
117
diff
changeset
|
936 es->state = ES_HAVEARG; |
19 | 937 break; |
938 case ES_HAVEARG: | |
939 expand_appendarg(es, buf, len); | |
940 break; | |
941 } | |
942 } | |
943 | |
944 static | |
945 void | |
946 expand_got_word(struct expstate *es, struct place *p, char *buf, size_t len) | |
947 { | |
948 struct macro *m; | |
17 | 949 |
19 | 950 switch (es->state) { |
951 case ES_NORMAL: | |
952 if (es->honordefined && | |
953 len == 7 && !memcmp(buf, "defined", 7)) { | |
954 es->curmacro = NULL; | |
955 es->state = ES_WANTLPAREN; | |
956 break; | |
957 } | |
958 m = macrotable_findlen(buf, len, false); | |
42
ad7763329eba
Don't crash if a macro tries to expand itself recursively.
David A. Holland
parents:
40
diff
changeset
|
959 if (m == NULL || m->inuse) { |
21 | 960 expand_send(es, p, buf, len); |
19 | 961 } else if (!m->hasparams) { |
155
e6eb15635a48
Don't shortcut macro expansion of non-parameter macros.
David A. Holland
parents:
152
diff
changeset
|
962 es->curmacro = m; |
e6eb15635a48
Don't shortcut macro expansion of non-parameter macros.
David A. Holland
parents:
152
diff
changeset
|
963 expand_domacro(es, p); |
e6eb15635a48
Don't shortcut macro expansion of non-parameter macros.
David A. Holland
parents:
152
diff
changeset
|
964 es->curmacro = NULL; |
19 | 965 } else { |
966 es->curmacro = m; | |
967 es->state = ES_WANTLPAREN; | |
968 } | |
969 break; | |
970 case ES_WANTLPAREN: | |
971 if (es->curmacro != NULL) { | |
87
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
972 expand_missingargs(es, p, true); |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
973 es->state = ES_NORMAL; |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
974 /* try again */ |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
975 expand_got_word(es, p, buf, len); |
19 | 976 } else { |
977 /* "defined foo" means "defined(foo)" */ | |
978 expand_newarg(es, buf, len); | |
979 es->state = ES_NORMAL; | |
980 expand_domacro(es, p); | |
981 } | |
982 break; | |
983 case ES_NOARG: | |
984 expand_newarg(es, buf, len); | |
985 es->state = ES_HAVEARG; | |
986 break; | |
987 case ES_HAVEARG: | |
988 expand_appendarg(es, buf, len); | |
989 break; | |
990 } | |
991 } | |
992 | |
993 static | |
994 void | |
995 expand_got_lparen(struct expstate *es, struct place *p, char *buf, size_t len) | |
996 { | |
997 switch (es->state) { | |
998 case ES_NORMAL: | |
21 | 999 expand_send(es, p, buf, len); |
19 | 1000 break; |
1001 case ES_WANTLPAREN: | |
1002 es->state = ES_NOARG; | |
1003 break; | |
1004 case ES_NOARG: | |
1005 expand_newarg(es, buf, len); | |
1006 es->state = ES_HAVEARG; | |
1007 es->argparens++; | |
1008 break; | |
1009 case ES_HAVEARG: | |
1010 expand_appendarg(es, buf, len); | |
1011 es->argparens++; | |
1012 break; | |
1013 } | |
1014 } | |
1015 | |
1016 static | |
1017 void | |
1018 expand_got_rparen(struct expstate *es, struct place *p, char *buf, size_t len) | |
1019 { | |
1020 switch (es->state) { | |
1021 case ES_NORMAL: | |
21 | 1022 expand_send(es, p, buf, len); |
19 | 1023 break; |
1024 case ES_WANTLPAREN: | |
87
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1025 expand_missingargs(es, p, false); |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1026 es->state = ES_NORMAL; |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1027 /* try again */ |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1028 expand_got_rparen(es, p, buf, len); |
19 | 1029 break; |
1030 case ES_NOARG: | |
1031 assert(es->argparens == 0); | |
117
c46959e2d9ef
Handle empty arguments properly when there's more than one argument.
David A. Holland
parents:
107
diff
changeset
|
1032 if (stringarray_num(&es->args) > 0) { |
c46959e2d9ef
Handle empty arguments properly when there's more than one argument.
David A. Holland
parents:
107
diff
changeset
|
1033 /* we are after a comma; enter an empty argument */ |
c46959e2d9ef
Handle empty arguments properly when there's more than one argument.
David A. Holland
parents:
107
diff
changeset
|
1034 expand_newarg(es, buf, 0); |
c46959e2d9ef
Handle empty arguments properly when there's more than one argument.
David A. Holland
parents:
107
diff
changeset
|
1035 } |
19 | 1036 es->state = ES_NORMAL; |
1037 expand_domacro(es, p); | |
1038 break; | |
1039 case ES_HAVEARG: | |
1040 if (es->argparens > 0) { | |
1041 es->argparens--; | |
1042 expand_appendarg(es, buf, len); | |
1043 } else { | |
1044 es->state = ES_NORMAL; | |
1045 expand_domacro(es, p); | |
1046 } | |
1047 break; | |
1048 } | |
1049 } | |
1050 | |
1051 static | |
1052 void | |
1053 expand_got_comma(struct expstate *es, struct place *p, char *buf, size_t len) | |
1054 { | |
1055 switch (es->state) { | |
1056 case ES_NORMAL: | |
21 | 1057 expand_send(es, p, buf, len); |
19 | 1058 break; |
1059 case ES_WANTLPAREN: | |
87
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1060 expand_missingargs(es, p, false); |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1061 es->state = ES_NORMAL; |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1062 /* try again */ |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1063 expand_got_comma(es, p, buf, len); |
19 | 1064 break; |
1065 case ES_NOARG: | |
1066 assert(es->argparens == 0); | |
1067 expand_newarg(es, buf, 0); | |
1068 break; | |
1069 case ES_HAVEARG: | |
1070 if (es->argparens > 0) { | |
1071 expand_appendarg(es, buf, len); | |
1072 } else { | |
1073 es->state = ES_NOARG; | |
1074 } | |
1075 break; | |
1076 } | |
1077 } | |
1078 | |
1079 static | |
1080 void | |
1081 expand_got_other(struct expstate *es, struct place *p, char *buf, size_t len) | |
1082 { | |
1083 switch (es->state) { | |
1084 case ES_NORMAL: | |
21 | 1085 expand_send(es, p, buf, len); |
19 | 1086 break; |
1087 case ES_WANTLPAREN: | |
87
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1088 expand_missingargs(es, p, false); |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1089 es->state = ES_NORMAL; |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1090 /* try again */ |
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1091 expand_got_other(es, p, buf, len); |
19 | 1092 break; |
1093 case ES_NOARG: | |
1094 expand_newarg(es, buf, len); | |
1095 es->state = ES_HAVEARG; | |
1096 break; | |
1097 case ES_HAVEARG: | |
1098 expand_appendarg(es, buf, len); | |
1099 break; | |
1100 } | |
1101 } | |
1102 | |
1103 static | |
1104 void | |
1105 expand_got_eof(struct expstate *es, struct place *p) | |
1106 { | |
1107 switch (es->state) { | |
1108 case ES_NORMAL: | |
1109 break; | |
1110 case ES_WANTLPAREN: | |
87
2b153df78214
Don't bomb out if a function-like macro is given no arguments.
David A. Holland
parents:
85
diff
changeset
|
1111 expand_missingargs(es, p, false); |
19 | 1112 break; |
1113 case ES_NOARG: | |
1114 case ES_HAVEARG: | |
1115 if (es->curmacro) { | |
1116 complain(p, "Unclosed argument list for macro %s", | |
1117 es->curmacro->name); | |
1118 } else { | |
1119 complain(p, "Unclosed argument list for defined()"); | |
1120 } | |
1121 complain_fail(); | |
1122 expstate_destroyargs(es); | |
1123 break; | |
1124 } | |
88 | 1125 expand_send_eof(es, p); |
19 | 1126 es->state = ES_NORMAL; |
1127 es->curmacro = NULL; | |
1128 es->argparens = 0; | |
1129 } | |
1130 | |
1131 static | |
1132 void | |
1133 doexpand(struct expstate *es, struct place *p, char *buf, size_t len) | |
1134 { | |
85 | 1135 char *s; |
19 | 1136 size_t x; |
85 | 1137 bool inquote = false; |
128
1cda505ddc78
Don't expand macros within character constants.
David A. Holland
parents:
118
diff
changeset
|
1138 char quote = '\0'; |
19 | 1139 |
1140 while (len > 0) { | |
1141 x = strspn(buf, ws); | |
28 | 1142 if (x > len) { |
1143 /* XXX gross, need strnspn */ | |
1144 x = len; | |
1145 } | |
1146 | |
19 | 1147 if (x > 0) { |
1148 expand_got_ws(es, p, buf, x); | |
1149 buf += x; | |
1150 len -= x; | |
28 | 1151 continue; |
19 | 1152 } |
1153 | |
1154 x = strspn(buf, alnum); | |
28 | 1155 if (x > len) { |
1156 /* XXX gross, need strnspn */ | |
1157 x = len; | |
1158 } | |
1159 | |
145 | 1160 if (!inquote && x > 0) { |
19 | 1161 expand_got_word(es, p, buf, x); |
1162 buf += x; | |
1163 len -= x; | |
1164 continue; | |
1165 } | |
1166 | |
85 | 1167 if (!inquote && len > 1 && buf[0] == '/' && buf[1] == '*') { |
1168 s = strstr(buf, "*/"); | |
1169 if (s) { | |
1170 x = s - buf; | |
1171 } else { | |
1172 x = len; | |
1173 } | |
1174 expand_got_ws(es, p, buf, x); | |
1175 buf += x; | |
1176 len -= x; | |
1177 continue; | |
1178 } | |
1179 | |
129
2e1496dd96c4
Don't recognize macro argument parens or commas within quotes.
David A. Holland
parents:
128
diff
changeset
|
1180 if (!inquote && buf[0] == '(') { |
19 | 1181 expand_got_lparen(es, p, buf, 1); |
1182 buf++; | |
1183 len--; | |
1184 continue; | |
1185 } | |
1186 | |
129
2e1496dd96c4
Don't recognize macro argument parens or commas within quotes.
David A. Holland
parents:
128
diff
changeset
|
1187 if (!inquote && buf[0] == ')') { |
19 | 1188 expand_got_rparen(es, p, buf, 1); |
1189 buf++; | |
1190 len--; | |
1191 continue; | |
1192 } | |
1193 | |
129
2e1496dd96c4
Don't recognize macro argument parens or commas within quotes.
David A. Holland
parents:
128
diff
changeset
|
1194 if (!inquote && buf[0] == ',') { |
19 | 1195 expand_got_comma(es, p, buf, 1); |
1196 buf++; | |
1197 len--; | |
1198 continue; | |
1199 } | |
1200 | |
128
1cda505ddc78
Don't expand macros within character constants.
David A. Holland
parents:
118
diff
changeset
|
1201 if (len > 1 && buf[0] == '\\' && |
1cda505ddc78
Don't expand macros within character constants.
David A. Holland
parents:
118
diff
changeset
|
1202 (buf[1] == '"' || buf[1] == '\'')) { |
85 | 1203 expand_got_other(es, p, buf, 2); |
1204 buf += 2; | |
1205 len -= 2; | |
1206 continue; | |
1207 } | |
128
1cda505ddc78
Don't expand macros within character constants.
David A. Holland
parents:
118
diff
changeset
|
1208 if (!inquote && (buf[0] == '"' || buf[0] == '\'')) { |
1cda505ddc78
Don't expand macros within character constants.
David A. Holland
parents:
118
diff
changeset
|
1209 inquote = true; |
1cda505ddc78
Don't expand macros within character constants.
David A. Holland
parents:
118
diff
changeset
|
1210 quote = buf[0]; |
1cda505ddc78
Don't expand macros within character constants.
David A. Holland
parents:
118
diff
changeset
|
1211 } else if (inquote && buf[0] == quote) { |
1cda505ddc78
Don't expand macros within character constants.
David A. Holland
parents:
118
diff
changeset
|
1212 inquote = false; |
85 | 1213 } |
1214 | |
19 | 1215 expand_got_other(es, p, buf, 1); |
1216 buf++; | |
1217 len--; | |
1218 } | |
1219 } | |
1220 | |
1221 char * | |
1222 macroexpand(struct place *p, char *buf, size_t len, bool honordefined) | |
1223 { | |
1224 struct expstate es; | |
1225 char *ret; | |
1226 | |
1227 expstate_init(&es, true, honordefined); | |
1228 doexpand(&es, p, buf, len); | |
1229 expand_got_eof(&es, p); | |
40 | 1230 |
1231 /* trim to fit, so the malloc debugging won't complain */ | |
1232 es.buf = dorealloc(es.buf, es.bufmax, strlen(es.buf) + 1); | |
1233 | |
19 | 1234 ret = es.buf; |
1235 es.buf = NULL; | |
39
337110e7240a
Pass the size to free; it makes debug checking easier.
David A. Holland
parents:
38
diff
changeset
|
1236 es.bufpos = es.bufmax = 0; |
40 | 1237 |
19 | 1238 expstate_cleanup(&es); |
1239 | |
1240 return ret; | |
1241 } | |
1242 | |
1243 void | |
1244 macro_sendline(struct place *p, char *buf, size_t len) | |
1245 { | |
1246 doexpand(&mainstate, p, buf, len); | |
162
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
161
diff
changeset
|
1247 switch (mainstate.state) { |
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
161
diff
changeset
|
1248 case ES_NORMAL: |
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
161
diff
changeset
|
1249 output(p, "\n", 1); |
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
161
diff
changeset
|
1250 break; |
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
161
diff
changeset
|
1251 case ES_WANTLPAREN: |
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
161
diff
changeset
|
1252 case ES_NOARG: |
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
161
diff
changeset
|
1253 case ES_HAVEARG: |
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
161
diff
changeset
|
1254 expand_got_ws(&mainstate, p, " ", 1); |
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
161
diff
changeset
|
1255 break; |
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
161
diff
changeset
|
1256 } |
19 | 1257 } |
1258 | |
1259 void | |
1260 macro_sendeof(struct place *p) | |
1261 { | |
1262 expand_got_eof(&mainstate, p); | |
1263 } | |
17 | 1264 |
1265 //////////////////////////////////////////////////////////// | |
1266 // module initialization | |
1267 | |
1268 void | |
1269 macros_init(void) | |
1270 { | |
1271 macrotable_init(); | |
19 | 1272 expstate_init(&mainstate, false, false); |
17 | 1273 } |
1274 | |
1275 void | |
1276 macros_cleanup(void) | |
1277 { | |
19 | 1278 expstate_cleanup(&mainstate); |
17 | 1279 macrotable_cleanup(); |
1280 } |