c096f9aa876be2ff9b1c2c75ee1ab0d569fdda3c
[profile/ivi/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    /* Callers of this talloc-based new need not call delete. It's
53     * easier to just talloc_free 'ctx' (or any of its ancestors). */
54    static void* operator new(size_t size, void *ctx)
55    {
56       void *node;
57
58       node = talloc_zero_size(ctx, size);
59       assert(node != NULL);
60
61       return node;
62    }
63
64    /* If the user *does* call delete, that's OK, we will just
65     * talloc_free in that case. */
66    static void operator delete(void *table)
67    {
68       talloc_free(table);
69    }
70
71    /**
72     * Print an AST node in something approximating the original GLSL code
73     */
74    virtual void print(void) const;
75
76    /**
77     * Convert the AST node to the high-level intermediate representation
78     */
79    virtual ir_rvalue *hir(exec_list *instructions,
80                           struct _mesa_glsl_parse_state *state);
81
82    /**
83     * Retrieve the source location of an AST node
84     *
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.
87     *
88     * \sa _mesa_glsl_error, ast_node::set_location
89     */
90    struct YYLTYPE get_location(void) const
91    {
92       struct YYLTYPE locp;
93
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;
99
100       return locp;
101    }
102
103    /**
104     * Set the source location of an AST node from a parser location
105     *
106     * \sa ast_node::get_location
107     */
108    void set_location(const struct YYLTYPE &locp)
109    {
110       this->location.source = locp.source;
111       this->location.line = locp.first_line;
112       this->location.column = locp.first_column;
113    }
114
115    /**
116     * Source location of the AST node.
117     */
118    struct {
119       unsigned source;    /**< GLSL source number. */
120       unsigned line;      /**< Line number within the source string. */
121       unsigned column;    /**< Column in the line. */
122    } location;
123
124    exec_node link;
125
126 protected:
127    /**
128     * The only constructor is protected so that only derived class objects can
129     * be created.
130     */
131    ast_node(void);
132 };
133
134
135 /**
136  * Operators for AST expression nodes.
137  */
138 enum ast_operators {
139    ast_assign,
140    ast_plus,        /**< Unary + operator. */
141    ast_neg,
142    ast_add,
143    ast_sub,
144    ast_mul,
145    ast_div,
146    ast_mod,
147    ast_lshift,
148    ast_rshift,
149    ast_less,
150    ast_greater,
151    ast_lequal,
152    ast_gequal,
153    ast_equal,
154    ast_nequal,
155    ast_bit_and,
156    ast_bit_xor,
157    ast_bit_or,
158    ast_bit_not,
159    ast_logic_and,
160    ast_logic_xor,
161    ast_logic_or,
162    ast_logic_not,
163
164    ast_mul_assign,
165    ast_div_assign,
166    ast_mod_assign,
167    ast_add_assign,
168    ast_sub_assign,
169    ast_ls_assign,
170    ast_rs_assign,
171    ast_and_assign,
172    ast_xor_assign,
173    ast_or_assign,
174
175    ast_conditional,
176
177    ast_pre_inc,
178    ast_pre_dec,
179    ast_post_inc,
180    ast_post_dec,
181    ast_field_selection,
182    ast_array_index,
183
184    ast_function_call,
185
186    ast_identifier,
187    ast_int_constant,
188    ast_uint_constant,
189    ast_float_constant,
190    ast_bool_constant,
191
192    ast_sequence
193 };
194
195 /**
196  * Representation of any sort of expression.
197  */
198 class ast_expression : public ast_node {
199 public:
200    ast_expression(int oper, ast_expression *,
201                   ast_expression *, ast_expression *);
202
203    ast_expression(const char *identifier) :
204       oper(ast_identifier)
205    {
206       subexpressions[0] = NULL;
207       subexpressions[1] = NULL;
208       subexpressions[2] = NULL;
209       primary_expression.identifier = (char *) identifier;
210    }
211
212    static const char *operator_string(enum ast_operators op);
213
214    virtual ir_rvalue *hir(exec_list *instructions,
215                           struct _mesa_glsl_parse_state *state);
216
217    virtual void print(void) const;
218
219    enum ast_operators oper;
220
221    ast_expression *subexpressions[3];
222
223    union {
224       char *identifier;
225       int int_constant;
226       float float_constant;
227       unsigned uint_constant;
228       int bool_constant;
229    } primary_expression;
230
231
232    /**
233     * List of expressions for an \c ast_sequence or parameters for an
234     * \c ast_function_call
235     */
236    exec_list expressions;
237 };
238
239 class ast_expression_bin : public ast_expression {
240 public:
241    ast_expression_bin(int oper, ast_expression *, ast_expression *);
242
243    virtual void print(void) const;
244 };
245
246 /**
247  * Subclass of expressions for function calls
248  */
249 class ast_function_expression : public ast_expression {
250 public:
251    ast_function_expression(ast_expression *callee)
252       : ast_expression(ast_function_call, callee,
253                        NULL, NULL),
254         cons(false)
255    {
256       /* empty */
257    }
258
259    ast_function_expression(class ast_type_specifier *type)
260       : ast_expression(ast_function_call, (ast_expression *) type,
261                        NULL, NULL),
262         cons(true)
263    {
264       /* empty */
265    }
266
267    bool is_constructor() const
268    {
269       return cons;
270    }
271
272    virtual ir_rvalue *hir(exec_list *instructions,
273                           struct _mesa_glsl_parse_state *state);
274
275 private:
276    /**
277     * Is this function call actually a constructor?
278     */
279    bool cons;
280 };
281
282
283 /**
284  * Number of possible operators for an ast_expression
285  *
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"
289  */
290 #define AST_NUM_OPERATORS (ast_sequence + 1)
291
292
293 class ast_compound_statement : public ast_node {
294 public:
295    ast_compound_statement(int new_scope, ast_node *statements);
296    virtual void print(void) const;
297
298    virtual ir_rvalue *hir(exec_list *instructions,
299                           struct _mesa_glsl_parse_state *state);
300
301    int new_scope;
302    exec_list statements;
303 };
304
305 class ast_declaration : public ast_node {
306 public:
307    ast_declaration(char *identifier, int is_array, ast_expression *array_size,
308                    ast_expression *initializer);
309    virtual void print(void) const;
310
311    char *identifier;
312    
313    int is_array;
314    ast_expression *array_size;
315
316    ast_expression *initializer;
317 };
318
319
320 enum {
321    ast_precision_high = 0, /**< Default precision. */
322    ast_precision_medium,
323    ast_precision_low
324 };
325
326 struct ast_type_qualifier {
327    union {
328       struct {
329          unsigned invariant:1;
330          unsigned constant:1;
331          unsigned attribute:1;
332          unsigned varying:1;
333          unsigned in:1;
334          unsigned out:1;
335          unsigned centroid:1;
336          unsigned uniform:1;
337          unsigned smooth:1;
338          unsigned flat:1;
339          unsigned noperspective:1;
340
341          /** \name Layout qualifiers for GL_ARB_fragment_coord_conventions */
342          /*@{*/
343          unsigned origin_upper_left:1;
344          unsigned pixel_center_integer:1;
345          /*@}*/
346
347          /**
348           * Flag set if GL_ARB_explicit_attrib_location "location" layout
349           * qualifier is used.
350           */
351          unsigned explicit_location:1;
352       }
353       /** \brief Set of flags, accessed by name. */
354       q;
355
356       /** \brief Set of flags, accessed as a bitmask. */
357       unsigned i;
358    } flags;
359
360    /**
361     * Location specified via GL_ARB_explicit_attrib_location layout
362     *
363     * \note
364     * This field is only valid if \c explicit_location is set.
365     */
366    unsigned location;
367
368    /**
369     * \brief Return string representation of interpolation qualifier.
370     *
371     * If an interpolation qualifier is present, then return that qualifier's
372     * string representation. Otherwise, return null. For example, if the
373     * noperspective bit is set, then this returns "noperspective".
374     *
375     * If multiple interpolation qualifiers are somehow present, then the
376     * returned string is undefined but not null.
377     */
378    const char *interpolation_string() const;
379 };
380
381 class ast_struct_specifier : public ast_node {
382 public:
383    ast_struct_specifier(char *identifier, ast_node *declarator_list);
384    virtual void print(void) const;
385
386    virtual ir_rvalue *hir(exec_list *instructions,
387                           struct _mesa_glsl_parse_state *state);
388
389    char *name;
390    exec_list declarations;
391 };
392
393
394 enum ast_types {
395    ast_void,
396    ast_float,
397    ast_int,
398    ast_uint,
399    ast_bool,
400    ast_vec2,
401    ast_vec3,
402    ast_vec4,
403    ast_bvec2,
404    ast_bvec3,
405    ast_bvec4,
406    ast_ivec2,
407    ast_ivec3,
408    ast_ivec4,
409    ast_uvec2,
410    ast_uvec3,
411    ast_uvec4,
412    ast_mat2,
413    ast_mat2x3,
414    ast_mat2x4,
415    ast_mat3x2,
416    ast_mat3,
417    ast_mat3x4,
418    ast_mat4x2,
419    ast_mat4x3,
420    ast_mat4,
421    ast_sampler1d,
422    ast_sampler2d,
423    ast_sampler2drect,
424    ast_sampler3d,
425    ast_samplercube,
426    ast_sampler1dshadow,
427    ast_sampler2dshadow,
428    ast_sampler2drectshadow,
429    ast_samplercubeshadow,
430    ast_sampler1darray,
431    ast_sampler2darray,
432    ast_sampler1darrayshadow,
433    ast_sampler2darrayshadow,
434    ast_isampler1d,
435    ast_isampler2d,
436    ast_isampler3d,
437    ast_isamplercube,
438    ast_isampler1darray,
439    ast_isampler2darray,
440    ast_usampler1d,
441    ast_usampler2d,
442    ast_usampler3d,
443    ast_usamplercube,
444    ast_usampler1darray,
445    ast_usampler2darray,
446
447    ast_struct,
448    ast_type_name
449 };
450
451
452 class ast_type_specifier : public ast_node {
453 public:
454    ast_type_specifier(int specifier);
455
456    /** Construct a type specifier from a type name */
457    ast_type_specifier(const char *name) 
458       : type_specifier(ast_type_name), type_name(name), structure(NULL),
459         is_array(false), array_size(NULL), precision(ast_precision_high)
460    {
461       /* empty */
462    }
463
464    /** Construct a type specifier from a structure definition */
465    ast_type_specifier(ast_struct_specifier *s)
466       : type_specifier(ast_struct), type_name(s->name), structure(s),
467         is_array(false), array_size(NULL), precision(ast_precision_high)
468    {
469       /* empty */
470    }
471
472    const struct glsl_type *glsl_type(const char **name,
473                                      struct _mesa_glsl_parse_state *state)
474       const;
475
476    virtual void print(void) const;
477
478    ir_rvalue *hir(exec_list *, struct _mesa_glsl_parse_state *);
479
480    enum ast_types type_specifier;
481
482    const char *type_name;
483    ast_struct_specifier *structure;
484
485    int is_array;
486    ast_expression *array_size;
487
488    unsigned precision:2;
489 };
490
491
492 class ast_fully_specified_type : public ast_node {
493 public:
494    virtual void print(void) const;
495    bool has_qualifiers() const;
496
497    ast_type_qualifier qualifier;
498    ast_type_specifier *specifier;
499 };
500
501
502 class ast_declarator_list : public ast_node {
503 public:
504    ast_declarator_list(ast_fully_specified_type *);
505    virtual void print(void) const;
506
507    virtual ir_rvalue *hir(exec_list *instructions,
508                           struct _mesa_glsl_parse_state *state);
509
510    ast_fully_specified_type *type;
511    exec_list declarations;
512
513    /**
514     * Special flag for vertex shader "invariant" declarations.
515     *
516     * Vertex shaders can contain "invariant" variable redeclarations that do
517     * not include a type.  For example, "invariant gl_Position;".  This flag
518     * is used to note these cases when no type is specified.
519     */
520    int invariant;
521 };
522
523
524 class ast_parameter_declarator : public ast_node {
525 public:
526    ast_parameter_declarator()
527    {
528       this->identifier = NULL;
529       this->is_array = false;
530       this->array_size = 0;
531    }
532
533    virtual void print(void) const;
534
535    virtual ir_rvalue *hir(exec_list *instructions,
536                           struct _mesa_glsl_parse_state *state);
537
538    ast_fully_specified_type *type;
539    char *identifier;
540    int is_array;
541    ast_expression *array_size;
542
543    static void parameters_to_hir(exec_list *ast_parameters,
544                                  bool formal, exec_list *ir_parameters,
545                                  struct _mesa_glsl_parse_state *state);
546
547 private:
548    /** Is this parameter declaration part of a formal parameter list? */
549    bool formal_parameter;
550
551    /**
552     * Is this parameter 'void' type?
553     *
554     * This field is set by \c ::hir.
555     */
556    bool is_void;
557 };
558
559
560 class ast_function : public ast_node {
561 public:
562    ast_function(void);
563
564    virtual void print(void) const;
565
566    virtual ir_rvalue *hir(exec_list *instructions,
567                           struct _mesa_glsl_parse_state *state);
568
569    ast_fully_specified_type *return_type;
570    char *identifier;
571
572    exec_list parameters;
573
574 private:
575    /**
576     * Is this prototype part of the function definition?
577     *
578     * Used by ast_function_definition::hir to process the parameters, etc.
579     * of the function.
580     *
581     * \sa ::hir
582     */
583    bool is_definition;
584
585    /**
586     * Function signature corresponding to this function prototype instance
587     *
588     * Used by ast_function_definition::hir to process the parameters, etc.
589     * of the function.
590     *
591     * \sa ::hir
592     */
593    class ir_function_signature *signature;
594
595    friend class ast_function_definition;
596 };
597
598
599 class ast_declaration_statement : public ast_node {
600 public:
601    ast_declaration_statement(void);
602
603    enum {
604       ast_function,
605       ast_declaration,
606       ast_precision
607    } mode;
608
609    union {
610       class ast_function *function;
611       ast_declarator_list *declarator;
612       ast_type_specifier *type;
613       ast_node *node;
614    } declaration;
615 };
616
617
618 class ast_expression_statement : public ast_node {
619 public:
620    ast_expression_statement(ast_expression *);
621    virtual void print(void) const;
622
623    virtual ir_rvalue *hir(exec_list *instructions,
624                           struct _mesa_glsl_parse_state *state);
625
626    ast_expression *expression;
627 };
628
629
630 class ast_case_label : public ast_node {
631 public:
632
633    /**
634     * An expression of NULL means 'default'.
635     */
636    ast_expression *expression;
637 };
638
639 class ast_selection_statement : public ast_node {
640 public:
641    ast_selection_statement(ast_expression *condition,
642                            ast_node *then_statement,
643                            ast_node *else_statement);
644    virtual void print(void) const;
645
646    virtual ir_rvalue *hir(exec_list *instructions,
647                           struct _mesa_glsl_parse_state *state);
648
649    ast_expression *condition;
650    ast_node *then_statement;
651    ast_node *else_statement;
652 };
653
654
655 class ast_switch_statement : public ast_node {
656 public:
657    ast_expression *expression;
658    exec_list statements;
659 };
660
661 class ast_iteration_statement : public ast_node {
662 public:
663    ast_iteration_statement(int mode, ast_node *init, ast_node *condition,
664                            ast_expression *rest_expression, ast_node *body);
665
666    virtual void print(void) const;
667
668    virtual ir_rvalue *hir(exec_list *, struct _mesa_glsl_parse_state *);
669
670    enum ast_iteration_modes {
671       ast_for,
672       ast_while,
673       ast_do_while
674    } mode;
675    
676
677    ast_node *init_statement;
678    ast_node *condition;
679    ast_expression *rest_expression;
680
681    ast_node *body;
682
683 private:
684    /**
685     * Generate IR from the condition of a loop
686     *
687     * This is factored out of ::hir because some loops have the condition
688     * test at the top (for and while), and others have it at the end (do-while).
689     */
690    void condition_to_hir(class ir_loop *, struct _mesa_glsl_parse_state *);
691 };
692
693
694 class ast_jump_statement : public ast_node {
695 public:
696    ast_jump_statement(int mode, ast_expression *return_value);
697    virtual void print(void) const;
698
699    virtual ir_rvalue *hir(exec_list *instructions,
700                           struct _mesa_glsl_parse_state *state);
701
702    enum ast_jump_modes {
703       ast_continue,
704       ast_break,
705       ast_return,
706       ast_discard
707    } mode;
708
709    ast_expression *opt_return_value;
710 };
711
712
713 class ast_function_definition : public ast_node {
714 public:
715    virtual void print(void) const;
716
717    virtual ir_rvalue *hir(exec_list *instructions,
718                           struct _mesa_glsl_parse_state *state);
719
720    ast_function *prototype;
721    ast_compound_statement *body;
722 };
723 /*@}*/
724
725 extern void
726 _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state);
727
728 extern ir_rvalue *
729 _mesa_ast_field_selection_to_hir(const ast_expression *expr,
730                                  exec_list *instructions,
731                                  struct _mesa_glsl_parse_state *state);
732
733 void
734 emit_function(_mesa_glsl_parse_state *state, exec_list *instructions,
735               ir_function *f);
736
737 #endif /* AST_H */