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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-03-20 16:04:38 +00:00
|
|
|
#ifndef BRW_SHADER_H
|
|
|
|
|
#define BRW_SHADER_H
|
2015-11-22 18:27:42 -08:00
|
|
|
|
2011-05-03 10:55:50 -07:00
|
|
|
#include <stdint.h>
|
2016-03-09 15:38:55 -08:00
|
|
|
#include "brw_cfg.h"
|
2017-03-01 08:58:43 -08:00
|
|
|
#include "brw_compiler.h"
|
2016-06-30 09:14:37 -07:00
|
|
|
#include "compiler/nir/nir.h"
|
2011-05-03 10:55:50 -07:00
|
|
|
|
2014-06-29 18:21:30 -07:00
|
|
|
#ifdef __cplusplus
|
2016-03-12 18:50:24 -08:00
|
|
|
#include "brw_ir_analysis.h"
|
2016-03-06 18:13:59 -08:00
|
|
|
#include "brw_ir_allocator.h"
|
2014-06-29 18:21:30 -07:00
|
|
|
|
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,
|
2021-03-23 11:31:51 -07:00
|
|
|
struct brw_stage_prog_data *stage_prog_data,
|
|
|
|
|
bool debug_enabled);
|
2014-02-14 11:54:02 +02:00
|
|
|
|
2012-10-03 13:01:23 -07:00
|
|
|
public:
|
2017-11-06 17:01:56 -08:00
|
|
|
virtual ~backend_shader();
|
2012-10-03 13:01:23 -07:00
|
|
|
|
2015-06-22 17:17:56 -07:00
|
|
|
const struct brw_compiler *compiler;
|
|
|
|
|
void *log_data; /* Passed to compiler->*_log functions */
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
const struct intel_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;
|
2020-10-29 20:13:50 +01:00
|
|
|
brw_analysis<brw::idom_tree, backend_shader> idom_analysis;
|
2014-07-11 20:54:52 -07:00
|
|
|
|
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;
|
|
|
|
|
|
2016-09-23 15:15:33 +03:00
|
|
|
virtual void dump_instruction(const backend_instruction *inst) const = 0;
|
|
|
|
|
virtual void dump_instruction(const backend_instruction *inst, FILE *file) const = 0;
|
|
|
|
|
virtual void dump_instructions() const;
|
|
|
|
|
virtual void dump_instructions(const char *name) const;
|
2013-10-03 09:58:43 -07:00
|
|
|
|
2014-07-11 20:54:52 -07:00
|
|
|
void calculate_cfg();
|
|
|
|
|
|
2016-03-12 18:50:24 -08:00
|
|
|
virtual void invalidate_analysis(brw::analysis_dependency_class c);
|
2012-10-03 13:01:23 -07:00
|
|
|
};
|
|
|
|
|
|
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);
|
2021-04-05 13:19:39 -07:00
|
|
|
const char *brw_instruction_name(const struct intel_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));
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-13 11:08:40 -05:00
|
|
|
bool brw_texture_offset(const nir_tex_instr *tex, unsigned src,
|
|
|
|
|
uint32_t *offset_bits);
|
|
|
|
|
|
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;
|
|
|
|
|
};
|
|
|
|
|
|
2014-11-23 23:46:39 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2017-03-20 16:04:38 +00:00
|
|
|
|
|
|
|
|
#endif /* BRW_SHADER_H */
|