2010-03-10 13:58:12 -08:00
|
|
|
/* -*- c++ -*- */
|
2010-02-22 13:19:34 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2010 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2010-03-15 15:20:15 -07:00
|
|
|
#pragma once
|
|
|
|
|
#ifndef IR_H
|
|
|
|
|
#define IR_H
|
|
|
|
|
|
2010-06-22 10:38:52 -07:00
|
|
|
#include <cstdio>
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
2010-06-23 15:47:04 -07:00
|
|
|
extern "C" {
|
|
|
|
|
#include <talloc.h>
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-16 12:01:42 -08:00
|
|
|
#include "glsl_types.h"
|
2010-03-08 23:44:00 -08:00
|
|
|
#include "list.h"
|
2010-03-09 16:23:37 -08:00
|
|
|
#include "ir_visitor.h"
|
2010-05-14 12:39:23 -07:00
|
|
|
#include "ir_hierarchical_visitor.h"
|
2010-03-08 23:44:00 -08:00
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
/**
|
|
|
|
|
* \defgroup IR Intermediate representation nodes
|
|
|
|
|
*
|
|
|
|
|
* @{
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class tags
|
|
|
|
|
*
|
|
|
|
|
* Each concrete class derived from \c ir_instruction has a value in this
|
|
|
|
|
* enumerant. The value for the type is stored in \c ir_instruction::ir_type
|
|
|
|
|
* by the constructor. While using type tags is not very C++, it is extremely
|
|
|
|
|
* convenient. For example, during debugging you can simply inspect
|
|
|
|
|
* \c ir_instruction::ir_type to find out the actual type of the object.
|
|
|
|
|
*
|
|
|
|
|
* In addition, it is possible to use a switch-statement based on \c
|
|
|
|
|
* \c ir_instruction::ir_type to select different behavior for different object
|
|
|
|
|
* types. For functions that have only slight differences for several object
|
|
|
|
|
* types, this allows writing very straightforward, readable code.
|
|
|
|
|
*/
|
2010-07-19 09:05:42 -07:00
|
|
|
enum ir_node_type {
|
2010-09-18 16:08:38 +02:00
|
|
|
/**
|
|
|
|
|
* Zero is unused so that the IR validator can detect cases where
|
|
|
|
|
* \c ir_instruction::ir_type has not been initialized.
|
|
|
|
|
*/
|
2010-07-19 09:05:42 -07:00
|
|
|
ir_type_unset,
|
|
|
|
|
ir_type_variable,
|
|
|
|
|
ir_type_assignment,
|
|
|
|
|
ir_type_call,
|
|
|
|
|
ir_type_constant,
|
|
|
|
|
ir_type_dereference_array,
|
|
|
|
|
ir_type_dereference_record,
|
|
|
|
|
ir_type_dereference_variable,
|
|
|
|
|
ir_type_discard,
|
|
|
|
|
ir_type_expression,
|
|
|
|
|
ir_type_function,
|
|
|
|
|
ir_type_function_signature,
|
|
|
|
|
ir_type_if,
|
|
|
|
|
ir_type_loop,
|
|
|
|
|
ir_type_loop_jump,
|
|
|
|
|
ir_type_return,
|
|
|
|
|
ir_type_swizzle,
|
|
|
|
|
ir_type_texture,
|
2010-08-11 13:59:28 -06:00
|
|
|
ir_type_max /**< maximum ir_type enum number, for validation */
|
2010-07-19 09:05:42 -07:00
|
|
|
};
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
/**
|
|
|
|
|
* Base class of all IR instructions
|
|
|
|
|
*/
|
2010-03-08 23:44:00 -08:00
|
|
|
class ir_instruction : public exec_node {
|
2010-02-22 13:19:34 -08:00
|
|
|
public:
|
2010-07-19 09:05:42 -07:00
|
|
|
enum ir_node_type ir_type;
|
2010-02-22 13:19:34 -08:00
|
|
|
const struct glsl_type *type;
|
|
|
|
|
|
2010-06-22 12:09:21 -07:00
|
|
|
/** ir_print_visitor helper for debugging. */
|
2010-06-23 11:37:12 -07:00
|
|
|
void print(void) const;
|
2010-06-22 12:09:21 -07:00
|
|
|
|
2010-03-09 16:23:37 -08:00
|
|
|
virtual void accept(ir_visitor *) = 0;
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *) = 0;
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_instruction *clone(void *mem_ctx,
|
|
|
|
|
struct hash_table *ht) const = 0;
|
2010-03-09 16:23:37 -08:00
|
|
|
|
2010-03-25 23:30:28 -07:00
|
|
|
/**
|
|
|
|
|
* \name IR instruction downcast functions
|
|
|
|
|
*
|
|
|
|
|
* These functions either cast the object to a derived class or return
|
|
|
|
|
* \c NULL if the object's type does not match the specified derived class.
|
|
|
|
|
* Additional downcast functions will be added as needed.
|
|
|
|
|
*/
|
|
|
|
|
/*@{*/
|
|
|
|
|
virtual class ir_variable * as_variable() { return NULL; }
|
2010-04-21 16:02:15 -07:00
|
|
|
virtual class ir_function * as_function() { return NULL; }
|
2010-03-25 23:30:28 -07:00
|
|
|
virtual class ir_dereference * as_dereference() { return NULL; }
|
2010-05-11 11:31:09 -07:00
|
|
|
virtual class ir_dereference_array * as_dereference_array() { return NULL; }
|
2010-06-29 14:16:11 -07:00
|
|
|
virtual class ir_dereference_variable *as_dereference_variable() { return NULL; }
|
2010-07-12 11:04:07 -07:00
|
|
|
virtual class ir_expression * as_expression() { return NULL; }
|
2010-03-26 00:25:36 -07:00
|
|
|
virtual class ir_rvalue * as_rvalue() { return NULL; }
|
2010-04-05 17:13:14 -07:00
|
|
|
virtual class ir_loop * as_loop() { return NULL; }
|
2010-04-07 11:46:26 -07:00
|
|
|
virtual class ir_assignment * as_assignment() { return NULL; }
|
|
|
|
|
virtual class ir_call * as_call() { return NULL; }
|
|
|
|
|
virtual class ir_return * as_return() { return NULL; }
|
2010-04-14 17:03:03 -07:00
|
|
|
virtual class ir_if * as_if() { return NULL; }
|
2010-04-16 16:43:47 -07:00
|
|
|
virtual class ir_swizzle * as_swizzle() { return NULL; }
|
2010-05-04 13:04:40 -07:00
|
|
|
virtual class ir_constant * as_constant() { return NULL; }
|
2010-11-24 21:33:07 -08:00
|
|
|
virtual class ir_discard * as_discard() { return NULL; }
|
2010-03-25 23:30:28 -07:00
|
|
|
/*@}*/
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
protected:
|
2010-03-25 23:30:28 -07:00
|
|
|
ir_instruction()
|
2010-03-11 14:23:41 -08:00
|
|
|
{
|
2010-07-19 09:05:42 -07:00
|
|
|
ir_type = ir_type_unset;
|
2010-07-22 16:45:37 -07:00
|
|
|
type = NULL;
|
2010-03-11 14:23:41 -08:00
|
|
|
}
|
2010-02-22 13:19:34 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
class ir_rvalue : public ir_instruction {
|
|
|
|
|
public:
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_rvalue *clone(void *mem_ctx, struct hash_table *) const = 0;
|
2010-07-06 17:41:02 -07:00
|
|
|
|
2010-07-15 10:09:09 -07:00
|
|
|
virtual ir_constant *constant_expression_value() = 0;
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
virtual ir_rvalue * as_rvalue()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-19 18:27:41 +08:00
|
|
|
ir_rvalue *as_rvalue_to_saturate();
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
virtual bool is_lvalue()
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 17:35:42 -07:00
|
|
|
/**
|
|
|
|
|
* Get the variable that is ultimately referenced by an r-value
|
|
|
|
|
*/
|
|
|
|
|
virtual ir_variable *variable_referenced()
|
|
|
|
|
{
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-26 11:32:52 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* If an r-value is a reference to a whole variable, get that variable
|
|
|
|
|
*
|
|
|
|
|
* \return
|
|
|
|
|
* Pointer to a variable that is completely dereferenced by the r-value. If
|
|
|
|
|
* the r-value is not a dereference or the dereference does not access the
|
|
|
|
|
* entire variable (i.e., it's just one array element, struct field), \c NULL
|
|
|
|
|
* is returned.
|
|
|
|
|
*/
|
|
|
|
|
virtual ir_variable *whole_variable_referenced()
|
|
|
|
|
{
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-18 17:11:17 -08:00
|
|
|
/**
|
|
|
|
|
* Determine if an r-value has the value zero
|
|
|
|
|
*
|
|
|
|
|
* The base implementation of this function always returns \c false. The
|
|
|
|
|
* \c ir_constant class over-rides this function to return \c true \b only
|
|
|
|
|
* for vector and scalar types that have all elements set to the value
|
|
|
|
|
* zero (or \c false for booleans).
|
|
|
|
|
*
|
2010-11-16 11:59:22 -08:00
|
|
|
* \sa ir_constant::has_value, ir_rvalue::is_one, ir_rvalue::is_negative_one
|
2010-11-18 17:11:17 -08:00
|
|
|
*/
|
|
|
|
|
virtual bool is_zero() const;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine if an r-value has the value one
|
|
|
|
|
*
|
|
|
|
|
* The base implementation of this function always returns \c false. The
|
|
|
|
|
* \c ir_constant class over-rides this function to return \c true \b only
|
|
|
|
|
* for vector and scalar types that have all elements set to the value
|
|
|
|
|
* one (or \c true for booleans).
|
|
|
|
|
*
|
2010-11-16 11:59:22 -08:00
|
|
|
* \sa ir_constant::has_value, ir_rvalue::is_zero, ir_rvalue::is_negative_one
|
2010-11-18 17:11:17 -08:00
|
|
|
*/
|
|
|
|
|
virtual bool is_one() const;
|
|
|
|
|
|
2010-11-16 11:59:22 -08:00
|
|
|
/**
|
|
|
|
|
* Determine if an r-value has the value negative one
|
|
|
|
|
*
|
|
|
|
|
* The base implementation of this function always returns \c false. The
|
|
|
|
|
* \c ir_constant class over-rides this function to return \c true \b only
|
|
|
|
|
* for vector and scalar types that have all elements set to the value
|
|
|
|
|
* negative one. For boolean times, the result is always \c false.
|
|
|
|
|
*
|
|
|
|
|
* \sa ir_constant::has_value, ir_rvalue::is_zero, ir_rvalue::is_one
|
|
|
|
|
*/
|
|
|
|
|
virtual bool is_negative_one() const;
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
protected:
|
2010-07-22 16:45:37 -07:00
|
|
|
ir_rvalue();
|
2010-03-26 00:25:36 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
/**
|
|
|
|
|
* Variable storage classes
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
enum ir_variable_mode {
|
2010-09-18 16:08:38 +02:00
|
|
|
ir_var_auto = 0, /**< Function local variables and globals. */
|
|
|
|
|
ir_var_uniform, /**< Variable declared as a uniform. */
|
2010-02-22 13:19:34 -08:00
|
|
|
ir_var_in,
|
|
|
|
|
ir_var_out,
|
2010-07-19 17:12:42 -07:00
|
|
|
ir_var_inout,
|
|
|
|
|
ir_var_temporary /**< Temporary variable generated during compilation. */
|
2010-02-22 13:19:34 -08:00
|
|
|
};
|
|
|
|
|
|
2010-06-17 00:37:39 -07:00
|
|
|
enum ir_variable_interpolation {
|
2010-02-22 13:19:34 -08:00
|
|
|
ir_var_smooth = 0,
|
|
|
|
|
ir_var_flat,
|
|
|
|
|
ir_var_noperspective
|
|
|
|
|
};
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
class ir_variable : public ir_instruction {
|
|
|
|
|
public:
|
2010-07-19 17:12:42 -07:00
|
|
|
ir_variable(const struct glsl_type *, const char *, ir_variable_mode);
|
2010-02-22 13:19:34 -08:00
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_variable *clone(void *mem_ctx, struct hash_table *ht) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-03-25 23:30:28 -07:00
|
|
|
virtual ir_variable *as_variable()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-09 16:23:37 -08:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-03-31 17:52:44 -07:00
|
|
|
|
2010-06-18 19:00:28 -07:00
|
|
|
/**
|
|
|
|
|
* Get the string value for the interpolation qualifier
|
|
|
|
|
*
|
2010-08-04 20:33:57 -07:00
|
|
|
* \return The string that would be used in a shader to specify \c
|
|
|
|
|
* mode will be returned.
|
|
|
|
|
*
|
|
|
|
|
* This function should only be used on a shader input or output variable.
|
2010-06-18 19:00:28 -07:00
|
|
|
*/
|
|
|
|
|
const char *interpolation_string() const;
|
|
|
|
|
|
2010-06-21 16:05:29 -07:00
|
|
|
/**
|
|
|
|
|
* Calculate the number of slots required to hold this variable
|
|
|
|
|
*
|
|
|
|
|
* This is used to determine how many uniform or varying locations a variable
|
|
|
|
|
* occupies. The count is in units of floating point components.
|
|
|
|
|
*/
|
|
|
|
|
unsigned component_slots() const;
|
|
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
/**
|
|
|
|
|
* Delcared name of the variable
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
const char *name;
|
|
|
|
|
|
2010-04-01 18:31:11 -07:00
|
|
|
/**
|
|
|
|
|
* Highest element accessed with a constant expression array index
|
|
|
|
|
*
|
|
|
|
|
* Not used for non-array variables.
|
|
|
|
|
*/
|
|
|
|
|
unsigned max_array_access;
|
|
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
/**
|
|
|
|
|
* Is the variable read-only?
|
|
|
|
|
*
|
|
|
|
|
* This is set for variables declared as \c const, shader inputs,
|
|
|
|
|
* and uniforms.
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
unsigned read_only:1;
|
|
|
|
|
unsigned centroid:1;
|
|
|
|
|
unsigned invariant:1;
|
|
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
/**
|
|
|
|
|
* Storage class of the variable.
|
|
|
|
|
*
|
|
|
|
|
* \sa ir_variable_mode
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
unsigned mode:3;
|
2010-09-18 16:08:38 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interpolation mode for shader inputs / outputs
|
|
|
|
|
*
|
|
|
|
|
* \sa ir_variable_interpolation
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
unsigned interpolation:2;
|
2010-04-02 17:17:47 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Flag that the whole array is assignable
|
|
|
|
|
*
|
|
|
|
|
* In GLSL 1.20 and later whole arrays are assignable (and comparable for
|
|
|
|
|
* equality). This flag enables this behavior.
|
|
|
|
|
*/
|
|
|
|
|
unsigned array_lvalue:1;
|
2010-04-06 10:30:54 -07:00
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
/**
|
|
|
|
|
* \name ARB_fragment_coord_conventions
|
|
|
|
|
* @{
|
|
|
|
|
*/
|
2010-07-28 14:41:51 -07:00
|
|
|
unsigned origin_upper_left:1;
|
|
|
|
|
unsigned pixel_center_integer:1;
|
2010-09-18 16:08:38 +02:00
|
|
|
/*@}*/
|
2010-07-28 14:41:51 -07:00
|
|
|
|
2010-10-07 15:13:38 -07:00
|
|
|
/**
|
|
|
|
|
* Was the location explicitly set in the shader?
|
|
|
|
|
*
|
|
|
|
|
* If the location is explicitly set in the shader, it \b cannot be changed
|
|
|
|
|
* by the linker or by the API (e.g., calls to \c glBindAttribLocation have
|
|
|
|
|
* no effect).
|
|
|
|
|
*/
|
|
|
|
|
unsigned explicit_location:1;
|
|
|
|
|
|
2010-06-21 11:42:02 -07:00
|
|
|
/**
|
|
|
|
|
* Storage location of the base of this variable
|
|
|
|
|
*
|
|
|
|
|
* The precise meaning of this field depends on the nature of the variable.
|
|
|
|
|
*
|
|
|
|
|
* - Vertex shader input: one of the values from \c gl_vert_attrib.
|
|
|
|
|
* - Vertex shader output: one of the values from \c gl_vert_result.
|
|
|
|
|
* - Fragment shader input: one of the values from \c gl_frag_attrib.
|
|
|
|
|
* - Fragment shader output: one of the values from \c gl_frag_result.
|
|
|
|
|
* - Uniforms: Per-stage uniform slot number.
|
|
|
|
|
* - Other: This field is not currently used.
|
|
|
|
|
*
|
|
|
|
|
* If the variable is a uniform, shader input, or shader output, and the
|
|
|
|
|
* slot has not been assigned, the value will be -1.
|
|
|
|
|
*/
|
|
|
|
|
int location;
|
|
|
|
|
|
2010-04-07 16:53:54 -07:00
|
|
|
/**
|
|
|
|
|
* Emit a warning if this variable is accessed.
|
|
|
|
|
*/
|
|
|
|
|
const char *warn_extension;
|
|
|
|
|
|
2010-04-06 10:30:54 -07:00
|
|
|
/**
|
|
|
|
|
* Value assigned in the initializer of a variable declared "const"
|
|
|
|
|
*/
|
|
|
|
|
ir_constant *constant_value;
|
2010-02-22 13:19:34 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*@{*/
|
2010-04-21 12:30:22 -07:00
|
|
|
/**
|
|
|
|
|
* The representation of a function instance; may be the full definition or
|
|
|
|
|
* simply a prototype.
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
class ir_function_signature : public ir_instruction {
|
2010-04-07 13:19:11 -07:00
|
|
|
/* An ir_function_signature will be part of the list of signatures in
|
|
|
|
|
* an ir_function.
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
public:
|
2010-03-23 12:19:13 -07:00
|
|
|
ir_function_signature(const glsl_type *return_type);
|
2010-02-22 13:19:34 -08:00
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_function_signature *clone(void *mem_ctx,
|
|
|
|
|
struct hash_table *ht) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-03-09 16:23:37 -08:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-03-31 16:44:12 -07:00
|
|
|
/**
|
|
|
|
|
* Get the name of the function for which this is a signature
|
|
|
|
|
*/
|
|
|
|
|
const char *function_name() const;
|
|
|
|
|
|
2010-07-02 13:28:32 -07:00
|
|
|
/**
|
|
|
|
|
* Get a handle to the function for which this is a signature
|
|
|
|
|
*
|
|
|
|
|
* There is no setter function, this function returns a \c const pointer,
|
|
|
|
|
* and \c ir_function_signature::_function is private for a reason. The
|
|
|
|
|
* only way to make a connection between a function and function signature
|
|
|
|
|
* is via \c ir_function::add_signature. This helps ensure that certain
|
|
|
|
|
* invariants (i.e., a function signature is in the list of signatures for
|
|
|
|
|
* its \c _function) are met.
|
|
|
|
|
*
|
|
|
|
|
* \sa ir_function::add_signature
|
|
|
|
|
*/
|
|
|
|
|
inline const class ir_function *function() const
|
|
|
|
|
{
|
|
|
|
|
return this->_function;
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-28 11:49:12 -07:00
|
|
|
/**
|
|
|
|
|
* Check whether the qualifiers match between this signature's parameters
|
|
|
|
|
* and the supplied parameter list. If not, returns the name of the first
|
|
|
|
|
* parameter with mismatched qualifiers (for use in error messages).
|
|
|
|
|
*/
|
|
|
|
|
const char *qualifiers_match(exec_list *params);
|
|
|
|
|
|
2010-04-28 12:44:24 -07:00
|
|
|
/**
|
|
|
|
|
* Replace the current parameter list with the given one. This is useful
|
|
|
|
|
* if the current information came from a prototype, and either has invalid
|
|
|
|
|
* or missing parameter names.
|
|
|
|
|
*/
|
|
|
|
|
void replace_parameters(exec_list *new_params);
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
/**
|
|
|
|
|
* Function return type.
|
|
|
|
|
*
|
|
|
|
|
* \note This discards the optional precision qualifier.
|
|
|
|
|
*/
|
|
|
|
|
const struct glsl_type *return_type;
|
|
|
|
|
|
|
|
|
|
/**
|
2010-04-07 12:35:34 -07:00
|
|
|
* List of ir_variable of function parameters.
|
|
|
|
|
*
|
|
|
|
|
* This represents the storage. The paramaters passed in a particular
|
|
|
|
|
* call will be in ir_call::actual_paramaters.
|
2010-02-22 13:19:34 -08:00
|
|
|
*/
|
2010-03-08 23:44:00 -08:00
|
|
|
struct exec_list parameters;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
2010-04-21 12:30:22 -07:00
|
|
|
/** Whether or not this function has a body (which may be empty). */
|
|
|
|
|
unsigned is_defined:1;
|
2010-03-31 16:37:10 -07:00
|
|
|
|
2010-09-05 01:48:11 -07:00
|
|
|
/** Whether or not this function signature is a built-in. */
|
|
|
|
|
unsigned is_builtin:1;
|
|
|
|
|
|
2010-04-07 13:19:11 -07:00
|
|
|
/** Body of instructions in the function. */
|
|
|
|
|
struct exec_list body;
|
|
|
|
|
|
2010-03-31 16:37:10 -07:00
|
|
|
private:
|
|
|
|
|
/** Function of which this signature is one overload. */
|
2010-07-02 13:28:32 -07:00
|
|
|
class ir_function *_function;
|
2010-03-31 16:37:10 -07:00
|
|
|
|
|
|
|
|
friend class ir_function;
|
2010-02-22 13:19:34 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-04-21 12:30:22 -07:00
|
|
|
* Header for tracking multiple overloaded functions with the same name.
|
|
|
|
|
* Contains a list of ir_function_signatures representing each of the
|
|
|
|
|
* actual functions.
|
2010-02-22 13:19:34 -08:00
|
|
|
*/
|
|
|
|
|
class ir_function : public ir_instruction {
|
|
|
|
|
public:
|
2010-03-23 17:42:04 -07:00
|
|
|
ir_function(const char *name);
|
2010-02-22 13:19:34 -08:00
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_function *clone(void *mem_ctx, struct hash_table *ht) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-04-21 16:02:15 -07:00
|
|
|
virtual ir_function *as_function()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-09 16:23:37 -08:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-03-31 16:37:10 -07:00
|
|
|
void add_signature(ir_function_signature *sig)
|
|
|
|
|
{
|
2010-07-02 13:28:32 -07:00
|
|
|
sig->_function = this;
|
|
|
|
|
this->signatures.push_tail(sig);
|
2010-03-31 16:37:10 -07:00
|
|
|
}
|
|
|
|
|
|
2010-03-31 16:40:26 -07:00
|
|
|
/**
|
|
|
|
|
* Get an iterator for the set of function signatures
|
|
|
|
|
*/
|
|
|
|
|
exec_list_iterator iterator()
|
|
|
|
|
{
|
|
|
|
|
return signatures.iterator();
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-11 14:50:30 -08:00
|
|
|
/**
|
2010-04-28 12:04:23 -07:00
|
|
|
* Find a signature that matches a set of actual parameters, taking implicit
|
|
|
|
|
* conversions into account.
|
2010-03-11 14:50:30 -08:00
|
|
|
*/
|
2010-07-15 13:09:25 -07:00
|
|
|
ir_function_signature *matching_signature(const exec_list *actual_param);
|
2010-03-11 14:50:30 -08:00
|
|
|
|
2010-04-28 12:04:23 -07:00
|
|
|
/**
|
|
|
|
|
* Find a signature that exactly matches a set of actual parameters without
|
|
|
|
|
* any implicit type conversions.
|
|
|
|
|
*/
|
2010-07-15 13:09:25 -07:00
|
|
|
ir_function_signature *exact_matching_signature(const exec_list *actual_ps);
|
2010-04-28 12:04:23 -07:00
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
/**
|
|
|
|
|
* Name of the function.
|
|
|
|
|
*/
|
|
|
|
|
const char *name;
|
|
|
|
|
|
2010-09-16 02:52:25 -07:00
|
|
|
/** Whether or not this function has a signature that isn't a built-in. */
|
|
|
|
|
bool has_user_signature();
|
2010-08-20 20:04:39 -07:00
|
|
|
|
2010-03-11 14:50:30 -08:00
|
|
|
/**
|
2010-04-07 12:35:34 -07:00
|
|
|
* List of ir_function_signature for each overloaded function with this name.
|
2010-03-11 14:50:30 -08:00
|
|
|
*/
|
2010-03-08 23:44:00 -08:00
|
|
|
struct exec_list signatures;
|
2010-02-22 13:19:34 -08:00
|
|
|
};
|
2010-03-31 16:44:12 -07:00
|
|
|
|
|
|
|
|
inline const char *ir_function_signature::function_name() const
|
|
|
|
|
{
|
2010-07-02 13:28:32 -07:00
|
|
|
return this->_function->name;
|
2010-03-31 16:44:12 -07:00
|
|
|
}
|
2010-02-22 13:19:34 -08:00
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
|
|
|
2010-03-29 14:11:25 -07:00
|
|
|
/**
|
|
|
|
|
* IR instruction representing high-level if-statements
|
|
|
|
|
*/
|
|
|
|
|
class ir_if : public ir_instruction {
|
|
|
|
|
public:
|
|
|
|
|
ir_if(ir_rvalue *condition)
|
|
|
|
|
: condition(condition)
|
|
|
|
|
{
|
2010-07-19 09:05:42 -07:00
|
|
|
ir_type = ir_type_if;
|
2010-03-29 14:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_if *clone(void *mem_ctx, struct hash_table *ht) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-04-14 17:03:03 -07:00
|
|
|
virtual ir_if *as_if()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-29 14:11:25 -07:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-03-29 14:11:25 -07:00
|
|
|
ir_rvalue *condition;
|
2010-04-07 12:35:34 -07:00
|
|
|
/** List of ir_instruction for the body of the then branch */
|
2010-03-29 14:11:25 -07:00
|
|
|
exec_list then_instructions;
|
2010-04-07 12:35:34 -07:00
|
|
|
/** List of ir_instruction for the body of the else branch */
|
2010-03-29 14:11:25 -07:00
|
|
|
exec_list else_instructions;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-04-05 16:16:07 -07:00
|
|
|
/**
|
|
|
|
|
* IR instruction representing a high-level loop structure.
|
|
|
|
|
*/
|
|
|
|
|
class ir_loop : public ir_instruction {
|
|
|
|
|
public:
|
2010-08-26 15:11:26 -07:00
|
|
|
ir_loop();
|
2010-04-05 16:16:07 -07:00
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_loop *clone(void *mem_ctx, struct hash_table *ht) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-04-05 16:16:07 -07:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-04-05 17:13:14 -07:00
|
|
|
virtual ir_loop *as_loop()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-05 16:16:07 -07:00
|
|
|
/**
|
|
|
|
|
* Get an iterator for the instructions of the loop body
|
|
|
|
|
*/
|
|
|
|
|
exec_list_iterator iterator()
|
|
|
|
|
{
|
|
|
|
|
return body_instructions.iterator();
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-07 12:35:34 -07:00
|
|
|
/** List of ir_instruction that make up the body of the loop. */
|
2010-04-05 16:16:07 -07:00
|
|
|
exec_list body_instructions;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \name Loop counter and controls
|
2010-08-26 15:11:26 -07:00
|
|
|
*
|
|
|
|
|
* Represents a loop like a FORTRAN \c do-loop.
|
|
|
|
|
*
|
|
|
|
|
* \note
|
|
|
|
|
* If \c from and \c to are the same value, the loop will execute once.
|
2010-04-05 16:16:07 -07:00
|
|
|
*/
|
|
|
|
|
/*@{*/
|
2010-08-26 15:11:26 -07:00
|
|
|
ir_rvalue *from; /** Value of the loop counter on the first
|
|
|
|
|
* iteration of the loop.
|
|
|
|
|
*/
|
|
|
|
|
ir_rvalue *to; /** Value of the loop counter on the last
|
|
|
|
|
* iteration of the loop.
|
|
|
|
|
*/
|
2010-04-05 16:16:07 -07:00
|
|
|
ir_rvalue *increment;
|
|
|
|
|
ir_variable *counter;
|
2010-08-26 15:11:26 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Comparison operation in the loop terminator.
|
|
|
|
|
*
|
|
|
|
|
* If any of the loop control fields are non-\c NULL, this field must be
|
|
|
|
|
* one of \c ir_binop_less, \c ir_binop_greater, \c ir_binop_lequal,
|
|
|
|
|
* \c ir_binop_gequal, \c ir_binop_equal, or \c ir_binop_nequal.
|
|
|
|
|
*/
|
|
|
|
|
int cmp;
|
2010-04-05 16:16:07 -07:00
|
|
|
/*@}*/
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-07-22 16:40:35 -07:00
|
|
|
class ir_assignment : public ir_instruction {
|
2010-02-22 13:19:34 -08:00
|
|
|
public:
|
2010-03-26 00:25:36 -07:00
|
|
|
ir_assignment(ir_rvalue *lhs, ir_rvalue *rhs, ir_rvalue *condition);
|
2010-02-22 13:19:34 -08:00
|
|
|
|
2010-08-02 18:48:25 -07:00
|
|
|
/**
|
|
|
|
|
* Construct an assignment with an explicit write mask
|
|
|
|
|
*
|
|
|
|
|
* \note
|
|
|
|
|
* Since a write mask is supplied, the LHS must already be a bare
|
|
|
|
|
* \c ir_dereference. The cannot be any swizzles in the LHS.
|
|
|
|
|
*/
|
|
|
|
|
ir_assignment(ir_dereference *lhs, ir_rvalue *rhs, ir_rvalue *condition,
|
|
|
|
|
unsigned write_mask);
|
|
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_assignment *clone(void *mem_ctx, struct hash_table *ht) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-07-15 10:09:09 -07:00
|
|
|
virtual ir_constant *constant_expression_value();
|
|
|
|
|
|
2010-03-09 16:23:37 -08:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-04-07 11:46:26 -07:00
|
|
|
virtual ir_assignment * as_assignment()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-02 18:48:25 -07:00
|
|
|
/**
|
|
|
|
|
* Get a whole variable written by an assignment
|
|
|
|
|
*
|
|
|
|
|
* If the LHS of the assignment writes a whole variable, the variable is
|
|
|
|
|
* returned. Otherwise \c NULL is returned. Examples of whole-variable
|
|
|
|
|
* assignment are:
|
|
|
|
|
*
|
|
|
|
|
* - Assigning to a scalar
|
|
|
|
|
* - Assigning to all components of a vector
|
|
|
|
|
* - Whole array (or matrix) assignment
|
|
|
|
|
* - Whole structure assignment
|
|
|
|
|
*/
|
|
|
|
|
ir_variable *whole_variable_written();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the LHS of an assignment
|
|
|
|
|
*/
|
|
|
|
|
void set_lhs(ir_rvalue *lhs);
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
/**
|
|
|
|
|
* Left-hand side of the assignment.
|
2010-08-02 18:48:25 -07:00
|
|
|
*
|
|
|
|
|
* This should be treated as read only. If you need to set the LHS of an
|
|
|
|
|
* assignment, use \c ir_assignment::set_lhs.
|
2010-02-22 13:19:34 -08:00
|
|
|
*/
|
2010-08-02 18:48:25 -07:00
|
|
|
ir_dereference *lhs;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Value being assigned
|
|
|
|
|
*/
|
2010-03-26 00:25:36 -07:00
|
|
|
ir_rvalue *rhs;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Optional condition for the assignment.
|
|
|
|
|
*/
|
2010-03-26 00:25:36 -07:00
|
|
|
ir_rvalue *condition;
|
2010-08-02 18:48:25 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Component mask written
|
|
|
|
|
*
|
|
|
|
|
* For non-vector types in the LHS, this field will be zero. For vector
|
|
|
|
|
* types, a bit will be set for each component that is written. Note that
|
|
|
|
|
* for \c vec2 and \c vec3 types only the lower bits will ever be set.
|
2010-09-22 11:47:03 -07:00
|
|
|
*
|
|
|
|
|
* A partially-set write mask means that each enabled channel gets
|
|
|
|
|
* the value from a consecutive channel of the rhs. For example,
|
|
|
|
|
* to write just .xyw of gl_FrontColor with color:
|
|
|
|
|
*
|
|
|
|
|
* (assign (constant bool (1)) (xyw)
|
|
|
|
|
* (var_ref gl_FragColor)
|
|
|
|
|
* (swiz xyw (var_ref color)))
|
2010-08-02 18:48:25 -07:00
|
|
|
*/
|
|
|
|
|
unsigned write_mask:4;
|
2010-02-22 13:19:34 -08:00
|
|
|
};
|
|
|
|
|
|
2010-04-07 17:18:29 -07:00
|
|
|
/* Update ir_expression::num_operands() and operator_strs when
|
2010-04-01 18:07:08 -10:00
|
|
|
* updating this list.
|
2010-04-07 17:18:29 -07:00
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
enum ir_expression_operation {
|
|
|
|
|
ir_unop_bit_not,
|
|
|
|
|
ir_unop_logic_not,
|
|
|
|
|
ir_unop_neg,
|
|
|
|
|
ir_unop_abs,
|
2010-05-03 20:05:57 -07:00
|
|
|
ir_unop_sign,
|
2010-02-22 13:19:34 -08:00
|
|
|
ir_unop_rcp,
|
|
|
|
|
ir_unop_rsq,
|
2010-03-27 13:01:51 -07:00
|
|
|
ir_unop_sqrt,
|
2010-08-05 15:22:05 -07:00
|
|
|
ir_unop_exp, /**< Log base e on gentype */
|
|
|
|
|
ir_unop_log, /**< Natural log on gentype */
|
2010-03-27 13:56:35 -07:00
|
|
|
ir_unop_exp2,
|
|
|
|
|
ir_unop_log2,
|
2010-02-22 13:19:34 -08:00
|
|
|
ir_unop_f2i, /**< Float-to-integer conversion. */
|
|
|
|
|
ir_unop_i2f, /**< Integer-to-float conversion. */
|
2010-04-02 02:13:43 -10:00
|
|
|
ir_unop_f2b, /**< Float-to-boolean conversion */
|
|
|
|
|
ir_unop_b2f, /**< Boolean-to-float conversion */
|
2010-04-02 02:17:08 -10:00
|
|
|
ir_unop_i2b, /**< int-to-boolean conversion */
|
|
|
|
|
ir_unop_b2i, /**< Boolean-to-int conversion */
|
2010-03-26 16:11:48 -07:00
|
|
|
ir_unop_u2f, /**< Unsigned-to-float conversion. */
|
2010-08-23 12:21:33 -07:00
|
|
|
ir_unop_any,
|
2010-02-22 13:19:34 -08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \name Unary floating-point rounding operations.
|
|
|
|
|
*/
|
|
|
|
|
/*@{*/
|
|
|
|
|
ir_unop_trunc,
|
|
|
|
|
ir_unop_ceil,
|
|
|
|
|
ir_unop_floor,
|
2010-07-01 10:37:11 -07:00
|
|
|
ir_unop_fract,
|
2010-10-14 13:37:03 -07:00
|
|
|
ir_unop_round_even,
|
2010-02-22 13:19:34 -08:00
|
|
|
/*@}*/
|
|
|
|
|
|
2010-05-03 22:11:17 -07:00
|
|
|
/**
|
|
|
|
|
* \name Trigonometric operations.
|
|
|
|
|
*/
|
|
|
|
|
/*@{*/
|
|
|
|
|
ir_unop_sin,
|
|
|
|
|
ir_unop_cos,
|
2010-11-18 11:05:32 -08:00
|
|
|
ir_unop_sin_reduced, /**< Reduced range sin. [-pi, pi] */
|
|
|
|
|
ir_unop_cos_reduced, /**< Reduced range cos. [-pi, pi] */
|
2010-05-03 22:11:17 -07:00
|
|
|
/*@}*/
|
|
|
|
|
|
2010-06-09 14:42:41 -07:00
|
|
|
/**
|
|
|
|
|
* \name Partial derivatives.
|
|
|
|
|
*/
|
|
|
|
|
/*@{*/
|
|
|
|
|
ir_unop_dFdx,
|
|
|
|
|
ir_unop_dFdy,
|
|
|
|
|
/*@}*/
|
|
|
|
|
|
2010-09-01 21:12:10 -07:00
|
|
|
ir_unop_noise,
|
|
|
|
|
|
2010-11-17 15:31:35 -08:00
|
|
|
/**
|
|
|
|
|
* A sentinel marking the last of the unary operations.
|
|
|
|
|
*/
|
|
|
|
|
ir_last_unop = ir_unop_noise,
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
ir_binop_add,
|
|
|
|
|
ir_binop_sub,
|
|
|
|
|
ir_binop_mul,
|
|
|
|
|
ir_binop_div,
|
2010-07-01 10:09:58 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Takes one of two combinations of arguments:
|
|
|
|
|
*
|
|
|
|
|
* - mod(vecN, vecN)
|
|
|
|
|
* - mod(vecN, float)
|
|
|
|
|
*
|
|
|
|
|
* Does not take integer types.
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
ir_binop_mod,
|
|
|
|
|
|
|
|
|
|
/**
|
2010-09-19 04:50:28 +02:00
|
|
|
* \name Binary comparison operators which return a boolean vector.
|
|
|
|
|
* The type of both operands must be equal.
|
2010-02-22 13:19:34 -08:00
|
|
|
*/
|
|
|
|
|
/*@{*/
|
|
|
|
|
ir_binop_less,
|
|
|
|
|
ir_binop_greater,
|
|
|
|
|
ir_binop_lequal,
|
|
|
|
|
ir_binop_gequal,
|
2010-09-08 01:31:39 +02:00
|
|
|
ir_binop_equal,
|
|
|
|
|
ir_binop_nequal,
|
2010-07-26 22:50:29 -07:00
|
|
|
/**
|
|
|
|
|
* Returns single boolean for whether all components of operands[0]
|
|
|
|
|
* equal the components of operands[1].
|
|
|
|
|
*/
|
2010-09-08 01:31:39 +02:00
|
|
|
ir_binop_all_equal,
|
2010-07-26 22:50:29 -07:00
|
|
|
/**
|
|
|
|
|
* Returns single boolean for whether any component of operands[0]
|
|
|
|
|
* is not equal to the corresponding component of operands[1].
|
|
|
|
|
*/
|
2010-09-08 01:31:39 +02:00
|
|
|
ir_binop_any_nequal,
|
2010-02-22 13:19:34 -08:00
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \name Bit-wise binary operations.
|
|
|
|
|
*/
|
|
|
|
|
/*@{*/
|
|
|
|
|
ir_binop_lshift,
|
|
|
|
|
ir_binop_rshift,
|
|
|
|
|
ir_binop_bit_and,
|
|
|
|
|
ir_binop_bit_xor,
|
|
|
|
|
ir_binop_bit_or,
|
|
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
|
|
ir_binop_logic_and,
|
|
|
|
|
ir_binop_logic_xor,
|
|
|
|
|
ir_binop_logic_or,
|
|
|
|
|
|
|
|
|
|
ir_binop_dot,
|
|
|
|
|
ir_binop_min,
|
|
|
|
|
ir_binop_max,
|
|
|
|
|
|
2010-11-17 15:31:35 -08:00
|
|
|
ir_binop_pow,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A sentinel marking the last of the binary operations.
|
|
|
|
|
*/
|
|
|
|
|
ir_last_binop = ir_binop_pow,
|
|
|
|
|
|
2010-11-16 12:01:42 -08:00
|
|
|
ir_quadop_vector,
|
|
|
|
|
|
2010-11-17 15:31:35 -08:00
|
|
|
/**
|
|
|
|
|
* A sentinel marking the last of all operations.
|
|
|
|
|
*/
|
|
|
|
|
ir_last_opcode = ir_last_binop
|
2010-02-22 13:19:34 -08:00
|
|
|
};
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
class ir_expression : public ir_rvalue {
|
2010-02-22 13:19:34 -08:00
|
|
|
public:
|
2010-11-09 14:19:10 -08:00
|
|
|
/**
|
|
|
|
|
* Constructor for unary operation expressions
|
|
|
|
|
*/
|
|
|
|
|
ir_expression(int op, const struct glsl_type *type, ir_rvalue *);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Constructor for binary operation expressions
|
|
|
|
|
*/
|
2010-02-22 13:19:34 -08:00
|
|
|
ir_expression(int op, const struct glsl_type *type,
|
2010-03-26 00:25:36 -07:00
|
|
|
ir_rvalue *, ir_rvalue *);
|
2010-02-22 13:19:34 -08:00
|
|
|
|
2010-11-16 12:01:42 -08:00
|
|
|
/**
|
|
|
|
|
* Constructor for quad operator expressions
|
|
|
|
|
*/
|
|
|
|
|
ir_expression(int op, const struct glsl_type *type,
|
|
|
|
|
ir_rvalue *, ir_rvalue *, ir_rvalue *, ir_rvalue *);
|
|
|
|
|
|
2010-07-12 11:04:07 -07:00
|
|
|
virtual ir_expression *as_expression()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_expression *clone(void *mem_ctx, struct hash_table *ht) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
/**
|
|
|
|
|
* Attempt to constant-fold the expression
|
|
|
|
|
*
|
|
|
|
|
* If the expression cannot be constant folded, this method will return
|
|
|
|
|
* \c NULL.
|
|
|
|
|
*/
|
2010-07-15 10:09:09 -07:00
|
|
|
virtual ir_constant *constant_expression_value();
|
|
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
/**
|
|
|
|
|
* Determine the number of operands used by an expression
|
|
|
|
|
*/
|
2010-04-07 16:56:57 -07:00
|
|
|
static unsigned int get_num_operands(ir_expression_operation);
|
2010-09-18 16:08:38 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine the number of operands used by an expression
|
|
|
|
|
*/
|
2010-06-23 11:37:12 -07:00
|
|
|
unsigned int get_num_operands() const
|
2010-04-07 16:56:57 -07:00
|
|
|
{
|
2010-11-16 12:01:42 -08:00
|
|
|
return (this->operation == ir_quadop_vector)
|
|
|
|
|
? this->type->vector_elements : get_num_operands(operation);
|
2010-04-07 16:56:57 -07:00
|
|
|
}
|
2010-04-01 18:07:08 -10:00
|
|
|
|
2010-04-07 17:18:29 -07:00
|
|
|
/**
|
|
|
|
|
* Return a string representing this expression's operator.
|
|
|
|
|
*/
|
|
|
|
|
const char *operator_string();
|
|
|
|
|
|
2010-08-27 13:53:25 -07:00
|
|
|
/**
|
|
|
|
|
* Return a string representing this expression's operator.
|
|
|
|
|
*/
|
|
|
|
|
static const char *operator_string(ir_expression_operation);
|
|
|
|
|
|
|
|
|
|
|
2010-04-07 17:18:29 -07:00
|
|
|
/**
|
|
|
|
|
* Do a reverse-lookup to translate the given string into an operator.
|
|
|
|
|
*/
|
|
|
|
|
static ir_expression_operation get_operator(const char *);
|
|
|
|
|
|
2010-03-09 16:23:37 -08:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
ir_expression_operation operation;
|
2010-11-16 12:01:42 -08:00
|
|
|
ir_rvalue *operands[4];
|
2010-02-22 13:19:34 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-03-11 14:34:27 -08:00
|
|
|
/**
|
|
|
|
|
* IR instruction representing a function call
|
|
|
|
|
*/
|
2010-03-26 00:25:36 -07:00
|
|
|
class ir_call : public ir_rvalue {
|
2010-03-11 14:34:27 -08:00
|
|
|
public:
|
2010-07-18 17:45:16 -07:00
|
|
|
ir_call(ir_function_signature *callee, exec_list *actual_parameters)
|
2010-04-07 18:03:50 -07:00
|
|
|
: callee(callee)
|
2010-03-11 14:34:27 -08:00
|
|
|
{
|
2010-07-19 09:05:42 -07:00
|
|
|
ir_type = ir_type_call;
|
2010-03-23 12:21:18 -07:00
|
|
|
assert(callee->return_type != NULL);
|
|
|
|
|
type = callee->return_type;
|
2010-03-11 14:50:30 -08:00
|
|
|
actual_parameters->move_nodes_to(& this->actual_parameters);
|
2010-03-11 14:34:27 -08:00
|
|
|
}
|
|
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_call *clone(void *mem_ctx, struct hash_table *ht) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-07-15 10:09:09 -07:00
|
|
|
virtual ir_constant *constant_expression_value();
|
|
|
|
|
|
2010-04-07 11:46:26 -07:00
|
|
|
virtual ir_call *as_call()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-11 14:34:27 -08:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-03-11 14:34:27 -08:00
|
|
|
/**
|
|
|
|
|
* Get a generic ir_call object when an error occurs
|
2010-06-23 18:25:04 -07:00
|
|
|
*
|
|
|
|
|
* Any allocation will be performed with 'ctx' as talloc owner.
|
2010-03-11 14:34:27 -08:00
|
|
|
*/
|
2010-06-23 18:25:04 -07:00
|
|
|
static ir_call *get_error_instruction(void *ctx);
|
2010-03-11 14:34:27 -08:00
|
|
|
|
2010-03-26 17:19:47 -07:00
|
|
|
/**
|
|
|
|
|
* Get an iterator for the set of acutal parameters
|
|
|
|
|
*/
|
|
|
|
|
exec_list_iterator iterator()
|
|
|
|
|
{
|
|
|
|
|
return actual_parameters.iterator();
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-26 17:29:29 -07:00
|
|
|
/**
|
|
|
|
|
* Get the name of the function being called.
|
|
|
|
|
*/
|
|
|
|
|
const char *callee_name() const
|
|
|
|
|
{
|
2010-03-31 16:44:12 -07:00
|
|
|
return callee->function_name();
|
2010-03-26 17:29:29 -07:00
|
|
|
}
|
|
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
/**
|
|
|
|
|
* Get the function signature bound to this function call
|
|
|
|
|
*/
|
2010-07-18 17:45:16 -07:00
|
|
|
ir_function_signature *get_callee()
|
2010-04-07 11:46:26 -07:00
|
|
|
{
|
|
|
|
|
return callee;
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-07 11:33:13 -07:00
|
|
|
/**
|
|
|
|
|
* Set the function call target
|
|
|
|
|
*/
|
2010-07-18 17:45:16 -07:00
|
|
|
void set_callee(ir_function_signature *sig);
|
2010-07-07 11:33:13 -07:00
|
|
|
|
2010-04-07 11:46:26 -07:00
|
|
|
/**
|
|
|
|
|
* Generates an inline version of the function before @ir,
|
|
|
|
|
* returning the return value of the function.
|
|
|
|
|
*/
|
|
|
|
|
ir_rvalue *generate_inline(ir_instruction *ir);
|
|
|
|
|
|
2010-07-13 17:34:02 -07:00
|
|
|
/* List of ir_rvalue of paramaters passed in this call. */
|
|
|
|
|
exec_list actual_parameters;
|
|
|
|
|
|
2010-03-11 14:34:27 -08:00
|
|
|
private:
|
2010-03-11 14:50:30 -08:00
|
|
|
ir_call()
|
2010-04-07 18:03:50 -07:00
|
|
|
: callee(NULL)
|
2010-03-11 14:50:30 -08:00
|
|
|
{
|
2010-07-19 09:05:42 -07:00
|
|
|
this->ir_type = ir_type_call;
|
2010-03-11 14:50:30 -08:00
|
|
|
}
|
|
|
|
|
|
2010-07-18 17:45:16 -07:00
|
|
|
ir_function_signature *callee;
|
2010-03-11 14:34:27 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-03-19 16:44:52 -07:00
|
|
|
/**
|
|
|
|
|
* \name Jump-like IR instructions.
|
|
|
|
|
*
|
|
|
|
|
* These include \c break, \c continue, \c return, and \c discard.
|
|
|
|
|
*/
|
|
|
|
|
/*@{*/
|
|
|
|
|
class ir_jump : public ir_instruction {
|
|
|
|
|
protected:
|
|
|
|
|
ir_jump()
|
|
|
|
|
{
|
2010-07-19 09:05:42 -07:00
|
|
|
ir_type = ir_type_unset;
|
2010-03-19 16:44:52 -07:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class ir_return : public ir_jump {
|
|
|
|
|
public:
|
|
|
|
|
ir_return()
|
|
|
|
|
: value(NULL)
|
|
|
|
|
{
|
2010-07-19 09:05:42 -07:00
|
|
|
this->ir_type = ir_type_return;
|
2010-03-19 16:44:52 -07:00
|
|
|
}
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
ir_return(ir_rvalue *value)
|
2010-03-19 16:44:52 -07:00
|
|
|
: value(value)
|
|
|
|
|
{
|
2010-07-19 09:05:42 -07:00
|
|
|
this->ir_type = ir_type_return;
|
2010-03-19 16:44:52 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_return *clone(void *mem_ctx, struct hash_table *) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-04-07 11:46:26 -07:00
|
|
|
virtual ir_return *as_return()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
ir_rvalue *get_value() const
|
2010-03-19 16:44:52 -07:00
|
|
|
{
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
ir_rvalue *value;
|
2010-03-19 16:44:52 -07:00
|
|
|
};
|
2010-04-05 16:28:15 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Jump instructions used inside loops
|
|
|
|
|
*
|
|
|
|
|
* These include \c break and \c continue. The \c break within a loop is
|
|
|
|
|
* different from the \c break within a switch-statement.
|
|
|
|
|
*
|
|
|
|
|
* \sa ir_switch_jump
|
|
|
|
|
*/
|
|
|
|
|
class ir_loop_jump : public ir_jump {
|
|
|
|
|
public:
|
|
|
|
|
enum jump_mode {
|
|
|
|
|
jump_break,
|
|
|
|
|
jump_continue
|
|
|
|
|
};
|
|
|
|
|
|
2010-06-23 11:37:12 -07:00
|
|
|
ir_loop_jump(jump_mode mode)
|
2010-04-05 16:28:15 -07:00
|
|
|
{
|
2010-07-19 09:05:42 -07:00
|
|
|
this->ir_type = ir_type_loop_jump;
|
2010-05-07 12:35:47 -07:00
|
|
|
this->mode = mode;
|
|
|
|
|
this->loop = loop;
|
2010-04-05 16:28:15 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_loop_jump *clone(void *mem_ctx, struct hash_table *) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-04-05 16:28:15 -07:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-04-05 16:28:15 -07:00
|
|
|
bool is_break() const
|
|
|
|
|
{
|
|
|
|
|
return mode == jump_break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool is_continue() const
|
|
|
|
|
{
|
|
|
|
|
return mode == jump_continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Mode selector for the jump instruction. */
|
|
|
|
|
enum jump_mode mode;
|
2010-05-07 12:35:47 -07:00
|
|
|
private:
|
|
|
|
|
/** Loop containing this break instruction. */
|
|
|
|
|
ir_loop *loop;
|
2010-04-05 16:28:15 -07:00
|
|
|
};
|
2010-06-30 10:47:34 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* IR instruction representing discard statements.
|
|
|
|
|
*/
|
|
|
|
|
class ir_discard : public ir_jump {
|
|
|
|
|
public:
|
|
|
|
|
ir_discard()
|
|
|
|
|
{
|
2010-07-19 09:05:42 -07:00
|
|
|
this->ir_type = ir_type_discard;
|
2010-06-30 10:47:34 -07:00
|
|
|
this->condition = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ir_discard(ir_rvalue *cond)
|
|
|
|
|
{
|
2010-08-04 16:31:04 +02:00
|
|
|
this->ir_type = ir_type_discard;
|
2010-06-30 10:47:34 -07:00
|
|
|
this->condition = cond;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_discard *clone(void *mem_ctx, struct hash_table *ht) const;
|
2010-06-30 10:47:34 -07:00
|
|
|
|
|
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-11-24 21:33:07 -08:00
|
|
|
virtual ir_discard *as_discard()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-30 10:47:34 -07:00
|
|
|
ir_rvalue *condition;
|
|
|
|
|
};
|
2010-03-19 16:44:52 -07:00
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
|
|
|
2010-04-28 18:42:36 -07:00
|
|
|
/**
|
|
|
|
|
* Texture sampling opcodes used in ir_texture
|
|
|
|
|
*/
|
|
|
|
|
enum ir_texture_opcode {
|
2010-09-18 16:08:38 +02:00
|
|
|
ir_tex, /**< Regular texture look-up */
|
|
|
|
|
ir_txb, /**< Texture look-up with LOD bias */
|
|
|
|
|
ir_txl, /**< Texture look-up with explicit LOD */
|
|
|
|
|
ir_txd, /**< Texture look-up with partial derivatvies */
|
|
|
|
|
ir_txf /**< Texel fetch with explicit LOD */
|
2010-04-28 18:42:36 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* IR instruction to sample a texture
|
|
|
|
|
*
|
|
|
|
|
* The specific form of the IR instruction depends on the \c mode value
|
|
|
|
|
* selected from \c ir_texture_opcodes. In the printed IR, these will
|
|
|
|
|
* appear as:
|
|
|
|
|
*
|
|
|
|
|
* Texel offset
|
|
|
|
|
* | Projection divisor
|
|
|
|
|
* | | Shadow comparitor
|
|
|
|
|
* | | |
|
|
|
|
|
* v v v
|
|
|
|
|
* (tex (sampler) (coordinate) (0 0 0) (1) ( ))
|
|
|
|
|
* (txb (sampler) (coordinate) (0 0 0) (1) ( ) (bias))
|
|
|
|
|
* (txl (sampler) (coordinate) (0 0 0) (1) ( ) (lod))
|
|
|
|
|
* (txd (sampler) (coordinate) (0 0 0) (1) ( ) (dPdx dPdy))
|
|
|
|
|
* (txf (sampler) (coordinate) (0 0 0) (lod))
|
|
|
|
|
*/
|
|
|
|
|
class ir_texture : public ir_rvalue {
|
|
|
|
|
public:
|
|
|
|
|
ir_texture(enum ir_texture_opcode op)
|
2010-06-09 11:07:53 -07:00
|
|
|
: op(op), projector(NULL), shadow_comparitor(NULL)
|
2010-04-28 18:42:36 -07:00
|
|
|
{
|
2010-07-19 09:05:42 -07:00
|
|
|
this->ir_type = ir_type_texture;
|
2010-04-28 18:42:36 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_texture *clone(void *mem_ctx, struct hash_table *) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-07-15 10:09:09 -07:00
|
|
|
virtual ir_constant *constant_expression_value();
|
|
|
|
|
|
2010-05-26 17:42:03 -07:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-05-26 16:41:47 -07:00
|
|
|
/**
|
|
|
|
|
* Return a string representing the ir_texture_opcode.
|
|
|
|
|
*/
|
|
|
|
|
const char *opcode_string();
|
|
|
|
|
|
2010-06-03 15:07:34 -07:00
|
|
|
/** Set the sampler and infer the type. */
|
|
|
|
|
void set_sampler(ir_dereference *sampler);
|
|
|
|
|
|
2010-05-26 16:41:47 -07:00
|
|
|
/**
|
|
|
|
|
* Do a reverse-lookup to translate a string into an ir_texture_opcode.
|
|
|
|
|
*/
|
|
|
|
|
static ir_texture_opcode get_opcode(const char *);
|
|
|
|
|
|
2010-04-28 18:42:36 -07:00
|
|
|
enum ir_texture_opcode op;
|
|
|
|
|
|
|
|
|
|
/** Sampler to use for the texture access. */
|
|
|
|
|
ir_dereference *sampler;
|
|
|
|
|
|
|
|
|
|
/** Texture coordinate to sample */
|
|
|
|
|
ir_rvalue *coordinate;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Value used for projective divide.
|
|
|
|
|
*
|
|
|
|
|
* If there is no projective divide (the common case), this will be
|
|
|
|
|
* \c NULL. Optimization passes should check for this to point to a constant
|
|
|
|
|
* of 1.0 and replace that with \c NULL.
|
|
|
|
|
*/
|
|
|
|
|
ir_rvalue *projector;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Coordinate used for comparison on shadow look-ups.
|
|
|
|
|
*
|
|
|
|
|
* If there is no shadow comparison, this will be \c NULL. For the
|
|
|
|
|
* \c ir_txf opcode, this *must* be \c NULL.
|
|
|
|
|
*/
|
|
|
|
|
ir_rvalue *shadow_comparitor;
|
|
|
|
|
|
|
|
|
|
/** Explicit texel offsets. */
|
|
|
|
|
signed char offsets[3];
|
|
|
|
|
|
|
|
|
|
union {
|
|
|
|
|
ir_rvalue *lod; /**< Floating point LOD */
|
|
|
|
|
ir_rvalue *bias; /**< Floating point LOD bias */
|
|
|
|
|
struct {
|
|
|
|
|
ir_rvalue *dPdx; /**< Partial derivative of coordinate wrt X */
|
|
|
|
|
ir_rvalue *dPdy; /**< Partial derivative of coordinate wrt Y */
|
|
|
|
|
} grad;
|
|
|
|
|
} lod_info;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
struct ir_swizzle_mask {
|
|
|
|
|
unsigned x:2;
|
|
|
|
|
unsigned y:2;
|
|
|
|
|
unsigned z:2;
|
|
|
|
|
unsigned w:2;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Number of components in the swizzle.
|
|
|
|
|
*/
|
2010-03-25 11:22:42 -07:00
|
|
|
unsigned num_components:3;
|
2010-02-22 13:19:34 -08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Does the swizzle contain duplicate components?
|
|
|
|
|
*
|
|
|
|
|
* L-value swizzles cannot contain duplicate components.
|
|
|
|
|
*/
|
|
|
|
|
unsigned has_duplicates:1;
|
|
|
|
|
};
|
|
|
|
|
|
2010-03-26 01:20:08 -07:00
|
|
|
|
|
|
|
|
class ir_swizzle : public ir_rvalue {
|
|
|
|
|
public:
|
|
|
|
|
ir_swizzle(ir_rvalue *, unsigned x, unsigned y, unsigned z, unsigned w,
|
|
|
|
|
unsigned count);
|
2010-06-25 15:25:27 -07:00
|
|
|
|
|
|
|
|
ir_swizzle(ir_rvalue *val, const unsigned *components, unsigned count);
|
|
|
|
|
|
2010-05-03 17:08:01 -07:00
|
|
|
ir_swizzle(ir_rvalue *val, ir_swizzle_mask mask);
|
2010-04-07 11:46:26 -07:00
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_swizzle *clone(void *mem_ctx, struct hash_table *) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-07-15 10:09:09 -07:00
|
|
|
virtual ir_constant *constant_expression_value();
|
|
|
|
|
|
2010-04-16 16:43:47 -07:00
|
|
|
virtual ir_swizzle *as_swizzle()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-26 01:20:08 -07:00
|
|
|
/**
|
|
|
|
|
* Construct an ir_swizzle from the textual representation. Can fail.
|
|
|
|
|
*/
|
|
|
|
|
static ir_swizzle *create(ir_rvalue *, const char *, unsigned vector_length);
|
|
|
|
|
|
|
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-03-26 01:20:08 -07:00
|
|
|
bool is_lvalue()
|
|
|
|
|
{
|
2010-03-28 01:29:18 -07:00
|
|
|
return val->is_lvalue() && !mask.has_duplicates;
|
2010-03-26 01:20:08 -07:00
|
|
|
}
|
|
|
|
|
|
2010-05-14 17:35:42 -07:00
|
|
|
/**
|
|
|
|
|
* Get the variable that is ultimately referenced by an r-value
|
|
|
|
|
*/
|
|
|
|
|
virtual ir_variable *variable_referenced();
|
|
|
|
|
|
2010-03-26 01:20:08 -07:00
|
|
|
ir_rvalue *val;
|
|
|
|
|
ir_swizzle_mask mask;
|
2010-06-25 15:25:27 -07:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
/**
|
|
|
|
|
* Initialize the mask component of a swizzle
|
|
|
|
|
*
|
|
|
|
|
* This is used by the \c ir_swizzle constructors.
|
|
|
|
|
*/
|
|
|
|
|
void init_mask(const unsigned *components, unsigned count);
|
2010-03-26 01:20:08 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
class ir_dereference : public ir_rvalue {
|
2010-02-22 13:19:34 -08:00
|
|
|
public:
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_dereference *clone(void *mem_ctx, struct hash_table *) const = 0;
|
2010-07-06 17:41:02 -07:00
|
|
|
|
2010-03-25 23:30:28 -07:00
|
|
|
virtual ir_dereference *as_dereference()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-01 20:27:35 -10:00
|
|
|
bool is_lvalue();
|
2010-03-26 00:25:36 -07:00
|
|
|
|
2010-05-14 17:35:42 -07:00
|
|
|
/**
|
|
|
|
|
* Get the variable that is ultimately referenced by an r-value
|
|
|
|
|
*/
|
2010-05-19 11:37:35 +02:00
|
|
|
virtual ir_variable *variable_referenced() = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ir_dereference_variable : public ir_dereference {
|
|
|
|
|
public:
|
|
|
|
|
ir_dereference_variable(ir_variable *var);
|
|
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_dereference_variable *clone(void *mem_ctx,
|
|
|
|
|
struct hash_table *) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-07-15 10:09:09 -07:00
|
|
|
virtual ir_constant *constant_expression_value();
|
|
|
|
|
|
2010-06-29 14:16:11 -07:00
|
|
|
virtual ir_dereference_variable *as_dereference_variable()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-19 11:37:35 +02:00
|
|
|
/**
|
|
|
|
|
* Get the variable that is ultimately referenced by an r-value
|
|
|
|
|
*/
|
|
|
|
|
virtual ir_variable *variable_referenced()
|
|
|
|
|
{
|
2010-05-19 13:52:29 +02:00
|
|
|
return this->var;
|
2010-05-19 11:37:35 +02:00
|
|
|
}
|
2010-05-19 12:02:19 +02:00
|
|
|
|
2010-05-26 11:32:52 -07:00
|
|
|
virtual ir_variable *whole_variable_referenced()
|
|
|
|
|
{
|
|
|
|
|
/* ir_dereference_variable objects always dereference the entire
|
|
|
|
|
* variable. However, if this dereference is dereferenced by anything
|
|
|
|
|
* else, the complete deferefernce chain is not a whole-variable
|
|
|
|
|
* dereference. This method should only be called on the top most
|
|
|
|
|
* ir_rvalue in a dereference chain.
|
|
|
|
|
*/
|
|
|
|
|
return this->var;
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-19 13:20:12 +02:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-19 12:02:19 +02:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
2010-05-19 13:52:29 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Object being dereferenced.
|
|
|
|
|
*/
|
|
|
|
|
ir_variable *var;
|
2010-05-19 11:37:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ir_dereference_array : public ir_dereference {
|
|
|
|
|
public:
|
|
|
|
|
ir_dereference_array(ir_rvalue *value, ir_rvalue *array_index);
|
|
|
|
|
|
|
|
|
|
ir_dereference_array(ir_variable *var, ir_rvalue *array_index);
|
|
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_dereference_array *clone(void *mem_ctx,
|
|
|
|
|
struct hash_table *) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-07-15 10:09:09 -07:00
|
|
|
virtual ir_constant *constant_expression_value();
|
|
|
|
|
|
2010-05-11 11:31:09 -07:00
|
|
|
virtual ir_dereference_array *as_dereference_array()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-19 11:37:35 +02:00
|
|
|
/**
|
|
|
|
|
* Get the variable that is ultimately referenced by an r-value
|
|
|
|
|
*/
|
|
|
|
|
virtual ir_variable *variable_referenced()
|
|
|
|
|
{
|
2010-05-19 13:52:29 +02:00
|
|
|
return this->array->variable_referenced();
|
2010-05-19 11:37:35 +02:00
|
|
|
}
|
|
|
|
|
|
2010-05-19 13:20:12 +02:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-19 12:02:19 +02:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
2010-05-19 11:37:35 +02:00
|
|
|
|
2010-05-19 13:52:29 +02:00
|
|
|
ir_rvalue *array;
|
|
|
|
|
ir_rvalue *array_index;
|
|
|
|
|
|
2010-05-19 11:37:35 +02:00
|
|
|
private:
|
|
|
|
|
void set_array(ir_rvalue *value);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ir_dereference_record : public ir_dereference {
|
|
|
|
|
public:
|
|
|
|
|
ir_dereference_record(ir_rvalue *value, const char *field);
|
|
|
|
|
|
|
|
|
|
ir_dereference_record(ir_variable *var, const char *field);
|
|
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_dereference_record *clone(void *mem_ctx,
|
|
|
|
|
struct hash_table *) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-07-15 10:09:09 -07:00
|
|
|
virtual ir_constant *constant_expression_value();
|
|
|
|
|
|
2010-05-19 11:37:35 +02:00
|
|
|
/**
|
|
|
|
|
* Get the variable that is ultimately referenced by an r-value
|
|
|
|
|
*/
|
|
|
|
|
virtual ir_variable *variable_referenced()
|
|
|
|
|
{
|
2010-05-19 13:52:29 +02:00
|
|
|
return this->record->variable_referenced();
|
2010-05-19 11:37:35 +02:00
|
|
|
}
|
2010-05-19 12:02:19 +02:00
|
|
|
|
2010-05-19 13:20:12 +02:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-19 12:02:19 +02:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
2010-05-19 13:52:29 +02:00
|
|
|
|
|
|
|
|
ir_rvalue *record;
|
|
|
|
|
const char *field;
|
2010-02-22 13:19:34 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-06-11 14:01:44 -07:00
|
|
|
/**
|
|
|
|
|
* Data stored in an ir_constant
|
|
|
|
|
*/
|
|
|
|
|
union ir_constant_data {
|
|
|
|
|
unsigned u[16];
|
|
|
|
|
int i[16];
|
|
|
|
|
float f[16];
|
|
|
|
|
bool b[16];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-03-26 00:25:36 -07:00
|
|
|
class ir_constant : public ir_rvalue {
|
2010-02-22 13:19:34 -08:00
|
|
|
public:
|
2010-06-11 16:57:47 -07:00
|
|
|
ir_constant(const struct glsl_type *type, const ir_constant_data *data);
|
2010-03-26 12:07:44 -07:00
|
|
|
ir_constant(bool b);
|
|
|
|
|
ir_constant(unsigned int u);
|
|
|
|
|
ir_constant(int i);
|
|
|
|
|
ir_constant(float f);
|
2010-02-22 13:19:34 -08:00
|
|
|
|
2010-06-04 16:34:38 -07:00
|
|
|
/**
|
|
|
|
|
* Construct an ir_constant from a list of ir_constant values
|
|
|
|
|
*/
|
|
|
|
|
ir_constant(const struct glsl_type *type, exec_list *values);
|
|
|
|
|
|
2010-06-04 16:13:35 -07:00
|
|
|
/**
|
|
|
|
|
* Construct an ir_constant from a scalar component of another ir_constant
|
|
|
|
|
*
|
|
|
|
|
* The new \c ir_constant inherits the type of the component from the
|
|
|
|
|
* source constant.
|
|
|
|
|
*
|
|
|
|
|
* \note
|
|
|
|
|
* In the case of a matrix constant, the new constant is a scalar, \b not
|
|
|
|
|
* a vector.
|
|
|
|
|
*/
|
|
|
|
|
ir_constant(const ir_constant *c, unsigned i);
|
|
|
|
|
|
2010-07-21 15:54:15 -07:00
|
|
|
/**
|
|
|
|
|
* Return a new ir_constant of the specified type containing all zeros.
|
|
|
|
|
*/
|
|
|
|
|
static ir_constant *zero(void *mem_ctx, const glsl_type *type);
|
|
|
|
|
|
2010-08-04 12:34:56 -07:00
|
|
|
virtual ir_constant *clone(void *mem_ctx, struct hash_table *) const;
|
2010-06-23 11:37:12 -07:00
|
|
|
|
2010-07-15 10:09:09 -07:00
|
|
|
virtual ir_constant *constant_expression_value();
|
|
|
|
|
|
2010-05-04 13:04:40 -07:00
|
|
|
virtual ir_constant *as_constant()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-09 16:23:37 -08:00
|
|
|
virtual void accept(ir_visitor *v)
|
|
|
|
|
{
|
|
|
|
|
v->visit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-14 12:39:23 -07:00
|
|
|
virtual ir_visitor_status accept(ir_hierarchical_visitor *);
|
|
|
|
|
|
2010-06-04 16:30:07 -07:00
|
|
|
/**
|
|
|
|
|
* Get a particular component of a constant as a specific type
|
|
|
|
|
*
|
|
|
|
|
* This is useful, for example, to get a value from an integer constant
|
|
|
|
|
* as a float or bool. This appears frequently when constructors are
|
|
|
|
|
* called with all constant parameters.
|
|
|
|
|
*/
|
|
|
|
|
/*@{*/
|
|
|
|
|
bool get_bool_component(unsigned i) const;
|
|
|
|
|
float get_float_component(unsigned i) const;
|
|
|
|
|
int get_int_component(unsigned i) const;
|
|
|
|
|
unsigned get_uint_component(unsigned i) const;
|
|
|
|
|
/*@}*/
|
|
|
|
|
|
2010-07-20 01:06:33 -07:00
|
|
|
ir_constant *get_array_element(unsigned i) const;
|
|
|
|
|
|
2010-06-09 17:28:54 -07:00
|
|
|
ir_constant *get_record_field(const char *name);
|
|
|
|
|
|
2010-06-17 19:50:36 -07:00
|
|
|
/**
|
|
|
|
|
* Determine whether a constant has the same value as another constant
|
2010-11-12 10:19:08 -08:00
|
|
|
*
|
2010-11-16 11:59:22 -08:00
|
|
|
* \sa ir_constant::is_zero, ir_constant::is_one,
|
|
|
|
|
* ir_constant::is_negative_one
|
2010-06-17 19:50:36 -07:00
|
|
|
*/
|
|
|
|
|
bool has_value(const ir_constant *) const;
|
|
|
|
|
|
2010-11-18 17:11:17 -08:00
|
|
|
virtual bool is_zero() const;
|
|
|
|
|
virtual bool is_one() const;
|
2010-11-16 11:59:22 -08:00
|
|
|
virtual bool is_negative_one() const;
|
2010-11-12 10:19:08 -08:00
|
|
|
|
2010-02-22 13:19:34 -08:00
|
|
|
/**
|
|
|
|
|
* Value of the constant.
|
|
|
|
|
*
|
|
|
|
|
* The field used to back the values supplied by the constant is determined
|
|
|
|
|
* by the type associated with the \c ir_instruction. Constants may be
|
|
|
|
|
* scalars, vectors, or matrices.
|
|
|
|
|
*/
|
2010-06-11 14:01:44 -07:00
|
|
|
union ir_constant_data value;
|
2010-06-09 17:11:50 -07:00
|
|
|
|
2010-07-20 01:06:33 -07:00
|
|
|
/* Array elements */
|
|
|
|
|
ir_constant **array_elements;
|
|
|
|
|
|
|
|
|
|
/* Structure fields */
|
2010-06-09 17:11:50 -07:00
|
|
|
exec_list components;
|
2010-06-09 17:18:04 -07:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
/**
|
|
|
|
|
* Parameterless constructor only used by the clone method
|
|
|
|
|
*/
|
|
|
|
|
ir_constant(void);
|
2010-02-22 13:19:34 -08:00
|
|
|
};
|
|
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Apply a visitor to each IR node in a list
|
|
|
|
|
*/
|
2010-04-06 11:52:09 -07:00
|
|
|
void
|
|
|
|
|
visit_exec_list(exec_list *list, ir_visitor *visitor);
|
2010-03-10 10:43:16 -08:00
|
|
|
|
2010-09-18 16:08:38 +02:00
|
|
|
/**
|
|
|
|
|
* Validate invariants on each IR node in a list
|
|
|
|
|
*/
|
2010-06-22 12:07:21 -07:00
|
|
|
void validate_ir_tree(exec_list *instructions);
|
|
|
|
|
|
2010-07-06 16:01:06 -07:00
|
|
|
/**
|
|
|
|
|
* Make a clone of each IR instruction in a list
|
|
|
|
|
*
|
|
|
|
|
* \param in List of IR instructions that are to be cloned
|
|
|
|
|
* \param out List to hold the cloned instructions
|
|
|
|
|
*/
|
|
|
|
|
void
|
2010-08-04 12:34:56 -07:00
|
|
|
clone_ir_list(void *mem_ctx, exec_list *out, const exec_list *in);
|
2010-07-06 16:01:06 -07:00
|
|
|
|
2010-03-10 10:43:16 -08:00
|
|
|
extern void
|
|
|
|
|
_mesa_glsl_initialize_variables(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
2010-03-15 15:20:15 -07:00
|
|
|
|
2010-03-26 18:20:30 -07:00
|
|
|
extern void
|
|
|
|
|
_mesa_glsl_initialize_functions(exec_list *instructions,
|
|
|
|
|
struct _mesa_glsl_parse_state *state);
|
|
|
|
|
|
2010-07-20 11:29:46 -07:00
|
|
|
extern void
|
|
|
|
|
_mesa_glsl_release_functions(void);
|
|
|
|
|
|
2010-07-20 11:27:38 -07:00
|
|
|
extern void
|
|
|
|
|
reparent_ir(exec_list *list, void *mem_ctx);
|
|
|
|
|
|
2010-08-14 15:35:57 +01:00
|
|
|
struct glsl_symbol_table;
|
2010-07-20 11:28:31 -07:00
|
|
|
|
|
|
|
|
extern void
|
|
|
|
|
import_prototypes(const exec_list *source, exec_list *dest,
|
2010-08-14 15:35:57 +01:00
|
|
|
struct glsl_symbol_table *symbols, void *mem_ctx);
|
2010-07-20 11:28:31 -07:00
|
|
|
|
2010-08-05 12:10:31 -07:00
|
|
|
extern bool
|
|
|
|
|
ir_has_call(ir_instruction *ir);
|
|
|
|
|
|
2010-08-06 13:07:25 -07:00
|
|
|
extern void
|
|
|
|
|
do_set_program_inouts(exec_list *instructions, struct gl_program *prog);
|
|
|
|
|
|
2010-03-15 15:20:15 -07:00
|
|
|
#endif /* IR_H */
|