glsl: Remove unused field loop_variable_state::loop.
[mesa.git] / src / glsl / ast.h
1 /* -*- c++ -*- */
2 /*
3 * Copyright © 2009 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 #pragma once
26 #ifndef AST_H
27 #define AST_H
28
29 #include "list.h"
30 #include "glsl_parser_extras.h"
31
32 struct _mesa_glsl_parse_state;
33
34 struct YYLTYPE;
35
36 /**
37 * \defgroup AST Abstract syntax tree node definitions
38 *
39 * An abstract syntax tree is generated by the parser. This is a fairly
40 * direct representation of the gramma derivation for the source program.
41 * No symantic checking is done during the generation of the AST. Only
42 * syntactic checking is done. Symantic checking is performed by a later
43 * stage that converts the AST to a more generic intermediate representation.
44 *
45 *@{
46 */
47 /**
48 * Base class of all abstract syntax tree nodes
49 */
50 class ast_node {
51 public:
52 DECLARE_RALLOC_CXX_OPERATORS(ast_node);
53
54 /**
55 * Print an AST node in something approximating the original GLSL code
56 */
57 virtual void print(void) const;
58
59 /**
60 * Convert the AST node to the high-level intermediate representation
61 */
62 virtual ir_rvalue *hir(exec_list *instructions,
63 struct _mesa_glsl_parse_state *state);
64
65 /**
66 * Retrieve the source location of an AST node
67 *
68 * This function is primarily used to get the source position of an AST node
69 * into a form that can be passed to \c _mesa_glsl_error.
70 *
71 * \sa _mesa_glsl_error, ast_node::set_location
72 */
73 struct YYLTYPE get_location(void) const
74 {
75 struct YYLTYPE locp;
76
77 locp.source = this->location.source;
78 locp.first_line = this->location.line;
79 locp.first_column = this->location.column;
80 locp.last_line = locp.first_line;
81 locp.last_column = locp.first_column;
82
83 return locp;
84 }
85
86 /**
87 * Set the source location of an AST node from a parser location
88 *
89 * \sa ast_node::get_location
90 */
91 void set_location(const struct YYLTYPE &locp)
92 {
93 this->location.source = locp.source;
94 this->location.line = locp.first_line;
95 this->location.column = locp.first_column;
96 }
97
98 /**
99 * Source location of the AST node.
100 */
101 struct {
102 unsigned source; /**< GLSL source number. */
103 unsigned line; /**< Line number within the source string. */
104 unsigned column; /**< Column in the line. */
105 } location;
106
107 exec_node link;
108
109 protected:
110 /**
111 * The only constructor is protected so that only derived class objects can
112 * be created.
113 */
114 ast_node(void);
115 };
116
117
118 /**
119 * Operators for AST expression nodes.
120 */
121 enum ast_operators {
122 ast_assign,
123 ast_plus, /**< Unary + operator. */
124 ast_neg,
125 ast_add,
126 ast_sub,
127 ast_mul,
128 ast_div,
129 ast_mod,
130 ast_lshift,
131 ast_rshift,
132 ast_less,
133 ast_greater,
134 ast_lequal,
135 ast_gequal,
136 ast_equal,
137 ast_nequal,
138 ast_bit_and,
139 ast_bit_xor,
140 ast_bit_or,
141 ast_bit_not,
142 ast_logic_and,
143 ast_logic_xor,
144 ast_logic_or,
145 ast_logic_not,
146
147 ast_mul_assign,
148 ast_div_assign,
149 ast_mod_assign,
150 ast_add_assign,
151 ast_sub_assign,
152 ast_ls_assign,
153 ast_rs_assign,
154 ast_and_assign,
155 ast_xor_assign,
156 ast_or_assign,
157
158 ast_conditional,
159
160 ast_pre_inc,
161 ast_pre_dec,
162 ast_post_inc,
163 ast_post_dec,
164 ast_field_selection,
165 ast_array_index,
166
167 ast_function_call,
168
169 ast_identifier,
170 ast_int_constant,
171 ast_uint_constant,
172 ast_float_constant,
173 ast_bool_constant,
174
175 ast_sequence,
176 ast_aggregate
177 };
178
179 /**
180 * Representation of any sort of expression.
181 */
182 class ast_expression : public ast_node {
183 public:
184 ast_expression(int oper, ast_expression *,
185 ast_expression *, ast_expression *);
186
187 ast_expression(const char *identifier) :
188 oper(ast_identifier)
189 {
190 subexpressions[0] = NULL;
191 subexpressions[1] = NULL;
192 subexpressions[2] = NULL;
193 primary_expression.identifier = identifier;
194 this->non_lvalue_description = NULL;
195 }
196
197 static const char *operator_string(enum ast_operators op);
198
199 virtual ir_rvalue *hir(exec_list *instructions,
200 struct _mesa_glsl_parse_state *state);
201
202 virtual void print(void) const;
203
204 enum ast_operators oper;
205
206 ast_expression *subexpressions[3];
207
208 union {
209 const char *identifier;
210 int int_constant;
211 float float_constant;
212 unsigned uint_constant;
213 int bool_constant;
214 } primary_expression;
215
216
217 /**
218 * List of expressions for an \c ast_sequence or parameters for an
219 * \c ast_function_call
220 */
221 exec_list expressions;
222
223 /**
224 * For things that can't be l-values, this describes what it is.
225 *
226 * This text is used by the code that generates IR for assignments to
227 * detect and emit useful messages for assignments to some things that
228 * can't be l-values. For example, pre- or post-incerement expressions.
229 *
230 * \note
231 * This pointer may be \c NULL.
232 */
233 const char *non_lvalue_description;
234 };
235
236 class ast_expression_bin : public ast_expression {
237 public:
238 ast_expression_bin(int oper, ast_expression *, ast_expression *);
239
240 virtual void print(void) const;
241 };
242
243 /**
244 * Subclass of expressions for function calls
245 */
246 class ast_function_expression : public ast_expression {
247 public:
248 ast_function_expression(ast_expression *callee)
249 : ast_expression(ast_function_call, callee,
250 NULL, NULL),
251 cons(false)
252 {
253 /* empty */
254 }
255
256 ast_function_expression(class ast_type_specifier *type)
257 : ast_expression(ast_function_call, (ast_expression *) type,
258 NULL, NULL),
259 cons(true)
260 {
261 /* empty */
262 }
263
264 bool is_constructor() const
265 {
266 return cons;
267 }
268
269 virtual ir_rvalue *hir(exec_list *instructions,
270 struct _mesa_glsl_parse_state *state);
271
272 private:
273 /**
274 * Is this function call actually a constructor?
275 */
276 bool cons;
277 };
278
279 /**
280 * C-style aggregate initialization class
281 *
282 * Represents C-style initializers of vectors, matrices, arrays, and
283 * structures. E.g., vec3 pos = {1.0, 0.0, -1.0} is equivalent to
284 * vec3 pos = vec3(1.0, 0.0, -1.0).
285 *
286 * Specified in GLSL 4.20 and GL_ARB_shading_language_420pack.
287 *
288 * \sa _mesa_ast_set_aggregate_type
289 */
290 class ast_aggregate_initializer : public ast_expression {
291 public:
292 ast_aggregate_initializer()
293 : ast_expression(ast_aggregate, NULL, NULL, NULL),
294 constructor_type(NULL)
295 {
296 /* empty */
297 }
298
299 ast_type_specifier *constructor_type;
300 virtual ir_rvalue *hir(exec_list *instructions,
301 struct _mesa_glsl_parse_state *state);
302 };
303
304 /**
305 * Number of possible operators for an ast_expression
306 *
307 * This is done as a define instead of as an additional value in the enum so
308 * that the compiler won't generate spurious messages like "warning:
309 * enumeration value ‘ast_num_operators’ not handled in switch"
310 */
311 #define AST_NUM_OPERATORS (ast_sequence + 1)
312
313
314 class ast_compound_statement : public ast_node {
315 public:
316 ast_compound_statement(int new_scope, ast_node *statements);
317 virtual void print(void) const;
318
319 virtual ir_rvalue *hir(exec_list *instructions,
320 struct _mesa_glsl_parse_state *state);
321
322 int new_scope;
323 exec_list statements;
324 };
325
326 class ast_declaration : public ast_node {
327 public:
328 ast_declaration(const char *identifier, bool is_array, ast_expression *array_size,
329 ast_expression *initializer);
330 virtual void print(void) const;
331
332 const char *identifier;
333
334 bool is_array;
335 ast_expression *array_size;
336
337 ast_expression *initializer;
338 };
339
340
341 enum {
342 ast_precision_none = 0, /**< Absence of precision qualifier. */
343 ast_precision_high,
344 ast_precision_medium,
345 ast_precision_low
346 };
347
348 struct ast_type_qualifier {
349 DECLARE_RALLOC_CXX_OPERATORS(ast_type_qualifier);
350
351 union {
352 struct {
353 unsigned invariant:1;
354 unsigned constant:1;
355 unsigned attribute:1;
356 unsigned varying:1;
357 unsigned in:1;
358 unsigned out:1;
359 unsigned centroid:1;
360 unsigned uniform:1;
361 unsigned smooth:1;
362 unsigned flat:1;
363 unsigned noperspective:1;
364
365 /** \name Layout qualifiers for GL_ARB_fragment_coord_conventions */
366 /*@{*/
367 unsigned origin_upper_left:1;
368 unsigned pixel_center_integer:1;
369 /*@}*/
370
371 /**
372 * Flag set if GL_ARB_explicit_attrib_location "location" layout
373 * qualifier is used.
374 */
375 unsigned explicit_location:1;
376 /**
377 * Flag set if GL_ARB_explicit_attrib_location "index" layout
378 * qualifier is used.
379 */
380 unsigned explicit_index:1;
381
382 /**
383 * Flag set if GL_ARB_shading_language_420pack "binding" layout
384 * qualifier is used.
385 */
386 unsigned explicit_binding:1;
387
388 /**
389 * Flag set if GL_ARB_shader_atomic counter "offset" layout
390 * qualifier is used.
391 */
392 unsigned explicit_offset:1;
393
394 /** \name Layout qualifiers for GL_AMD_conservative_depth */
395 /** \{ */
396 unsigned depth_any:1;
397 unsigned depth_greater:1;
398 unsigned depth_less:1;
399 unsigned depth_unchanged:1;
400 /** \} */
401
402 /** \name Layout qualifiers for GL_ARB_uniform_buffer_object */
403 /** \{ */
404 unsigned std140:1;
405 unsigned shared:1;
406 unsigned packed:1;
407 unsigned column_major:1;
408 unsigned row_major:1;
409 /** \} */
410
411 /** \name Layout qualifiers for GLSL 1.50 geometry shaders */
412 /** \{ */
413 unsigned prim_type:1;
414 unsigned max_vertices:1;
415 /** \} */
416 }
417 /** \brief Set of flags, accessed by name. */
418 q;
419
420 /** \brief Set of flags, accessed as a bitmask. */
421 unsigned i;
422 } flags;
423
424 /** Precision of the type (highp/medium/lowp). */
425 unsigned precision:2;
426
427 /**
428 * Location specified via GL_ARB_explicit_attrib_location layout
429 *
430 * \note
431 * This field is only valid if \c explicit_location is set.
432 */
433 int location;
434 /**
435 * Index specified via GL_ARB_explicit_attrib_location layout
436 *
437 * \note
438 * This field is only valid if \c explicit_index is set.
439 */
440 int index;
441
442 /** Maximum output vertices in GLSL 1.50 geometry shaders. */
443 int max_vertices;
444
445 /** Input or output primitive type in GLSL 1.50 geometry shaders */
446 GLenum prim_type;
447
448 /**
449 * Binding specified via GL_ARB_shading_language_420pack's "binding" keyword.
450 *
451 * \note
452 * This field is only valid if \c explicit_binding is set.
453 */
454 int binding;
455
456 /**
457 * Offset specified via GL_ARB_shader_atomic_counter's "offset"
458 * keyword.
459 *
460 * \note
461 * This field is only valid if \c explicit_offset is set.
462 */
463 int offset;
464
465 /**
466 * Return true if and only if an interpolation qualifier is present.
467 */
468 bool has_interpolation() const;
469
470 /**
471 * Return whether a layout qualifier is present.
472 */
473 bool has_layout() const;
474
475 /**
476 * Return whether a storage qualifier is present.
477 */
478 bool has_storage() const;
479
480 /**
481 * Return whether an auxiliary storage qualifier is present.
482 */
483 bool has_auxiliary_storage() const;
484
485 /**
486 * \brief Return string representation of interpolation qualifier.
487 *
488 * If an interpolation qualifier is present, then return that qualifier's
489 * string representation. Otherwise, return null. For example, if the
490 * noperspective bit is set, then this returns "noperspective".
491 *
492 * If multiple interpolation qualifiers are somehow present, then the
493 * returned string is undefined but not null.
494 */
495 const char *interpolation_string() const;
496
497 bool merge_qualifier(YYLTYPE *loc,
498 _mesa_glsl_parse_state *state,
499 ast_type_qualifier q);
500 };
501
502 class ast_declarator_list;
503
504 class ast_struct_specifier : public ast_node {
505 public:
506 /**
507 * \brief Make a shallow copy of an ast_struct_specifier.
508 *
509 * Use only if the objects are allocated from the same context and will not
510 * be modified. Zeros the inherited ast_node's fields.
511 */
512 ast_struct_specifier(const ast_struct_specifier& that):
513 ast_node(), name(that.name), declarations(that.declarations),
514 is_declaration(that.is_declaration)
515 {
516 /* empty */
517 }
518
519 ast_struct_specifier(const char *identifier,
520 ast_declarator_list *declarator_list);
521 virtual void print(void) const;
522
523 virtual ir_rvalue *hir(exec_list *instructions,
524 struct _mesa_glsl_parse_state *state);
525
526 const char *name;
527 /* List of ast_declarator_list * */
528 exec_list declarations;
529 bool is_declaration;
530 };
531
532
533
534 class ast_type_specifier : public ast_node {
535 public:
536 /**
537 * \brief Make a shallow copy of an ast_type_specifier, specifying array
538 * fields.
539 *
540 * Use only if the objects are allocated from the same context and will not
541 * be modified. Zeros the inherited ast_node's fields.
542 */
543 ast_type_specifier(const ast_type_specifier *that, bool is_array,
544 ast_expression *array_size)
545 : ast_node(), type_name(that->type_name), structure(that->structure),
546 is_array(is_array), array_size(array_size),
547 default_precision(that->default_precision)
548 {
549 /* empty */
550 }
551
552 /** Construct a type specifier from a type name */
553 ast_type_specifier(const char *name)
554 : type_name(name), structure(NULL),
555 is_array(false), array_size(NULL),
556 default_precision(ast_precision_none)
557 {
558 /* empty */
559 }
560
561 /** Construct a type specifier from a structure definition */
562 ast_type_specifier(ast_struct_specifier *s)
563 : type_name(s->name), structure(s),
564 is_array(false), array_size(NULL),
565 default_precision(ast_precision_none)
566 {
567 /* empty */
568 }
569
570 const struct glsl_type *glsl_type(const char **name,
571 struct _mesa_glsl_parse_state *state)
572 const;
573
574 virtual void print(void) const;
575
576 ir_rvalue *hir(exec_list *, struct _mesa_glsl_parse_state *);
577
578 const char *type_name;
579 ast_struct_specifier *structure;
580
581 bool is_array;
582 ast_expression *array_size;
583
584 /** For precision statements, this is the given precision; otherwise none. */
585 unsigned default_precision:2;
586 };
587
588
589 class ast_fully_specified_type : public ast_node {
590 public:
591 virtual void print(void) const;
592 bool has_qualifiers() const;
593
594 ast_fully_specified_type() : qualifier(), specifier(NULL)
595 {
596 }
597
598 const struct glsl_type *glsl_type(const char **name,
599 struct _mesa_glsl_parse_state *state)
600 const;
601
602 ast_type_qualifier qualifier;
603 ast_type_specifier *specifier;
604 };
605
606
607 class ast_declarator_list : public ast_node {
608 public:
609 ast_declarator_list(ast_fully_specified_type *);
610 virtual void print(void) const;
611
612 virtual ir_rvalue *hir(exec_list *instructions,
613 struct _mesa_glsl_parse_state *state);
614
615 ast_fully_specified_type *type;
616 /** List of 'ast_declaration *' */
617 exec_list declarations;
618
619 /**
620 * Special flag for vertex shader "invariant" declarations.
621 *
622 * Vertex shaders can contain "invariant" variable redeclarations that do
623 * not include a type. For example, "invariant gl_Position;". This flag
624 * is used to note these cases when no type is specified.
625 */
626 int invariant;
627 };
628
629
630 class ast_parameter_declarator : public ast_node {
631 public:
632 ast_parameter_declarator() :
633 type(NULL),
634 identifier(NULL),
635 is_array(false),
636 array_size(NULL),
637 formal_parameter(false),
638 is_void(false)
639 {
640 /* empty */
641 }
642
643 virtual void print(void) const;
644
645 virtual ir_rvalue *hir(exec_list *instructions,
646 struct _mesa_glsl_parse_state *state);
647
648 ast_fully_specified_type *type;
649 const char *identifier;
650 bool is_array;
651 ast_expression *array_size;
652
653 static void parameters_to_hir(exec_list *ast_parameters,
654 bool formal, exec_list *ir_parameters,
655 struct _mesa_glsl_parse_state *state);
656
657 private:
658 /** Is this parameter declaration part of a formal parameter list? */
659 bool formal_parameter;
660
661 /**
662 * Is this parameter 'void' type?
663 *
664 * This field is set by \c ::hir.
665 */
666 bool is_void;
667 };
668
669
670 class ast_function : public ast_node {
671 public:
672 ast_function(void);
673
674 virtual void print(void) const;
675
676 virtual ir_rvalue *hir(exec_list *instructions,
677 struct _mesa_glsl_parse_state *state);
678
679 ast_fully_specified_type *return_type;
680 const char *identifier;
681
682 exec_list parameters;
683
684 private:
685 /**
686 * Is this prototype part of the function definition?
687 *
688 * Used by ast_function_definition::hir to process the parameters, etc.
689 * of the function.
690 *
691 * \sa ::hir
692 */
693 bool is_definition;
694
695 /**
696 * Function signature corresponding to this function prototype instance
697 *
698 * Used by ast_function_definition::hir to process the parameters, etc.
699 * of the function.
700 *
701 * \sa ::hir
702 */
703 class ir_function_signature *signature;
704
705 friend class ast_function_definition;
706 };
707
708
709 class ast_expression_statement : public ast_node {
710 public:
711 ast_expression_statement(ast_expression *);
712 virtual void print(void) const;
713
714 virtual ir_rvalue *hir(exec_list *instructions,
715 struct _mesa_glsl_parse_state *state);
716
717 ast_expression *expression;
718 };
719
720
721 class ast_case_label : public ast_node {
722 public:
723 ast_case_label(ast_expression *test_value);
724 virtual void print(void) const;
725
726 virtual ir_rvalue *hir(exec_list *instructions,
727 struct _mesa_glsl_parse_state *state);
728
729 /**
730 * An test value of NULL means 'default'.
731 */
732 ast_expression *test_value;
733 };
734
735
736 class ast_case_label_list : public ast_node {
737 public:
738 ast_case_label_list(void);
739 virtual void print(void) const;
740
741 virtual ir_rvalue *hir(exec_list *instructions,
742 struct _mesa_glsl_parse_state *state);
743
744 /**
745 * A list of case labels.
746 */
747 exec_list labels;
748 };
749
750
751 class ast_case_statement : public ast_node {
752 public:
753 ast_case_statement(ast_case_label_list *labels);
754 virtual void print(void) const;
755
756 virtual ir_rvalue *hir(exec_list *instructions,
757 struct _mesa_glsl_parse_state *state);
758
759 ast_case_label_list *labels;
760
761 /**
762 * A list of statements.
763 */
764 exec_list stmts;
765 };
766
767
768 class ast_case_statement_list : public ast_node {
769 public:
770 ast_case_statement_list(void);
771 virtual void print(void) const;
772
773 virtual ir_rvalue *hir(exec_list *instructions,
774 struct _mesa_glsl_parse_state *state);
775
776 /**
777 * A list of cases.
778 */
779 exec_list cases;
780 };
781
782
783 class ast_switch_body : public ast_node {
784 public:
785 ast_switch_body(ast_case_statement_list *stmts);
786 virtual void print(void) const;
787
788 virtual ir_rvalue *hir(exec_list *instructions,
789 struct _mesa_glsl_parse_state *state);
790
791 ast_case_statement_list *stmts;
792 };
793
794
795 class ast_selection_statement : public ast_node {
796 public:
797 ast_selection_statement(ast_expression *condition,
798 ast_node *then_statement,
799 ast_node *else_statement);
800 virtual void print(void) const;
801
802 virtual ir_rvalue *hir(exec_list *instructions,
803 struct _mesa_glsl_parse_state *state);
804
805 ast_expression *condition;
806 ast_node *then_statement;
807 ast_node *else_statement;
808 };
809
810
811 class ast_switch_statement : public ast_node {
812 public:
813 ast_switch_statement(ast_expression *test_expression,
814 ast_node *body);
815 virtual void print(void) const;
816
817 virtual ir_rvalue *hir(exec_list *instructions,
818 struct _mesa_glsl_parse_state *state);
819
820 ast_expression *test_expression;
821 ast_node *body;
822
823 protected:
824 void test_to_hir(exec_list *, struct _mesa_glsl_parse_state *);
825 };
826
827 class ast_iteration_statement : public ast_node {
828 public:
829 ast_iteration_statement(int mode, ast_node *init, ast_node *condition,
830 ast_expression *rest_expression, ast_node *body);
831
832 virtual void print(void) const;
833
834 virtual ir_rvalue *hir(exec_list *, struct _mesa_glsl_parse_state *);
835
836 enum ast_iteration_modes {
837 ast_for,
838 ast_while,
839 ast_do_while
840 } mode;
841
842
843 ast_node *init_statement;
844 ast_node *condition;
845 ast_expression *rest_expression;
846
847 ast_node *body;
848
849 private:
850 /**
851 * Generate IR from the condition of a loop
852 *
853 * This is factored out of ::hir because some loops have the condition
854 * test at the top (for and while), and others have it at the end (do-while).
855 */
856 void condition_to_hir(class ir_loop *, struct _mesa_glsl_parse_state *);
857 };
858
859
860 class ast_jump_statement : public ast_node {
861 public:
862 ast_jump_statement(int mode, ast_expression *return_value);
863 virtual void print(void) const;
864
865 virtual ir_rvalue *hir(exec_list *instructions,
866 struct _mesa_glsl_parse_state *state);
867
868 enum ast_jump_modes {
869 ast_continue,
870 ast_break,
871 ast_return,
872 ast_discard
873 } mode;
874
875 ast_expression *opt_return_value;
876 };
877
878
879 class ast_function_definition : public ast_node {
880 public:
881 ast_function_definition() : prototype(NULL), body(NULL)
882 {
883 }
884
885 virtual void print(void) const;
886
887 virtual ir_rvalue *hir(exec_list *instructions,
888 struct _mesa_glsl_parse_state *state);
889
890 ast_function *prototype;
891 ast_compound_statement *body;
892 };
893
894 class ast_interface_block : public ast_node {
895 public:
896 ast_interface_block(ast_type_qualifier layout,
897 const char *instance_name,
898 bool is_array,
899 ast_expression *array_size)
900 : layout(layout), block_name(NULL), instance_name(instance_name),
901 is_array(is_array), array_size(array_size)
902 {
903 if (!is_array)
904 assert(array_size == NULL);
905 }
906
907 virtual ir_rvalue *hir(exec_list *instructions,
908 struct _mesa_glsl_parse_state *state);
909
910 ast_type_qualifier layout;
911 const char *block_name;
912
913 /**
914 * Declared name of the block instance, if specified.
915 *
916 * If the block does not have an instance name, this field will be
917 * \c NULL.
918 */
919 const char *instance_name;
920
921 /** List of ast_declarator_list * */
922 exec_list declarations;
923
924 /**
925 * True if the block is declared as an array
926 *
927 * \note
928 * A block can only be an array if it also has an instance name. If this
929 * field is true, ::instance_name must also not be \c NULL.
930 */
931 bool is_array;
932
933 /**
934 * Declared array size of the block instance
935 *
936 * If the block is not declared as an array or if the block instance array
937 * is unsized, this field will be \c NULL.
938 */
939 ast_expression *array_size;
940 };
941
942
943 /**
944 * AST node representing a declaration of the input layout for geometry
945 * shaders.
946 */
947 class ast_gs_input_layout : public ast_node
948 {
949 public:
950 ast_gs_input_layout(const struct YYLTYPE &locp, GLenum prim_type)
951 : prim_type(prim_type)
952 {
953 set_location(locp);
954 }
955
956 virtual ir_rvalue *hir(exec_list *instructions,
957 struct _mesa_glsl_parse_state *state);
958
959 private:
960 const GLenum prim_type;
961 };
962
963 /*@}*/
964
965 extern void
966 _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state);
967
968 extern ir_rvalue *
969 _mesa_ast_field_selection_to_hir(const ast_expression *expr,
970 exec_list *instructions,
971 struct _mesa_glsl_parse_state *state);
972
973 extern ir_rvalue *
974 _mesa_ast_array_index_to_hir(void *mem_ctx,
975 struct _mesa_glsl_parse_state *state,
976 ir_rvalue *array, ir_rvalue *idx,
977 YYLTYPE &loc, YYLTYPE &idx_loc);
978
979 extern void
980 _mesa_ast_set_aggregate_type(const ast_type_specifier *type,
981 ast_expression *expr,
982 _mesa_glsl_parse_state *state);
983
984 void
985 emit_function(_mesa_glsl_parse_state *state, ir_function *f);
986
987 extern void
988 check_builtin_array_max_size(const char *name, unsigned size,
989 YYLTYPE loc, struct _mesa_glsl_parse_state *state);
990
991 #endif /* AST_H */