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.
|
|
|
|
*/
|
|
|
|
|
2015-11-22 18:27:42 -08:00
|
|
|
#pragma once
|
|
|
|
|
2011-05-03 10:55:50 -07:00
|
|
|
#include <stdint.h>
|
2014-06-29 15:27:07 -07:00
|
|
|
#include "brw_reg.h"
|
2017-03-01 08:58:43 -08:00
|
|
|
#include "brw_compiler.h"
|
2011-05-02 09:45:40 -07:00
|
|
|
#include "brw_defines.h"
|
2017-03-01 08:58:43 -08:00
|
|
|
#include "brw_inst.h"
|
2016-06-30 09:14:37 -07:00
|
|
|
#include "compiler/nir/nir.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
|
|
|
|
|
2015-02-03 20:34:39 +02:00
|
|
|
#define MAX_SAMPLER_MESSAGE_SIZE 11
|
|
|
|
#define MAX_VGRF_SIZE 16
|
|
|
|
|
2014-06-29 15:35:58 -07:00
|
|
|
#ifdef __cplusplus
|
2015-11-19 21:51:37 -08:00
|
|
|
struct backend_reg : private brw_reg
|
2015-10-24 14:32:03 -07:00
|
|
|
{
|
2015-10-24 15:29:03 -07:00
|
|
|
backend_reg() {}
|
2015-11-20 21:18:26 -08:00
|
|
|
backend_reg(const struct brw_reg ®) : brw_reg(reg) {}
|
2015-10-24 15:29:03 -07:00
|
|
|
|
2015-11-19 21:51:37 -08:00
|
|
|
const brw_reg &as_brw_reg() const
|
|
|
|
{
|
|
|
|
assert(file == ARF || file == FIXED_GRF || file == MRF || file == IMM);
|
2016-09-01 14:19:27 -07:00
|
|
|
assert(offset == 0);
|
2015-11-19 21:51:37 -08:00
|
|
|
return static_cast<const brw_reg &>(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
brw_reg &as_brw_reg()
|
|
|
|
{
|
|
|
|
assert(file == ARF || file == FIXED_GRF || file == MRF || file == IMM);
|
2016-09-01 14:19:27 -07:00
|
|
|
assert(offset == 0);
|
2015-11-19 21:51:37 -08:00
|
|
|
return static_cast<brw_reg &>(*this);
|
|
|
|
}
|
|
|
|
|
2015-11-22 13:25:05 -08:00
|
|
|
bool equals(const backend_reg &r) const;
|
|
|
|
|
2014-06-29 15:35:58 -07:00
|
|
|
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;
|
|
|
|
|
2016-09-01 12:42:20 -07:00
|
|
|
/** Offset from the start of the (virtual) register in bytes. */
|
|
|
|
uint16_t offset;
|
|
|
|
|
2015-11-19 21:51:37 -08:00
|
|
|
using brw_reg::type;
|
|
|
|
using brw_reg::file;
|
|
|
|
using brw_reg::negate;
|
|
|
|
using brw_reg::abs;
|
|
|
|
using brw_reg::address_mode;
|
|
|
|
using brw_reg::subnr;
|
|
|
|
using brw_reg::nr;
|
|
|
|
|
|
|
|
using brw_reg::swizzle;
|
|
|
|
using brw_reg::writemask;
|
|
|
|
using brw_reg::indirect_offset;
|
|
|
|
using brw_reg::vstride;
|
|
|
|
using brw_reg::width;
|
|
|
|
using brw_reg::hstride;
|
|
|
|
|
2015-11-12 12:40:38 +01:00
|
|
|
using brw_reg::df;
|
2015-11-19 21:51:37 -08:00
|
|
|
using brw_reg::f;
|
|
|
|
using brw_reg::d;
|
|
|
|
using brw_reg::ud;
|
2014-06-29 15:27:07 -07:00
|
|
|
};
|
2015-10-24 14:32:03 -07:00
|
|
|
#endif
|
2014-06-29 15:27:07 -07:00
|
|
|
|
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 {
|
2016-08-22 15:01:08 -07:00
|
|
|
bool is_3src(const struct gen_device_info *devinfo) 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;
|
2016-08-22 15:01:08 -07:00
|
|
|
bool writes_accumulator_implicitly(const struct gen_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;
|
2015-10-19 23:13:09 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* True if the instruction might be affected by side effects of other
|
|
|
|
* instructions.
|
|
|
|
*/
|
|
|
|
bool is_volatile() 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
|
|
|
|
2016-08-25 11:49:53 +02:00
|
|
|
/**
|
|
|
|
* Execution size of the instruction. This is used by the generator to
|
|
|
|
* generate the correct binary for the given instruction. Current valid
|
|
|
|
* values are 1, 4, 8, 16, 32.
|
|
|
|
*/
|
|
|
|
uint8_t exec_size;
|
|
|
|
|
2016-08-25 12:02:43 +02:00
|
|
|
/**
|
|
|
|
* Channel group from the hardware execution and predication mask that
|
|
|
|
* should be applied to the instruction. The subset of channel enable
|
|
|
|
* signals (calculated from the EU control flow and predication state)
|
|
|
|
* given by [group, group + exec_size) will be used to mask GRF writes and
|
|
|
|
* any other side effects of the instruction.
|
|
|
|
*/
|
|
|
|
uint8_t group;
|
|
|
|
|
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. */
|
2016-09-07 13:38:20 -07:00
|
|
|
unsigned size_written; /**< Data written to the destination register in bytes. */
|
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-10-02 20:30:41 -07:00
|
|
|
struct 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-10-05 19:26:02 -07:00
|
|
|
const nir_shader *shader,
|
2015-10-01 15:21:57 -07:00
|
|
|
struct brw_stage_prog_data *stage_prog_data);
|
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 */
|
|
|
|
|
2016-08-22 15:01:08 -07:00
|
|
|
const struct gen_device_info * const devinfo;
|
2015-10-05 19:26:02 -07:00
|
|
|
const nir_shader *nir;
|
2014-02-18 22:27:42 +02:00
|
|
|
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();
|
|
|
|
|
2014-09-01 10:54:00 -07:00
|
|
|
virtual void invalidate_live_intervals() = 0;
|
2012-10-03 13:01:23 -07:00
|
|
|
};
|
|
|
|
|
2016-11-27 21:05:34 -05:00
|
|
|
bool brw_texture_offset(int *offsets,
|
|
|
|
unsigned num_components,
|
|
|
|
uint32_t *offset_bits);
|
2013-08-21 07:53:42 -07:00
|
|
|
|
2015-09-30 11:46:36 -07:00
|
|
|
void brw_setup_image_uniform_values(gl_shader_stage stage,
|
|
|
|
struct brw_stage_prog_data *stage_prog_data,
|
|
|
|
unsigned param_start_index,
|
|
|
|
const gl_uniform_storage *storage);
|
|
|
|
|
2015-10-02 20:30:41 -07:00
|
|
|
#else
|
|
|
|
struct backend_shader;
|
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);
|
2016-08-22 15:01:08 -07:00
|
|
|
const char *brw_instruction_name(const struct gen_device_info *devinfo,
|
2016-04-28 00:19:12 -07:00
|
|
|
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
|
|
|
|
2015-10-02 20:30:41 -07:00
|
|
|
bool opt_predicated_break(struct backend_shader *s);
|
|
|
|
|
2014-11-23 23:46:39 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-02-28 16:12:22 -08:00
|
|
|
/* brw_fs_reg_allocate.cpp */
|
|
|
|
void brw_fs_alloc_reg_sets(struct brw_compiler *compiler);
|
|
|
|
|
|
|
|
/* brw_vec4_reg_allocate.cpp */
|
|
|
|
void brw_vec4_alloc_reg_set(struct brw_compiler *compiler);
|
|
|
|
|
|
|
|
/* brw_disasm.c */
|
|
|
|
extern const char *const conditional_modifier[16];
|
|
|
|
extern const char *const pred_ctrl_align16[16];
|
|
|
|
|
|
|
|
/* Per-thread scratch space is a power-of-two multiple of 1KB. */
|
|
|
|
static inline int
|
|
|
|
brw_get_scratch_size(int size)
|
|
|
|
{
|
|
|
|
return MAX2(1024, util_next_power_of_two(size));
|
|
|
|
}
|
|
|
|
|
2015-10-21 12:03:21 -07:00
|
|
|
/**
|
|
|
|
* Scratch data used when compiling a GLSL geometry shader.
|
|
|
|
*/
|
|
|
|
struct brw_gs_compile
|
|
|
|
{
|
|
|
|
struct brw_gs_prog_key key;
|
|
|
|
struct brw_vue_map input_vue_map;
|
|
|
|
|
|
|
|
unsigned control_data_bits_per_vertex;
|
|
|
|
unsigned control_data_header_size_bits;
|
|
|
|
};
|
|
|
|
|
2016-06-30 09:14:37 -07:00
|
|
|
unsigned get_atomic_counter_op(nir_intrinsic_op op);
|
|
|
|
|
2014-11-23 23:46:39 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|