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
= (char *) identifier
;
212 static const char *operator_string(enum ast_operators op
);
214 virtual ir_rvalue
*hir(exec_list
*instructions
,
215 struct _mesa_glsl_parse_state
*state
);
217 virtual void print(void) const;
219 enum ast_operators oper
;
221 ast_expression
*subexpressions
[3];
226 float float_constant
;
227 unsigned uint_constant
;
229 } primary_expression
;
233 * List of expressions for an \c ast_sequence or parameters for an
234 * \c ast_function_call
236 exec_list expressions
;
239 class ast_expression_bin
: public ast_expression
{
241 ast_expression_bin(int oper
, ast_expression
*, ast_expression
*);
243 virtual void print(void) const;
247 * Subclass of expressions for function calls
249 class ast_function_expression
: public ast_expression
{
251 ast_function_expression(ast_expression
*callee
)
252 : ast_expression(ast_function_call
, callee
,
259 ast_function_expression(class ast_type_specifier
*type
)
260 : ast_expression(ast_function_call
, (ast_expression
*) type
,
267 bool is_constructor() const
272 virtual ir_rvalue
*hir(exec_list
*instructions
,
273 struct _mesa_glsl_parse_state
*state
);
277 * Is this function call actually a constructor?
284 * Number of possible operators for an ast_expression
286 * This is done as a define instead of as an additional value in the enum so
287 * that the compiler won't generate spurious messages like "warning:
288 * enumeration value ‘ast_num_operators’ not handled in switch"
290 #define AST_NUM_OPERATORS (ast_sequence + 1)
293 class ast_compound_statement
: public ast_node
{
295 ast_compound_statement(int new_scope
, ast_node
*statements
);
296 virtual void print(void) const;
298 virtual ir_rvalue
*hir(exec_list
*instructions
,
299 struct _mesa_glsl_parse_state
*state
);
302 exec_list statements
;
305 class ast_declaration
: public ast_node
{
307 ast_declaration(char *identifier
, int is_array
, ast_expression
*array_size
,
308 ast_expression
*initializer
);
309 virtual void print(void) const;
314 ast_expression
*array_size
;
316 ast_expression
*initializer
;
321 ast_precision_none
= 0, /**< Absence of precision qualifier. */
323 ast_precision_medium
,
327 struct ast_type_qualifier
{
330 unsigned invariant
:1;
332 unsigned attribute
:1;
340 unsigned noperspective
:1;
342 /** \name Layout qualifiers for GL_ARB_fragment_coord_conventions */
344 unsigned origin_upper_left
:1;
345 unsigned pixel_center_integer
:1;
349 * Flag set if GL_ARB_explicit_attrib_location "location" layout
352 unsigned explicit_location
:1;
354 /** \name Layout qualifiers for GL_AMD_conservative_depth */
356 unsigned depth_any
:1;
357 unsigned depth_greater
:1;
358 unsigned depth_less
:1;
359 unsigned depth_unchanged
:1;
362 /** \brief Set of flags, accessed by name. */
365 /** \brief Set of flags, accessed as a bitmask. */
370 * Location specified via GL_ARB_explicit_attrib_location layout
373 * This field is only valid if \c explicit_location is set.
378 * Return true if and only if an interpolation qualifier is present.
380 bool has_interpolation() const;
383 * \brief Return string representation of interpolation qualifier.
385 * If an interpolation qualifier is present, then return that qualifier's
386 * string representation. Otherwise, return null. For example, if the
387 * noperspective bit is set, then this returns "noperspective".
389 * If multiple interpolation qualifiers are somehow present, then the
390 * returned string is undefined but not null.
392 const char *interpolation_string() const;
395 class ast_struct_specifier
: public ast_node
{
397 ast_struct_specifier(char *identifier
, ast_node
*declarator_list
);
398 virtual void print(void) const;
400 virtual ir_rvalue
*hir(exec_list
*instructions
,
401 struct _mesa_glsl_parse_state
*state
);
404 exec_list declarations
;
440 ast_samplerexternaloes
,
443 ast_sampler2drectshadow
,
444 ast_samplercubeshadow
,
447 ast_sampler1darrayshadow
,
448 ast_sampler2darrayshadow
,
467 class ast_type_specifier
: public ast_node
{
469 ast_type_specifier(int specifier
);
471 /** Construct a type specifier from a type name */
472 ast_type_specifier(const char *name
)
473 : type_specifier(ast_type_name
), type_name(name
), structure(NULL
),
474 is_array(false), array_size(NULL
), precision(ast_precision_none
),
475 is_precision_statement(false)
480 /** Construct a type specifier from a structure definition */
481 ast_type_specifier(ast_struct_specifier
*s
)
482 : type_specifier(ast_struct
), type_name(s
->name
), structure(s
),
483 is_array(false), array_size(NULL
), precision(ast_precision_none
),
484 is_precision_statement(false)
489 const struct glsl_type
*glsl_type(const char **name
,
490 struct _mesa_glsl_parse_state
*state
)
493 virtual void print(void) const;
495 ir_rvalue
*hir(exec_list
*, struct _mesa_glsl_parse_state
*);
497 enum ast_types type_specifier
;
499 const char *type_name
;
500 ast_struct_specifier
*structure
;
503 ast_expression
*array_size
;
505 unsigned precision
:2;
507 bool is_precision_statement
;
511 class ast_fully_specified_type
: public ast_node
{
513 virtual void print(void) const;
514 bool has_qualifiers() const;
516 ast_type_qualifier qualifier
;
517 ast_type_specifier
*specifier
;
521 class ast_declarator_list
: public ast_node
{
523 ast_declarator_list(ast_fully_specified_type
*);
524 virtual void print(void) const;
526 virtual ir_rvalue
*hir(exec_list
*instructions
,
527 struct _mesa_glsl_parse_state
*state
);
529 ast_fully_specified_type
*type
;
530 exec_list declarations
;
533 * Special flag for vertex shader "invariant" declarations.
535 * Vertex shaders can contain "invariant" variable redeclarations that do
536 * not include a type. For example, "invariant gl_Position;". This flag
537 * is used to note these cases when no type is specified.
543 class ast_parameter_declarator
: public ast_node
{
545 ast_parameter_declarator()
547 this->identifier
= NULL
;
548 this->is_array
= false;
549 this->array_size
= 0;
552 virtual void print(void) const;
554 virtual ir_rvalue
*hir(exec_list
*instructions
,
555 struct _mesa_glsl_parse_state
*state
);
557 ast_fully_specified_type
*type
;
560 ast_expression
*array_size
;
562 static void parameters_to_hir(exec_list
*ast_parameters
,
563 bool formal
, exec_list
*ir_parameters
,
564 struct _mesa_glsl_parse_state
*state
);
567 /** Is this parameter declaration part of a formal parameter list? */
568 bool formal_parameter
;
571 * Is this parameter 'void' type?
573 * This field is set by \c ::hir.
579 class ast_function
: public ast_node
{
583 virtual void print(void) const;
585 virtual ir_rvalue
*hir(exec_list
*instructions
,
586 struct _mesa_glsl_parse_state
*state
);
588 ast_fully_specified_type
*return_type
;
591 exec_list parameters
;
595 * Is this prototype part of the function definition?
597 * Used by ast_function_definition::hir to process the parameters, etc.
605 * Function signature corresponding to this function prototype instance
607 * Used by ast_function_definition::hir to process the parameters, etc.
612 class ir_function_signature
*signature
;
614 friend class ast_function_definition
;
618 class ast_expression_statement
: public ast_node
{
620 ast_expression_statement(ast_expression
*);
621 virtual void print(void) const;
623 virtual ir_rvalue
*hir(exec_list
*instructions
,
624 struct _mesa_glsl_parse_state
*state
);
626 ast_expression
*expression
;
630 class ast_case_label
: public ast_node
{
632 ast_case_label(ast_expression
*test_value
);
633 virtual void print(void) const;
635 virtual ir_rvalue
*hir(exec_list
*instructions
,
636 struct _mesa_glsl_parse_state
*state
);
639 * An test value of NULL means 'default'.
641 ast_expression
*test_value
;
645 class ast_case_label_list
: public ast_node
{
647 ast_case_label_list(void);
648 virtual void print(void) const;
650 virtual ir_rvalue
*hir(exec_list
*instructions
,
651 struct _mesa_glsl_parse_state
*state
);
654 * A list of case labels.
660 class ast_case_statement
: public ast_node
{
662 ast_case_statement(ast_case_label_list
*labels
);
663 virtual void print(void) const;
665 virtual ir_rvalue
*hir(exec_list
*instructions
,
666 struct _mesa_glsl_parse_state
*state
);
668 ast_case_label_list
*labels
;
671 * A list of statements.
677 class ast_case_statement_list
: public ast_node
{
679 ast_case_statement_list(void);
680 virtual void print(void) const;
682 virtual ir_rvalue
*hir(exec_list
*instructions
,
683 struct _mesa_glsl_parse_state
*state
);
692 class ast_switch_body
: public ast_node
{
694 ast_switch_body(ast_case_statement_list
*stmts
);
695 virtual void print(void) const;
697 virtual ir_rvalue
*hir(exec_list
*instructions
,
698 struct _mesa_glsl_parse_state
*state
);
700 ast_case_statement_list
*stmts
;
704 class ast_selection_statement
: public ast_node
{
706 ast_selection_statement(ast_expression
*condition
,
707 ast_node
*then_statement
,
708 ast_node
*else_statement
);
709 virtual void print(void) const;
711 virtual ir_rvalue
*hir(exec_list
*instructions
,
712 struct _mesa_glsl_parse_state
*state
);
714 ast_expression
*condition
;
715 ast_node
*then_statement
;
716 ast_node
*else_statement
;
720 class ast_switch_statement
: public ast_node
{
722 ast_switch_statement(ast_expression
*test_expression
,
724 virtual void print(void) const;
726 virtual ir_rvalue
*hir(exec_list
*instructions
,
727 struct _mesa_glsl_parse_state
*state
);
729 ast_expression
*test_expression
;
733 void test_to_hir(exec_list
*, struct _mesa_glsl_parse_state
*);
736 class ast_iteration_statement
: public ast_node
{
738 ast_iteration_statement(int mode
, ast_node
*init
, ast_node
*condition
,
739 ast_expression
*rest_expression
, ast_node
*body
);
741 virtual void print(void) const;
743 virtual ir_rvalue
*hir(exec_list
*, struct _mesa_glsl_parse_state
*);
745 enum ast_iteration_modes
{
752 ast_node
*init_statement
;
754 ast_expression
*rest_expression
;
760 * Generate IR from the condition of a loop
762 * This is factored out of ::hir because some loops have the condition
763 * test at the top (for and while), and others have it at the end (do-while).
765 void condition_to_hir(class ir_loop
*, struct _mesa_glsl_parse_state
*);
769 class ast_jump_statement
: public ast_node
{
771 ast_jump_statement(int mode
, ast_expression
*return_value
);
772 virtual void print(void) const;
774 virtual ir_rvalue
*hir(exec_list
*instructions
,
775 struct _mesa_glsl_parse_state
*state
);
777 enum ast_jump_modes
{
784 ast_expression
*opt_return_value
;
788 class ast_function_definition
: public ast_node
{
790 virtual void print(void) const;
792 virtual ir_rvalue
*hir(exec_list
*instructions
,
793 struct _mesa_glsl_parse_state
*state
);
795 ast_function
*prototype
;
796 ast_compound_statement
*body
;
801 _mesa_ast_to_hir(exec_list
*instructions
, struct _mesa_glsl_parse_state
*state
);
804 _mesa_ast_field_selection_to_hir(const ast_expression
*expr
,
805 exec_list
*instructions
,
806 struct _mesa_glsl_parse_state
*state
);
809 emit_function(_mesa_glsl_parse_state
*state
, ir_function
*f
);