2010-10-10 15:42:37 -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>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-04-10 12:01:50 -07:00
|
|
|
#pragma once
|
|
|
|
|
2011-05-03 10:55:50 -07:00
|
|
|
#include "brw_shader.h"
|
|
|
|
|
2010-10-10 15:42:37 -07:00
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include "main/macros.h"
|
|
|
|
#include "main/shaderobj.h"
|
|
|
|
#include "main/uniforms.h"
|
|
|
|
#include "program/prog_parameter.h"
|
|
|
|
#include "program/prog_print.h"
|
|
|
|
#include "program/prog_optimize.h"
|
|
|
|
#include "program/register_allocate.h"
|
|
|
|
#include "program/sampler.h"
|
|
|
|
#include "program/hash_table.h"
|
|
|
|
#include "brw_context.h"
|
|
|
|
#include "brw_eu.h"
|
|
|
|
#include "brw_wm.h"
|
2012-10-03 13:01:23 -07:00
|
|
|
#include "brw_shader.h"
|
2010-10-10 15:42:37 -07:00
|
|
|
}
|
2011-08-26 13:58:41 -07:00
|
|
|
#include "glsl/glsl_types.h"
|
|
|
|
#include "glsl/ir.h"
|
2010-10-10 15:42:37 -07:00
|
|
|
|
2012-10-03 13:16:09 -07:00
|
|
|
class bblock_t;
|
2012-06-06 10:57:54 -07:00
|
|
|
namespace {
|
|
|
|
class acp_entry;
|
|
|
|
}
|
2012-05-10 16:10:15 -07:00
|
|
|
|
2010-10-10 15:42:37 -07:00
|
|
|
enum register_file {
|
2011-11-23 10:13:39 -08:00
|
|
|
BAD_FILE,
|
|
|
|
ARF,
|
|
|
|
GRF,
|
|
|
|
MRF,
|
|
|
|
IMM,
|
2010-10-10 15:42:37 -07:00
|
|
|
FIXED_HW_REG, /* a struct brw_reg */
|
2011-05-15 09:36:19 -07:00
|
|
|
UNIFORM, /* prog_data->params[reg] */
|
2010-10-10 15:42:37 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
class fs_reg {
|
|
|
|
public:
|
2011-01-21 14:32:31 -08:00
|
|
|
/* Callers of this ralloc-based new need not call delete. It's
|
|
|
|
* easier to just ralloc_free 'ctx' (or any of its ancestors). */
|
2010-10-10 15:42:37 -07:00
|
|
|
static void* operator new(size_t size, void *ctx)
|
|
|
|
{
|
|
|
|
void *node;
|
|
|
|
|
2011-01-21 14:32:31 -08:00
|
|
|
node = ralloc_size(ctx, size);
|
2010-10-10 15:42:37 -07:00
|
|
|
assert(node != NULL);
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2012-07-04 13:12:50 -07:00
|
|
|
void init();
|
2010-10-10 15:42:37 -07:00
|
|
|
|
2012-07-04 13:12:50 -07:00
|
|
|
fs_reg();
|
|
|
|
fs_reg(float f);
|
|
|
|
fs_reg(int32_t i);
|
|
|
|
fs_reg(uint32_t u);
|
|
|
|
fs_reg(struct brw_reg fixed_hw_reg);
|
2011-05-15 09:36:19 -07:00
|
|
|
fs_reg(enum register_file file, int reg);
|
|
|
|
fs_reg(enum register_file file, int reg, uint32_t type);
|
2010-10-10 15:42:37 -07:00
|
|
|
fs_reg(class fs_visitor *v, const struct glsl_type *type);
|
|
|
|
|
2012-07-04 13:12:50 -07:00
|
|
|
bool equals(const fs_reg &r) const;
|
2010-11-19 15:57:05 +08:00
|
|
|
|
2010-10-10 15:42:37 -07:00
|
|
|
/** Register file: ARF, GRF, MRF, IMM. */
|
|
|
|
enum register_file file;
|
2011-05-15 09:36:19 -07:00
|
|
|
/**
|
|
|
|
* Register number. For ARF/MRF, it's the hardware register. For
|
|
|
|
* GRF, it's a virtual register number until register allocation
|
|
|
|
*/
|
2010-10-10 15:42:37 -07:00
|
|
|
int reg;
|
2011-05-15 09:36:19 -07:00
|
|
|
/**
|
|
|
|
* For virtual registers, this is a hardware register offset from
|
|
|
|
* the start of the register block (for example, a constant index
|
|
|
|
* in an array access).
|
|
|
|
*/
|
2010-10-10 15:42:37 -07:00
|
|
|
int reg_offset;
|
|
|
|
/** Register type. BRW_REGISTER_TYPE_* */
|
|
|
|
int type;
|
|
|
|
bool negate;
|
|
|
|
bool abs;
|
2011-03-14 10:29:12 -07:00
|
|
|
bool sechalf;
|
2010-10-10 15:42:37 -07:00
|
|
|
struct brw_reg fixed_hw_reg;
|
2010-10-22 12:57:00 -07:00
|
|
|
int smear; /* -1, or a channel of the reg to smear to all channels. */
|
2010-10-10 15:42:37 -07:00
|
|
|
|
2011-11-23 10:13:39 -08:00
|
|
|
/** Value for file == IMM */
|
2010-10-10 15:42:37 -07:00
|
|
|
union {
|
|
|
|
int32_t i;
|
|
|
|
uint32_t u;
|
|
|
|
float f;
|
|
|
|
} imm;
|
|
|
|
};
|
|
|
|
|
2010-11-19 17:44:35 +08:00
|
|
|
static const fs_reg reg_undef;
|
|
|
|
static const fs_reg reg_null_f(ARF, BRW_ARF_NULL, BRW_REGISTER_TYPE_F);
|
|
|
|
static const fs_reg reg_null_d(ARF, BRW_ARF_NULL, BRW_REGISTER_TYPE_D);
|
|
|
|
|
2012-10-03 13:01:23 -07:00
|
|
|
class fs_inst : public backend_instruction {
|
2010-10-10 15:42:37 -07:00
|
|
|
public:
|
2011-01-21 14:32:31 -08:00
|
|
|
/* Callers of this ralloc-based new need not call delete. It's
|
|
|
|
* easier to just ralloc_free 'ctx' (or any of its ancestors). */
|
2010-10-10 15:42:37 -07:00
|
|
|
static void* operator new(size_t size, void *ctx)
|
|
|
|
{
|
|
|
|
void *node;
|
|
|
|
|
2011-01-21 14:32:31 -08:00
|
|
|
node = rzalloc_size(ctx, size);
|
2010-10-10 15:42:37 -07:00
|
|
|
assert(node != NULL);
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2012-07-04 13:12:50 -07:00
|
|
|
void init();
|
2010-10-13 20:17:15 -07:00
|
|
|
|
2012-07-04 13:12:50 -07:00
|
|
|
fs_inst();
|
|
|
|
fs_inst(enum opcode opcode);
|
|
|
|
fs_inst(enum opcode opcode, fs_reg dst);
|
|
|
|
fs_inst(enum opcode opcode, fs_reg dst, fs_reg src0);
|
|
|
|
fs_inst(enum opcode opcode, fs_reg dst, fs_reg src0, fs_reg src1);
|
|
|
|
fs_inst(enum opcode opcode, fs_reg dst,
|
|
|
|
fs_reg src0, fs_reg src1,fs_reg src2);
|
2010-10-08 15:11:42 -07:00
|
|
|
|
2012-07-04 13:12:50 -07:00
|
|
|
bool equals(fs_inst *inst);
|
|
|
|
int regs_written();
|
2012-07-06 15:06:59 -07:00
|
|
|
bool overwrites_reg(const fs_reg ®);
|
2012-07-04 13:12:50 -07:00
|
|
|
bool is_tex();
|
|
|
|
bool is_math();
|
2011-01-18 22:48:11 -08:00
|
|
|
|
2010-10-10 15:42:37 -07:00
|
|
|
fs_reg dst;
|
|
|
|
fs_reg src[3];
|
|
|
|
bool saturate;
|
|
|
|
int conditional_mod; /**< BRW_CONDITIONAL_* */
|
|
|
|
|
|
|
|
int mlen; /**< SEND message length */
|
2010-10-08 14:35:34 -07:00
|
|
|
int base_mrf; /**< First MRF in the SEND message, if mlen is nonzero. */
|
2012-08-04 20:33:13 -07:00
|
|
|
uint32_t texture_offset; /**< Texture offset bitfield */
|
2010-10-10 15:42:37 -07:00
|
|
|
int sampler;
|
|
|
|
int target; /**< MRT target. */
|
|
|
|
bool eot;
|
|
|
|
bool header_present;
|
|
|
|
bool shadow_compare;
|
2011-03-11 19:19:01 -08:00
|
|
|
bool force_uncompressed;
|
|
|
|
bool force_sechalf;
|
2010-10-19 09:25:51 -07:00
|
|
|
uint32_t offset; /* spill/unspill offset */
|
2010-10-10 15:42:37 -07:00
|
|
|
|
|
|
|
/** @{
|
|
|
|
* Annotation for the generated IR. One of the two can be set.
|
|
|
|
*/
|
2012-08-27 14:35:01 -07:00
|
|
|
const void *ir;
|
2010-10-10 15:42:37 -07:00
|
|
|
const char *annotation;
|
|
|
|
/** @} */
|
|
|
|
};
|
|
|
|
|
2012-10-03 13:01:23 -07:00
|
|
|
class fs_visitor : public backend_visitor
|
2010-10-10 15:42:37 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2011-05-16 15:10:26 -07:00
|
|
|
fs_visitor(struct brw_wm_compile *c, struct gl_shader_program *prog,
|
2012-07-04 13:12:50 -07:00
|
|
|
struct brw_shader *shader);
|
|
|
|
~fs_visitor();
|
2010-10-10 15:42:37 -07:00
|
|
|
|
|
|
|
fs_reg *variable_storage(ir_variable *var);
|
|
|
|
int virtual_grf_alloc(int size);
|
2011-07-25 18:13:04 -07:00
|
|
|
void import_uniforms(fs_visitor *v);
|
2010-10-10 15:42:37 -07:00
|
|
|
|
|
|
|
void visit(ir_variable *ir);
|
|
|
|
void visit(ir_assignment *ir);
|
|
|
|
void visit(ir_dereference_variable *ir);
|
|
|
|
void visit(ir_dereference_record *ir);
|
|
|
|
void visit(ir_dereference_array *ir);
|
|
|
|
void visit(ir_expression *ir);
|
|
|
|
void visit(ir_texture *ir);
|
|
|
|
void visit(ir_if *ir);
|
|
|
|
void visit(ir_constant *ir);
|
|
|
|
void visit(ir_swizzle *ir);
|
|
|
|
void visit(ir_return *ir);
|
|
|
|
void visit(ir_loop *ir);
|
|
|
|
void visit(ir_loop_jump *ir);
|
|
|
|
void visit(ir_discard *ir);
|
|
|
|
void visit(ir_call *ir);
|
|
|
|
void visit(ir_function *ir);
|
|
|
|
void visit(ir_function_signature *ir);
|
|
|
|
|
2011-06-10 14:45:24 -07:00
|
|
|
void swizzle_result(ir_texture *ir, fs_reg orig_val, int sampler);
|
|
|
|
|
2010-10-10 15:42:37 -07:00
|
|
|
fs_inst *emit(fs_inst inst);
|
2011-03-13 00:23:40 -08:00
|
|
|
|
2012-07-04 13:12:50 -07:00
|
|
|
fs_inst *emit(enum opcode opcode);
|
|
|
|
fs_inst *emit(enum opcode opcode, fs_reg dst);
|
|
|
|
fs_inst *emit(enum opcode opcode, fs_reg dst, fs_reg src0);
|
|
|
|
fs_inst *emit(enum opcode opcode, fs_reg dst, fs_reg src0, fs_reg src1);
|
2011-05-03 10:55:50 -07:00
|
|
|
fs_inst *emit(enum opcode opcode, fs_reg dst,
|
2012-07-04 13:12:50 -07:00
|
|
|
fs_reg src0, fs_reg src1, fs_reg src2);
|
2011-03-13 00:23:40 -08:00
|
|
|
|
2011-05-24 16:45:17 -07:00
|
|
|
int type_size(const struct glsl_type *type);
|
2012-03-10 13:48:42 -08:00
|
|
|
fs_inst *get_instruction_generating_reg(fs_inst *start,
|
|
|
|
fs_inst *end,
|
|
|
|
fs_reg reg);
|
2011-05-24 16:45:17 -07:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
bool run();
|
2011-01-17 16:02:58 -08:00
|
|
|
void setup_paramvalues_refs();
|
2010-10-10 15:42:37 -07:00
|
|
|
void assign_curb_setup();
|
|
|
|
void calculate_urb_setup();
|
|
|
|
void assign_urb_setup();
|
2010-10-19 09:25:51 -07:00
|
|
|
bool assign_regs();
|
2010-10-10 15:42:37 -07:00
|
|
|
void assign_regs_trivial();
|
2012-10-02 15:01:24 -07:00
|
|
|
void setup_payload_interference(struct ra_graph *g, int payload_reg_count,
|
|
|
|
int first_payload_node);
|
2010-10-19 09:25:51 -07:00
|
|
|
int choose_spill_reg(struct ra_graph *g);
|
|
|
|
void spill_reg(int spill_reg);
|
2010-10-13 20:17:15 -07:00
|
|
|
void split_virtual_grfs();
|
2010-10-22 12:57:00 -07:00
|
|
|
void setup_pull_constants();
|
2010-10-10 15:42:37 -07:00
|
|
|
void calculate_live_intervals();
|
2011-07-22 16:45:15 -07:00
|
|
|
bool opt_algebraic();
|
2012-05-10 16:10:15 -07:00
|
|
|
bool opt_cse();
|
2012-10-03 13:16:09 -07:00
|
|
|
bool opt_cse_local(bblock_t *block, exec_list *aeb);
|
2012-05-08 13:01:52 -07:00
|
|
|
bool opt_copy_propagate();
|
2012-06-06 10:57:54 -07:00
|
|
|
bool try_copy_propagate(fs_inst *inst, int arg, acp_entry *entry);
|
2012-09-21 13:11:54 +02:00
|
|
|
bool try_constant_propagate(fs_inst *inst, acp_entry *entry);
|
2012-10-03 13:16:09 -07:00
|
|
|
bool opt_copy_propagate_local(void *mem_ctx, bblock_t *block);
|
2010-10-10 15:42:37 -07:00
|
|
|
bool register_coalesce();
|
2012-05-08 10:18:20 -07:00
|
|
|
bool register_coalesce_2();
|
2010-10-08 14:00:14 -07:00
|
|
|
bool compute_to_mrf();
|
2010-10-10 15:42:37 -07:00
|
|
|
bool dead_code_eliminate();
|
2011-07-25 18:13:04 -07:00
|
|
|
bool remove_dead_constants();
|
2010-11-19 15:57:05 +08:00
|
|
|
bool remove_duplicate_mrf_writes();
|
2010-10-10 15:42:37 -07:00
|
|
|
bool virtual_grf_interferes(int a, int b);
|
2011-01-18 17:16:49 -08:00
|
|
|
void schedule_instructions();
|
2011-03-13 13:43:05 -07:00
|
|
|
void fail(const char *msg, ...);
|
2011-01-18 17:16:49 -08:00
|
|
|
|
2011-03-11 19:19:01 -08:00
|
|
|
void push_force_uncompressed();
|
|
|
|
void pop_force_uncompressed();
|
|
|
|
void push_force_sechalf();
|
|
|
|
void pop_force_sechalf();
|
|
|
|
|
2010-10-10 15:42:37 -07:00
|
|
|
void generate_code();
|
|
|
|
void generate_fb_write(fs_inst *inst);
|
2011-03-21 15:54:18 -07:00
|
|
|
void generate_pixel_xy(struct brw_reg dst, bool is_x);
|
2010-10-10 15:42:37 -07:00
|
|
|
void generate_linterp(fs_inst *inst, struct brw_reg dst,
|
|
|
|
struct brw_reg *src);
|
2010-12-27 03:21:23 -08:00
|
|
|
void generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src);
|
2011-10-18 12:24:47 -07:00
|
|
|
void generate_math1_gen7(fs_inst *inst,
|
|
|
|
struct brw_reg dst,
|
|
|
|
struct brw_reg src);
|
|
|
|
void generate_math2_gen7(fs_inst *inst,
|
|
|
|
struct brw_reg dst,
|
|
|
|
struct brw_reg src0,
|
|
|
|
struct brw_reg src1);
|
2011-08-18 11:55:42 -07:00
|
|
|
void generate_math1_gen6(fs_inst *inst,
|
|
|
|
struct brw_reg dst,
|
|
|
|
struct brw_reg src);
|
|
|
|
void generate_math2_gen6(fs_inst *inst,
|
|
|
|
struct brw_reg dst,
|
|
|
|
struct brw_reg src0,
|
|
|
|
struct brw_reg src1);
|
|
|
|
void generate_math_gen4(fs_inst *inst,
|
|
|
|
struct brw_reg dst,
|
|
|
|
struct brw_reg src);
|
2011-05-10 15:30:11 -07:00
|
|
|
void generate_discard(fs_inst *inst);
|
2010-10-10 15:42:37 -07:00
|
|
|
void generate_ddx(fs_inst *inst, struct brw_reg dst, struct brw_reg src);
|
2012-06-20 13:40:45 -07:00
|
|
|
void generate_ddy(fs_inst *inst, struct brw_reg dst, struct brw_reg src,
|
|
|
|
bool negate_value);
|
2010-10-19 09:25:51 -07:00
|
|
|
void generate_spill(fs_inst *inst, struct brw_reg src);
|
|
|
|
void generate_unspill(fs_inst *inst, struct brw_reg dst);
|
2012-06-20 15:41:14 -07:00
|
|
|
void generate_pull_constant_load(fs_inst *inst, struct brw_reg dst,
|
|
|
|
struct brw_reg index,
|
|
|
|
struct brw_reg offset);
|
2012-06-18 14:50:04 -07:00
|
|
|
void generate_mov_dispatch_to_flags();
|
2010-10-10 15:42:37 -07:00
|
|
|
|
|
|
|
void emit_dummy_fs();
|
|
|
|
fs_reg *emit_fragcoord_interpolation(ir_variable *ir);
|
2012-06-21 11:33:22 -07:00
|
|
|
fs_inst *emit_linterp(const fs_reg &attr, const fs_reg &interp,
|
2012-06-18 13:52:02 -07:00
|
|
|
glsl_interp_qualifier interpolation_mode,
|
|
|
|
bool is_centroid);
|
2010-10-10 15:42:37 -07:00
|
|
|
fs_reg *emit_frontfacing_interpolation(ir_variable *ir);
|
|
|
|
fs_reg *emit_general_interpolation(ir_variable *ir);
|
|
|
|
void emit_interpolation_setup_gen4();
|
|
|
|
void emit_interpolation_setup_gen6();
|
2012-09-22 16:56:02 +02:00
|
|
|
fs_reg rescale_texcoord(ir_texture *ir, fs_reg coordinate,
|
|
|
|
bool is_rect, int sampler, int texunit);
|
2010-11-02 09:11:17 -07:00
|
|
|
fs_inst *emit_texture_gen4(ir_texture *ir, fs_reg dst, fs_reg coordinate,
|
2012-08-21 11:45:09 -07:00
|
|
|
fs_reg shadow_comp, fs_reg lod, fs_reg lod2);
|
2010-11-02 09:11:17 -07:00
|
|
|
fs_inst *emit_texture_gen5(ir_texture *ir, fs_reg dst, fs_reg coordinate,
|
2012-08-21 11:45:09 -07:00
|
|
|
fs_reg shadow_comp, fs_reg lod, fs_reg lod2);
|
2010-11-02 09:11:17 -07:00
|
|
|
fs_inst *emit_texture_gen7(ir_texture *ir, fs_reg dst, fs_reg coordinate,
|
2012-08-21 11:45:09 -07:00
|
|
|
fs_reg shadow_comp, fs_reg lod, fs_reg lod2);
|
2011-05-03 10:55:50 -07:00
|
|
|
fs_inst *emit_math(enum opcode op, fs_reg dst, fs_reg src0);
|
|
|
|
fs_inst *emit_math(enum opcode op, fs_reg dst, fs_reg src0, fs_reg src1);
|
2012-09-22 17:25:20 +02:00
|
|
|
void emit_minmax(uint32_t conditionalmod, fs_reg dst,
|
|
|
|
fs_reg src0, fs_reg src1);
|
2010-11-19 10:36:06 +08:00
|
|
|
bool try_emit_saturate(ir_expression *ir);
|
2012-02-07 00:59:11 +01:00
|
|
|
bool try_emit_mad(ir_expression *ir, int mul_arg);
|
2010-10-14 11:11:29 -07:00
|
|
|
void emit_bool_to_cond_code(ir_rvalue *condition);
|
2010-10-19 12:32:55 -07:00
|
|
|
void emit_if_gen6(ir_if *ir);
|
2010-10-19 09:25:51 -07:00
|
|
|
void emit_unspill(fs_inst *inst, fs_reg reg, uint32_t spill_offset);
|
2010-10-08 14:35:34 -07:00
|
|
|
|
2012-08-27 14:35:01 -07:00
|
|
|
void emit_fragment_program_code();
|
|
|
|
void setup_fp_regs();
|
|
|
|
fs_reg get_fp_src_reg(const prog_src_register *src);
|
|
|
|
fs_reg get_fp_dst_reg(const prog_dst_register *dst);
|
|
|
|
void emit_fp_alu1(enum opcode opcode,
|
|
|
|
const struct prog_instruction *fpi,
|
|
|
|
fs_reg dst, fs_reg src);
|
|
|
|
void emit_fp_alu2(enum opcode opcode,
|
|
|
|
const struct prog_instruction *fpi,
|
|
|
|
fs_reg dst, fs_reg src0, fs_reg src1);
|
|
|
|
void emit_fp_scalar_write(const struct prog_instruction *fpi,
|
|
|
|
fs_reg dst, fs_reg src);
|
|
|
|
void emit_fp_scalar_math(enum opcode opcode,
|
|
|
|
const struct prog_instruction *fpi,
|
|
|
|
fs_reg dst, fs_reg src);
|
|
|
|
|
|
|
|
void emit_fp_minmax(const struct prog_instruction *fpi,
|
|
|
|
fs_reg dst, fs_reg src0, fs_reg src1);
|
|
|
|
|
|
|
|
void emit_fp_sop(uint32_t conditional_mod,
|
|
|
|
const struct prog_instruction *fpi,
|
|
|
|
fs_reg dst, fs_reg src0, fs_reg src1, fs_reg one);
|
|
|
|
|
2011-11-08 19:27:46 -08:00
|
|
|
void emit_color_write(int target, int index, int first_color_mrf);
|
2010-10-10 15:42:37 -07:00
|
|
|
void emit_fb_writes();
|
2011-08-26 12:24:43 -07:00
|
|
|
bool try_rewrite_rhs_to_dst(ir_assignment *ir,
|
|
|
|
fs_reg dst,
|
|
|
|
fs_reg src,
|
|
|
|
fs_inst *pre_rhs_inst,
|
|
|
|
fs_inst *last_rhs_inst);
|
2010-10-10 15:42:37 -07:00
|
|
|
void emit_assignment_writes(fs_reg &l, fs_reg &r,
|
|
|
|
const glsl_type *type, bool predicated);
|
2011-10-03 15:12:10 -07:00
|
|
|
void resolve_ud_negate(fs_reg *reg);
|
2012-04-23 16:48:09 -07:00
|
|
|
void resolve_bool_comparison(ir_rvalue *rvalue, fs_reg *reg);
|
2010-10-10 15:42:37 -07:00
|
|
|
|
|
|
|
struct brw_reg interp_reg(int location, int channel);
|
|
|
|
int setup_uniform_values(int loc, const glsl_type *type);
|
|
|
|
void setup_builtin_uniform_values(ir_variable *ir);
|
2010-11-19 15:57:05 +08:00
|
|
|
int implied_mrf_writes(fs_inst *inst);
|
2010-10-10 15:42:37 -07:00
|
|
|
|
|
|
|
const struct gl_fragment_program *fp;
|
|
|
|
struct brw_wm_compile *c;
|
|
|
|
|
2011-01-17 16:02:58 -08:00
|
|
|
/* Delayed setup of c->prog_data.params[] due to realloc of
|
|
|
|
* ParamValues[] during compile.
|
|
|
|
*/
|
|
|
|
int param_index[MAX_UNIFORMS * 4];
|
|
|
|
int param_offset[MAX_UNIFORMS * 4];
|
|
|
|
|
2010-10-10 15:42:37 -07:00
|
|
|
int *virtual_grf_sizes;
|
2012-07-06 13:45:53 -07:00
|
|
|
int virtual_grf_count;
|
2010-10-10 15:42:37 -07:00
|
|
|
int virtual_grf_array_size;
|
|
|
|
int *virtual_grf_def;
|
|
|
|
int *virtual_grf_use;
|
2011-01-12 10:10:01 -08:00
|
|
|
bool live_intervals_valid;
|
2010-10-10 15:42:37 -07:00
|
|
|
|
2011-07-25 18:13:04 -07:00
|
|
|
/* This is the map from UNIFORM hw_reg + reg_offset as generated by
|
|
|
|
* the visitor to the packed uniform number after
|
|
|
|
* remove_dead_constants() that represents the actual uploaded
|
|
|
|
* uniform index.
|
|
|
|
*/
|
|
|
|
int *params_remap;
|
|
|
|
|
2010-10-10 15:42:37 -07:00
|
|
|
struct hash_table *variable_ht;
|
2012-09-18 18:12:48 +02:00
|
|
|
fs_reg frag_depth;
|
2011-11-08 19:27:46 -08:00
|
|
|
fs_reg outputs[BRW_MAX_DRAW_BUFFERS];
|
2012-06-01 13:16:58 -07:00
|
|
|
unsigned output_components[BRW_MAX_DRAW_BUFFERS];
|
2012-04-25 13:58:07 -07:00
|
|
|
fs_reg dual_src_output;
|
2010-10-10 15:42:37 -07:00
|
|
|
int first_non_payload_grf;
|
2012-10-01 16:39:54 -07:00
|
|
|
/** Either BRW_MAX_GRF or GEN7_MRF_HACK_START */
|
2012-01-27 12:54:11 -08:00
|
|
|
int max_grf;
|
2010-10-10 15:42:37 -07:00
|
|
|
int urb_setup[FRAG_ATTRIB_MAX];
|
|
|
|
|
2012-08-27 14:35:01 -07:00
|
|
|
fs_reg *fp_temp_regs;
|
|
|
|
fs_reg *fp_input_regs;
|
|
|
|
|
2010-10-10 15:42:37 -07:00
|
|
|
/** @{ debug annotation info */
|
|
|
|
const char *current_annotation;
|
2012-08-27 14:35:01 -07:00
|
|
|
const void *base_ir;
|
2010-10-10 15:42:37 -07:00
|
|
|
/** @} */
|
|
|
|
|
2011-03-13 13:43:05 -07:00
|
|
|
bool failed;
|
2011-05-16 15:10:26 -07:00
|
|
|
char *fail_msg;
|
2010-10-10 15:42:37 -07:00
|
|
|
|
2011-08-26 12:05:07 -07:00
|
|
|
/* Result of last visit() method. */
|
2010-10-10 15:42:37 -07:00
|
|
|
fs_reg result;
|
|
|
|
|
|
|
|
fs_reg pixel_x;
|
|
|
|
fs_reg pixel_y;
|
|
|
|
fs_reg wpos_w;
|
|
|
|
fs_reg pixel_w;
|
2011-10-21 17:20:32 -07:00
|
|
|
fs_reg delta_x[BRW_WM_BARYCENTRIC_INTERP_MODE_COUNT];
|
|
|
|
fs_reg delta_y[BRW_WM_BARYCENTRIC_INTERP_MODE_COUNT];
|
2010-12-28 13:55:14 -08:00
|
|
|
fs_reg reg_null_cmp;
|
2010-10-10 15:42:37 -07:00
|
|
|
|
|
|
|
int grf_used;
|
2011-03-11 19:19:01 -08:00
|
|
|
|
|
|
|
int force_uncompressed_stack;
|
|
|
|
int force_sechalf_stack;
|
2012-04-10 12:01:50 -07:00
|
|
|
|
2012-10-03 13:16:09 -07:00
|
|
|
class bblock_t *bblock;
|
2010-10-10 15:42:37 -07:00
|
|
|
};
|
|
|
|
|
2011-10-07 12:26:50 -07:00
|
|
|
bool brw_do_channel_expressions(struct exec_list *instructions);
|
|
|
|
bool brw_do_vector_splitting(struct exec_list *instructions);
|
2011-05-16 15:10:26 -07:00
|
|
|
bool brw_fs_precompile(struct gl_context *ctx, struct gl_shader_program *prog);
|