3 * Copyright © 2009 Intel Corporation
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:
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
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.
30 #include "glsl_parser_extras.h"
32 struct _mesa_glsl_parse_state;
37 * \defgroup AST Abstract syntax tree node definitions
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.
48 * Base class of all abstract syntax tree nodes
52 /* Callers of this ralloc-based new need not call delete. It's
53 * easier to just ralloc_free 'ctx' (or any of its ancestors). */
54 static void* operator new(size_t size, void *ctx)
58 node = rzalloc_size(ctx, size);
64 /* If the user *does* call delete, that's OK, we will just
65 * ralloc_free in that case. */
66 static void operator delete(void *table)
72 * Print an AST node in something approximating the original GLSL code
74 virtual void print(void) const;
77 * Convert the AST node to the high-level intermediate representation
79 virtual ir_rvalue *hir(exec_list *instructions,
80 struct _mesa_glsl_parse_state *state);
83 * Retrieve the source location of an AST node
85 * This function is primarily used to get the source position of an AST node
86 * into a form that can be passed to \c _mesa_glsl_error.
88 * \sa _mesa_glsl_error, ast_node::set_location
90 struct YYLTYPE get_location(void) const
94 locp.source = this->location.source;
95 locp.first_line = this->location.line;
96 locp.first_column = this->location.column;
97 locp.last_line = locp.first_line;
98 locp.last_column = locp.first_column;
104 * Set the source location of an AST node from a parser location
106 * \sa ast_node::get_location
108 void set_location(const struct YYLTYPE &locp)
110 this->location.source = locp.source;
111 this->location.line = locp.first_line;
112 this->location.column = locp.first_column;
116 * Source location of the AST node.
119 unsigned source; /**< GLSL source number. */
120 unsigned line; /**< Line number within the source string. */
121 unsigned column; /**< Column in the line. */
128 * The only constructor is protected so that only derived class objects can
136 * Operators for AST expression nodes.
140 ast_plus, /**< Unary + operator. */
196 * Representation of any sort of expression.
198 class ast_expression : public ast_node {
200 ast_expression(int oper, ast_expression *,
201 ast_expression *, ast_expression *);
203 ast_expression(const char *identifier) :
206 subexpressions[0] = NULL;
207 subexpressions[1] = NULL;
208 subexpressions[2] = NULL;
209 primary_expression.identifier = identifier;
210 this->non_lvalue_description = NULL;
213 static const char *operator_string(enum ast_operators op);
215 virtual ir_rvalue *hir(exec_list *instructions,
216 struct _mesa_glsl_parse_state *state);
218 virtual void print(void) const;
220 enum ast_operators oper;
222 ast_expression *subexpressions[3];
225 const char *identifier;
227 float float_constant;
228 unsigned uint_constant;
230 } primary_expression;
234 * List of expressions for an \c ast_sequence or parameters for an
235 * \c ast_function_call
237 exec_list expressions;
240 * For things that can't be l-values, this describes what it is.
242 * This text is used by the code that generates IR for assignments to
243 * detect and emit useful messages for assignments to some things that
244 * can't be l-values. For example, pre- or post-incerement expressions.
247 * This pointer may be \c NULL.
249 const char *non_lvalue_description;
252 class ast_expression_bin : public ast_expression {
254 ast_expression_bin(int oper, ast_expression *, ast_expression *);
256 virtual void print(void) const;
260 * Subclass of expressions for function calls
262 class ast_function_expression : public ast_expression {
264 ast_function_expression(ast_expression *callee)
265 : ast_expression(ast_function_call, callee,
272 ast_function_expression(class ast_type_specifier *type)
273 : ast_expression(ast_function_call, (ast_expression *) type,
280 bool is_constructor() const
285 virtual ir_rvalue *hir(exec_list *instructions,
286 struct _mesa_glsl_parse_state *state);
290 * Is this function call actually a constructor?
297 * Number of possible operators for an ast_expression
299 * This is done as a define instead of as an additional value in the enum so
300 * that the compiler won't generate spurious messages like "warning:
301 * enumeration value ‘ast_num_operators’ not handled in switch"
303 #define AST_NUM_OPERATORS (ast_sequence + 1)
306 class ast_compound_statement : public ast_node {
308 ast_compound_statement(int new_scope, ast_node *statements);
309 virtual void print(void) const;
311 virtual ir_rvalue *hir(exec_list *instructions,
312 struct _mesa_glsl_parse_state *state);
315 exec_list statements;
318 class ast_declaration : public ast_node {
320 ast_declaration(const char *identifier, int is_array, ast_expression *array_size,
321 ast_expression *initializer);
322 virtual void print(void) const;
324 const char *identifier;
327 ast_expression *array_size;
329 ast_expression *initializer;
334 ast_precision_none = 0, /**< Absence of precision qualifier. */
336 ast_precision_medium,
340 struct ast_type_qualifier {
343 unsigned invariant:1;
345 unsigned attribute:1;
353 unsigned noperspective:1;
355 /** \name Layout qualifiers for GL_ARB_fragment_coord_conventions */
357 unsigned origin_upper_left:1;
358 unsigned pixel_center_integer:1;
362 * Flag set if GL_ARB_explicit_attrib_location "location" layout
365 unsigned explicit_location:1;
367 * Flag set if GL_ARB_explicit_attrib_location "index" layout
370 unsigned explicit_index:1;
372 /** \name Layout qualifiers for GL_AMD_conservative_depth */
374 unsigned depth_any:1;
375 unsigned depth_greater:1;
376 unsigned depth_less:1;
377 unsigned depth_unchanged:1;
380 /** \brief Set of flags, accessed by name. */
383 /** \brief Set of flags, accessed as a bitmask. */
388 * Location specified via GL_ARB_explicit_attrib_location layout
391 * This field is only valid if \c explicit_location is set.
395 * Index specified via GL_ARB_explicit_attrib_location layout
398 * This field is only valid if \c explicit_index is set.
403 * Return true if and only if an interpolation qualifier is present.
405 bool has_interpolation() const;
408 * \brief Return string representation of interpolation qualifier.
410 * If an interpolation qualifier is present, then return that qualifier's
411 * string representation. Otherwise, return null. For example, if the
412 * noperspective bit is set, then this returns "noperspective".
414 * If multiple interpolation qualifiers are somehow present, then the
415 * returned string is undefined but not null.
417 const char *interpolation_string() const;
420 class ast_struct_specifier : public ast_node {
422 ast_struct_specifier(const char *identifier, ast_node *declarator_list);
423 virtual void print(void) const;
425 virtual ir_rvalue *hir(exec_list *instructions,
426 struct _mesa_glsl_parse_state *state);
429 exec_list declarations;
434 class ast_type_specifier : public ast_node {
436 /** Construct a type specifier from a type name */
437 ast_type_specifier(const char *name)
438 : type_name(name), structure(NULL),
439 is_array(false), array_size(NULL), precision(ast_precision_none),
440 is_precision_statement(false)
445 /** Construct a type specifier from a structure definition */
446 ast_type_specifier(ast_struct_specifier *s)
447 : type_name(s->name), structure(s),
448 is_array(false), array_size(NULL), precision(ast_precision_none),
449 is_precision_statement(false)
454 const struct glsl_type *glsl_type(const char **name,
455 struct _mesa_glsl_parse_state *state)
458 virtual void print(void) const;
460 ir_rvalue *hir(exec_list *, struct _mesa_glsl_parse_state *);
462 const char *type_name;
463 ast_struct_specifier *structure;
466 ast_expression *array_size;
468 unsigned precision:2;
470 bool is_precision_statement;
474 class ast_fully_specified_type : public ast_node {
476 virtual void print(void) const;
477 bool has_qualifiers() const;
479 ast_type_qualifier qualifier;
480 ast_type_specifier *specifier;
484 class ast_declarator_list : public ast_node {
486 ast_declarator_list(ast_fully_specified_type *);
487 virtual void print(void) const;
489 virtual ir_rvalue *hir(exec_list *instructions,
490 struct _mesa_glsl_parse_state *state);
492 ast_fully_specified_type *type;
493 exec_list declarations;
496 * Special flag for vertex shader "invariant" declarations.
498 * Vertex shaders can contain "invariant" variable redeclarations that do
499 * not include a type. For example, "invariant gl_Position;". This flag
500 * is used to note these cases when no type is specified.
506 class ast_parameter_declarator : public ast_node {
508 ast_parameter_declarator()
510 this->identifier = NULL;
511 this->is_array = false;
512 this->array_size = 0;
515 virtual void print(void) const;
517 virtual ir_rvalue *hir(exec_list *instructions,
518 struct _mesa_glsl_parse_state *state);
520 ast_fully_specified_type *type;
521 const char *identifier;
523 ast_expression *array_size;
525 static void parameters_to_hir(exec_list *ast_parameters,
526 bool formal, exec_list *ir_parameters,
527 struct _mesa_glsl_parse_state *state);
530 /** Is this parameter declaration part of a formal parameter list? */
531 bool formal_parameter;
534 * Is this parameter 'void' type?
536 * This field is set by \c ::hir.
542 class ast_function : public ast_node {
546 virtual void print(void) const;
548 virtual ir_rvalue *hir(exec_list *instructions,
549 struct _mesa_glsl_parse_state *state);
551 ast_fully_specified_type *return_type;
552 const char *identifier;
554 exec_list parameters;
558 * Is this prototype part of the function definition?
560 * Used by ast_function_definition::hir to process the parameters, etc.
568 * Function signature corresponding to this function prototype instance
570 * Used by ast_function_definition::hir to process the parameters, etc.
575 class ir_function_signature *signature;
577 friend class ast_function_definition;
581 class ast_expression_statement : public ast_node {
583 ast_expression_statement(ast_expression *);
584 virtual void print(void) const;
586 virtual ir_rvalue *hir(exec_list *instructions,
587 struct _mesa_glsl_parse_state *state);
589 ast_expression *expression;
593 class ast_case_label : public ast_node {
595 ast_case_label(ast_expression *test_value);
596 virtual void print(void) const;
598 virtual ir_rvalue *hir(exec_list *instructions,
599 struct _mesa_glsl_parse_state *state);
602 * An test value of NULL means 'default'.
604 ast_expression *test_value;
608 class ast_case_label_list : public ast_node {
610 ast_case_label_list(void);
611 virtual void print(void) const;
613 virtual ir_rvalue *hir(exec_list *instructions,
614 struct _mesa_glsl_parse_state *state);
617 * A list of case labels.
623 class ast_case_statement : public ast_node {
625 ast_case_statement(ast_case_label_list *labels);
626 virtual void print(void) const;
628 virtual ir_rvalue *hir(exec_list *instructions,
629 struct _mesa_glsl_parse_state *state);
631 ast_case_label_list *labels;
634 * A list of statements.
640 class ast_case_statement_list : public ast_node {
642 ast_case_statement_list(void);
643 virtual void print(void) const;
645 virtual ir_rvalue *hir(exec_list *instructions,
646 struct _mesa_glsl_parse_state *state);
655 class ast_switch_body : public ast_node {
657 ast_switch_body(ast_case_statement_list *stmts);
658 virtual void print(void) const;
660 virtual ir_rvalue *hir(exec_list *instructions,
661 struct _mesa_glsl_parse_state *state);
663 ast_case_statement_list *stmts;
667 class ast_selection_statement : public ast_node {
669 ast_selection_statement(ast_expression *condition,
670 ast_node *then_statement,
671 ast_node *else_statement);
672 virtual void print(void) const;
674 virtual ir_rvalue *hir(exec_list *instructions,
675 struct _mesa_glsl_parse_state *state);
677 ast_expression *condition;
678 ast_node *then_statement;
679 ast_node *else_statement;
683 class ast_switch_statement : public ast_node {
685 ast_switch_statement(ast_expression *test_expression,
687 virtual void print(void) const;
689 virtual ir_rvalue *hir(exec_list *instructions,
690 struct _mesa_glsl_parse_state *state);
692 ast_expression *test_expression;
696 void test_to_hir(exec_list *, struct _mesa_glsl_parse_state *);
699 class ast_iteration_statement : public ast_node {
701 ast_iteration_statement(int mode, ast_node *init, ast_node *condition,
702 ast_expression *rest_expression, ast_node *body);
704 virtual void print(void) const;
706 virtual ir_rvalue *hir(exec_list *, struct _mesa_glsl_parse_state *);
708 enum ast_iteration_modes {
715 ast_node *init_statement;
717 ast_expression *rest_expression;
723 * Generate IR from the condition of a loop
725 * This is factored out of ::hir because some loops have the condition
726 * test at the top (for and while), and others have it at the end (do-while).
728 void condition_to_hir(class ir_loop *, struct _mesa_glsl_parse_state *);
732 class ast_jump_statement : public ast_node {
734 ast_jump_statement(int mode, ast_expression *return_value);
735 virtual void print(void) const;
737 virtual ir_rvalue *hir(exec_list *instructions,
738 struct _mesa_glsl_parse_state *state);
740 enum ast_jump_modes {
747 ast_expression *opt_return_value;
751 class ast_function_definition : public ast_node {
753 virtual void print(void) const;
755 virtual ir_rvalue *hir(exec_list *instructions,
756 struct _mesa_glsl_parse_state *state);
758 ast_function *prototype;
759 ast_compound_statement *body;
764 _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state);
767 _mesa_ast_field_selection_to_hir(const ast_expression *expr,
768 exec_list *instructions,
769 struct _mesa_glsl_parse_state *state);
772 emit_function(_mesa_glsl_parse_state *state, ir_function *f);