nir: support lowering clipdist to arrays
[mesa.git] / src / compiler / nir / nir_lower_bool_to_int32.c
1 /*
2 * Copyright © 2018 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
24 #include "nir.h"
25
26 static bool
27 assert_ssa_def_is_not_1bit(nir_ssa_def *def, UNUSED void *unused)
28 {
29 assert(def->bit_size > 1);
30 return true;
31 }
32
33 static bool
34 rewrite_1bit_ssa_def_to_32bit(nir_ssa_def *def, void *_progress)
35 {
36 bool *progress = _progress;
37 if (def->bit_size == 1) {
38 def->bit_size = 32;
39 *progress = true;
40 }
41 return true;
42 }
43
44 static bool
45 lower_alu_instr(nir_alu_instr *alu)
46 {
47 const nir_op_info *op_info = &nir_op_infos[alu->op];
48
49 assert(alu->dest.dest.is_ssa);
50
51 switch (alu->op) {
52 case nir_op_mov:
53 case nir_op_vec2:
54 case nir_op_vec3:
55 case nir_op_vec4:
56 case nir_op_inot:
57 case nir_op_iand:
58 case nir_op_ior:
59 case nir_op_ixor:
60 /* These we expect to have booleans but the opcode doesn't change */
61 break;
62
63 case nir_op_f2b1: alu->op = nir_op_f2b32; break;
64 case nir_op_i2b1: alu->op = nir_op_i2b32; break;
65
66 case nir_op_flt: alu->op = nir_op_flt32; break;
67 case nir_op_fge: alu->op = nir_op_fge32; break;
68 case nir_op_feq: alu->op = nir_op_feq32; break;
69 case nir_op_fne: alu->op = nir_op_fne32; break;
70 case nir_op_ilt: alu->op = nir_op_ilt32; break;
71 case nir_op_ige: alu->op = nir_op_ige32; break;
72 case nir_op_ieq: alu->op = nir_op_ieq32; break;
73 case nir_op_ine: alu->op = nir_op_ine32; break;
74 case nir_op_ult: alu->op = nir_op_ult32; break;
75 case nir_op_uge: alu->op = nir_op_uge32; break;
76
77 case nir_op_ball_fequal2: alu->op = nir_op_b32all_fequal2; break;
78 case nir_op_ball_fequal3: alu->op = nir_op_b32all_fequal3; break;
79 case nir_op_ball_fequal4: alu->op = nir_op_b32all_fequal4; break;
80 case nir_op_bany_fnequal2: alu->op = nir_op_b32any_fnequal2; break;
81 case nir_op_bany_fnequal3: alu->op = nir_op_b32any_fnequal3; break;
82 case nir_op_bany_fnequal4: alu->op = nir_op_b32any_fnequal4; break;
83 case nir_op_ball_iequal2: alu->op = nir_op_b32all_iequal2; break;
84 case nir_op_ball_iequal3: alu->op = nir_op_b32all_iequal3; break;
85 case nir_op_ball_iequal4: alu->op = nir_op_b32all_iequal4; break;
86 case nir_op_bany_inequal2: alu->op = nir_op_b32any_inequal2; break;
87 case nir_op_bany_inequal3: alu->op = nir_op_b32any_inequal3; break;
88 case nir_op_bany_inequal4: alu->op = nir_op_b32any_inequal4; break;
89
90 case nir_op_bcsel: alu->op = nir_op_b32csel; break;
91
92 default:
93 assert(alu->dest.dest.ssa.bit_size > 1);
94 for (unsigned i = 0; i < op_info->num_inputs; i++)
95 assert(alu->src[i].src.ssa->bit_size > 1);
96 return false;
97 }
98
99 if (alu->dest.dest.ssa.bit_size == 1)
100 alu->dest.dest.ssa.bit_size = 32;
101
102 return true;
103 }
104
105 static bool
106 nir_lower_bool_to_int32_impl(nir_function_impl *impl)
107 {
108 bool progress = false;
109
110 nir_foreach_block(block, impl) {
111 nir_foreach_instr_safe(instr, block) {
112 switch (instr->type) {
113 case nir_instr_type_alu:
114 progress |= lower_alu_instr(nir_instr_as_alu(instr));
115 break;
116
117 case nir_instr_type_load_const: {
118 nir_load_const_instr *load = nir_instr_as_load_const(instr);
119 if (load->def.bit_size == 1) {
120 nir_const_value *value = load->value;
121 for (unsigned i = 0; i < load->def.num_components; i++)
122 load->value[i].u32 = value[i].b ? NIR_TRUE : NIR_FALSE;
123 load->def.bit_size = 32;
124 progress = true;
125 }
126 break;
127 }
128
129 case nir_instr_type_intrinsic:
130 case nir_instr_type_ssa_undef:
131 case nir_instr_type_phi:
132 case nir_instr_type_tex:
133 nir_foreach_ssa_def(instr, rewrite_1bit_ssa_def_to_32bit,
134 &progress);
135 break;
136
137 default:
138 nir_foreach_ssa_def(instr, assert_ssa_def_is_not_1bit, NULL);
139 }
140 }
141 }
142
143 if (progress) {
144 nir_metadata_preserve(impl, nir_metadata_block_index |
145 nir_metadata_dominance);
146 }
147
148 return progress;
149 }
150
151 bool
152 nir_lower_bool_to_int32(nir_shader *shader)
153 {
154 bool progress = false;
155
156 nir_foreach_function(function, shader) {
157 if (function->impl && nir_lower_bool_to_int32_impl(function->impl))
158 progress = true;
159 }
160
161 return progress;
162 }