2010-03-10 13:58:12 -08:00
|
|
|
|
/* -*- c++ -*- */
|
2010-02-22 13:19:34 -08:00
|
|
|
|
/*
|
|
|
|
|
* Copyright © 2009 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
#ifndef AST_H
|
|
|
|
|
#define AST_H
|
|
|
|
|
|
2010-03-08 23:44:00 -08:00
|
|
|
|
#include "list.h"
|
2010-02-22 13:19:34 -08:00
|
|
|
|
#include "glsl_parser_extras.h"
|
|
|
|
|
|
|
|
|
|
struct _mesa_glsl_parse_state;
|
|
|
|
|
|
|
|
|
|
struct YYLTYPE;
|
|
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
|
/**
|
|
|
|
|
* \defgroup AST Abstract syntax tree node definitions
|
|
|
|
|
*
|
|
|
|
|
* An abstract syntax tree is generated by the parser. This is a fairly
|
|
|
|
|
* direct representation of the gramma derivation for the source program.
|
|
|
|
|
* No symantic checking is done during the generation of the AST. Only
|
|
|
|
|
* syntactic checking is done. Symantic checking is performed by a later
|
|
|
|
|
* stage that converts the AST to a more generic intermediate representation.
|
|
|
|
|
*
|
|
|
|
|
*@{
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Base class of all abstract syntax tree nodes
|
|
|
|
|
*/
|
2010-05-10 11:17:53 -07:00
|
|
|
|
class ast_node {
|
2010-02-22 13:19:34 -08:00
|
|
|
|
public:
|
2011-01-21 14:32:31 -08:00
|
|
|
|
/* Callers of this ralloc-based new need not call delete. It's
|
|
|
|
|
* easier to just ralloc_free 'ctx' (or any of its ancestors). */
|
2010-06-23 17:12:11 -07:00
|
|
|
|
static void* operator new(size_t size, void *ctx)
|
|
|
|
|
{
|
|
|
|
|
void *node;
|
|
|
|
|
|
2011-01-21 14:32:31 -08:00
|
|
|
|
node = rzalloc_size(ctx, size);
|
2010-06-23 17:12:11 -07:00
|
|
|
|
assert(node != NULL);
|
|
|
|
|
|
|
|
|
|
return node;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If the user *does* call delete, that's OK, we will just
|
2011-01-21 14:32:31 -08:00
|
|
|
|
* ralloc_free in that case. */
|
2010-06-23 17:12:11 -07:00
|
|
|
|
static void operator delete(void *table)
|
|
|
|
|
{
|
2011-01-21 14:32:31 -08:00
|
|
|
|
ralloc_free(table);
|
2010-06-23 17:12:11 -07:00
|
|
|
|
}
|
|
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
|
/**
|
|
|
|
|
* Print an AST node in something approximating the original GLSL code
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
|
virtual void print(void) const;
|
2010-09-18 16:08:38 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Convert the AST node to the high-level intermediate representation
|
|
|
|
|
*/
|
2010-03-26 00:25:36 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
2010-02-22 13:19:34 -08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retrieve the source location of an AST node
|
|
|
|
|
*
|
|
|
|
|
* This function is primarily used to get the source position of an AST node
|
|
|
|
|
* into a form that can be passed to \c _mesa_glsl_error.
|
|
|
|
|
*
|
|
|
|
|
* \sa _mesa_glsl_error, ast_node::set_location
|
|
|
|
|
*/
|
|
|
|
|
struct YYLTYPE get_location(void) const
|
|
|
|
|
{
|
|
|
|
|
struct YYLTYPE locp;
|
|
|
|
|
|
|
|
|
|
locp.source = this->location.source;
|
|
|
|
|
locp.first_line = this->location.line;
|
|
|
|
|
locp.first_column = this->location.column;
|
|
|
|
|
locp.last_line = locp.first_line;
|
|
|
|
|
locp.last_column = locp.first_column;
|
|
|
|
|
|
|
|
|
|
return locp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the source location of an AST node from a parser location
|
|
|
|
|
*
|
|
|
|
|
* \sa ast_node::get_location
|
|
|
|
|
*/
|
2010-03-31 17:12:34 -07:00
|
|
|
|
void set_location(const struct YYLTYPE &locp)
|
2010-02-22 13:19:34 -08:00
|
|
|
|
{
|
2010-03-31 17:12:34 -07:00
|
|
|
|
this->location.source = locp.source;
|
|
|
|
|
this->location.line = locp.first_line;
|
|
|
|
|
this->location.column = locp.first_column;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
}
|
|
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
|
/**
|
|
|
|
|
* Source location of the AST node.
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
|
struct {
|
2010-09-18 16:08:38 +02:00
|
|
|
|
unsigned source; /**< GLSL source number. */
|
|
|
|
|
unsigned line; /**< Line number within the source string. */
|
|
|
|
|
unsigned column; /**< Column in the line. */
|
2010-02-22 13:19:34 -08:00
|
|
|
|
} location;
|
|
|
|
|
|
2010-05-10 11:17:53 -07:00
|
|
|
|
exec_node link;
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
protected:
|
2010-09-18 16:08:38 +02:00
|
|
|
|
/**
|
|
|
|
|
* The only constructor is protected so that only derived class objects can
|
|
|
|
|
* be created.
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_node(void);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
|
/**
|
|
|
|
|
* Operators for AST expression nodes.
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
|
enum ast_operators {
|
|
|
|
|
ast_assign,
|
|
|
|
|
ast_plus, /**< Unary + operator. */
|
|
|
|
|
ast_neg,
|
|
|
|
|
ast_add,
|
|
|
|
|
ast_sub,
|
|
|
|
|
ast_mul,
|
|
|
|
|
ast_div,
|
|
|
|
|
ast_mod,
|
|
|
|
|
ast_lshift,
|
|
|
|
|
ast_rshift,
|
|
|
|
|
ast_less,
|
|
|
|
|
ast_greater,
|
|
|
|
|
ast_lequal,
|
|
|
|
|
ast_gequal,
|
|
|
|
|
ast_equal,
|
|
|
|
|
ast_nequal,
|
|
|
|
|
ast_bit_and,
|
|
|
|
|
ast_bit_xor,
|
|
|
|
|
ast_bit_or,
|
|
|
|
|
ast_bit_not,
|
|
|
|
|
ast_logic_and,
|
|
|
|
|
ast_logic_xor,
|
|
|
|
|
ast_logic_or,
|
|
|
|
|
ast_logic_not,
|
|
|
|
|
|
|
|
|
|
ast_mul_assign,
|
|
|
|
|
ast_div_assign,
|
|
|
|
|
ast_mod_assign,
|
|
|
|
|
ast_add_assign,
|
|
|
|
|
ast_sub_assign,
|
|
|
|
|
ast_ls_assign,
|
|
|
|
|
ast_rs_assign,
|
|
|
|
|
ast_and_assign,
|
|
|
|
|
ast_xor_assign,
|
|
|
|
|
ast_or_assign,
|
|
|
|
|
|
|
|
|
|
ast_conditional,
|
|
|
|
|
|
|
|
|
|
ast_pre_inc,
|
|
|
|
|
ast_pre_dec,
|
|
|
|
|
ast_post_inc,
|
|
|
|
|
ast_post_dec,
|
|
|
|
|
ast_field_selection,
|
|
|
|
|
ast_array_index,
|
|
|
|
|
|
|
|
|
|
ast_function_call,
|
|
|
|
|
|
|
|
|
|
ast_identifier,
|
|
|
|
|
ast_int_constant,
|
|
|
|
|
ast_uint_constant,
|
|
|
|
|
ast_float_constant,
|
|
|
|
|
ast_bool_constant,
|
|
|
|
|
|
|
|
|
|
ast_sequence
|
|
|
|
|
};
|
|
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
|
/**
|
|
|
|
|
* Representation of any sort of expression.
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
|
class ast_expression : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
ast_expression(int oper, ast_expression *,
|
|
|
|
|
ast_expression *, ast_expression *);
|
|
|
|
|
|
2010-03-10 13:25:56 -08:00
|
|
|
|
ast_expression(const char *identifier) :
|
|
|
|
|
oper(ast_identifier)
|
|
|
|
|
{
|
|
|
|
|
subexpressions[0] = NULL;
|
|
|
|
|
subexpressions[1] = NULL;
|
|
|
|
|
subexpressions[2] = NULL;
|
2012-03-29 23:17:31 -07:00
|
|
|
|
primary_expression.identifier = identifier;
|
2011-12-23 09:56:03 -08:00
|
|
|
|
this->non_lvalue_description = NULL;
|
2010-03-10 13:25:56 -08:00
|
|
|
|
}
|
|
|
|
|
|
2010-02-22 19:10:25 -08:00
|
|
|
|
static const char *operator_string(enum ast_operators op);
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
2010-03-01 13:49:10 -08:00
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
|
|
|
|
enum ast_operators oper;
|
|
|
|
|
|
|
|
|
|
ast_expression *subexpressions[3];
|
|
|
|
|
|
|
|
|
|
union {
|
2012-03-29 23:17:31 -07:00
|
|
|
|
const char *identifier;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
int int_constant;
|
|
|
|
|
float float_constant;
|
|
|
|
|
unsigned uint_constant;
|
|
|
|
|
int bool_constant;
|
|
|
|
|
} primary_expression;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-05-10 10:47:14 -07:00
|
|
|
|
* List of expressions for an \c ast_sequence or parameters for an
|
|
|
|
|
* \c ast_function_call
|
2010-02-22 13:19:34 -08:00
|
|
|
|
*/
|
2010-05-10 11:17:53 -07:00
|
|
|
|
exec_list expressions;
|
2011-12-23 09:56:03 -08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* For things that can't be l-values, this describes what it is.
|
|
|
|
|
*
|
|
|
|
|
* This text is used by the code that generates IR for assignments to
|
|
|
|
|
* detect and emit useful messages for assignments to some things that
|
|
|
|
|
* can't be l-values. For example, pre- or post-incerement expressions.
|
|
|
|
|
*
|
|
|
|
|
* \note
|
|
|
|
|
* This pointer may be \c NULL.
|
|
|
|
|
*/
|
|
|
|
|
const char *non_lvalue_description;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
};
|
|
|
|
|
|
2010-02-22 19:10:25 -08:00
|
|
|
|
class ast_expression_bin : public ast_expression {
|
|
|
|
|
public:
|
|
|
|
|
ast_expression_bin(int oper, ast_expression *, ast_expression *);
|
|
|
|
|
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
};
|
|
|
|
|
|
2010-03-10 13:26:52 -08:00
|
|
|
|
/**
|
|
|
|
|
* Subclass of expressions for function calls
|
|
|
|
|
*/
|
|
|
|
|
class ast_function_expression : public ast_expression {
|
|
|
|
|
public:
|
2010-03-10 14:12:22 -08:00
|
|
|
|
ast_function_expression(ast_expression *callee)
|
|
|
|
|
: ast_expression(ast_function_call, callee,
|
|
|
|
|
NULL, NULL),
|
|
|
|
|
cons(false)
|
2010-03-10 13:26:52 -08:00
|
|
|
|
{
|
|
|
|
|
/* empty */
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-10 14:12:22 -08:00
|
|
|
|
ast_function_expression(class ast_type_specifier *type)
|
|
|
|
|
: ast_expression(ast_function_call, (ast_expression *) type,
|
|
|
|
|
NULL, NULL),
|
|
|
|
|
cons(true)
|
|
|
|
|
{
|
|
|
|
|
/* empty */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool is_constructor() const
|
|
|
|
|
{
|
|
|
|
|
return cons;
|
|
|
|
|
}
|
2010-03-10 13:26:52 -08:00
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
2010-03-10 14:12:22 -08:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
/**
|
|
|
|
|
* Is this function call actually a constructor?
|
|
|
|
|
*/
|
|
|
|
|
bool cons;
|
2010-03-10 13:26:52 -08:00
|
|
|
|
};
|
|
|
|
|
|
2010-02-22 19:10:25 -08:00
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
/**
|
|
|
|
|
* Number of possible operators for an ast_expression
|
|
|
|
|
*
|
|
|
|
|
* This is done as a define instead of as an additional value in the enum so
|
|
|
|
|
* that the compiler won't generate spurious messages like "warning:
|
|
|
|
|
* enumeration value ‘ast_num_operators’ not handled in switch"
|
|
|
|
|
*/
|
|
|
|
|
#define AST_NUM_OPERATORS (ast_sequence + 1)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_compound_statement : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
ast_compound_statement(int new_scope, ast_node *statements);
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
2010-03-01 13:49:10 -08:00
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
int new_scope;
|
2010-05-10 11:17:53 -07:00
|
|
|
|
exec_list statements;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class ast_declaration : public ast_node {
|
|
|
|
|
public:
|
2013-06-10 15:59:55 -07:00
|
|
|
|
ast_declaration(const char *identifier, bool is_array, ast_expression *array_size,
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_expression *initializer);
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
2012-03-29 23:17:31 -07:00
|
|
|
|
const char *identifier;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
|
2013-06-10 15:59:55 -07:00
|
|
|
|
bool is_array;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_expression *array_size;
|
|
|
|
|
|
|
|
|
|
ast_expression *initializer;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
enum {
|
2011-01-14 09:50:55 -08:00
|
|
|
|
ast_precision_none = 0, /**< Absence of precision qualifier. */
|
|
|
|
|
ast_precision_high,
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_precision_medium,
|
|
|
|
|
ast_precision_low
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct ast_type_qualifier {
|
2012-06-22 13:36:35 -07:00
|
|
|
|
/* Callers of this ralloc-based new need not call delete. It's
|
|
|
|
|
* easier to just ralloc_free 'ctx' (or any of its ancestors). */
|
|
|
|
|
static void* operator new(size_t size, void *ctx)
|
|
|
|
|
{
|
|
|
|
|
void *node;
|
|
|
|
|
|
|
|
|
|
node = rzalloc_size(ctx, size);
|
|
|
|
|
assert(node != NULL);
|
|
|
|
|
|
|
|
|
|
return node;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If the user *does* call delete, that's OK, we will just
|
|
|
|
|
* ralloc_free in that case. */
|
|
|
|
|
static void operator delete(void *table)
|
|
|
|
|
{
|
|
|
|
|
ralloc_free(table);
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-05 16:38:47 -07:00
|
|
|
|
union {
|
|
|
|
|
struct {
|
|
|
|
|
unsigned invariant:1;
|
|
|
|
|
unsigned constant:1;
|
|
|
|
|
unsigned attribute:1;
|
|
|
|
|
unsigned varying:1;
|
|
|
|
|
unsigned in:1;
|
|
|
|
|
unsigned out:1;
|
|
|
|
|
unsigned centroid:1;
|
|
|
|
|
unsigned uniform:1;
|
|
|
|
|
unsigned smooth:1;
|
|
|
|
|
unsigned flat:1;
|
|
|
|
|
unsigned noperspective:1;
|
|
|
|
|
|
|
|
|
|
/** \name Layout qualifiers for GL_ARB_fragment_coord_conventions */
|
|
|
|
|
/*@{*/
|
|
|
|
|
unsigned origin_upper_left:1;
|
|
|
|
|
unsigned pixel_center_integer:1;
|
|
|
|
|
/*@}*/
|
2010-10-05 17:00:31 -07:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Flag set if GL_ARB_explicit_attrib_location "location" layout
|
|
|
|
|
* qualifier is used.
|
|
|
|
|
*/
|
|
|
|
|
unsigned explicit_location:1;
|
glsl: add support for ARB_blend_func_extended (v3)
This adds index support to the GLSL compiler.
I'm not 100% sure of my approach here, esp without how output ordering
happens wrt location, index pairs, in the "mark" function.
Since current hw doesn't ever have a location > 0 with an index > 0,
we don't have to work out if the output ordering the hw requires is
location, index, location, index or location, location, index, index.
But we have no hw to know, so punt on it for now.
v2: index requires layout - catch and error
setup explicit index properly.
v3: drop idx_offset stuff, assume index follow location
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-03-24 13:33:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* Flag set if GL_ARB_explicit_attrib_location "index" layout
|
|
|
|
|
* qualifier is used.
|
|
|
|
|
*/
|
|
|
|
|
unsigned explicit_index:1;
|
2011-01-27 01:40:10 -08:00
|
|
|
|
|
|
|
|
|
/** \name Layout qualifiers for GL_AMD_conservative_depth */
|
|
|
|
|
/** \{ */
|
|
|
|
|
unsigned depth_any:1;
|
|
|
|
|
unsigned depth_greater:1;
|
|
|
|
|
unsigned depth_less:1;
|
|
|
|
|
unsigned depth_unchanged:1;
|
|
|
|
|
/** \} */
|
2012-04-18 13:35:56 -07:00
|
|
|
|
|
|
|
|
|
/** \name Layout qualifiers for GL_ARB_uniform_buffer_object */
|
|
|
|
|
/** \{ */
|
|
|
|
|
unsigned std140:1;
|
|
|
|
|
unsigned shared:1;
|
|
|
|
|
unsigned packed:1;
|
|
|
|
|
unsigned column_major:1;
|
|
|
|
|
unsigned row_major:1;
|
|
|
|
|
/** \} */
|
2010-12-15 15:58:49 -08:00
|
|
|
|
}
|
|
|
|
|
/** \brief Set of flags, accessed by name. */
|
|
|
|
|
q;
|
|
|
|
|
|
|
|
|
|
/** \brief Set of flags, accessed as a bitmask. */
|
2010-10-05 16:38:47 -07:00
|
|
|
|
unsigned i;
|
|
|
|
|
} flags;
|
2010-10-05 17:00:31 -07:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Location specified via GL_ARB_explicit_attrib_location layout
|
|
|
|
|
*
|
|
|
|
|
* \note
|
|
|
|
|
* This field is only valid if \c explicit_location is set.
|
|
|
|
|
*/
|
2011-08-21 15:44:35 -07:00
|
|
|
|
int location;
|
glsl: add support for ARB_blend_func_extended (v3)
This adds index support to the GLSL compiler.
I'm not 100% sure of my approach here, esp without how output ordering
happens wrt location, index pairs, in the "mark" function.
Since current hw doesn't ever have a location > 0 with an index > 0,
we don't have to work out if the output ordering the hw requires is
location, index, location, index or location, location, index, index.
But we have no hw to know, so punt on it for now.
v2: index requires layout - catch and error
setup explicit index properly.
v3: drop idx_offset stuff, assume index follow location
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-03-24 13:33:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* Index specified via GL_ARB_explicit_attrib_location layout
|
|
|
|
|
*
|
|
|
|
|
* \note
|
|
|
|
|
* This field is only valid if \c explicit_index is set.
|
|
|
|
|
*/
|
|
|
|
|
int index;
|
2011-01-11 16:59:24 -08:00
|
|
|
|
|
2011-01-11 17:21:18 -08:00
|
|
|
|
/**
|
|
|
|
|
* Return true if and only if an interpolation qualifier is present.
|
|
|
|
|
*/
|
|
|
|
|
bool has_interpolation() const;
|
|
|
|
|
|
2011-01-11 16:59:24 -08:00
|
|
|
|
/**
|
|
|
|
|
* \brief Return string representation of interpolation qualifier.
|
|
|
|
|
*
|
|
|
|
|
* If an interpolation qualifier is present, then return that qualifier's
|
|
|
|
|
* string representation. Otherwise, return null. For example, if the
|
|
|
|
|
* noperspective bit is set, then this returns "noperspective".
|
|
|
|
|
*
|
|
|
|
|
* If multiple interpolation qualifiers are somehow present, then the
|
|
|
|
|
* returned string is undefined but not null.
|
|
|
|
|
*/
|
|
|
|
|
const char *interpolation_string() const;
|
2012-06-22 13:36:35 -07:00
|
|
|
|
|
|
|
|
|
bool merge_qualifier(YYLTYPE *loc,
|
|
|
|
|
_mesa_glsl_parse_state *state,
|
|
|
|
|
ast_type_qualifier q);
|
2010-02-22 13:19:34 -08:00
|
|
|
|
};
|
|
|
|
|
|
2012-04-26 10:16:52 -07:00
|
|
|
|
class ast_declarator_list;
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
class ast_struct_specifier : public ast_node {
|
|
|
|
|
public:
|
2012-04-26 10:16:52 -07:00
|
|
|
|
ast_struct_specifier(const char *identifier,
|
|
|
|
|
ast_declarator_list *declarator_list);
|
2010-02-22 13:19:34 -08:00
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
2010-04-19 15:13:15 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
2012-03-29 23:17:31 -07:00
|
|
|
|
const char *name;
|
2012-04-26 10:16:52 -07:00
|
|
|
|
/* List of ast_declarator_list * */
|
2010-05-10 11:17:53 -07:00
|
|
|
|
exec_list declarations;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_type_specifier : public ast_node {
|
|
|
|
|
public:
|
2013-06-24 21:38:30 -07:00
|
|
|
|
/**
|
|
|
|
|
* \brief Make a shallow copy of an ast_type_specifier, specifying array
|
|
|
|
|
* fields.
|
|
|
|
|
*
|
|
|
|
|
* Use only if the objects are allocated from the same context and will not
|
|
|
|
|
* be modified. Zeros the inherited ast_node's fields.
|
|
|
|
|
*/
|
|
|
|
|
ast_type_specifier(const ast_type_specifier *that, bool is_array,
|
|
|
|
|
ast_expression *array_size)
|
|
|
|
|
: ast_node(), type_name(that->type_name), structure(that->structure),
|
|
|
|
|
is_array(is_array), array_size(array_size), precision(that->precision),
|
|
|
|
|
is_precision_statement(that->is_precision_statement)
|
|
|
|
|
{
|
|
|
|
|
/* empty */
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-15 14:28:17 -07:00
|
|
|
|
/** Construct a type specifier from a type name */
|
|
|
|
|
ast_type_specifier(const char *name)
|
2012-03-29 23:17:32 -07:00
|
|
|
|
: type_name(name), structure(NULL),
|
2011-01-16 21:44:57 -08:00
|
|
|
|
is_array(false), array_size(NULL), precision(ast_precision_none),
|
|
|
|
|
is_precision_statement(false)
|
2010-03-15 14:28:17 -07:00
|
|
|
|
{
|
|
|
|
|
/* empty */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Construct a type specifier from a structure definition */
|
|
|
|
|
ast_type_specifier(ast_struct_specifier *s)
|
2012-03-29 23:17:32 -07:00
|
|
|
|
: type_name(s->name), structure(s),
|
2011-01-16 21:44:57 -08:00
|
|
|
|
is_array(false), array_size(NULL), precision(ast_precision_none),
|
|
|
|
|
is_precision_statement(false)
|
2010-03-15 14:28:17 -07:00
|
|
|
|
{
|
|
|
|
|
/* empty */
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-31 16:22:06 -07:00
|
|
|
|
const struct glsl_type *glsl_type(const char **name,
|
|
|
|
|
struct _mesa_glsl_parse_state *state)
|
|
|
|
|
const;
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
2010-04-19 15:13:15 -07:00
|
|
|
|
ir_rvalue *hir(exec_list *, struct _mesa_glsl_parse_state *);
|
|
|
|
|
|
2010-03-15 14:15:15 -07:00
|
|
|
|
const char *type_name;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_struct_specifier *structure;
|
|
|
|
|
|
2013-06-10 15:59:55 -07:00
|
|
|
|
bool is_array;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_expression *array_size;
|
|
|
|
|
|
|
|
|
|
unsigned precision:2;
|
2011-01-16 21:44:57 -08:00
|
|
|
|
|
|
|
|
|
bool is_precision_statement;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_fully_specified_type : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
virtual void print(void) const;
|
2010-06-29 00:47:44 -07:00
|
|
|
|
bool has_qualifiers() const;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
|
|
|
|
|
ast_type_qualifier qualifier;
|
|
|
|
|
ast_type_specifier *specifier;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_declarator_list : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
ast_declarator_list(ast_fully_specified_type *);
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
2010-03-01 13:49:10 -08:00
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_fully_specified_type *type;
|
2013-06-26 15:58:08 -07:00
|
|
|
|
/** List of 'ast_declaration *' */
|
2010-05-10 11:17:53 -07:00
|
|
|
|
exec_list declarations;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Special flag for vertex shader "invariant" declarations.
|
|
|
|
|
*
|
|
|
|
|
* Vertex shaders can contain "invariant" variable redeclarations that do
|
|
|
|
|
* not include a type. For example, "invariant gl_Position;". This flag
|
|
|
|
|
* is used to note these cases when no type is specified.
|
|
|
|
|
*/
|
|
|
|
|
int invariant;
|
2012-04-26 18:19:39 -07:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Flag indicating that these declarators are in a uniform block,
|
|
|
|
|
* allowing UBO type qualifiers.
|
|
|
|
|
*/
|
|
|
|
|
bool ubo_qualifiers_valid;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_parameter_declarator : public ast_node {
|
|
|
|
|
public:
|
2013-02-01 23:27:34 -08:00
|
|
|
|
ast_parameter_declarator() :
|
|
|
|
|
type(NULL),
|
|
|
|
|
identifier(NULL),
|
|
|
|
|
is_array(false),
|
|
|
|
|
array_size(NULL),
|
|
|
|
|
formal_parameter(false),
|
|
|
|
|
is_void(false)
|
2010-08-02 10:22:26 +03:00
|
|
|
|
{
|
2013-02-01 23:27:34 -08:00
|
|
|
|
/* empty */
|
2010-08-02 10:22:26 +03:00
|
|
|
|
}
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
2010-03-01 13:49:10 -08:00
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_fully_specified_type *type;
|
2012-03-29 23:17:31 -07:00
|
|
|
|
const char *identifier;
|
2013-06-10 15:59:55 -07:00
|
|
|
|
bool is_array;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_expression *array_size;
|
2010-04-02 15:09:33 -07:00
|
|
|
|
|
2010-05-10 11:17:53 -07:00
|
|
|
|
static void parameters_to_hir(exec_list *ast_parameters,
|
2010-04-02 15:09:33 -07:00
|
|
|
|
bool formal, exec_list *ir_parameters,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
/** Is this parameter declaration part of a formal parameter list? */
|
|
|
|
|
bool formal_parameter;
|
2010-04-02 15:30:45 -07:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Is this parameter 'void' type?
|
|
|
|
|
*
|
|
|
|
|
* This field is set by \c ::hir.
|
|
|
|
|
*/
|
|
|
|
|
bool is_void;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_function : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
ast_function(void);
|
|
|
|
|
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
2010-03-31 18:23:21 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_fully_specified_type *return_type;
|
2012-03-29 23:17:31 -07:00
|
|
|
|
const char *identifier;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
|
2010-05-10 11:17:53 -07:00
|
|
|
|
exec_list parameters;
|
2010-03-31 18:23:21 -07:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
/**
|
|
|
|
|
* Is this prototype part of the function definition?
|
|
|
|
|
*
|
|
|
|
|
* Used by ast_function_definition::hir to process the parameters, etc.
|
|
|
|
|
* of the function.
|
|
|
|
|
*
|
|
|
|
|
* \sa ::hir
|
|
|
|
|
*/
|
|
|
|
|
bool is_definition;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Function signature corresponding to this function prototype instance
|
|
|
|
|
*
|
|
|
|
|
* Used by ast_function_definition::hir to process the parameters, etc.
|
|
|
|
|
* of the function.
|
|
|
|
|
*
|
|
|
|
|
* \sa ::hir
|
|
|
|
|
*/
|
|
|
|
|
class ir_function_signature *signature;
|
|
|
|
|
|
|
|
|
|
friend class ast_function_definition;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_expression_statement : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
ast_expression_statement(ast_expression *);
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
2010-03-01 13:49:10 -08:00
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_expression *expression;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_case_label : public ast_node {
|
|
|
|
|
public:
|
2011-11-07 15:05:16 -08:00
|
|
|
|
ast_case_label(ast_expression *test_value);
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
2010-02-22 13:19:34 -08:00
|
|
|
|
|
|
|
|
|
/**
|
2011-11-07 15:05:16 -08:00
|
|
|
|
* An test value of NULL means 'default'.
|
2010-02-22 13:19:34 -08:00
|
|
|
|
*/
|
2011-11-07 15:05:16 -08:00
|
|
|
|
ast_expression *test_value;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
};
|
|
|
|
|
|
2011-11-07 15:05:16 -08:00
|
|
|
|
|
2011-11-07 15:09:40 -08:00
|
|
|
|
class ast_case_label_list : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
ast_case_label_list(void);
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A list of case labels.
|
|
|
|
|
*/
|
|
|
|
|
exec_list labels;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_case_statement : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
ast_case_statement(ast_case_label_list *labels);
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
|
|
|
|
ast_case_label_list *labels;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A list of statements.
|
|
|
|
|
*/
|
|
|
|
|
exec_list stmts;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_case_statement_list : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
ast_case_statement_list(void);
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A list of cases.
|
|
|
|
|
*/
|
|
|
|
|
exec_list cases;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_switch_body : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
ast_switch_body(ast_case_statement_list *stmts);
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
|
|
|
|
ast_case_statement_list *stmts;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
class ast_selection_statement : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
ast_selection_statement(ast_expression *condition,
|
|
|
|
|
ast_node *then_statement,
|
|
|
|
|
ast_node *else_statement);
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
2010-03-29 14:11:25 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_expression *condition;
|
|
|
|
|
ast_node *then_statement;
|
|
|
|
|
ast_node *else_statement;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_switch_statement : public ast_node {
|
|
|
|
|
public:
|
2011-11-07 15:05:16 -08:00
|
|
|
|
ast_switch_statement(ast_expression *test_expression,
|
|
|
|
|
ast_node *body);
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
|
|
|
|
ast_expression *test_expression;
|
|
|
|
|
ast_node *body;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void test_to_hir(exec_list *, struct _mesa_glsl_parse_state *);
|
2010-02-22 13:19:34 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class ast_iteration_statement : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
ast_iteration_statement(int mode, ast_node *init, ast_node *condition,
|
|
|
|
|
ast_expression *rest_expression, ast_node *body);
|
|
|
|
|
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
2010-04-05 16:37:49 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *, struct _mesa_glsl_parse_state *);
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
enum ast_iteration_modes {
|
|
|
|
|
ast_for,
|
|
|
|
|
ast_while,
|
|
|
|
|
ast_do_while
|
|
|
|
|
} mode;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ast_node *init_statement;
|
|
|
|
|
ast_node *condition;
|
|
|
|
|
ast_expression *rest_expression;
|
|
|
|
|
|
|
|
|
|
ast_node *body;
|
2010-04-05 18:07:27 -07:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
/**
|
|
|
|
|
* Generate IR from the condition of a loop
|
|
|
|
|
*
|
|
|
|
|
* This is factored out of ::hir because some loops have the condition
|
|
|
|
|
* test at the top (for and while), and others have it at the end (do-while).
|
|
|
|
|
*/
|
|
|
|
|
void condition_to_hir(class ir_loop *, struct _mesa_glsl_parse_state *);
|
2010-02-22 13:19:34 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_jump_statement : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
ast_jump_statement(int mode, ast_expression *return_value);
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
2010-03-19 16:45:19 -07:00
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
enum ast_jump_modes {
|
|
|
|
|
ast_continue,
|
|
|
|
|
ast_break,
|
|
|
|
|
ast_return,
|
|
|
|
|
ast_discard
|
|
|
|
|
} mode;
|
|
|
|
|
|
|
|
|
|
ast_expression *opt_return_value;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ast_function_definition : public ast_node {
|
|
|
|
|
public:
|
|
|
|
|
virtual void print(void) const;
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
2010-03-01 13:49:10 -08:00
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
ast_function *prototype;
|
|
|
|
|
ast_compound_statement *body;
|
|
|
|
|
};
|
2012-04-18 13:35:56 -07:00
|
|
|
|
|
2013-03-09 10:40:41 -08:00
|
|
|
|
class ast_interface_block : public ast_node {
|
2012-04-18 13:35:56 -07:00
|
|
|
|
public:
|
2013-03-09 10:40:41 -08:00
|
|
|
|
ast_interface_block(ast_type_qualifier layout,
|
2012-12-11 12:13:30 -08:00
|
|
|
|
const char *instance_name,
|
|
|
|
|
ast_expression *array_size)
|
|
|
|
|
: layout(layout), block_name(NULL), instance_name(instance_name),
|
|
|
|
|
array_size(array_size)
|
2012-04-18 13:35:56 -07:00
|
|
|
|
{
|
2012-12-11 12:13:30 -08:00
|
|
|
|
/* empty */
|
2012-04-18 13:35:56 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual ir_rvalue *hir(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
|
|
|
|
ast_type_qualifier layout;
|
|
|
|
|
const char *block_name;
|
2012-11-27 23:45:17 -08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Declared name of the block instance, if specified.
|
|
|
|
|
*
|
|
|
|
|
* If the block does not have an instance name, this field will be
|
|
|
|
|
* \c NULL.
|
|
|
|
|
*/
|
|
|
|
|
const char *instance_name;
|
|
|
|
|
|
2012-04-18 13:35:56 -07:00
|
|
|
|
/** List of ast_declarator_list * */
|
|
|
|
|
exec_list declarations;
|
2012-12-11 12:13:30 -08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Declared array size of the block instance
|
|
|
|
|
*
|
|
|
|
|
* If the block is not declared as an array, this field will be \c NULL.
|
|
|
|
|
*
|
|
|
|
|
* \note
|
|
|
|
|
* A block can only be an array if it also has an instance name. If this
|
|
|
|
|
* field is not \c NULL, ::instance_name must also not be \c NULL.
|
|
|
|
|
*/
|
|
|
|
|
ast_expression *array_size;
|
2012-04-18 13:35:56 -07:00
|
|
|
|
};
|
2010-09-18 16:08:38 +02:00
|
|
|
|
/*@}*/
|
2010-02-22 13:19:34 -08:00
|
|
|
|
|
2010-03-10 09:55:22 -08:00
|
|
|
|
extern void
|
|
|
|
|
_mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
2010-08-13 16:46:43 -07:00
|
|
|
|
extern ir_rvalue *
|
|
|
|
|
_mesa_ast_field_selection_to_hir(const ast_expression *expr,
|
2010-03-08 23:44:00 -08:00
|
|
|
|
exec_list *instructions,
|
2010-02-22 13:19:34 -08:00
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
2013-03-15 14:10:12 -07:00
|
|
|
|
extern ir_rvalue *
|
|
|
|
|
_mesa_ast_array_index_to_hir(void *mem_ctx,
|
|
|
|
|
struct _mesa_glsl_parse_state *state,
|
|
|
|
|
ir_rvalue *array, ir_rvalue *idx,
|
2013-03-15 15:23:19 -07:00
|
|
|
|
YYLTYPE &loc, YYLTYPE &idx_loc);
|
2013-03-15 14:10:12 -07:00
|
|
|
|
|
2010-12-06 10:54:05 -08:00
|
|
|
|
void
|
2011-07-29 15:28:52 -07:00
|
|
|
|
emit_function(_mesa_glsl_parse_state *state, ir_function *f);
|
2010-12-06 10:54:05 -08:00
|
|
|
|
|
2013-03-15 14:33:01 -07:00
|
|
|
|
extern void
|
2013-03-15 14:09:00 -07:00
|
|
|
|
check_builtin_array_max_size(const char *name, unsigned size,
|
|
|
|
|
YYLTYPE loc, struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
|
#endif /* AST_H */
|