2021-02-09 19:19:53 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2021 Valve 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.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef AC_NIR_H
|
|
|
|
|
#define AC_NIR_H
|
|
|
|
|
|
|
|
|
|
#include "nir.h"
|
|
|
|
|
#include "ac_shader_args.h"
|
2021-04-01 12:43:31 +02:00
|
|
|
#include "ac_shader_util.h"
|
2021-02-09 19:19:53 +01:00
|
|
|
#include "amd_family.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-12-12 20:20:36 -05:00
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
/* SPI_PS_INPUT_CNTL_i.OFFSET[0:4] */
|
|
|
|
|
AC_EXP_PARAM_OFFSET_0 = 0,
|
|
|
|
|
AC_EXP_PARAM_OFFSET_31 = 31,
|
|
|
|
|
/* SPI_PS_INPUT_CNTL_i.DEFAULT_VAL[0:1] */
|
|
|
|
|
AC_EXP_PARAM_DEFAULT_VAL_0000 = 64,
|
|
|
|
|
AC_EXP_PARAM_DEFAULT_VAL_0001,
|
|
|
|
|
AC_EXP_PARAM_DEFAULT_VAL_1110,
|
|
|
|
|
AC_EXP_PARAM_DEFAULT_VAL_1111,
|
|
|
|
|
AC_EXP_PARAM_UNDEFINED = 255, /* deprecated, use AC_EXP_PARAM_DEFAULT_VAL_0000 instead */
|
|
|
|
|
};
|
|
|
|
|
|
2021-04-01 12:43:31 +02:00
|
|
|
/* Forward declaration of nir_builder so we don't have to include nir_builder.h here */
|
|
|
|
|
struct nir_builder;
|
|
|
|
|
typedef struct nir_builder nir_builder;
|
|
|
|
|
|
2021-09-29 18:25:03 +02:00
|
|
|
nir_ssa_def *
|
|
|
|
|
ac_nir_load_arg(nir_builder *b, const struct ac_shader_args *ac_args, struct ac_arg arg);
|
|
|
|
|
|
2021-12-12 21:20:09 -05:00
|
|
|
bool ac_nir_optimize_outputs(nir_shader *nir, bool sprite_tex_disallowed,
|
|
|
|
|
int8_t slot_remap[NUM_TOTAL_VARYING_SLOTS],
|
|
|
|
|
uint8_t param_export_index[NUM_TOTAL_VARYING_SLOTS]);
|
|
|
|
|
|
2021-02-09 19:19:53 +01:00
|
|
|
void
|
|
|
|
|
ac_nir_lower_ls_outputs_to_mem(nir_shader *ls,
|
|
|
|
|
bool tcs_in_out_eq,
|
|
|
|
|
uint64_t tcs_temp_only_inputs,
|
|
|
|
|
unsigned num_reserved_ls_outputs);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ac_nir_lower_hs_inputs_to_mem(nir_shader *shader,
|
|
|
|
|
bool tcs_in_out_eq,
|
|
|
|
|
unsigned num_reserved_tcs_inputs);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ac_nir_lower_hs_outputs_to_mem(nir_shader *shader,
|
|
|
|
|
enum chip_class chip_class,
|
|
|
|
|
bool tes_reads_tessfactors,
|
|
|
|
|
uint64_t tes_inputs_read,
|
|
|
|
|
uint64_t tes_patch_inputs_read,
|
|
|
|
|
unsigned num_reserved_tcs_inputs,
|
|
|
|
|
unsigned num_reserved_tcs_outputs,
|
|
|
|
|
unsigned num_reserved_tcs_patch_outputs,
|
|
|
|
|
bool emit_tess_factor_write);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ac_nir_lower_tes_inputs_to_mem(nir_shader *shader,
|
|
|
|
|
unsigned num_reserved_tcs_outputs,
|
|
|
|
|
unsigned num_reserved_tcs_patch_outputs);
|
|
|
|
|
|
2021-03-02 15:30:58 +01:00
|
|
|
void
|
|
|
|
|
ac_nir_lower_es_outputs_to_mem(nir_shader *shader,
|
|
|
|
|
enum chip_class chip_class,
|
|
|
|
|
unsigned num_reserved_es_outputs);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ac_nir_lower_gs_inputs_to_mem(nir_shader *shader,
|
|
|
|
|
enum chip_class chip_class,
|
|
|
|
|
unsigned num_reserved_es_outputs);
|
|
|
|
|
|
2021-04-22 16:14:32 +02:00
|
|
|
bool
|
|
|
|
|
ac_nir_lower_indirect_derefs(nir_shader *shader,
|
|
|
|
|
enum chip_class chip_class);
|
|
|
|
|
|
2021-10-01 10:00:25 +02:00
|
|
|
void
|
2021-04-09 16:56:57 +02:00
|
|
|
ac_nir_lower_ngg_nogs(nir_shader *shader,
|
|
|
|
|
unsigned max_num_es_vertices,
|
|
|
|
|
unsigned num_vertices_per_primitive,
|
|
|
|
|
unsigned max_workgroup_size,
|
|
|
|
|
unsigned wave_size,
|
2021-09-10 16:25:05 +01:00
|
|
|
bool can_cull,
|
2021-10-01 09:41:49 +02:00
|
|
|
bool early_prim_export,
|
2021-10-01 09:56:44 +02:00
|
|
|
bool passthrough,
|
2021-04-09 16:56:57 +02:00
|
|
|
bool export_prim_id,
|
ac/nir/nggc: Only repack arguments that are needed.
Don't repack everything, only what is actually used.
The goal of this commit is primarily to remove unnecessary
LDS stores and loads. In addition to that, it also gets rid of
a few VALU instructions and reduces VGPR use.
Fossil DB stats on Sienna Cichlid with NGGC on:
Totals from 6951 (5.40% of 128647) affected shaders:
VGPRs: 206056 -> 205360 (-0.34%); split: -0.79%, +0.45%
CodeSize: 12344568 -> 12269312 (-0.61%); split: -0.62%, +0.01%
MaxWaves: 211206 -> 212196 (+0.47%)
Instrs: 2319459 -> 2308483 (-0.47%); split: -0.50%, +0.03%
Latency: 7220829 -> 7164721 (-0.78%); split: -1.21%, +0.43%
InvThroughput: 1051450 -> 1049191 (-0.21%); split: -0.36%, +0.15%
VClause: 25794 -> 25445 (-1.35%); split: -1.97%, +0.61%
SClause: 39192 -> 39277 (+0.22%); split: -0.21%, +0.43%
Copies: 315756 -> 313404 (-0.74%); split: -1.17%, +0.42%
Branches: 127878 -> 127879 (+0.00%); split: -0.00%, +0.00%
PreVGPRs: 168029 -> 160162 (-4.68%)
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12246>
2021-08-05 16:24:35 +02:00
|
|
|
bool provoking_vtx_last,
|
2021-09-17 21:36:21 +02:00
|
|
|
bool use_edgeflags,
|
ac/nir/nggc: Only repack arguments that are needed.
Don't repack everything, only what is actually used.
The goal of this commit is primarily to remove unnecessary
LDS stores and loads. In addition to that, it also gets rid of
a few VALU instructions and reduces VGPR use.
Fossil DB stats on Sienna Cichlid with NGGC on:
Totals from 6951 (5.40% of 128647) affected shaders:
VGPRs: 206056 -> 205360 (-0.34%); split: -0.79%, +0.45%
CodeSize: 12344568 -> 12269312 (-0.61%); split: -0.62%, +0.01%
MaxWaves: 211206 -> 212196 (+0.47%)
Instrs: 2319459 -> 2308483 (-0.47%); split: -0.50%, +0.03%
Latency: 7220829 -> 7164721 (-0.78%); split: -1.21%, +0.43%
InvThroughput: 1051450 -> 1049191 (-0.21%); split: -0.36%, +0.15%
VClause: 25794 -> 25445 (-1.35%); split: -1.97%, +0.61%
SClause: 39192 -> 39277 (+0.22%); split: -0.21%, +0.43%
Copies: 315756 -> 313404 (-0.74%); split: -1.17%, +0.42%
Branches: 127878 -> 127879 (+0.00%); split: -0.00%, +0.00%
PreVGPRs: 168029 -> 160162 (-4.68%)
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12246>
2021-08-05 16:24:35 +02:00
|
|
|
uint32_t instance_rate_inputs);
|
2021-04-09 16:56:57 +02:00
|
|
|
|
2021-04-22 14:43:54 +02:00
|
|
|
void
|
|
|
|
|
ac_nir_lower_ngg_gs(nir_shader *shader,
|
|
|
|
|
unsigned wave_size,
|
|
|
|
|
unsigned max_workgroup_size,
|
|
|
|
|
unsigned esgs_ring_lds_bytes,
|
|
|
|
|
unsigned gs_out_vtx_bytes,
|
|
|
|
|
unsigned gs_total_out_vtx_bytes,
|
|
|
|
|
bool provoking_vtx_last);
|
|
|
|
|
|
2021-08-29 10:32:01 +02:00
|
|
|
void
|
|
|
|
|
ac_nir_lower_ngg_ms(nir_shader *shader,
|
|
|
|
|
unsigned wave_size);
|
|
|
|
|
|
2021-04-01 12:43:31 +02:00
|
|
|
nir_ssa_def *
|
|
|
|
|
ac_nir_cull_triangle(nir_builder *b,
|
|
|
|
|
nir_ssa_def *initially_accepted,
|
|
|
|
|
nir_ssa_def *pos[3][4]);
|
|
|
|
|
|
radv,ac/nir: lower global access to _amd global access intrinsics
fossil-db (Sienna Cichlid):
Totals from 400 (0.30% of 134621) affected shaders:
VGPRs: 18696 -> 18688 (-0.04%)
CodeSize: 2031348 -> 1946640 (-4.17%)
Instrs: 374703 -> 360226 (-3.86%)
Latency: 4200727 -> 4108628 (-2.19%); split: -2.20%, +0.01%
InvThroughput: 1059935 -> 1029441 (-2.88%); split: -2.88%, +0.00%
VClause: 5777 -> 5771 (-0.10%)
SClause: 11890 -> 10891 (-8.40%); split: -8.57%, +0.17%
Copies: 34035 -> 33259 (-2.28%); split: -2.98%, +0.70%
Branches: 11108 -> 11100 (-0.07%); split: -0.08%, +0.01%
PreSGPRs: 15999 -> 15942 (-0.36%); split: -0.44%, +0.08%
PreVGPRs: 16994 -> 16970 (-0.14%)
fossil-db (Polaris10):
Totals from 400 (0.29% of 135668) affected shaders:
SGPRs: 23799 -> 22919 (-3.70%); split: -4.30%, +0.61%
VGPRs: 18480 -> 18472 (-0.04%)
CodeSize: 2090316 -> 2041592 (-2.33%)
Instrs: 395461 -> 385747 (-2.46%); split: -2.46%, +0.00%
Latency: 5045768 -> 5020196 (-0.51%); split: -0.53%, +0.02%
InvThroughput: 2694320 -> 2689886 (-0.16%); split: -0.23%, +0.07%
VClause: 5982 -> 5968 (-0.23%)
SClause: 12064 -> 10823 (-10.29%); split: -10.33%, +0.04%
Copies: 48233 -> 48322 (+0.18%); split: -0.47%, +0.65%
PreSGPRs: 16409 -> 16358 (-0.31%); split: -0.39%, +0.08%
fossil-db (Pitcairn):
Totals from 400 (0.29% of 135668) affected shaders:
SGPRs: 22431 -> 22215 (-0.96%); split: -2.60%, +1.64%
VGPRs: 18776 -> 18560 (-1.15%); split: -1.21%, +0.06%
CodeSize: 2104440 -> 2017708 (-4.12%)
MaxWaves: 2363 -> 2367 (+0.17%)
Instrs: 413099 -> 397446 (-3.79%)
Latency: 5507707 -> 5450251 (-1.04%); split: -1.12%, +0.07%
InvThroughput: 2838867 -> 2786903 (-1.83%); split: -1.83%, +0.00%
VClause: 10334 -> 10097 (-2.29%)
SClause: 12346 -> 11005 (-10.86%); split: -10.89%, +0.02%
Copies: 54034 -> 52065 (-3.64%); split: -3.99%, +0.35%
PreSGPRs: 17916 -> 17857 (-0.33%); split: -0.40%, +0.07%
PreVGPRs: 16917 -> 16893 (-0.14%)
Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14124>
2021-12-02 14:35:15 +00:00
|
|
|
bool
|
|
|
|
|
ac_nir_lower_global_access(nir_shader *shader);
|
|
|
|
|
|
2021-02-09 19:19:53 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* AC_NIR_H */
|