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.
|
2011-05-24 16:45:17 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/** @file brw_fs.cpp
|
2010-08-10 20:39:06 -07:00
|
|
|
*
|
2011-05-24 16:45:17 -07:00
|
|
|
* This file drives the GLSL IR -> LIR translation, contains the
|
|
|
|
|
* optimizations on the LIR, and drives the generation of native code
|
|
|
|
|
* from the LIR.
|
2010-08-10 20:39:06 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
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"
|
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"
|
|
|
|
|
}
|
2011-05-26 10:01:10 -07:00
|
|
|
#include "brw_shader.h"
|
2010-10-10 15:42:37 -07:00
|
|
|
#include "brw_fs.h"
|
2011-08-26 13:58:41 -07:00
|
|
|
#include "glsl/glsl_types.h"
|
|
|
|
|
#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-08-26 12:12:00 -07:00
|
|
|
|
2011-05-24 16:45:17 -07:00
|
|
|
int
|
|
|
|
|
fs_visitor::type_size(const struct glsl_type *type)
|
2010-08-15 18:58:58 -07:00
|
|
|
{
|
|
|
|
|
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, ...)
|
|
|
|
|
{
|
2011-05-16 15:10:26 -07:00
|
|
|
va_list va;
|
|
|
|
|
char *msg;
|
2011-03-13 13:43:05 -07:00
|
|
|
|
2011-05-16 15:10:26 -07:00
|
|
|
if (failed)
|
|
|
|
|
return;
|
2011-03-13 13:43:05 -07:00
|
|
|
|
2011-05-16 15:10:26 -07:00
|
|
|
failed = true;
|
|
|
|
|
|
|
|
|
|
va_start(va, format);
|
|
|
|
|
msg = ralloc_vasprintf(mem_ctx, format, va);
|
|
|
|
|
va_end(va);
|
|
|
|
|
msg = ralloc_asprintf(mem_ctx, "FS compile failed: %s\n", msg);
|
|
|
|
|
|
|
|
|
|
this->fail_msg = msg;
|
|
|
|
|
|
|
|
|
|
if (INTEL_DEBUG & DEBUG_WM) {
|
2011-06-10 15:26:02 -03:00
|
|
|
fprintf(stderr, "%s", msg);
|
2011-03-13 13:43:05 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
void
|
|
|
|
|
fs_visitor::push_force_uncompressed()
|
|
|
|
|
{
|
|
|
|
|
force_uncompressed_stack++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::pop_force_uncompressed()
|
|
|
|
|
{
|
|
|
|
|
force_uncompressed_stack--;
|
|
|
|
|
assert(force_uncompressed_stack >= 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::push_force_sechalf()
|
|
|
|
|
{
|
|
|
|
|
force_sechalf_stack++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fs_visitor::pop_force_sechalf()
|
|
|
|
|
{
|
|
|
|
|
force_sechalf_stack--;
|
|
|
|
|
assert(force_sechalf_stack >= 0);
|
|
|
|
|
}
|
|
|
|
|
|
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) {
|
2011-08-05 12:38:58 -07:00
|
|
|
case SHADER_OPCODE_RCP:
|
|
|
|
|
case SHADER_OPCODE_RSQ:
|
|
|
|
|
case SHADER_OPCODE_SQRT:
|
|
|
|
|
case SHADER_OPCODE_EXP2:
|
|
|
|
|
case SHADER_OPCODE_LOG2:
|
|
|
|
|
case SHADER_OPCODE_SIN:
|
|
|
|
|
case SHADER_OPCODE_COS:
|
2011-03-28 18:03:37 -07:00
|
|
|
return 1 * c->dispatch_width / 8;
|
2011-08-05 12:38:58 -07:00
|
|
|
case SHADER_OPCODE_POW:
|
2011-09-28 17:37:54 -07:00
|
|
|
case SHADER_OPCODE_INT_QUOTIENT:
|
|
|
|
|
case SHADER_OPCODE_INT_REMAINDER:
|
2011-03-28 18:03:37 -07:00
|
|
|
return 2 * c->dispatch_width / 8;
|
2010-11-19 15:57:05 +08:00
|
|
|
case FS_OPCODE_TEX:
|
|
|
|
|
case FS_OPCODE_TXB:
|
2011-02-24 17:49:07 -08:00
|
|
|
case FS_OPCODE_TXD:
|
2011-08-25 17:13:37 -07:00
|
|
|
case FS_OPCODE_TXF:
|
2010-11-19 15:57:05 +08:00
|
|
|
case FS_OPCODE_TXL:
|
2011-06-19 01:47:50 -07:00
|
|
|
case FS_OPCODE_TXS:
|
2010-11-19 15:57:05 +08:00
|
|
|
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
|
|
|
}
|
|
|
|
|
virtual_grf_sizes[virtual_grf_next] = size;
|
|
|
|
|
return virtual_grf_next++;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
/** Fixed HW reg constructor. */
|
2011-05-15 09:36:19 -07:00
|
|
|
fs_reg::fs_reg(enum register_file file, int reg)
|
2010-08-15 18:58:58 -07:00
|
|
|
{
|
2010-09-03 13:21:51 -07:00
|
|
|
init();
|
2010-08-15 18:58:58 -07:00
|
|
|
this->file = file;
|
2011-05-15 09:36:19 -07:00
|
|
|
this->reg = reg;
|
2010-08-15 18:58:58 -07:00
|
|
|
this->type = BRW_REGISTER_TYPE_F;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-15 12:04:52 -07:00
|
|
|
/** Fixed HW reg constructor. */
|
2011-05-15 09:36:19 -07:00
|
|
|
fs_reg::fs_reg(enum register_file file, int reg, uint32_t type)
|
2010-10-15 12:04:52 -07:00
|
|
|
{
|
|
|
|
|
init();
|
|
|
|
|
this->file = file;
|
2011-05-15 09:36:19 -07:00
|
|
|
this->reg = reg;
|
2010-10-15 12:04:52 -07:00
|
|
|
this->type = type;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
2011-05-24 16:45:17 -07:00
|
|
|
this->reg = v->virtual_grf_alloc(v->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);
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-23 12:50:53 -07:00
|
|
|
void
|
|
|
|
|
import_uniforms_callback(const void *key,
|
|
|
|
|
void *data,
|
|
|
|
|
void *closure)
|
|
|
|
|
{
|
|
|
|
|
struct hash_table *dst_ht = (struct hash_table *)closure;
|
|
|
|
|
const fs_reg *reg = (const fs_reg *)data;
|
|
|
|
|
|
|
|
|
|
if (reg->file != UNIFORM)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
hash_table_insert(dst_ht, data, key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* For 16-wide, we need to follow from the uniform setup of 8-wide dispatch.
|
|
|
|
|
* This brings in those uniform definitions
|
|
|
|
|
*/
|
|
|
|
|
void
|
2011-07-25 18:13:04 -07:00
|
|
|
fs_visitor::import_uniforms(fs_visitor *v)
|
2011-03-23 12:50:53 -07:00
|
|
|
{
|
2011-07-25 18:13:04 -07:00
|
|
|
hash_table_call_foreach(v->variable_ht,
|
2011-03-23 12:50:53 -07:00
|
|
|
import_uniforms_callback,
|
|
|
|
|
variable_ht);
|
2011-07-25 18:13:04 -07:00
|
|
|
this->params_remap = v->params_remap;
|
2011-03-23 12:50:53 -07:00
|
|
|
}
|
|
|
|
|
|
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));
|
|
|
|
|
|
2011-08-11 16:42:01 -07:00
|
|
|
if (ctx->Const.NativeIntegers) {
|
2010-10-25 12:52:29 -07:00
|
|
|
c->prog_data.param_convert[param] = PARAM_NO_CONVERT;
|
2011-08-11 16:42:01 -07:00
|
|
|
} else {
|
|
|
|
|
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;
|
|
|
|
|
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;
|
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++) {
|
2011-07-22 15:56:46 -07:00
|
|
|
/* FINISHME: At some point we probably want to push
|
|
|
|
|
* this farther by giving similar treatment to the
|
|
|
|
|
* other potentially constant components of the
|
|
|
|
|
* attribute, as well as making brw_vs_constval.c
|
|
|
|
|
* handle varyings other than gl_TexCoord.
|
|
|
|
|
*/
|
|
|
|
|
if (location >= FRAG_ATTRIB_TEX0 &&
|
|
|
|
|
location <= FRAG_ATTRIB_TEX7 &&
|
|
|
|
|
k == 3 && !(c->key.proj_attrib_mask & (1 << location))) {
|
|
|
|
|
emit(BRW_OPCODE_MOV, attr, fs_reg(1.0f));
|
|
|
|
|
} else {
|
|
|
|
|
struct brw_reg interp = interp_reg(location, k);
|
|
|
|
|
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-05-19 08:48:42 -07:00
|
|
|
if (intel->gen < 6) {
|
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 *
|
2011-05-03 10:55:50 -07:00
|
|
|
fs_visitor::emit_math(enum opcode opcode, fs_reg dst, fs_reg src)
|
2010-10-08 14:35:34 -07:00
|
|
|
{
|
|
|
|
|
switch (opcode) {
|
2011-08-05 12:38:58 -07:00
|
|
|
case SHADER_OPCODE_RCP:
|
|
|
|
|
case SHADER_OPCODE_RSQ:
|
|
|
|
|
case SHADER_OPCODE_SQRT:
|
|
|
|
|
case SHADER_OPCODE_EXP2:
|
|
|
|
|
case SHADER_OPCODE_LOG2:
|
|
|
|
|
case SHADER_OPCODE_SIN:
|
|
|
|
|
case SHADER_OPCODE_COS:
|
2010-10-08 14:35:34 -07:00
|
|
|
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;
|
2011-03-28 18:03:37 -07:00
|
|
|
inst->mlen = c->dispatch_width / 8;
|
2010-10-11 13:19:47 -07:00
|
|
|
}
|
2010-10-08 14:35:34 -07:00
|
|
|
|
|
|
|
|
return inst;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fs_inst *
|
2011-05-03 10:55:50 -07:00
|
|
|
fs_visitor::emit_math(enum opcode opcode, fs_reg dst, fs_reg src0, fs_reg src1)
|
2010-10-08 14:35:34 -07:00
|
|
|
{
|
2010-10-11 13:19:47 -07:00
|
|
|
int base_mrf = 2;
|
|
|
|
|
fs_inst *inst;
|
2010-10-08 14:35:34 -07:00
|
|
|
|
2011-09-28 17:37:54 -07:00
|
|
|
switch (opcode) {
|
|
|
|
|
case SHADER_OPCODE_POW:
|
|
|
|
|
case SHADER_OPCODE_INT_QUOTIENT:
|
|
|
|
|
case SHADER_OPCODE_INT_REMAINDER:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
assert(!"not reached: unsupported binary math opcode.");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
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-09-28 17:37:54 -07:00
|
|
|
expanded.type = src0.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-09-28 17:37:54 -07:00
|
|
|
expanded.type = src1.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-09-28 17:37:56 -07:00
|
|
|
/* From the Ironlake PRM, Volume 4, Part 1, Section 6.1.13
|
|
|
|
|
* "Message Payload":
|
|
|
|
|
*
|
|
|
|
|
* "Operand0[7]. For the INT DIV functions, this operand is the
|
|
|
|
|
* denominator."
|
|
|
|
|
* ...
|
|
|
|
|
* "Operand1[7]. For the INT DIV functions, this operand is the
|
|
|
|
|
* numerator."
|
|
|
|
|
*/
|
|
|
|
|
bool is_int_div = opcode != SHADER_OPCODE_POW;
|
|
|
|
|
fs_reg &op0 = is_int_div ? src1 : src0;
|
|
|
|
|
fs_reg &op1 = is_int_div ? src0 : src1;
|
|
|
|
|
|
|
|
|
|
emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + 1, op1.type), op1);
|
|
|
|
|
inst = emit(opcode, dst, op0, reg_null_f);
|
2010-10-08 14:35:34 -07:00
|
|
|
|
2010-10-11 13:19:47 -07:00
|
|
|
inst->base_mrf = base_mrf;
|
2011-03-28 18:03:37 -07:00
|
|
|
inst->mlen = 2 * c->dispatch_width / 8;
|
2010-10-11 13:19:47 -07:00
|
|
|
}
|
2010-10-08 14:35:34 -07:00
|
|
|
return inst;
|
|
|
|
|
}
|
|
|
|
|
|
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()
|
|
|
|
|
{
|
2011-03-23 12:50:53 -07:00
|
|
|
if (c->dispatch_width != 8)
|
|
|
|
|
return;
|
|
|
|
|
|
2011-01-17 16:02:58 -08:00
|
|
|
/* 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] =
|
2011-06-30 13:42:37 -05:00
|
|
|
(const float *)fp->Base.Parameters->ParameterValues[this->param_index[i]] +
|
2011-01-17 16:02:58 -08:00
|
|
|
this->param_offset[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-26 16:39:41 -07:00
|
|
|
void
|
|
|
|
|
fs_visitor::assign_curb_setup()
|
|
|
|
|
{
|
|
|
|
|
c->prog_data.curb_read_length = ALIGN(c->prog_data.nr_params, 8) / 8;
|
2011-03-11 19:19:01 -08:00
|
|
|
if (c->dispatch_width == 8) {
|
|
|
|
|
c->prog_data.first_curbe_grf = c->nr_payload_regs;
|
|
|
|
|
} else {
|
|
|
|
|
c->prog_data.first_curbe_grf_16 = c->nr_payload_regs;
|
|
|
|
|
}
|
2010-08-26 16:39:41 -07:00
|
|
|
|
|
|
|
|
/* Map the offsets in the UNIFORM file to fixed HW regs. */
|
2011-07-29 11:52:39 -07:00
|
|
|
foreach_list(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
2010-08-26 16:39:41 -07:00
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < 3; i++) {
|
|
|
|
|
if (inst->src[i].file == UNIFORM) {
|
2011-05-15 09:36:19 -07:00
|
|
|
int constant_nr = inst->src[i].reg + inst->src[i].reg_offset;
|
2011-03-11 19:19:01 -08:00
|
|
|
struct brw_reg brw_reg = brw_vec1_grf(c->nr_payload_regs +
|
2010-08-27 14:15:42 -07:00
|
|
|
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++) {
|
2011-05-16 15:10:26 -07:00
|
|
|
if (fp->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)) {
|
2011-09-06 16:50:27 -06:00
|
|
|
int fp_index = _mesa_vert_result_to_frag_attrib((gl_vert_result) i);
|
2010-10-01 12:15:48 -07:00
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
{
|
2011-03-11 19:19:01 -08:00
|
|
|
int urb_start = c->nr_payload_regs + 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
|
|
|
*/
|
2011-07-29 11:52:39 -07:00
|
|
|
foreach_list(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
2010-08-16 21:53:02 -07:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-29 11:52:39 -07:00
|
|
|
foreach_list(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
2010-10-13 20:17:15 -07:00
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-29 11:52:39 -07:00
|
|
|
foreach_list(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
2010-10-13 20:17:15 -07:00
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2011-07-25 18:13:04 -07:00
|
|
|
bool
|
|
|
|
|
fs_visitor::remove_dead_constants()
|
|
|
|
|
{
|
|
|
|
|
if (c->dispatch_width == 8) {
|
|
|
|
|
this->params_remap = ralloc_array(mem_ctx, int, c->prog_data.nr_params);
|
|
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < c->prog_data.nr_params; i++)
|
|
|
|
|
this->params_remap[i] = -1;
|
|
|
|
|
|
|
|
|
|
/* Find which params are still in use. */
|
|
|
|
|
foreach_list(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; i++) {
|
2011-05-15 09:36:19 -07:00
|
|
|
int constant_nr = inst->src[i].reg + inst->src[i].reg_offset;
|
2011-07-25 18:13:04 -07:00
|
|
|
|
|
|
|
|
if (inst->src[i].file != UNIFORM)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
assert(constant_nr < (int)c->prog_data.nr_params);
|
|
|
|
|
|
|
|
|
|
/* For now, set this to non-negative. We'll give it the
|
|
|
|
|
* actual new number in a moment, in order to keep the
|
|
|
|
|
* register numbers nicely ordered.
|
|
|
|
|
*/
|
|
|
|
|
this->params_remap[constant_nr] = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Figure out what the new numbers for the params will be. At some
|
|
|
|
|
* point when we're doing uniform array access, we're going to want
|
|
|
|
|
* to keep the distinction between .reg and .reg_offset, but for
|
|
|
|
|
* now we don't care.
|
|
|
|
|
*/
|
|
|
|
|
unsigned int new_nr_params = 0;
|
|
|
|
|
for (unsigned int i = 0; i < c->prog_data.nr_params; i++) {
|
|
|
|
|
if (this->params_remap[i] != -1) {
|
|
|
|
|
this->params_remap[i] = new_nr_params++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Update the list of params to be uploaded to match our new numbering. */
|
|
|
|
|
for (unsigned int i = 0; i < c->prog_data.nr_params; i++) {
|
|
|
|
|
int remapped = this->params_remap[i];
|
|
|
|
|
|
|
|
|
|
if (remapped == -1)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* We've already done setup_paramvalues_refs() so no need to worry
|
|
|
|
|
* about param_index and param_offset.
|
|
|
|
|
*/
|
|
|
|
|
c->prog_data.param[remapped] = c->prog_data.param[i];
|
|
|
|
|
c->prog_data.param_convert[remapped] = c->prog_data.param_convert[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
c->prog_data.nr_params = new_nr_params;
|
|
|
|
|
} else {
|
|
|
|
|
/* This should have been generated in the 8-wide pass already. */
|
|
|
|
|
assert(this->params_remap);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now do the renumbering of the shader to remove unused params. */
|
|
|
|
|
foreach_list(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; i++) {
|
2011-05-15 09:36:19 -07:00
|
|
|
int constant_nr = inst->src[i].reg + inst->src[i].reg_offset;
|
2011-07-25 18:13:04 -07:00
|
|
|
|
|
|
|
|
if (inst->src[i].file != UNIFORM)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
assert(this->params_remap[constant_nr] != -1);
|
2011-05-15 09:36:19 -07:00
|
|
|
inst->src[i].reg = this->params_remap[constant_nr];
|
2011-07-25 18:13:04 -07:00
|
|
|
inst->src[i].reg_offset = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
|
2011-03-23 12:50:53 -07:00
|
|
|
if (c->dispatch_width == 16) {
|
|
|
|
|
fail("Pull constants not supported in 16-wide\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-22 12:57:00 -07:00
|
|
|
/* 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;
|
|
|
|
|
|
2011-07-29 11:52:39 -07:00
|
|
|
foreach_list(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
2010-10-22 12:57:00 -07:00
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
|
if (inst->src[i].file != UNIFORM)
|
|
|
|
|
continue;
|
|
|
|
|
|
2011-05-15 09:36:19 -07:00
|
|
|
int uniform_nr = inst->src[i].reg + inst->src[i].reg_offset;
|
2010-10-22 12:57:00 -07:00
|
|
|
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;
|
|
|
|
|
|
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;
|
2011-07-29 11:52:39 -07:00
|
|
|
foreach_list(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
2010-09-29 15:20:12 -07:00
|
|
|
|
|
|
|
|
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++) {
|
2011-05-04 13:50:13 -07:00
|
|
|
if (inst->src[i].file == GRF) {
|
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
|
|
|
}
|
|
|
|
|
}
|
2011-05-04 13:50:13 -07:00
|
|
|
if (inst->dst.file == GRF) {
|
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++;
|
|
|
|
|
}
|
|
|
|
|
|
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();
|
|
|
|
|
|
2011-07-29 11:52:39 -07:00
|
|
|
foreach_list(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
2010-10-04 11:48:04 -07:00
|
|
|
|
|
|
|
|
if (inst->opcode != BRW_OPCODE_MOV ||
|
|
|
|
|
inst->predicated ||
|
|
|
|
|
inst->dst.file != GRF || inst->src[0].file != IMM ||
|
2011-03-25 11:19:53 -07:00
|
|
|
inst->dst.type != inst->src[0].type ||
|
|
|
|
|
(c->dispatch_width == 16 &&
|
|
|
|
|
(inst->force_uncompressed || inst->force_sechalf)))
|
2010-10-04 11:48:04 -07:00
|
|
|
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.
|
|
|
|
|
*/
|
2011-07-29 11:52:39 -07:00
|
|
|
for (fs_inst *scan_inst = (fs_inst *)inst->next;
|
|
|
|
|
!scan_inst->is_tail_sentinel();
|
|
|
|
|
scan_inst = (fs_inst *)scan_inst->next) {
|
2010-10-04 11:48:04 -07:00
|
|
|
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;
|
2011-04-09 08:22:42 -10:00
|
|
|
|
2010-10-05 10:25:22 -07:00
|
|
|
case BRW_OPCODE_CMP:
|
2011-04-09 08:22:42 -10:00
|
|
|
if (i == 1) {
|
|
|
|
|
scan_inst->src[i] = inst->src[0];
|
|
|
|
|
progress = true;
|
|
|
|
|
} else if (i == 0 && scan_inst->src[1].file != IMM) {
|
|
|
|
|
uint32_t new_cmod;
|
|
|
|
|
|
|
|
|
|
new_cmod = brw_swap_cmod(scan_inst->conditional_mod);
|
|
|
|
|
if (new_cmod != ~0u) {
|
|
|
|
|
/* Fit this constant in by swapping the operands and
|
|
|
|
|
* flipping the test
|
|
|
|
|
*/
|
|
|
|
|
scan_inst->src[0] = scan_inst->src[1];
|
|
|
|
|
scan_inst->src[1] = inst->src[0];
|
|
|
|
|
scan_inst->conditional_mod = new_cmod;
|
|
|
|
|
progress = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
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;
|
2011-04-09 08:29:59 -10:00
|
|
|
} else if (i == 0 && scan_inst->src[1].file != IMM) {
|
|
|
|
|
scan_inst->src[0] = scan_inst->src[1];
|
|
|
|
|
scan_inst->src[1] = inst->src[0];
|
2011-05-12 09:03:24 -07:00
|
|
|
|
|
|
|
|
/* If this was predicated, flipping operands means
|
|
|
|
|
* we also need to flip the predicate.
|
|
|
|
|
*/
|
|
|
|
|
if (scan_inst->conditional_mod == BRW_CONDITIONAL_NONE) {
|
|
|
|
|
scan_inst->predicate_inverse =
|
|
|
|
|
!scan_inst->predicate_inverse;
|
|
|
|
|
}
|
2011-04-09 08:29:59 -10:00
|
|
|
progress = true;
|
2010-10-05 10:25:22 -07:00
|
|
|
}
|
2011-04-09 08:22:42 -10:00
|
|
|
break;
|
2011-07-22 16:18:39 -07:00
|
|
|
|
2011-08-05 12:38:58 -07:00
|
|
|
case SHADER_OPCODE_RCP:
|
2011-07-22 16:18:39 -07:00
|
|
|
/* The hardware doesn't do math on immediate values
|
|
|
|
|
* (because why are you doing that, seriously?), but
|
|
|
|
|
* the correct answer is to just constant fold it
|
|
|
|
|
* anyway.
|
|
|
|
|
*/
|
|
|
|
|
assert(i == 0);
|
|
|
|
|
if (inst->src[0].imm.f != 0.0f) {
|
|
|
|
|
scan_inst->opcode = BRW_OPCODE_MOV;
|
|
|
|
|
scan_inst->src[0] = inst->src[0];
|
2011-07-22 16:45:15 -07:00
|
|
|
scan_inst->src[0].imm.f = 1.0f / scan_inst->src[0].imm.f;
|
2011-07-22 16:18:39 -07:00
|
|
|
progress = true;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2011-05-03 10:55:50 -07:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
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;
|
|
|
|
|
}
|
2011-07-22 16:45:15 -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::opt_algebraic()
|
|
|
|
|
{
|
|
|
|
|
bool progress = false;
|
|
|
|
|
|
|
|
|
|
calculate_live_intervals();
|
|
|
|
|
|
|
|
|
|
foreach_list(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
|
|
|
|
|
|
|
|
|
switch (inst->opcode) {
|
|
|
|
|
case BRW_OPCODE_MUL:
|
|
|
|
|
if (inst->src[1].file != IMM)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* a * 1.0 = a */
|
|
|
|
|
if (inst->src[1].type == BRW_REGISTER_TYPE_F &&
|
|
|
|
|
inst->src[1].imm.f == 1.0) {
|
|
|
|
|
inst->opcode = BRW_OPCODE_MOV;
|
|
|
|
|
inst->src[1] = reg_undef;
|
|
|
|
|
progress = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-03 10:55:50 -07:00
|
|
|
break;
|
|
|
|
|
default:
|
2011-07-22 16:45:15 -07:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
2011-07-29 11:52:39 -07:00
|
|
|
foreach_list_safe(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
2010-10-03 15:15:18 -07:00
|
|
|
|
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
|
|
|
|
2011-07-29 11:52:39 -07:00
|
|
|
foreach_list_safe(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
2010-10-05 10:29:42 -07:00
|
|
|
|
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;
|
2011-05-03 10:55:50 -07:00
|
|
|
default:
|
|
|
|
|
break;
|
2011-01-11 15:13:49 -08:00
|
|
|
}
|
|
|
|
|
if (loop_depth || if_depth)
|
|
|
|
|
continue;
|
|
|
|
|
|
2010-10-05 10:29:42 -07:00
|
|
|
if (inst->opcode != BRW_OPCODE_MOV ||
|
|
|
|
|
inst->predicated ||
|
|
|
|
|
inst->saturate ||
|
2011-07-22 16:52:54 -07:00
|
|
|
inst->dst.file != GRF || (inst->src[0].file != GRF &&
|
|
|
|
|
inst->src[0].file != UNIFORM)||
|
2010-10-05 10:29:42 -07:00
|
|
|
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;
|
|
|
|
|
|
2011-07-29 11:52:39 -07:00
|
|
|
for (fs_inst *scan_inst = (fs_inst *)inst->next;
|
|
|
|
|
!scan_inst->is_tail_sentinel();
|
|
|
|
|
scan_inst = (fs_inst *)scan_inst->next) {
|
2010-10-05 10:29:42 -07:00
|
|
|
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;
|
|
|
|
|
}
|
2011-07-22 16:52:54 -07:00
|
|
|
if (inst->src[0].file == GRF &&
|
|
|
|
|
scan_inst->dst.reg == inst->src[0].reg &&
|
2010-10-05 10:29:42 -07:00
|
|
|
(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
|
|
|
|
2011-07-22 16:52:54 -07:00
|
|
|
/* The gen6 MATH instruction can't handle source modifiers or
|
|
|
|
|
* unusual register regions, so avoid coalescing those for
|
|
|
|
|
* now. We should do something more specific.
|
2011-02-19 01:05:11 -08:00
|
|
|
*/
|
2011-07-22 16:52:54 -07:00
|
|
|
if (intel->gen >= 6 &&
|
|
|
|
|
scan_inst->is_math() &&
|
|
|
|
|
(has_source_modifiers || inst->src[0].file == UNIFORM)) {
|
2011-02-19 01:05:11 -08:00
|
|
|
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.
|
|
|
|
|
*/
|
2011-07-29 11:52:39 -07:00
|
|
|
for (fs_inst *scan_inst = inst;
|
|
|
|
|
!scan_inst->is_tail_sentinel();
|
|
|
|
|
scan_inst = (fs_inst *)scan_inst->next) {
|
2010-10-05 10:29:42 -07:00
|
|
|
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) {
|
2011-07-22 16:52:54 -07:00
|
|
|
fs_reg new_src = inst->src[0];
|
2011-10-06 20:58:18 -07:00
|
|
|
if (scan_inst->src[i].abs) {
|
|
|
|
|
new_src.negate = 0;
|
|
|
|
|
new_src.abs = 1;
|
|
|
|
|
}
|
2011-07-22 16:52:54 -07:00
|
|
|
new_src.negate ^= scan_inst->src[i].negate;
|
|
|
|
|
scan_inst->src[i] = new_src;
|
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();
|
|
|
|
|
|
2011-07-29 11:52:39 -07:00
|
|
|
foreach_list_safe(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
2010-10-08 14:00:14 -07:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
2011-03-28 16:54:39 -07:00
|
|
|
/* Work out which hardware MRF registers are written by this
|
|
|
|
|
* instruction.
|
|
|
|
|
*/
|
2011-05-15 09:36:19 -07:00
|
|
|
int mrf_low = inst->dst.reg & ~BRW_MRF_COMPR4;
|
2011-03-28 16:54:39 -07:00
|
|
|
int mrf_high;
|
2011-05-15 09:36:19 -07:00
|
|
|
if (inst->dst.reg & BRW_MRF_COMPR4) {
|
2011-03-28 16:54:39 -07:00
|
|
|
mrf_high = mrf_low + 4;
|
|
|
|
|
} else if (c->dispatch_width == 16 &&
|
|
|
|
|
(!inst->force_uncompressed && !inst->force_sechalf)) {
|
|
|
|
|
mrf_high = mrf_low + 1;
|
|
|
|
|
} else {
|
|
|
|
|
mrf_high = mrf_low;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-08 14:00:14 -07:00
|
|
|
/* 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
|
2011-03-28 16:54:39 -07:00
|
|
|
* the channels. We might be able to rewrite everything
|
|
|
|
|
* that writes that reg, but it would require smarter
|
|
|
|
|
* tracking to delay the rewriting until complete success.
|
2010-10-08 14:00:14 -07:00
|
|
|
*/
|
|
|
|
|
if (scan_inst->predicated)
|
|
|
|
|
break;
|
|
|
|
|
|
2011-03-28 16:54:39 -07:00
|
|
|
/* If it's half of register setup and not the same half as
|
|
|
|
|
* our MOV we're trying to remove, bail for now.
|
|
|
|
|
*/
|
|
|
|
|
if (scan_inst->force_uncompressed != inst->force_uncompressed ||
|
|
|
|
|
scan_inst->force_sechalf != inst->force_sechalf) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-08 14:00:14 -07:00
|
|
|
/* 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;
|
2011-05-15 09:36:19 -07:00
|
|
|
scan_inst->dst.reg = inst->dst.reg;
|
2010-11-18 15:03:50 +08:00
|
|
|
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;
|
|
|
|
|
|
2011-03-28 16:54:39 -07:00
|
|
|
if (scan_inst->dst.file == MRF) {
|
|
|
|
|
/* If somebody else writes our MRF here, we can't
|
2010-11-18 15:03:50 +08:00
|
|
|
* compute-to-MRF before that.
|
|
|
|
|
*/
|
2011-05-15 09:36:19 -07:00
|
|
|
int scan_mrf_low = scan_inst->dst.reg & ~BRW_MRF_COMPR4;
|
2011-03-28 16:54:39 -07:00
|
|
|
int scan_mrf_high;
|
|
|
|
|
|
2011-05-15 09:36:19 -07:00
|
|
|
if (scan_inst->dst.reg & BRW_MRF_COMPR4) {
|
2011-03-28 16:54:39 -07:00
|
|
|
scan_mrf_high = scan_mrf_low + 4;
|
|
|
|
|
} else if (c->dispatch_width == 16 &&
|
|
|
|
|
(!scan_inst->force_uncompressed &&
|
|
|
|
|
!scan_inst->force_sechalf)) {
|
|
|
|
|
scan_mrf_high = scan_mrf_low + 1;
|
|
|
|
|
} else {
|
|
|
|
|
scan_mrf_high = scan_mrf_low;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mrf_low == scan_mrf_low ||
|
|
|
|
|
mrf_low == scan_mrf_high ||
|
|
|
|
|
mrf_high == scan_mrf_low ||
|
|
|
|
|
mrf_high == scan_mrf_high) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
2010-11-18 15:03:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
2011-03-28 16:54:39 -07:00
|
|
|
if (mrf_low >= scan_inst->base_mrf &&
|
|
|
|
|
mrf_low < scan_inst->base_mrf + scan_inst->mlen) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (mrf_high >= scan_inst->base_mrf &&
|
|
|
|
|
mrf_high < 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;
|
|
|
|
|
|
2011-03-23 14:00:01 -07:00
|
|
|
/* Need to update the MRF tracking for compressed instructions. */
|
|
|
|
|
if (c->dispatch_width == 16)
|
|
|
|
|
return false;
|
|
|
|
|
|
2010-11-19 15:57:05 +08:00
|
|
|
memset(last_mrf_move, 0, sizeof(last_mrf_move));
|
|
|
|
|
|
2011-07-29 11:52:39 -07:00
|
|
|
foreach_list_safe(node, &this->instructions) {
|
|
|
|
|
fs_inst *inst = (fs_inst *)node;
|
2010-11-19 15:57:05 +08:00
|
|
|
|
|
|
|
|
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) {
|
2011-05-15 09:36:19 -07:00
|
|
|
fs_inst *prev_inst = last_mrf_move[inst->dst.reg];
|
2010-11-19 15:57:05 +08:00
|
|
|
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) {
|
2011-05-15 09:36:19 -07:00
|
|
|
last_mrf_move[inst->dst.reg] = NULL;
|
2010-11-19 15:57:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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) {
|
2011-05-15 09:36:19 -07:00
|
|
|
last_mrf_move[inst->dst.reg] = inst;
|
2010-11-19 15:57:05 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2011-03-24 09:08:58 -07:00
|
|
|
/* If the register is used to store 16 values of less than float
|
|
|
|
|
* size (only the case for pixel_[xy]), then we can't allocate
|
|
|
|
|
* another dword-sized thing to that register that would be used in
|
|
|
|
|
* the same instruction. This is because when the GPU decodes (for
|
|
|
|
|
* example):
|
|
|
|
|
*
|
|
|
|
|
* (declare (in ) vec4 gl_FragCoord@0x97766a0)
|
|
|
|
|
* add(16) g6<1>F g6<8,8,1>UW 0.5F { align1 compr };
|
|
|
|
|
*
|
|
|
|
|
* it's actually processed as:
|
|
|
|
|
* add(8) g6<1>F g6<8,8,1>UW 0.5F { align1 };
|
|
|
|
|
* add(8) g7<1>F g6.8<8,8,1>UW 0.5F { align1 sechalf };
|
|
|
|
|
*
|
|
|
|
|
* so our second half values in g6 got overwritten in the first
|
|
|
|
|
* half.
|
|
|
|
|
*/
|
|
|
|
|
if (c->dispatch_width == 16 && (this->pixel_x.reg == a ||
|
|
|
|
|
this->pixel_x.reg == b ||
|
|
|
|
|
this->pixel_y.reg == a ||
|
|
|
|
|
this->pixel_y.reg == b)) {
|
|
|
|
|
return start <= end;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-10 12:13:35 -07:00
|
|
|
return start < end;
|
2010-09-29 15:20:12 -07:00
|
|
|
}
|
|
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
bool
|
|
|
|
|
fs_visitor::run()
|
2010-08-26 12:12:00 -07:00
|
|
|
{
|
2011-03-11 19:19:01 -08:00
|
|
|
uint32_t prog_offset_16 = 0;
|
2011-03-23 12:50:53 -07:00
|
|
|
uint32_t orig_nr_params = c->prog_data.nr_params;
|
2010-08-26 12:12:00 -07:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
brw_wm_payload_setup(brw, c);
|
2010-08-26 12:12:00 -07:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
if (c->dispatch_width == 16) {
|
|
|
|
|
/* align to 64 byte boundary. */
|
|
|
|
|
while ((c->func.nr_insn * sizeof(struct brw_instruction)) % 64) {
|
|
|
|
|
brw_NOP(p);
|
|
|
|
|
}
|
2010-08-26 12:12:00 -07:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
/* Save off the start of this 16-wide program in case we succeed. */
|
|
|
|
|
prog_offset_16 = c->func.nr_insn * sizeof(struct brw_instruction);
|
2010-08-26 12:12:00 -07:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
brw_set_compression_control(p, BRW_COMPRESSION_COMPRESSED);
|
|
|
|
|
}
|
2010-08-26 12:12:00 -07:00
|
|
|
|
2010-08-15 18:58:58 -07:00
|
|
|
if (0) {
|
2011-03-11 19:19:01 -08:00
|
|
|
emit_dummy_fs();
|
2010-08-15 18:58:58 -07:00
|
|
|
} else {
|
2011-03-11 19:19:01 -08:00
|
|
|
calculate_urb_setup();
|
2010-10-01 10:45:26 -07:00
|
|
|
if (intel->gen < 6)
|
2011-03-11 19:19:01 -08:00
|
|
|
emit_interpolation_setup_gen4();
|
2010-10-01 10:45:26 -07:00
|
|
|
else
|
2011-03-11 19:19:01 -08:00
|
|
|
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").
|
|
|
|
|
*/
|
2011-07-29 11:52:39 -07:00
|
|
|
foreach_list(node, &*shader->ir) {
|
|
|
|
|
ir_instruction *ir = (ir_instruction *)node;
|
2011-03-11 19:19:01 -08:00
|
|
|
base_ir = ir;
|
2011-04-26 17:58:04 -07:00
|
|
|
this->result = reg_undef;
|
2011-03-11 19:19:01 -08:00
|
|
|
ir->accept(this);
|
2010-08-26 14:42:06 -07:00
|
|
|
}
|
2011-06-10 16:00:03 -07:00
|
|
|
if (failed)
|
|
|
|
|
return false;
|
2010-08-15 18:58:58 -07:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
emit_fb_writes();
|
2010-10-13 20:17:15 -07:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
split_virtual_grfs();
|
2010-10-13 20:17:15 -07:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
setup_paramvalues_refs();
|
|
|
|
|
setup_pull_constants();
|
2010-10-03 15:15:18 -07:00
|
|
|
|
|
|
|
|
bool progress;
|
|
|
|
|
do {
|
|
|
|
|
progress = false;
|
2010-11-19 15:57:05 +08:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
progress = remove_duplicate_mrf_writes() || progress;
|
2010-11-19 15:57:05 +08:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
progress = propagate_constants() || progress;
|
2011-07-22 16:45:15 -07:00
|
|
|
progress = opt_algebraic() || progress;
|
2011-03-11 19:19:01 -08:00
|
|
|
progress = register_coalesce() || progress;
|
|
|
|
|
progress = compute_to_mrf() || progress;
|
|
|
|
|
progress = dead_code_eliminate() || progress;
|
2010-10-03 15:15:18 -07:00
|
|
|
} while (progress);
|
|
|
|
|
|
2011-07-25 18:13:04 -07:00
|
|
|
remove_dead_constants();
|
|
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
schedule_instructions();
|
2011-01-18 17:16:49 -08:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
assign_curb_setup();
|
|
|
|
|
assign_urb_setup();
|
2011-01-18 22:03:34 -08:00
|
|
|
|
2010-10-19 09:25:51 -07:00
|
|
|
if (0) {
|
|
|
|
|
/* Debug of register spilling: Go spill everything. */
|
2011-03-11 19:19:01 -08:00
|
|
|
int virtual_grf_count = virtual_grf_next;
|
2011-05-04 13:50:13 -07:00
|
|
|
for (int i = 0; i < virtual_grf_count; i++) {
|
2011-03-11 19:19:01 -08:00
|
|
|
spill_reg(i);
|
2010-10-19 09:25:51 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-29 12:08:11 -07:00
|
|
|
if (0)
|
2011-03-11 19:19:01 -08:00
|
|
|
assign_regs_trivial();
|
2010-10-19 09:25:51 -07:00
|
|
|
else {
|
2011-03-11 19:19:01 -08:00
|
|
|
while (!assign_regs()) {
|
|
|
|
|
if (failed)
|
2010-10-19 09:25:51 -07:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-08-15 18:58:58 -07:00
|
|
|
}
|
2011-03-11 19:19:01 -08:00
|
|
|
assert(force_uncompressed_stack == 0);
|
|
|
|
|
assert(force_sechalf_stack == 0);
|
2010-08-26 12:12:00 -07:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
if (failed)
|
2011-03-14 10:29:12 -07:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
generate_code();
|
2010-09-03 14:29:57 -07:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
if (c->dispatch_width == 8) {
|
2011-05-17 08:55:11 -07:00
|
|
|
c->prog_data.reg_blocks = brw_register_blocks(grf_used);
|
2011-03-11 19:19:01 -08:00
|
|
|
} else {
|
2011-05-17 08:55:11 -07:00
|
|
|
c->prog_data.reg_blocks_16 = brw_register_blocks(grf_used);
|
2011-03-11 19:19:01 -08:00
|
|
|
c->prog_data.prog_offset_16 = prog_offset_16;
|
2011-03-23 12:50:53 -07:00
|
|
|
|
|
|
|
|
/* Make sure we didn't try to sneak in an extra uniform */
|
|
|
|
|
assert(orig_nr_params == c->prog_data.nr_params);
|
2011-10-07 10:38:30 -06:00
|
|
|
(void) orig_nr_params;
|
2011-03-11 19:19:01 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return !failed;
|
|
|
|
|
}
|
2010-08-26 12:12:00 -07:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
bool
|
2011-05-16 15:10:26 -07:00
|
|
|
brw_wm_fs_emit(struct brw_context *brw, struct brw_wm_compile *c,
|
|
|
|
|
struct gl_shader_program *prog)
|
2011-03-11 19:19:01 -08:00
|
|
|
{
|
|
|
|
|
struct intel_context *intel = &brw->intel;
|
|
|
|
|
|
|
|
|
|
if (!prog)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
struct brw_shader *shader =
|
|
|
|
|
(brw_shader *) prog->_LinkedShaders[MESA_SHADER_FRAGMENT];
|
|
|
|
|
if (!shader)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (unlikely(INTEL_DEBUG & DEBUG_WM)) {
|
|
|
|
|
printf("GLSL IR for native fragment shader %d:\n", prog->Name);
|
|
|
|
|
_mesa_print_ir(shader->ir, NULL);
|
2011-03-23 12:36:52 -07:00
|
|
|
printf("\n\n");
|
2011-03-11 19:19:01 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now the main event: Visit the shader IR and generate our FS IR for it.
|
|
|
|
|
*/
|
|
|
|
|
c->dispatch_width = 8;
|
|
|
|
|
|
2011-05-16 15:10:26 -07:00
|
|
|
fs_visitor v(c, prog, shader);
|
2011-03-11 19:19:01 -08:00
|
|
|
if (!v.run()) {
|
2011-05-16 15:10:26 -07:00
|
|
|
prog->LinkStatus = GL_FALSE;
|
2011-08-11 09:52:08 -07:00
|
|
|
ralloc_strcat(&prog->InfoLog, v.fail_msg);
|
2011-05-16 15:10:26 -07:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-23 12:50:53 -07:00
|
|
|
if (intel->gen >= 5 && c->prog_data.nr_pull_params == 0) {
|
2011-03-11 19:19:01 -08:00
|
|
|
c->dispatch_width = 16;
|
2011-05-16 15:10:26 -07:00
|
|
|
fs_visitor v2(c, prog, shader);
|
2011-07-25 18:13:04 -07:00
|
|
|
v2.import_uniforms(&v);
|
2011-03-11 19:19:01 -08:00
|
|
|
v2.run();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
c->prog_data.dispatch_width = 8;
|
|
|
|
|
|
|
|
|
|
return true;
|
2010-08-26 12:12:00 -07:00
|
|
|
}
|
2011-05-16 15:10:26 -07:00
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
brw_fs_precompile(struct gl_context *ctx, struct gl_shader_program *prog)
|
|
|
|
|
{
|
|
|
|
|
struct brw_context *brw = brw_context(ctx);
|
|
|
|
|
struct brw_wm_prog_key key;
|
|
|
|
|
|
2011-08-20 15:00:36 -07:00
|
|
|
if (!prog->_LinkedShaders[MESA_SHADER_FRAGMENT])
|
2011-05-16 15:10:26 -07:00
|
|
|
return true;
|
|
|
|
|
|
2011-08-20 15:00:36 -07:00
|
|
|
struct gl_fragment_program *fp = (struct gl_fragment_program *)
|
|
|
|
|
prog->_LinkedShaders[MESA_SHADER_FRAGMENT]->Program;
|
|
|
|
|
struct brw_fragment_program *bfp = brw_fragment_program(fp);
|
|
|
|
|
|
2011-05-16 15:10:26 -07:00
|
|
|
memset(&key, 0, sizeof(key));
|
|
|
|
|
|
|
|
|
|
if (fp->UsesKill)
|
|
|
|
|
key.iz_lookup |= IZ_PS_KILL_ALPHATEST_BIT;
|
|
|
|
|
|
|
|
|
|
if (fp->Base.OutputsWritten & BITFIELD64_BIT(FRAG_RESULT_DEPTH))
|
|
|
|
|
key.iz_lookup |= IZ_PS_COMPUTES_DEPTH_BIT;
|
|
|
|
|
|
|
|
|
|
/* Just assume depth testing. */
|
|
|
|
|
key.iz_lookup |= IZ_DEPTH_TEST_ENABLE_BIT;
|
|
|
|
|
key.iz_lookup |= IZ_DEPTH_WRITE_ENABLE_BIT;
|
|
|
|
|
|
|
|
|
|
key.vp_outputs_written |= BITFIELD64_BIT(FRAG_ATTRIB_WPOS);
|
|
|
|
|
for (int i = 0; i < FRAG_ATTRIB_MAX; i++) {
|
|
|
|
|
if (!(fp->Base.InputsRead & BITFIELD64_BIT(i)))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
key.proj_attrib_mask |= 1 << i;
|
|
|
|
|
|
2011-09-06 16:50:27 -06:00
|
|
|
int vp_index = _mesa_vert_result_to_frag_attrib((gl_vert_result) i);
|
2011-05-16 15:10:26 -07:00
|
|
|
|
|
|
|
|
if (vp_index >= 0)
|
|
|
|
|
key.vp_outputs_written |= BITFIELD64_BIT(vp_index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
key.clamp_fragment_color = true;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < BRW_MAX_TEX_UNIT; i++) {
|
2011-06-10 14:48:46 -07:00
|
|
|
if (fp->Base.ShadowSamplers & (1 << i))
|
|
|
|
|
key.compare_funcs[i] = GL_LESS;
|
|
|
|
|
|
2011-05-16 15:10:26 -07:00
|
|
|
/* FINISHME: depth compares might use (0,0,0,W) for example */
|
|
|
|
|
key.tex_swizzles[i] = SWIZZLE_XYZW;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (fp->Base.InputsRead & FRAG_BIT_WPOS) {
|
|
|
|
|
key.drawable_height = ctx->DrawBuffer->Height;
|
|
|
|
|
key.render_to_fbo = ctx->DrawBuffer->Name != 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
key.nr_color_regions = 1;
|
|
|
|
|
|
|
|
|
|
key.program_string_id = bfp->id;
|
|
|
|
|
|
2011-04-27 13:33:10 -07:00
|
|
|
uint32_t old_prog_offset = brw->wm.prog_offset;
|
2011-05-16 15:10:26 -07:00
|
|
|
struct brw_wm_prog_data *old_prog_data = brw->wm.prog_data;
|
|
|
|
|
|
|
|
|
|
bool success = do_wm_prog(brw, prog, bfp, &key);
|
|
|
|
|
|
2011-04-27 13:33:10 -07:00
|
|
|
brw->wm.prog_offset = old_prog_offset;
|
2011-05-16 15:10:26 -07:00
|
|
|
brw->wm.prog_data = old_prog_data;
|
|
|
|
|
|
|
|
|
|
return success;
|
|
|
|
|
}
|