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