2010-08-10 20:39:06 -07: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.
|
|
|
|
|
*
|
|
|
|
|
* Authors:
|
|
|
|
|
* Eric Anholt <eric@anholt.net>
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
extern "C" {
|
2010-08-26 15:43:00 -07:00
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
2010-08-10 20:39:06 -07:00
|
|
|
#include "main/macros.h"
|
|
|
|
|
#include "main/shaderobj.h"
|
2010-09-28 16:23:04 -07:00
|
|
|
#include "main/uniforms.h"
|
2010-08-10 20:39:06 -07:00
|
|
|
#include "program/prog_parameter.h"
|
|
|
|
|
#include "program/prog_print.h"
|
|
|
|
|
#include "program/prog_optimize.h"
|
2010-09-29 12:08:11 -07:00
|
|
|
#include "program/register_allocate.h"
|
2010-09-28 10:53:47 -07:00
|
|
|
#include "program/sampler.h"
|
2010-08-15 18:58:58 -07:00
|
|
|
#include "program/hash_table.h"
|
2010-08-10 20:39:06 -07:00
|
|
|
#include "brw_context.h"
|
|
|
|
|
#include "brw_eu.h"
|
|
|
|
|
#include "brw_wm.h"
|
|
|
|
|
}
|
2010-10-10 15:42:37 -07:00
|
|
|
#include "brw_fs.h"
|
2010-08-15 18:58:58 -07:00
|
|
|
#include "../glsl/glsl_types.h"
|
2010-08-13 02:20:40 -07:00
|
|
|
#include "../glsl/ir_optimization.h"
|
2010-08-26 12:02:26 -07:00
|
|
|
#include "../glsl/ir_print_visitor.h"
|
2010-08-10 20:39:06 -07:00
|
|
|
|
2011-01-14 13:17:59 -08:00
|
|
|
#define MAX_INSTRUCTION (1 << 30)
|
2010-09-28 12:07:30 -07:00
|
|
|
static struct brw_reg brw_reg_from_fs_reg(class fs_reg *reg);
|
2010-08-26 12:12:00 -07:00
|
|
|
|
2010-08-10 20:39:06 -07:00
|
|
|
struct gl_shader *
|
2010-10-12 12:26:10 -04:00
|
|
|
brw_new_shader(struct gl_context *ctx, GLuint name, GLuint type)
|
2010-08-10 20:39:06 -07:00
|
|
|
{
|
|
|
|
|
struct brw_shader *shader;
|
|
|
|
|
|
2011-01-21 14:32:31 -08:00
|
|
|
shader = rzalloc(NULL, struct brw_shader);
|
2010-08-10 20:39:06 -07:00
|
|
|
if (shader) {
|
2010-08-26 16:59:55 -07:00
|
|
|
shader->base.Type = type;
|
|
|
|
|
shader->base.Name = name;
|
2010-08-10 20:39:06 -07:00
|
|
|
_mesa_init_shader(ctx, &shader->base);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &shader->base;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct gl_shader_program *
|
2010-10-12 12:26:10 -04:00
|
|
|
brw_new_shader_program(struct gl_context *ctx, GLuint name)
|
2010-08-10 20:39:06 -07:00
|
|
|
{
|
|
|
|
|
struct brw_shader_program *prog;
|
2011-01-21 14:32:31 -08:00
|
|
|
prog = rzalloc(NULL, struct brw_shader_program);
|
2010-08-10 20:39:06 -07:00
|
|
|
if (prog) {
|
2010-08-26 16:59:55 -07:00
|
|
|
prog->base.Name = name;
|
2010-08-10 20:39:06 -07:00
|
|
|
_mesa_init_shader_program(ctx, &prog->base);
|
|
|
|
|
}
|
|
|
|
|
return &prog->base;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GLboolean
|
2010-10-12 12:26:10 -04:00
|
|
|
brw_link_shader(struct gl_context *ctx, struct gl_shader_program *prog)
|
2010-08-10 20:39:06 -07:00
|
|
|
{
|
2010-12-27 00:40:26 -08:00
|
|
|
struct brw_context *brw = brw_context(ctx);
|
|
|
|
|
struct intel_context *intel = &brw->intel;
|
|
|
|
|
|
2010-10-14 13:28:42 -07:00
|
|
|
struct brw_shader *shader =
|
|
|
|
|
(struct brw_shader *)prog->_LinkedShaders[MESA_SHADER_FRAGMENT];
|
|
|
|
|
if (shader != NULL) {
|
2011-01-21 14:32:31 -08:00
|
|
|
void *mem_ctx = ralloc_context(NULL);
|
2010-10-15 10:32:02 -07:00
|
|
|
bool progress;
|
|
|
|
|
|
|
|
|
|
if (shader->ir)
|
2011-01-21 14:32:31 -08:00
|
|
|
ralloc_free(shader->ir);
|
2010-10-15 10:32:02 -07:00
|
|
|
shader->ir = new(shader) exec_list;
|
|
|
|
|
clone_ir_list(mem_ctx, shader->ir, shader->base.ir);
|
|
|
|
|
|
|
|
|
|
do_mat_op_to_vec(shader->ir);
|
2010-11-18 17:54:07 -08:00
|
|
|
lower_instructions(shader->ir,
|
|
|
|
|
MOD_TO_FRACT |
|
|
|
|
|
DIV_TO_MUL_RCP |
|
|
|
|
|
SUB_TO_ADD_NEG |
|
|
|
|
|
EXP_TO_EXP2 |
|
|
|
|
|
LOG_TO_LOG2);
|
2010-12-27 00:40:26 -08:00
|
|
|
|
|
|
|
|
/* Pre-gen6 HW can only nest if-statements 16 deep. Beyond this,
|
|
|
|
|
* if-statements need to be flattened.
|
|
|
|
|
*/
|
|
|
|
|
if (intel->gen < 6)
|
|
|
|
|
lower_if_to_cond_assign(shader->ir, 16);
|
|
|
|
|
|
2010-10-15 10:32:02 -07:00
|
|
|
do_lower_texture_projection(shader->ir);
|
2010-12-28 17:19:10 -08:00
|
|
|
do_vec_index_to_cond_assign(shader->ir);
|
2010-10-15 10:32:02 -07:00
|
|
|
brw_do_cubemap_normalize(shader->ir);
|
2011-03-11 14:50:17 -08:00
|
|
|
lower_noise(shader->ir);
|
|
|
|
|
lower_quadop_vector(shader->ir, false);
|
|
|
|
|
lower_variable_index_to_cond_assign(shader->ir,
|
|
|
|
|
GL_TRUE, /* input */
|
|
|
|
|
GL_TRUE, /* output */
|
|
|
|
|
GL_TRUE, /* temp */
|
|
|
|
|
GL_TRUE /* uniform */
|
|
|
|
|
);
|
2010-10-15 10:32:02 -07:00
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
progress = false;
|
|
|
|
|
|
|
|
|
|
brw_do_channel_expressions(shader->ir);
|
|
|
|
|
brw_do_vector_splitting(shader->ir);
|
|
|
|
|
|
|
|
|
|
progress = do_lower_jumps(shader->ir, true, true,
|
|
|
|
|
true, /* main return */
|
|
|
|
|
false, /* continue */
|
|
|
|
|
false /* loops */
|
|
|
|
|
) || progress;
|
|
|
|
|
|
|
|
|
|
progress = do_common_optimization(shader->ir, true, 32) || progress;
|
|
|
|
|
} while (progress);
|
|
|
|
|
|
|
|
|
|
validate_ir_tree(shader->ir);
|
|
|
|
|
|
|
|
|
|
reparent_ir(shader->ir, shader->ir);
|
2011-01-21 14:32:31 -08:00
|
|
|
ralloc_free(mem_ctx);
|
2010-08-13 02:20:40 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-10 20:39:06 -07:00
|
|
|
if (!_mesa_ir_link_shader(ctx, prog))
|
|
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
|
}
|
2010-08-26 12:12:00 -07:00
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
static int
|
|
|
|
|
type_size(const struct glsl_type *type)
|
|
|
|
|
{
|
|
|
|
|
unsigned int size, i;
|
|
|
|
|
|
|
|
|
|
switch (type->base_type) {
|
|
|
|
|
case GLSL_TYPE_UINT:
|
|
|
|
|
case GLSL_TYPE_INT:
|
|
|
|
|
case GLSL_TYPE_FLOAT:
|
|
|
|
|
case GLSL_TYPE_BOOL:
|
2010-08-27 10:44:04 -07:00
|
|
|
return type->components();
|
2010-08-15 18:58:58 -07:00
|
|
|
case GLSL_TYPE_ARRAY:
|
|
|
|
|
return type_size(type->fields.array) * type->length;
|
|
|
|
|
case GLSL_TYPE_STRUCT:
|
|
|
|
|
size = 0;
|
|
|
|
|
for (i = 0; i < type->length; i++) {
|
|
|
|
|
size += type_size(type->fields.structure[i].type);
|
|
|
|
|
}
|
|
|
|
|
return size;
|
|
|
|
|
case GLSL_TYPE_SAMPLER:
|
|
|
|
|
/* Samplers take up no register space, since they're baked in at
|
|
|
|
|
* link time.
|
|
|
|
|
*/
|
|
|
|
|
return 0;
|
|
|
|
|
default:
|
|
|
|
|
assert(!"not reached");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-13 13:43:05 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::fail(const char *format, ...)
|
|
|
|
|
{
|
|
|
|
|
if (!failed) {
|
|
|
|
|
failed = true;
|
|
|
|
|
|
|
|
|
|
if (INTEL_DEBUG & DEBUG_WM) {
|
|
|
|
|
fprintf(stderr, "FS compile failed: ");
|
|
|
|
|
|
|
|
|
|
va_list va;
|
|
|
|
|
va_start(va, format);
|
|
|
|
|
vfprintf(stderr, format, va);
|
|
|
|
|
va_end(va);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-19 15:57:05 +08:00
|
|
|
/**
|
|
|
|
|
* Returns how many MRFs an FS opcode will write over.
|
|
|
|
|
*
|
|
|
|
|
* Note that this is not the 0 or 1 implied writes in an actual gen
|
|
|
|
|
* instruction -- the FS opcodes often generate MOVs in addition.
|
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
fs_visitor::implied_mrf_writes(fs_inst *inst)
|
|
|
|
|
{
|
|
|
|
|
if (inst->mlen == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
switch (inst->opcode) {
|
|
|
|
|
case FS_OPCODE_RCP:
|
|
|
|
|
case FS_OPCODE_RSQ:
|
|
|
|
|
case FS_OPCODE_SQRT:
|
|
|
|
|
case FS_OPCODE_EXP2:
|
|
|
|
|
case FS_OPCODE_LOG2:
|
|
|
|
|
case FS_OPCODE_SIN:
|
|
|
|
|
case FS_OPCODE_COS:
|
|
|
|
|
return 1;
|
|
|
|
|
case FS_OPCODE_POW:
|
|
|
|
|
return 2;
|
|
|
|
|
case FS_OPCODE_TEX:
|
|
|
|
|
case FS_OPCODE_TXB:
|
2011-02-24 17:49:07 -08:00
|
|
|
case FS_OPCODE_TXD:
|
2010-11-19 15:57:05 +08:00
|
|
|
case FS_OPCODE_TXL:
|
|
|
|
|
return 1;
|
|
|
|
|
case FS_OPCODE_FB_WRITE:
|
|
|
|
|
return 2;
|
|
|
|
|
case FS_OPCODE_PULL_CONSTANT_LOAD:
|
|
|
|
|
case FS_OPCODE_UNSPILL:
|
|
|
|
|
return 1;
|
|
|
|
|
case FS_OPCODE_SPILL:
|
|
|
|
|
return 2;
|
|
|
|
|
default:
|
|
|
|
|
assert(!"not reached");
|
|
|
|
|
return inst->mlen;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-29 10:43:46 -07:00
|
|
|
int
|
|
|
|
|
fs_visitor::virtual_grf_alloc(int size)
|
|
|
|
|
{
|
|
|
|
|
if (virtual_grf_array_size <= virtual_grf_next) {
|
|
|
|
|
if (virtual_grf_array_size == 0)
|
|
|
|
|
virtual_grf_array_size = 16;
|
|
|
|
|
else
|
|
|
|
|
virtual_grf_array_size *= 2;
|
2011-01-21 14:32:31 -08:00
|
|
|
virtual_grf_sizes = reralloc(mem_ctx, virtual_grf_sizes, int,
|
|
|
|
|
virtual_grf_array_size);
|
2010-09-29 10:43:46 -07:00
|
|
|
|
|
|
|
|
/* This slot is always unused. */
|
|
|
|
|
virtual_grf_sizes[0] = 0;
|
|
|
|
|
}
|
|
|
|
|
virtual_grf_sizes[virtual_grf_next] = size;
|
|
|
|
|
return virtual_grf_next++;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
/** Fixed HW reg constructor. */
|
|
|
|
|
fs_reg::fs_reg(enum register_file file, int hw_reg)
|
|
|
|
|
{
|
2010-09-03 13:21:51 -07:00
|
|
|
init();
|
2010-08-15 18:58:58 -07:00
|
|
|
this->file = file;
|
|
|
|
|
this->hw_reg = hw_reg;
|
|
|
|
|
this->type = BRW_REGISTER_TYPE_F;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-15 12:04:52 -07:00
|
|
|
/** Fixed HW reg constructor. */
|
|
|
|
|
fs_reg::fs_reg(enum register_file file, int hw_reg, uint32_t type)
|
|
|
|
|
{
|
|
|
|
|
init();
|
|
|
|
|
this->file = file;
|
|
|
|
|
this->hw_reg = hw_reg;
|
|
|
|
|
this->type = type;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-27 22:26:22 -07:00
|
|
|
int
|
|
|
|
|
brw_type_for_base_type(const struct glsl_type *type)
|
2010-08-15 18:58:58 -07:00
|
|
|
{
|
|
|
|
|
switch (type->base_type) {
|
|
|
|
|
case GLSL_TYPE_FLOAT:
|
2010-09-27 22:26:22 -07:00
|
|
|
return BRW_REGISTER_TYPE_F;
|
2010-08-15 18:58:58 -07:00
|
|
|
case GLSL_TYPE_INT:
|
|
|
|
|
case GLSL_TYPE_BOOL:
|
2010-09-27 22:26:22 -07:00
|
|
|
return BRW_REGISTER_TYPE_D;
|
2010-08-15 18:58:58 -07:00
|
|
|
case GLSL_TYPE_UINT:
|
2010-09-27 22:26:22 -07:00
|
|
|
return BRW_REGISTER_TYPE_UD;
|
2010-09-27 22:15:36 -07:00
|
|
|
case GLSL_TYPE_ARRAY:
|
|
|
|
|
case GLSL_TYPE_STRUCT:
|
2010-10-25 12:52:29 -07:00
|
|
|
case GLSL_TYPE_SAMPLER:
|
2010-09-27 22:15:36 -07:00
|
|
|
/* These should be overridden with the type of the member when
|
|
|
|
|
* dereferenced into. BRW_REGISTER_TYPE_UD seems like a likely
|
|
|
|
|
* way to trip up if we don't.
|
|
|
|
|
*/
|
2010-09-27 22:26:22 -07:00
|
|
|
return BRW_REGISTER_TYPE_UD;
|
2010-08-15 18:58:58 -07:00
|
|
|
default:
|
|
|
|
|
assert(!"not reached");
|
2010-09-27 22:26:22 -07:00
|
|
|
return BRW_REGISTER_TYPE_F;
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-27 22:26:22 -07:00
|
|
|
/** Automatic reg constructor. */
|
|
|
|
|
fs_reg::fs_reg(class fs_visitor *v, const struct glsl_type *type)
|
|
|
|
|
{
|
|
|
|
|
init();
|
|
|
|
|
|
|
|
|
|
this->file = GRF;
|
2010-09-29 10:43:46 -07:00
|
|
|
this->reg = v->virtual_grf_alloc(type_size(type));
|
2010-09-27 22:26:22 -07:00
|
|
|
this->reg_offset = 0;
|
|
|
|
|
this->type = brw_type_for_base_type(type);
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
fs_reg *
|
|
|
|
|
fs_visitor::variable_storage(ir_variable *var)
|
|
|
|
|
{
|
|
|
|
|
return (fs_reg *)hash_table_find(this->variable_ht, var);
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-28 09:31:56 -07:00
|
|
|
/* Our support for uniforms is piggy-backed on the struct
|
|
|
|
|
* gl_fragment_program, because that's where the values actually
|
|
|
|
|
* get stored, rather than in some global gl_shader_program uniform
|
|
|
|
|
* store.
|
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
fs_visitor::setup_uniform_values(int loc, const glsl_type *type)
|
|
|
|
|
{
|
|
|
|
|
unsigned int offset = 0;
|
|
|
|
|
|
|
|
|
|
if (type->is_matrix()) {
|
|
|
|
|
const glsl_type *column = glsl_type::get_instance(GLSL_TYPE_FLOAT,
|
|
|
|
|
type->vector_elements,
|
|
|
|
|
1);
|
|
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < type->matrix_columns; i++) {
|
|
|
|
|
offset += setup_uniform_values(loc + offset, column);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (type->base_type) {
|
|
|
|
|
case GLSL_TYPE_FLOAT:
|
|
|
|
|
case GLSL_TYPE_UINT:
|
|
|
|
|
case GLSL_TYPE_INT:
|
|
|
|
|
case GLSL_TYPE_BOOL:
|
|
|
|
|
for (unsigned int i = 0; i < type->vector_elements; i++) {
|
2010-10-25 12:52:29 -07:00
|
|
|
unsigned int param = c->prog_data.nr_params++;
|
|
|
|
|
|
|
|
|
|
assert(param < ARRAY_SIZE(c->prog_data.param));
|
|
|
|
|
|
|
|
|
|
switch (type->base_type) {
|
|
|
|
|
case GLSL_TYPE_FLOAT:
|
|
|
|
|
c->prog_data.param_convert[param] = PARAM_NO_CONVERT;
|
|
|
|
|
break;
|
|
|
|
|
case GLSL_TYPE_UINT:
|
|
|
|
|
c->prog_data.param_convert[param] = PARAM_CONVERT_F2U;
|
|
|
|
|
break;
|
|
|
|
|
case GLSL_TYPE_INT:
|
|
|
|
|
c->prog_data.param_convert[param] = PARAM_CONVERT_F2I;
|
|
|
|
|
break;
|
|
|
|
|
case GLSL_TYPE_BOOL:
|
|
|
|
|
c->prog_data.param_convert[param] = PARAM_CONVERT_F2B;
|
|
|
|
|
break;
|
2010-11-17 15:06:22 +08:00
|
|
|
default:
|
|
|
|
|
assert(!"not reached");
|
|
|
|
|
c->prog_data.param_convert[param] = PARAM_NO_CONVERT;
|
|
|
|
|
break;
|
2010-10-25 12:52:29 -07:00
|
|
|
}
|
2011-01-17 16:02:58 -08:00
|
|
|
this->param_index[param] = loc;
|
|
|
|
|
this->param_offset[param] = i;
|
2010-09-28 09:31:56 -07:00
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
case GLSL_TYPE_STRUCT:
|
|
|
|
|
for (unsigned int i = 0; i < type->length; i++) {
|
|
|
|
|
offset += setup_uniform_values(loc + offset,
|
|
|
|
|
type->fields.structure[i].type);
|
|
|
|
|
}
|
|
|
|
|
return offset;
|
|
|
|
|
|
|
|
|
|
case GLSL_TYPE_ARRAY:
|
|
|
|
|
for (unsigned int i = 0; i < type->length; i++) {
|
|
|
|
|
offset += setup_uniform_values(loc + offset, type->fields.array);
|
|
|
|
|
}
|
|
|
|
|
return offset;
|
|
|
|
|
|
|
|
|
|
case GLSL_TYPE_SAMPLER:
|
|
|
|
|
/* The sampler takes up a slot, but we don't use any values from it. */
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
assert(!"not reached");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-28 16:23:04 -07:00
|
|
|
|
|
|
|
|
/* Our support for builtin uniforms is even scarier than non-builtin.
|
|
|
|
|
* It sits on top of the PROG_STATE_VAR parameters that are
|
|
|
|
|
* automatically updated from GL context state.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::setup_builtin_uniform_values(ir_variable *ir)
|
|
|
|
|
{
|
2011-01-25 10:41:20 -08:00
|
|
|
const ir_state_slot *const slots = ir->state_slots;
|
|
|
|
|
assert(ir->state_slots != NULL);
|
2010-09-28 16:23:04 -07:00
|
|
|
|
2011-03-24 18:31:05 -07:00
|
|
|
for (unsigned int i = 0; i < ir->num_state_slots; i++) {
|
|
|
|
|
/* This state reference has already been setup by ir_to_mesa, but we'll
|
|
|
|
|
* get the same index back here.
|
|
|
|
|
*/
|
|
|
|
|
int index = _mesa_add_state_reference(this->fp->Base.Parameters,
|
|
|
|
|
(gl_state_index *)slots[i].tokens);
|
|
|
|
|
|
|
|
|
|
/* Add each of the unique swizzles of the element as a parameter.
|
|
|
|
|
* This'll end up matching the expected layout of the
|
|
|
|
|
* array/matrix/structure we're trying to fill in.
|
|
|
|
|
*/
|
|
|
|
|
int last_swiz = -1;
|
|
|
|
|
for (unsigned int j = 0; j < 4; j++) {
|
|
|
|
|
int swiz = GET_SWZ(slots[i].swizzle, j);
|
|
|
|
|
if (swiz == last_swiz)
|
|
|
|
|
break;
|
|
|
|
|
last_swiz = swiz;
|
|
|
|
|
|
|
|
|
|
c->prog_data.param_convert[c->prog_data.nr_params] =
|
|
|
|
|
PARAM_NO_CONVERT;
|
|
|
|
|
this->param_index[c->prog_data.nr_params] = index;
|
|
|
|
|
this->param_offset[c->prog_data.nr_params] = swiz;
|
|
|
|
|
c->prog_data.nr_params++;
|
2010-09-28 16:23:04 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-06 11:13:22 -07:00
|
|
|
fs_reg *
|
2010-09-28 13:29:45 -07:00
|
|
|
fs_visitor::emit_fragcoord_interpolation(ir_variable *ir)
|
|
|
|
|
{
|
|
|
|
|
fs_reg *reg = new(this->mem_ctx) fs_reg(this, ir->type);
|
|
|
|
|
fs_reg wpos = *reg;
|
|
|
|
|
fs_reg neg_y = this->pixel_y;
|
|
|
|
|
neg_y.negate = true;
|
2010-11-13 14:00:58 -08:00
|
|
|
bool flip = !ir->origin_upper_left ^ c->key.render_to_fbo;
|
2010-09-28 13:29:45 -07:00
|
|
|
|
|
|
|
|
/* gl_FragCoord.x */
|
|
|
|
|
if (ir->pixel_center_integer) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, wpos, this->pixel_x);
|
2010-09-28 13:29:45 -07:00
|
|
|
} else {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_ADD, wpos, this->pixel_x, fs_reg(0.5f));
|
2010-09-28 13:29:45 -07:00
|
|
|
}
|
|
|
|
|
wpos.reg_offset++;
|
|
|
|
|
|
|
|
|
|
/* gl_FragCoord.y */
|
2010-11-13 14:00:58 -08:00
|
|
|
if (!flip && ir->pixel_center_integer) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, wpos, this->pixel_y);
|
2010-09-28 13:29:45 -07:00
|
|
|
} else {
|
|
|
|
|
fs_reg pixel_y = this->pixel_y;
|
|
|
|
|
float offset = (ir->pixel_center_integer ? 0.0 : 0.5);
|
|
|
|
|
|
2010-11-13 14:00:58 -08:00
|
|
|
if (flip) {
|
2010-09-28 13:29:45 -07:00
|
|
|
pixel_y.negate = true;
|
|
|
|
|
offset += c->key.drawable_height - 1.0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_ADD, wpos, pixel_y, fs_reg(offset));
|
2010-09-28 13:29:45 -07:00
|
|
|
}
|
|
|
|
|
wpos.reg_offset++;
|
|
|
|
|
|
|
|
|
|
/* gl_FragCoord.z */
|
2010-12-13 13:37:54 -08:00
|
|
|
if (intel->gen >= 6) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, wpos,
|
|
|
|
|
fs_reg(brw_vec8_grf(c->source_depth_reg, 0)));
|
2010-12-13 13:37:54 -08:00
|
|
|
} else {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(FS_OPCODE_LINTERP, wpos, this->delta_x, this->delta_y,
|
|
|
|
|
interp_reg(FRAG_ATTRIB_WPOS, 2));
|
2010-12-13 13:37:54 -08:00
|
|
|
}
|
2010-09-28 13:29:45 -07:00
|
|
|
wpos.reg_offset++;
|
|
|
|
|
|
|
|
|
|
/* gl_FragCoord.w: Already set up in emit_interpolation */
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, wpos, this->wpos_w);
|
2010-09-28 13:29:45 -07:00
|
|
|
|
2010-10-06 11:13:22 -07:00
|
|
|
return reg;
|
2010-09-28 13:29:45 -07:00
|
|
|
}
|
|
|
|
|
|
2010-10-06 11:13:22 -07:00
|
|
|
fs_reg *
|
2010-09-03 13:22:38 -07:00
|
|
|
fs_visitor::emit_general_interpolation(ir_variable *ir)
|
|
|
|
|
{
|
|
|
|
|
fs_reg *reg = new(this->mem_ctx) fs_reg(this, ir->type);
|
|
|
|
|
/* Interpolation is always in floating point regs. */
|
|
|
|
|
reg->type = BRW_REGISTER_TYPE_F;
|
|
|
|
|
fs_reg attr = *reg;
|
|
|
|
|
|
|
|
|
|
unsigned int array_elements;
|
|
|
|
|
const glsl_type *type;
|
|
|
|
|
|
|
|
|
|
if (ir->type->is_array()) {
|
|
|
|
|
array_elements = ir->type->length;
|
|
|
|
|
if (array_elements == 0) {
|
2011-03-13 13:43:05 -07:00
|
|
|
fail("dereferenced array '%s' has length 0\n", ir->name);
|
2010-09-03 13:22:38 -07:00
|
|
|
}
|
|
|
|
|
type = ir->type->fields.array;
|
|
|
|
|
} else {
|
|
|
|
|
array_elements = 1;
|
|
|
|
|
type = ir->type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int location = ir->location;
|
|
|
|
|
for (unsigned int i = 0; i < array_elements; i++) {
|
|
|
|
|
for (unsigned int j = 0; j < type->matrix_columns; j++) {
|
2010-10-01 12:15:48 -07:00
|
|
|
if (urb_setup[location] == -1) {
|
2010-09-28 14:53:36 -07:00
|
|
|
/* If there's no incoming setup data for this slot, don't
|
2010-10-01 12:15:48 -07:00
|
|
|
* emit interpolation for it.
|
2010-09-28 14:53:36 -07:00
|
|
|
*/
|
|
|
|
|
attr.reg_offset += type->vector_elements;
|
2010-10-01 11:44:27 -07:00
|
|
|
location++;
|
2010-09-28 14:53:36 -07:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-26 22:04:23 -07:00
|
|
|
bool is_gl_Color =
|
|
|
|
|
location == FRAG_ATTRIB_COL0 || location == FRAG_ATTRIB_COL1;
|
|
|
|
|
|
|
|
|
|
if (c->key.flat_shade && is_gl_Color) {
|
2011-01-12 12:52:16 -08:00
|
|
|
/* Constant interpolation (flat shading) case. The SF has
|
|
|
|
|
* handed us defined values in only the constant offset
|
|
|
|
|
* field of the setup reg.
|
|
|
|
|
*/
|
2011-03-29 15:39:01 +01:00
|
|
|
for (unsigned int k = 0; k < type->vector_elements; k++) {
|
|
|
|
|
struct brw_reg interp = interp_reg(location, k);
|
2011-01-12 12:52:16 -08:00
|
|
|
interp = suboffset(interp, 3);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(FS_OPCODE_CINTERP, attr, fs_reg(interp));
|
2011-01-12 12:52:16 -08:00
|
|
|
attr.reg_offset++;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
/* Perspective interpolation case. */
|
2011-03-29 15:39:01 +01:00
|
|
|
for (unsigned int k = 0; k < type->vector_elements; k++) {
|
|
|
|
|
struct brw_reg interp = interp_reg(location, k);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(FS_OPCODE_LINTERP, attr,
|
|
|
|
|
this->delta_x, this->delta_y, fs_reg(interp));
|
2010-10-06 11:00:31 -07:00
|
|
|
attr.reg_offset++;
|
|
|
|
|
}
|
2011-01-12 12:52:16 -08:00
|
|
|
|
2011-03-26 22:04:23 -07:00
|
|
|
if (intel->gen < 6 && !(is_gl_Color && c->key.linear_color)) {
|
2011-01-12 12:52:16 -08:00
|
|
|
attr.reg_offset -= type->vector_elements;
|
2011-03-29 15:39:01 +01:00
|
|
|
for (unsigned int k = 0; k < type->vector_elements; k++) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MUL, attr, attr, this->pixel_w);
|
2011-01-12 12:52:16 -08:00
|
|
|
attr.reg_offset++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-03 13:22:38 -07:00
|
|
|
}
|
|
|
|
|
location++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-06 11:13:22 -07:00
|
|
|
return reg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fs_reg *
|
|
|
|
|
fs_visitor::emit_frontfacing_interpolation(ir_variable *ir)
|
|
|
|
|
{
|
|
|
|
|
fs_reg *reg = new(this->mem_ctx) fs_reg(this, ir->type);
|
2010-10-06 11:19:48 -07:00
|
|
|
|
|
|
|
|
/* The frontfacing comes in as a bit in the thread payload. */
|
|
|
|
|
if (intel->gen >= 6) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_ASR, *reg,
|
|
|
|
|
fs_reg(retype(brw_vec1_grf(0, 0), BRW_REGISTER_TYPE_D)),
|
|
|
|
|
fs_reg(15));
|
|
|
|
|
emit(BRW_OPCODE_NOT, *reg, *reg);
|
|
|
|
|
emit(BRW_OPCODE_AND, *reg, *reg, fs_reg(1));
|
2010-10-06 11:19:48 -07:00
|
|
|
} else {
|
|
|
|
|
struct brw_reg r1_6ud = retype(brw_vec1_grf(1, 6), BRW_REGISTER_TYPE_UD);
|
|
|
|
|
/* bit 31 is "primitive is back face", so checking < (1 << 31) gives
|
|
|
|
|
* us front face
|
|
|
|
|
*/
|
2011-03-13 00:23:40 -08:00
|
|
|
fs_inst *inst = emit(BRW_OPCODE_CMP, *reg,
|
|
|
|
|
fs_reg(r1_6ud),
|
|
|
|
|
fs_reg(1u << 31));
|
2010-10-06 11:19:48 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_L;
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_AND, *reg, *reg, fs_reg(1u));
|
2010-10-06 11:19:48 -07:00
|
|
|
}
|
2010-10-06 11:13:22 -07:00
|
|
|
|
|
|
|
|
return reg;
|
2010-09-03 13:22:38 -07:00
|
|
|
}
|
|
|
|
|
|
2010-10-08 14:35:34 -07:00
|
|
|
fs_inst *
|
|
|
|
|
fs_visitor::emit_math(fs_opcodes opcode, fs_reg dst, fs_reg src)
|
|
|
|
|
{
|
|
|
|
|
switch (opcode) {
|
|
|
|
|
case FS_OPCODE_RCP:
|
|
|
|
|
case FS_OPCODE_RSQ:
|
|
|
|
|
case FS_OPCODE_SQRT:
|
|
|
|
|
case FS_OPCODE_EXP2:
|
|
|
|
|
case FS_OPCODE_LOG2:
|
|
|
|
|
case FS_OPCODE_SIN:
|
|
|
|
|
case FS_OPCODE_COS:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
assert(!"not reached: bad math opcode");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2010-10-11 13:42:11 -07:00
|
|
|
|
|
|
|
|
/* Can't do hstride == 0 args to gen6 math, so expand it out. We
|
|
|
|
|
* might be able to do better by doing execsize = 1 math and then
|
|
|
|
|
* expanding that result out, but we would need to be careful with
|
|
|
|
|
* masking.
|
2010-12-07 14:50:50 -08:00
|
|
|
*
|
|
|
|
|
* The hardware ignores source modifiers (negate and abs) on math
|
|
|
|
|
* instructions, so we also move to a temp to set those up.
|
2010-10-11 13:42:11 -07:00
|
|
|
*/
|
2010-12-07 14:50:50 -08:00
|
|
|
if (intel->gen >= 6 && (src.file == UNIFORM ||
|
|
|
|
|
src.abs ||
|
|
|
|
|
src.negate)) {
|
2010-10-11 13:42:11 -07:00
|
|
|
fs_reg expanded = fs_reg(this, glsl_type::float_type);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, expanded, src);
|
2010-10-11 13:42:11 -07:00
|
|
|
src = expanded;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
fs_inst *inst = emit(opcode, dst, src);
|
2010-10-08 14:35:34 -07:00
|
|
|
|
2010-10-11 13:19:47 -07:00
|
|
|
if (intel->gen < 6) {
|
|
|
|
|
inst->base_mrf = 2;
|
|
|
|
|
inst->mlen = 1;
|
|
|
|
|
}
|
2010-10-08 14:35:34 -07:00
|
|
|
|
|
|
|
|
return inst;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fs_inst *
|
|
|
|
|
fs_visitor::emit_math(fs_opcodes opcode, fs_reg dst, fs_reg src0, fs_reg src1)
|
|
|
|
|
{
|
2010-10-11 13:19:47 -07:00
|
|
|
int base_mrf = 2;
|
|
|
|
|
fs_inst *inst;
|
2010-10-08 14:35:34 -07:00
|
|
|
|
2010-10-11 13:19:47 -07:00
|
|
|
assert(opcode == FS_OPCODE_POW);
|
2010-10-08 14:35:34 -07:00
|
|
|
|
2010-10-11 13:19:47 -07:00
|
|
|
if (intel->gen >= 6) {
|
2011-02-19 01:03:08 -08:00
|
|
|
/* Can't do hstride == 0 args to gen6 math, so expand it out.
|
|
|
|
|
*
|
|
|
|
|
* The hardware ignores source modifiers (negate and abs) on math
|
|
|
|
|
* instructions, so we also move to a temp to set those up.
|
|
|
|
|
*/
|
|
|
|
|
if (src0.file == UNIFORM || src0.abs || src0.negate) {
|
2010-10-11 13:42:11 -07:00
|
|
|
fs_reg expanded = fs_reg(this, glsl_type::float_type);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, expanded, src0);
|
2010-10-11 13:42:11 -07:00
|
|
|
src0 = expanded;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-19 01:03:08 -08:00
|
|
|
if (src1.file == UNIFORM || src1.abs || src1.negate) {
|
2010-10-11 13:42:11 -07:00
|
|
|
fs_reg expanded = fs_reg(this, glsl_type::float_type);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, expanded, src1);
|
2010-10-11 13:42:11 -07:00
|
|
|
src1 = expanded;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(opcode, dst, src0, src1);
|
2010-10-11 13:19:47 -07:00
|
|
|
} else {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + 1), src1);
|
|
|
|
|
inst = emit(opcode, dst, src0, reg_null_f);
|
2010-10-08 14:35:34 -07:00
|
|
|
|
2010-10-11 13:19:47 -07:00
|
|
|
inst->base_mrf = base_mrf;
|
|
|
|
|
inst->mlen = 2;
|
|
|
|
|
}
|
2010-10-08 14:35:34 -07:00
|
|
|
return inst;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_variable *ir)
|
|
|
|
|
{
|
2010-08-16 21:53:02 -07:00
|
|
|
fs_reg *reg = NULL;
|
2010-08-15 18:58:58 -07:00
|
|
|
|
2010-09-28 13:00:46 -07:00
|
|
|
if (variable_storage(ir))
|
|
|
|
|
return;
|
|
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
if (strcmp(ir->name, "gl_FragColor") == 0) {
|
|
|
|
|
this->frag_color = ir;
|
2010-08-16 21:53:02 -07:00
|
|
|
} else if (strcmp(ir->name, "gl_FragData") == 0) {
|
|
|
|
|
this->frag_data = ir;
|
|
|
|
|
} else if (strcmp(ir->name, "gl_FragDepth") == 0) {
|
|
|
|
|
this->frag_depth = ir;
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-16 21:53:02 -07:00
|
|
|
if (ir->mode == ir_var_in) {
|
2010-09-28 13:29:45 -07:00
|
|
|
if (!strcmp(ir->name, "gl_FragCoord")) {
|
2010-10-06 11:13:22 -07:00
|
|
|
reg = emit_fragcoord_interpolation(ir);
|
2010-09-28 13:29:45 -07:00
|
|
|
} else if (!strcmp(ir->name, "gl_FrontFacing")) {
|
2010-10-06 11:13:22 -07:00
|
|
|
reg = emit_frontfacing_interpolation(ir);
|
2010-09-28 09:47:37 -07:00
|
|
|
} else {
|
2010-10-06 11:13:22 -07:00
|
|
|
reg = emit_general_interpolation(ir);
|
2010-09-28 09:47:37 -07:00
|
|
|
}
|
2010-10-06 11:13:22 -07:00
|
|
|
assert(reg);
|
|
|
|
|
hash_table_insert(this->variable_ht, reg, ir);
|
|
|
|
|
return;
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-26 16:39:41 -07:00
|
|
|
if (ir->mode == ir_var_uniform) {
|
|
|
|
|
int param_index = c->prog_data.nr_params;
|
|
|
|
|
|
2010-09-28 16:23:04 -07:00
|
|
|
if (!strncmp(ir->name, "gl_", 3)) {
|
|
|
|
|
setup_builtin_uniform_values(ir);
|
|
|
|
|
} else {
|
|
|
|
|
setup_uniform_values(ir->location, ir->type);
|
|
|
|
|
}
|
2010-08-26 16:39:41 -07:00
|
|
|
|
|
|
|
|
reg = new(this->mem_ctx) fs_reg(UNIFORM, param_index);
|
2010-10-25 12:52:29 -07:00
|
|
|
reg->type = brw_type_for_base_type(ir->type);
|
2010-08-26 16:39:41 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-16 21:53:02 -07:00
|
|
|
if (!reg)
|
|
|
|
|
reg = new(this->mem_ctx) fs_reg(this, ir->type);
|
2010-08-15 18:58:58 -07:00
|
|
|
|
|
|
|
|
hash_table_insert(this->variable_ht, reg, ir);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_dereference_variable *ir)
|
|
|
|
|
{
|
|
|
|
|
fs_reg *reg = variable_storage(ir->var);
|
|
|
|
|
this->result = *reg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_dereference_record *ir)
|
|
|
|
|
{
|
2010-09-27 22:26:22 -07:00
|
|
|
const glsl_type *struct_type = ir->record->type;
|
|
|
|
|
|
|
|
|
|
ir->record->accept(this);
|
|
|
|
|
|
|
|
|
|
unsigned int offset = 0;
|
|
|
|
|
for (unsigned int i = 0; i < struct_type->length; i++) {
|
|
|
|
|
if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0)
|
|
|
|
|
break;
|
|
|
|
|
offset += type_size(struct_type->fields.structure[i].type);
|
|
|
|
|
}
|
|
|
|
|
this->result.reg_offset += offset;
|
|
|
|
|
this->result.type = brw_type_for_base_type(ir->type);
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_dereference_array *ir)
|
|
|
|
|
{
|
2010-08-27 10:44:04 -07:00
|
|
|
ir_constant *index;
|
|
|
|
|
int element_size;
|
|
|
|
|
|
|
|
|
|
ir->array->accept(this);
|
|
|
|
|
index = ir->array_index->as_constant();
|
|
|
|
|
|
2010-09-28 15:25:40 -07:00
|
|
|
element_size = type_size(ir->type);
|
|
|
|
|
this->result.type = brw_type_for_base_type(ir->type);
|
2010-08-27 10:44:04 -07:00
|
|
|
|
|
|
|
|
if (index) {
|
|
|
|
|
assert(this->result.file == UNIFORM ||
|
|
|
|
|
(this->result.file == GRF &&
|
|
|
|
|
this->result.reg != 0));
|
|
|
|
|
this->result.reg_offset += index->value.i[0] * element_size;
|
|
|
|
|
} else {
|
2010-09-28 15:25:40 -07:00
|
|
|
assert(!"FINISHME: non-constant array element");
|
2010-08-27 10:44:04 -07:00
|
|
|
}
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
2010-11-19 10:36:06 +08:00
|
|
|
/* Instruction selection: Produce a MOV.sat instead of
|
|
|
|
|
* MIN(MAX(val, 0), 1) when possible.
|
|
|
|
|
*/
|
|
|
|
|
bool
|
|
|
|
|
fs_visitor::try_emit_saturate(ir_expression *ir)
|
|
|
|
|
{
|
|
|
|
|
ir_rvalue *sat_val = ir->as_rvalue_to_saturate();
|
|
|
|
|
|
|
|
|
|
if (!sat_val)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
sat_val->accept(this);
|
|
|
|
|
fs_reg src = this->result;
|
|
|
|
|
|
|
|
|
|
this->result = fs_reg(this, ir->type);
|
2011-03-13 00:23:40 -08:00
|
|
|
fs_inst *inst = emit(BRW_OPCODE_MOV, this->result, src);
|
2010-11-19 10:36:06 +08:00
|
|
|
inst->saturate = true;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-27 21:08:59 -08:00
|
|
|
static uint32_t
|
|
|
|
|
brw_conditional_for_comparison(unsigned int op)
|
|
|
|
|
{
|
|
|
|
|
switch (op) {
|
|
|
|
|
case ir_binop_less:
|
|
|
|
|
return BRW_CONDITIONAL_L;
|
|
|
|
|
case ir_binop_greater:
|
|
|
|
|
return BRW_CONDITIONAL_G;
|
|
|
|
|
case ir_binop_lequal:
|
|
|
|
|
return BRW_CONDITIONAL_LE;
|
|
|
|
|
case ir_binop_gequal:
|
|
|
|
|
return BRW_CONDITIONAL_GE;
|
|
|
|
|
case ir_binop_equal:
|
|
|
|
|
case ir_binop_all_equal: /* same as equal for scalars */
|
|
|
|
|
return BRW_CONDITIONAL_Z;
|
|
|
|
|
case ir_binop_nequal:
|
|
|
|
|
case ir_binop_any_nequal: /* same as nequal for scalars */
|
|
|
|
|
return BRW_CONDITIONAL_NZ;
|
|
|
|
|
default:
|
|
|
|
|
assert(!"not reached: bad operation for comparison");
|
|
|
|
|
return BRW_CONDITIONAL_NZ;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_expression *ir)
|
|
|
|
|
{
|
|
|
|
|
unsigned int operand;
|
|
|
|
|
fs_reg op[2], temp;
|
|
|
|
|
fs_inst *inst;
|
|
|
|
|
|
2010-11-10 16:33:10 -08:00
|
|
|
assert(ir->get_num_operands() <= 2);
|
2010-11-19 10:36:06 +08:00
|
|
|
|
|
|
|
|
if (try_emit_saturate(ir))
|
|
|
|
|
return;
|
|
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
for (operand = 0; operand < ir->get_num_operands(); operand++) {
|
|
|
|
|
ir->operands[operand]->accept(this);
|
|
|
|
|
if (this->result.file == BAD_FILE) {
|
|
|
|
|
ir_print_visitor v;
|
2011-03-13 13:43:05 -07:00
|
|
|
fail("Failed to get tree for expression operand:\n");
|
2010-08-15 18:58:58 -07:00
|
|
|
ir->operands[operand]->accept(&v);
|
|
|
|
|
}
|
|
|
|
|
op[operand] = this->result;
|
|
|
|
|
|
|
|
|
|
/* Matrix expression operands should have been broken down to vector
|
|
|
|
|
* operations already.
|
|
|
|
|
*/
|
|
|
|
|
assert(!ir->operands[operand]->type->is_matrix());
|
|
|
|
|
/* And then those vector operands should have been broken down to scalar.
|
|
|
|
|
*/
|
|
|
|
|
assert(!ir->operands[operand]->type->is_vector());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Storage for our result. If our result goes into an assignment, it will
|
|
|
|
|
* just get copy-propagated out, so no worries.
|
|
|
|
|
*/
|
|
|
|
|
this->result = fs_reg(this, ir->type);
|
|
|
|
|
|
|
|
|
|
switch (ir->operation) {
|
|
|
|
|
case ir_unop_logic_not:
|
2010-10-14 11:27:17 -07:00
|
|
|
/* Note that BRW_OPCODE_NOT is not appropriate here, since it is
|
|
|
|
|
* ones complement of the whole register, not just bit 0.
|
|
|
|
|
*/
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_XOR, this->result, op[0], fs_reg(1));
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_neg:
|
2010-09-27 21:15:28 -07:00
|
|
|
op[0].negate = !op[0].negate;
|
2010-08-27 13:19:28 -07:00
|
|
|
this->result = op[0];
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_abs:
|
|
|
|
|
op[0].abs = true;
|
2011-01-12 09:37:07 -08:00
|
|
|
op[0].negate = false;
|
2010-08-27 13:19:28 -07:00
|
|
|
this->result = op[0];
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_sign:
|
|
|
|
|
temp = fs_reg(this, ir->type);
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, this->result, fs_reg(0.0f));
|
2010-08-28 22:42:01 -07:00
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_CMP, reg_null_f, op[0], fs_reg(0.0f));
|
2010-08-15 18:58:58 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_G;
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_MOV, this->result, fs_reg(1.0f));
|
2010-08-28 22:42:01 -07:00
|
|
|
inst->predicated = true;
|
2010-08-15 18:58:58 -07:00
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_CMP, reg_null_f, op[0], fs_reg(0.0f));
|
2010-08-15 18:58:58 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_L;
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_MOV, this->result, fs_reg(-1.0f));
|
2010-08-28 22:42:01 -07:00
|
|
|
inst->predicated = true;
|
2010-08-15 18:58:58 -07:00
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case ir_unop_rcp:
|
2010-10-08 14:35:34 -07:00
|
|
|
emit_math(FS_OPCODE_RCP, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_unop_exp2:
|
2010-10-08 14:35:34 -07:00
|
|
|
emit_math(FS_OPCODE_EXP2, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_log2:
|
2010-10-08 14:35:34 -07:00
|
|
|
emit_math(FS_OPCODE_LOG2, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_exp:
|
|
|
|
|
case ir_unop_log:
|
|
|
|
|
assert(!"not reached: should be handled by ir_explog_to_explog2");
|
|
|
|
|
break;
|
|
|
|
|
case ir_unop_sin:
|
2010-11-18 11:05:32 -08:00
|
|
|
case ir_unop_sin_reduced:
|
2010-10-08 14:35:34 -07:00
|
|
|
emit_math(FS_OPCODE_SIN, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_cos:
|
2010-11-18 11:05:32 -08:00
|
|
|
case ir_unop_cos_reduced:
|
2010-10-08 14:35:34 -07:00
|
|
|
emit_math(FS_OPCODE_COS, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_unop_dFdx:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(FS_OPCODE_DDX, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_dFdy:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(FS_OPCODE_DDY, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_binop_add:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_ADD, this->result, op[0], op[1]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
case ir_binop_sub:
|
|
|
|
|
assert(!"not reached: should be handled by ir_sub_to_add_neg");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_binop_mul:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MUL, this->result, op[0], op[1]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
case ir_binop_div:
|
|
|
|
|
assert(!"not reached: should be handled by ir_div_to_mul_rcp");
|
2010-08-16 21:53:02 -07:00
|
|
|
break;
|
2010-08-15 18:58:58 -07:00
|
|
|
case ir_binop_mod:
|
|
|
|
|
assert(!"ir_binop_mod should have been converted to b * fract(a/b)");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_binop_less:
|
|
|
|
|
case ir_binop_greater:
|
|
|
|
|
case ir_binop_lequal:
|
|
|
|
|
case ir_binop_gequal:
|
|
|
|
|
case ir_binop_equal:
|
2010-12-27 21:08:59 -08:00
|
|
|
case ir_binop_all_equal:
|
2010-08-15 18:58:58 -07:00
|
|
|
case ir_binop_nequal:
|
2010-12-27 21:08:59 -08:00
|
|
|
case ir_binop_any_nequal:
|
2010-12-28 13:55:14 -08:00
|
|
|
temp = this->result;
|
|
|
|
|
/* original gen4 does implicit conversion before comparison. */
|
|
|
|
|
if (intel->gen < 5)
|
|
|
|
|
temp.type = op[0].type;
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_CMP, temp, op[0], op[1]);
|
2010-12-27 21:08:59 -08:00
|
|
|
inst->conditional_mod = brw_conditional_for_comparison(ir->operation);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_AND, this->result, this->result, fs_reg(0x1));
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_binop_logic_xor:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_XOR, this->result, op[0], op[1]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_binop_logic_or:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_OR, this->result, op[0], op[1]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_binop_logic_and:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_AND, this->result, op[0], op[1]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_binop_dot:
|
|
|
|
|
case ir_unop_any:
|
2010-09-22 14:58:29 -07:00
|
|
|
assert(!"not reached: should be handled by brw_fs_channel_expressions");
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
|
2010-09-09 19:49:58 -07:00
|
|
|
case ir_unop_noise:
|
|
|
|
|
assert(!"not reached: should be handled by lower_noise");
|
|
|
|
|
break;
|
|
|
|
|
|
2010-12-01 11:46:46 -08:00
|
|
|
case ir_quadop_vector:
|
|
|
|
|
assert(!"not reached: should be handled by lower_quadop_vector");
|
|
|
|
|
break;
|
|
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
case ir_unop_sqrt:
|
2010-10-08 14:35:34 -07:00
|
|
|
emit_math(FS_OPCODE_SQRT, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_unop_rsq:
|
2010-10-08 14:35:34 -07:00
|
|
|
emit_math(FS_OPCODE_RSQ, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_unop_i2f:
|
|
|
|
|
case ir_unop_b2f:
|
|
|
|
|
case ir_unop_b2i:
|
|
|
|
|
case ir_unop_f2i:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_f2b:
|
|
|
|
|
case ir_unop_i2b:
|
2010-12-28 13:55:14 -08:00
|
|
|
temp = this->result;
|
|
|
|
|
/* original gen4 does implicit conversion before comparison. */
|
|
|
|
|
if (intel->gen < 5)
|
|
|
|
|
temp.type = op[0].type;
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_CMP, temp, op[0], fs_reg(0.0f));
|
2010-08-15 18:58:58 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_AND, this->result, this->result, fs_reg(1));
|
2010-10-12 11:36:56 -07:00
|
|
|
break;
|
2010-08-15 18:58:58 -07:00
|
|
|
|
|
|
|
|
case ir_unop_trunc:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_RNDZ, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_ceil:
|
2010-10-13 16:35:34 -07:00
|
|
|
op[0].negate = !op[0].negate;
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_RNDD, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
this->result.negate = true;
|
|
|
|
|
break;
|
|
|
|
|
case ir_unop_floor:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_RNDD, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_fract:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_FRC, this->result, op[0]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
2010-10-14 14:31:54 -07:00
|
|
|
case ir_unop_round_even:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_RNDE, this->result, op[0]);
|
2010-10-14 14:31:54 -07:00
|
|
|
break;
|
2010-08-15 18:58:58 -07:00
|
|
|
|
|
|
|
|
case ir_binop_min:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_CMP, this->result, op[0], op[1]);
|
2010-08-15 18:58:58 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_L;
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_SEL, this->result, op[0], op[1]);
|
2010-08-15 18:58:58 -07:00
|
|
|
inst->predicated = true;
|
|
|
|
|
break;
|
|
|
|
|
case ir_binop_max:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_CMP, this->result, op[0], op[1]);
|
2010-08-15 18:58:58 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_G;
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_SEL, this->result, op[0], op[1]);
|
2010-08-15 18:58:58 -07:00
|
|
|
inst->predicated = true;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_binop_pow:
|
2010-10-08 14:35:34 -07:00
|
|
|
emit_math(FS_OPCODE_POW, this->result, op[0], op[1]);
|
2010-08-15 18:58:58 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_unop_bit_not:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_NOT, this->result, op[0]);
|
2010-10-18 17:28:56 -07:00
|
|
|
break;
|
2010-08-15 18:58:58 -07:00
|
|
|
case ir_binop_bit_and:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_AND, this->result, op[0], op[1]);
|
2010-10-18 17:28:56 -07:00
|
|
|
break;
|
2010-08-15 18:58:58 -07:00
|
|
|
case ir_binop_bit_xor:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_XOR, this->result, op[0], op[1]);
|
2010-10-18 17:28:56 -07:00
|
|
|
break;
|
2010-08-15 18:58:58 -07:00
|
|
|
case ir_binop_bit_or:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_OR, this->result, op[0], op[1]);
|
2010-10-18 17:28:56 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_unop_u2f:
|
|
|
|
|
case ir_binop_lshift:
|
|
|
|
|
case ir_binop_rshift:
|
2010-08-15 18:58:58 -07:00
|
|
|
assert(!"GLSL 1.30 features unsupported");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-30 11:46:24 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::emit_assignment_writes(fs_reg &l, fs_reg &r,
|
|
|
|
|
const glsl_type *type, bool predicated)
|
|
|
|
|
{
|
|
|
|
|
switch (type->base_type) {
|
|
|
|
|
case GLSL_TYPE_FLOAT:
|
|
|
|
|
case GLSL_TYPE_UINT:
|
|
|
|
|
case GLSL_TYPE_INT:
|
|
|
|
|
case GLSL_TYPE_BOOL:
|
|
|
|
|
for (unsigned int i = 0; i < type->components(); i++) {
|
|
|
|
|
l.type = brw_type_for_base_type(type);
|
|
|
|
|
r.type = brw_type_for_base_type(type);
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
fs_inst *inst = emit(BRW_OPCODE_MOV, l, r);
|
2010-09-30 11:46:24 -07:00
|
|
|
inst->predicated = predicated;
|
|
|
|
|
|
|
|
|
|
l.reg_offset++;
|
|
|
|
|
r.reg_offset++;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case GLSL_TYPE_ARRAY:
|
|
|
|
|
for (unsigned int i = 0; i < type->length; i++) {
|
|
|
|
|
emit_assignment_writes(l, r, type->fields.array, predicated);
|
|
|
|
|
}
|
2010-10-18 12:21:20 -07:00
|
|
|
break;
|
2010-09-30 11:46:24 -07:00
|
|
|
|
|
|
|
|
case GLSL_TYPE_STRUCT:
|
|
|
|
|
for (unsigned int i = 0; i < type->length; i++) {
|
|
|
|
|
emit_assignment_writes(l, r, type->fields.structure[i].type,
|
|
|
|
|
predicated);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GLSL_TYPE_SAMPLER:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
assert(!"not reached");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_assignment *ir)
|
|
|
|
|
{
|
|
|
|
|
struct fs_reg l, r;
|
|
|
|
|
fs_inst *inst;
|
|
|
|
|
|
|
|
|
|
/* FINISHME: arrays on the lhs */
|
|
|
|
|
ir->lhs->accept(this);
|
|
|
|
|
l = this->result;
|
|
|
|
|
|
|
|
|
|
ir->rhs->accept(this);
|
|
|
|
|
r = this->result;
|
|
|
|
|
|
|
|
|
|
assert(l.file != BAD_FILE);
|
|
|
|
|
assert(r.file != BAD_FILE);
|
|
|
|
|
|
|
|
|
|
if (ir->condition) {
|
2010-10-14 11:11:29 -07:00
|
|
|
emit_bool_to_cond_code(ir->condition);
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
2010-09-30 11:46:24 -07:00
|
|
|
if (ir->lhs->type->is_scalar() ||
|
|
|
|
|
ir->lhs->type->is_vector()) {
|
|
|
|
|
for (int i = 0; i < ir->lhs->type->vector_elements; i++) {
|
|
|
|
|
if (ir->write_mask & (1 << i)) {
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_MOV, l, r);
|
2010-09-30 11:46:24 -07:00
|
|
|
if (ir->condition)
|
|
|
|
|
inst->predicated = true;
|
|
|
|
|
r.reg_offset++;
|
|
|
|
|
}
|
|
|
|
|
l.reg_offset++;
|
2010-08-27 11:05:47 -07:00
|
|
|
}
|
2010-09-30 11:46:24 -07:00
|
|
|
} else {
|
|
|
|
|
emit_assignment_writes(l, r, ir->lhs->type, ir->condition != NULL);
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-30 19:18:25 -07:00
|
|
|
fs_inst *
|
2010-10-01 13:37:40 -07:00
|
|
|
fs_visitor::emit_texture_gen4(ir_texture *ir, fs_reg dst, fs_reg coordinate)
|
2010-08-15 18:58:58 -07:00
|
|
|
{
|
2010-10-01 13:37:40 -07:00
|
|
|
int mlen;
|
2010-10-08 15:11:42 -07:00
|
|
|
int base_mrf = 1;
|
2010-10-01 13:37:40 -07:00
|
|
|
bool simd16 = false;
|
|
|
|
|
fs_reg orig_dst;
|
2010-08-28 14:43:50 -07:00
|
|
|
|
2010-10-08 15:11:42 -07:00
|
|
|
/* g0 header. */
|
|
|
|
|
mlen = 1;
|
|
|
|
|
|
2010-09-30 19:18:25 -07:00
|
|
|
if (ir->shadow_comparitor) {
|
2010-10-08 15:11:42 -07:00
|
|
|
for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen + i), coordinate);
|
2010-10-01 13:37:40 -07:00
|
|
|
coordinate.reg_offset++;
|
|
|
|
|
}
|
|
|
|
|
/* gen4's SIMD8 sampler always has the slots for u,v,r present. */
|
2010-10-08 15:11:42 -07:00
|
|
|
mlen += 3;
|
2010-10-01 13:37:40 -07:00
|
|
|
|
2010-09-30 19:18:25 -07:00
|
|
|
if (ir->op == ir_tex) {
|
|
|
|
|
/* There's no plain shadow compare message, so we use shadow
|
|
|
|
|
* compare with a bias of 0.0.
|
|
|
|
|
*/
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen), fs_reg(0.0f));
|
2010-09-30 19:18:25 -07:00
|
|
|
mlen++;
|
|
|
|
|
} else if (ir->op == ir_txb) {
|
|
|
|
|
ir->lod_info.bias->accept(this);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen), this->result);
|
2010-09-30 19:18:25 -07:00
|
|
|
mlen++;
|
|
|
|
|
} else {
|
|
|
|
|
assert(ir->op == ir_txl);
|
|
|
|
|
ir->lod_info.lod->accept(this);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen), this->result);
|
2010-09-30 19:18:25 -07:00
|
|
|
mlen++;
|
|
|
|
|
}
|
2010-08-28 14:43:50 -07:00
|
|
|
|
2010-09-30 19:18:25 -07:00
|
|
|
ir->shadow_comparitor->accept(this);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen), this->result);
|
2010-09-30 19:18:25 -07:00
|
|
|
mlen++;
|
2010-10-01 13:37:40 -07:00
|
|
|
} else if (ir->op == ir_tex) {
|
2010-10-08 15:11:42 -07:00
|
|
|
for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen + i), coordinate);
|
2010-10-01 13:37:40 -07:00
|
|
|
coordinate.reg_offset++;
|
|
|
|
|
}
|
|
|
|
|
/* gen4's SIMD8 sampler always has the slots for u,v,r present. */
|
2010-10-08 15:11:42 -07:00
|
|
|
mlen += 3;
|
2011-02-24 17:49:07 -08:00
|
|
|
} else if (ir->op == ir_txd) {
|
|
|
|
|
assert(!"TXD isn't supported on gen4 yet.");
|
2010-09-30 19:18:25 -07:00
|
|
|
} else {
|
2010-10-01 13:37:40 -07:00
|
|
|
/* Oh joy. gen4 doesn't have SIMD8 non-shadow-compare bias/lod
|
2010-09-30 19:18:25 -07:00
|
|
|
* instructions. We'll need to do SIMD16 here.
|
|
|
|
|
*/
|
2010-10-01 13:37:40 -07:00
|
|
|
assert(ir->op == ir_txb || ir->op == ir_txl);
|
|
|
|
|
|
2010-10-14 17:01:06 -07:00
|
|
|
for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen + i * 2), coordinate);
|
2010-10-01 13:37:40 -07:00
|
|
|
coordinate.reg_offset++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* lod/bias appears after u/v/r. */
|
2010-10-08 15:11:42 -07:00
|
|
|
mlen += 6;
|
2010-10-01 13:37:40 -07:00
|
|
|
|
|
|
|
|
if (ir->op == ir_txb) {
|
|
|
|
|
ir->lod_info.bias->accept(this);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen), this->result);
|
2010-10-01 13:37:40 -07:00
|
|
|
mlen++;
|
|
|
|
|
} else {
|
|
|
|
|
ir->lod_info.lod->accept(this);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen), this->result);
|
2010-10-01 13:37:40 -07:00
|
|
|
mlen++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The unused upper half. */
|
|
|
|
|
mlen++;
|
|
|
|
|
|
|
|
|
|
/* Now, since we're doing simd16, the return is 2 interleaved
|
|
|
|
|
* vec4s where the odd-indexed ones are junk. We'll need to move
|
|
|
|
|
* this weirdness around to the expected layout.
|
|
|
|
|
*/
|
|
|
|
|
simd16 = true;
|
|
|
|
|
orig_dst = dst;
|
|
|
|
|
dst = fs_reg(this, glsl_type::get_array_instance(glsl_type::vec4_type,
|
|
|
|
|
2));
|
|
|
|
|
dst.type = BRW_REGISTER_TYPE_F;
|
2010-09-30 19:18:25 -07:00
|
|
|
}
|
2010-08-28 14:43:50 -07:00
|
|
|
|
2010-09-30 19:18:25 -07:00
|
|
|
fs_inst *inst = NULL;
|
|
|
|
|
switch (ir->op) {
|
|
|
|
|
case ir_tex:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(FS_OPCODE_TEX, dst);
|
2010-09-30 19:18:25 -07:00
|
|
|
break;
|
|
|
|
|
case ir_txb:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(FS_OPCODE_TXB, dst);
|
2010-09-30 19:18:25 -07:00
|
|
|
break;
|
|
|
|
|
case ir_txl:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(FS_OPCODE_TXL, dst);
|
2010-09-30 19:18:25 -07:00
|
|
|
break;
|
|
|
|
|
case ir_txd:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(FS_OPCODE_TXD, dst);
|
2011-02-24 17:49:07 -08:00
|
|
|
break;
|
2010-09-30 19:18:25 -07:00
|
|
|
case ir_txf:
|
|
|
|
|
assert(!"GLSL 1.30 features unsupported");
|
|
|
|
|
break;
|
2010-08-28 14:43:50 -07:00
|
|
|
}
|
2010-10-08 15:11:42 -07:00
|
|
|
inst->base_mrf = base_mrf;
|
2010-09-30 19:18:25 -07:00
|
|
|
inst->mlen = mlen;
|
|
|
|
|
|
2010-10-01 13:37:40 -07:00
|
|
|
if (simd16) {
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, orig_dst, dst);
|
2010-10-01 13:37:40 -07:00
|
|
|
orig_dst.reg_offset++;
|
|
|
|
|
dst.reg_offset += 2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-30 19:18:25 -07:00
|
|
|
return inst;
|
|
|
|
|
}
|
2010-08-28 14:43:50 -07:00
|
|
|
|
2010-09-30 19:18:25 -07:00
|
|
|
fs_inst *
|
2010-10-01 13:37:40 -07:00
|
|
|
fs_visitor::emit_texture_gen5(ir_texture *ir, fs_reg dst, fs_reg coordinate)
|
2010-09-30 19:18:25 -07:00
|
|
|
{
|
|
|
|
|
/* gen5's SIMD8 sampler has slots for u, v, r, array index, then
|
|
|
|
|
* optional parameters like shadow comparitor or LOD bias. If
|
|
|
|
|
* optional parameters aren't present, those base slots are
|
|
|
|
|
* optional and don't need to be included in the message.
|
|
|
|
|
*
|
|
|
|
|
* We don't fill in the unnecessary slots regardless, which may
|
|
|
|
|
* look surprising in the disassembly.
|
|
|
|
|
*/
|
2010-10-08 15:11:42 -07:00
|
|
|
int mlen = 1; /* g0 header always present. */
|
|
|
|
|
int base_mrf = 1;
|
2010-10-01 13:37:40 -07:00
|
|
|
|
2010-10-08 15:11:42 -07:00
|
|
|
for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen + i), coordinate);
|
2010-10-01 13:37:40 -07:00
|
|
|
coordinate.reg_offset++;
|
|
|
|
|
}
|
2010-10-08 15:11:42 -07:00
|
|
|
mlen += ir->coordinate->type->vector_elements;
|
2010-08-28 14:43:50 -07:00
|
|
|
|
|
|
|
|
if (ir->shadow_comparitor) {
|
2010-10-08 15:11:42 -07:00
|
|
|
mlen = MAX2(mlen, 5);
|
2010-08-28 14:43:50 -07:00
|
|
|
|
|
|
|
|
ir->shadow_comparitor->accept(this);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen), this->result);
|
2010-08-28 14:43:50 -07:00
|
|
|
mlen++;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-30 19:18:25 -07:00
|
|
|
fs_inst *inst = NULL;
|
2010-08-28 14:43:50 -07:00
|
|
|
switch (ir->op) {
|
|
|
|
|
case ir_tex:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(FS_OPCODE_TEX, dst);
|
2010-08-28 14:43:50 -07:00
|
|
|
break;
|
|
|
|
|
case ir_txb:
|
2010-08-28 22:34:30 -07:00
|
|
|
ir->lod_info.bias->accept(this);
|
2010-10-08 15:11:42 -07:00
|
|
|
mlen = MAX2(mlen, 5);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen), this->result);
|
2010-08-28 22:34:30 -07:00
|
|
|
mlen++;
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(FS_OPCODE_TXB, dst);
|
2010-08-28 22:34:30 -07:00
|
|
|
break;
|
2010-08-28 14:43:50 -07:00
|
|
|
case ir_txl:
|
2010-08-28 22:34:30 -07:00
|
|
|
ir->lod_info.lod->accept(this);
|
2010-10-08 15:11:42 -07:00
|
|
|
mlen = MAX2(mlen, 5);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen), this->result);
|
2010-08-28 22:34:30 -07:00
|
|
|
mlen++;
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(FS_OPCODE_TXL, dst);
|
2010-08-28 14:43:50 -07:00
|
|
|
break;
|
|
|
|
|
case ir_txd:
|
|
|
|
|
case ir_txf:
|
|
|
|
|
assert(!"GLSL 1.30 features unsupported");
|
|
|
|
|
break;
|
|
|
|
|
}
|
2010-10-08 15:11:42 -07:00
|
|
|
inst->base_mrf = base_mrf;
|
2010-09-30 19:18:25 -07:00
|
|
|
inst->mlen = mlen;
|
|
|
|
|
|
|
|
|
|
return inst;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_texture *ir)
|
|
|
|
|
{
|
2010-10-13 16:13:45 -07:00
|
|
|
int sampler;
|
2010-09-30 19:18:25 -07:00
|
|
|
fs_inst *inst = NULL;
|
|
|
|
|
|
|
|
|
|
ir->coordinate->accept(this);
|
|
|
|
|
fs_reg coordinate = this->result;
|
|
|
|
|
|
2010-12-27 03:21:23 -08:00
|
|
|
if (ir->offset != NULL) {
|
|
|
|
|
ir_constant *offset = ir->offset->as_constant();
|
|
|
|
|
assert(offset != NULL);
|
|
|
|
|
|
|
|
|
|
signed char offsets[3];
|
|
|
|
|
for (unsigned i = 0; i < ir->offset->type->vector_elements; i++)
|
|
|
|
|
offsets[i] = (signed char) offset->value.i[i];
|
|
|
|
|
|
|
|
|
|
/* Combine all three offsets into a single unsigned dword:
|
|
|
|
|
*
|
|
|
|
|
* bits 11:8 - U Offset (X component)
|
|
|
|
|
* bits 7:4 - V Offset (Y component)
|
|
|
|
|
* bits 3:0 - R Offset (Z component)
|
|
|
|
|
*/
|
|
|
|
|
unsigned offset_bits = 0;
|
|
|
|
|
for (unsigned i = 0; i < ir->offset->type->vector_elements; i++) {
|
|
|
|
|
const unsigned shift = 4 * (2 - i);
|
|
|
|
|
offset_bits |= (offsets[i] << shift) & (0xF << shift);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Explicitly set up the message header by copying g0 to msg reg m1. */
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, 1, BRW_REGISTER_TYPE_UD),
|
|
|
|
|
fs_reg(GRF, 0, BRW_REGISTER_TYPE_UD));
|
2010-12-27 03:21:23 -08:00
|
|
|
|
|
|
|
|
/* Then set the offset bits in DWord 2 of the message header. */
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV,
|
|
|
|
|
fs_reg(retype(brw_vec1_reg(BRW_MESSAGE_REGISTER_FILE, 1, 2),
|
|
|
|
|
BRW_REGISTER_TYPE_UD)),
|
|
|
|
|
fs_reg(brw_imm_uw(offset_bits)));
|
2010-12-27 03:21:23 -08:00
|
|
|
}
|
|
|
|
|
|
2010-09-30 19:18:25 -07:00
|
|
|
/* Should be lowered by do_lower_texture_projection */
|
|
|
|
|
assert(!ir->projector);
|
|
|
|
|
|
2010-10-13 16:13:45 -07:00
|
|
|
sampler = _mesa_get_sampler_uniform_value(ir->sampler,
|
2011-03-12 15:00:14 -08:00
|
|
|
ctx->Shader.CurrentFragmentProgram,
|
2010-10-13 16:13:45 -07:00
|
|
|
&brw->fragment_program->Base);
|
|
|
|
|
sampler = c->fp->program.Base.SamplerUnits[sampler];
|
|
|
|
|
|
|
|
|
|
/* The 965 requires the EU to do the normalization of GL rectangle
|
|
|
|
|
* texture coordinates. We use the program parameter state
|
|
|
|
|
* tracking to get the scaling factor.
|
|
|
|
|
*/
|
|
|
|
|
if (ir->sampler->type->sampler_dimensionality == GLSL_SAMPLER_DIM_RECT) {
|
|
|
|
|
struct gl_program_parameter_list *params = c->fp->program.Base.Parameters;
|
|
|
|
|
int tokens[STATE_LENGTH] = {
|
|
|
|
|
STATE_INTERNAL,
|
|
|
|
|
STATE_TEXRECT_SCALE,
|
|
|
|
|
sampler,
|
|
|
|
|
0,
|
|
|
|
|
0
|
|
|
|
|
};
|
|
|
|
|
|
2010-10-25 12:52:29 -07:00
|
|
|
c->prog_data.param_convert[c->prog_data.nr_params] =
|
|
|
|
|
PARAM_NO_CONVERT;
|
|
|
|
|
c->prog_data.param_convert[c->prog_data.nr_params + 1] =
|
|
|
|
|
PARAM_NO_CONVERT;
|
|
|
|
|
|
2010-10-13 16:13:45 -07:00
|
|
|
fs_reg scale_x = fs_reg(UNIFORM, c->prog_data.nr_params);
|
|
|
|
|
fs_reg scale_y = fs_reg(UNIFORM, c->prog_data.nr_params + 1);
|
|
|
|
|
GLuint index = _mesa_add_state_reference(params,
|
|
|
|
|
(gl_state_index *)tokens);
|
|
|
|
|
|
2011-01-17 16:02:58 -08:00
|
|
|
this->param_index[c->prog_data.nr_params] = index;
|
|
|
|
|
this->param_offset[c->prog_data.nr_params] = 0;
|
|
|
|
|
c->prog_data.nr_params++;
|
|
|
|
|
this->param_index[c->prog_data.nr_params] = index;
|
|
|
|
|
this->param_offset[c->prog_data.nr_params] = 1;
|
|
|
|
|
c->prog_data.nr_params++;
|
2010-10-13 16:13:45 -07:00
|
|
|
|
|
|
|
|
fs_reg dst = fs_reg(this, ir->coordinate->type);
|
|
|
|
|
fs_reg src = coordinate;
|
|
|
|
|
coordinate = dst;
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MUL, dst, src, scale_x);
|
2010-10-13 16:13:45 -07:00
|
|
|
dst.reg_offset++;
|
|
|
|
|
src.reg_offset++;
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MUL, dst, src, scale_y);
|
2010-10-13 16:13:45 -07:00
|
|
|
}
|
|
|
|
|
|
2010-09-30 19:18:25 -07:00
|
|
|
/* Writemasking doesn't eliminate channels on SIMD8 texture
|
|
|
|
|
* samples, so don't worry about them.
|
|
|
|
|
*/
|
|
|
|
|
fs_reg dst = fs_reg(this, glsl_type::vec4_type);
|
|
|
|
|
|
|
|
|
|
if (intel->gen < 5) {
|
2010-10-01 13:37:40 -07:00
|
|
|
inst = emit_texture_gen4(ir, dst, coordinate);
|
2010-09-30 19:18:25 -07:00
|
|
|
} else {
|
2010-10-01 13:37:40 -07:00
|
|
|
inst = emit_texture_gen5(ir, dst, coordinate);
|
2010-09-30 19:18:25 -07:00
|
|
|
}
|
2010-08-28 14:43:50 -07:00
|
|
|
|
2010-12-27 03:21:23 -08:00
|
|
|
/* If there's an offset, we already set up m1. To avoid the implied move,
|
|
|
|
|
* use the null register. Otherwise, we want an implied move from g0.
|
|
|
|
|
*/
|
|
|
|
|
if (ir->offset != NULL)
|
|
|
|
|
inst->src[0] = fs_reg(brw_null_reg());
|
|
|
|
|
else
|
|
|
|
|
inst->src[0] = fs_reg(retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UW));
|
|
|
|
|
|
2010-10-13 16:13:45 -07:00
|
|
|
inst->sampler = sampler;
|
2010-09-28 10:53:47 -07:00
|
|
|
|
2010-08-28 22:34:30 -07:00
|
|
|
this->result = dst;
|
|
|
|
|
|
2010-08-28 14:43:50 -07:00
|
|
|
if (ir->shadow_comparitor)
|
|
|
|
|
inst->shadow_compare = true;
|
2010-10-02 23:44:29 -07:00
|
|
|
|
2011-03-14 11:32:24 -07:00
|
|
|
if (ir->type == glsl_type::float_type) {
|
|
|
|
|
/* Ignore DEPTH_TEXTURE_MODE swizzling. */
|
|
|
|
|
assert(ir->sampler->type->sampler_shadow);
|
|
|
|
|
} else if (c->key.tex_swizzles[inst->sampler] != SWIZZLE_NOOP) {
|
2010-10-02 23:44:29 -07:00
|
|
|
fs_reg swizzle_dst = fs_reg(this, glsl_type::vec4_type);
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
|
int swiz = GET_SWZ(c->key.tex_swizzles[inst->sampler], i);
|
|
|
|
|
fs_reg l = swizzle_dst;
|
|
|
|
|
l.reg_offset += i;
|
|
|
|
|
|
|
|
|
|
if (swiz == SWIZZLE_ZERO) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, l, fs_reg(0.0f));
|
2010-10-02 23:44:29 -07:00
|
|
|
} else if (swiz == SWIZZLE_ONE) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, l, fs_reg(1.0f));
|
2010-10-02 23:44:29 -07:00
|
|
|
} else {
|
|
|
|
|
fs_reg r = dst;
|
|
|
|
|
r.reg_offset += GET_SWZ(c->key.tex_swizzles[inst->sampler], i);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, l, r);
|
2010-10-02 23:44:29 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this->result = swizzle_dst;
|
|
|
|
|
}
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_swizzle *ir)
|
|
|
|
|
{
|
2010-08-16 21:53:02 -07:00
|
|
|
ir->val->accept(this);
|
|
|
|
|
fs_reg val = this->result;
|
|
|
|
|
|
2010-10-01 15:42:39 -07:00
|
|
|
if (ir->type->vector_elements == 1) {
|
|
|
|
|
this->result.reg_offset += ir->mask.x;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-16 21:53:02 -07:00
|
|
|
fs_reg result = fs_reg(this, ir->type);
|
|
|
|
|
this->result = result;
|
|
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < ir->type->vector_elements; i++) {
|
|
|
|
|
fs_reg channel = val;
|
|
|
|
|
int swiz = 0;
|
|
|
|
|
|
|
|
|
|
switch (i) {
|
|
|
|
|
case 0:
|
|
|
|
|
swiz = ir->mask.x;
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
swiz = ir->mask.y;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
swiz = ir->mask.z;
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
swiz = ir->mask.w;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
channel.reg_offset += swiz;
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, result, channel);
|
2010-08-16 21:53:02 -07:00
|
|
|
result.reg_offset++;
|
|
|
|
|
}
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_discard *ir)
|
|
|
|
|
{
|
2010-09-29 15:48:21 -07:00
|
|
|
fs_reg temp = fs_reg(this, glsl_type::uint_type);
|
|
|
|
|
|
2010-08-28 22:56:33 -07:00
|
|
|
assert(ir->condition == NULL); /* FINISHME */
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(FS_OPCODE_DISCARD_NOT, temp, reg_null_d);
|
|
|
|
|
emit(FS_OPCODE_DISCARD_AND, reg_null_d, temp);
|
2010-10-06 09:57:55 -07:00
|
|
|
kill_emitted = true;
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_constant *ir)
|
|
|
|
|
{
|
2010-12-07 14:50:34 -08:00
|
|
|
/* Set this->result to reg at the bottom of the function because some code
|
|
|
|
|
* paths will cause this visitor to be applied to other fields. This will
|
|
|
|
|
* cause the value stored in this->result to be modified.
|
|
|
|
|
*
|
|
|
|
|
* Make reg constant so that it doesn't get accidentally modified along the
|
|
|
|
|
* way. Yes, I actually had this problem. :(
|
|
|
|
|
*/
|
|
|
|
|
const fs_reg reg(this, ir->type);
|
|
|
|
|
fs_reg dst_reg = reg;
|
2010-08-15 18:58:58 -07:00
|
|
|
|
2010-12-07 14:50:34 -08:00
|
|
|
if (ir->type->is_array()) {
|
|
|
|
|
const unsigned size = type_size(ir->type->fields.array);
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < ir->type->length; i++) {
|
|
|
|
|
ir->array_elements[i]->accept(this);
|
|
|
|
|
fs_reg src_reg = this->result;
|
|
|
|
|
|
|
|
|
|
dst_reg.type = src_reg.type;
|
|
|
|
|
for (unsigned j = 0; j < size; j++) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, dst_reg, src_reg);
|
2010-12-07 14:50:34 -08:00
|
|
|
src_reg.reg_offset++;
|
|
|
|
|
dst_reg.reg_offset++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else if (ir->type->is_record()) {
|
|
|
|
|
foreach_list(node, &ir->components) {
|
|
|
|
|
ir_instruction *const field = (ir_instruction *) node;
|
|
|
|
|
const unsigned size = type_size(field->type);
|
|
|
|
|
|
|
|
|
|
field->accept(this);
|
|
|
|
|
fs_reg src_reg = this->result;
|
|
|
|
|
|
|
|
|
|
dst_reg.type = src_reg.type;
|
|
|
|
|
for (unsigned j = 0; j < size; j++) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, dst_reg, src_reg);
|
2010-12-07 14:50:34 -08:00
|
|
|
src_reg.reg_offset++;
|
|
|
|
|
dst_reg.reg_offset++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
const unsigned size = type_size(ir->type);
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < size; i++) {
|
|
|
|
|
switch (ir->type->base_type) {
|
|
|
|
|
case GLSL_TYPE_FLOAT:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, dst_reg, fs_reg(ir->value.f[i]));
|
2010-12-07 14:50:34 -08:00
|
|
|
break;
|
|
|
|
|
case GLSL_TYPE_UINT:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, dst_reg, fs_reg(ir->value.u[i]));
|
2010-12-07 14:50:34 -08:00
|
|
|
break;
|
|
|
|
|
case GLSL_TYPE_INT:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, dst_reg, fs_reg(ir->value.i[i]));
|
2010-12-07 14:50:34 -08:00
|
|
|
break;
|
|
|
|
|
case GLSL_TYPE_BOOL:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, dst_reg, fs_reg((int)ir->value.b[i]));
|
2010-12-07 14:50:34 -08:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
assert(!"Non-float/uint/int/bool constant");
|
|
|
|
|
}
|
|
|
|
|
dst_reg.reg_offset++;
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
}
|
2010-12-07 14:50:34 -08:00
|
|
|
|
|
|
|
|
this->result = reg;
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
2010-10-14 11:11:29 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::emit_bool_to_cond_code(ir_rvalue *ir)
|
|
|
|
|
{
|
2010-10-14 11:27:17 -07:00
|
|
|
ir_expression *expr = ir->as_expression();
|
|
|
|
|
|
|
|
|
|
if (expr) {
|
|
|
|
|
fs_reg op[2];
|
|
|
|
|
fs_inst *inst;
|
|
|
|
|
|
2010-11-10 16:33:10 -08:00
|
|
|
assert(expr->get_num_operands() <= 2);
|
2010-10-14 11:27:17 -07:00
|
|
|
for (unsigned int i = 0; i < expr->get_num_operands(); i++) {
|
|
|
|
|
assert(expr->operands[i]->type->is_scalar());
|
|
|
|
|
|
|
|
|
|
expr->operands[i]->accept(this);
|
|
|
|
|
op[i] = this->result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (expr->operation) {
|
|
|
|
|
case ir_unop_logic_not:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_AND, reg_null_d, op[0], fs_reg(1));
|
2010-10-15 12:04:52 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_Z;
|
2010-10-14 11:27:17 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_binop_logic_xor:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_XOR, reg_null_d, op[0], op[1]);
|
2010-10-14 11:27:17 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_binop_logic_or:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_OR, reg_null_d, op[0], op[1]);
|
2010-10-14 11:27:17 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_binop_logic_and:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_AND, reg_null_d, op[0], op[1]);
|
2010-10-14 11:27:17 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_unop_f2b:
|
|
|
|
|
if (intel->gen >= 6) {
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_CMP, reg_null_d, op[0], fs_reg(0.0f));
|
2010-10-14 11:27:17 -07:00
|
|
|
} else {
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_MOV, reg_null_f, op[0]);
|
2010-10-14 11:27:17 -07:00
|
|
|
}
|
|
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_unop_i2b:
|
|
|
|
|
if (intel->gen >= 6) {
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_CMP, reg_null_d, op[0], fs_reg(0));
|
2010-10-14 11:27:17 -07:00
|
|
|
} else {
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_MOV, reg_null_d, op[0]);
|
2010-10-14 11:27:17 -07:00
|
|
|
}
|
|
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_binop_greater:
|
|
|
|
|
case ir_binop_gequal:
|
|
|
|
|
case ir_binop_less:
|
|
|
|
|
case ir_binop_lequal:
|
|
|
|
|
case ir_binop_equal:
|
|
|
|
|
case ir_binop_all_equal:
|
|
|
|
|
case ir_binop_nequal:
|
|
|
|
|
case ir_binop_any_nequal:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_CMP, reg_null_cmp, op[0], op[1]);
|
2010-12-27 21:08:59 -08:00
|
|
|
inst->conditional_mod =
|
|
|
|
|
brw_conditional_for_comparison(expr->operation);
|
2010-10-14 11:27:17 -07:00
|
|
|
break;
|
2010-12-27 21:08:59 -08:00
|
|
|
|
2010-10-14 11:27:17 -07:00
|
|
|
default:
|
|
|
|
|
assert(!"not reached");
|
2011-03-13 13:43:05 -07:00
|
|
|
fail("bad cond code\n");
|
2010-10-14 11:27:17 -07:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
2010-10-14 11:11:29 -07:00
|
|
|
|
|
|
|
|
ir->accept(this);
|
|
|
|
|
|
|
|
|
|
if (intel->gen >= 6) {
|
2011-03-13 00:23:40 -08:00
|
|
|
fs_inst *inst = emit(BRW_OPCODE_AND, reg_null_d, this->result, fs_reg(1));
|
2010-10-14 11:11:29 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
} else {
|
2011-03-13 00:23:40 -08:00
|
|
|
fs_inst *inst = emit(BRW_OPCODE_MOV, reg_null_d, this->result);
|
2010-10-14 11:11:29 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-19 12:32:55 -07:00
|
|
|
/**
|
|
|
|
|
* Emit a gen6 IF statement with the comparison folded into the IF
|
|
|
|
|
* instruction.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::emit_if_gen6(ir_if *ir)
|
|
|
|
|
{
|
|
|
|
|
ir_expression *expr = ir->condition->as_expression();
|
|
|
|
|
|
|
|
|
|
if (expr) {
|
|
|
|
|
fs_reg op[2];
|
|
|
|
|
fs_inst *inst;
|
|
|
|
|
fs_reg temp;
|
|
|
|
|
|
2010-11-10 16:33:10 -08:00
|
|
|
assert(expr->get_num_operands() <= 2);
|
2010-10-19 12:32:55 -07:00
|
|
|
for (unsigned int i = 0; i < expr->get_num_operands(); i++) {
|
|
|
|
|
assert(expr->operands[i]->type->is_scalar());
|
|
|
|
|
|
|
|
|
|
expr->operands[i]->accept(this);
|
|
|
|
|
op[i] = this->result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (expr->operation) {
|
|
|
|
|
case ir_unop_logic_not:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_IF, temp, op[0], fs_reg(0));
|
2010-10-19 12:32:55 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_Z;
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case ir_binop_logic_xor:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_IF, reg_null_d, op[0], op[1]);
|
2010-10-19 12:32:55 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case ir_binop_logic_or:
|
|
|
|
|
temp = fs_reg(this, glsl_type::bool_type);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_OR, temp, op[0], op[1]);
|
|
|
|
|
inst = emit(BRW_OPCODE_IF, reg_null_d, temp, fs_reg(0));
|
2010-10-19 12:32:55 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case ir_binop_logic_and:
|
|
|
|
|
temp = fs_reg(this, glsl_type::bool_type);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_AND, temp, op[0], op[1]);
|
|
|
|
|
inst = emit(BRW_OPCODE_IF, reg_null_d, temp, fs_reg(0));
|
2010-10-19 12:32:55 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case ir_unop_f2b:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_IF, reg_null_f, op[0], fs_reg(0));
|
2010-10-19 12:32:55 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case ir_unop_i2b:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_IF, reg_null_d, op[0], fs_reg(0));
|
2010-10-19 12:32:55 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case ir_binop_greater:
|
|
|
|
|
case ir_binop_gequal:
|
|
|
|
|
case ir_binop_less:
|
|
|
|
|
case ir_binop_lequal:
|
|
|
|
|
case ir_binop_equal:
|
|
|
|
|
case ir_binop_all_equal:
|
|
|
|
|
case ir_binop_nequal:
|
|
|
|
|
case ir_binop_any_nequal:
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_IF, reg_null_d, op[0], op[1]);
|
2010-12-27 21:08:59 -08:00
|
|
|
inst->conditional_mod =
|
|
|
|
|
brw_conditional_for_comparison(expr->operation);
|
2010-10-19 12:32:55 -07:00
|
|
|
return;
|
|
|
|
|
default:
|
|
|
|
|
assert(!"not reached");
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_IF, reg_null_d, op[0], fs_reg(0));
|
2010-10-19 12:32:55 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
2011-03-13 13:43:05 -07:00
|
|
|
fail("bad condition\n");
|
2010-10-19 12:32:55 -07:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ir->condition->accept(this);
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
fs_inst *inst = emit(BRW_OPCODE_IF, reg_null_d, this->result, fs_reg(0));
|
2010-10-19 12:32:55 -07:00
|
|
|
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_if *ir)
|
|
|
|
|
{
|
2010-08-27 12:54:12 -07:00
|
|
|
fs_inst *inst;
|
|
|
|
|
|
|
|
|
|
/* Don't point the annotation at the if statement, because then it plus
|
|
|
|
|
* the then and else blocks get printed.
|
|
|
|
|
*/
|
|
|
|
|
this->base_ir = ir->condition;
|
|
|
|
|
|
2010-10-19 12:32:55 -07:00
|
|
|
if (intel->gen >= 6) {
|
|
|
|
|
emit_if_gen6(ir);
|
|
|
|
|
} else {
|
|
|
|
|
emit_bool_to_cond_code(ir->condition);
|
2010-08-27 12:54:12 -07:00
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_IF);
|
2010-10-19 12:32:55 -07:00
|
|
|
inst->predicated = true;
|
|
|
|
|
}
|
2010-08-27 12:54:12 -07:00
|
|
|
|
|
|
|
|
foreach_iter(exec_list_iterator, iter, ir->then_instructions) {
|
|
|
|
|
ir_instruction *ir = (ir_instruction *)iter.get();
|
|
|
|
|
this->base_ir = ir;
|
|
|
|
|
|
|
|
|
|
ir->accept(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!ir->else_instructions.is_empty()) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_ELSE);
|
2010-08-27 12:54:12 -07:00
|
|
|
|
|
|
|
|
foreach_iter(exec_list_iterator, iter, ir->else_instructions) {
|
|
|
|
|
ir_instruction *ir = (ir_instruction *)iter.get();
|
|
|
|
|
this->base_ir = ir;
|
|
|
|
|
|
|
|
|
|
ir->accept(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_ENDIF);
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_loop *ir)
|
|
|
|
|
{
|
2010-09-28 13:00:46 -07:00
|
|
|
fs_reg counter = reg_undef;
|
2010-08-28 23:31:09 -07:00
|
|
|
|
2010-09-28 13:00:46 -07:00
|
|
|
if (ir->counter) {
|
|
|
|
|
this->base_ir = ir->counter;
|
|
|
|
|
ir->counter->accept(this);
|
|
|
|
|
counter = *(variable_storage(ir->counter));
|
|
|
|
|
|
|
|
|
|
if (ir->from) {
|
|
|
|
|
this->base_ir = ir->from;
|
|
|
|
|
ir->from->accept(this);
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, counter, this->result);
|
2010-09-28 13:00:46 -07:00
|
|
|
}
|
|
|
|
|
}
|
2010-08-28 23:31:09 -07:00
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_DO);
|
2010-09-28 13:00:46 -07:00
|
|
|
|
|
|
|
|
if (ir->to) {
|
|
|
|
|
this->base_ir = ir->to;
|
|
|
|
|
ir->to->accept(this);
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
fs_inst *inst = emit(BRW_OPCODE_CMP, reg_null_cmp, counter, this->result);
|
2010-12-27 21:08:59 -08:00
|
|
|
inst->conditional_mod = brw_conditional_for_comparison(ir->cmp);
|
2010-09-28 13:00:46 -07:00
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
inst = emit(BRW_OPCODE_BREAK);
|
2010-09-28 13:00:46 -07:00
|
|
|
inst->predicated = true;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-28 23:31:09 -07:00
|
|
|
foreach_iter(exec_list_iterator, iter, ir->body_instructions) {
|
|
|
|
|
ir_instruction *ir = (ir_instruction *)iter.get();
|
|
|
|
|
|
|
|
|
|
this->base_ir = ir;
|
|
|
|
|
ir->accept(this);
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-28 13:00:46 -07:00
|
|
|
if (ir->increment) {
|
|
|
|
|
this->base_ir = ir->increment;
|
|
|
|
|
ir->increment->accept(this);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_ADD, counter, counter, this->result);
|
2010-09-28 13:00:46 -07:00
|
|
|
}
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_WHILE);
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_loop_jump *ir)
|
|
|
|
|
{
|
2010-08-28 23:31:09 -07:00
|
|
|
switch (ir->mode) {
|
|
|
|
|
case ir_loop_jump::jump_break:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_BREAK);
|
2010-08-28 23:31:09 -07:00
|
|
|
break;
|
|
|
|
|
case ir_loop_jump::jump_continue:
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_CONTINUE);
|
2010-08-28 23:31:09 -07:00
|
|
|
break;
|
|
|
|
|
}
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_call *ir)
|
|
|
|
|
{
|
|
|
|
|
assert(!"FINISHME");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_return *ir)
|
|
|
|
|
{
|
|
|
|
|
assert(!"FINISHME");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_function *ir)
|
|
|
|
|
{
|
|
|
|
|
/* Ignore function bodies other than main() -- we shouldn't see calls to
|
|
|
|
|
* them since they should all be inlined before we get to ir_to_mesa.
|
|
|
|
|
*/
|
|
|
|
|
if (strcmp(ir->name, "main") == 0) {
|
|
|
|
|
const ir_function_signature *sig;
|
|
|
|
|
exec_list empty;
|
|
|
|
|
|
|
|
|
|
sig = ir->matching_signature(&empty);
|
|
|
|
|
|
|
|
|
|
assert(sig);
|
|
|
|
|
|
|
|
|
|
foreach_iter(exec_list_iterator, iter, sig->body) {
|
|
|
|
|
ir_instruction *ir = (ir_instruction *)iter.get();
|
2010-08-26 14:42:06 -07:00
|
|
|
this->base_ir = ir;
|
2010-08-15 18:58:58 -07:00
|
|
|
|
|
|
|
|
ir->accept(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::visit(ir_function_signature *ir)
|
|
|
|
|
{
|
|
|
|
|
assert(!"not reached");
|
|
|
|
|
(void)ir;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-26 12:12:00 -07:00
|
|
|
fs_inst *
|
|
|
|
|
fs_visitor::emit(fs_inst inst)
|
|
|
|
|
{
|
|
|
|
|
fs_inst *list_inst = new(mem_ctx) fs_inst;
|
|
|
|
|
*list_inst = inst;
|
|
|
|
|
|
2010-08-26 14:42:06 -07:00
|
|
|
list_inst->annotation = this->current_annotation;
|
|
|
|
|
list_inst->ir = this->base_ir;
|
|
|
|
|
|
2010-08-26 12:12:00 -07:00
|
|
|
this->instructions.push_tail(list_inst);
|
|
|
|
|
|
|
|
|
|
return list_inst;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Emits a dummy fragment shader consisting of magenta for bringup purposes. */
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::emit_dummy_fs()
|
|
|
|
|
{
|
|
|
|
|
/* Everyone's favorite color. */
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, 2), fs_reg(1.0f));
|
|
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, 3), fs_reg(0.0f));
|
|
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, 4), fs_reg(1.0f));
|
|
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, 5), fs_reg(0.0f));
|
2010-08-26 12:12:00 -07:00
|
|
|
|
|
|
|
|
fs_inst *write;
|
2011-03-13 00:23:40 -08:00
|
|
|
write = emit(FS_OPCODE_FB_WRITE, fs_reg(0), fs_reg(0));
|
2010-10-08 15:11:42 -07:00
|
|
|
write->base_mrf = 0;
|
2010-08-26 12:12:00 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-16 21:53:02 -07:00
|
|
|
/* The register location here is relative to the start of the URB
|
|
|
|
|
* data. It will get adjusted to be a real location before
|
|
|
|
|
* generate_code() time.
|
|
|
|
|
*/
|
|
|
|
|
struct brw_reg
|
|
|
|
|
fs_visitor::interp_reg(int location, int channel)
|
|
|
|
|
{
|
2010-10-01 12:15:48 -07:00
|
|
|
int regnr = urb_setup[location] * 2 + channel / 2;
|
2010-08-16 21:53:02 -07:00
|
|
|
int stride = (channel & 1) * 4;
|
|
|
|
|
|
2010-10-01 12:15:48 -07:00
|
|
|
assert(urb_setup[location] != -1);
|
|
|
|
|
|
2010-08-16 21:53:02 -07:00
|
|
|
return brw_vec1_grf(regnr, stride);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Emits the interpolation for the varying inputs. */
|
|
|
|
|
void
|
2010-10-01 10:45:26 -07:00
|
|
|
fs_visitor::emit_interpolation_setup_gen4()
|
2010-08-16 21:53:02 -07:00
|
|
|
{
|
|
|
|
|
struct brw_reg g1_uw = retype(brw_vec1_grf(1, 0), BRW_REGISTER_TYPE_UW);
|
|
|
|
|
|
2010-08-26 14:42:06 -07:00
|
|
|
this->current_annotation = "compute pixel centers";
|
2010-08-16 21:53:02 -07:00
|
|
|
this->pixel_x = fs_reg(this, glsl_type::uint_type);
|
|
|
|
|
this->pixel_y = fs_reg(this, glsl_type::uint_type);
|
2010-09-04 20:54:52 -07:00
|
|
|
this->pixel_x.type = BRW_REGISTER_TYPE_UW;
|
|
|
|
|
this->pixel_y.type = BRW_REGISTER_TYPE_UW;
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_ADD,
|
|
|
|
|
this->pixel_x,
|
|
|
|
|
fs_reg(stride(suboffset(g1_uw, 4), 2, 4, 0)),
|
|
|
|
|
fs_reg(brw_imm_v(0x10101010)));
|
|
|
|
|
emit(BRW_OPCODE_ADD,
|
|
|
|
|
this->pixel_y,
|
|
|
|
|
fs_reg(stride(suboffset(g1_uw, 5), 2, 4, 0)),
|
|
|
|
|
fs_reg(brw_imm_v(0x11001100)));
|
2010-08-16 21:53:02 -07:00
|
|
|
|
2010-08-26 14:42:06 -07:00
|
|
|
this->current_annotation = "compute pixel deltas from v0";
|
2010-10-01 15:11:09 -07:00
|
|
|
if (brw->has_pln) {
|
|
|
|
|
this->delta_x = fs_reg(this, glsl_type::vec2_type);
|
|
|
|
|
this->delta_y = this->delta_x;
|
|
|
|
|
this->delta_y.reg_offset++;
|
|
|
|
|
} else {
|
|
|
|
|
this->delta_x = fs_reg(this, glsl_type::float_type);
|
|
|
|
|
this->delta_y = fs_reg(this, glsl_type::float_type);
|
|
|
|
|
}
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_ADD, this->delta_x,
|
|
|
|
|
this->pixel_x, fs_reg(negate(brw_vec1_grf(1, 0))));
|
|
|
|
|
emit(BRW_OPCODE_ADD, this->delta_y,
|
|
|
|
|
this->pixel_y, fs_reg(negate(brw_vec1_grf(1, 1))));
|
2010-08-16 21:53:02 -07:00
|
|
|
|
2010-08-26 14:42:06 -07:00
|
|
|
this->current_annotation = "compute pos.w and 1/pos.w";
|
2010-09-28 13:29:45 -07:00
|
|
|
/* Compute wpos.w. It's always in our setup, since it's needed to
|
|
|
|
|
* interpolate the other attributes.
|
2010-08-16 21:53:02 -07:00
|
|
|
*/
|
2010-09-28 13:29:45 -07:00
|
|
|
this->wpos_w = fs_reg(this, glsl_type::float_type);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(FS_OPCODE_LINTERP, wpos_w, this->delta_x, this->delta_y,
|
|
|
|
|
interp_reg(FRAG_ATTRIB_WPOS, 3));
|
2010-09-28 13:29:45 -07:00
|
|
|
/* Compute the pixel 1/W value from wpos.w. */
|
2010-08-16 21:53:02 -07:00
|
|
|
this->pixel_w = fs_reg(this, glsl_type::float_type);
|
2010-10-08 14:35:34 -07:00
|
|
|
emit_math(FS_OPCODE_RCP, this->pixel_w, wpos_w);
|
2010-08-26 14:42:06 -07:00
|
|
|
this->current_annotation = NULL;
|
2010-08-16 21:53:02 -07:00
|
|
|
}
|
|
|
|
|
|
2010-10-01 10:45:26 -07:00
|
|
|
/** Emits the interpolation for the varying inputs. */
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::emit_interpolation_setup_gen6()
|
|
|
|
|
{
|
|
|
|
|
struct brw_reg g1_uw = retype(brw_vec1_grf(1, 0), BRW_REGISTER_TYPE_UW);
|
|
|
|
|
|
|
|
|
|
/* If the pixel centers end up used, the setup is the same as for gen4. */
|
|
|
|
|
this->current_annotation = "compute pixel centers";
|
2010-10-11 15:24:12 -07:00
|
|
|
fs_reg int_pixel_x = fs_reg(this, glsl_type::uint_type);
|
|
|
|
|
fs_reg int_pixel_y = fs_reg(this, glsl_type::uint_type);
|
|
|
|
|
int_pixel_x.type = BRW_REGISTER_TYPE_UW;
|
|
|
|
|
int_pixel_y.type = BRW_REGISTER_TYPE_UW;
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_ADD,
|
|
|
|
|
int_pixel_x,
|
|
|
|
|
fs_reg(stride(suboffset(g1_uw, 4), 2, 4, 0)),
|
|
|
|
|
fs_reg(brw_imm_v(0x10101010)));
|
|
|
|
|
emit(BRW_OPCODE_ADD,
|
|
|
|
|
int_pixel_y,
|
|
|
|
|
fs_reg(stride(suboffset(g1_uw, 5), 2, 4, 0)),
|
|
|
|
|
fs_reg(brw_imm_v(0x11001100)));
|
2010-10-01 10:45:26 -07:00
|
|
|
|
2010-10-11 15:24:12 -07:00
|
|
|
/* As of gen6, we can no longer mix float and int sources. We have
|
|
|
|
|
* to turn the integer pixel centers into floats for their actual
|
|
|
|
|
* use.
|
|
|
|
|
*/
|
|
|
|
|
this->pixel_x = fs_reg(this, glsl_type::float_type);
|
|
|
|
|
this->pixel_y = fs_reg(this, glsl_type::float_type);
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, this->pixel_x, int_pixel_x);
|
|
|
|
|
emit(BRW_OPCODE_MOV, this->pixel_y, int_pixel_y);
|
2010-10-11 15:24:12 -07:00
|
|
|
|
2011-04-03 01:39:28 -07:00
|
|
|
this->current_annotation = "compute pos.w";
|
|
|
|
|
this->pixel_w = fs_reg(brw_vec8_grf(c->source_w_reg, 0));
|
|
|
|
|
this->wpos_w = fs_reg(this, glsl_type::float_type);
|
|
|
|
|
emit_math(FS_OPCODE_RCP, this->wpos_w, this->pixel_w);
|
2010-10-01 10:45:26 -07:00
|
|
|
|
|
|
|
|
this->delta_x = fs_reg(brw_vec8_grf(2, 0));
|
|
|
|
|
this->delta_y = fs_reg(brw_vec8_grf(3, 0));
|
|
|
|
|
|
|
|
|
|
this->current_annotation = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::emit_fb_writes()
|
|
|
|
|
{
|
2010-09-28 12:34:21 -07:00
|
|
|
this->current_annotation = "FB write header";
|
2010-10-06 09:57:55 -07:00
|
|
|
GLboolean header_present = GL_TRUE;
|
2010-09-28 12:07:30 -07:00
|
|
|
int nr = 0;
|
|
|
|
|
|
2010-10-06 09:57:55 -07:00
|
|
|
if (intel->gen >= 6 &&
|
|
|
|
|
!this->kill_emitted &&
|
|
|
|
|
c->key.nr_color_regions == 1) {
|
|
|
|
|
header_present = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (header_present) {
|
|
|
|
|
/* m0, m1 header */
|
|
|
|
|
nr += 2;
|
|
|
|
|
}
|
2010-09-28 12:07:30 -07:00
|
|
|
|
2010-11-11 09:30:16 -08:00
|
|
|
if (c->aa_dest_stencil_reg) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, nr++),
|
|
|
|
|
fs_reg(brw_vec8_grf(c->aa_dest_stencil_reg, 0)));
|
2010-09-28 12:07:30 -07:00
|
|
|
}
|
2010-08-26 14:42:06 -07:00
|
|
|
|
2010-09-28 12:34:21 -07:00
|
|
|
/* Reserve space for color. It'll be filled in per MRT below. */
|
|
|
|
|
int color_mrf = nr;
|
|
|
|
|
nr += 4;
|
2010-08-15 18:58:58 -07:00
|
|
|
|
2010-11-11 09:30:16 -08:00
|
|
|
if (c->source_depth_to_render_target) {
|
|
|
|
|
if (c->computes_depth) {
|
2010-09-28 12:07:30 -07:00
|
|
|
/* Hand over gl_FragDepth. */
|
|
|
|
|
assert(this->frag_depth);
|
|
|
|
|
fs_reg depth = *(variable_storage(this->frag_depth));
|
|
|
|
|
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, nr++), depth);
|
2010-09-28 12:07:30 -07:00
|
|
|
} else {
|
|
|
|
|
/* Pass through the payload depth. */
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, nr++),
|
|
|
|
|
fs_reg(brw_vec8_grf(c->source_depth_reg, 0)));
|
2010-09-28 12:07:30 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-11 09:30:16 -08:00
|
|
|
if (c->dest_depth_reg) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, nr++),
|
|
|
|
|
fs_reg(brw_vec8_grf(c->dest_depth_reg, 0)));
|
2010-09-28 12:07:30 -07:00
|
|
|
}
|
|
|
|
|
|
2010-09-28 12:34:21 -07:00
|
|
|
fs_reg color = reg_undef;
|
|
|
|
|
if (this->frag_color)
|
|
|
|
|
color = *(variable_storage(this->frag_color));
|
2010-11-29 16:16:38 -08:00
|
|
|
else if (this->frag_data) {
|
2010-09-28 12:34:21 -07:00
|
|
|
color = *(variable_storage(this->frag_data));
|
2010-11-29 16:16:38 -08:00
|
|
|
color.type = BRW_REGISTER_TYPE_F;
|
|
|
|
|
}
|
2010-09-28 12:34:21 -07:00
|
|
|
|
|
|
|
|
for (int target = 0; target < c->key.nr_color_regions; target++) {
|
2011-01-21 14:32:31 -08:00
|
|
|
this->current_annotation = ralloc_asprintf(this->mem_ctx,
|
2010-09-28 12:34:21 -07:00
|
|
|
"FB write target %d",
|
|
|
|
|
target);
|
|
|
|
|
if (this->frag_color || this->frag_data) {
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, color_mrf + i), color);
|
2010-09-28 12:34:21 -07:00
|
|
|
color.reg_offset++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this->frag_color)
|
|
|
|
|
color.reg_offset -= 4;
|
|
|
|
|
|
2011-03-13 00:25:36 -08:00
|
|
|
fs_inst *inst = emit(FS_OPCODE_FB_WRITE);
|
2010-09-28 12:34:21 -07:00
|
|
|
inst->target = target;
|
2010-10-08 15:11:42 -07:00
|
|
|
inst->base_mrf = 0;
|
2010-09-28 12:34:21 -07:00
|
|
|
inst->mlen = nr;
|
|
|
|
|
if (target == c->key.nr_color_regions - 1)
|
|
|
|
|
inst->eot = true;
|
2010-10-06 11:25:05 -07:00
|
|
|
inst->header_present = header_present;
|
2010-09-28 12:34:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (c->key.nr_color_regions == 0) {
|
2011-03-11 17:39:49 -08:00
|
|
|
if (c->key.alpha_test && (this->frag_color || this->frag_data)) {
|
|
|
|
|
/* If the alpha test is enabled but there's no color buffer,
|
|
|
|
|
* we still need to send alpha out the pipeline to our null
|
|
|
|
|
* renderbuffer.
|
|
|
|
|
*/
|
|
|
|
|
color.reg_offset += 3;
|
2011-03-13 00:23:40 -08:00
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, color_mrf + 3), color);
|
2011-03-11 17:39:49 -08:00
|
|
|
}
|
|
|
|
|
|
2011-03-13 00:25:36 -08:00
|
|
|
fs_inst *inst = emit(FS_OPCODE_FB_WRITE);
|
2010-10-08 15:11:42 -07:00
|
|
|
inst->base_mrf = 0;
|
2010-09-28 12:34:21 -07:00
|
|
|
inst->mlen = nr;
|
|
|
|
|
inst->eot = true;
|
2010-10-06 09:57:55 -07:00
|
|
|
inst->header_present = header_present;
|
2010-09-28 12:34:21 -07:00
|
|
|
}
|
2010-08-26 14:42:06 -07:00
|
|
|
|
|
|
|
|
this->current_annotation = NULL;
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-26 12:12:00 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::generate_fb_write(fs_inst *inst)
|
|
|
|
|
{
|
2010-09-28 12:34:21 -07:00
|
|
|
GLboolean eot = inst->eot;
|
2010-10-04 15:07:17 -07:00
|
|
|
struct brw_reg implied_header;
|
2010-08-26 12:12:00 -07:00
|
|
|
|
|
|
|
|
/* Header is 2 regs, g0 and g1 are the contents. g0 will be implied
|
|
|
|
|
* move, here's g1.
|
|
|
|
|
*/
|
|
|
|
|
brw_push_insn_state(p);
|
|
|
|
|
brw_set_mask_control(p, BRW_MASK_DISABLE);
|
|
|
|
|
brw_set_compression_control(p, BRW_COMPRESSION_NONE);
|
2010-10-04 15:07:17 -07:00
|
|
|
|
2010-10-06 09:57:55 -07:00
|
|
|
if (inst->header_present) {
|
|
|
|
|
if (intel->gen >= 6) {
|
|
|
|
|
brw_MOV(p,
|
2010-10-08 15:11:42 -07:00
|
|
|
brw_message_reg(inst->base_mrf),
|
2010-10-06 09:57:55 -07:00
|
|
|
brw_vec8_grf(0, 0));
|
2010-10-26 10:31:08 -07:00
|
|
|
|
|
|
|
|
if (inst->target > 0) {
|
|
|
|
|
/* Set the render target index for choosing BLEND_STATE. */
|
|
|
|
|
brw_MOV(p, retype(brw_vec1_reg(BRW_MESSAGE_REGISTER_FILE, 0, 2),
|
|
|
|
|
BRW_REGISTER_TYPE_UD),
|
|
|
|
|
brw_imm_ud(inst->target));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Clear viewport index, render target array index. */
|
|
|
|
|
brw_AND(p, retype(brw_vec1_reg(BRW_MESSAGE_REGISTER_FILE, 0, 0),
|
|
|
|
|
BRW_REGISTER_TYPE_UD),
|
|
|
|
|
retype(brw_vec1_grf(0, 0), BRW_REGISTER_TYPE_UD),
|
|
|
|
|
brw_imm_ud(0xf7ff));
|
|
|
|
|
|
2010-10-06 09:57:55 -07:00
|
|
|
implied_header = brw_null_reg();
|
|
|
|
|
} else {
|
|
|
|
|
implied_header = retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UW);
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-04 15:07:17 -07:00
|
|
|
brw_MOV(p,
|
2010-10-08 15:11:42 -07:00
|
|
|
brw_message_reg(inst->base_mrf + 1),
|
2010-10-06 09:57:55 -07:00
|
|
|
brw_vec8_grf(1, 0));
|
2010-10-04 15:07:17 -07:00
|
|
|
} else {
|
2010-10-06 09:57:55 -07:00
|
|
|
implied_header = brw_null_reg();
|
2010-10-04 15:07:17 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-26 12:12:00 -07:00
|
|
|
brw_pop_insn_state(p);
|
|
|
|
|
|
|
|
|
|
brw_fb_WRITE(p,
|
|
|
|
|
8, /* dispatch_width */
|
|
|
|
|
retype(vec8(brw_null_reg()), BRW_REGISTER_TYPE_UW),
|
2010-10-08 15:11:42 -07:00
|
|
|
inst->base_mrf,
|
2010-10-04 15:07:17 -07:00
|
|
|
implied_header,
|
2010-09-28 12:34:21 -07:00
|
|
|
inst->target,
|
|
|
|
|
inst->mlen,
|
2010-08-26 12:12:00 -07:00
|
|
|
0,
|
2010-12-22 10:52:12 -05:00
|
|
|
eot,
|
|
|
|
|
inst->header_present);
|
2010-08-26 12:12:00 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-16 21:53:02 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::generate_linterp(fs_inst *inst,
|
|
|
|
|
struct brw_reg dst, struct brw_reg *src)
|
|
|
|
|
{
|
|
|
|
|
struct brw_reg delta_x = src[0];
|
|
|
|
|
struct brw_reg delta_y = src[1];
|
|
|
|
|
struct brw_reg interp = src[2];
|
|
|
|
|
|
|
|
|
|
if (brw->has_pln &&
|
|
|
|
|
delta_y.nr == delta_x.nr + 1 &&
|
|
|
|
|
(intel->gen >= 6 || (delta_x.nr & 1) == 0)) {
|
|
|
|
|
brw_PLN(p, dst, interp, delta_x);
|
|
|
|
|
} else {
|
|
|
|
|
brw_LINE(p, brw_null_reg(), interp, delta_x);
|
|
|
|
|
brw_MAC(p, dst, suboffset(interp, 1), delta_y);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::generate_math(fs_inst *inst,
|
|
|
|
|
struct brw_reg dst, struct brw_reg *src)
|
|
|
|
|
{
|
|
|
|
|
int op;
|
|
|
|
|
|
|
|
|
|
switch (inst->opcode) {
|
|
|
|
|
case FS_OPCODE_RCP:
|
|
|
|
|
op = BRW_MATH_FUNCTION_INV;
|
|
|
|
|
break;
|
|
|
|
|
case FS_OPCODE_RSQ:
|
|
|
|
|
op = BRW_MATH_FUNCTION_RSQ;
|
|
|
|
|
break;
|
|
|
|
|
case FS_OPCODE_SQRT:
|
|
|
|
|
op = BRW_MATH_FUNCTION_SQRT;
|
|
|
|
|
break;
|
|
|
|
|
case FS_OPCODE_EXP2:
|
|
|
|
|
op = BRW_MATH_FUNCTION_EXP;
|
|
|
|
|
break;
|
|
|
|
|
case FS_OPCODE_LOG2:
|
|
|
|
|
op = BRW_MATH_FUNCTION_LOG;
|
|
|
|
|
break;
|
|
|
|
|
case FS_OPCODE_POW:
|
|
|
|
|
op = BRW_MATH_FUNCTION_POW;
|
|
|
|
|
break;
|
|
|
|
|
case FS_OPCODE_SIN:
|
|
|
|
|
op = BRW_MATH_FUNCTION_SIN;
|
|
|
|
|
break;
|
|
|
|
|
case FS_OPCODE_COS:
|
|
|
|
|
op = BRW_MATH_FUNCTION_COS;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
assert(!"not reached: unknown math function");
|
|
|
|
|
op = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-11 13:19:47 -07:00
|
|
|
if (intel->gen >= 6) {
|
|
|
|
|
assert(inst->mlen == 0);
|
2010-10-08 14:35:34 -07:00
|
|
|
|
2010-10-11 13:19:47 -07:00
|
|
|
if (inst->opcode == FS_OPCODE_POW) {
|
|
|
|
|
brw_math2(p, dst, op, src[0], src[1]);
|
|
|
|
|
} else {
|
|
|
|
|
brw_math(p, dst,
|
|
|
|
|
op,
|
|
|
|
|
inst->saturate ? BRW_MATH_SATURATE_SATURATE :
|
|
|
|
|
BRW_MATH_SATURATE_NONE,
|
|
|
|
|
0, src[0],
|
|
|
|
|
BRW_MATH_DATA_VECTOR,
|
|
|
|
|
BRW_MATH_PRECISION_FULL);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
assert(inst->mlen >= 1);
|
|
|
|
|
|
|
|
|
|
brw_math(p, dst,
|
|
|
|
|
op,
|
|
|
|
|
inst->saturate ? BRW_MATH_SATURATE_SATURATE :
|
|
|
|
|
BRW_MATH_SATURATE_NONE,
|
|
|
|
|
inst->base_mrf, src[0],
|
|
|
|
|
BRW_MATH_DATA_VECTOR,
|
|
|
|
|
BRW_MATH_PRECISION_FULL);
|
2010-08-16 21:53:02 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-28 14:43:50 -07:00
|
|
|
void
|
2010-12-27 03:21:23 -08:00
|
|
|
fs_visitor::generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src)
|
2010-08-28 14:43:50 -07:00
|
|
|
{
|
2010-08-28 22:34:30 -07:00
|
|
|
int msg_type = -1;
|
|
|
|
|
int rlen = 4;
|
2010-10-01 13:37:40 -07:00
|
|
|
uint32_t simd_mode = BRW_SAMPLER_SIMD_MODE_SIMD8;
|
2010-08-28 14:43:50 -07:00
|
|
|
|
2010-10-06 11:04:02 -07:00
|
|
|
if (intel->gen >= 5) {
|
2010-08-28 22:34:30 -07:00
|
|
|
switch (inst->opcode) {
|
|
|
|
|
case FS_OPCODE_TEX:
|
|
|
|
|
if (inst->shadow_compare) {
|
2011-03-16 00:06:59 -07:00
|
|
|
msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_COMPARE;
|
2010-08-28 22:34:30 -07:00
|
|
|
} else {
|
2011-03-16 00:06:59 -07:00
|
|
|
msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE;
|
2010-08-28 22:34:30 -07:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case FS_OPCODE_TXB:
|
|
|
|
|
if (inst->shadow_compare) {
|
2011-03-16 00:06:59 -07:00
|
|
|
msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_BIAS_COMPARE;
|
2010-08-28 22:34:30 -07:00
|
|
|
} else {
|
2011-03-16 00:06:59 -07:00
|
|
|
msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_BIAS;
|
2010-08-28 22:34:30 -07:00
|
|
|
}
|
|
|
|
|
break;
|
2010-10-28 12:53:21 -07:00
|
|
|
case FS_OPCODE_TXL:
|
|
|
|
|
if (inst->shadow_compare) {
|
2011-03-16 00:06:59 -07:00
|
|
|
msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD_COMPARE;
|
2010-10-28 12:53:21 -07:00
|
|
|
} else {
|
2011-03-16 00:06:59 -07:00
|
|
|
msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD;
|
2010-10-28 12:53:21 -07:00
|
|
|
}
|
|
|
|
|
break;
|
2011-02-24 17:49:07 -08:00
|
|
|
case FS_OPCODE_TXD:
|
|
|
|
|
assert(!"TXD isn't supported on gen5+ yet.");
|
|
|
|
|
break;
|
2010-08-28 22:34:30 -07:00
|
|
|
}
|
2010-08-28 14:43:50 -07:00
|
|
|
} else {
|
2010-08-28 22:34:30 -07:00
|
|
|
switch (inst->opcode) {
|
|
|
|
|
case FS_OPCODE_TEX:
|
|
|
|
|
/* Note that G45 and older determines shadow compare and dispatch width
|
|
|
|
|
* from message length for most messages.
|
|
|
|
|
*/
|
2010-10-01 13:37:40 -07:00
|
|
|
msg_type = BRW_SAMPLER_MESSAGE_SIMD8_SAMPLE;
|
2010-08-28 22:34:30 -07:00
|
|
|
if (inst->shadow_compare) {
|
2010-10-14 17:01:06 -07:00
|
|
|
assert(inst->mlen == 6);
|
2010-08-28 22:34:30 -07:00
|
|
|
} else {
|
2010-10-14 17:01:06 -07:00
|
|
|
assert(inst->mlen <= 4);
|
2010-08-28 22:34:30 -07:00
|
|
|
}
|
2010-10-01 13:37:40 -07:00
|
|
|
break;
|
2010-08-28 22:34:30 -07:00
|
|
|
case FS_OPCODE_TXB:
|
|
|
|
|
if (inst->shadow_compare) {
|
2010-10-14 17:01:06 -07:00
|
|
|
assert(inst->mlen == 6);
|
2010-10-28 13:07:11 -07:00
|
|
|
msg_type = BRW_SAMPLER_MESSAGE_SIMD8_SAMPLE_BIAS_COMPARE;
|
2010-08-28 22:34:30 -07:00
|
|
|
} else {
|
2010-10-14 17:01:06 -07:00
|
|
|
assert(inst->mlen == 9);
|
2010-08-28 22:34:30 -07:00
|
|
|
msg_type = BRW_SAMPLER_MESSAGE_SIMD16_SAMPLE_BIAS;
|
2010-10-01 13:37:40 -07:00
|
|
|
simd_mode = BRW_SAMPLER_SIMD_MODE_SIMD16;
|
2010-08-28 22:34:30 -07:00
|
|
|
}
|
|
|
|
|
break;
|
2010-10-28 13:12:20 -07:00
|
|
|
case FS_OPCODE_TXL:
|
|
|
|
|
if (inst->shadow_compare) {
|
|
|
|
|
assert(inst->mlen == 6);
|
|
|
|
|
msg_type = BRW_SAMPLER_MESSAGE_SIMD8_SAMPLE_LOD_COMPARE;
|
|
|
|
|
} else {
|
|
|
|
|
assert(inst->mlen == 9);
|
|
|
|
|
msg_type = BRW_SAMPLER_MESSAGE_SIMD16_SAMPLE_LOD;
|
|
|
|
|
simd_mode = BRW_SAMPLER_SIMD_MODE_SIMD16;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2011-02-24 17:49:07 -08:00
|
|
|
case FS_OPCODE_TXD:
|
|
|
|
|
assert(!"TXD isn't supported on gen4 yet.");
|
|
|
|
|
break;
|
2010-08-28 22:34:30 -07:00
|
|
|
}
|
2010-08-28 14:43:50 -07:00
|
|
|
}
|
2010-08-28 22:34:30 -07:00
|
|
|
assert(msg_type != -1);
|
2010-08-28 14:43:50 -07:00
|
|
|
|
2010-10-01 13:37:40 -07:00
|
|
|
if (simd_mode == BRW_SAMPLER_SIMD_MODE_SIMD16) {
|
|
|
|
|
rlen = 8;
|
|
|
|
|
dst = vec16(dst);
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-28 14:43:50 -07:00
|
|
|
brw_SAMPLE(p,
|
|
|
|
|
retype(dst, BRW_REGISTER_TYPE_UW),
|
2010-10-08 15:11:42 -07:00
|
|
|
inst->base_mrf,
|
2010-12-27 03:21:23 -08:00
|
|
|
src,
|
2010-08-28 14:43:50 -07:00
|
|
|
SURF_INDEX_TEXTURE(inst->sampler),
|
|
|
|
|
inst->sampler,
|
|
|
|
|
WRITEMASK_XYZW,
|
|
|
|
|
msg_type,
|
2010-08-28 22:34:30 -07:00
|
|
|
rlen,
|
2010-10-08 15:11:42 -07:00
|
|
|
inst->mlen,
|
2010-08-28 14:43:50 -07:00
|
|
|
0,
|
|
|
|
|
1,
|
2010-10-01 13:37:40 -07:00
|
|
|
simd_mode);
|
2010-08-28 14:43:50 -07:00
|
|
|
}
|
|
|
|
|
|
2010-09-27 18:31:53 -07:00
|
|
|
|
|
|
|
|
/* For OPCODE_DDX and OPCODE_DDY, per channel of output we've got input
|
|
|
|
|
* looking like:
|
|
|
|
|
*
|
|
|
|
|
* arg0: ss0.tl ss0.tr ss0.bl ss0.br ss1.tl ss1.tr ss1.bl ss1.br
|
|
|
|
|
*
|
|
|
|
|
* and we're trying to produce:
|
|
|
|
|
*
|
|
|
|
|
* DDX DDY
|
|
|
|
|
* dst: (ss0.tr - ss0.tl) (ss0.tl - ss0.bl)
|
|
|
|
|
* (ss0.tr - ss0.tl) (ss0.tr - ss0.br)
|
|
|
|
|
* (ss0.br - ss0.bl) (ss0.tl - ss0.bl)
|
|
|
|
|
* (ss0.br - ss0.bl) (ss0.tr - ss0.br)
|
|
|
|
|
* (ss1.tr - ss1.tl) (ss1.tl - ss1.bl)
|
|
|
|
|
* (ss1.tr - ss1.tl) (ss1.tr - ss1.br)
|
|
|
|
|
* (ss1.br - ss1.bl) (ss1.tl - ss1.bl)
|
|
|
|
|
* (ss1.br - ss1.bl) (ss1.tr - ss1.br)
|
|
|
|
|
*
|
|
|
|
|
* and add another set of two more subspans if in 16-pixel dispatch mode.
|
|
|
|
|
*
|
|
|
|
|
* For DDX, it ends up being easy: width = 2, horiz=0 gets us the same result
|
|
|
|
|
* for each pair, and vertstride = 2 jumps us 2 elements after processing a
|
|
|
|
|
* pair. But for DDY, it's harder, as we want to produce the pairs swizzled
|
|
|
|
|
* between each other. We could probably do it like ddx and swizzle the right
|
|
|
|
|
* order later, but bail for now and just produce
|
|
|
|
|
* ((ss0.tl - ss0.bl)x4 (ss1.tl - ss1.bl)x4)
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::generate_ddx(fs_inst *inst, struct brw_reg dst, struct brw_reg src)
|
|
|
|
|
{
|
|
|
|
|
struct brw_reg src0 = brw_reg(src.file, src.nr, 1,
|
|
|
|
|
BRW_REGISTER_TYPE_F,
|
|
|
|
|
BRW_VERTICAL_STRIDE_2,
|
|
|
|
|
BRW_WIDTH_2,
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_0,
|
|
|
|
|
BRW_SWIZZLE_XYZW, WRITEMASK_XYZW);
|
|
|
|
|
struct brw_reg src1 = brw_reg(src.file, src.nr, 0,
|
|
|
|
|
BRW_REGISTER_TYPE_F,
|
|
|
|
|
BRW_VERTICAL_STRIDE_2,
|
|
|
|
|
BRW_WIDTH_2,
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_0,
|
|
|
|
|
BRW_SWIZZLE_XYZW, WRITEMASK_XYZW);
|
|
|
|
|
brw_ADD(p, dst, src0, negate(src1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::generate_ddy(fs_inst *inst, struct brw_reg dst, struct brw_reg src)
|
|
|
|
|
{
|
|
|
|
|
struct brw_reg src0 = brw_reg(src.file, src.nr, 0,
|
|
|
|
|
BRW_REGISTER_TYPE_F,
|
|
|
|
|
BRW_VERTICAL_STRIDE_4,
|
|
|
|
|
BRW_WIDTH_4,
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_0,
|
|
|
|
|
BRW_SWIZZLE_XYZW, WRITEMASK_XYZW);
|
|
|
|
|
struct brw_reg src1 = brw_reg(src.file, src.nr, 2,
|
|
|
|
|
BRW_REGISTER_TYPE_F,
|
|
|
|
|
BRW_VERTICAL_STRIDE_4,
|
|
|
|
|
BRW_WIDTH_4,
|
|
|
|
|
BRW_HORIZONTAL_STRIDE_0,
|
|
|
|
|
BRW_SWIZZLE_XYZW, WRITEMASK_XYZW);
|
|
|
|
|
brw_ADD(p, dst, src0, negate(src1));
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-28 22:56:33 -07:00
|
|
|
void
|
2010-10-10 11:54:05 -07:00
|
|
|
fs_visitor::generate_discard_not(fs_inst *inst, struct brw_reg mask)
|
|
|
|
|
{
|
2010-10-25 16:22:31 -07:00
|
|
|
if (intel->gen >= 6) {
|
|
|
|
|
/* Gen6 no longer has the mask reg for us to just read the
|
|
|
|
|
* active channels from. However, cmp updates just the channels
|
|
|
|
|
* of the flag reg that are enabled, so we can get at the
|
|
|
|
|
* channel enables that way. In this step, make a reg of ones
|
|
|
|
|
* we'll compare to.
|
|
|
|
|
*/
|
|
|
|
|
brw_MOV(p, mask, brw_imm_ud(1));
|
|
|
|
|
} else {
|
|
|
|
|
brw_push_insn_state(p);
|
|
|
|
|
brw_set_mask_control(p, BRW_MASK_DISABLE);
|
|
|
|
|
brw_NOT(p, mask, brw_mask_reg(1)); /* IMASK */
|
|
|
|
|
brw_pop_insn_state(p);
|
|
|
|
|
}
|
2010-10-10 11:54:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::generate_discard_and(fs_inst *inst, struct brw_reg mask)
|
2010-08-28 22:56:33 -07:00
|
|
|
{
|
2010-10-25 16:22:31 -07:00
|
|
|
if (intel->gen >= 6) {
|
|
|
|
|
struct brw_reg f0 = brw_flag_reg();
|
|
|
|
|
struct brw_reg g1 = retype(brw_vec1_grf(1, 7), BRW_REGISTER_TYPE_UW);
|
|
|
|
|
|
|
|
|
|
brw_push_insn_state(p);
|
|
|
|
|
brw_set_mask_control(p, BRW_MASK_DISABLE);
|
|
|
|
|
brw_MOV(p, f0, brw_imm_uw(0xffff)); /* inactive channels undiscarded */
|
|
|
|
|
brw_pop_insn_state(p);
|
|
|
|
|
|
|
|
|
|
brw_CMP(p, retype(brw_null_reg(), BRW_REGISTER_TYPE_UD),
|
|
|
|
|
BRW_CONDITIONAL_Z, mask, brw_imm_ud(0)); /* active channels fail test */
|
|
|
|
|
/* Undo CMP's whacking of predication*/
|
|
|
|
|
brw_set_predicate_control(p, BRW_PREDICATE_NONE);
|
|
|
|
|
|
|
|
|
|
brw_push_insn_state(p);
|
|
|
|
|
brw_set_mask_control(p, BRW_MASK_DISABLE);
|
|
|
|
|
brw_AND(p, g1, f0, g1);
|
|
|
|
|
brw_pop_insn_state(p);
|
|
|
|
|
} else {
|
|
|
|
|
struct brw_reg g0 = retype(brw_vec1_grf(0, 0), BRW_REGISTER_TYPE_UW);
|
2010-09-29 15:48:21 -07:00
|
|
|
|
2010-10-25 16:22:31 -07:00
|
|
|
mask = brw_uw1_reg(mask.file, mask.nr, 0);
|
|
|
|
|
|
|
|
|
|
brw_push_insn_state(p);
|
|
|
|
|
brw_set_mask_control(p, BRW_MASK_DISABLE);
|
|
|
|
|
brw_AND(p, g0, mask, g0);
|
|
|
|
|
brw_pop_insn_state(p);
|
|
|
|
|
}
|
2010-08-28 22:56:33 -07:00
|
|
|
}
|
|
|
|
|
|
2010-10-19 09:25:51 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::generate_spill(fs_inst *inst, struct brw_reg src)
|
|
|
|
|
{
|
|
|
|
|
assert(inst->mlen != 0);
|
|
|
|
|
|
|
|
|
|
brw_MOV(p,
|
|
|
|
|
retype(brw_message_reg(inst->base_mrf + 1), BRW_REGISTER_TYPE_UD),
|
|
|
|
|
retype(src, BRW_REGISTER_TYPE_UD));
|
2010-10-22 12:57:00 -07:00
|
|
|
brw_oword_block_write_scratch(p, brw_message_reg(inst->base_mrf), 1,
|
|
|
|
|
inst->offset);
|
2010-10-19 09:25:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::generate_unspill(fs_inst *inst, struct brw_reg dst)
|
|
|
|
|
{
|
|
|
|
|
assert(inst->mlen != 0);
|
|
|
|
|
|
|
|
|
|
/* Clear any post destination dependencies that would be ignored by
|
|
|
|
|
* the block read. See the B-Spec for pre-gen5 send instruction.
|
|
|
|
|
*
|
|
|
|
|
* This could use a better solution, since texture sampling and
|
|
|
|
|
* math reads could potentially run into it as well -- anywhere
|
|
|
|
|
* that we have a SEND with a destination that is a register that
|
|
|
|
|
* was written but not read within the last N instructions (what's
|
|
|
|
|
* N? unsure). This is rare because of dead code elimination, but
|
|
|
|
|
* not impossible.
|
|
|
|
|
*/
|
|
|
|
|
if (intel->gen == 4 && !intel->is_g4x)
|
|
|
|
|
brw_MOV(p, brw_null_reg(), dst);
|
|
|
|
|
|
2010-10-22 12:57:00 -07:00
|
|
|
brw_oword_block_read_scratch(p, dst, brw_message_reg(inst->base_mrf), 1,
|
|
|
|
|
inst->offset);
|
|
|
|
|
|
|
|
|
|
if (intel->gen == 4 && !intel->is_g4x) {
|
|
|
|
|
/* gen4 errata: destination from a send can't be used as a
|
|
|
|
|
* destination until it's been read. Just read it so we don't
|
|
|
|
|
* have to worry.
|
|
|
|
|
*/
|
|
|
|
|
brw_MOV(p, brw_null_reg(), dst);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::generate_pull_constant_load(fs_inst *inst, struct brw_reg dst)
|
|
|
|
|
{
|
|
|
|
|
assert(inst->mlen != 0);
|
|
|
|
|
|
|
|
|
|
/* Clear any post destination dependencies that would be ignored by
|
|
|
|
|
* the block read. See the B-Spec for pre-gen5 send instruction.
|
|
|
|
|
*
|
|
|
|
|
* This could use a better solution, since texture sampling and
|
|
|
|
|
* math reads could potentially run into it as well -- anywhere
|
|
|
|
|
* that we have a SEND with a destination that is a register that
|
|
|
|
|
* was written but not read within the last N instructions (what's
|
|
|
|
|
* N? unsure). This is rare because of dead code elimination, but
|
|
|
|
|
* not impossible.
|
|
|
|
|
*/
|
|
|
|
|
if (intel->gen == 4 && !intel->is_g4x)
|
|
|
|
|
brw_MOV(p, brw_null_reg(), dst);
|
|
|
|
|
|
|
|
|
|
brw_oword_block_read(p, dst, brw_message_reg(inst->base_mrf),
|
|
|
|
|
inst->offset, SURF_INDEX_FRAG_CONST_BUFFER);
|
2010-10-19 09:25:51 -07:00
|
|
|
|
|
|
|
|
if (intel->gen == 4 && !intel->is_g4x) {
|
|
|
|
|
/* gen4 errata: destination from a send can't be used as a
|
|
|
|
|
* destination until it's been read. Just read it so we don't
|
|
|
|
|
* have to worry.
|
|
|
|
|
*/
|
|
|
|
|
brw_MOV(p, brw_null_reg(), dst);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-17 16:02:58 -08:00
|
|
|
/**
|
|
|
|
|
* To be called after the last _mesa_add_state_reference() call, to
|
|
|
|
|
* set up prog_data.param[] for assign_curb_setup() and
|
|
|
|
|
* setup_pull_constants().
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::setup_paramvalues_refs()
|
|
|
|
|
{
|
|
|
|
|
/* Set up the pointers to ParamValues now that that array is finalized. */
|
|
|
|
|
for (unsigned int i = 0; i < c->prog_data.nr_params; i++) {
|
|
|
|
|
c->prog_data.param[i] =
|
|
|
|
|
fp->Base.Parameters->ParameterValues[this->param_index[i]] +
|
|
|
|
|
this->param_offset[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-26 16:39:41 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::assign_curb_setup()
|
|
|
|
|
{
|
2010-11-11 09:30:16 -08:00
|
|
|
c->prog_data.first_curbe_grf = c->nr_payload_regs;
|
2010-08-26 16:39:41 -07:00
|
|
|
c->prog_data.curb_read_length = ALIGN(c->prog_data.nr_params, 8) / 8;
|
|
|
|
|
|
|
|
|
|
/* Map the offsets in the UNIFORM file to fixed HW regs. */
|
|
|
|
|
foreach_iter(exec_list_iterator, iter, this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)iter.get();
|
|
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < 3; i++) {
|
|
|
|
|
if (inst->src[i].file == UNIFORM) {
|
|
|
|
|
int constant_nr = inst->src[i].hw_reg + inst->src[i].reg_offset;
|
2010-08-27 14:15:42 -07:00
|
|
|
struct brw_reg brw_reg = brw_vec1_grf(c->prog_data.first_curbe_grf +
|
|
|
|
|
constant_nr / 8,
|
|
|
|
|
constant_nr % 8);
|
2010-08-26 16:39:41 -07:00
|
|
|
|
2010-08-27 14:15:42 -07:00
|
|
|
inst->src[i].file = FIXED_HW_REG;
|
2010-10-25 12:52:29 -07:00
|
|
|
inst->src[i].fixed_hw_reg = retype(brw_reg, inst->src[i].type);
|
2010-08-26 16:39:41 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-16 21:53:02 -07:00
|
|
|
void
|
2010-10-01 12:15:48 -07:00
|
|
|
fs_visitor::calculate_urb_setup()
|
2010-08-16 21:53:02 -07:00
|
|
|
{
|
2010-10-01 12:15:48 -07:00
|
|
|
for (unsigned int i = 0; i < FRAG_ATTRIB_MAX; i++) {
|
|
|
|
|
urb_setup[i] = -1;
|
|
|
|
|
}
|
2010-08-16 21:53:02 -07:00
|
|
|
|
2010-10-01 12:15:48 -07:00
|
|
|
int urb_next = 0;
|
2010-08-16 21:53:02 -07:00
|
|
|
/* Figure out where each of the incoming setup attributes lands. */
|
2010-10-01 12:15:48 -07:00
|
|
|
if (intel->gen >= 6) {
|
|
|
|
|
for (unsigned int i = 0; i < FRAG_ATTRIB_MAX; i++) {
|
2010-10-06 12:10:31 -07:00
|
|
|
if (brw->fragment_program->Base.InputsRead & BITFIELD64_BIT(i)) {
|
2010-10-01 12:15:48 -07:00
|
|
|
urb_setup[i] = urb_next++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
/* FINISHME: The sf doesn't map VS->FS inputs for us very well. */
|
|
|
|
|
for (unsigned int i = 0; i < VERT_RESULT_MAX; i++) {
|
|
|
|
|
if (c->key.vp_outputs_written & BITFIELD64_BIT(i)) {
|
|
|
|
|
int fp_index;
|
|
|
|
|
|
|
|
|
|
if (i >= VERT_RESULT_VAR0)
|
|
|
|
|
fp_index = i - (VERT_RESULT_VAR0 - FRAG_ATTRIB_VAR0);
|
|
|
|
|
else if (i <= VERT_RESULT_TEX7)
|
|
|
|
|
fp_index = i;
|
|
|
|
|
else
|
|
|
|
|
fp_index = -1;
|
|
|
|
|
|
|
|
|
|
if (fp_index >= 0)
|
|
|
|
|
urb_setup[fp_index] = urb_next++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-08-16 21:53:02 -07:00
|
|
|
|
2010-10-01 12:15:48 -07:00
|
|
|
/* Each attribute is 4 setup channels, each of which is half a reg. */
|
|
|
|
|
c->prog_data.urb_read_length = urb_next * 2;
|
|
|
|
|
}
|
2010-08-16 21:53:02 -07:00
|
|
|
|
2010-10-01 12:15:48 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::assign_urb_setup()
|
|
|
|
|
{
|
|
|
|
|
int urb_start = c->prog_data.first_curbe_grf + c->prog_data.curb_read_length;
|
2010-08-16 21:53:02 -07:00
|
|
|
|
2010-10-01 12:15:48 -07:00
|
|
|
/* Offset all the urb_setup[] index by the actual position of the
|
|
|
|
|
* setup regs, now that the location of the constants has been chosen.
|
2010-08-16 21:53:02 -07:00
|
|
|
*/
|
|
|
|
|
foreach_iter(exec_list_iterator, iter, this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)iter.get();
|
|
|
|
|
|
2011-01-12 12:52:16 -08:00
|
|
|
if (inst->opcode == FS_OPCODE_LINTERP) {
|
|
|
|
|
assert(inst->src[2].file == FIXED_HW_REG);
|
|
|
|
|
inst->src[2].fixed_hw_reg.nr += urb_start;
|
|
|
|
|
}
|
2010-08-16 21:53:02 -07:00
|
|
|
|
2011-01-12 12:52:16 -08:00
|
|
|
if (inst->opcode == FS_OPCODE_CINTERP) {
|
|
|
|
|
assert(inst->src[0].file == FIXED_HW_REG);
|
|
|
|
|
inst->src[0].fixed_hw_reg.nr += urb_start;
|
|
|
|
|
}
|
2010-08-16 21:53:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this->first_non_payload_grf = urb_start + c->prog_data.urb_read_length;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-13 20:17:15 -07:00
|
|
|
/**
|
|
|
|
|
* Split large virtual GRFs into separate components if we can.
|
|
|
|
|
*
|
|
|
|
|
* This is mostly duplicated with what brw_fs_vector_splitting does,
|
|
|
|
|
* but that's really conservative because it's afraid of doing
|
|
|
|
|
* splitting that doesn't result in real progress after the rest of
|
|
|
|
|
* the optimization phases, which would cause infinite looping in
|
|
|
|
|
* optimization. We can do it once here, safely. This also has the
|
|
|
|
|
* opportunity to split interpolated values, or maybe even uniforms,
|
|
|
|
|
* which we don't have at the IR level.
|
|
|
|
|
*
|
|
|
|
|
* We want to split, because virtual GRFs are what we register
|
|
|
|
|
* allocate and spill (due to contiguousness requirements for some
|
|
|
|
|
* instructions), and they're what we naturally generate in the
|
|
|
|
|
* codegen process, but most virtual GRFs don't actually need to be
|
|
|
|
|
* contiguous sets of GRFs. If we split, we'll end up with reduced
|
|
|
|
|
* live intervals and better dead code elimination and coalescing.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::split_virtual_grfs()
|
|
|
|
|
{
|
|
|
|
|
int num_vars = this->virtual_grf_next;
|
|
|
|
|
bool split_grf[num_vars];
|
|
|
|
|
int new_virtual_grf[num_vars];
|
|
|
|
|
|
|
|
|
|
/* Try to split anything > 0 sized. */
|
|
|
|
|
for (int i = 0; i < num_vars; i++) {
|
|
|
|
|
if (this->virtual_grf_sizes[i] != 1)
|
|
|
|
|
split_grf[i] = true;
|
|
|
|
|
else
|
|
|
|
|
split_grf[i] = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (brw->has_pln) {
|
|
|
|
|
/* PLN opcodes rely on the delta_xy being contiguous. */
|
|
|
|
|
split_grf[this->delta_x.reg] = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach_iter(exec_list_iterator, iter, this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)iter.get();
|
|
|
|
|
|
|
|
|
|
/* Texturing produces 4 contiguous registers, so no splitting. */
|
2011-01-18 21:10:03 -08:00
|
|
|
if (inst->is_tex()) {
|
2010-10-13 20:17:15 -07:00
|
|
|
split_grf[inst->dst.reg] = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate new space for split regs. Note that the virtual
|
|
|
|
|
* numbers will be contiguous.
|
|
|
|
|
*/
|
|
|
|
|
for (int i = 0; i < num_vars; i++) {
|
|
|
|
|
if (split_grf[i]) {
|
|
|
|
|
new_virtual_grf[i] = virtual_grf_alloc(1);
|
|
|
|
|
for (int j = 2; j < this->virtual_grf_sizes[i]; j++) {
|
|
|
|
|
int reg = virtual_grf_alloc(1);
|
|
|
|
|
assert(reg == new_virtual_grf[i] + j - 1);
|
2010-11-13 21:19:59 -08:00
|
|
|
(void) reg;
|
2010-10-13 20:17:15 -07:00
|
|
|
}
|
|
|
|
|
this->virtual_grf_sizes[i] = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach_iter(exec_list_iterator, iter, this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)iter.get();
|
|
|
|
|
|
|
|
|
|
if (inst->dst.file == GRF &&
|
|
|
|
|
split_grf[inst->dst.reg] &&
|
|
|
|
|
inst->dst.reg_offset != 0) {
|
|
|
|
|
inst->dst.reg = (new_virtual_grf[inst->dst.reg] +
|
|
|
|
|
inst->dst.reg_offset - 1);
|
|
|
|
|
inst->dst.reg_offset = 0;
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
|
if (inst->src[i].file == GRF &&
|
|
|
|
|
split_grf[inst->src[i].reg] &&
|
|
|
|
|
inst->src[i].reg_offset != 0) {
|
|
|
|
|
inst->src[i].reg = (new_virtual_grf[inst->src[i].reg] +
|
|
|
|
|
inst->src[i].reg_offset - 1);
|
|
|
|
|
inst->src[i].reg_offset = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-01-14 11:53:38 -08:00
|
|
|
this->live_intervals_valid = false;
|
2010-10-13 20:17:15 -07:00
|
|
|
}
|
|
|
|
|
|
2010-10-22 12:57:00 -07:00
|
|
|
/**
|
|
|
|
|
* Choose accesses from the UNIFORM file to demote to using the pull
|
|
|
|
|
* constant buffer.
|
|
|
|
|
*
|
|
|
|
|
* We allow a fragment shader to have more than the specified minimum
|
|
|
|
|
* maximum number of fragment shader uniform components (64). If
|
|
|
|
|
* there are too many of these, they'd fill up all of register space.
|
|
|
|
|
* So, this will push some of them out to the pull constant buffer and
|
|
|
|
|
* update the program to load them.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::setup_pull_constants()
|
|
|
|
|
{
|
|
|
|
|
/* Only allow 16 registers (128 uniform components) as push constants. */
|
|
|
|
|
unsigned int max_uniform_components = 16 * 8;
|
|
|
|
|
if (c->prog_data.nr_params <= max_uniform_components)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* Just demote the end of the list. We could probably do better
|
|
|
|
|
* here, demoting things that are rarely used in the program first.
|
|
|
|
|
*/
|
|
|
|
|
int pull_uniform_base = max_uniform_components;
|
|
|
|
|
int pull_uniform_count = c->prog_data.nr_params - pull_uniform_base;
|
|
|
|
|
|
|
|
|
|
foreach_iter(exec_list_iterator, iter, this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)iter.get();
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
|
if (inst->src[i].file != UNIFORM)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
int uniform_nr = inst->src[i].hw_reg + inst->src[i].reg_offset;
|
|
|
|
|
if (uniform_nr < pull_uniform_base)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
fs_reg dst = fs_reg(this, glsl_type::float_type);
|
|
|
|
|
fs_inst *pull = new(mem_ctx) fs_inst(FS_OPCODE_PULL_CONSTANT_LOAD,
|
|
|
|
|
dst);
|
|
|
|
|
pull->offset = ((uniform_nr - pull_uniform_base) * 4) & ~15;
|
|
|
|
|
pull->ir = inst->ir;
|
|
|
|
|
pull->annotation = inst->annotation;
|
|
|
|
|
pull->base_mrf = 14;
|
|
|
|
|
pull->mlen = 1;
|
|
|
|
|
|
|
|
|
|
inst->insert_before(pull);
|
|
|
|
|
|
|
|
|
|
inst->src[i].file = GRF;
|
|
|
|
|
inst->src[i].reg = dst.reg;
|
|
|
|
|
inst->src[i].reg_offset = 0;
|
|
|
|
|
inst->src[i].smear = (uniform_nr - pull_uniform_base) & 3;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < pull_uniform_count; i++) {
|
|
|
|
|
c->prog_data.pull_param[i] = c->prog_data.param[pull_uniform_base + i];
|
2010-10-25 12:52:29 -07:00
|
|
|
c->prog_data.pull_param_convert[i] =
|
|
|
|
|
c->prog_data.param_convert[pull_uniform_base + i];
|
2010-10-22 12:57:00 -07:00
|
|
|
}
|
|
|
|
|
c->prog_data.nr_params -= pull_uniform_count;
|
|
|
|
|
c->prog_data.nr_pull_params = pull_uniform_count;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-29 15:20:12 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::calculate_live_intervals()
|
|
|
|
|
{
|
|
|
|
|
int num_vars = this->virtual_grf_next;
|
2011-01-21 14:32:31 -08:00
|
|
|
int *def = ralloc_array(mem_ctx, int, num_vars);
|
|
|
|
|
int *use = ralloc_array(mem_ctx, int, num_vars);
|
2010-09-29 15:20:12 -07:00
|
|
|
int loop_depth = 0;
|
|
|
|
|
int loop_start = 0;
|
2010-10-21 16:54:03 -07:00
|
|
|
int bb_header_ip = 0;
|
2010-09-29 15:20:12 -07:00
|
|
|
|
2011-01-12 10:10:01 -08:00
|
|
|
if (this->live_intervals_valid)
|
|
|
|
|
return;
|
|
|
|
|
|
2010-09-29 15:20:12 -07:00
|
|
|
for (int i = 0; i < num_vars; i++) {
|
2011-01-14 13:17:59 -08:00
|
|
|
def[i] = MAX_INSTRUCTION;
|
2010-10-03 15:01:20 -07:00
|
|
|
use[i] = -1;
|
2010-09-29 15:20:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int ip = 0;
|
|
|
|
|
foreach_iter(exec_list_iterator, iter, this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)iter.get();
|
|
|
|
|
|
|
|
|
|
if (inst->opcode == BRW_OPCODE_DO) {
|
|
|
|
|
if (loop_depth++ == 0)
|
|
|
|
|
loop_start = ip;
|
|
|
|
|
} else if (inst->opcode == BRW_OPCODE_WHILE) {
|
|
|
|
|
loop_depth--;
|
|
|
|
|
|
|
|
|
|
if (loop_depth == 0) {
|
2010-10-21 16:54:03 -07:00
|
|
|
/* Patches up the use of vars marked for being live across
|
|
|
|
|
* the whole loop.
|
2010-09-29 15:20:12 -07:00
|
|
|
*/
|
|
|
|
|
for (int i = 0; i < num_vars; i++) {
|
|
|
|
|
if (use[i] == loop_start) {
|
|
|
|
|
use[i] = ip;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
for (unsigned int i = 0; i < 3; i++) {
|
|
|
|
|
if (inst->src[i].file == GRF && inst->src[i].reg != 0) {
|
2010-10-21 16:54:03 -07:00
|
|
|
int reg = inst->src[i].reg;
|
|
|
|
|
|
2011-04-02 18:11:32 -10:00
|
|
|
if (!loop_depth) {
|
2010-10-21 16:54:03 -07:00
|
|
|
use[reg] = ip;
|
|
|
|
|
} else {
|
|
|
|
|
def[reg] = MIN2(loop_start, def[reg]);
|
|
|
|
|
use[reg] = loop_start;
|
|
|
|
|
|
|
|
|
|
/* Nobody else is going to go smash our start to
|
|
|
|
|
* later in the loop now, because def[reg] now
|
|
|
|
|
* points before the bb header.
|
|
|
|
|
*/
|
|
|
|
|
}
|
2010-09-29 15:20:12 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (inst->dst.file == GRF && inst->dst.reg != 0) {
|
2010-10-21 16:54:03 -07:00
|
|
|
int reg = inst->dst.reg;
|
|
|
|
|
|
2011-04-02 18:11:32 -10:00
|
|
|
if (!loop_depth) {
|
2010-10-21 16:54:03 -07:00
|
|
|
def[reg] = MIN2(def[reg], ip);
|
|
|
|
|
} else {
|
|
|
|
|
def[reg] = MIN2(def[reg], loop_start);
|
|
|
|
|
}
|
2010-09-29 15:20:12 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ip++;
|
2010-10-21 16:54:03 -07:00
|
|
|
|
|
|
|
|
/* Set the basic block header IP. This is used for determining
|
|
|
|
|
* if a complete def of single-register virtual GRF in a loop
|
|
|
|
|
* dominates a use in the same basic block. It's a quick way to
|
|
|
|
|
* reduce the live interval range of most register used in a
|
|
|
|
|
* loop.
|
|
|
|
|
*/
|
|
|
|
|
if (inst->opcode == BRW_OPCODE_IF ||
|
|
|
|
|
inst->opcode == BRW_OPCODE_ELSE ||
|
|
|
|
|
inst->opcode == BRW_OPCODE_ENDIF ||
|
|
|
|
|
inst->opcode == BRW_OPCODE_DO ||
|
|
|
|
|
inst->opcode == BRW_OPCODE_WHILE ||
|
|
|
|
|
inst->opcode == BRW_OPCODE_BREAK ||
|
|
|
|
|
inst->opcode == BRW_OPCODE_CONTINUE) {
|
|
|
|
|
bb_header_ip = ip;
|
|
|
|
|
}
|
2010-09-29 15:20:12 -07:00
|
|
|
}
|
|
|
|
|
|
2011-01-21 14:32:31 -08:00
|
|
|
ralloc_free(this->virtual_grf_def);
|
|
|
|
|
ralloc_free(this->virtual_grf_use);
|
2010-09-29 15:20:12 -07:00
|
|
|
this->virtual_grf_def = def;
|
|
|
|
|
this->virtual_grf_use = use;
|
2011-01-12 10:10:01 -08:00
|
|
|
|
|
|
|
|
this->live_intervals_valid = true;
|
2010-09-29 15:20:12 -07:00
|
|
|
}
|
|
|
|
|
|
2010-10-04 11:48:04 -07:00
|
|
|
/**
|
|
|
|
|
* Attempts to move immediate constants into the immediate
|
|
|
|
|
* constant slot of following instructions.
|
|
|
|
|
*
|
|
|
|
|
* Immediate constants are a bit tricky -- they have to be in the last
|
|
|
|
|
* operand slot, you can't do abs/negate on them,
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
fs_visitor::propagate_constants()
|
|
|
|
|
{
|
|
|
|
|
bool progress = false;
|
|
|
|
|
|
2011-01-12 10:10:01 -08:00
|
|
|
calculate_live_intervals();
|
|
|
|
|
|
2010-10-04 11:48:04 -07:00
|
|
|
foreach_iter(exec_list_iterator, iter, this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)iter.get();
|
|
|
|
|
|
|
|
|
|
if (inst->opcode != BRW_OPCODE_MOV ||
|
|
|
|
|
inst->predicated ||
|
|
|
|
|
inst->dst.file != GRF || inst->src[0].file != IMM ||
|
|
|
|
|
inst->dst.type != inst->src[0].type)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* Don't bother with cases where we should have had the
|
|
|
|
|
* operation on the constant folded in GLSL already.
|
|
|
|
|
*/
|
|
|
|
|
if (inst->saturate)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* Found a move of a constant to a GRF. Find anything else using the GRF
|
|
|
|
|
* before it's written, and replace it with the constant if we can.
|
|
|
|
|
*/
|
|
|
|
|
exec_list_iterator scan_iter = iter;
|
|
|
|
|
scan_iter.next();
|
|
|
|
|
for (; scan_iter.has_next(); scan_iter.next()) {
|
|
|
|
|
fs_inst *scan_inst = (fs_inst *)scan_iter.get();
|
|
|
|
|
|
|
|
|
|
if (scan_inst->opcode == BRW_OPCODE_DO ||
|
|
|
|
|
scan_inst->opcode == BRW_OPCODE_WHILE ||
|
|
|
|
|
scan_inst->opcode == BRW_OPCODE_ELSE ||
|
|
|
|
|
scan_inst->opcode == BRW_OPCODE_ENDIF) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = 2; i >= 0; i--) {
|
|
|
|
|
if (scan_inst->src[i].file != GRF ||
|
|
|
|
|
scan_inst->src[i].reg != inst->dst.reg ||
|
|
|
|
|
scan_inst->src[i].reg_offset != inst->dst.reg_offset)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* Don't bother with cases where we should have had the
|
|
|
|
|
* operation on the constant folded in GLSL already.
|
|
|
|
|
*/
|
|
|
|
|
if (scan_inst->src[i].negate || scan_inst->src[i].abs)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
switch (scan_inst->opcode) {
|
|
|
|
|
case BRW_OPCODE_MOV:
|
|
|
|
|
scan_inst->src[i] = inst->src[0];
|
|
|
|
|
progress = true;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BRW_OPCODE_MUL:
|
|
|
|
|
case BRW_OPCODE_ADD:
|
|
|
|
|
if (i == 1) {
|
|
|
|
|
scan_inst->src[i] = inst->src[0];
|
|
|
|
|
progress = true;
|
|
|
|
|
} else if (i == 0 && scan_inst->src[1].file != IMM) {
|
|
|
|
|
/* Fit this constant in by commuting the operands */
|
|
|
|
|
scan_inst->src[0] = scan_inst->src[1];
|
|
|
|
|
scan_inst->src[1] = inst->src[0];
|
2011-01-12 10:10:01 -08:00
|
|
|
progress = true;
|
2010-10-04 11:48:04 -07:00
|
|
|
}
|
|
|
|
|
break;
|
2010-10-05 10:25:22 -07:00
|
|
|
case BRW_OPCODE_CMP:
|
2010-11-18 11:34:54 +08:00
|
|
|
case BRW_OPCODE_SEL:
|
2010-10-05 10:25:22 -07:00
|
|
|
if (i == 1) {
|
|
|
|
|
scan_inst->src[i] = inst->src[0];
|
|
|
|
|
progress = true;
|
|
|
|
|
}
|
2010-10-04 11:48:04 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (scan_inst->dst.file == GRF &&
|
|
|
|
|
scan_inst->dst.reg == inst->dst.reg &&
|
|
|
|
|
(scan_inst->dst.reg_offset == inst->dst.reg_offset ||
|
2011-01-18 21:10:03 -08:00
|
|
|
scan_inst->is_tex())) {
|
2010-10-04 11:48:04 -07:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-12 10:10:01 -08:00
|
|
|
if (progress)
|
|
|
|
|
this->live_intervals_valid = false;
|
|
|
|
|
|
2010-10-04 11:48:04 -07:00
|
|
|
return progress;
|
|
|
|
|
}
|
2010-10-03 15:15:18 -07:00
|
|
|
/**
|
|
|
|
|
* Must be called after calculate_live_intervales() to remove unused
|
|
|
|
|
* writes to registers -- register allocation will fail otherwise
|
|
|
|
|
* because something deffed but not used won't be considered to
|
|
|
|
|
* interfere with other regs.
|
|
|
|
|
*/
|
|
|
|
|
bool
|
|
|
|
|
fs_visitor::dead_code_eliminate()
|
|
|
|
|
{
|
|
|
|
|
bool progress = false;
|
2010-11-18 10:44:34 +08:00
|
|
|
int pc = 0;
|
2010-10-03 15:15:18 -07:00
|
|
|
|
2011-01-12 10:10:01 -08:00
|
|
|
calculate_live_intervals();
|
|
|
|
|
|
2010-10-03 15:15:18 -07:00
|
|
|
foreach_iter(exec_list_iterator, iter, this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)iter.get();
|
|
|
|
|
|
2010-11-18 10:44:34 +08:00
|
|
|
if (inst->dst.file == GRF && this->virtual_grf_use[inst->dst.reg] <= pc) {
|
2010-10-03 15:15:18 -07:00
|
|
|
inst->remove();
|
|
|
|
|
progress = true;
|
|
|
|
|
}
|
2010-11-18 10:44:34 +08:00
|
|
|
|
|
|
|
|
pc++;
|
2010-10-03 15:15:18 -07:00
|
|
|
}
|
|
|
|
|
|
2011-01-12 10:10:01 -08:00
|
|
|
if (progress)
|
|
|
|
|
live_intervals_valid = false;
|
|
|
|
|
|
2010-10-03 15:15:18 -07:00
|
|
|
return progress;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-05 10:29:42 -07:00
|
|
|
bool
|
|
|
|
|
fs_visitor::register_coalesce()
|
|
|
|
|
{
|
|
|
|
|
bool progress = false;
|
2011-01-11 15:13:49 -08:00
|
|
|
int if_depth = 0;
|
|
|
|
|
int loop_depth = 0;
|
2010-10-05 10:29:42 -07:00
|
|
|
|
|
|
|
|
foreach_iter(exec_list_iterator, iter, this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)iter.get();
|
|
|
|
|
|
2011-01-11 15:13:49 -08:00
|
|
|
/* Make sure that we dominate the instructions we're going to
|
|
|
|
|
* scan for interfering with our coalescing, or we won't have
|
|
|
|
|
* scanned enough to see if anything interferes with our
|
|
|
|
|
* coalescing. We don't dominate the following instructions if
|
|
|
|
|
* we're in a loop or an if block.
|
|
|
|
|
*/
|
|
|
|
|
switch (inst->opcode) {
|
|
|
|
|
case BRW_OPCODE_DO:
|
|
|
|
|
loop_depth++;
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_WHILE:
|
|
|
|
|
loop_depth--;
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_IF:
|
|
|
|
|
if_depth++;
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_ENDIF:
|
|
|
|
|
if_depth--;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (loop_depth || if_depth)
|
|
|
|
|
continue;
|
|
|
|
|
|
2010-10-05 10:29:42 -07:00
|
|
|
if (inst->opcode != BRW_OPCODE_MOV ||
|
|
|
|
|
inst->predicated ||
|
|
|
|
|
inst->saturate ||
|
|
|
|
|
inst->dst.file != GRF || inst->src[0].file != GRF ||
|
|
|
|
|
inst->dst.type != inst->src[0].type)
|
|
|
|
|
continue;
|
|
|
|
|
|
2011-02-19 01:05:11 -08:00
|
|
|
bool has_source_modifiers = inst->src[0].abs || inst->src[0].negate;
|
|
|
|
|
|
2010-10-05 10:29:42 -07:00
|
|
|
/* Found a move of a GRF to a GRF. Let's see if we can coalesce
|
|
|
|
|
* them: check for no writes to either one until the exit of the
|
|
|
|
|
* program.
|
|
|
|
|
*/
|
|
|
|
|
bool interfered = false;
|
|
|
|
|
exec_list_iterator scan_iter = iter;
|
|
|
|
|
scan_iter.next();
|
|
|
|
|
for (; scan_iter.has_next(); scan_iter.next()) {
|
|
|
|
|
fs_inst *scan_inst = (fs_inst *)scan_iter.get();
|
|
|
|
|
|
|
|
|
|
if (scan_inst->dst.file == GRF) {
|
|
|
|
|
if (scan_inst->dst.reg == inst->dst.reg &&
|
|
|
|
|
(scan_inst->dst.reg_offset == inst->dst.reg_offset ||
|
2011-01-18 21:10:03 -08:00
|
|
|
scan_inst->is_tex())) {
|
2010-10-05 10:29:42 -07:00
|
|
|
interfered = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (scan_inst->dst.reg == inst->src[0].reg &&
|
|
|
|
|
(scan_inst->dst.reg_offset == inst->src[0].reg_offset ||
|
2011-01-18 21:10:03 -08:00
|
|
|
scan_inst->is_tex())) {
|
2010-10-05 10:29:42 -07:00
|
|
|
interfered = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-02-19 01:05:11 -08:00
|
|
|
|
|
|
|
|
/* The gen6 MATH instruction can't handle source modifiers, so avoid
|
|
|
|
|
* coalescing those for now. We should do something more specific.
|
|
|
|
|
*/
|
|
|
|
|
if (intel->gen == 6 && scan_inst->is_math() && has_source_modifiers) {
|
|
|
|
|
interfered = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2010-10-05 10:29:42 -07:00
|
|
|
}
|
|
|
|
|
if (interfered) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Rewrite the later usage to point at the source of the move to
|
|
|
|
|
* be removed.
|
|
|
|
|
*/
|
|
|
|
|
for (exec_list_iterator scan_iter = iter; scan_iter.has_next();
|
|
|
|
|
scan_iter.next()) {
|
|
|
|
|
fs_inst *scan_inst = (fs_inst *)scan_iter.get();
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
|
if (scan_inst->src[i].file == GRF &&
|
|
|
|
|
scan_inst->src[i].reg == inst->dst.reg &&
|
|
|
|
|
scan_inst->src[i].reg_offset == inst->dst.reg_offset) {
|
|
|
|
|
scan_inst->src[i].reg = inst->src[0].reg;
|
|
|
|
|
scan_inst->src[i].reg_offset = inst->src[0].reg_offset;
|
|
|
|
|
scan_inst->src[i].abs |= inst->src[0].abs;
|
|
|
|
|
scan_inst->src[i].negate ^= inst->src[0].negate;
|
2010-10-22 12:57:00 -07:00
|
|
|
scan_inst->src[i].smear = inst->src[0].smear;
|
2010-10-05 10:29:42 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inst->remove();
|
|
|
|
|
progress = true;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-12 10:10:01 -08:00
|
|
|
if (progress)
|
|
|
|
|
live_intervals_valid = false;
|
|
|
|
|
|
2010-10-05 10:29:42 -07:00
|
|
|
return progress;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-08 14:00:14 -07:00
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
fs_visitor::compute_to_mrf()
|
|
|
|
|
{
|
|
|
|
|
bool progress = false;
|
|
|
|
|
int next_ip = 0;
|
|
|
|
|
|
2011-01-12 10:10:01 -08:00
|
|
|
calculate_live_intervals();
|
|
|
|
|
|
2010-10-08 14:00:14 -07:00
|
|
|
foreach_iter(exec_list_iterator, iter, this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)iter.get();
|
|
|
|
|
|
|
|
|
|
int ip = next_ip;
|
|
|
|
|
next_ip++;
|
|
|
|
|
|
|
|
|
|
if (inst->opcode != BRW_OPCODE_MOV ||
|
|
|
|
|
inst->predicated ||
|
|
|
|
|
inst->dst.file != MRF || inst->src[0].file != GRF ||
|
|
|
|
|
inst->dst.type != inst->src[0].type ||
|
2010-10-22 12:57:00 -07:00
|
|
|
inst->src[0].abs || inst->src[0].negate || inst->src[0].smear != -1)
|
2010-10-08 14:00:14 -07:00
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* Can't compute-to-MRF this GRF if someone else was going to
|
|
|
|
|
* read it later.
|
|
|
|
|
*/
|
|
|
|
|
if (this->virtual_grf_use[inst->src[0].reg] > ip)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* Found a move of a GRF to a MRF. Let's see if we can go
|
|
|
|
|
* rewrite the thing that made this GRF to write into the MRF.
|
|
|
|
|
*/
|
|
|
|
|
fs_inst *scan_inst;
|
|
|
|
|
for (scan_inst = (fs_inst *)inst->prev;
|
|
|
|
|
scan_inst->prev != NULL;
|
|
|
|
|
scan_inst = (fs_inst *)scan_inst->prev) {
|
|
|
|
|
if (scan_inst->dst.file == GRF &&
|
|
|
|
|
scan_inst->dst.reg == inst->src[0].reg) {
|
|
|
|
|
/* Found the last thing to write our reg we want to turn
|
|
|
|
|
* into a compute-to-MRF.
|
|
|
|
|
*/
|
|
|
|
|
|
2011-01-18 21:10:03 -08:00
|
|
|
if (scan_inst->is_tex()) {
|
2010-10-08 14:00:14 -07:00
|
|
|
/* texturing writes several continuous regs, so we can't
|
|
|
|
|
* compute-to-mrf that.
|
|
|
|
|
*/
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If it's predicated, it (probably) didn't populate all
|
|
|
|
|
* the channels.
|
|
|
|
|
*/
|
|
|
|
|
if (scan_inst->predicated)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* SEND instructions can't have MRF as a destination. */
|
|
|
|
|
if (scan_inst->mlen)
|
|
|
|
|
break;
|
|
|
|
|
|
2010-10-11 13:38:38 -07:00
|
|
|
if (intel->gen >= 6) {
|
|
|
|
|
/* gen6 math instructions must have the destination be
|
|
|
|
|
* GRF, so no compute-to-MRF for them.
|
|
|
|
|
*/
|
2011-01-18 22:48:11 -08:00
|
|
|
if (scan_inst->is_math()) {
|
2010-10-11 13:38:38 -07:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-08 14:00:14 -07:00
|
|
|
if (scan_inst->dst.reg_offset == inst->src[0].reg_offset) {
|
|
|
|
|
/* Found the creator of our MRF's source value. */
|
2010-11-18 15:03:50 +08:00
|
|
|
scan_inst->dst.file = MRF;
|
|
|
|
|
scan_inst->dst.hw_reg = inst->dst.hw_reg;
|
|
|
|
|
scan_inst->saturate |= inst->saturate;
|
|
|
|
|
inst->remove();
|
|
|
|
|
progress = true;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We don't handle flow control here. Most computation of
|
|
|
|
|
* values that end up in MRFs are shortly before the MRF
|
|
|
|
|
* write anyway.
|
|
|
|
|
*/
|
|
|
|
|
if (scan_inst->opcode == BRW_OPCODE_DO ||
|
|
|
|
|
scan_inst->opcode == BRW_OPCODE_WHILE ||
|
2011-01-18 13:12:25 -08:00
|
|
|
scan_inst->opcode == BRW_OPCODE_ELSE ||
|
2010-11-18 15:03:50 +08:00
|
|
|
scan_inst->opcode == BRW_OPCODE_ENDIF) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* You can't read from an MRF, so if someone else reads our
|
|
|
|
|
* MRF's source GRF that we wanted to rewrite, that stops us.
|
|
|
|
|
*/
|
|
|
|
|
bool interfered = false;
|
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
|
if (scan_inst->src[i].file == GRF &&
|
|
|
|
|
scan_inst->src[i].reg == inst->src[0].reg &&
|
|
|
|
|
scan_inst->src[i].reg_offset == inst->src[0].reg_offset) {
|
|
|
|
|
interfered = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (interfered)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (scan_inst->dst.file == MRF &&
|
|
|
|
|
scan_inst->dst.hw_reg == inst->dst.hw_reg) {
|
|
|
|
|
/* Somebody else wrote our MRF here, so we can't can't
|
|
|
|
|
* compute-to-MRF before that.
|
|
|
|
|
*/
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (scan_inst->mlen > 0) {
|
|
|
|
|
/* Found a SEND instruction, which means that there are
|
|
|
|
|
* live values in MRFs from base_mrf to base_mrf +
|
|
|
|
|
* scan_inst->mlen - 1. Don't go pushing our MRF write up
|
|
|
|
|
* above it.
|
|
|
|
|
*/
|
|
|
|
|
if (inst->dst.hw_reg >= scan_inst->base_mrf &&
|
|
|
|
|
inst->dst.hw_reg < scan_inst->base_mrf + scan_inst->mlen) {
|
2010-10-08 14:00:14 -07:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return progress;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-19 15:57:05 +08:00
|
|
|
/**
|
|
|
|
|
* Walks through basic blocks, locking for repeated MRF writes and
|
|
|
|
|
* removing the later ones.
|
|
|
|
|
*/
|
|
|
|
|
bool
|
|
|
|
|
fs_visitor::remove_duplicate_mrf_writes()
|
|
|
|
|
{
|
|
|
|
|
fs_inst *last_mrf_move[16];
|
|
|
|
|
bool progress = false;
|
|
|
|
|
|
|
|
|
|
memset(last_mrf_move, 0, sizeof(last_mrf_move));
|
|
|
|
|
|
|
|
|
|
foreach_iter(exec_list_iterator, iter, this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)iter.get();
|
|
|
|
|
|
|
|
|
|
switch (inst->opcode) {
|
|
|
|
|
case BRW_OPCODE_DO:
|
|
|
|
|
case BRW_OPCODE_WHILE:
|
|
|
|
|
case BRW_OPCODE_IF:
|
|
|
|
|
case BRW_OPCODE_ELSE:
|
|
|
|
|
case BRW_OPCODE_ENDIF:
|
|
|
|
|
memset(last_mrf_move, 0, sizeof(last_mrf_move));
|
|
|
|
|
continue;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (inst->opcode == BRW_OPCODE_MOV &&
|
|
|
|
|
inst->dst.file == MRF) {
|
|
|
|
|
fs_inst *prev_inst = last_mrf_move[inst->dst.hw_reg];
|
|
|
|
|
if (prev_inst && inst->equals(prev_inst)) {
|
|
|
|
|
inst->remove();
|
|
|
|
|
progress = true;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Clear out the last-write records for MRFs that were overwritten. */
|
|
|
|
|
if (inst->dst.file == MRF) {
|
|
|
|
|
last_mrf_move[inst->dst.hw_reg] = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (inst->mlen > 0) {
|
2011-01-18 13:28:32 -08:00
|
|
|
/* Found a SEND instruction, which will include two or fewer
|
2010-11-19 15:57:05 +08:00
|
|
|
* implied MRF writes. We could do better here.
|
|
|
|
|
*/
|
|
|
|
|
for (int i = 0; i < implied_mrf_writes(inst); i++) {
|
|
|
|
|
last_mrf_move[inst->base_mrf + i] = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Clear out any MRF move records whose sources got overwritten. */
|
|
|
|
|
if (inst->dst.file == GRF) {
|
|
|
|
|
for (unsigned int i = 0; i < Elements(last_mrf_move); i++) {
|
|
|
|
|
if (last_mrf_move[i] &&
|
|
|
|
|
last_mrf_move[i]->src[0].reg == inst->dst.reg) {
|
|
|
|
|
last_mrf_move[i] = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (inst->opcode == BRW_OPCODE_MOV &&
|
|
|
|
|
inst->dst.file == MRF &&
|
|
|
|
|
inst->src[0].file == GRF &&
|
|
|
|
|
!inst->predicated) {
|
|
|
|
|
last_mrf_move[inst->dst.hw_reg] = inst;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return progress;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-29 15:20:12 -07:00
|
|
|
bool
|
|
|
|
|
fs_visitor::virtual_grf_interferes(int a, int b)
|
|
|
|
|
{
|
|
|
|
|
int start = MAX2(this->virtual_grf_def[a], this->virtual_grf_def[b]);
|
|
|
|
|
int end = MIN2(this->virtual_grf_use[a], this->virtual_grf_use[b]);
|
|
|
|
|
|
2011-01-14 13:17:59 -08:00
|
|
|
/* We can't handle dead register writes here, without iterating
|
|
|
|
|
* over the whole instruction stream to find every single dead
|
|
|
|
|
* write to that register to compare to the live interval of the
|
|
|
|
|
* other register. Just assert that dead_code_eliminate() has been
|
|
|
|
|
* called.
|
|
|
|
|
*/
|
|
|
|
|
assert((this->virtual_grf_use[a] != -1 ||
|
|
|
|
|
this->virtual_grf_def[a] == MAX_INSTRUCTION) &&
|
|
|
|
|
(this->virtual_grf_use[b] != -1 ||
|
|
|
|
|
this->virtual_grf_def[b] == MAX_INSTRUCTION));
|
2010-10-03 15:01:20 -07:00
|
|
|
|
2010-10-10 12:13:35 -07:00
|
|
|
return start < end;
|
2010-09-29 15:20:12 -07:00
|
|
|
}
|
|
|
|
|
|
2010-08-16 21:53:02 -07:00
|
|
|
static struct brw_reg brw_reg_from_fs_reg(fs_reg *reg)
|
|
|
|
|
{
|
|
|
|
|
struct brw_reg brw_reg;
|
|
|
|
|
|
|
|
|
|
switch (reg->file) {
|
|
|
|
|
case GRF:
|
|
|
|
|
case ARF:
|
|
|
|
|
case MRF:
|
2010-10-22 12:57:00 -07:00
|
|
|
if (reg->smear == -1) {
|
|
|
|
|
brw_reg = brw_vec8_reg(reg->file,
|
|
|
|
|
reg->hw_reg, 0);
|
|
|
|
|
} else {
|
|
|
|
|
brw_reg = brw_vec1_reg(reg->file,
|
|
|
|
|
reg->hw_reg, reg->smear);
|
|
|
|
|
}
|
2010-08-16 21:53:02 -07:00
|
|
|
brw_reg = retype(brw_reg, reg->type);
|
|
|
|
|
break;
|
|
|
|
|
case IMM:
|
|
|
|
|
switch (reg->type) {
|
|
|
|
|
case BRW_REGISTER_TYPE_F:
|
|
|
|
|
brw_reg = brw_imm_f(reg->imm.f);
|
|
|
|
|
break;
|
|
|
|
|
case BRW_REGISTER_TYPE_D:
|
2010-08-27 13:47:37 -07:00
|
|
|
brw_reg = brw_imm_d(reg->imm.i);
|
2010-08-16 21:53:02 -07:00
|
|
|
break;
|
|
|
|
|
case BRW_REGISTER_TYPE_UD:
|
2010-08-27 13:47:37 -07:00
|
|
|
brw_reg = brw_imm_ud(reg->imm.u);
|
2010-08-16 21:53:02 -07:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
assert(!"not reached");
|
2010-12-09 14:17:17 -08:00
|
|
|
brw_reg = brw_null_reg();
|
2010-08-16 21:53:02 -07:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case FIXED_HW_REG:
|
|
|
|
|
brw_reg = reg->fixed_hw_reg;
|
|
|
|
|
break;
|
|
|
|
|
case BAD_FILE:
|
|
|
|
|
/* Probably unused. */
|
|
|
|
|
brw_reg = brw_null_reg();
|
2010-08-26 16:39:41 -07:00
|
|
|
break;
|
|
|
|
|
case UNIFORM:
|
|
|
|
|
assert(!"not reached");
|
|
|
|
|
brw_reg = brw_null_reg();
|
|
|
|
|
break;
|
2010-12-09 14:17:17 -08:00
|
|
|
default:
|
|
|
|
|
assert(!"not reached");
|
|
|
|
|
brw_reg = brw_null_reg();
|
|
|
|
|
break;
|
2010-08-16 21:53:02 -07:00
|
|
|
}
|
|
|
|
|
if (reg->abs)
|
|
|
|
|
brw_reg = brw_abs(brw_reg);
|
|
|
|
|
if (reg->negate)
|
|
|
|
|
brw_reg = negate(brw_reg);
|
|
|
|
|
|
|
|
|
|
return brw_reg;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-26 12:12:00 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::generate_code()
|
|
|
|
|
{
|
2010-08-26 14:42:06 -07:00
|
|
|
int last_native_inst = 0;
|
2010-10-22 13:17:38 -07:00
|
|
|
const char *last_annotation_string = NULL;
|
|
|
|
|
ir_instruction *last_annotation_ir = NULL;
|
|
|
|
|
|
2011-02-19 16:12:28 -08:00
|
|
|
int if_stack_array_size = 16;
|
|
|
|
|
int loop_stack_array_size = 16;
|
|
|
|
|
int if_stack_depth = 0, loop_stack_depth = 0;
|
|
|
|
|
brw_instruction **if_stack =
|
|
|
|
|
rzalloc_array(this->mem_ctx, brw_instruction *, if_stack_array_size);
|
|
|
|
|
brw_instruction **loop_stack =
|
|
|
|
|
rzalloc_array(this->mem_ctx, brw_instruction *, loop_stack_array_size);
|
|
|
|
|
int *if_depth_in_loop =
|
|
|
|
|
rzalloc_array(this->mem_ctx, int, loop_stack_array_size);
|
|
|
|
|
|
|
|
|
|
|
2010-11-02 19:55:07 -07:00
|
|
|
if (unlikely(INTEL_DEBUG & DEBUG_WM)) {
|
2010-10-22 13:17:38 -07:00
|
|
|
printf("Native code for fragment shader %d:\n",
|
2011-03-12 15:00:14 -08:00
|
|
|
ctx->Shader.CurrentFragmentProgram->Name);
|
2010-10-22 13:17:38 -07:00
|
|
|
}
|
2010-08-28 23:31:09 -07:00
|
|
|
|
2010-08-26 12:12:00 -07:00
|
|
|
foreach_iter(exec_list_iterator, iter, this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)iter.get();
|
2010-08-16 21:53:02 -07:00
|
|
|
struct brw_reg src[3], dst;
|
|
|
|
|
|
2010-11-02 19:55:07 -07:00
|
|
|
if (unlikely(INTEL_DEBUG & DEBUG_WM)) {
|
2010-10-22 13:17:38 -07:00
|
|
|
if (last_annotation_ir != inst->ir) {
|
|
|
|
|
last_annotation_ir = inst->ir;
|
|
|
|
|
if (last_annotation_ir) {
|
|
|
|
|
printf(" ");
|
|
|
|
|
last_annotation_ir->print();
|
|
|
|
|
printf("\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (last_annotation_string != inst->annotation) {
|
|
|
|
|
last_annotation_string = inst->annotation;
|
|
|
|
|
if (last_annotation_string)
|
|
|
|
|
printf(" %s\n", last_annotation_string);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-16 21:53:02 -07:00
|
|
|
for (unsigned int i = 0; i < 3; i++) {
|
|
|
|
|
src[i] = brw_reg_from_fs_reg(&inst->src[i]);
|
2010-08-26 12:12:00 -07:00
|
|
|
}
|
2010-08-16 21:53:02 -07:00
|
|
|
dst = brw_reg_from_fs_reg(&inst->dst);
|
2010-08-26 12:12:00 -07:00
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
brw_set_conditionalmod(p, inst->conditional_mod);
|
|
|
|
|
brw_set_predicate_control(p, inst->predicated);
|
2010-11-19 10:36:06 +08:00
|
|
|
brw_set_saturate(p, inst->saturate);
|
2010-08-15 18:58:58 -07:00
|
|
|
|
2010-08-26 12:12:00 -07:00
|
|
|
switch (inst->opcode) {
|
|
|
|
|
case BRW_OPCODE_MOV:
|
|
|
|
|
brw_MOV(p, dst, src[0]);
|
|
|
|
|
break;
|
2010-08-16 21:53:02 -07:00
|
|
|
case BRW_OPCODE_ADD:
|
|
|
|
|
brw_ADD(p, dst, src[0], src[1]);
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_MUL:
|
|
|
|
|
brw_MUL(p, dst, src[0], src[1]);
|
|
|
|
|
break;
|
2010-08-27 13:29:45 -07:00
|
|
|
|
2010-08-27 13:24:41 -07:00
|
|
|
case BRW_OPCODE_FRC:
|
|
|
|
|
brw_FRC(p, dst, src[0]);
|
|
|
|
|
break;
|
2010-08-27 13:29:45 -07:00
|
|
|
case BRW_OPCODE_RNDD:
|
|
|
|
|
brw_RNDD(p, dst, src[0]);
|
|
|
|
|
break;
|
2010-10-14 14:31:54 -07:00
|
|
|
case BRW_OPCODE_RNDE:
|
|
|
|
|
brw_RNDE(p, dst, src[0]);
|
|
|
|
|
break;
|
2010-08-27 13:29:45 -07:00
|
|
|
case BRW_OPCODE_RNDZ:
|
|
|
|
|
brw_RNDZ(p, dst, src[0]);
|
|
|
|
|
break;
|
2010-08-27 13:14:15 -07:00
|
|
|
|
|
|
|
|
case BRW_OPCODE_AND:
|
|
|
|
|
brw_AND(p, dst, src[0], src[1]);
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_OR:
|
|
|
|
|
brw_OR(p, dst, src[0], src[1]);
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_XOR:
|
|
|
|
|
brw_XOR(p, dst, src[0], src[1]);
|
|
|
|
|
break;
|
2010-10-06 11:19:48 -07:00
|
|
|
case BRW_OPCODE_NOT:
|
|
|
|
|
brw_NOT(p, dst, src[0]);
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_ASR:
|
|
|
|
|
brw_ASR(p, dst, src[0], src[1]);
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_SHR:
|
|
|
|
|
brw_SHR(p, dst, src[0], src[1]);
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_SHL:
|
|
|
|
|
brw_SHL(p, dst, src[0], src[1]);
|
|
|
|
|
break;
|
2010-08-27 13:14:15 -07:00
|
|
|
|
2010-08-27 12:54:12 -07:00
|
|
|
case BRW_OPCODE_CMP:
|
|
|
|
|
brw_CMP(p, dst, inst->conditional_mod, src[0], src[1]);
|
|
|
|
|
break;
|
2010-08-27 14:09:05 -07:00
|
|
|
case BRW_OPCODE_SEL:
|
|
|
|
|
brw_SEL(p, dst, src[0], src[1]);
|
|
|
|
|
break;
|
|
|
|
|
|
2010-08-27 12:54:12 -07:00
|
|
|
case BRW_OPCODE_IF:
|
2010-10-19 12:32:55 -07:00
|
|
|
if (inst->src[0].file != BAD_FILE) {
|
|
|
|
|
assert(intel->gen >= 6);
|
2011-03-16 00:00:09 -07:00
|
|
|
if_stack[if_stack_depth] = gen6_IF(p, inst->conditional_mod, src[0], src[1]);
|
2010-10-19 12:32:55 -07:00
|
|
|
} else {
|
|
|
|
|
if_stack[if_stack_depth] = brw_IF(p, BRW_EXECUTE_8);
|
|
|
|
|
}
|
2010-09-27 21:25:55 -07:00
|
|
|
if_depth_in_loop[loop_stack_depth]++;
|
2010-08-27 12:54:12 -07:00
|
|
|
if_stack_depth++;
|
2011-02-19 16:12:28 -08:00
|
|
|
if (if_stack_array_size <= if_stack_depth) {
|
|
|
|
|
if_stack_array_size *= 2;
|
|
|
|
|
if_stack = reralloc(this->mem_ctx, if_stack, brw_instruction *,
|
|
|
|
|
if_stack_array_size);
|
|
|
|
|
}
|
2010-08-27 12:54:12 -07:00
|
|
|
break;
|
2010-10-19 12:32:55 -07:00
|
|
|
|
2010-08-27 12:54:12 -07:00
|
|
|
case BRW_OPCODE_ELSE:
|
|
|
|
|
if_stack[if_stack_depth - 1] =
|
|
|
|
|
brw_ELSE(p, if_stack[if_stack_depth - 1]);
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_ENDIF:
|
|
|
|
|
if_stack_depth--;
|
|
|
|
|
brw_ENDIF(p , if_stack[if_stack_depth]);
|
2010-09-27 21:25:55 -07:00
|
|
|
if_depth_in_loop[loop_stack_depth]--;
|
2010-08-27 12:54:12 -07:00
|
|
|
break;
|
2010-08-28 23:31:09 -07:00
|
|
|
|
|
|
|
|
case BRW_OPCODE_DO:
|
|
|
|
|
loop_stack[loop_stack_depth++] = brw_DO(p, BRW_EXECUTE_8);
|
2011-02-19 16:12:28 -08:00
|
|
|
if (loop_stack_array_size <= loop_stack_depth) {
|
|
|
|
|
loop_stack_array_size *= 2;
|
|
|
|
|
loop_stack = reralloc(this->mem_ctx, loop_stack, brw_instruction *,
|
|
|
|
|
loop_stack_array_size);
|
|
|
|
|
if_depth_in_loop = reralloc(this->mem_ctx, if_depth_in_loop, int,
|
|
|
|
|
loop_stack_array_size);
|
|
|
|
|
}
|
2010-08-28 23:31:09 -07:00
|
|
|
if_depth_in_loop[loop_stack_depth] = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BRW_OPCODE_BREAK:
|
|
|
|
|
brw_BREAK(p, if_depth_in_loop[loop_stack_depth]);
|
|
|
|
|
brw_set_predicate_control(p, BRW_PREDICATE_NONE);
|
|
|
|
|
break;
|
|
|
|
|
case BRW_OPCODE_CONTINUE:
|
2010-12-01 11:46:46 -08:00
|
|
|
/* FINISHME: We need to write the loop instruction support still. */
|
|
|
|
|
if (intel->gen >= 6)
|
2011-03-16 00:00:09 -07:00
|
|
|
gen6_CONT(p, loop_stack[loop_stack_depth - 1]);
|
2010-12-01 14:02:14 -08:00
|
|
|
else
|
|
|
|
|
brw_CONT(p, if_depth_in_loop[loop_stack_depth]);
|
2010-08-28 23:31:09 -07:00
|
|
|
brw_set_predicate_control(p, BRW_PREDICATE_NONE);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BRW_OPCODE_WHILE: {
|
|
|
|
|
struct brw_instruction *inst0, *inst1;
|
|
|
|
|
GLuint br = 1;
|
|
|
|
|
|
2010-10-01 10:49:01 -07:00
|
|
|
if (intel->gen >= 5)
|
2010-08-28 23:31:09 -07:00
|
|
|
br = 2;
|
|
|
|
|
|
|
|
|
|
assert(loop_stack_depth > 0);
|
|
|
|
|
loop_stack_depth--;
|
|
|
|
|
inst0 = inst1 = brw_WHILE(p, loop_stack[loop_stack_depth]);
|
2010-12-01 10:45:52 -08:00
|
|
|
if (intel->gen < 6) {
|
|
|
|
|
/* patch all the BREAK/CONT instructions from last BGNLOOP */
|
|
|
|
|
while (inst0 > loop_stack[loop_stack_depth]) {
|
|
|
|
|
inst0--;
|
|
|
|
|
if (inst0->header.opcode == BRW_OPCODE_BREAK &&
|
|
|
|
|
inst0->bits3.if_else.jump_count == 0) {
|
|
|
|
|
inst0->bits3.if_else.jump_count = br * (inst1 - inst0 + 1);
|
2010-08-28 23:31:09 -07:00
|
|
|
}
|
2010-12-01 10:45:52 -08:00
|
|
|
else if (inst0->header.opcode == BRW_OPCODE_CONTINUE &&
|
|
|
|
|
inst0->bits3.if_else.jump_count == 0) {
|
|
|
|
|
inst0->bits3.if_else.jump_count = br * (inst1 - inst0);
|
|
|
|
|
}
|
2010-08-28 23:31:09 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2010-08-16 21:53:02 -07:00
|
|
|
case FS_OPCODE_RCP:
|
|
|
|
|
case FS_OPCODE_RSQ:
|
|
|
|
|
case FS_OPCODE_SQRT:
|
|
|
|
|
case FS_OPCODE_EXP2:
|
|
|
|
|
case FS_OPCODE_LOG2:
|
|
|
|
|
case FS_OPCODE_POW:
|
|
|
|
|
case FS_OPCODE_SIN:
|
|
|
|
|
case FS_OPCODE_COS:
|
|
|
|
|
generate_math(inst, dst, src);
|
|
|
|
|
break;
|
2011-01-12 12:52:16 -08:00
|
|
|
case FS_OPCODE_CINTERP:
|
|
|
|
|
brw_MOV(p, dst, src[0]);
|
|
|
|
|
break;
|
2010-08-16 21:53:02 -07:00
|
|
|
case FS_OPCODE_LINTERP:
|
|
|
|
|
generate_linterp(inst, dst, src);
|
|
|
|
|
break;
|
2010-08-28 14:43:50 -07:00
|
|
|
case FS_OPCODE_TEX:
|
2010-08-28 22:34:30 -07:00
|
|
|
case FS_OPCODE_TXB:
|
2011-02-24 17:49:07 -08:00
|
|
|
case FS_OPCODE_TXD:
|
2010-08-28 22:34:30 -07:00
|
|
|
case FS_OPCODE_TXL:
|
2010-12-27 03:21:23 -08:00
|
|
|
generate_tex(inst, dst, src[0]);
|
2010-08-28 14:43:50 -07:00
|
|
|
break;
|
2010-10-10 11:54:05 -07:00
|
|
|
case FS_OPCODE_DISCARD_NOT:
|
|
|
|
|
generate_discard_not(inst, dst);
|
|
|
|
|
break;
|
|
|
|
|
case FS_OPCODE_DISCARD_AND:
|
|
|
|
|
generate_discard_and(inst, src[0]);
|
2010-08-28 22:56:33 -07:00
|
|
|
break;
|
2010-09-27 18:31:53 -07:00
|
|
|
case FS_OPCODE_DDX:
|
|
|
|
|
generate_ddx(inst, dst, src[0]);
|
|
|
|
|
break;
|
|
|
|
|
case FS_OPCODE_DDY:
|
|
|
|
|
generate_ddy(inst, dst, src[0]);
|
|
|
|
|
break;
|
2010-10-19 09:25:51 -07:00
|
|
|
|
|
|
|
|
case FS_OPCODE_SPILL:
|
|
|
|
|
generate_spill(inst, src[0]);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case FS_OPCODE_UNSPILL:
|
|
|
|
|
generate_unspill(inst, dst);
|
|
|
|
|
break;
|
|
|
|
|
|
2010-10-22 12:57:00 -07:00
|
|
|
case FS_OPCODE_PULL_CONSTANT_LOAD:
|
|
|
|
|
generate_pull_constant_load(inst, dst);
|
|
|
|
|
break;
|
|
|
|
|
|
2010-08-26 12:12:00 -07:00
|
|
|
case FS_OPCODE_FB_WRITE:
|
|
|
|
|
generate_fb_write(inst);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2010-08-27 12:53:48 -07:00
|
|
|
if (inst->opcode < (int)ARRAY_SIZE(brw_opcodes)) {
|
|
|
|
|
_mesa_problem(ctx, "Unsupported opcode `%s' in FS",
|
|
|
|
|
brw_opcodes[inst->opcode].name);
|
|
|
|
|
} else {
|
|
|
|
|
_mesa_problem(ctx, "Unsupported opcode %d in FS", inst->opcode);
|
|
|
|
|
}
|
2011-03-13 13:43:05 -07:00
|
|
|
fail("unsupported opcode in FS\n");
|
2010-08-26 12:12:00 -07:00
|
|
|
}
|
2010-08-26 14:42:06 -07:00
|
|
|
|
2010-11-02 19:55:07 -07:00
|
|
|
if (unlikely(INTEL_DEBUG & DEBUG_WM)) {
|
2010-10-22 13:17:38 -07:00
|
|
|
for (unsigned int i = last_native_inst; i < p->nr_insn; i++) {
|
|
|
|
|
if (0) {
|
|
|
|
|
printf("0x%08x 0x%08x 0x%08x 0x%08x ",
|
|
|
|
|
((uint32_t *)&p->store[i])[3],
|
|
|
|
|
((uint32_t *)&p->store[i])[2],
|
|
|
|
|
((uint32_t *)&p->store[i])[1],
|
|
|
|
|
((uint32_t *)&p->store[i])[0]);
|
|
|
|
|
}
|
|
|
|
|
brw_disasm(stdout, &p->store[i], intel->gen);
|
|
|
|
|
}
|
2010-08-26 14:42:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
last_native_inst = p->nr_insn;
|
2010-08-26 12:12:00 -07:00
|
|
|
}
|
2010-12-01 10:45:52 -08:00
|
|
|
|
2011-02-19 16:12:28 -08:00
|
|
|
ralloc_free(if_stack);
|
|
|
|
|
ralloc_free(loop_stack);
|
|
|
|
|
ralloc_free(if_depth_in_loop);
|
|
|
|
|
|
2010-12-01 11:46:46 -08:00
|
|
|
brw_set_uip_jip(p);
|
|
|
|
|
|
2010-12-01 10:45:52 -08:00
|
|
|
/* OK, while the INTEL_DEBUG=wm above is very nice for debugging FS
|
|
|
|
|
* emit issues, it doesn't get the jump distances into the output,
|
|
|
|
|
* which is often something we want to debug. So this is here in
|
|
|
|
|
* case you're doing that.
|
|
|
|
|
*/
|
|
|
|
|
if (0) {
|
|
|
|
|
if (unlikely(INTEL_DEBUG & DEBUG_WM)) {
|
|
|
|
|
for (unsigned int i = 0; i < p->nr_insn; i++) {
|
|
|
|
|
printf("0x%08x 0x%08x 0x%08x 0x%08x ",
|
|
|
|
|
((uint32_t *)&p->store[i])[3],
|
|
|
|
|
((uint32_t *)&p->store[i])[2],
|
|
|
|
|
((uint32_t *)&p->store[i])[1],
|
|
|
|
|
((uint32_t *)&p->store[i])[0]);
|
|
|
|
|
brw_disasm(stdout, &p->store[i], intel->gen);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-08-26 12:12:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GLboolean
|
|
|
|
|
brw_wm_fs_emit(struct brw_context *brw, struct brw_wm_compile *c)
|
|
|
|
|
{
|
|
|
|
|
struct intel_context *intel = &brw->intel;
|
2010-10-12 12:26:10 -04:00
|
|
|
struct gl_context *ctx = &intel->ctx;
|
2011-03-12 15:00:14 -08:00
|
|
|
struct gl_shader_program *prog = ctx->Shader.CurrentFragmentProgram;
|
2010-08-26 12:12:00 -07:00
|
|
|
|
|
|
|
|
if (!prog)
|
|
|
|
|
return GL_FALSE;
|
|
|
|
|
|
2010-10-14 13:28:42 -07:00
|
|
|
struct brw_shader *shader =
|
|
|
|
|
(brw_shader *) prog->_LinkedShaders[MESA_SHADER_FRAGMENT];
|
2010-08-26 12:12:00 -07:00
|
|
|
if (!shader)
|
|
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
|
|
/* We always use 8-wide mode, at least for now. For one, flow
|
|
|
|
|
* control only works in 8-wide. Also, when we're fragment shader
|
|
|
|
|
* bound, we're almost always under register pressure as well, so
|
|
|
|
|
* 8-wide would save us from the performance cliff of spilling
|
|
|
|
|
* regs.
|
|
|
|
|
*/
|
|
|
|
|
c->dispatch_width = 8;
|
|
|
|
|
|
2010-11-02 19:55:07 -07:00
|
|
|
if (unlikely(INTEL_DEBUG & DEBUG_WM)) {
|
2010-08-26 12:12:00 -07:00
|
|
|
printf("GLSL IR for native fragment shader %d:\n", prog->Name);
|
|
|
|
|
_mesa_print_ir(shader->ir, NULL);
|
|
|
|
|
printf("\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now the main event: Visit the shader IR and generate our FS IR for it.
|
|
|
|
|
*/
|
|
|
|
|
fs_visitor v(c, shader);
|
|
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
if (0) {
|
|
|
|
|
v.emit_dummy_fs();
|
|
|
|
|
} else {
|
2010-10-01 12:15:48 -07:00
|
|
|
v.calculate_urb_setup();
|
2010-10-01 10:45:26 -07:00
|
|
|
if (intel->gen < 6)
|
|
|
|
|
v.emit_interpolation_setup_gen4();
|
|
|
|
|
else
|
|
|
|
|
v.emit_interpolation_setup_gen6();
|
2010-08-16 21:53:02 -07:00
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
/* Generate FS IR for main(). (the visitor only descends into
|
|
|
|
|
* functions called "main").
|
|
|
|
|
*/
|
2010-08-26 14:42:06 -07:00
|
|
|
foreach_iter(exec_list_iterator, iter, *shader->ir) {
|
|
|
|
|
ir_instruction *ir = (ir_instruction *)iter.get();
|
|
|
|
|
v.base_ir = ir;
|
|
|
|
|
ir->accept(&v);
|
|
|
|
|
}
|
2010-08-15 18:58:58 -07:00
|
|
|
|
|
|
|
|
v.emit_fb_writes();
|
2010-10-13 20:17:15 -07:00
|
|
|
|
|
|
|
|
v.split_virtual_grfs();
|
|
|
|
|
|
2011-01-17 16:02:58 -08:00
|
|
|
v.setup_paramvalues_refs();
|
|
|
|
|
v.setup_pull_constants();
|
2010-10-03 15:15:18 -07:00
|
|
|
|
|
|
|
|
bool progress;
|
|
|
|
|
do {
|
|
|
|
|
progress = false;
|
2010-11-19 15:57:05 +08:00
|
|
|
|
|
|
|
|
progress = v.remove_duplicate_mrf_writes() || progress;
|
|
|
|
|
|
2010-10-04 11:48:04 -07:00
|
|
|
progress = v.propagate_constants() || progress;
|
2010-10-05 10:29:42 -07:00
|
|
|
progress = v.register_coalesce() || progress;
|
2010-10-08 14:00:14 -07:00
|
|
|
progress = v.compute_to_mrf() || progress;
|
2010-10-03 15:15:18 -07:00
|
|
|
progress = v.dead_code_eliminate() || progress;
|
|
|
|
|
} while (progress);
|
|
|
|
|
|
2011-01-18 17:16:49 -08:00
|
|
|
v.schedule_instructions();
|
|
|
|
|
|
2011-01-18 22:03:34 -08:00
|
|
|
v.assign_curb_setup();
|
|
|
|
|
v.assign_urb_setup();
|
|
|
|
|
|
2010-10-19 09:25:51 -07:00
|
|
|
if (0) {
|
|
|
|
|
/* Debug of register spilling: Go spill everything. */
|
|
|
|
|
int virtual_grf_count = v.virtual_grf_next;
|
|
|
|
|
for (int i = 1; i < virtual_grf_count; i++) {
|
|
|
|
|
v.spill_reg(i);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-29 12:08:11 -07:00
|
|
|
if (0)
|
|
|
|
|
v.assign_regs_trivial();
|
2010-10-19 09:25:51 -07:00
|
|
|
else {
|
|
|
|
|
while (!v.assign_regs()) {
|
2011-03-13 13:43:05 -07:00
|
|
|
if (v.failed)
|
2010-10-19 09:25:51 -07:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
2010-08-26 12:12:00 -07:00
|
|
|
|
2011-03-13 13:43:05 -07:00
|
|
|
if (!v.failed)
|
2010-10-01 17:18:07 -07:00
|
|
|
v.generate_code();
|
2010-08-26 12:12:00 -07:00
|
|
|
|
2011-03-13 13:43:05 -07:00
|
|
|
assert(!v.failed); /* FINISHME: Cleanly fail, tested at link time, etc. */
|
2010-09-03 14:29:57 -07:00
|
|
|
|
2011-03-13 13:43:05 -07:00
|
|
|
if (v.failed)
|
2010-09-03 14:29:57 -07:00
|
|
|
return GL_FALSE;
|
|
|
|
|
|
2010-08-26 12:12:00 -07:00
|
|
|
c->prog_data.total_grf = v.grf_used;
|
|
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
|
}
|