9140ca13cdae5e07e1b52200542c462620ed1a13
[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 class ast_array_specifier : public ast_node {
280 public:
281 /** Unsized array specifier ([]) */
282 explicit ast_array_specifier(const struct YYLTYPE &locp)
283 : dimension_count(1), is_unsized_array(true)
284 {
285 set_location(locp);
286 }
287
288 /** Sized array specifier ([dim]) */
289 ast_array_specifier(const struct YYLTYPE &locp, ast_expression *dim)
290 : dimension_count(1), is_unsized_array(false)
291 {
292 set_location(locp);
293 array_dimensions.push_tail(&dim->link);
294 }
295
296 void add_dimension(ast_expression *dim)
297 {
298 array_dimensions.push_tail(&dim->link);
299 dimension_count++;
300 }
301
302 virtual void print(void) const;
303
304 /* Count including sized and unsized dimensions */
305 unsigned dimension_count;
306
307 /* If true, this means that the array has an unsized outermost dimension. */
308 bool is_unsized_array;
309
310 /* This list contains objects of type ast_node containing the
311 * sized dimensions only, in outermost-to-innermost order.
312 */
313 exec_list array_dimensions;
314 };
315
316 /**
317 * C-style aggregate initialization class
318 *
319 * Represents C-style initializers of vectors, matrices, arrays, and
320 * structures. E.g., vec3 pos = {1.0, 0.0, -1.0} is equivalent to
321 * vec3 pos = vec3(1.0, 0.0, -1.0).
322 *
323 * Specified in GLSL 4.20 and GL_ARB_shading_language_420pack.
324 *
325 * \sa _mesa_ast_set_aggregate_type
326 */
327 class ast_aggregate_initializer : public ast_expression {
328 public:
329 ast_aggregate_initializer()
330 : ast_expression(ast_aggregate, NULL, NULL, NULL),
331 constructor_type(NULL)
332 {
333 /* empty */
334 }
335
336 /**
337 * glsl_type of the aggregate, which is inferred from the LHS of whatever
338 * the aggregate is being used to initialize. This can't be inferred at
339 * parse time (since the parser deals with ast_type_specifiers, not
340 * glsl_types), so the parser leaves it NULL. However, the ast-to-hir
341 * conversion code makes sure to fill it in with the appropriate type
342 * before hir() is called.
343 */
344 const glsl_type *constructor_type;
345
346 virtual ir_rvalue *hir(exec_list *instructions,
347 struct _mesa_glsl_parse_state *state);
348 };
349
350 /**
351 * Number of possible operators for an ast_expression
352 *
353 * This is done as a define instead of as an additional value in the enum so
354 * that the compiler won't generate spurious messages like "warning:
355 * enumeration value ‘ast_num_operators’ not handled in switch"
356 */
357 #define AST_NUM_OPERATORS (ast_sequence + 1)
358
359
360 class ast_compound_statement : public ast_node {
361 public:
362 ast_compound_statement(int new_scope, ast_node *statements);
363 virtual void print(void) const;
364
365 virtual ir_rvalue *hir(exec_list *instructions,
366 struct _mesa_glsl_parse_state *state);
367
368 int new_scope;
369 exec_list statements;
370 };
371
372 class ast_declaration : public ast_node {
373 public:
374 ast_declaration(const char *identifier,
375 ast_array_specifier *array_specifier,
376 ast_expression *initializer);
377 virtual void print(void) const;
378
379 const char *identifier;
380
381 ast_array_specifier *array_specifier;
382
383 ast_expression *initializer;
384 };
385
386
387 enum {
388 ast_precision_none = 0, /**< Absence of precision qualifier. */
389 ast_precision_high,
390 ast_precision_medium,
391 ast_precision_low
392 };
393
394 struct ast_type_qualifier {
395 DECLARE_RALLOC_CXX_OPERATORS(ast_type_qualifier);
396
397 union {
398 struct {
399 unsigned invariant:1;
400 unsigned constant:1;
401 unsigned attribute:1;
402 unsigned varying:1;
403 unsigned in:1;
404 unsigned out:1;
405 unsigned centroid:1;
406 unsigned sample:1;
407 unsigned uniform:1;
408 unsigned smooth:1;
409 unsigned flat:1;
410 unsigned noperspective:1;
411
412 /** \name Layout qualifiers for GL_ARB_fragment_coord_conventions */
413 /*@{*/
414 unsigned origin_upper_left:1;
415 unsigned pixel_center_integer:1;
416 /*@}*/
417
418 /**
419 * Flag set if GL_ARB_explicit_attrib_location "location" layout
420 * qualifier is used.
421 */
422 unsigned explicit_location:1;
423 /**
424 * Flag set if GL_ARB_explicit_attrib_location "index" layout
425 * qualifier is used.
426 */
427 unsigned explicit_index:1;
428
429 /**
430 * Flag set if GL_ARB_shading_language_420pack "binding" layout
431 * qualifier is used.
432 */
433 unsigned explicit_binding:1;
434
435 /**
436 * Flag set if GL_ARB_shader_atomic counter "offset" layout
437 * qualifier is used.
438 */
439 unsigned explicit_offset:1;
440
441 /** \name Layout qualifiers for GL_AMD_conservative_depth */
442 /** \{ */
443 unsigned depth_any:1;
444 unsigned depth_greater:1;
445 unsigned depth_less:1;
446 unsigned depth_unchanged:1;
447 /** \} */
448
449 /** \name Layout qualifiers for GL_ARB_uniform_buffer_object */
450 /** \{ */
451 unsigned std140:1;
452 unsigned shared:1;
453 unsigned packed:1;
454 unsigned column_major:1;
455 unsigned row_major:1;
456 /** \} */
457
458 /** \name Layout qualifiers for GLSL 1.50 geometry shaders */
459 /** \{ */
460 unsigned prim_type:1;
461 unsigned max_vertices:1;
462 /** \} */
463
464 /**
465 * local_size_{x,y,z} flags for compute shaders. Bit 0 represents
466 * local_size_x, and so on.
467 */
468 unsigned local_size:3;
469
470 /** \name Layout and memory qualifiers for ARB_shader_image_load_store. */
471 /** \{ */
472 unsigned early_fragment_tests:1;
473 unsigned explicit_image_format:1;
474 unsigned coherent:1;
475 unsigned _volatile:1;
476 unsigned restrict_flag:1;
477 unsigned read_only:1; /**< "readonly" qualifier. */
478 unsigned write_only:1; /**< "writeonly" qualifier. */
479 /** \} */
480 }
481 /** \brief Set of flags, accessed by name. */
482 q;
483
484 /** \brief Set of flags, accessed as a bitmask. */
485 uint64_t i;
486 } flags;
487
488 /** Precision of the type (highp/medium/lowp). */
489 unsigned precision:2;
490
491 /**
492 * Location specified via GL_ARB_explicit_attrib_location layout
493 *
494 * \note
495 * This field is only valid if \c explicit_location is set.
496 */
497 int location;
498 /**
499 * Index specified via GL_ARB_explicit_attrib_location layout
500 *
501 * \note
502 * This field is only valid if \c explicit_index is set.
503 */
504 int index;
505
506 /** Maximum output vertices in GLSL 1.50 geometry shaders. */
507 int max_vertices;
508
509 /** Input or output primitive type in GLSL 1.50 geometry shaders */
510 GLenum prim_type;
511
512 /**
513 * Binding specified via GL_ARB_shading_language_420pack's "binding" keyword.
514 *
515 * \note
516 * This field is only valid if \c explicit_binding is set.
517 */
518 int binding;
519
520 /**
521 * Offset specified via GL_ARB_shader_atomic_counter's "offset"
522 * keyword.
523 *
524 * \note
525 * This field is only valid if \c explicit_offset is set.
526 */
527 int offset;
528
529 /**
530 * Local size specified via GL_ARB_compute_shader's "local_size_{x,y,z}"
531 * layout qualifier. Element i of this array is only valid if
532 * flags.q.local_size & (1 << i) is set.
533 */
534 int local_size[3];
535
536 /**
537 * Image format specified with an ARB_shader_image_load_store
538 * layout qualifier.
539 *
540 * \note
541 * This field is only valid if \c explicit_image_format is set.
542 */
543 GLenum image_format;
544
545 /**
546 * Base type of the data read from or written to this image. Only
547 * the following enumerants are allowed: GLSL_TYPE_UINT,
548 * GLSL_TYPE_INT, GLSL_TYPE_FLOAT.
549 *
550 * \note
551 * This field is only valid if \c explicit_image_format is set.
552 */
553 glsl_base_type image_base_type;
554
555 /**
556 * Return true if and only if an interpolation qualifier is present.
557 */
558 bool has_interpolation() const;
559
560 /**
561 * Return whether a layout qualifier is present.
562 */
563 bool has_layout() const;
564
565 /**
566 * Return whether a storage qualifier is present.
567 */
568 bool has_storage() const;
569
570 /**
571 * Return whether an auxiliary storage qualifier is present.
572 */
573 bool has_auxiliary_storage() const;
574
575 /**
576 * \brief Return string representation of interpolation qualifier.
577 *
578 * If an interpolation qualifier is present, then return that qualifier's
579 * string representation. Otherwise, return null. For example, if the
580 * noperspective bit is set, then this returns "noperspective".
581 *
582 * If multiple interpolation qualifiers are somehow present, then the
583 * returned string is undefined but not null.
584 */
585 const char *interpolation_string() const;
586
587 bool merge_qualifier(YYLTYPE *loc,
588 _mesa_glsl_parse_state *state,
589 ast_type_qualifier q);
590 };
591
592 class ast_declarator_list;
593
594 class ast_struct_specifier : public ast_node {
595 public:
596 /**
597 * \brief Make a shallow copy of an ast_struct_specifier.
598 *
599 * Use only if the objects are allocated from the same context and will not
600 * be modified. Zeros the inherited ast_node's fields.
601 */
602 ast_struct_specifier(const ast_struct_specifier& that):
603 ast_node(), name(that.name), declarations(that.declarations),
604 is_declaration(that.is_declaration)
605 {
606 /* empty */
607 }
608
609 ast_struct_specifier(const char *identifier,
610 ast_declarator_list *declarator_list);
611 virtual void print(void) const;
612
613 virtual ir_rvalue *hir(exec_list *instructions,
614 struct _mesa_glsl_parse_state *state);
615
616 const char *name;
617 /* List of ast_declarator_list * */
618 exec_list declarations;
619 bool is_declaration;
620 };
621
622
623
624 class ast_type_specifier : public ast_node {
625 public:
626 /**
627 * \brief Make a shallow copy of an ast_type_specifier, specifying array
628 * fields.
629 *
630 * Use only if the objects are allocated from the same context and will not
631 * be modified. Zeros the inherited ast_node's fields.
632 */
633 ast_type_specifier(const ast_type_specifier *that,
634 ast_array_specifier *array_specifier)
635 : ast_node(), type_name(that->type_name), structure(that->structure),
636 array_specifier(array_specifier),
637 default_precision(that->default_precision)
638 {
639 /* empty */
640 }
641
642 /** Construct a type specifier from a type name */
643 ast_type_specifier(const char *name)
644 : type_name(name), structure(NULL), array_specifier(NULL),
645 default_precision(ast_precision_none)
646 {
647 /* empty */
648 }
649
650 /** Construct a type specifier from a structure definition */
651 ast_type_specifier(ast_struct_specifier *s)
652 : type_name(s->name), structure(s), array_specifier(NULL),
653 default_precision(ast_precision_none)
654 {
655 /* empty */
656 }
657
658 const struct glsl_type *glsl_type(const char **name,
659 struct _mesa_glsl_parse_state *state)
660 const;
661
662 virtual void print(void) const;
663
664 ir_rvalue *hir(exec_list *, struct _mesa_glsl_parse_state *);
665
666 const char *type_name;
667 ast_struct_specifier *structure;
668
669 ast_array_specifier *array_specifier;
670
671 /** For precision statements, this is the given precision; otherwise none. */
672 unsigned default_precision:2;
673 };
674
675
676 class ast_fully_specified_type : public ast_node {
677 public:
678 virtual void print(void) const;
679 bool has_qualifiers() const;
680
681 ast_fully_specified_type() : qualifier(), specifier(NULL)
682 {
683 }
684
685 const struct glsl_type *glsl_type(const char **name,
686 struct _mesa_glsl_parse_state *state)
687 const;
688
689 ast_type_qualifier qualifier;
690 ast_type_specifier *specifier;
691 };
692
693
694 class ast_declarator_list : public ast_node {
695 public:
696 ast_declarator_list(ast_fully_specified_type *);
697 virtual void print(void) const;
698
699 virtual ir_rvalue *hir(exec_list *instructions,
700 struct _mesa_glsl_parse_state *state);
701
702 ast_fully_specified_type *type;
703 /** List of 'ast_declaration *' */
704 exec_list declarations;
705
706 /**
707 * Special flag for vertex shader "invariant" declarations.
708 *
709 * Vertex shaders can contain "invariant" variable redeclarations that do
710 * not include a type. For example, "invariant gl_Position;". This flag
711 * is used to note these cases when no type is specified.
712 */
713 int invariant;
714 };
715
716
717 class ast_parameter_declarator : public ast_node {
718 public:
719 ast_parameter_declarator() :
720 type(NULL),
721 identifier(NULL),
722 array_specifier(NULL),
723 formal_parameter(false),
724 is_void(false)
725 {
726 /* empty */
727 }
728
729 virtual void print(void) const;
730
731 virtual ir_rvalue *hir(exec_list *instructions,
732 struct _mesa_glsl_parse_state *state);
733
734 ast_fully_specified_type *type;
735 const char *identifier;
736 ast_array_specifier *array_specifier;
737
738 static void parameters_to_hir(exec_list *ast_parameters,
739 bool formal, exec_list *ir_parameters,
740 struct _mesa_glsl_parse_state *state);
741
742 private:
743 /** Is this parameter declaration part of a formal parameter list? */
744 bool formal_parameter;
745
746 /**
747 * Is this parameter 'void' type?
748 *
749 * This field is set by \c ::hir.
750 */
751 bool is_void;
752 };
753
754
755 class ast_function : public ast_node {
756 public:
757 ast_function(void);
758
759 virtual void print(void) const;
760
761 virtual ir_rvalue *hir(exec_list *instructions,
762 struct _mesa_glsl_parse_state *state);
763
764 ast_fully_specified_type *return_type;
765 const char *identifier;
766
767 exec_list parameters;
768
769 private:
770 /**
771 * Is this prototype part of the function definition?
772 *
773 * Used by ast_function_definition::hir to process the parameters, etc.
774 * of the function.
775 *
776 * \sa ::hir
777 */
778 bool is_definition;
779
780 /**
781 * Function signature corresponding to this function prototype instance
782 *
783 * Used by ast_function_definition::hir to process the parameters, etc.
784 * of the function.
785 *
786 * \sa ::hir
787 */
788 class ir_function_signature *signature;
789
790 friend class ast_function_definition;
791 };
792
793
794 class ast_expression_statement : public ast_node {
795 public:
796 ast_expression_statement(ast_expression *);
797 virtual void print(void) const;
798
799 virtual ir_rvalue *hir(exec_list *instructions,
800 struct _mesa_glsl_parse_state *state);
801
802 ast_expression *expression;
803 };
804
805
806 class ast_case_label : public ast_node {
807 public:
808 ast_case_label(ast_expression *test_value);
809 virtual void print(void) const;
810
811 virtual ir_rvalue *hir(exec_list *instructions,
812 struct _mesa_glsl_parse_state *state);
813
814 /**
815 * An test value of NULL means 'default'.
816 */
817 ast_expression *test_value;
818 };
819
820
821 class ast_case_label_list : public ast_node {
822 public:
823 ast_case_label_list(void);
824 virtual void print(void) const;
825
826 virtual ir_rvalue *hir(exec_list *instructions,
827 struct _mesa_glsl_parse_state *state);
828
829 /**
830 * A list of case labels.
831 */
832 exec_list labels;
833 };
834
835
836 class ast_case_statement : public ast_node {
837 public:
838 ast_case_statement(ast_case_label_list *labels);
839 virtual void print(void) const;
840
841 virtual ir_rvalue *hir(exec_list *instructions,
842 struct _mesa_glsl_parse_state *state);
843
844 ast_case_label_list *labels;
845
846 /**
847 * A list of statements.
848 */
849 exec_list stmts;
850 };
851
852
853 class ast_case_statement_list : public ast_node {
854 public:
855 ast_case_statement_list(void);
856 virtual void print(void) const;
857
858 virtual ir_rvalue *hir(exec_list *instructions,
859 struct _mesa_glsl_parse_state *state);
860
861 /**
862 * A list of cases.
863 */
864 exec_list cases;
865 };
866
867
868 class ast_switch_body : public ast_node {
869 public:
870 ast_switch_body(ast_case_statement_list *stmts);
871 virtual void print(void) const;
872
873 virtual ir_rvalue *hir(exec_list *instructions,
874 struct _mesa_glsl_parse_state *state);
875
876 ast_case_statement_list *stmts;
877 };
878
879
880 class ast_selection_statement : public ast_node {
881 public:
882 ast_selection_statement(ast_expression *condition,
883 ast_node *then_statement,
884 ast_node *else_statement);
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_expression *condition;
891 ast_node *then_statement;
892 ast_node *else_statement;
893 };
894
895
896 class ast_switch_statement : public ast_node {
897 public:
898 ast_switch_statement(ast_expression *test_expression,
899 ast_node *body);
900 virtual void print(void) const;
901
902 virtual ir_rvalue *hir(exec_list *instructions,
903 struct _mesa_glsl_parse_state *state);
904
905 ast_expression *test_expression;
906 ast_node *body;
907
908 protected:
909 void test_to_hir(exec_list *, struct _mesa_glsl_parse_state *);
910 };
911
912 class ast_iteration_statement : public ast_node {
913 public:
914 ast_iteration_statement(int mode, ast_node *init, ast_node *condition,
915 ast_expression *rest_expression, ast_node *body);
916
917 virtual void print(void) const;
918
919 virtual ir_rvalue *hir(exec_list *, struct _mesa_glsl_parse_state *);
920
921 enum ast_iteration_modes {
922 ast_for,
923 ast_while,
924 ast_do_while
925 } mode;
926
927
928 ast_node *init_statement;
929 ast_node *condition;
930 ast_expression *rest_expression;
931
932 ast_node *body;
933
934 /**
935 * Generate IR from the condition of a loop
936 *
937 * This is factored out of ::hir because some loops have the condition
938 * test at the top (for and while), and others have it at the end (do-while).
939 */
940 void condition_to_hir(exec_list *, struct _mesa_glsl_parse_state *);
941 };
942
943
944 class ast_jump_statement : public ast_node {
945 public:
946 ast_jump_statement(int mode, ast_expression *return_value);
947 virtual void print(void) const;
948
949 virtual ir_rvalue *hir(exec_list *instructions,
950 struct _mesa_glsl_parse_state *state);
951
952 enum ast_jump_modes {
953 ast_continue,
954 ast_break,
955 ast_return,
956 ast_discard
957 } mode;
958
959 ast_expression *opt_return_value;
960 };
961
962
963 class ast_function_definition : public ast_node {
964 public:
965 ast_function_definition() : prototype(NULL), body(NULL)
966 {
967 }
968
969 virtual void print(void) const;
970
971 virtual ir_rvalue *hir(exec_list *instructions,
972 struct _mesa_glsl_parse_state *state);
973
974 ast_function *prototype;
975 ast_compound_statement *body;
976 };
977
978 class ast_interface_block : public ast_node {
979 public:
980 ast_interface_block(ast_type_qualifier layout,
981 const char *instance_name,
982 ast_array_specifier *array_specifier)
983 : layout(layout), block_name(NULL), instance_name(instance_name),
984 array_specifier(array_specifier)
985 {
986 }
987
988 virtual ir_rvalue *hir(exec_list *instructions,
989 struct _mesa_glsl_parse_state *state);
990
991 ast_type_qualifier layout;
992 const char *block_name;
993
994 /**
995 * Declared name of the block instance, if specified.
996 *
997 * If the block does not have an instance name, this field will be
998 * \c NULL.
999 */
1000 const char *instance_name;
1001
1002 /** List of ast_declarator_list * */
1003 exec_list declarations;
1004
1005 /**
1006 * Declared array size of the block instance
1007 *
1008 * If the block is not declared as an array or if the block instance array
1009 * is unsized, this field will be \c NULL.
1010 */
1011 ast_array_specifier *array_specifier;
1012 };
1013
1014
1015 /**
1016 * AST node representing a declaration of the input layout for geometry
1017 * shaders.
1018 */
1019 class ast_gs_input_layout : public ast_node
1020 {
1021 public:
1022 ast_gs_input_layout(const struct YYLTYPE &locp, GLenum prim_type)
1023 : prim_type(prim_type)
1024 {
1025 set_location(locp);
1026 }
1027
1028 virtual ir_rvalue *hir(exec_list *instructions,
1029 struct _mesa_glsl_parse_state *state);
1030
1031 private:
1032 const GLenum prim_type;
1033 };
1034
1035
1036 /**
1037 * AST node representing a decalaration of the input layout for compute
1038 * shaders.
1039 */
1040 class ast_cs_input_layout : public ast_node
1041 {
1042 public:
1043 ast_cs_input_layout(const struct YYLTYPE &locp, const unsigned *local_size)
1044 {
1045 memcpy(this->local_size, local_size, sizeof(this->local_size));
1046 set_location(locp);
1047 }
1048
1049 virtual ir_rvalue *hir(exec_list *instructions,
1050 struct _mesa_glsl_parse_state *state);
1051
1052 private:
1053 unsigned local_size[3];
1054 };
1055
1056 /*@}*/
1057
1058 extern void
1059 _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state);
1060
1061 extern ir_rvalue *
1062 _mesa_ast_field_selection_to_hir(const ast_expression *expr,
1063 exec_list *instructions,
1064 struct _mesa_glsl_parse_state *state);
1065
1066 extern ir_rvalue *
1067 _mesa_ast_array_index_to_hir(void *mem_ctx,
1068 struct _mesa_glsl_parse_state *state,
1069 ir_rvalue *array, ir_rvalue *idx,
1070 YYLTYPE &loc, YYLTYPE &idx_loc);
1071
1072 extern void
1073 _mesa_ast_set_aggregate_type(const glsl_type *type,
1074 ast_expression *expr);
1075
1076 void
1077 emit_function(_mesa_glsl_parse_state *state, ir_function *f);
1078
1079 extern void
1080 check_builtin_array_max_size(const char *name, unsigned size,
1081 YYLTYPE loc, struct _mesa_glsl_parse_state *state);
1082
1083 #endif /* AST_H */