glcpp: Factor out a tiny bit of repeated code.
[mesa.git] / src / glsl / glcpp / glcpp-parse.y
1 %{
2 /*
3 * Copyright © 2010 Intel Corporation
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <assert.h>
29 #include <inttypes.h>
30
31 #include "glcpp.h"
32 #include "main/core.h" /* for struct gl_extensions */
33 #include "main/mtypes.h" /* for gl_api enum */
34
35 static void
36 yyerror (YYLTYPE *locp, glcpp_parser_t *parser, const char *error);
37
38 static void
39 _define_object_macro (glcpp_parser_t *parser,
40 YYLTYPE *loc,
41 const char *macro,
42 token_list_t *replacements);
43
44 static void
45 _define_function_macro (glcpp_parser_t *parser,
46 YYLTYPE *loc,
47 const char *macro,
48 string_list_t *parameters,
49 token_list_t *replacements);
50
51 static string_list_t *
52 _string_list_create (void *ctx);
53
54 static void
55 _string_list_append_item (string_list_t *list, const char *str);
56
57 static int
58 _string_list_contains (string_list_t *list, const char *member, int *index);
59
60 static int
61 _string_list_length (string_list_t *list);
62
63 static int
64 _string_list_equal (string_list_t *a, string_list_t *b);
65
66 static argument_list_t *
67 _argument_list_create (void *ctx);
68
69 static void
70 _argument_list_append (argument_list_t *list, token_list_t *argument);
71
72 static int
73 _argument_list_length (argument_list_t *list);
74
75 static token_list_t *
76 _argument_list_member_at (argument_list_t *list, int index);
77
78 /* Note: This function ralloc_steal()s the str pointer. */
79 static token_t *
80 _token_create_str (void *ctx, int type, char *str);
81
82 static token_t *
83 _token_create_ival (void *ctx, int type, int ival);
84
85 static token_list_t *
86 _token_list_create (void *ctx);
87
88 static void
89 _token_list_append (token_list_t *list, token_t *token);
90
91 static void
92 _token_list_append_list (token_list_t *list, token_list_t *tail);
93
94 static int
95 _token_list_equal_ignoring_space (token_list_t *a, token_list_t *b);
96
97 static void
98 _parser_active_list_push (glcpp_parser_t *parser,
99 const char *identifier,
100 token_node_t *marker);
101
102 static void
103 _parser_active_list_pop (glcpp_parser_t *parser);
104
105 static int
106 _parser_active_list_contains (glcpp_parser_t *parser, const char *identifier);
107
108 /* Expand list, and begin lexing from the result (after first
109 * prefixing a token of type 'head_token_type').
110 */
111 static void
112 _glcpp_parser_expand_and_lex_from (glcpp_parser_t *parser,
113 int head_token_type,
114 token_list_t *list);
115
116 /* Perform macro expansion in-place on the given list. */
117 static void
118 _glcpp_parser_expand_token_list (glcpp_parser_t *parser,
119 token_list_t *list);
120
121 static void
122 _glcpp_parser_print_expanded_token_list (glcpp_parser_t *parser,
123 token_list_t *list);
124
125 static void
126 _glcpp_parser_skip_stack_push_if (glcpp_parser_t *parser, YYLTYPE *loc,
127 int condition);
128
129 static void
130 _glcpp_parser_skip_stack_change_if (glcpp_parser_t *parser, YYLTYPE *loc,
131 const char *type, int condition);
132
133 static void
134 _glcpp_parser_skip_stack_pop (glcpp_parser_t *parser, YYLTYPE *loc);
135
136 static int
137 glcpp_parser_lex (YYSTYPE *yylval, YYLTYPE *yylloc, glcpp_parser_t *parser);
138
139 static void
140 glcpp_parser_lex_from (glcpp_parser_t *parser, token_list_t *list);
141
142 static void
143 add_builtin_define(glcpp_parser_t *parser, const char *name, int value);
144
145 %}
146
147 %pure-parser
148 %error-verbose
149
150 %locations
151 %initial-action {
152 @$.first_line = 1;
153 @$.first_column = 1;
154 @$.last_line = 1;
155 @$.last_column = 1;
156 @$.source = 0;
157 }
158
159 %parse-param {glcpp_parser_t *parser}
160 %lex-param {glcpp_parser_t *parser}
161
162 %expect 0
163 %token COMMA_FINAL DEFINED ELIF_EXPANDED HASH HASH_DEFINE FUNC_IDENTIFIER OBJ_IDENTIFIER HASH_ELIF HASH_ELSE HASH_ENDIF HASH_IF HASH_IFDEF HASH_IFNDEF HASH_LINE HASH_UNDEF HASH_VERSION IDENTIFIER IF_EXPANDED INTEGER INTEGER_STRING LINE_EXPANDED NEWLINE OTHER PLACEHOLDER SPACE
164 %token PASTE
165 %type <ival> expression INTEGER operator SPACE integer_constant
166 %type <str> IDENTIFIER FUNC_IDENTIFIER OBJ_IDENTIFIER INTEGER_STRING OTHER
167 %type <string_list> identifier_list
168 %type <token> preprocessing_token conditional_token
169 %type <token_list> pp_tokens replacement_list text_line conditional_tokens
170 %left OR
171 %left AND
172 %left '|'
173 %left '^'
174 %left '&'
175 %left EQUAL NOT_EQUAL
176 %left '<' '>' LESS_OR_EQUAL GREATER_OR_EQUAL
177 %left LEFT_SHIFT RIGHT_SHIFT
178 %left '+' '-'
179 %left '*' '/' '%'
180 %right UNARY
181
182 %%
183
184 input:
185 /* empty */
186 | input line
187 ;
188
189 line:
190 control_line {
191 ralloc_asprintf_rewrite_tail (&parser->output, &parser->output_length, "\n");
192 }
193 | HASH_LINE pp_tokens NEWLINE {
194 if (parser->skip_stack == NULL ||
195 parser->skip_stack->type == SKIP_NO_SKIP)
196 {
197 _glcpp_parser_expand_and_lex_from (parser,
198 LINE_EXPANDED, $2);
199 }
200 }
201 | text_line {
202 _glcpp_parser_print_expanded_token_list (parser, $1);
203 ralloc_asprintf_rewrite_tail (&parser->output, &parser->output_length, "\n");
204 ralloc_free ($1);
205 }
206 | expanded_line
207 | HASH non_directive
208 ;
209
210 expanded_line:
211 IF_EXPANDED expression NEWLINE {
212 _glcpp_parser_skip_stack_push_if (parser, & @1, $2);
213 }
214 | ELIF_EXPANDED expression NEWLINE {
215 _glcpp_parser_skip_stack_change_if (parser, & @1, "elif", $2);
216 }
217 | LINE_EXPANDED integer_constant NEWLINE {
218 parser->has_new_line_number = 1;
219 parser->new_line_number = $2;
220 ralloc_asprintf_rewrite_tail (&parser->output,
221 &parser->output_length,
222 "#line %" PRIiMAX "\n",
223 $2);
224 }
225 | LINE_EXPANDED integer_constant integer_constant NEWLINE {
226 parser->has_new_line_number = 1;
227 parser->new_line_number = $2;
228 parser->has_new_source_number = 1;
229 parser->new_source_number = $3;
230 ralloc_asprintf_rewrite_tail (&parser->output,
231 &parser->output_length,
232 "#line %" PRIiMAX " %" PRIiMAX "\n",
233 $2, $3);
234 }
235 ;
236
237 control_line:
238 HASH_DEFINE OBJ_IDENTIFIER replacement_list NEWLINE {
239 _define_object_macro (parser, & @2, $2, $3);
240 }
241 | HASH_DEFINE FUNC_IDENTIFIER '(' ')' replacement_list NEWLINE {
242 _define_function_macro (parser, & @2, $2, NULL, $5);
243 }
244 | HASH_DEFINE FUNC_IDENTIFIER '(' identifier_list ')' replacement_list NEWLINE {
245 _define_function_macro (parser, & @2, $2, $4, $6);
246 }
247 | HASH_UNDEF IDENTIFIER NEWLINE {
248 macro_t *macro = hash_table_find (parser->defines, $2);
249 if (macro) {
250 hash_table_remove (parser->defines, $2);
251 ralloc_free (macro);
252 }
253 ralloc_free ($2);
254 }
255 | HASH_IF conditional_tokens NEWLINE {
256 /* Be careful to only evaluate the 'if' expression if
257 * we are not skipping. When we are skipping, we
258 * simply push a new 0-valued 'if' onto the skip
259 * stack.
260 *
261 * This avoids generating diagnostics for invalid
262 * expressions that are being skipped. */
263 if (parser->skip_stack == NULL ||
264 parser->skip_stack->type == SKIP_NO_SKIP)
265 {
266 _glcpp_parser_expand_and_lex_from (parser,
267 IF_EXPANDED, $2);
268 }
269 else
270 {
271 _glcpp_parser_skip_stack_push_if (parser, & @1, 0);
272 parser->skip_stack->type = SKIP_TO_ENDIF;
273 }
274 }
275 | HASH_IF NEWLINE {
276 /* #if without an expression is only an error if we
277 * are not skipping */
278 if (parser->skip_stack == NULL ||
279 parser->skip_stack->type == SKIP_NO_SKIP)
280 {
281 glcpp_error(& @1, parser, "#if with no expression");
282 }
283 _glcpp_parser_skip_stack_push_if (parser, & @1, 0);
284 }
285 | HASH_IFDEF IDENTIFIER junk NEWLINE {
286 macro_t *macro = hash_table_find (parser->defines, $2);
287 ralloc_free ($2);
288 _glcpp_parser_skip_stack_push_if (parser, & @1, macro != NULL);
289 }
290 | HASH_IFNDEF IDENTIFIER junk NEWLINE {
291 macro_t *macro = hash_table_find (parser->defines, $2);
292 ralloc_free ($2);
293 _glcpp_parser_skip_stack_push_if (parser, & @1, macro == NULL);
294 }
295 | HASH_ELIF conditional_tokens NEWLINE {
296 /* Be careful to only evaluate the 'elif' expression
297 * if we are not skipping. When we are skipping, we
298 * simply change to a 0-valued 'elif' on the skip
299 * stack.
300 *
301 * This avoids generating diagnostics for invalid
302 * expressions that are being skipped. */
303 if (parser->skip_stack &&
304 parser->skip_stack->type == SKIP_TO_ELSE)
305 {
306 _glcpp_parser_expand_and_lex_from (parser,
307 ELIF_EXPANDED, $2);
308 }
309 else
310 {
311 _glcpp_parser_skip_stack_change_if (parser, & @1,
312 "elif", 0);
313 }
314 }
315 | HASH_ELIF NEWLINE {
316 /* #elif without an expression is an error unless we
317 * are skipping. */
318 if (parser->skip_stack &&
319 parser->skip_stack->type == SKIP_TO_ELSE)
320 {
321 glcpp_error(& @1, parser, "#elif with no expression");
322 }
323 else
324 {
325 _glcpp_parser_skip_stack_change_if (parser, & @1,
326 "elif", 0);
327 glcpp_warning(& @1, parser, "ignoring illegal #elif without expression");
328 }
329 }
330 | HASH_ELSE {
331 _glcpp_parser_skip_stack_change_if (parser, & @1, "else", 1);
332 } NEWLINE
333 | HASH_ENDIF {
334 _glcpp_parser_skip_stack_pop (parser, & @1);
335 } NEWLINE
336 | HASH_VERSION integer_constant NEWLINE {
337 macro_t *macro = hash_table_find (parser->defines, "__VERSION__");
338 if (macro) {
339 hash_table_remove (parser->defines, "__VERSION__");
340 ralloc_free (macro);
341 }
342 add_builtin_define (parser, "__VERSION__", $2);
343
344 if ($2 == 100)
345 add_builtin_define (parser, "GL_ES", 1);
346
347 /* Currently, all ES2 implementations support highp in the
348 * fragment shader, so we always define this macro in ES2.
349 * If we ever get a driver that doesn't support highp, we'll
350 * need to add a flag to the gl_context and check that here.
351 */
352 if ($2 >= 130 || $2 == 100)
353 add_builtin_define (parser, "GL_FRAGMENT_PRECISION_HIGH", 1);
354
355 ralloc_asprintf_rewrite_tail (&parser->output, &parser->output_length, "#version %" PRIiMAX, $2);
356 }
357 | HASH NEWLINE
358 ;
359
360 integer_constant:
361 INTEGER_STRING {
362 if (strlen ($1) >= 3 && strncmp ($1, "0x", 2) == 0) {
363 $$ = strtoll ($1 + 2, NULL, 16);
364 } else if ($1[0] == '0') {
365 $$ = strtoll ($1, NULL, 8);
366 } else {
367 $$ = strtoll ($1, NULL, 10);
368 }
369 }
370 | INTEGER {
371 $$ = $1;
372 }
373
374 expression:
375 integer_constant
376 | IDENTIFIER {
377 $$ = 0;
378 }
379 | expression OR expression {
380 $$ = $1 || $3;
381 }
382 | expression AND expression {
383 $$ = $1 && $3;
384 }
385 | expression '|' expression {
386 $$ = $1 | $3;
387 }
388 | expression '^' expression {
389 $$ = $1 ^ $3;
390 }
391 | expression '&' expression {
392 $$ = $1 & $3;
393 }
394 | expression NOT_EQUAL expression {
395 $$ = $1 != $3;
396 }
397 | expression EQUAL expression {
398 $$ = $1 == $3;
399 }
400 | expression GREATER_OR_EQUAL expression {
401 $$ = $1 >= $3;
402 }
403 | expression LESS_OR_EQUAL expression {
404 $$ = $1 <= $3;
405 }
406 | expression '>' expression {
407 $$ = $1 > $3;
408 }
409 | expression '<' expression {
410 $$ = $1 < $3;
411 }
412 | expression RIGHT_SHIFT expression {
413 $$ = $1 >> $3;
414 }
415 | expression LEFT_SHIFT expression {
416 $$ = $1 << $3;
417 }
418 | expression '-' expression {
419 $$ = $1 - $3;
420 }
421 | expression '+' expression {
422 $$ = $1 + $3;
423 }
424 | expression '%' expression {
425 if ($3 == 0) {
426 yyerror (& @1, parser,
427 "zero modulus in preprocessor directive");
428 } else {
429 $$ = $1 % $3;
430 }
431 }
432 | expression '/' expression {
433 if ($3 == 0) {
434 yyerror (& @1, parser,
435 "division by 0 in preprocessor directive");
436 } else {
437 $$ = $1 / $3;
438 }
439 }
440 | expression '*' expression {
441 $$ = $1 * $3;
442 }
443 | '!' expression %prec UNARY {
444 $$ = ! $2;
445 }
446 | '~' expression %prec UNARY {
447 $$ = ~ $2;
448 }
449 | '-' expression %prec UNARY {
450 $$ = - $2;
451 }
452 | '+' expression %prec UNARY {
453 $$ = + $2;
454 }
455 | '(' expression ')' {
456 $$ = $2;
457 }
458 ;
459
460 identifier_list:
461 IDENTIFIER {
462 $$ = _string_list_create (parser);
463 _string_list_append_item ($$, $1);
464 ralloc_steal ($$, $1);
465 }
466 | identifier_list ',' IDENTIFIER {
467 $$ = $1;
468 _string_list_append_item ($$, $3);
469 ralloc_steal ($$, $3);
470 }
471 ;
472
473 text_line:
474 NEWLINE { $$ = NULL; }
475 | pp_tokens NEWLINE
476 ;
477
478 non_directive:
479 pp_tokens NEWLINE {
480 yyerror (& @1, parser, "Invalid tokens after #");
481 }
482 ;
483
484 replacement_list:
485 /* empty */ { $$ = NULL; }
486 | pp_tokens
487 ;
488
489 junk:
490 /* empty */
491 | pp_tokens {
492 glcpp_warning(&@1, parser, "extra tokens at end of directive");
493 }
494 ;
495
496 conditional_token:
497 /* Handle "defined" operator */
498 DEFINED IDENTIFIER {
499 int v = hash_table_find (parser->defines, $2) ? 1 : 0;
500 $$ = _token_create_ival (parser, INTEGER, v);
501 }
502 | DEFINED '(' IDENTIFIER ')' {
503 int v = hash_table_find (parser->defines, $3) ? 1 : 0;
504 $$ = _token_create_ival (parser, INTEGER, v);
505 }
506 | preprocessing_token
507 ;
508
509 conditional_tokens:
510 /* Exactly the same as pp_tokens, but using conditional_token */
511 conditional_token {
512 $$ = _token_list_create (parser);
513 _token_list_append ($$, $1);
514 }
515 | conditional_tokens conditional_token {
516 $$ = $1;
517 _token_list_append ($$, $2);
518 }
519 ;
520
521 pp_tokens:
522 preprocessing_token {
523 parser->space_tokens = 1;
524 $$ = _token_list_create (parser);
525 _token_list_append ($$, $1);
526 }
527 | pp_tokens preprocessing_token {
528 $$ = $1;
529 _token_list_append ($$, $2);
530 }
531 ;
532
533 preprocessing_token:
534 IDENTIFIER {
535 $$ = _token_create_str (parser, IDENTIFIER, $1);
536 $$->location = yylloc;
537 }
538 | INTEGER_STRING {
539 $$ = _token_create_str (parser, INTEGER_STRING, $1);
540 $$->location = yylloc;
541 }
542 | operator {
543 $$ = _token_create_ival (parser, $1, $1);
544 $$->location = yylloc;
545 }
546 | OTHER {
547 $$ = _token_create_str (parser, OTHER, $1);
548 $$->location = yylloc;
549 }
550 | SPACE {
551 $$ = _token_create_ival (parser, SPACE, SPACE);
552 $$->location = yylloc;
553 }
554 ;
555
556 operator:
557 '[' { $$ = '['; }
558 | ']' { $$ = ']'; }
559 | '(' { $$ = '('; }
560 | ')' { $$ = ')'; }
561 | '{' { $$ = '{'; }
562 | '}' { $$ = '}'; }
563 | '.' { $$ = '.'; }
564 | '&' { $$ = '&'; }
565 | '*' { $$ = '*'; }
566 | '+' { $$ = '+'; }
567 | '-' { $$ = '-'; }
568 | '~' { $$ = '~'; }
569 | '!' { $$ = '!'; }
570 | '/' { $$ = '/'; }
571 | '%' { $$ = '%'; }
572 | LEFT_SHIFT { $$ = LEFT_SHIFT; }
573 | RIGHT_SHIFT { $$ = RIGHT_SHIFT; }
574 | '<' { $$ = '<'; }
575 | '>' { $$ = '>'; }
576 | LESS_OR_EQUAL { $$ = LESS_OR_EQUAL; }
577 | GREATER_OR_EQUAL { $$ = GREATER_OR_EQUAL; }
578 | EQUAL { $$ = EQUAL; }
579 | NOT_EQUAL { $$ = NOT_EQUAL; }
580 | '^' { $$ = '^'; }
581 | '|' { $$ = '|'; }
582 | AND { $$ = AND; }
583 | OR { $$ = OR; }
584 | ';' { $$ = ';'; }
585 | ',' { $$ = ','; }
586 | '=' { $$ = '='; }
587 | PASTE { $$ = PASTE; }
588 ;
589
590 %%
591
592 string_list_t *
593 _string_list_create (void *ctx)
594 {
595 string_list_t *list;
596
597 list = ralloc (ctx, string_list_t);
598 list->head = NULL;
599 list->tail = NULL;
600
601 return list;
602 }
603
604 void
605 _string_list_append_item (string_list_t *list, const char *str)
606 {
607 string_node_t *node;
608
609 node = ralloc (list, string_node_t);
610 node->str = ralloc_strdup (node, str);
611
612 node->next = NULL;
613
614 if (list->head == NULL) {
615 list->head = node;
616 } else {
617 list->tail->next = node;
618 }
619
620 list->tail = node;
621 }
622
623 int
624 _string_list_contains (string_list_t *list, const char *member, int *index)
625 {
626 string_node_t *node;
627 int i;
628
629 if (list == NULL)
630 return 0;
631
632 for (i = 0, node = list->head; node; i++, node = node->next) {
633 if (strcmp (node->str, member) == 0) {
634 if (index)
635 *index = i;
636 return 1;
637 }
638 }
639
640 return 0;
641 }
642
643 int
644 _string_list_length (string_list_t *list)
645 {
646 int length = 0;
647 string_node_t *node;
648
649 if (list == NULL)
650 return 0;
651
652 for (node = list->head; node; node = node->next)
653 length++;
654
655 return length;
656 }
657
658 int
659 _string_list_equal (string_list_t *a, string_list_t *b)
660 {
661 string_node_t *node_a, *node_b;
662
663 if (a == NULL && b == NULL)
664 return 1;
665
666 if (a == NULL || b == NULL)
667 return 0;
668
669 for (node_a = a->head, node_b = b->head;
670 node_a && node_b;
671 node_a = node_a->next, node_b = node_b->next)
672 {
673 if (strcmp (node_a->str, node_b->str))
674 return 0;
675 }
676
677 /* Catch the case of lists being different lengths, (which
678 * would cause the loop above to terminate after the shorter
679 * list). */
680 return node_a == node_b;
681 }
682
683 argument_list_t *
684 _argument_list_create (void *ctx)
685 {
686 argument_list_t *list;
687
688 list = ralloc (ctx, argument_list_t);
689 list->head = NULL;
690 list->tail = NULL;
691
692 return list;
693 }
694
695 void
696 _argument_list_append (argument_list_t *list, token_list_t *argument)
697 {
698 argument_node_t *node;
699
700 node = ralloc (list, argument_node_t);
701 node->argument = argument;
702
703 node->next = NULL;
704
705 if (list->head == NULL) {
706 list->head = node;
707 } else {
708 list->tail->next = node;
709 }
710
711 list->tail = node;
712 }
713
714 int
715 _argument_list_length (argument_list_t *list)
716 {
717 int length = 0;
718 argument_node_t *node;
719
720 if (list == NULL)
721 return 0;
722
723 for (node = list->head; node; node = node->next)
724 length++;
725
726 return length;
727 }
728
729 token_list_t *
730 _argument_list_member_at (argument_list_t *list, int index)
731 {
732 argument_node_t *node;
733 int i;
734
735 if (list == NULL)
736 return NULL;
737
738 node = list->head;
739 for (i = 0; i < index; i++) {
740 node = node->next;
741 if (node == NULL)
742 break;
743 }
744
745 if (node)
746 return node->argument;
747
748 return NULL;
749 }
750
751 /* Note: This function ralloc_steal()s the str pointer. */
752 token_t *
753 _token_create_str (void *ctx, int type, char *str)
754 {
755 token_t *token;
756
757 token = ralloc (ctx, token_t);
758 token->type = type;
759 token->value.str = str;
760
761 ralloc_steal (token, str);
762
763 return token;
764 }
765
766 token_t *
767 _token_create_ival (void *ctx, int type, int ival)
768 {
769 token_t *token;
770
771 token = ralloc (ctx, token_t);
772 token->type = type;
773 token->value.ival = ival;
774
775 return token;
776 }
777
778 token_list_t *
779 _token_list_create (void *ctx)
780 {
781 token_list_t *list;
782
783 list = ralloc (ctx, token_list_t);
784 list->head = NULL;
785 list->tail = NULL;
786 list->non_space_tail = NULL;
787
788 return list;
789 }
790
791 void
792 _token_list_append (token_list_t *list, token_t *token)
793 {
794 token_node_t *node;
795
796 node = ralloc (list, token_node_t);
797 node->token = token;
798 node->next = NULL;
799
800 if (list->head == NULL) {
801 list->head = node;
802 } else {
803 list->tail->next = node;
804 }
805
806 list->tail = node;
807 if (token->type != SPACE)
808 list->non_space_tail = node;
809 }
810
811 void
812 _token_list_append_list (token_list_t *list, token_list_t *tail)
813 {
814 if (tail == NULL || tail->head == NULL)
815 return;
816
817 if (list->head == NULL) {
818 list->head = tail->head;
819 } else {
820 list->tail->next = tail->head;
821 }
822
823 list->tail = tail->tail;
824 list->non_space_tail = tail->non_space_tail;
825 }
826
827 static token_list_t *
828 _token_list_copy (void *ctx, token_list_t *other)
829 {
830 token_list_t *copy;
831 token_node_t *node;
832
833 if (other == NULL)
834 return NULL;
835
836 copy = _token_list_create (ctx);
837 for (node = other->head; node; node = node->next) {
838 token_t *new_token = ralloc (copy, token_t);
839 *new_token = *node->token;
840 _token_list_append (copy, new_token);
841 }
842
843 return copy;
844 }
845
846 static void
847 _token_list_trim_trailing_space (token_list_t *list)
848 {
849 token_node_t *tail, *next;
850
851 if (list->non_space_tail) {
852 tail = list->non_space_tail->next;
853 list->non_space_tail->next = NULL;
854 list->tail = list->non_space_tail;
855
856 while (tail) {
857 next = tail->next;
858 ralloc_free (tail);
859 tail = next;
860 }
861 }
862 }
863
864 static int
865 _token_list_is_empty_ignoring_space (token_list_t *l)
866 {
867 token_node_t *n;
868
869 if (l == NULL)
870 return 1;
871
872 n = l->head;
873 while (n != NULL && n->token->type == SPACE)
874 n = n->next;
875
876 return n == NULL;
877 }
878
879 int
880 _token_list_equal_ignoring_space (token_list_t *a, token_list_t *b)
881 {
882 token_node_t *node_a, *node_b;
883
884 if (a == NULL || b == NULL) {
885 int a_empty = _token_list_is_empty_ignoring_space(a);
886 int b_empty = _token_list_is_empty_ignoring_space(b);
887 return a_empty == b_empty;
888 }
889
890 node_a = a->head;
891 node_b = b->head;
892
893 while (1)
894 {
895 if (node_a == NULL && node_b == NULL)
896 break;
897
898 if (node_a == NULL || node_b == NULL)
899 return 0;
900
901 if (node_a->token->type == SPACE) {
902 node_a = node_a->next;
903 continue;
904 }
905
906 if (node_b->token->type == SPACE) {
907 node_b = node_b->next;
908 continue;
909 }
910
911 if (node_a->token->type != node_b->token->type)
912 return 0;
913
914 switch (node_a->token->type) {
915 case INTEGER:
916 if (node_a->token->value.ival !=
917 node_b->token->value.ival)
918 {
919 return 0;
920 }
921 break;
922 case IDENTIFIER:
923 case INTEGER_STRING:
924 case OTHER:
925 if (strcmp (node_a->token->value.str,
926 node_b->token->value.str))
927 {
928 return 0;
929 }
930 break;
931 }
932
933 node_a = node_a->next;
934 node_b = node_b->next;
935 }
936
937 return 1;
938 }
939
940 static void
941 _token_print (char **out, size_t *len, token_t *token)
942 {
943 if (token->type < 256) {
944 ralloc_asprintf_rewrite_tail (out, len, "%c", token->type);
945 return;
946 }
947
948 switch (token->type) {
949 case INTEGER:
950 ralloc_asprintf_rewrite_tail (out, len, "%" PRIiMAX, token->value.ival);
951 break;
952 case IDENTIFIER:
953 case INTEGER_STRING:
954 case OTHER:
955 ralloc_asprintf_rewrite_tail (out, len, "%s", token->value.str);
956 break;
957 case SPACE:
958 ralloc_asprintf_rewrite_tail (out, len, " ");
959 break;
960 case LEFT_SHIFT:
961 ralloc_asprintf_rewrite_tail (out, len, "<<");
962 break;
963 case RIGHT_SHIFT:
964 ralloc_asprintf_rewrite_tail (out, len, ">>");
965 break;
966 case LESS_OR_EQUAL:
967 ralloc_asprintf_rewrite_tail (out, len, "<=");
968 break;
969 case GREATER_OR_EQUAL:
970 ralloc_asprintf_rewrite_tail (out, len, ">=");
971 break;
972 case EQUAL:
973 ralloc_asprintf_rewrite_tail (out, len, "==");
974 break;
975 case NOT_EQUAL:
976 ralloc_asprintf_rewrite_tail (out, len, "!=");
977 break;
978 case AND:
979 ralloc_asprintf_rewrite_tail (out, len, "&&");
980 break;
981 case OR:
982 ralloc_asprintf_rewrite_tail (out, len, "||");
983 break;
984 case PASTE:
985 ralloc_asprintf_rewrite_tail (out, len, "##");
986 break;
987 case COMMA_FINAL:
988 ralloc_asprintf_rewrite_tail (out, len, ",");
989 break;
990 case PLACEHOLDER:
991 /* Nothing to print. */
992 break;
993 default:
994 assert(!"Error: Don't know how to print token.");
995 break;
996 }
997 }
998
999 /* Return a new token (ralloc()ed off of 'token') formed by pasting
1000 * 'token' and 'other'. Note that this function may return 'token' or
1001 * 'other' directly rather than allocating anything new.
1002 *
1003 * Caution: Only very cursory error-checking is performed to see if
1004 * the final result is a valid single token. */
1005 static token_t *
1006 _token_paste (glcpp_parser_t *parser, token_t *token, token_t *other)
1007 {
1008 token_t *combined = NULL;
1009
1010 /* Pasting a placeholder onto anything makes no change. */
1011 if (other->type == PLACEHOLDER)
1012 return token;
1013
1014 /* When 'token' is a placeholder, just return 'other'. */
1015 if (token->type == PLACEHOLDER)
1016 return other;
1017
1018 /* A very few single-character punctuators can be combined
1019 * with another to form a multi-character punctuator. */
1020 switch (token->type) {
1021 case '<':
1022 if (other->type == '<')
1023 combined = _token_create_ival (token, LEFT_SHIFT, LEFT_SHIFT);
1024 else if (other->type == '=')
1025 combined = _token_create_ival (token, LESS_OR_EQUAL, LESS_OR_EQUAL);
1026 break;
1027 case '>':
1028 if (other->type == '>')
1029 combined = _token_create_ival (token, RIGHT_SHIFT, RIGHT_SHIFT);
1030 else if (other->type == '=')
1031 combined = _token_create_ival (token, GREATER_OR_EQUAL, GREATER_OR_EQUAL);
1032 break;
1033 case '=':
1034 if (other->type == '=')
1035 combined = _token_create_ival (token, EQUAL, EQUAL);
1036 break;
1037 case '!':
1038 if (other->type == '=')
1039 combined = _token_create_ival (token, NOT_EQUAL, NOT_EQUAL);
1040 break;
1041 case '&':
1042 if (other->type == '&')
1043 combined = _token_create_ival (token, AND, AND);
1044 break;
1045 case '|':
1046 if (other->type == '|')
1047 combined = _token_create_ival (token, OR, OR);
1048 break;
1049 }
1050
1051 if (combined != NULL) {
1052 /* Inherit the location from the first token */
1053 combined->location = token->location;
1054 return combined;
1055 }
1056
1057 /* Two string-valued tokens can usually just be mashed
1058 * together.
1059 *
1060 * XXX: This isn't actually legitimate. Several things here
1061 * should result in a diagnostic since the result cannot be a
1062 * valid, single pre-processing token. For example, pasting
1063 * "123" and "abc" is not legal, but we don't catch that
1064 * here. */
1065 if ((token->type == IDENTIFIER || token->type == OTHER || token->type == INTEGER_STRING) &&
1066 (other->type == IDENTIFIER || other->type == OTHER || other->type == INTEGER_STRING))
1067 {
1068 char *str;
1069
1070 str = ralloc_asprintf (token, "%s%s", token->value.str,
1071 other->value.str);
1072 combined = _token_create_str (token, token->type, str);
1073 combined->location = token->location;
1074 return combined;
1075 }
1076
1077 glcpp_error (&token->location, parser, "");
1078 ralloc_asprintf_rewrite_tail (&parser->info_log, &parser->info_log_length, "Pasting \"");
1079 _token_print (&parser->info_log, &parser->info_log_length, token);
1080 ralloc_asprintf_rewrite_tail (&parser->info_log, &parser->info_log_length, "\" and \"");
1081 _token_print (&parser->info_log, &parser->info_log_length, other);
1082 ralloc_asprintf_rewrite_tail (&parser->info_log, &parser->info_log_length, "\" does not give a valid preprocessing token.\n");
1083
1084 return token;
1085 }
1086
1087 static void
1088 _token_list_print (glcpp_parser_t *parser, token_list_t *list)
1089 {
1090 token_node_t *node;
1091
1092 if (list == NULL)
1093 return;
1094
1095 for (node = list->head; node; node = node->next)
1096 _token_print (&parser->output, &parser->output_length, node->token);
1097 }
1098
1099 void
1100 yyerror (YYLTYPE *locp, glcpp_parser_t *parser, const char *error)
1101 {
1102 glcpp_error(locp, parser, "%s", error);
1103 }
1104
1105 static void add_builtin_define(glcpp_parser_t *parser,
1106 const char *name, int value)
1107 {
1108 token_t *tok;
1109 token_list_t *list;
1110
1111 tok = _token_create_ival (parser, INTEGER, value);
1112
1113 list = _token_list_create(parser);
1114 _token_list_append(list, tok);
1115 _define_object_macro(parser, NULL, name, list);
1116 }
1117
1118 glcpp_parser_t *
1119 glcpp_parser_create (const struct gl_extensions *extensions, int api)
1120 {
1121 glcpp_parser_t *parser;
1122 int language_version;
1123
1124 parser = ralloc (NULL, glcpp_parser_t);
1125
1126 glcpp_lex_init_extra (parser, &parser->scanner);
1127 parser->defines = hash_table_ctor (32, hash_table_string_hash,
1128 hash_table_string_compare);
1129 parser->active = NULL;
1130 parser->lexing_if = 0;
1131 parser->space_tokens = 1;
1132 parser->newline_as_space = 0;
1133 parser->in_control_line = 0;
1134 parser->paren_count = 0;
1135
1136 parser->skip_stack = NULL;
1137
1138 parser->lex_from_list = NULL;
1139 parser->lex_from_node = NULL;
1140
1141 parser->output = ralloc_strdup(parser, "");
1142 parser->output_length = 0;
1143 parser->info_log = ralloc_strdup(parser, "");
1144 parser->info_log_length = 0;
1145 parser->error = 0;
1146
1147 parser->has_new_line_number = 0;
1148 parser->new_line_number = 1;
1149 parser->has_new_source_number = 0;
1150 parser->new_source_number = 0;
1151
1152 /* Add pre-defined macros. */
1153 if (extensions != NULL) {
1154 if (extensions->OES_EGL_image_external)
1155 add_builtin_define(parser, "GL_OES_EGL_image_external", 1);
1156 }
1157
1158 if (api == API_OPENGLES2)
1159 add_builtin_define(parser, "GL_ES", 1);
1160 else {
1161 add_builtin_define(parser, "GL_ARB_draw_buffers", 1);
1162 add_builtin_define(parser, "GL_ARB_texture_rectangle", 1);
1163
1164 if (extensions != NULL) {
1165 if (extensions->EXT_texture_array) {
1166 add_builtin_define(parser, "GL_EXT_texture_array", 1);
1167 }
1168
1169 if (extensions->ARB_fragment_coord_conventions)
1170 add_builtin_define(parser, "GL_ARB_fragment_coord_conventions",
1171 1);
1172
1173 if (extensions->ARB_explicit_attrib_location)
1174 add_builtin_define(parser, "GL_ARB_explicit_attrib_location", 1);
1175
1176 if (extensions->ARB_shader_texture_lod)
1177 add_builtin_define(parser, "GL_ARB_shader_texture_lod", 1);
1178
1179 if (extensions->ARB_draw_instanced)
1180 add_builtin_define(parser, "GL_ARB_draw_instanced", 1);
1181
1182 if (extensions->ARB_conservative_depth) {
1183 add_builtin_define(parser, "GL_AMD_conservative_depth", 1);
1184 add_builtin_define(parser, "GL_ARB_conservative_depth", 1);
1185 }
1186
1187 if (extensions->ARB_shader_bit_encoding)
1188 add_builtin_define(parser, "GL_ARB_shader_bit_encoding", 1);
1189
1190 if (extensions->ARB_uniform_buffer_object)
1191 add_builtin_define(parser, "GL_ARB_uniform_buffer_object", 1);
1192
1193 if (extensions->ARB_texture_cube_map_array)
1194 add_builtin_define(parser, "GL_ARB_texture_cube_map_array", 1);
1195 }
1196 }
1197
1198 language_version = 110;
1199 add_builtin_define(parser, "__VERSION__", language_version);
1200
1201 return parser;
1202 }
1203
1204 void
1205 glcpp_parser_destroy (glcpp_parser_t *parser)
1206 {
1207 glcpp_lex_destroy (parser->scanner);
1208 hash_table_dtor (parser->defines);
1209 ralloc_free (parser);
1210 }
1211
1212 typedef enum function_status
1213 {
1214 FUNCTION_STATUS_SUCCESS,
1215 FUNCTION_NOT_A_FUNCTION,
1216 FUNCTION_UNBALANCED_PARENTHESES
1217 } function_status_t;
1218
1219 /* Find a set of function-like macro arguments by looking for a
1220 * balanced set of parentheses.
1221 *
1222 * When called, 'node' should be the opening-parenthesis token, (or
1223 * perhaps preceeding SPACE tokens). Upon successful return *last will
1224 * be the last consumed node, (corresponding to the closing right
1225 * parenthesis).
1226 *
1227 * Return values:
1228 *
1229 * FUNCTION_STATUS_SUCCESS:
1230 *
1231 * Successfully parsed a set of function arguments.
1232 *
1233 * FUNCTION_NOT_A_FUNCTION:
1234 *
1235 * Macro name not followed by a '('. This is not an error, but
1236 * simply that the macro name should be treated as a non-macro.
1237 *
1238 * FUNCTION_UNBALANCED_PARENTHESES
1239 *
1240 * Macro name is not followed by a balanced set of parentheses.
1241 */
1242 static function_status_t
1243 _arguments_parse (argument_list_t *arguments,
1244 token_node_t *node,
1245 token_node_t **last)
1246 {
1247 token_list_t *argument;
1248 int paren_count;
1249
1250 node = node->next;
1251
1252 /* Ignore whitespace before first parenthesis. */
1253 while (node && node->token->type == SPACE)
1254 node = node->next;
1255
1256 if (node == NULL || node->token->type != '(')
1257 return FUNCTION_NOT_A_FUNCTION;
1258
1259 node = node->next;
1260
1261 argument = _token_list_create (arguments);
1262 _argument_list_append (arguments, argument);
1263
1264 for (paren_count = 1; node; node = node->next) {
1265 if (node->token->type == '(')
1266 {
1267 paren_count++;
1268 }
1269 else if (node->token->type == ')')
1270 {
1271 paren_count--;
1272 if (paren_count == 0)
1273 break;
1274 }
1275
1276 if (node->token->type == ',' &&
1277 paren_count == 1)
1278 {
1279 _token_list_trim_trailing_space (argument);
1280 argument = _token_list_create (arguments);
1281 _argument_list_append (arguments, argument);
1282 }
1283 else {
1284 if (argument->head == NULL) {
1285 /* Don't treat initial whitespace as
1286 * part of the arguement. */
1287 if (node->token->type == SPACE)
1288 continue;
1289 }
1290 _token_list_append (argument, node->token);
1291 }
1292 }
1293
1294 if (paren_count)
1295 return FUNCTION_UNBALANCED_PARENTHESES;
1296
1297 *last = node;
1298
1299 return FUNCTION_STATUS_SUCCESS;
1300 }
1301
1302 static token_list_t *
1303 _token_list_create_with_one_space (void *ctx)
1304 {
1305 token_list_t *list;
1306 token_t *space;
1307
1308 list = _token_list_create (ctx);
1309 space = _token_create_ival (list, SPACE, SPACE);
1310 _token_list_append (list, space);
1311
1312 return list;
1313 }
1314
1315 /* Perform macro expansion on 'list', placing the resulting tokens
1316 * into a new list which is initialized with a first token of type
1317 * 'head_token_type'. Then begin lexing from the resulting list,
1318 * (return to the current lexing source when this list is exhausted).
1319 */
1320 static void
1321 _glcpp_parser_expand_and_lex_from (glcpp_parser_t *parser,
1322 int head_token_type,
1323 token_list_t *list)
1324 {
1325 token_list_t *expanded;
1326 token_t *token;
1327
1328 expanded = _token_list_create (parser);
1329 token = _token_create_ival (parser, head_token_type, head_token_type);
1330 _token_list_append (expanded, token);
1331 _glcpp_parser_expand_token_list (parser, list);
1332 _token_list_append_list (expanded, list);
1333 glcpp_parser_lex_from (parser, expanded);
1334 }
1335
1336 static void
1337 _glcpp_parser_apply_pastes (glcpp_parser_t *parser, token_list_t *list)
1338 {
1339 token_node_t *node;
1340
1341 node = list->head;
1342 while (node)
1343 {
1344 token_node_t *next_non_space;
1345
1346 /* Look ahead for a PASTE token, skipping space. */
1347 next_non_space = node->next;
1348 while (next_non_space && next_non_space->token->type == SPACE)
1349 next_non_space = next_non_space->next;
1350
1351 if (next_non_space == NULL)
1352 break;
1353
1354 if (next_non_space->token->type != PASTE) {
1355 node = next_non_space;
1356 continue;
1357 }
1358
1359 /* Now find the next non-space token after the PASTE. */
1360 next_non_space = next_non_space->next;
1361 while (next_non_space && next_non_space->token->type == SPACE)
1362 next_non_space = next_non_space->next;
1363
1364 if (next_non_space == NULL) {
1365 yyerror (&node->token->location, parser, "'##' cannot appear at either end of a macro expansion\n");
1366 return;
1367 }
1368
1369 node->token = _token_paste (parser, node->token, next_non_space->token);
1370 node->next = next_non_space->next;
1371 if (next_non_space == list->tail)
1372 list->tail = node;
1373 }
1374
1375 list->non_space_tail = list->tail;
1376 }
1377
1378 /* This is a helper function that's essentially part of the
1379 * implementation of _glcpp_parser_expand_node. It shouldn't be called
1380 * except for by that function.
1381 *
1382 * Returns NULL if node is a simple token with no expansion, (that is,
1383 * although 'node' corresponds to an identifier defined as a
1384 * function-like macro, it is not followed with a parenthesized
1385 * argument list).
1386 *
1387 * Compute the complete expansion of node (which is a function-like
1388 * macro) and subsequent nodes which are arguments.
1389 *
1390 * Returns the token list that results from the expansion and sets
1391 * *last to the last node in the list that was consumed by the
1392 * expansion. Specifically, *last will be set as follows: as the
1393 * token of the closing right parenthesis.
1394 */
1395 static token_list_t *
1396 _glcpp_parser_expand_function (glcpp_parser_t *parser,
1397 token_node_t *node,
1398 token_node_t **last)
1399
1400 {
1401 macro_t *macro;
1402 const char *identifier;
1403 argument_list_t *arguments;
1404 function_status_t status;
1405 token_list_t *substituted;
1406 int parameter_index;
1407
1408 identifier = node->token->value.str;
1409
1410 macro = hash_table_find (parser->defines, identifier);
1411
1412 assert (macro->is_function);
1413
1414 arguments = _argument_list_create (parser);
1415 status = _arguments_parse (arguments, node, last);
1416
1417 switch (status) {
1418 case FUNCTION_STATUS_SUCCESS:
1419 break;
1420 case FUNCTION_NOT_A_FUNCTION:
1421 return NULL;
1422 case FUNCTION_UNBALANCED_PARENTHESES:
1423 glcpp_error (&node->token->location, parser, "Macro %s call has unbalanced parentheses\n", identifier);
1424 return NULL;
1425 }
1426
1427 /* Replace a macro defined as empty with a SPACE token. */
1428 if (macro->replacements == NULL) {
1429 ralloc_free (arguments);
1430 return _token_list_create_with_one_space (parser);
1431 }
1432
1433 if (! ((_argument_list_length (arguments) ==
1434 _string_list_length (macro->parameters)) ||
1435 (_string_list_length (macro->parameters) == 0 &&
1436 _argument_list_length (arguments) == 1 &&
1437 arguments->head->argument->head == NULL)))
1438 {
1439 glcpp_error (&node->token->location, parser,
1440 "Error: macro %s invoked with %d arguments (expected %d)\n",
1441 identifier,
1442 _argument_list_length (arguments),
1443 _string_list_length (macro->parameters));
1444 return NULL;
1445 }
1446
1447 /* Perform argument substitution on the replacement list. */
1448 substituted = _token_list_create (arguments);
1449
1450 for (node = macro->replacements->head; node; node = node->next)
1451 {
1452 if (node->token->type == IDENTIFIER &&
1453 _string_list_contains (macro->parameters,
1454 node->token->value.str,
1455 &parameter_index))
1456 {
1457 token_list_t *argument;
1458 argument = _argument_list_member_at (arguments,
1459 parameter_index);
1460 /* Before substituting, we expand the argument
1461 * tokens, or append a placeholder token for
1462 * an empty argument. */
1463 if (argument->head) {
1464 token_list_t *expanded_argument;
1465 expanded_argument = _token_list_copy (parser,
1466 argument);
1467 _glcpp_parser_expand_token_list (parser,
1468 expanded_argument);
1469 _token_list_append_list (substituted,
1470 expanded_argument);
1471 } else {
1472 token_t *new_token;
1473
1474 new_token = _token_create_ival (substituted,
1475 PLACEHOLDER,
1476 PLACEHOLDER);
1477 _token_list_append (substituted, new_token);
1478 }
1479 } else {
1480 _token_list_append (substituted, node->token);
1481 }
1482 }
1483
1484 /* After argument substitution, and before further expansion
1485 * below, implement token pasting. */
1486
1487 _token_list_trim_trailing_space (substituted);
1488
1489 _glcpp_parser_apply_pastes (parser, substituted);
1490
1491 return substituted;
1492 }
1493
1494 /* Compute the complete expansion of node, (and subsequent nodes after
1495 * 'node' in the case that 'node' is a function-like macro and
1496 * subsequent nodes are arguments).
1497 *
1498 * Returns NULL if node is a simple token with no expansion.
1499 *
1500 * Otherwise, returns the token list that results from the expansion
1501 * and sets *last to the last node in the list that was consumed by
1502 * the expansion. Specifically, *last will be set as follows:
1503 *
1504 * As 'node' in the case of object-like macro expansion.
1505 *
1506 * As the token of the closing right parenthesis in the case of
1507 * function-like macro expansion.
1508 */
1509 static token_list_t *
1510 _glcpp_parser_expand_node (glcpp_parser_t *parser,
1511 token_node_t *node,
1512 token_node_t **last)
1513 {
1514 token_t *token = node->token;
1515 const char *identifier;
1516 macro_t *macro;
1517
1518 /* We only expand identifiers */
1519 if (token->type != IDENTIFIER) {
1520 /* We change any COMMA into a COMMA_FINAL to prevent
1521 * it being mistaken for an argument separator
1522 * later. */
1523 if (token->type == ',') {
1524 token->type = COMMA_FINAL;
1525 token->value.ival = COMMA_FINAL;
1526 }
1527
1528 return NULL;
1529 }
1530
1531 *last = node;
1532 identifier = token->value.str;
1533
1534 /* Special handling for __LINE__ and __FILE__, (not through
1535 * the hash table). */
1536 if (strcmp(identifier, "__LINE__") == 0) {
1537 token_list_t *replacement;
1538 token_t *value;
1539
1540 replacement = _token_list_create (parser);
1541 value = _token_create_ival (parser, INTEGER,
1542 node->token->location.first_line);
1543 _token_list_append (replacement, value);
1544
1545 return replacement;
1546 }
1547
1548 if (strcmp(identifier, "__FILE__") == 0) {
1549 token_list_t *replacement;
1550 token_t *value;
1551
1552 replacement = _token_list_create (parser);
1553 value = _token_create_ival (parser, INTEGER,
1554 node->token->location.source);
1555 _token_list_append (replacement, value);
1556
1557 return replacement;
1558 }
1559
1560 /* Look up this identifier in the hash table. */
1561 macro = hash_table_find (parser->defines, identifier);
1562
1563 /* Not a macro, so no expansion needed. */
1564 if (macro == NULL)
1565 return NULL;
1566
1567 /* Finally, don't expand this macro if we're already actively
1568 * expanding it, (to avoid infinite recursion). */
1569 if (_parser_active_list_contains (parser, identifier)) {
1570 /* We change the token type here from IDENTIFIER to
1571 * OTHER to prevent any future expansion of this
1572 * unexpanded token. */
1573 char *str;
1574 token_list_t *expansion;
1575 token_t *final;
1576
1577 str = ralloc_strdup (parser, token->value.str);
1578 final = _token_create_str (parser, OTHER, str);
1579 expansion = _token_list_create (parser);
1580 _token_list_append (expansion, final);
1581 return expansion;
1582 }
1583
1584 if (! macro->is_function)
1585 {
1586 token_list_t *replacement;
1587
1588 /* Replace a macro defined as empty with a SPACE token. */
1589 if (macro->replacements == NULL)
1590 return _token_list_create_with_one_space (parser);
1591
1592 replacement = _token_list_copy (parser, macro->replacements);
1593 _glcpp_parser_apply_pastes (parser, replacement);
1594 return replacement;
1595 }
1596
1597 return _glcpp_parser_expand_function (parser, node, last);
1598 }
1599
1600 /* Push a new identifier onto the parser's active list.
1601 *
1602 * Here, 'marker' is the token node that appears in the list after the
1603 * expansion of 'identifier'. That is, when the list iterator begins
1604 * examining 'marker', then it is time to pop this node from the
1605 * active stack.
1606 */
1607 static void
1608 _parser_active_list_push (glcpp_parser_t *parser,
1609 const char *identifier,
1610 token_node_t *marker)
1611 {
1612 active_list_t *node;
1613
1614 node = ralloc (parser->active, active_list_t);
1615 node->identifier = ralloc_strdup (node, identifier);
1616 node->marker = marker;
1617 node->next = parser->active;
1618
1619 parser->active = node;
1620 }
1621
1622 static void
1623 _parser_active_list_pop (glcpp_parser_t *parser)
1624 {
1625 active_list_t *node = parser->active;
1626
1627 if (node == NULL) {
1628 parser->active = NULL;
1629 return;
1630 }
1631
1632 node = parser->active->next;
1633 ralloc_free (parser->active);
1634
1635 parser->active = node;
1636 }
1637
1638 static int
1639 _parser_active_list_contains (glcpp_parser_t *parser, const char *identifier)
1640 {
1641 active_list_t *node;
1642
1643 if (parser->active == NULL)
1644 return 0;
1645
1646 for (node = parser->active; node; node = node->next)
1647 if (strcmp (node->identifier, identifier) == 0)
1648 return 1;
1649
1650 return 0;
1651 }
1652
1653 /* Walk over the token list replacing nodes with their expansion.
1654 * Whenever nodes are expanded the walking will walk over the new
1655 * nodes, continuing to expand as necessary. The results are placed in
1656 * 'list' itself;
1657 */
1658 static void
1659 _glcpp_parser_expand_token_list (glcpp_parser_t *parser,
1660 token_list_t *list)
1661 {
1662 token_node_t *node_prev;
1663 token_node_t *node, *last = NULL;
1664 token_list_t *expansion;
1665 active_list_t *active_initial = parser->active;
1666
1667 if (list == NULL)
1668 return;
1669
1670 _token_list_trim_trailing_space (list);
1671
1672 node_prev = NULL;
1673 node = list->head;
1674
1675 while (node) {
1676
1677 while (parser->active && parser->active->marker == node)
1678 _parser_active_list_pop (parser);
1679
1680 expansion = _glcpp_parser_expand_node (parser, node, &last);
1681 if (expansion) {
1682 token_node_t *n;
1683
1684 for (n = node; n != last->next; n = n->next)
1685 while (parser->active &&
1686 parser->active->marker == n)
1687 {
1688 _parser_active_list_pop (parser);
1689 }
1690
1691 _parser_active_list_push (parser,
1692 node->token->value.str,
1693 last->next);
1694
1695 /* Splice expansion into list, supporting a
1696 * simple deletion if the expansion is
1697 * empty. */
1698 if (expansion->head) {
1699 if (node_prev)
1700 node_prev->next = expansion->head;
1701 else
1702 list->head = expansion->head;
1703 expansion->tail->next = last->next;
1704 if (last == list->tail)
1705 list->tail = expansion->tail;
1706 } else {
1707 if (node_prev)
1708 node_prev->next = last->next;
1709 else
1710 list->head = last->next;
1711 if (last == list->tail)
1712 list->tail = NULL;
1713 }
1714 } else {
1715 node_prev = node;
1716 }
1717 node = node_prev ? node_prev->next : list->head;
1718 }
1719
1720 /* Remove any lingering effects of this invocation on the
1721 * active list. That is, pop until the list looks like it did
1722 * at the beginning of this function. */
1723 while (parser->active && parser->active != active_initial)
1724 _parser_active_list_pop (parser);
1725
1726 list->non_space_tail = list->tail;
1727 }
1728
1729 void
1730 _glcpp_parser_print_expanded_token_list (glcpp_parser_t *parser,
1731 token_list_t *list)
1732 {
1733 if (list == NULL)
1734 return;
1735
1736 _glcpp_parser_expand_token_list (parser, list);
1737
1738 _token_list_trim_trailing_space (list);
1739
1740 _token_list_print (parser, list);
1741 }
1742
1743 static void
1744 _check_for_reserved_macro_name (glcpp_parser_t *parser, YYLTYPE *loc,
1745 const char *identifier)
1746 {
1747 /* According to the GLSL specification, macro names starting with "__"
1748 * or "GL_" are reserved for future use. So, don't allow them.
1749 */
1750 if (strstr(identifier, "__")) {
1751 glcpp_error (loc, parser, "Macro names containing \"__\" are reserved.\n");
1752 }
1753 if (strncmp(identifier, "GL_", 3) == 0) {
1754 glcpp_error (loc, parser, "Macro names starting with \"GL_\" are reserved.\n");
1755 }
1756 }
1757
1758 static int
1759 _macro_equal (macro_t *a, macro_t *b)
1760 {
1761 if (a->is_function != b->is_function)
1762 return 0;
1763
1764 if (a->is_function) {
1765 if (! _string_list_equal (a->parameters, b->parameters))
1766 return 0;
1767 }
1768
1769 return _token_list_equal_ignoring_space (a->replacements,
1770 b->replacements);
1771 }
1772
1773 void
1774 _define_object_macro (glcpp_parser_t *parser,
1775 YYLTYPE *loc,
1776 const char *identifier,
1777 token_list_t *replacements)
1778 {
1779 macro_t *macro, *previous;
1780
1781 if (loc != NULL)
1782 _check_for_reserved_macro_name(parser, loc, identifier);
1783
1784 macro = ralloc (parser, macro_t);
1785
1786 macro->is_function = 0;
1787 macro->parameters = NULL;
1788 macro->identifier = ralloc_strdup (macro, identifier);
1789 macro->replacements = replacements;
1790 ralloc_steal (macro, replacements);
1791
1792 previous = hash_table_find (parser->defines, identifier);
1793 if (previous) {
1794 if (_macro_equal (macro, previous)) {
1795 ralloc_free (macro);
1796 return;
1797 }
1798 glcpp_error (loc, parser, "Redefinition of macro %s\n",
1799 identifier);
1800 }
1801
1802 hash_table_insert (parser->defines, macro, identifier);
1803 }
1804
1805 void
1806 _define_function_macro (glcpp_parser_t *parser,
1807 YYLTYPE *loc,
1808 const char *identifier,
1809 string_list_t *parameters,
1810 token_list_t *replacements)
1811 {
1812 macro_t *macro, *previous;
1813
1814 _check_for_reserved_macro_name(parser, loc, identifier);
1815
1816 macro = ralloc (parser, macro_t);
1817 ralloc_steal (macro, parameters);
1818 ralloc_steal (macro, replacements);
1819
1820 macro->is_function = 1;
1821 macro->parameters = parameters;
1822 macro->identifier = ralloc_strdup (macro, identifier);
1823 macro->replacements = replacements;
1824 previous = hash_table_find (parser->defines, identifier);
1825 if (previous) {
1826 if (_macro_equal (macro, previous)) {
1827 ralloc_free (macro);
1828 return;
1829 }
1830 glcpp_error (loc, parser, "Redefinition of macro %s\n",
1831 identifier);
1832 }
1833
1834 hash_table_insert (parser->defines, macro, identifier);
1835 }
1836
1837 static int
1838 glcpp_parser_lex (YYSTYPE *yylval, YYLTYPE *yylloc, glcpp_parser_t *parser)
1839 {
1840 token_node_t *node;
1841 int ret;
1842
1843 if (parser->lex_from_list == NULL) {
1844 ret = glcpp_lex (yylval, yylloc, parser->scanner);
1845
1846 /* XXX: This ugly block of code exists for the sole
1847 * purpose of converting a NEWLINE token into a SPACE
1848 * token, but only in the case where we have seen a
1849 * function-like macro name, but have not yet seen its
1850 * closing parenthesis.
1851 *
1852 * There's perhaps a more compact way to do this with
1853 * mid-rule actions in the grammar.
1854 *
1855 * I'm definitely not pleased with the complexity of
1856 * this code here.
1857 */
1858 if (parser->newline_as_space)
1859 {
1860 if (ret == '(') {
1861 parser->paren_count++;
1862 } else if (ret == ')') {
1863 parser->paren_count--;
1864 if (parser->paren_count == 0)
1865 parser->newline_as_space = 0;
1866 } else if (ret == NEWLINE) {
1867 ret = SPACE;
1868 } else if (ret != SPACE) {
1869 if (parser->paren_count == 0)
1870 parser->newline_as_space = 0;
1871 }
1872 }
1873 else if (parser->in_control_line)
1874 {
1875 if (ret == NEWLINE)
1876 parser->in_control_line = 0;
1877 }
1878 else if (ret == HASH_DEFINE ||
1879 ret == HASH_UNDEF || ret == HASH_IF ||
1880 ret == HASH_IFDEF || ret == HASH_IFNDEF ||
1881 ret == HASH_ELIF || ret == HASH_ELSE ||
1882 ret == HASH_ENDIF || ret == HASH)
1883 {
1884 parser->in_control_line = 1;
1885 }
1886 else if (ret == IDENTIFIER)
1887 {
1888 macro_t *macro;
1889 macro = hash_table_find (parser->defines,
1890 yylval->str);
1891 if (macro && macro->is_function) {
1892 parser->newline_as_space = 1;
1893 parser->paren_count = 0;
1894 }
1895 }
1896
1897 return ret;
1898 }
1899
1900 node = parser->lex_from_node;
1901
1902 if (node == NULL) {
1903 ralloc_free (parser->lex_from_list);
1904 parser->lex_from_list = NULL;
1905 return NEWLINE;
1906 }
1907
1908 *yylval = node->token->value;
1909 ret = node->token->type;
1910
1911 parser->lex_from_node = node->next;
1912
1913 return ret;
1914 }
1915
1916 static void
1917 glcpp_parser_lex_from (glcpp_parser_t *parser, token_list_t *list)
1918 {
1919 token_node_t *node;
1920
1921 assert (parser->lex_from_list == NULL);
1922
1923 /* Copy list, eliminating any space tokens. */
1924 parser->lex_from_list = _token_list_create (parser);
1925
1926 for (node = list->head; node; node = node->next) {
1927 if (node->token->type == SPACE)
1928 continue;
1929 _token_list_append (parser->lex_from_list, node->token);
1930 }
1931
1932 ralloc_free (list);
1933
1934 parser->lex_from_node = parser->lex_from_list->head;
1935
1936 /* It's possible the list consisted of nothing but whitespace. */
1937 if (parser->lex_from_node == NULL) {
1938 ralloc_free (parser->lex_from_list);
1939 parser->lex_from_list = NULL;
1940 }
1941 }
1942
1943 static void
1944 _glcpp_parser_skip_stack_push_if (glcpp_parser_t *parser, YYLTYPE *loc,
1945 int condition)
1946 {
1947 skip_type_t current = SKIP_NO_SKIP;
1948 skip_node_t *node;
1949
1950 if (parser->skip_stack)
1951 current = parser->skip_stack->type;
1952
1953 node = ralloc (parser, skip_node_t);
1954 node->loc = *loc;
1955
1956 if (current == SKIP_NO_SKIP) {
1957 if (condition)
1958 node->type = SKIP_NO_SKIP;
1959 else
1960 node->type = SKIP_TO_ELSE;
1961 } else {
1962 node->type = SKIP_TO_ENDIF;
1963 }
1964
1965 node->next = parser->skip_stack;
1966 parser->skip_stack = node;
1967 }
1968
1969 static void
1970 _glcpp_parser_skip_stack_change_if (glcpp_parser_t *parser, YYLTYPE *loc,
1971 const char *type, int condition)
1972 {
1973 if (parser->skip_stack == NULL) {
1974 glcpp_error (loc, parser, "%s without #if\n", type);
1975 return;
1976 }
1977
1978 if (parser->skip_stack->type == SKIP_TO_ELSE) {
1979 if (condition)
1980 parser->skip_stack->type = SKIP_NO_SKIP;
1981 } else {
1982 parser->skip_stack->type = SKIP_TO_ENDIF;
1983 }
1984 }
1985
1986 static void
1987 _glcpp_parser_skip_stack_pop (glcpp_parser_t *parser, YYLTYPE *loc)
1988 {
1989 skip_node_t *node;
1990
1991 if (parser->skip_stack == NULL) {
1992 glcpp_error (loc, parser, "#endif without #if\n");
1993 return;
1994 }
1995
1996 node = parser->skip_stack;
1997 parser->skip_stack = node->next;
1998 ralloc_free (node);
1999 }