mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 07:00:12 +01:00
intel/elk: Rename files to use elk prefix
Acked-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27563>
This commit is contained in:
parent
b02712efc2
commit
e6022281f2
126 changed files with 434 additions and 434 deletions
|
|
@ -29,11 +29,11 @@
|
|||
#include <stdbool.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include "brw_reg.h"
|
||||
#include "brw_reg_type.h"
|
||||
#include "brw_eu_defines.h"
|
||||
#include "brw_inst.h"
|
||||
#include "brw_eu.h"
|
||||
#include "elk_reg.h"
|
||||
#include "elk_reg_type.h"
|
||||
#include "elk_eu_defines.h"
|
||||
#include "elk_inst.h"
|
||||
#include "elk_eu.h"
|
||||
#include "dev/intel_device_info.h"
|
||||
#include "util/list.h"
|
||||
|
||||
|
|
@ -24,8 +24,8 @@
|
|||
|
||||
#include <stdio.h>
|
||||
#include <getopt.h>
|
||||
#include "brw_asm.h"
|
||||
#include "intel/compiler/brw_disasm_info.h"
|
||||
#include "elk_asm.h"
|
||||
#include "elk_disasm_info.h"
|
||||
|
||||
enum opt_output_type {
|
||||
OPT_OUTPUT_HEX,
|
||||
|
|
@ -25,9 +25,9 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "util/u_dynarray.h"
|
||||
#include "brw_shader.h"
|
||||
#include "elk_shader.h"
|
||||
|
||||
/** @file brw_cfg.cpp
|
||||
*
|
||||
|
|
@ -28,9 +28,9 @@
|
|||
#ifndef BRW_CFG_H
|
||||
#define BRW_CFG_H
|
||||
|
||||
#include "brw_ir.h"
|
||||
#include "elk_ir.h"
|
||||
#ifdef __cplusplus
|
||||
#include "brw_ir_analysis.h"
|
||||
#include "elk_ir_analysis.h"
|
||||
#endif
|
||||
|
||||
struct bblock_t;
|
||||
|
|
@ -32,8 +32,8 @@
|
|||
#ifndef BRW_CLIP_H
|
||||
#define BRW_CLIP_H
|
||||
|
||||
#include "brw_compiler.h"
|
||||
#include "brw_eu.h"
|
||||
#include "elk_compiler.h"
|
||||
#include "elk_eu.h"
|
||||
|
||||
/* Initial 3 verts, plus at most 6 additional verts from intersections
|
||||
* with fixed planes, plus at most 8 additional verts from intersections
|
||||
|
|
@ -29,8 +29,8 @@
|
|||
* Keith Whitwell <keithw@vmware.com>
|
||||
*/
|
||||
|
||||
#include "brw_clip.h"
|
||||
#include "brw_prim.h"
|
||||
#include "elk_clip.h"
|
||||
#include "elk_prim.h"
|
||||
|
||||
static void brw_clip_line_alloc_regs( struct brw_clip_compile *c )
|
||||
{
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
* Keith Whitwell <keithw@vmware.com>
|
||||
*/
|
||||
|
||||
#include "brw_clip.h"
|
||||
#include "elk_clip.h"
|
||||
|
||||
|
||||
/* Point clipping, nothing to do?
|
||||
|
|
@ -29,8 +29,8 @@
|
|||
* Keith Whitwell <keithw@vmware.com>
|
||||
*/
|
||||
|
||||
#include "brw_clip.h"
|
||||
#include "brw_prim.h"
|
||||
#include "elk_clip.h"
|
||||
#include "elk_prim.h"
|
||||
|
||||
static void release_tmps( struct brw_clip_compile *c )
|
||||
{
|
||||
|
|
@ -29,8 +29,8 @@
|
|||
* Keith Whitwell <keithw@vmware.com>
|
||||
*/
|
||||
|
||||
#include "brw_clip.h"
|
||||
#include "brw_prim.h"
|
||||
#include "elk_clip.h"
|
||||
#include "elk_prim.h"
|
||||
|
||||
|
||||
/* This is performed against the original triangles, so no indirection
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
* Keith Whitwell <keithw@vmware.com>
|
||||
*/
|
||||
|
||||
#include "brw_clip.h"
|
||||
#include "elk_clip.h"
|
||||
|
||||
|
||||
struct brw_reg get_tmp( struct brw_clip_compile *c )
|
||||
|
|
@ -21,8 +21,8 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_clip.h"
|
||||
#include "brw_disasm.h"
|
||||
#include "elk_clip.h"
|
||||
#include "elk_disasm.h"
|
||||
|
||||
#include "dev/intel_debug.h"
|
||||
|
||||
|
|
@ -29,10 +29,10 @@
|
|||
* Keith Whitwell <keithw@vmware.com>
|
||||
*/
|
||||
|
||||
#include "brw_compiler.h"
|
||||
#include "brw_disasm.h"
|
||||
#include "brw_eu.h"
|
||||
#include "brw_prim.h"
|
||||
#include "elk_compiler.h"
|
||||
#include "elk_disasm.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_prim.h"
|
||||
|
||||
#include "dev/intel_debug.h"
|
||||
|
||||
|
|
@ -21,10 +21,10 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_compiler.h"
|
||||
#include "brw_disasm.h"
|
||||
#include "brw_eu.h"
|
||||
#include "brw_prim.h"
|
||||
#include "elk_compiler.h"
|
||||
#include "elk_disasm.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_prim.h"
|
||||
|
||||
#include "dev/intel_debug.h"
|
||||
|
||||
|
|
@ -21,10 +21,10 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_compiler.h"
|
||||
#include "brw_shader.h"
|
||||
#include "brw_eu.h"
|
||||
#include "brw_nir.h"
|
||||
#include "elk_compiler.h"
|
||||
#include "elk_shader.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_nir.h"
|
||||
#include "dev/intel_debug.h"
|
||||
#include "compiler/nir/nir.h"
|
||||
#include "util/u_debug.h"
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
#include "util/enum_operators.h"
|
||||
#include "util/ralloc.h"
|
||||
#include "util/u_math.h"
|
||||
#include "brw_isa_info.h"
|
||||
#include "elk_isa_info.h"
|
||||
#include "../intel_shader_enums.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
@ -26,8 +26,8 @@
|
|||
* This file implements the dead control flow elimination optimization pass.
|
||||
*/
|
||||
|
||||
#include "brw_shader.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_shader.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
#ifndef BRW_DEAD_CONTROL_FLOW_H
|
||||
#define BRW_DEAD_CONTROL_FLOW_H
|
||||
|
||||
#include "brw_shader.h"
|
||||
#include "elk_shader.h"
|
||||
|
||||
bool dead_control_flow_eliminate(backend_shader *s);
|
||||
|
||||
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "brw_compiler.h"
|
||||
#include "elk_compiler.h"
|
||||
|
||||
static bool
|
||||
key_debug(const struct brw_compiler *c, void *log,
|
||||
|
|
@ -26,14 +26,14 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "brw_disasm.h"
|
||||
#include "brw_disasm_info.h"
|
||||
#include "brw_eu_defines.h"
|
||||
#include "brw_eu.h"
|
||||
#include "brw_inst.h"
|
||||
#include "brw_isa_info.h"
|
||||
#include "brw_reg.h"
|
||||
#include "brw_shader.h"
|
||||
#include "elk_disasm.h"
|
||||
#include "elk_disasm_info.h"
|
||||
#include "elk_eu_defines.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_inst.h"
|
||||
#include "elk_isa_info.h"
|
||||
#include "elk_reg.h"
|
||||
#include "elk_shader.h"
|
||||
#include "util/half_float.h"
|
||||
|
||||
bool
|
||||
|
|
@ -21,10 +21,10 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_cfg.h"
|
||||
#include "brw_eu.h"
|
||||
#include "brw_disasm.h"
|
||||
#include "brw_disasm_info.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_disasm.h"
|
||||
#include "elk_disasm_info.h"
|
||||
#include "dev/intel_debug.h"
|
||||
#include "compiler/nir/nir.h"
|
||||
|
||||
|
|
@ -26,8 +26,8 @@
|
|||
#include <string.h>
|
||||
#include <getopt.h>
|
||||
|
||||
#include "compiler/brw_disasm.h"
|
||||
#include "compiler/brw_isa_info.h"
|
||||
#include "elk_disasm.h"
|
||||
#include "elk_isa_info.h"
|
||||
#include "dev/intel_device_info.h"
|
||||
#include "util/u_dynarray.h"
|
||||
|
||||
|
|
@ -32,10 +32,10 @@
|
|||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
#include "brw_disasm.h"
|
||||
#include "brw_eu_defines.h"
|
||||
#include "brw_eu.h"
|
||||
#include "brw_shader.h"
|
||||
#include "elk_disasm.h"
|
||||
#include "elk_eu_defines.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_shader.h"
|
||||
#include "../intel_gfx_ver_enum.h"
|
||||
#include "dev/intel_debug.h"
|
||||
|
||||
|
|
@ -35,11 +35,11 @@
|
|||
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
#include "brw_inst.h"
|
||||
#include "brw_compiler.h"
|
||||
#include "brw_eu_defines.h"
|
||||
#include "brw_isa_info.h"
|
||||
#include "brw_reg.h"
|
||||
#include "elk_inst.h"
|
||||
#include "elk_compiler.h"
|
||||
#include "elk_eu_defines.h"
|
||||
#include "elk_isa_info.h"
|
||||
#include "elk_reg.h"
|
||||
|
||||
#include "util/bitset.h"
|
||||
|
||||
|
|
@ -78,10 +78,10 @@
|
|||
* the mantissa.
|
||||
*/
|
||||
|
||||
#include "brw_eu.h"
|
||||
#include "brw_disasm.h"
|
||||
#include "brw_shader.h"
|
||||
#include "brw_disasm_info.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_disasm.h"
|
||||
#include "elk_shader.h"
|
||||
#include "elk_disasm_info.h"
|
||||
#include "dev/intel_debug.h"
|
||||
|
||||
static const uint32_t g45_control_index_table[32] = {
|
||||
|
|
@ -30,8 +30,8 @@
|
|||
*/
|
||||
|
||||
|
||||
#include "brw_eu_defines.h"
|
||||
#include "brw_eu.h"
|
||||
#include "elk_eu_defines.h"
|
||||
#include "elk_eu.h"
|
||||
|
||||
#include "util/ralloc.h"
|
||||
|
||||
|
|
@ -30,8 +30,8 @@
|
|||
*/
|
||||
|
||||
|
||||
#include "brw_eu_defines.h"
|
||||
#include "brw_eu.h"
|
||||
#include "elk_eu_defines.h"
|
||||
#include "elk_eu.h"
|
||||
|
||||
|
||||
void brw_math_invert( struct brw_codegen *p,
|
||||
|
|
@ -39,8 +39,8 @@
|
|||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include "brw_eu.h"
|
||||
#include "brw_disasm_info.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_disasm_info.h"
|
||||
|
||||
/* We're going to do lots of string concatenation, so this should help. */
|
||||
struct string {
|
||||
|
|
@ -28,15 +28,15 @@
|
|||
* from the LIR.
|
||||
*/
|
||||
|
||||
#include "brw_eu.h"
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "brw_fs_live_variables.h"
|
||||
#include "brw_nir.h"
|
||||
#include "brw_vec4_gs_visitor.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "brw_dead_control_flow.h"
|
||||
#include "brw_private.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
#include "elk_fs_live_variables.h"
|
||||
#include "elk_nir.h"
|
||||
#include "elk_vec4_gs_visitor.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "elk_dead_control_flow.h"
|
||||
#include "elk_private.h"
|
||||
#include "../intel_nir.h"
|
||||
#include "shader_enums.h"
|
||||
#include "dev/intel_debug.h"
|
||||
|
|
@ -28,10 +28,10 @@
|
|||
#ifndef BRW_FS_H
|
||||
#define BRW_FS_H
|
||||
|
||||
#include "brw_shader.h"
|
||||
#include "brw_ir_fs.h"
|
||||
#include "brw_fs_live_variables.h"
|
||||
#include "brw_ir_performance.h"
|
||||
#include "elk_shader.h"
|
||||
#include "elk_ir_fs.h"
|
||||
#include "elk_fs_live_variables.h"
|
||||
#include "elk_ir_performance.h"
|
||||
#include "compiler/nir/nir.h"
|
||||
|
||||
struct bblock_t;
|
||||
|
|
@ -48,8 +48,8 @@
|
|||
* cubic term within reasonable bounds for m close to its theoretical maximum.
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
#ifdef __SSE2__
|
||||
|
||||
|
|
@ -25,10 +25,10 @@
|
|||
#ifndef BRW_FS_BUILDER_H
|
||||
#define BRW_FS_BUILDER_H
|
||||
|
||||
#include "brw_ir_fs.h"
|
||||
#include "brw_shader.h"
|
||||
#include "brw_eu.h"
|
||||
#include "brw_fs.h"
|
||||
#include "elk_ir_fs.h"
|
||||
#include "elk_shader.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_fs.h"
|
||||
|
||||
namespace brw {
|
||||
/**
|
||||
|
|
@ -21,9 +21,9 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "brw_eu.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "elk_eu.h"
|
||||
|
||||
/** @file brw_fs_cmod_propagation.cpp
|
||||
*
|
||||
|
|
@ -34,9 +34,9 @@
|
|||
* cannot use immediate values.
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "util/half_float.h"
|
||||
|
||||
using namespace brw;
|
||||
|
|
@ -35,10 +35,10 @@
|
|||
#include "util/bitset.h"
|
||||
#include "util/u_math.h"
|
||||
#include "util/rb_tree.h"
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_live_variables.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "brw_eu.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_live_variables.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "elk_eu.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -21,9 +21,9 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
/** @file brw_fs_cse.cpp
|
||||
*
|
||||
|
|
@ -21,9 +21,9 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_live_variables.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_live_variables.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
/** @file brw_fs_dead_code_eliminate.cpp
|
||||
*
|
||||
|
|
@ -27,10 +27,10 @@
|
|||
* native instructions.
|
||||
*/
|
||||
|
||||
#include "brw_eu.h"
|
||||
#include "brw_disasm_info.h"
|
||||
#include "brw_fs.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_disasm_info.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "dev/intel_debug.h"
|
||||
#include "util/mesa-sha1.h"
|
||||
#include "util/half_float.h"
|
||||
|
|
@ -25,8 +25,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_live_variables.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_live_variables.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -28,8 +28,8 @@
|
|||
#ifndef BRW_FS_LIVE_VARIABLES_H
|
||||
#define BRW_FS_LIVE_VARIABLES_H
|
||||
|
||||
#include "brw_ir_analysis.h"
|
||||
#include "brw_ir_fs.h"
|
||||
#include "elk_ir_analysis.h"
|
||||
#include "elk_ir_fs.h"
|
||||
#include "util/bitset.h"
|
||||
|
||||
struct cfg_t;
|
||||
|
|
@ -22,9 +22,9 @@
|
|||
*/
|
||||
|
||||
#include "util/half_float.h"
|
||||
#include "brw_fs.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "elk_fs_builder.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -21,9 +21,9 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "elk_fs_builder.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -21,10 +21,10 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "brw_nir.h"
|
||||
#include "brw_eu.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
#include "elk_nir.h"
|
||||
#include "elk_eu.h"
|
||||
#include "nir.h"
|
||||
#include "nir_intrinsics.h"
|
||||
#include "nir_search_helpers.h"
|
||||
|
|
@ -25,10 +25,10 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "brw_eu.h"
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "util/set.h"
|
||||
#include "util/register_allocate.h"
|
||||
|
||||
|
|
@ -40,9 +40,9 @@
|
|||
* mul vgrf5:F, vgrf5:F, vgrf4:F
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "brw_fs_live_variables.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "elk_fs_live_variables.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -21,9 +21,9 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_live_variables.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_live_variables.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -21,9 +21,9 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
/** @file brw_fs_sel_peephole.cpp
|
||||
*
|
||||
|
|
@ -21,8 +21,8 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -27,8 +27,8 @@
|
|||
* pass only validates that GRF's uses are sane. More can be added later.
|
||||
*/
|
||||
|
||||
#include "brw_fs.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
#define fsv_assert(assertion) \
|
||||
{ \
|
||||
|
|
@ -27,10 +27,10 @@
|
|||
* makes it easier to do backend-specific optimizations than doing so
|
||||
* in the GLSL IR or in the native code.
|
||||
*/
|
||||
#include "brw_eu.h"
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "brw_nir.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
#include "elk_nir.h"
|
||||
#include "compiler/glsl_types.h"
|
||||
|
||||
using namespace brw;
|
||||
|
|
@ -29,9 +29,9 @@
|
|||
* Gfx6 geometry shader implementation
|
||||
*/
|
||||
|
||||
#include "gfx6_gs_visitor.h"
|
||||
#include "brw_eu.h"
|
||||
#include "brw_prim.h"
|
||||
#include "elk_gfx6_gs_visitor.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_prim.h"
|
||||
|
||||
namespace brw {
|
||||
|
||||
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef GFX6_GS_VISITOR_H
|
||||
#define GFX6_GS_VISITOR_H
|
||||
|
||||
#include "brw_vec4.h"
|
||||
#include "brw_vec4_gs_visitor.h"
|
||||
#include "elk_vec4.h"
|
||||
#include "elk_vec4_gs_visitor.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
|
|
@ -26,7 +26,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include "brw_asm.h"
|
||||
#include "elk_asm.h"
|
||||
|
||||
#undef yyerror
|
||||
#ifdef YYBYACC
|
||||
|
|
@ -34,9 +34,9 @@
|
|||
#include <assert.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "brw_eu_defines.h"
|
||||
#include "brw_isa_info.h"
|
||||
#include "brw_reg_type.h"
|
||||
#include "elk_eu_defines.h"
|
||||
#include "elk_isa_info.h"
|
||||
#include "elk_reg_type.h"
|
||||
#include "dev/intel_device_info.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_compiler.h"
|
||||
#include "elk_compiler.h"
|
||||
#include "compiler/nir/nir.h"
|
||||
|
||||
static char const *get_qual_name(int mode)
|
||||
|
|
@ -26,7 +26,7 @@
|
|||
#define BRW_IR_H
|
||||
|
||||
#include <assert.h>
|
||||
#include "brw_reg.h"
|
||||
#include "elk_reg.h"
|
||||
#include "compiler/glsl/list.h"
|
||||
|
||||
#define MAX_SAMPLER_MESSAGE_SIZE 11
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
#ifndef BRW_IR_FS_H
|
||||
#define BRW_IR_FS_H
|
||||
|
||||
#include "brw_shader.h"
|
||||
#include "elk_shader.h"
|
||||
|
||||
class fs_inst;
|
||||
|
||||
|
|
@ -21,10 +21,10 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_eu.h"
|
||||
#include "brw_fs.h"
|
||||
#include "brw_vec4.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_vec4.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
#ifndef BRW_IR_VEC4_H
|
||||
#define BRW_IR_VEC4_H
|
||||
|
||||
#include "brw_shader.h"
|
||||
#include "elk_shader.h"
|
||||
|
||||
namespace brw {
|
||||
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
#define BRW_ISA_ENCODING_H
|
||||
|
||||
#include "dev/intel_device_info.h"
|
||||
#include "brw_eu_defines.h"
|
||||
#include "elk_eu_defines.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
@ -2,9 +2,9 @@
|
|||
%option nounput
|
||||
%{
|
||||
#include <string.h>
|
||||
#include "brw_asm.h"
|
||||
#include "elk_asm.h"
|
||||
#undef ALIGN16
|
||||
#include "brw_gram.tab.h"
|
||||
#include "elk_gram.tab.h"
|
||||
|
||||
/* Locations */
|
||||
int yycolumn = 1;
|
||||
|
|
@ -25,9 +25,9 @@
|
|||
* @file brw_lower_logical_sends.cpp
|
||||
*/
|
||||
|
||||
#include "brw_eu.h"
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -22,8 +22,8 @@
|
|||
*/
|
||||
|
||||
#include "../intel_nir.h"
|
||||
#include "brw_nir.h"
|
||||
#include "brw_shader.h"
|
||||
#include "elk_nir.h"
|
||||
#include "elk_shader.h"
|
||||
#include "dev/intel_debug.h"
|
||||
#include "compiler/glsl_types.h"
|
||||
#include "compiler/nir/nir_builder.h"
|
||||
|
|
@ -24,9 +24,9 @@
|
|||
#ifndef BRW_NIR_H
|
||||
#define BRW_NIR_H
|
||||
|
||||
#include "brw_reg.h"
|
||||
#include "elk_reg.h"
|
||||
#include "compiler/nir/nir.h"
|
||||
#include "brw_compiler.h"
|
||||
#include "elk_compiler.h"
|
||||
#include "nir_builder.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_nir.h"
|
||||
#include "elk_nir.h"
|
||||
|
||||
/*
|
||||
* This file implements an analysis pass that determines when we have to do
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_nir.h"
|
||||
#include "elk_nir.h"
|
||||
#include "compiler/nir/nir.h"
|
||||
#include "util/u_dynarray.h"
|
||||
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
*/
|
||||
|
||||
#include "compiler/nir/nir_builder.h"
|
||||
#include "brw_nir.h"
|
||||
#include "elk_nir.h"
|
||||
|
||||
/**
|
||||
* Prior to Haswell, the hardware can't natively support GL_FIXED or
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
*/
|
||||
|
||||
#include "compiler/nir/nir_builder.h"
|
||||
#include "brw_nir.h"
|
||||
#include "elk_nir.h"
|
||||
|
||||
/**
|
||||
* We need to compute alpha to coverage dithering manually in shader
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_nir.h"
|
||||
#include "elk_nir.h"
|
||||
#include "compiler/nir/nir_builder.h"
|
||||
|
||||
struct lower_intrinsics_state {
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#include "isl/isl.h"
|
||||
|
||||
#include "brw_nir.h"
|
||||
#include "elk_nir.h"
|
||||
#include "compiler/nir/nir_builder.h"
|
||||
#include "compiler/nir/nir_format_convert.h"
|
||||
|
||||
|
|
@ -56,7 +56,7 @@ def main():
|
|||
def run():
|
||||
import nir_algebraic # pylint: disable=import-error
|
||||
|
||||
print('#include "brw_nir.h"')
|
||||
print('#include "elk_nir.h"')
|
||||
print(nir_algebraic.AlgebraicPass("brw_nir_apply_trig_workarounds",
|
||||
TRIG_WORKAROUNDS).render())
|
||||
print(nir_algebraic.AlgebraicPass("brw_nir_limit_trig_input_range_workaround",
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
* IN THE SOFTWARE.
|
||||
*/
|
||||
#include "brw_reg.h"
|
||||
#include "elk_reg.h"
|
||||
|
||||
union fu {
|
||||
float f;
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_shader.h"
|
||||
#include "elk_shader.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
#ifndef BRW_PRIVATE_H
|
||||
#define BRW_PRIVATE_H
|
||||
|
||||
#include "brw_compiler.h"
|
||||
#include "elk_compiler.h"
|
||||
|
||||
#include <variant>
|
||||
|
||||
|
|
@ -48,8 +48,8 @@
|
|||
#include "util/macros.h"
|
||||
#include "util/rounding.h"
|
||||
#include "util/u_math.h"
|
||||
#include "brw_eu_defines.h"
|
||||
#include "brw_reg_type.h"
|
||||
#include "elk_eu_defines.h"
|
||||
#include "elk_reg_type.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
@ -21,8 +21,8 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_reg.h"
|
||||
#include "brw_eu_defines.h"
|
||||
#include "elk_reg.h"
|
||||
#include "elk_eu_defines.h"
|
||||
#include "dev/intel_device_info.h"
|
||||
|
||||
#define INVALID (-1)
|
||||
|
|
@ -25,12 +25,12 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "brw_eu.h"
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_live_variables.h"
|
||||
#include "brw_vec4.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "brw_shader.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_live_variables.h"
|
||||
#include "elk_vec4.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "elk_shader.h"
|
||||
#include <new>
|
||||
|
||||
using namespace brw;
|
||||
|
|
@ -21,12 +21,12 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_cfg.h"
|
||||
#include "brw_eu.h"
|
||||
#include "brw_fs.h"
|
||||
#include "brw_nir.h"
|
||||
#include "brw_private.h"
|
||||
#include "brw_vec4_tes.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_nir.h"
|
||||
#include "elk_private.h"
|
||||
#include "elk_vec4_tes.h"
|
||||
#include "dev/intel_debug.h"
|
||||
#include "util/macros.h"
|
||||
#include "util/u_debug.h"
|
||||
|
|
@ -25,13 +25,13 @@
|
|||
#define BRW_SHADER_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "brw_cfg.h"
|
||||
#include "brw_compiler.h"
|
||||
#include "elk_cfg.h"
|
||||
#include "elk_compiler.h"
|
||||
#include "compiler/nir/nir.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
#include "brw_ir_analysis.h"
|
||||
#include "brw_ir_allocator.h"
|
||||
#include "elk_ir_analysis.h"
|
||||
#include "elk_ir_allocator.h"
|
||||
|
||||
enum instruction_scheduler_mode {
|
||||
SCHEDULE_PRE,
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "brw_private.h"
|
||||
#include "elk_private.h"
|
||||
#include "compiler/shader_info.h"
|
||||
#include "intel/dev/intel_debug.h"
|
||||
#include "intel/dev/intel_device_info.h"
|
||||
|
|
@ -25,8 +25,8 @@
|
|||
#include <stdio.h>
|
||||
#include <stdbool.h>
|
||||
#include "util/ralloc.h"
|
||||
#include "brw_disasm.h"
|
||||
#include "brw_eu.h"
|
||||
#include "elk_disasm.h"
|
||||
#include "elk_eu.h"
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
|
|
@ -22,9 +22,9 @@
|
|||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "brw_disasm_info.h"
|
||||
#include "brw_eu.h"
|
||||
#include "brw_eu_defines.h"
|
||||
#include "elk_disasm_info.h"
|
||||
#include "elk_eu.h"
|
||||
#include "elk_eu_defines.h"
|
||||
#include "util/bitset.h"
|
||||
#include "util/ralloc.h"
|
||||
|
||||
|
|
@ -22,9 +22,9 @@
|
|||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -4,9 +4,9 @@
|
|||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -22,9 +22,9 @@
|
|||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -22,9 +22,9 @@
|
|||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -4,9 +4,9 @@
|
|||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "brw_fs.h"
|
||||
#include "brw_fs_builder.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_fs.h"
|
||||
#include "elk_fs_builder.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
*/
|
||||
|
||||
|
||||
#include "brw_private.h"
|
||||
#include "elk_private.h"
|
||||
#include "compiler/shader_info.h"
|
||||
#include "intel/dev/intel_debug.h"
|
||||
#include "intel/dev/intel_device_info.h"
|
||||
|
|
@ -24,9 +24,9 @@
|
|||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "brw_vec4.h"
|
||||
#include "brw_vec4_builder.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "elk_vec4.h"
|
||||
#include "elk_vec4_builder.h"
|
||||
#include "elk_cfg.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "brw_vec4.h"
|
||||
#include "elk_vec4.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "brw_vec4.h"
|
||||
#include "elk_vec4.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "brw_vec4.h"
|
||||
#include "elk_vec4.h"
|
||||
|
||||
using namespace brw;
|
||||
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#include <gtest/gtest.h>
|
||||
#include <math.h>
|
||||
#include "brw_reg.h"
|
||||
#include "elk_reg.h"
|
||||
|
||||
class vf_float_conversion_test : public ::testing::Test {
|
||||
virtual void SetUp();
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue