i965: Use MESA_FORMAT_B8G8R8X8_SRGB for RGB visuals
[mesa.git] / src / mesa / drivers / dri / i965 / brw_nir_opt_peephole_ffma.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 * Jason Ekstrand (jason@jlekstrand.net)
25 *
26 */
27
28 #include "brw_nir.h"
29
30 /*
31 * Implements a small peephole optimization that looks for a multiply that
32 * is only ever used in an add and replaces both with an fma.
33 */
34
35 struct peephole_ffma_state {
36 void *mem_ctx;
37 nir_function_impl *impl;
38 bool progress;
39 };
40
41 static inline bool
42 are_all_uses_fadd(nir_ssa_def *def)
43 {
44 if (!list_empty(&def->if_uses))
45 return false;
46
47 nir_foreach_use(def, use_src) {
48 nir_instr *use_instr = use_src->parent_instr;
49
50 if (use_instr->type != nir_instr_type_alu)
51 return false;
52
53 nir_alu_instr *use_alu = nir_instr_as_alu(use_instr);
54 switch (use_alu->op) {
55 case nir_op_fadd:
56 break; /* This one's ok */
57
58 case nir_op_imov:
59 case nir_op_fmov:
60 case nir_op_fneg:
61 case nir_op_fabs:
62 assert(use_alu->dest.dest.is_ssa);
63 if (!are_all_uses_fadd(&use_alu->dest.dest.ssa))
64 return false;
65 break;
66
67 default:
68 return false;
69 }
70 }
71
72 return true;
73 }
74
75 static nir_alu_instr *
76 get_mul_for_src(nir_alu_src *src, int num_components,
77 uint8_t swizzle[4], bool *negate, bool *abs)
78 {
79 uint8_t swizzle_tmp[4];
80 assert(src->src.is_ssa && !src->abs && !src->negate);
81
82 nir_instr *instr = src->src.ssa->parent_instr;
83 if (instr->type != nir_instr_type_alu)
84 return NULL;
85
86 nir_alu_instr *alu = nir_instr_as_alu(instr);
87 switch (alu->op) {
88 case nir_op_imov:
89 case nir_op_fmov:
90 alu = get_mul_for_src(&alu->src[0], num_components, swizzle, negate, abs);
91 break;
92
93 case nir_op_fneg:
94 alu = get_mul_for_src(&alu->src[0], num_components, swizzle, negate, abs);
95 *negate = !*negate;
96 break;
97
98 case nir_op_fabs:
99 alu = get_mul_for_src(&alu->src[0], num_components, swizzle, negate, abs);
100 *negate = false;
101 *abs = true;
102 break;
103
104 case nir_op_fmul:
105 /* Only absorb a fmul into a ffma if the fmul is is only used in fadd
106 * operations. This prevents us from being too aggressive with our
107 * fusing which can actually lead to more instructions.
108 */
109 if (!are_all_uses_fadd(&alu->dest.dest.ssa))
110 return NULL;
111 break;
112
113 default:
114 return NULL;
115 }
116
117 if (!alu)
118 return NULL;
119
120 /* Copy swizzle data before overwriting it to avoid setting a wrong swizzle.
121 *
122 * Example:
123 * Former swizzle[] = xyzw
124 * src->swizzle[] = zyxx
125 *
126 * Expected output swizzle = zyxx
127 * If we reuse swizzle in the loop, then output swizzle would be zyzz.
128 */
129 memcpy(swizzle_tmp, swizzle, 4*sizeof(uint8_t));
130 for (int i = 0; i < num_components; i++)
131 swizzle[i] = swizzle_tmp[src->swizzle[i]];
132
133 return alu;
134 }
135
136 /**
137 * Given a list of (at least two) nir_alu_src's, tells if any of them is a
138 * constant value and is used only once.
139 */
140 static bool
141 any_alu_src_is_a_constant(nir_alu_src srcs[])
142 {
143 for (unsigned i = 0; i < 2; i++) {
144 if (srcs[i].src.ssa->parent_instr->type == nir_instr_type_load_const) {
145 nir_load_const_instr *load_const =
146 nir_instr_as_load_const (srcs[i].src.ssa->parent_instr);
147
148 if (list_is_singular(&load_const->def.uses) &&
149 list_empty(&load_const->def.if_uses)) {
150 return true;
151 }
152 }
153 }
154
155 return false;
156 }
157
158 static bool
159 brw_nir_opt_peephole_ffma_block(nir_block *block, void *void_state)
160 {
161 struct peephole_ffma_state *state = void_state;
162
163 nir_foreach_instr_safe(block, instr) {
164 if (instr->type != nir_instr_type_alu)
165 continue;
166
167 nir_alu_instr *add = nir_instr_as_alu(instr);
168 if (add->op != nir_op_fadd)
169 continue;
170
171 /* TODO: Maybe bail if this expression is considered "precise"? */
172
173 assert(add->src[0].src.is_ssa && add->src[1].src.is_ssa);
174
175 /* This, is the case a + a. We would rather handle this with an
176 * algebraic reduction than fuse it. Also, we want to only fuse
177 * things where the multiply is used only once and, in this case,
178 * it would be used twice by the same instruction.
179 */
180 if (add->src[0].src.ssa == add->src[1].src.ssa)
181 continue;
182
183 nir_alu_instr *mul;
184 uint8_t add_mul_src, swizzle[4];
185 bool negate, abs;
186 for (add_mul_src = 0; add_mul_src < 2; add_mul_src++) {
187 for (unsigned i = 0; i < 4; i++)
188 swizzle[i] = i;
189
190 negate = false;
191 abs = false;
192
193 mul = get_mul_for_src(&add->src[add_mul_src],
194 add->dest.dest.ssa.num_components,
195 swizzle, &negate, &abs);
196
197 if (mul != NULL)
198 break;
199 }
200
201 if (mul == NULL)
202 continue;
203
204 nir_ssa_def *mul_src[2];
205 mul_src[0] = mul->src[0].src.ssa;
206 mul_src[1] = mul->src[1].src.ssa;
207
208 /* If any of the operands of the fmul and any of the fadd is a constant,
209 * we bypass because it will be more efficient as the constants will be
210 * propagated as operands, potentially saving two load_const instructions.
211 */
212 if (any_alu_src_is_a_constant(mul->src) &&
213 any_alu_src_is_a_constant(add->src)) {
214 continue;
215 }
216
217 if (abs) {
218 for (unsigned i = 0; i < 2; i++) {
219 nir_alu_instr *abs = nir_alu_instr_create(state->mem_ctx,
220 nir_op_fabs);
221 abs->src[0].src = nir_src_for_ssa(mul_src[i]);
222 nir_ssa_dest_init(&abs->instr, &abs->dest.dest,
223 mul_src[i]->num_components, NULL);
224 abs->dest.write_mask = (1 << mul_src[i]->num_components) - 1;
225 nir_instr_insert_before(&add->instr, &abs->instr);
226 mul_src[i] = &abs->dest.dest.ssa;
227 }
228 }
229
230 if (negate) {
231 nir_alu_instr *neg = nir_alu_instr_create(state->mem_ctx,
232 nir_op_fneg);
233 neg->src[0].src = nir_src_for_ssa(mul_src[0]);
234 nir_ssa_dest_init(&neg->instr, &neg->dest.dest,
235 mul_src[0]->num_components, NULL);
236 neg->dest.write_mask = (1 << mul_src[0]->num_components) - 1;
237 nir_instr_insert_before(&add->instr, &neg->instr);
238 mul_src[0] = &neg->dest.dest.ssa;
239 }
240
241 nir_alu_instr *ffma = nir_alu_instr_create(state->mem_ctx, nir_op_ffma);
242 ffma->dest.saturate = add->dest.saturate;
243 ffma->dest.write_mask = add->dest.write_mask;
244
245 for (unsigned i = 0; i < 2; i++) {
246 ffma->src[i].src = nir_src_for_ssa(mul_src[i]);
247 for (unsigned j = 0; j < add->dest.dest.ssa.num_components; j++)
248 ffma->src[i].swizzle[j] = mul->src[i].swizzle[swizzle[j]];
249 }
250 nir_alu_src_copy(&ffma->src[2], &add->src[1 - add_mul_src], ffma);
251
252 assert(add->dest.dest.is_ssa);
253
254 nir_ssa_dest_init(&ffma->instr, &ffma->dest.dest,
255 add->dest.dest.ssa.num_components,
256 add->dest.dest.ssa.name);
257 nir_ssa_def_rewrite_uses(&add->dest.dest.ssa,
258 nir_src_for_ssa(&ffma->dest.dest.ssa));
259
260 nir_instr_insert_before(&add->instr, &ffma->instr);
261 assert(list_empty(&add->dest.dest.ssa.uses));
262 nir_instr_remove(&add->instr);
263
264 state->progress = true;
265 }
266
267 return true;
268 }
269
270 static bool
271 brw_nir_opt_peephole_ffma_impl(nir_function_impl *impl)
272 {
273 struct peephole_ffma_state state;
274
275 state.mem_ctx = ralloc_parent(impl);
276 state.impl = impl;
277 state.progress = false;
278
279 nir_foreach_block(impl, brw_nir_opt_peephole_ffma_block, &state);
280
281 if (state.progress)
282 nir_metadata_preserve(impl, nir_metadata_block_index |
283 nir_metadata_dominance);
284
285 return state.progress;
286 }
287
288 bool
289 brw_nir_opt_peephole_ffma(nir_shader *shader)
290 {
291 bool progress = false;
292
293 nir_foreach_overload(shader, overload) {
294 if (overload->impl)
295 progress |= brw_nir_opt_peephole_ffma_impl(overload->impl);
296 }
297
298 return progress;
299 }