1 /* -*- mesa-c++ -*-
2 *
3 * Copyright (c) 2018 Collabora LTD
4 *
5 * Author: Gert Wollny <gert.wollny@collabora.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * on the rights to use, copy, modify, merge, publish, distribute, sub
11 * license, and/or sell copies of the Software, and to permit persons to whom
12 * the Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27 #include "sfn_shader_compute.h"
28 #include "sfn_instruction_fetch.h"
29
30 namespace r600 {
31
ComputeShaderFromNir(r600_pipe_shader * sh,r600_pipe_shader_selector & sel,UNUSED const r600_shader_key & key,enum chip_class chip_class)32 ComputeShaderFromNir::ComputeShaderFromNir(r600_pipe_shader *sh,
33 r600_pipe_shader_selector& sel,
34 UNUSED const r600_shader_key& key,
35 enum chip_class chip_class):
36 ShaderFromNirProcessor (PIPE_SHADER_COMPUTE, sel, sh->shader,
37 sh->scratch_space_needed, chip_class, 0),
38 m_reserved_registers(0)
39 {
40 }
41
scan_sysvalue_access(UNUSED nir_instr * instr)42 bool ComputeShaderFromNir::scan_sysvalue_access(UNUSED nir_instr *instr)
43 {
44 return true;
45 }
do_allocate_reserved_registers()46 bool ComputeShaderFromNir::do_allocate_reserved_registers()
47 {
48 int thread_id_sel = m_reserved_registers++;
49 int wg_id_sel = m_reserved_registers++;
50
51 for (int i = 0; i < 3; ++i) {
52 auto tmp = new GPRValue(thread_id_sel, i);
53 tmp->set_as_input();
54 tmp->set_keep_alive();
55 m_local_invocation_id[i] = PValue(tmp);
56 inject_register(tmp->sel(), i, m_local_invocation_id[i], false);
57
58 tmp = new GPRValue(wg_id_sel, i);
59 tmp->set_as_input();
60 tmp->set_keep_alive();
61 m_workgroup_id[i] = PValue(tmp);
62 inject_register(tmp->sel(), i, m_workgroup_id[i], false);
63 }
64 return true;
65 }
66
emit_intrinsic_instruction_override(nir_intrinsic_instr * instr)67 bool ComputeShaderFromNir::emit_intrinsic_instruction_override(nir_intrinsic_instr* instr)
68 {
69 switch (instr->intrinsic) {
70 case nir_intrinsic_load_local_invocation_id:
71 return emit_load_3vec(instr, m_local_invocation_id);
72 case nir_intrinsic_load_work_group_id:
73 return emit_load_3vec(instr, m_workgroup_id);
74 case nir_intrinsic_load_num_work_groups:
75 return emit_load_num_work_groups(instr);
76 default:
77 return false;
78 }
79 }
80
emit_load_3vec(nir_intrinsic_instr * instr,const std::array<PValue,3> & src)81 bool ComputeShaderFromNir::emit_load_3vec(nir_intrinsic_instr* instr,
82 const std::array<PValue,3>& src)
83 {
84 for (int i = 0; i < 3; ++i)
85 load_preloaded_value(instr->dest, i, src[i], i == 2);
86 return true;
87 }
88
emit_load_num_work_groups(nir_intrinsic_instr * instr)89 bool ComputeShaderFromNir::emit_load_num_work_groups(nir_intrinsic_instr* instr)
90 {
91 int temp = allocate_temp_register();
92 PValue a_zero(new GPRValue(temp, 1));
93 emit_instruction(new AluInstruction(op1_mov, a_zero, Value::zero, EmitInstruction::last_write));
94 GPRVector dest;
95 for (int i = 0; i < 3; ++i)
96 dest.set_reg_i(i, from_nir(instr->dest, i));
97 dest.set_reg_i(3, from_nir(instr->dest, 7));
98
99 auto ir = new FetchInstruction(vc_fetch, no_index_offset,
100 fmt_32_32_32_32, vtx_nf_int, vtx_es_none, a_zero, dest, 16,
101 false, 16, R600_BUFFER_INFO_CONST_BUFFER, 0,
102 bim_none, false, false, 0, 0, 0, PValue(), {0,1,2,7});
103 ir->set_flag(vtx_srf_mode);
104 emit_instruction(ir);
105 return true;
106 }
107
do_process_inputs(UNUSED nir_variable * input)108 bool ComputeShaderFromNir::do_process_inputs(UNUSED nir_variable *input)
109 {
110 return true;
111 }
112
do_process_outputs(UNUSED nir_variable * output)113 bool ComputeShaderFromNir::do_process_outputs(UNUSED nir_variable *output)
114 {
115 return true;
116 }
117
do_emit_load_deref(UNUSED const nir_variable * in_var,UNUSED nir_intrinsic_instr * instr)118 bool ComputeShaderFromNir::do_emit_load_deref(UNUSED const nir_variable *in_var,
119 UNUSED nir_intrinsic_instr* instr)
120 {
121 return true;
122 }
123
do_emit_store_deref(UNUSED const nir_variable * out_var,UNUSED nir_intrinsic_instr * instr)124 bool ComputeShaderFromNir::do_emit_store_deref(UNUSED const nir_variable *out_var,
125 UNUSED nir_intrinsic_instr* instr)
126 {
127 return true;
128 }
do_finalize()129 void ComputeShaderFromNir::do_finalize()
130 {
131
132 }
133
134 }
135