Revert "glsl: geom shader max_vertices layout must match."
[mesa.git] / src / compiler / 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_LINEAR_ZALLOC_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 virtual bool has_sequence_subexpression() const;
66
67 /**
68 * Retrieve the source location of an AST node
69 *
70 * This function is primarily used to get the source position of an AST node
71 * into a form that can be passed to \c _mesa_glsl_error.
72 *
73 * \sa _mesa_glsl_error, ast_node::set_location
74 */
75 struct YYLTYPE get_location(void) const
76 {
77 struct YYLTYPE locp;
78
79 locp.source = this->location.source;
80 locp.first_line = this->location.first_line;
81 locp.first_column = this->location.first_column;
82 locp.last_line = this->location.last_line;
83 locp.last_column = this->location.last_column;
84
85 return locp;
86 }
87
88 /**
89 * Set the source location of an AST node from a parser location
90 *
91 * \sa ast_node::get_location
92 */
93 void set_location(const struct YYLTYPE &locp)
94 {
95 this->location.source = locp.source;
96 this->location.first_line = locp.first_line;
97 this->location.first_column = locp.first_column;
98 this->location.last_line = locp.last_line;
99 this->location.last_column = locp.last_column;
100 }
101
102 /**
103 * Set the source location range of an AST node using two location nodes
104 *
105 * \sa ast_node::set_location
106 */
107 void set_location_range(const struct YYLTYPE &begin, const struct YYLTYPE &end)
108 {
109 this->location.source = begin.source;
110 this->location.first_line = begin.first_line;
111 this->location.last_line = end.last_line;
112 this->location.first_column = begin.first_column;
113 this->location.last_column = end.last_column;
114 }
115
116 /**
117 * Source location of the AST node.
118 */
119 struct {
120 unsigned source; /**< GLSL source number. */
121 unsigned first_line; /**< First line number within the source string. */
122 unsigned first_column; /**< First column in the first line. */
123 unsigned last_line; /**< Last line number within the source string. */
124 unsigned last_column; /**< Last column in the last line. */
125 } location;
126
127 exec_node link;
128
129 virtual void set_is_lhs(bool);
130
131 protected:
132 /**
133 * The only constructor is protected so that only derived class objects can
134 * be created.
135 */
136 ast_node(void);
137 };
138
139
140 /**
141 * Operators for AST expression nodes.
142 */
143 enum ast_operators {
144 ast_assign,
145 ast_plus, /**< Unary + operator. */
146 ast_neg,
147 ast_add,
148 ast_sub,
149 ast_mul,
150 ast_div,
151 ast_mod,
152 ast_lshift,
153 ast_rshift,
154 ast_less,
155 ast_greater,
156 ast_lequal,
157 ast_gequal,
158 ast_equal,
159 ast_nequal,
160 ast_bit_and,
161 ast_bit_xor,
162 ast_bit_or,
163 ast_bit_not,
164 ast_logic_and,
165 ast_logic_xor,
166 ast_logic_or,
167 ast_logic_not,
168
169 ast_mul_assign,
170 ast_div_assign,
171 ast_mod_assign,
172 ast_add_assign,
173 ast_sub_assign,
174 ast_ls_assign,
175 ast_rs_assign,
176 ast_and_assign,
177 ast_xor_assign,
178 ast_or_assign,
179
180 ast_conditional,
181
182 ast_pre_inc,
183 ast_pre_dec,
184 ast_post_inc,
185 ast_post_dec,
186 ast_field_selection,
187 ast_array_index,
188 ast_unsized_array_dim,
189
190 ast_function_call,
191
192 ast_identifier,
193 ast_int_constant,
194 ast_uint_constant,
195 ast_float_constant,
196 ast_bool_constant,
197 ast_double_constant,
198
199 ast_sequence,
200 ast_aggregate
201
202 /**
203 * Number of possible operators for an ast_expression
204 *
205 * This is done as a define instead of as an additional value in the enum so
206 * that the compiler won't generate spurious messages like "warning:
207 * enumeration value ‘ast_num_operators’ not handled in switch"
208 */
209 #define AST_NUM_OPERATORS (ast_aggregate + 1)
210 };
211
212 /**
213 * Representation of any sort of expression.
214 */
215 class ast_expression : public ast_node {
216 public:
217 ast_expression(int oper, ast_expression *,
218 ast_expression *, ast_expression *);
219
220 ast_expression(const char *identifier) :
221 oper(ast_identifier)
222 {
223 subexpressions[0] = NULL;
224 subexpressions[1] = NULL;
225 subexpressions[2] = NULL;
226 primary_expression.identifier = identifier;
227 this->non_lvalue_description = NULL;
228 this->is_lhs = false;
229 }
230
231 static const char *operator_string(enum ast_operators op);
232
233 virtual ir_rvalue *hir(exec_list *instructions,
234 struct _mesa_glsl_parse_state *state);
235
236 virtual void hir_no_rvalue(exec_list *instructions,
237 struct _mesa_glsl_parse_state *state);
238
239 virtual bool has_sequence_subexpression() const;
240
241 ir_rvalue *do_hir(exec_list *instructions,
242 struct _mesa_glsl_parse_state *state,
243 bool needs_rvalue);
244
245 virtual void print(void) const;
246
247 enum ast_operators oper;
248
249 ast_expression *subexpressions[3];
250
251 union {
252 const char *identifier;
253 int int_constant;
254 float float_constant;
255 unsigned uint_constant;
256 int bool_constant;
257 double double_constant;
258 } primary_expression;
259
260
261 /**
262 * List of expressions for an \c ast_sequence or parameters for an
263 * \c ast_function_call
264 */
265 exec_list expressions;
266
267 /**
268 * For things that can't be l-values, this describes what it is.
269 *
270 * This text is used by the code that generates IR for assignments to
271 * detect and emit useful messages for assignments to some things that
272 * can't be l-values. For example, pre- or post-incerement expressions.
273 *
274 * \note
275 * This pointer may be \c NULL.
276 */
277 const char *non_lvalue_description;
278
279 void set_is_lhs(bool new_value);
280
281 private:
282 bool is_lhs;
283 };
284
285 class ast_expression_bin : public ast_expression {
286 public:
287 ast_expression_bin(int oper, ast_expression *, ast_expression *);
288
289 virtual void print(void) const;
290 };
291
292 /**
293 * Subclass of expressions for function calls
294 */
295 class ast_function_expression : public ast_expression {
296 public:
297 ast_function_expression(ast_expression *callee)
298 : ast_expression(ast_function_call, callee,
299 NULL, NULL),
300 cons(false)
301 {
302 /* empty */
303 }
304
305 ast_function_expression(class ast_type_specifier *type)
306 : ast_expression(ast_function_call, (ast_expression *) type,
307 NULL, NULL),
308 cons(true)
309 {
310 /* empty */
311 }
312
313 bool is_constructor() const
314 {
315 return cons;
316 }
317
318 virtual ir_rvalue *hir(exec_list *instructions,
319 struct _mesa_glsl_parse_state *state);
320
321 virtual void hir_no_rvalue(exec_list *instructions,
322 struct _mesa_glsl_parse_state *state);
323
324 virtual bool has_sequence_subexpression() const;
325
326 private:
327 /**
328 * Is this function call actually a constructor?
329 */
330 bool cons;
331 ir_rvalue *
332 handle_method(exec_list *instructions,
333 struct _mesa_glsl_parse_state *state);
334 };
335
336 class ast_subroutine_list : public ast_node
337 {
338 public:
339 virtual void print(void) const;
340 exec_list declarations;
341 };
342
343 class ast_array_specifier : public ast_node {
344 public:
345 ast_array_specifier(const struct YYLTYPE &locp, ast_expression *dim)
346 {
347 set_location(locp);
348 array_dimensions.push_tail(&dim->link);
349 }
350
351 void add_dimension(ast_expression *dim)
352 {
353 array_dimensions.push_tail(&dim->link);
354 }
355
356 bool is_single_dimension() const
357 {
358 return this->array_dimensions.get_tail_raw()->prev != NULL &&
359 this->array_dimensions.get_tail_raw()->prev->is_head_sentinel();
360 }
361
362 virtual void print(void) const;
363
364 /* This list contains objects of type ast_node containing the
365 * array dimensions in outermost-to-innermost order.
366 */
367 exec_list array_dimensions;
368 };
369
370 class ast_layout_expression : public ast_node {
371 public:
372 ast_layout_expression(const struct YYLTYPE &locp, ast_expression *expr)
373 {
374 set_location(locp);
375 layout_const_expressions.push_tail(&expr->link);
376 }
377
378 bool process_qualifier_constant(struct _mesa_glsl_parse_state *state,
379 const char *qual_indentifier,
380 unsigned *value, bool can_be_zero);
381
382 void merge_qualifier(ast_layout_expression *l_expr)
383 {
384 layout_const_expressions.append_list(&l_expr->layout_const_expressions);
385 }
386
387 exec_list layout_const_expressions;
388 };
389
390 /**
391 * C-style aggregate initialization class
392 *
393 * Represents C-style initializers of vectors, matrices, arrays, and
394 * structures. E.g., vec3 pos = {1.0, 0.0, -1.0} is equivalent to
395 * vec3 pos = vec3(1.0, 0.0, -1.0).
396 *
397 * Specified in GLSL 4.20 and GL_ARB_shading_language_420pack.
398 *
399 * \sa _mesa_ast_set_aggregate_type
400 */
401 class ast_aggregate_initializer : public ast_expression {
402 public:
403 ast_aggregate_initializer()
404 : ast_expression(ast_aggregate, NULL, NULL, NULL),
405 constructor_type(NULL)
406 {
407 /* empty */
408 }
409
410 /**
411 * glsl_type of the aggregate, which is inferred from the LHS of whatever
412 * the aggregate is being used to initialize. This can't be inferred at
413 * parse time (since the parser deals with ast_type_specifiers, not
414 * glsl_types), so the parser leaves it NULL. However, the ast-to-hir
415 * conversion code makes sure to fill it in with the appropriate type
416 * before hir() is called.
417 */
418 const glsl_type *constructor_type;
419
420 virtual ir_rvalue *hir(exec_list *instructions,
421 struct _mesa_glsl_parse_state *state);
422
423 virtual void hir_no_rvalue(exec_list *instructions,
424 struct _mesa_glsl_parse_state *state);
425 };
426
427
428 class ast_compound_statement : public ast_node {
429 public:
430 ast_compound_statement(int new_scope, ast_node *statements);
431 virtual void print(void) const;
432
433 virtual ir_rvalue *hir(exec_list *instructions,
434 struct _mesa_glsl_parse_state *state);
435
436 int new_scope;
437 exec_list statements;
438 };
439
440 class ast_declaration : public ast_node {
441 public:
442 ast_declaration(const char *identifier,
443 ast_array_specifier *array_specifier,
444 ast_expression *initializer);
445 virtual void print(void) const;
446
447 const char *identifier;
448
449 ast_array_specifier *array_specifier;
450
451 ast_expression *initializer;
452 };
453
454
455 enum {
456 ast_precision_none = 0, /**< Absence of precision qualifier. */
457 ast_precision_high,
458 ast_precision_medium,
459 ast_precision_low
460 };
461
462 struct ast_type_qualifier {
463 DECLARE_RALLOC_CXX_OPERATORS(ast_type_qualifier);
464
465 union {
466 struct {
467 unsigned invariant:1;
468 unsigned precise:1;
469 unsigned constant:1;
470 unsigned attribute:1;
471 unsigned varying:1;
472 unsigned in:1;
473 unsigned out:1;
474 unsigned centroid:1;
475 unsigned sample:1;
476 unsigned patch:1;
477 unsigned uniform:1;
478 unsigned buffer:1;
479 unsigned shared_storage:1;
480 unsigned smooth:1;
481 unsigned flat:1;
482 unsigned noperspective:1;
483
484 /** \name Layout qualifiers for GL_ARB_fragment_coord_conventions */
485 /*@{*/
486 unsigned origin_upper_left:1;
487 unsigned pixel_center_integer:1;
488 /*@}*/
489
490 /**
491 * Flag set if GL_ARB_enhanced_layouts "align" layout qualifier is
492 * used.
493 */
494 unsigned explicit_align:1;
495
496 /**
497 * Flag set if GL_ARB_explicit_attrib_location "location" layout
498 * qualifier is used.
499 */
500 unsigned explicit_location:1;
501 /**
502 * Flag set if GL_ARB_explicit_attrib_location "index" layout
503 * qualifier is used.
504 */
505 unsigned explicit_index:1;
506
507 /**
508 * Flag set if GL_ARB_enhanced_layouts "component" layout
509 * qualifier is used.
510 */
511 unsigned explicit_component:1;
512
513 /**
514 * Flag set if GL_ARB_shading_language_420pack "binding" layout
515 * qualifier is used.
516 */
517 unsigned explicit_binding:1;
518
519 /**
520 * Flag set if GL_ARB_shader_atomic counter "offset" layout
521 * qualifier is used.
522 */
523 unsigned explicit_offset:1;
524
525 /** \name Layout qualifiers for GL_AMD_conservative_depth */
526 /** \{ */
527 unsigned depth_any:1;
528 unsigned depth_greater:1;
529 unsigned depth_less:1;
530 unsigned depth_unchanged:1;
531 /** \} */
532
533 /** \name Layout qualifiers for GL_ARB_uniform_buffer_object */
534 /** \{ */
535 unsigned std140:1;
536 unsigned std430:1;
537 unsigned shared:1;
538 unsigned packed:1;
539 unsigned column_major:1;
540 unsigned row_major:1;
541 /** \} */
542
543 /** \name Layout qualifiers for GLSL 1.50 geometry shaders */
544 /** \{ */
545 unsigned prim_type:1;
546 unsigned max_vertices:1;
547 /** \} */
548
549 /**
550 * local_size_{x,y,z} flags for compute shaders. Bit 0 represents
551 * local_size_x, and so on.
552 */
553 unsigned local_size:3;
554
555 /** \name Layout qualifiers for ARB_compute_variable_group_size. */
556 /** \{ */
557 unsigned local_size_variable:1;
558 /** \} */
559
560 /** \name Layout and memory qualifiers for ARB_shader_image_load_store. */
561 /** \{ */
562 unsigned early_fragment_tests:1;
563 unsigned explicit_image_format:1;
564 unsigned coherent:1;
565 unsigned _volatile:1;
566 unsigned restrict_flag:1;
567 unsigned read_only:1; /**< "readonly" qualifier. */
568 unsigned write_only:1; /**< "writeonly" qualifier. */
569 /** \} */
570
571 /** \name Layout qualifiers for GL_ARB_gpu_shader5 */
572 /** \{ */
573 unsigned invocations:1;
574 unsigned stream:1; /**< Has stream value assigned */
575 unsigned explicit_stream:1; /**< stream value assigned explicitly by shader code */
576 /** \} */
577
578 /** \name Layout qualifiers for GL_ARB_enhanced_layouts */
579 /** \{ */
580 unsigned explicit_xfb_offset:1; /**< xfb_offset value assigned explicitly by shader code */
581 unsigned xfb_buffer:1; /**< Has xfb_buffer value assigned */
582 unsigned explicit_xfb_buffer:1; /**< xfb_buffer value assigned explicitly by shader code */
583 unsigned xfb_stride:1; /**< Is xfb_stride value yet to be merged with global values */
584 unsigned explicit_xfb_stride:1; /**< xfb_stride value assigned explicitly by shader code */
585 /** \} */
586
587 /** \name Layout qualifiers for GL_ARB_tessellation_shader */
588 /** \{ */
589 /* tess eval input layout */
590 /* gs prim_type reused for primitive mode */
591 unsigned vertex_spacing:1;
592 unsigned ordering:1;
593 unsigned point_mode:1;
594 /* tess control output layout */
595 unsigned vertices:1;
596 /** \} */
597
598 /** \name Qualifiers for GL_ARB_shader_subroutine */
599 /** \{ */
600 unsigned subroutine:1; /**< Is this marked 'subroutine' */
601 unsigned subroutine_def:1; /**< Is this marked 'subroutine' with a list of types */
602 /** \} */
603
604 /** \name Qualifiers for GL_KHR_blend_equation_advanced */
605 /** \{ */
606 unsigned blend_support:1; /**< Are there any blend_support_ qualifiers */
607 /** \} */
608 }
609 /** \brief Set of flags, accessed by name. */
610 q;
611
612 /** \brief Set of flags, accessed as a bitmask. */
613 uint64_t i;
614 } flags;
615
616 /** Precision of the type (highp/medium/lowp). */
617 unsigned precision:2;
618
619 /**
620 * Alignment specified via GL_ARB_enhanced_layouts "align" layout qualifier
621 */
622 ast_expression *align;
623
624 /** Geometry shader invocations for GL_ARB_gpu_shader5. */
625 ast_layout_expression *invocations;
626
627 /**
628 * Location specified via GL_ARB_explicit_attrib_location layout
629 *
630 * \note
631 * This field is only valid if \c explicit_location is set.
632 */
633 ast_expression *location;
634 /**
635 * Index specified via GL_ARB_explicit_attrib_location layout
636 *
637 * \note
638 * This field is only valid if \c explicit_index is set.
639 */
640 ast_expression *index;
641
642 /**
643 * Component specified via GL_ARB_enhaced_layouts
644 *
645 * \note
646 * This field is only valid if \c explicit_component is set.
647 */
648 ast_expression *component;
649
650 /** Maximum output vertices in GLSL 1.50 geometry shaders. */
651 ast_layout_expression *max_vertices;
652
653 /** Stream in GLSL 1.50 geometry shaders. */
654 ast_expression *stream;
655
656 /** xfb_buffer specified via the GL_ARB_enhanced_layouts keyword. */
657 ast_expression *xfb_buffer;
658
659 /** xfb_stride specified via the GL_ARB_enhanced_layouts keyword. */
660 ast_expression *xfb_stride;
661
662 /** global xfb_stride values for each buffer */
663 ast_layout_expression *out_xfb_stride[MAX_FEEDBACK_BUFFERS];
664
665 /**
666 * Input or output primitive type in GLSL 1.50 geometry shaders
667 * and tessellation shaders.
668 */
669 GLenum prim_type;
670
671 /**
672 * Binding specified via GL_ARB_shading_language_420pack's "binding" keyword.
673 *
674 * \note
675 * This field is only valid if \c explicit_binding is set.
676 */
677 ast_expression *binding;
678
679 /**
680 * Offset specified via GL_ARB_shader_atomic_counter's or
681 * GL_ARB_enhanced_layouts "offset" keyword, or by GL_ARB_enhanced_layouts
682 * "xfb_offset" keyword.
683 *
684 * \note
685 * This field is only valid if \c explicit_offset is set.
686 */
687 ast_expression *offset;
688
689 /**
690 * Local size specified via GL_ARB_compute_shader's "local_size_{x,y,z}"
691 * layout qualifier. Element i of this array is only valid if
692 * flags.q.local_size & (1 << i) is set.
693 */
694 ast_layout_expression *local_size[3];
695
696 /** Tessellation evaluation shader: vertex spacing (equal, fractional even/odd) */
697 GLenum vertex_spacing;
698
699 /** Tessellation evaluation shader: vertex ordering (CW or CCW) */
700 GLenum ordering;
701
702 /** Tessellation evaluation shader: point mode */
703 bool point_mode;
704
705 /** Tessellation control shader: number of output vertices */
706 ast_layout_expression *vertices;
707
708 /**
709 * Image format specified with an ARB_shader_image_load_store
710 * layout qualifier.
711 *
712 * \note
713 * This field is only valid if \c explicit_image_format is set.
714 */
715 GLenum image_format;
716
717 /**
718 * Base type of the data read from or written to this image. Only
719 * the following enumerants are allowed: GLSL_TYPE_UINT,
720 * GLSL_TYPE_INT, GLSL_TYPE_FLOAT.
721 *
722 * \note
723 * This field is only valid if \c explicit_image_format is set.
724 */
725 glsl_base_type image_base_type;
726
727 /**
728 * Return true if and only if an interpolation qualifier is present.
729 */
730 bool has_interpolation() const;
731
732 /**
733 * Return whether a layout qualifier is present.
734 */
735 bool has_layout() const;
736
737 /**
738 * Return whether a storage qualifier is present.
739 */
740 bool has_storage() const;
741
742 /**
743 * Return whether an auxiliary storage qualifier is present.
744 */
745 bool has_auxiliary_storage() const;
746
747 /**
748 * Return true if and only if a memory qualifier is present.
749 */
750 bool has_memory() const;
751
752 bool merge_qualifier(YYLTYPE *loc,
753 _mesa_glsl_parse_state *state,
754 const ast_type_qualifier &q,
755 bool is_single_layout_merge,
756 bool is_multiple_layouts_merge = false);
757
758 /**
759 * Validate current qualifier against the global out one.
760 */
761 bool validate_out_qualifier(YYLTYPE *loc,
762 _mesa_glsl_parse_state *state);
763
764 /**
765 * Merge current qualifier into the global out one.
766 */
767 bool merge_into_out_qualifier(YYLTYPE *loc,
768 _mesa_glsl_parse_state *state,
769 ast_node* &node);
770
771 /**
772 * Validate current qualifier against the global in one.
773 */
774 bool validate_in_qualifier(YYLTYPE *loc,
775 _mesa_glsl_parse_state *state);
776
777 /**
778 * Merge current qualifier into the global in one.
779 */
780 bool merge_into_in_qualifier(YYLTYPE *loc,
781 _mesa_glsl_parse_state *state,
782 ast_node* &node);
783
784 /**
785 * Push pending layout qualifiers to the global values.
786 */
787 bool push_to_global(YYLTYPE *loc,
788 _mesa_glsl_parse_state *state);
789
790 bool validate_flags(YYLTYPE *loc,
791 _mesa_glsl_parse_state *state,
792 const ast_type_qualifier &allowed_flags,
793 const char *message, const char *name);
794
795 ast_subroutine_list *subroutine_list;
796 };
797
798 class ast_declarator_list;
799
800 class ast_struct_specifier : public ast_node {
801 public:
802 ast_struct_specifier(void *lin_ctx, const char *identifier,
803 ast_declarator_list *declarator_list);
804 virtual void print(void) const;
805
806 virtual ir_rvalue *hir(exec_list *instructions,
807 struct _mesa_glsl_parse_state *state);
808
809 const char *name;
810 ast_type_qualifier *layout;
811 /* List of ast_declarator_list * */
812 exec_list declarations;
813 bool is_declaration;
814 };
815
816
817
818 class ast_type_specifier : public ast_node {
819 public:
820 /** Construct a type specifier from a type name */
821 ast_type_specifier(const char *name)
822 : type_name(name), structure(NULL), array_specifier(NULL),
823 default_precision(ast_precision_none)
824 {
825 /* empty */
826 }
827
828 /** Construct a type specifier from a structure definition */
829 ast_type_specifier(ast_struct_specifier *s)
830 : type_name(s->name), structure(s), array_specifier(NULL),
831 default_precision(ast_precision_none)
832 {
833 /* empty */
834 }
835
836 const struct glsl_type *glsl_type(const char **name,
837 struct _mesa_glsl_parse_state *state)
838 const;
839
840 virtual void print(void) const;
841
842 ir_rvalue *hir(exec_list *, struct _mesa_glsl_parse_state *);
843
844 const char *type_name;
845 ast_struct_specifier *structure;
846
847 ast_array_specifier *array_specifier;
848
849 /** For precision statements, this is the given precision; otherwise none. */
850 unsigned default_precision:2;
851 };
852
853
854 class ast_fully_specified_type : public ast_node {
855 public:
856 virtual void print(void) const;
857 bool has_qualifiers(_mesa_glsl_parse_state *state) const;
858
859 ast_fully_specified_type() : qualifier(), specifier(NULL)
860 {
861 }
862
863 const struct glsl_type *glsl_type(const char **name,
864 struct _mesa_glsl_parse_state *state)
865 const;
866
867 ast_type_qualifier qualifier;
868 ast_type_specifier *specifier;
869 };
870
871
872 class ast_declarator_list : public ast_node {
873 public:
874 ast_declarator_list(ast_fully_specified_type *);
875 virtual void print(void) const;
876
877 virtual ir_rvalue *hir(exec_list *instructions,
878 struct _mesa_glsl_parse_state *state);
879
880 ast_fully_specified_type *type;
881 /** List of 'ast_declaration *' */
882 exec_list declarations;
883
884 /**
885 * Flags for redeclarations. In these cases, no type is specified, to
886 * `type` is allowed to be NULL. In all other cases, this would be an error.
887 */
888 int invariant; /** < `invariant` redeclaration */
889 int precise; /** < `precise` redeclaration */
890 };
891
892
893 class ast_parameter_declarator : public ast_node {
894 public:
895 ast_parameter_declarator() :
896 type(NULL),
897 identifier(NULL),
898 array_specifier(NULL),
899 formal_parameter(false),
900 is_void(false)
901 {
902 /* empty */
903 }
904
905 virtual void print(void) const;
906
907 virtual ir_rvalue *hir(exec_list *instructions,
908 struct _mesa_glsl_parse_state *state);
909
910 ast_fully_specified_type *type;
911 const char *identifier;
912 ast_array_specifier *array_specifier;
913
914 static void parameters_to_hir(exec_list *ast_parameters,
915 bool formal, exec_list *ir_parameters,
916 struct _mesa_glsl_parse_state *state);
917
918 private:
919 /** Is this parameter declaration part of a formal parameter list? */
920 bool formal_parameter;
921
922 /**
923 * Is this parameter 'void' type?
924 *
925 * This field is set by \c ::hir.
926 */
927 bool is_void;
928 };
929
930
931 class ast_function : public ast_node {
932 public:
933 ast_function(void);
934
935 virtual void print(void) const;
936
937 virtual ir_rvalue *hir(exec_list *instructions,
938 struct _mesa_glsl_parse_state *state);
939
940 ast_fully_specified_type *return_type;
941 const char *identifier;
942
943 exec_list parameters;
944
945 private:
946 /**
947 * Is this prototype part of the function definition?
948 *
949 * Used by ast_function_definition::hir to process the parameters, etc.
950 * of the function.
951 *
952 * \sa ::hir
953 */
954 bool is_definition;
955
956 /**
957 * Function signature corresponding to this function prototype instance
958 *
959 * Used by ast_function_definition::hir to process the parameters, etc.
960 * of the function.
961 *
962 * \sa ::hir
963 */
964 class ir_function_signature *signature;
965
966 friend class ast_function_definition;
967 };
968
969
970 class ast_expression_statement : public ast_node {
971 public:
972 ast_expression_statement(ast_expression *);
973 virtual void print(void) const;
974
975 virtual ir_rvalue *hir(exec_list *instructions,
976 struct _mesa_glsl_parse_state *state);
977
978 ast_expression *expression;
979 };
980
981
982 class ast_case_label : public ast_node {
983 public:
984 ast_case_label(ast_expression *test_value);
985 virtual void print(void) const;
986
987 virtual ir_rvalue *hir(exec_list *instructions,
988 struct _mesa_glsl_parse_state *state);
989
990 /**
991 * An test value of NULL means 'default'.
992 */
993 ast_expression *test_value;
994 };
995
996
997 class ast_case_label_list : public ast_node {
998 public:
999 ast_case_label_list(void);
1000 virtual void print(void) const;
1001
1002 virtual ir_rvalue *hir(exec_list *instructions,
1003 struct _mesa_glsl_parse_state *state);
1004
1005 /**
1006 * A list of case labels.
1007 */
1008 exec_list labels;
1009 };
1010
1011
1012 class ast_case_statement : public ast_node {
1013 public:
1014 ast_case_statement(ast_case_label_list *labels);
1015 virtual void print(void) const;
1016
1017 virtual ir_rvalue *hir(exec_list *instructions,
1018 struct _mesa_glsl_parse_state *state);
1019
1020 ast_case_label_list *labels;
1021
1022 /**
1023 * A list of statements.
1024 */
1025 exec_list stmts;
1026 };
1027
1028
1029 class ast_case_statement_list : public ast_node {
1030 public:
1031 ast_case_statement_list(void);
1032 virtual void print(void) const;
1033
1034 virtual ir_rvalue *hir(exec_list *instructions,
1035 struct _mesa_glsl_parse_state *state);
1036
1037 /**
1038 * A list of cases.
1039 */
1040 exec_list cases;
1041 };
1042
1043
1044 class ast_switch_body : public ast_node {
1045 public:
1046 ast_switch_body(ast_case_statement_list *stmts);
1047 virtual void print(void) const;
1048
1049 virtual ir_rvalue *hir(exec_list *instructions,
1050 struct _mesa_glsl_parse_state *state);
1051
1052 ast_case_statement_list *stmts;
1053 };
1054
1055
1056 class ast_selection_statement : public ast_node {
1057 public:
1058 ast_selection_statement(ast_expression *condition,
1059 ast_node *then_statement,
1060 ast_node *else_statement);
1061 virtual void print(void) const;
1062
1063 virtual ir_rvalue *hir(exec_list *instructions,
1064 struct _mesa_glsl_parse_state *state);
1065
1066 ast_expression *condition;
1067 ast_node *then_statement;
1068 ast_node *else_statement;
1069 };
1070
1071
1072 class ast_switch_statement : public ast_node {
1073 public:
1074 ast_switch_statement(ast_expression *test_expression,
1075 ast_node *body);
1076 virtual void print(void) const;
1077
1078 virtual ir_rvalue *hir(exec_list *instructions,
1079 struct _mesa_glsl_parse_state *state);
1080
1081 ast_expression *test_expression;
1082 ast_node *body;
1083
1084 protected:
1085 void test_to_hir(exec_list *, struct _mesa_glsl_parse_state *);
1086 };
1087
1088 class ast_iteration_statement : public ast_node {
1089 public:
1090 ast_iteration_statement(int mode, ast_node *init, ast_node *condition,
1091 ast_expression *rest_expression, ast_node *body);
1092
1093 virtual void print(void) const;
1094
1095 virtual ir_rvalue *hir(exec_list *, struct _mesa_glsl_parse_state *);
1096
1097 enum ast_iteration_modes {
1098 ast_for,
1099 ast_while,
1100 ast_do_while
1101 } mode;
1102
1103
1104 ast_node *init_statement;
1105 ast_node *condition;
1106 ast_expression *rest_expression;
1107
1108 ast_node *body;
1109
1110 /**
1111 * Generate IR from the condition of a loop
1112 *
1113 * This is factored out of ::hir because some loops have the condition
1114 * test at the top (for and while), and others have it at the end (do-while).
1115 */
1116 void condition_to_hir(exec_list *, struct _mesa_glsl_parse_state *);
1117 };
1118
1119
1120 class ast_jump_statement : public ast_node {
1121 public:
1122 ast_jump_statement(int mode, ast_expression *return_value);
1123 virtual void print(void) const;
1124
1125 virtual ir_rvalue *hir(exec_list *instructions,
1126 struct _mesa_glsl_parse_state *state);
1127
1128 enum ast_jump_modes {
1129 ast_continue,
1130 ast_break,
1131 ast_return,
1132 ast_discard
1133 } mode;
1134
1135 ast_expression *opt_return_value;
1136 };
1137
1138
1139 class ast_function_definition : public ast_node {
1140 public:
1141 ast_function_definition() : prototype(NULL), body(NULL)
1142 {
1143 }
1144
1145 virtual void print(void) const;
1146
1147 virtual ir_rvalue *hir(exec_list *instructions,
1148 struct _mesa_glsl_parse_state *state);
1149
1150 ast_function *prototype;
1151 ast_compound_statement *body;
1152 };
1153
1154 class ast_interface_block : public ast_node {
1155 public:
1156 ast_interface_block(const char *instance_name,
1157 ast_array_specifier *array_specifier)
1158 : block_name(NULL), instance_name(instance_name),
1159 array_specifier(array_specifier)
1160 {
1161 }
1162
1163 virtual ir_rvalue *hir(exec_list *instructions,
1164 struct _mesa_glsl_parse_state *state);
1165
1166 ast_type_qualifier default_layout;
1167 ast_type_qualifier layout;
1168 const char *block_name;
1169
1170 /**
1171 * Declared name of the block instance, if specified.
1172 *
1173 * If the block does not have an instance name, this field will be
1174 * \c NULL.
1175 */
1176 const char *instance_name;
1177
1178 /** List of ast_declarator_list * */
1179 exec_list declarations;
1180
1181 /**
1182 * Declared array size of the block instance
1183 *
1184 * If the block is not declared as an array or if the block instance array
1185 * is unsized, this field will be \c NULL.
1186 */
1187 ast_array_specifier *array_specifier;
1188 };
1189
1190
1191 /**
1192 * AST node representing a declaration of the output layout for tessellation
1193 * control shaders.
1194 */
1195 class ast_tcs_output_layout : public ast_node
1196 {
1197 public:
1198 ast_tcs_output_layout(const struct YYLTYPE &locp)
1199 {
1200 set_location(locp);
1201 }
1202
1203 virtual ir_rvalue *hir(exec_list *instructions,
1204 struct _mesa_glsl_parse_state *state);
1205 };
1206
1207
1208 /**
1209 * AST node representing a declaration of the input layout for geometry
1210 * shaders.
1211 */
1212 class ast_gs_input_layout : public ast_node
1213 {
1214 public:
1215 ast_gs_input_layout(const struct YYLTYPE &locp, GLenum prim_type)
1216 : prim_type(prim_type)
1217 {
1218 set_location(locp);
1219 }
1220
1221 virtual ir_rvalue *hir(exec_list *instructions,
1222 struct _mesa_glsl_parse_state *state);
1223
1224 private:
1225 const GLenum prim_type;
1226 };
1227
1228
1229 /**
1230 * AST node representing a decalaration of the input layout for compute
1231 * shaders.
1232 */
1233 class ast_cs_input_layout : public ast_node
1234 {
1235 public:
1236 ast_cs_input_layout(const struct YYLTYPE &locp,
1237 ast_layout_expression *const *local_size)
1238 {
1239 for (int i = 0; i < 3; i++) {
1240 this->local_size[i] = local_size[i];
1241 }
1242 set_location(locp);
1243 }
1244
1245 virtual ir_rvalue *hir(exec_list *instructions,
1246 struct _mesa_glsl_parse_state *state);
1247
1248 private:
1249 ast_layout_expression *local_size[3];
1250 };
1251
1252 /*@}*/
1253
1254 extern void
1255 _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state);
1256
1257 extern ir_rvalue *
1258 _mesa_ast_field_selection_to_hir(const ast_expression *expr,
1259 exec_list *instructions,
1260 struct _mesa_glsl_parse_state *state);
1261
1262 extern ir_rvalue *
1263 _mesa_ast_array_index_to_hir(void *mem_ctx,
1264 struct _mesa_glsl_parse_state *state,
1265 ir_rvalue *array, ir_rvalue *idx,
1266 YYLTYPE &loc, YYLTYPE &idx_loc);
1267
1268 extern void
1269 _mesa_ast_set_aggregate_type(const glsl_type *type,
1270 ast_expression *expr);
1271
1272 void
1273 emit_function(_mesa_glsl_parse_state *state, ir_function *f);
1274
1275 extern void
1276 check_builtin_array_max_size(const char *name, unsigned size,
1277 YYLTYPE loc, struct _mesa_glsl_parse_state *state);
1278
1279 extern void _mesa_ast_process_interface_block(YYLTYPE *locp,
1280 _mesa_glsl_parse_state *state,
1281 ast_interface_block *const block,
1282 const struct ast_type_qualifier &q);
1283
1284 extern bool
1285 process_qualifier_constant(struct _mesa_glsl_parse_state *state,
1286 YYLTYPE *loc,
1287 const char *qual_indentifier,
1288 ast_expression *const_expression,
1289 unsigned *value);
1290 #endif /* AST_H */