2011-05-26 10:01:10 -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-03 10:55:50 -07:00
|
|
|
#include <stdint.h>
|
2014-06-29 15:27:07 -07:00
|
|
|
#include "brw_reg.h"
|
2011-05-02 09:45:40 -07:00
|
|
|
#include "brw_defines.h"
|
2014-02-19 18:37:11 -08:00
|
|
|
#include "main/compiler.h"
|
2011-10-26 13:51:28 -07:00
|
|
|
#include "glsl/ir.h"
|
2015-06-28 21:04:17 +03:00
|
|
|
#include "program/prog_parameter.h"
|
2011-05-03 10:55:50 -07:00
|
|
|
|
2015-02-10 15:51:34 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#include "brw_ir_allocator.h"
|
|
|
|
#endif
|
|
|
|
|
2011-05-03 10:55:50 -07:00
|
|
|
#pragma once
|
|
|
|
|
2015-02-03 20:34:39 +02:00
|
|
|
#define MAX_SAMPLER_MESSAGE_SIZE 11
|
|
|
|
#define MAX_VGRF_SIZE 16
|
|
|
|
|
2015-04-16 12:01:09 -07:00
|
|
|
struct brw_compiler {
|
|
|
|
const struct brw_device_info *devinfo;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
struct ra_regs *regs;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array of the ra classes for the unaligned contiguous register
|
|
|
|
* block sizes used.
|
|
|
|
*/
|
|
|
|
int *classes;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mapping for register-allocated objects in *regs to the first
|
|
|
|
* GRF for that object.
|
|
|
|
*/
|
|
|
|
uint8_t *ra_reg_to_grf;
|
|
|
|
} vec4_reg_set;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
struct ra_regs *regs;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array of the ra classes for the unaligned contiguous register
|
|
|
|
* block sizes used, indexed by register size.
|
|
|
|
*/
|
|
|
|
int classes[16];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mapping from classes to ra_reg ranges. Each of the per-size
|
|
|
|
* classes corresponds to a range of ra_reg nodes. This array stores
|
|
|
|
* those ranges in the form of first ra_reg in each class and the
|
|
|
|
* total number of ra_reg elements in the last array element. This
|
|
|
|
* way the range of the i'th class is given by:
|
|
|
|
* [ class_to_ra_reg_range[i], class_to_ra_reg_range[i+1] )
|
|
|
|
*/
|
|
|
|
int class_to_ra_reg_range[17];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mapping for register-allocated objects in *regs to the first
|
|
|
|
* GRF for that object.
|
|
|
|
*/
|
|
|
|
uint8_t *ra_reg_to_grf;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ra class for the aligned pairs we use for PLN, which doesn't
|
|
|
|
* appear in *classes.
|
|
|
|
*/
|
|
|
|
int aligned_pairs_class;
|
|
|
|
} fs_reg_sets[2];
|
2015-04-16 14:13:52 -07:00
|
|
|
|
|
|
|
void (*shader_debug_log)(void *, const char *str, ...) PRINTFLIKE(2, 3);
|
2015-06-22 17:01:22 -07:00
|
|
|
void (*shader_perf_log)(void *, const char *str, ...) PRINTFLIKE(2, 3);
|
2015-04-16 15:28:17 -07:00
|
|
|
|
|
|
|
bool scalar_vs;
|
|
|
|
struct gl_shader_compiler_options glsl_compiler_options[MESA_SHADER_STAGES];
|
2015-04-16 12:01:09 -07:00
|
|
|
};
|
|
|
|
|
2014-02-19 18:37:11 -08:00
|
|
|
enum PACKED register_file {
|
2013-04-29 16:05:05 -07:00
|
|
|
BAD_FILE,
|
|
|
|
GRF,
|
|
|
|
MRF,
|
|
|
|
IMM,
|
|
|
|
HW_REG, /* a struct brw_reg */
|
|
|
|
ATTR,
|
|
|
|
UNIFORM, /* prog_data->params[reg] */
|
|
|
|
};
|
|
|
|
|
2014-06-29 15:27:07 -07:00
|
|
|
struct backend_reg
|
|
|
|
{
|
2014-06-29 15:35:58 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
bool is_zero() const;
|
|
|
|
bool is_one() const;
|
2015-02-04 18:08:21 -08:00
|
|
|
bool is_negative_one() const;
|
2014-06-29 15:35:58 -07:00
|
|
|
bool is_null() const;
|
|
|
|
bool is_accumulator() const;
|
2015-03-18 19:35:31 +02:00
|
|
|
bool in_range(const backend_reg &r, unsigned n) const;
|
2014-06-29 15:35:58 -07:00
|
|
|
#endif
|
|
|
|
|
2014-06-29 15:27:07 -07:00
|
|
|
enum register_file file; /**< Register file: GRF, MRF, IMM. */
|
2014-06-29 16:02:59 -07:00
|
|
|
enum brw_reg_type type; /**< Register type: BRW_REGISTER_TYPE_* */
|
2014-06-29 15:27:07 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register number.
|
|
|
|
*
|
|
|
|
* For GRF, it's a virtual register number until register allocation.
|
|
|
|
*
|
|
|
|
* For MRF, it's the hardware register.
|
|
|
|
*/
|
|
|
|
uint16_t reg;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Offset within the virtual register.
|
|
|
|
*
|
|
|
|
* In the scalar backend, this is in units of a float per pixel for pre-
|
|
|
|
* register allocation registers (i.e., one register in SIMD8 mode and two
|
|
|
|
* registers in SIMD16 mode).
|
|
|
|
*
|
|
|
|
* For uniforms, this is in units of 1 float.
|
|
|
|
*/
|
2015-03-19 16:03:57 +02:00
|
|
|
uint16_t reg_offset;
|
2014-06-29 15:27:07 -07:00
|
|
|
|
|
|
|
struct brw_reg fixed_hw_reg;
|
|
|
|
|
|
|
|
bool negate;
|
|
|
|
bool abs;
|
|
|
|
};
|
|
|
|
|
2014-06-29 18:18:53 -07:00
|
|
|
struct cfg_t;
|
2014-07-12 21:16:34 -07:00
|
|
|
struct bblock_t;
|
2014-05-19 10:20:37 -07:00
|
|
|
|
2014-06-29 18:21:30 -07:00
|
|
|
#ifdef __cplusplus
|
2014-06-14 22:53:40 -07:00
|
|
|
struct backend_instruction : public exec_node {
|
2014-12-29 19:29:21 -08:00
|
|
|
bool is_3src() const;
|
2014-02-27 15:44:45 -08:00
|
|
|
bool is_tex() const;
|
|
|
|
bool is_math() const;
|
|
|
|
bool is_control_flow() const;
|
2015-03-13 14:34:06 -07:00
|
|
|
bool is_commutative() const;
|
2014-02-27 15:44:45 -08:00
|
|
|
bool can_do_source_mods() const;
|
|
|
|
bool can_do_saturate() const;
|
2014-08-24 14:01:48 -07:00
|
|
|
bool can_do_cmod() const;
|
2014-04-09 12:01:49 -07:00
|
|
|
bool reads_accumulator_implicitly() const;
|
2015-04-17 12:15:58 -07:00
|
|
|
bool writes_accumulator_implicitly(const struct brw_device_info *devinfo) const;
|
2013-04-28 01:35:57 -07:00
|
|
|
|
2014-07-12 21:16:34 -07:00
|
|
|
void remove(bblock_t *block);
|
2014-07-12 21:18:08 -07:00
|
|
|
void insert_after(bblock_t *block, backend_instruction *inst);
|
|
|
|
void insert_before(bblock_t *block, backend_instruction *inst);
|
|
|
|
void insert_before(bblock_t *block, exec_list *list);
|
2014-07-12 21:16:34 -07:00
|
|
|
|
2013-10-20 14:02:08 -07:00
|
|
|
/**
|
|
|
|
* True if the instruction has side effects other than writing to
|
|
|
|
* its destination registers. You are expected not to reorder or
|
|
|
|
* optimize these out unless you know what you are doing.
|
|
|
|
*/
|
|
|
|
bool has_side_effects() const;
|
2014-06-29 18:21:30 -07:00
|
|
|
#else
|
|
|
|
struct backend_instruction {
|
|
|
|
struct exec_node link;
|
|
|
|
#endif
|
2014-05-19 10:20:37 -07:00
|
|
|
/** @{
|
|
|
|
* Annotation for the generated IR. One of the two can be set.
|
|
|
|
*/
|
|
|
|
const void *ir;
|
|
|
|
const char *annotation;
|
|
|
|
/** @} */
|
2014-06-29 17:32:14 -07:00
|
|
|
|
2014-11-12 11:28:02 -08:00
|
|
|
uint32_t offset; /**< spill/unspill offset or texture offset bitfield */
|
2014-06-29 17:32:14 -07:00
|
|
|
uint8_t mlen; /**< SEND message length */
|
|
|
|
int8_t base_mrf; /**< First MRF in the SEND message, if mlen is nonzero. */
|
|
|
|
uint8_t target; /**< MRT target. */
|
2015-02-06 01:27:40 +02:00
|
|
|
uint8_t regs_written; /**< Number of registers written by the instruction. */
|
2014-06-29 17:32:14 -07:00
|
|
|
|
2014-06-29 18:02:49 -07:00
|
|
|
enum opcode opcode; /* BRW_OPCODE_* or FS_OPCODE_* */
|
|
|
|
enum brw_conditional_mod conditional_mod; /**< BRW_CONDITIONAL_* */
|
|
|
|
enum brw_predicate predicate;
|
|
|
|
bool predicate_inverse:1;
|
|
|
|
bool writes_accumulator:1; /**< instruction implicitly writes accumulator */
|
2014-06-29 17:32:14 -07:00
|
|
|
bool force_writemask_all:1;
|
|
|
|
bool no_dd_clear:1;
|
|
|
|
bool no_dd_check:1;
|
|
|
|
bool saturate:1;
|
2014-11-12 11:28:03 -08:00
|
|
|
bool shadow_compare:1;
|
2015-02-06 01:28:12 +02:00
|
|
|
|
|
|
|
/* Chooses which flag subregister (f0.0 or f0.1) is used for conditional
|
|
|
|
* mod and predication.
|
|
|
|
*/
|
|
|
|
unsigned flag_subreg:1;
|
2015-03-24 10:17:32 -07:00
|
|
|
|
|
|
|
/** The number of hardware registers used for a message header. */
|
|
|
|
uint8_t header_size;
|
2012-10-03 13:01:23 -07:00
|
|
|
};
|
|
|
|
|
2014-06-29 18:21:30 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
2013-11-06 17:38:23 -08:00
|
|
|
enum instruction_scheduler_mode {
|
2013-11-19 13:07:12 -08:00
|
|
|
SCHEDULE_PRE,
|
2013-11-06 17:38:23 -08:00
|
|
|
SCHEDULE_PRE_NON_LIFO,
|
|
|
|
SCHEDULE_PRE_LIFO,
|
|
|
|
SCHEDULE_POST,
|
|
|
|
};
|
|
|
|
|
2015-05-20 09:45:47 -07:00
|
|
|
class backend_shader {
|
2014-02-14 11:54:02 +02:00
|
|
|
protected:
|
|
|
|
|
2015-06-22 17:17:56 -07:00
|
|
|
backend_shader(const struct brw_compiler *compiler,
|
|
|
|
void *log_data,
|
2015-06-22 11:42:15 -07:00
|
|
|
void *mem_ctx,
|
2015-05-20 09:44:01 -07:00
|
|
|
struct gl_shader_program *shader_prog,
|
|
|
|
struct gl_program *prog,
|
|
|
|
struct brw_stage_prog_data *stage_prog_data,
|
|
|
|
gl_shader_stage stage);
|
2014-02-14 11:54:02 +02:00
|
|
|
|
2012-10-03 13:01:23 -07:00
|
|
|
public:
|
|
|
|
|
2015-06-22 17:17:56 -07:00
|
|
|
const struct brw_compiler *compiler;
|
|
|
|
void *log_data; /* Passed to compiler->*_log functions */
|
|
|
|
|
2015-04-15 18:00:05 -07:00
|
|
|
const struct brw_device_info * const devinfo;
|
2014-02-18 22:27:42 +02:00
|
|
|
struct brw_shader * const shader;
|
|
|
|
struct gl_shader_program * const shader_prog;
|
|
|
|
struct gl_program * const prog;
|
|
|
|
struct brw_stage_prog_data * const stage_prog_data;
|
2012-10-03 13:01:23 -07:00
|
|
|
|
|
|
|
/** ralloc context for temporary data used during compile */
|
|
|
|
void *mem_ctx;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of either fs_inst or vec4_instruction (inheriting from
|
|
|
|
* backend_instruction)
|
|
|
|
*/
|
|
|
|
exec_list instructions;
|
2013-04-29 14:21:14 -07:00
|
|
|
|
2014-07-11 20:54:52 -07:00
|
|
|
cfg_t *cfg;
|
|
|
|
|
2014-07-21 20:05:21 -07:00
|
|
|
gl_shader_stage stage;
|
2015-02-18 17:38:45 -08:00
|
|
|
bool debug_enabled;
|
|
|
|
const char *stage_name;
|
|
|
|
const char *stage_abbrev;
|
2014-07-21 20:05:21 -07:00
|
|
|
|
2015-02-10 15:51:34 +02:00
|
|
|
brw::simple_allocator alloc;
|
|
|
|
|
2013-04-29 14:21:14 -07:00
|
|
|
virtual void dump_instruction(backend_instruction *inst) = 0;
|
2014-05-29 11:45:15 -07:00
|
|
|
virtual void dump_instruction(backend_instruction *inst, FILE *file) = 0;
|
2013-08-04 23:34:01 -07:00
|
|
|
virtual void dump_instructions();
|
2014-05-29 13:08:59 -07:00
|
|
|
virtual void dump_instructions(const char *name);
|
2013-10-03 09:58:43 -07:00
|
|
|
|
2014-07-11 20:54:52 -07:00
|
|
|
void calculate_cfg();
|
|
|
|
void invalidate_cfg();
|
|
|
|
|
2013-10-03 09:58:43 -07:00
|
|
|
void assign_common_binding_table_offsets(uint32_t next_binding_table_offset);
|
2013-11-11 10:36:36 -08:00
|
|
|
|
2014-09-01 10:54:00 -07:00
|
|
|
virtual void invalidate_live_intervals() = 0;
|
2015-06-28 21:04:17 +03:00
|
|
|
|
2015-08-19 10:32:32 -07:00
|
|
|
virtual void setup_vec4_uniform_value(unsigned param_offset,
|
|
|
|
const gl_constant_value *values,
|
2015-08-19 09:56:57 -07:00
|
|
|
unsigned n) = 0;
|
2015-08-19 10:32:32 -07:00
|
|
|
void setup_image_uniform_values(unsigned param_offset,
|
|
|
|
const gl_uniform_storage *storage);
|
2012-10-03 13:01:23 -07:00
|
|
|
};
|
|
|
|
|
2015-04-14 14:23:40 -07:00
|
|
|
uint32_t brw_texture_offset(int *offsets, unsigned num_components);
|
2013-08-21 07:53:42 -07:00
|
|
|
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2014-06-29 16:02:59 -07:00
|
|
|
enum brw_reg_type brw_type_for_base_type(const struct glsl_type *type);
|
2014-06-29 17:50:20 -07:00
|
|
|
enum brw_conditional_mod brw_conditional_for_comparison(unsigned int op);
|
2011-05-02 09:45:40 -07:00
|
|
|
uint32_t brw_math_function(enum opcode op);
|
2013-03-11 17:36:54 -07:00
|
|
|
const char *brw_instruction_name(enum opcode op);
|
2014-12-21 06:56:54 -08:00
|
|
|
bool brw_saturate_immediate(enum brw_reg_type type, struct brw_reg *reg);
|
2015-01-29 11:15:10 -08:00
|
|
|
bool brw_negate_immediate(enum brw_reg_type type, struct brw_reg *reg);
|
2015-01-30 14:14:43 -08:00
|
|
|
bool brw_abs_immediate(enum brw_reg_type type, struct brw_reg *reg);
|
2014-11-23 23:46:39 -08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-04-16 12:01:09 -07:00
|
|
|
struct brw_compiler *
|
|
|
|
brw_compiler_create(void *mem_ctx, const struct brw_device_info *devinfo);
|
|
|
|
|
2014-11-23 23:46:39 -08:00
|
|
|
bool brw_vs_precompile(struct gl_context *ctx,
|
|
|
|
struct gl_shader_program *shader_prog,
|
|
|
|
struct gl_program *prog);
|
|
|
|
bool brw_gs_precompile(struct gl_context *ctx,
|
|
|
|
struct gl_shader_program *shader_prog,
|
|
|
|
struct gl_program *prog);
|
|
|
|
bool brw_fs_precompile(struct gl_context *ctx,
|
|
|
|
struct gl_shader_program *shader_prog,
|
|
|
|
struct gl_program *prog);
|
2015-03-14 12:55:54 -07:00
|
|
|
bool brw_cs_precompile(struct gl_context *ctx,
|
|
|
|
struct gl_shader_program *shader_prog,
|
|
|
|
struct gl_program *prog);
|
2014-11-23 23:46:39 -08:00
|
|
|
|
2015-08-12 14:19:17 -07:00
|
|
|
int type_size_scalar(const struct glsl_type *type);
|
|
|
|
int type_size_vec4(const struct glsl_type *type);
|
|
|
|
|
2014-11-23 23:46:39 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|