nir/lower_system_values: Simplify the computation of LocalInvocationIndex
[mesa.git] / src / compiler / nir / nir_lower_system_values.c
1 /*
2 * Copyright © 2014 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Connor Abbott (cwabbott0@gmail.com)
25 *
26 */
27
28 #include "nir.h"
29 #include "nir_builder.h"
30
31 struct lower_system_values_state {
32 nir_builder builder;
33 bool progress;
34 };
35
36 static bool
37 convert_block(nir_block *block, void *void_state)
38 {
39 struct lower_system_values_state *state = void_state;
40
41 nir_builder *b = &state->builder;
42
43 nir_foreach_instr_safe(block, instr) {
44 if (instr->type != nir_instr_type_intrinsic)
45 continue;
46
47 nir_intrinsic_instr *load_var = nir_instr_as_intrinsic(instr);
48
49 if (load_var->intrinsic != nir_intrinsic_load_var)
50 continue;
51
52 nir_variable *var = load_var->variables[0]->var;
53 if (var->data.mode != nir_var_system_value)
54 continue;
55
56 b->cursor = nir_after_instr(&load_var->instr);
57
58 nir_ssa_def *sysval;
59 switch (var->data.location) {
60 case SYSTEM_VALUE_GLOBAL_INVOCATION_ID: {
61 /* From the GLSL man page for gl_GlobalInvocationID:
62 *
63 * "The value of gl_GlobalInvocationID is equal to
64 * gl_WorkGroupID * gl_WorkGroupSize + gl_LocalInvocationID"
65 */
66
67 nir_const_value local_size;
68 local_size.u32[0] = b->shader->info.cs.local_size[0];
69 local_size.u32[1] = b->shader->info.cs.local_size[1];
70 local_size.u32[2] = b->shader->info.cs.local_size[2];
71
72 nir_ssa_def *group_id =
73 nir_load_system_value(b, nir_intrinsic_load_work_group_id, 0);
74 nir_ssa_def *local_id =
75 nir_load_system_value(b, nir_intrinsic_load_local_invocation_id, 0);
76
77 sysval = nir_iadd(b, nir_imul(b, group_id,
78 nir_build_imm(b, 3, local_size)),
79 local_id);
80 break;
81 }
82
83 case SYSTEM_VALUE_LOCAL_INVOCATION_INDEX: {
84 /* From the GLSL man page for gl_LocalInvocationIndex:
85 *
86 * "The value of gl_LocalInvocationIndex is equal to
87 * gl_LocalInvocationID.z * gl_WorkGroupSize.x *
88 * gl_WorkGroupSize.y + gl_LocalInvocationID.y *
89 * gl_WorkGroupSize.x + gl_LocalInvocationID.x"
90 */
91 nir_ssa_def *local_id =
92 nir_load_system_value(b, nir_intrinsic_load_local_invocation_id, 0);
93
94 nir_ssa_def *size_x = nir_imm_int(b, b->shader->info.cs.local_size[0]);
95 nir_ssa_def *size_y = nir_imm_int(b, b->shader->info.cs.local_size[1]);
96
97 sysval = nir_imul(b, nir_channel(b, local_id, 2),
98 nir_imul(b, size_x, size_y));
99 sysval = nir_iadd(b, sysval,
100 nir_imul(b, nir_channel(b, local_id, 1), size_x));
101 sysval = nir_iadd(b, sysval, nir_channel(b, local_id, 0));
102 break;
103 }
104
105 case SYSTEM_VALUE_VERTEX_ID:
106 if (b->shader->options->vertex_id_zero_based) {
107 sysval = nir_iadd(b,
108 nir_load_system_value(b, nir_intrinsic_load_vertex_id_zero_base, 0),
109 nir_load_system_value(b, nir_intrinsic_load_base_vertex, 0));
110 } else {
111 sysval = nir_load_system_value(b, nir_intrinsic_load_vertex_id, 0);
112 }
113 break;
114
115 case SYSTEM_VALUE_INSTANCE_INDEX:
116 sysval = nir_iadd(b,
117 nir_load_system_value(b, nir_intrinsic_load_instance_id, 0),
118 nir_load_system_value(b, nir_intrinsic_load_base_instance, 0));
119 break;
120
121 default: {
122 nir_intrinsic_op sysval_op =
123 nir_intrinsic_from_system_value(var->data.location);
124 sysval = nir_load_system_value(b, sysval_op, 0);
125 break;
126 } /* default */
127 }
128
129 nir_ssa_def_rewrite_uses(&load_var->dest.ssa, nir_src_for_ssa(sysval));
130 nir_instr_remove(&load_var->instr);
131
132 state->progress = true;
133 }
134
135 return true;
136 }
137
138 static bool
139 convert_impl(nir_function_impl *impl)
140 {
141 struct lower_system_values_state state;
142
143 state.progress = false;
144 nir_builder_init(&state.builder, impl);
145
146 nir_foreach_block(impl, convert_block, &state);
147 nir_metadata_preserve(impl, nir_metadata_block_index |
148 nir_metadata_dominance);
149 return state.progress;
150 }
151
152 bool
153 nir_lower_system_values(nir_shader *shader)
154 {
155 bool progress = false;
156
157 nir_foreach_function(shader, function) {
158 if (function->impl)
159 progress = convert_impl(function->impl) || progress;
160 }
161
162 exec_list_make_empty(&shader->system_values);
163
164 return progress;
165 }