r300/compiler: Move declaration before code.
[mesa.git] / src / mesa / drivers / dri / r300 / compiler / radeon_optimize.c
1 /*
2 * Copyright (C) 2009 Nicolai Haehnle.
3 *
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining
7 * a copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sublicense, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial
16 * portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 */
27
28 #include "radeon_dataflow.h"
29
30 #include "radeon_compiler.h"
31 #include "radeon_swizzle.h"
32
33 struct peephole_state {
34 struct rc_instruction * Inst;
35 /** Stores a bitmask of the components that are still "alive" (i.e.
36 * they have not been written to since Inst was executed.)
37 */
38 unsigned int WriteMask;
39 };
40
41 typedef void (*rc_presub_replace_fn)(struct peephole_state *,
42 struct rc_instruction *,
43 unsigned int);
44
45 static struct rc_src_register chain_srcregs(struct rc_src_register outer, struct rc_src_register inner)
46 {
47 struct rc_src_register combine;
48 combine.File = inner.File;
49 combine.Index = inner.Index;
50 combine.RelAddr = inner.RelAddr;
51 if (outer.Abs) {
52 combine.Abs = 1;
53 combine.Negate = outer.Negate;
54 } else {
55 combine.Abs = inner.Abs;
56 combine.Negate = 0;
57 for(unsigned int chan = 0; chan < 4; ++chan) {
58 unsigned int swz = GET_SWZ(outer.Swizzle, chan);
59 if (swz < 4)
60 combine.Negate |= GET_BIT(inner.Negate, swz) << chan;
61 }
62 combine.Negate ^= outer.Negate;
63 }
64 combine.Swizzle = combine_swizzles(inner.Swizzle, outer.Swizzle);
65 return combine;
66 }
67
68 struct copy_propagate_state {
69 struct radeon_compiler * C;
70 struct rc_instruction * Mov;
71 unsigned int Conflict:1;
72
73 /** Whether Mov's source has been clobbered */
74 unsigned int SourceClobbered:1;
75
76 /** Which components of Mov's destination register are still from that Mov? */
77 unsigned int MovMask:4;
78
79 /** Which components of Mov's destination register are clearly *not* from that Mov */
80 unsigned int DefinedMask:4;
81
82 /** Which components of Mov's source register are sourced */
83 unsigned int SourcedMask:4;
84
85 /** Branch depth beyond Mov; negative value indicates we left the Mov's block */
86 int BranchDepth;
87 };
88
89 /**
90 * This is a callback function that is meant to be passed to
91 * rc_for_all_reads_mask. This function will be called once for each source
92 * register in inst.
93 * @param inst The instruction that the source register belongs to.
94 * @param file The register file of the source register.
95 * @param index The index of the source register.
96 * @param mask The components of the source register that are being read from.
97 */
98 static void copy_propagate_scan_read(void * data, struct rc_instruction * inst,
99 rc_register_file file, unsigned int index, unsigned int mask)
100 {
101 struct copy_propagate_state * s = data;
102
103 /* XXX This could probably be handled better. */
104 if (file == RC_FILE_ADDRESS) {
105 s->Conflict = 1;
106 return;
107 }
108
109 if (file != RC_FILE_TEMPORARY || index != s->Mov->U.I.DstReg.Index)
110 return;
111
112 /* These instructions cannot read from the constants file.
113 * see radeonTransformTEX()
114 */
115 if(s->Mov->U.I.SrcReg[0].File != RC_FILE_TEMPORARY &&
116 s->Mov->U.I.SrcReg[0].File != RC_FILE_INPUT &&
117 (inst->U.I.Opcode == RC_OPCODE_TEX ||
118 inst->U.I.Opcode == RC_OPCODE_TXB ||
119 inst->U.I.Opcode == RC_OPCODE_TXP ||
120 inst->U.I.Opcode == RC_OPCODE_KIL)){
121 s->Conflict = 1;
122 return;
123 }
124 if ((mask & s->MovMask) == mask) {
125 if (s->SourceClobbered) {
126 s->Conflict = 1;
127 }
128 } else if ((mask & s->DefinedMask) == mask) {
129 /* read from something entirely written by other instruction: this is okay */
130 } else {
131 /* read from component combination that is not well-defined without
132 * the MOV: cannot remove it */
133 s->Conflict = 1;
134 }
135 }
136
137 static void copy_propagate_scan_write(void * data, struct rc_instruction * inst,
138 rc_register_file file, unsigned int index, unsigned int mask)
139 {
140 struct copy_propagate_state * s = data;
141
142 if (s->BranchDepth < 0)
143 return;
144
145 if (file == s->Mov->U.I.DstReg.File && index == s->Mov->U.I.DstReg.Index) {
146 s->MovMask &= ~mask;
147 if (s->BranchDepth == 0)
148 s->DefinedMask |= mask;
149 else
150 s->DefinedMask &= ~mask;
151 }
152 if (file == s->Mov->U.I.SrcReg[0].File && index == s->Mov->U.I.SrcReg[0].Index) {
153 if (mask & s->SourcedMask)
154 s->SourceClobbered = 1;
155 } else if (s->Mov->U.I.SrcReg[0].RelAddr && file == RC_FILE_ADDRESS) {
156 s->SourceClobbered = 1;
157 }
158 }
159
160 static void copy_propagate(struct radeon_compiler * c, struct rc_instruction * inst_mov)
161 {
162 struct copy_propagate_state s;
163
164 if (inst_mov->U.I.DstReg.File != RC_FILE_TEMPORARY ||
165 inst_mov->U.I.DstReg.RelAddr ||
166 inst_mov->U.I.WriteALUResult ||
167 inst_mov->U.I.SaturateMode)
168 return;
169
170 memset(&s, 0, sizeof(s));
171 s.C = c;
172 s.Mov = inst_mov;
173 s.MovMask = inst_mov->U.I.DstReg.WriteMask;
174 s.DefinedMask = RC_MASK_XYZW & ~s.MovMask;
175
176 for(unsigned int chan = 0; chan < 4; ++chan) {
177 unsigned int swz = GET_SWZ(inst_mov->U.I.SrcReg[0].Swizzle, chan);
178 s.SourcedMask |= (1 << swz) & RC_MASK_XYZW;
179 }
180
181 /* 1st pass: Check whether all subsequent readers can be changed */
182 for(struct rc_instruction * inst = inst_mov->Next;
183 inst != &c->Program.Instructions;
184 inst = inst->Next) {
185 const struct rc_opcode_info * info = rc_get_opcode_info(inst->U.I.Opcode);
186 /* XXX In the future we might be able to make the optimizer
187 * smart enough to handle loops. */
188 if(inst->U.I.Opcode == RC_OPCODE_BGNLOOP
189 || inst->U.I.Opcode == RC_OPCODE_ENDLOOP){
190 return;
191 }
192
193 /* It is possible to do copy propigation in this situation,
194 * just not right now, see peephole_add_presub_inv() */
195 if (inst_mov->U.I.PreSub.Opcode != RC_PRESUB_NONE &&
196 (info->NumSrcRegs > 2 || info->HasTexture)) {
197 return;
198 }
199
200 rc_for_all_reads_mask(inst, copy_propagate_scan_read, &s);
201 rc_for_all_writes_mask(inst, copy_propagate_scan_write, &s);
202 if (s.Conflict)
203 return;
204
205 if (s.BranchDepth >= 0) {
206 if (inst->U.I.Opcode == RC_OPCODE_IF) {
207 s.BranchDepth++;
208 } else if (inst->U.I.Opcode == RC_OPCODE_ENDIF
209 || inst->U.I.Opcode == RC_OPCODE_ELSE) {
210 s.BranchDepth--;
211 if (s.BranchDepth < 0) {
212 s.DefinedMask &= ~s.MovMask;
213 s.MovMask = 0;
214 }
215 }
216 }
217 }
218
219 if (s.Conflict)
220 return;
221
222 /* 2nd pass: We can satisfy all readers, so switch them over all at once */
223 s.MovMask = inst_mov->U.I.DstReg.WriteMask;
224 s.BranchDepth = 0;
225
226 for(struct rc_instruction * inst = inst_mov->Next;
227 inst != &c->Program.Instructions;
228 inst = inst->Next) {
229 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode);
230 for(unsigned int src = 0; src < opcode->NumSrcRegs; ++src) {
231 if (inst->U.I.SrcReg[src].File == RC_FILE_TEMPORARY &&
232 inst->U.I.SrcReg[src].Index == s.Mov->U.I.DstReg.Index) {
233 unsigned int refmask = 0;
234
235 for(unsigned int chan = 0; chan < 4; ++chan) {
236 unsigned int swz = GET_SWZ(inst->U.I.SrcReg[src].Swizzle, chan);
237 refmask |= (1 << swz) & RC_MASK_XYZW;
238 }
239
240 if ((refmask & s.MovMask) == refmask) {
241 inst->U.I.SrcReg[src] = chain_srcregs(inst->U.I.SrcReg[src], s.Mov->U.I.SrcReg[0]);
242 if (s.Mov->U.I.SrcReg[0].File == RC_FILE_PRESUB)
243 inst->U.I.PreSub = s.Mov->U.I.PreSub;
244 }
245 }
246 }
247
248 if (opcode->HasDstReg) {
249 if (inst->U.I.DstReg.File == RC_FILE_TEMPORARY &&
250 inst->U.I.DstReg.Index == s.Mov->U.I.DstReg.Index) {
251 s.MovMask &= ~inst->U.I.DstReg.WriteMask;
252 }
253 }
254
255 if (s.BranchDepth >= 0) {
256 if (inst->U.I.Opcode == RC_OPCODE_IF) {
257 s.BranchDepth++;
258 } else if (inst->U.I.Opcode == RC_OPCODE_ENDIF
259 || inst->U.I.Opcode == RC_OPCODE_ELSE) {
260 s.BranchDepth--;
261 if (s.BranchDepth < 0)
262 break; /* no more readers after this point */
263 }
264 }
265 }
266
267 /* Finally, remove the original MOV instruction */
268 rc_remove_instruction(inst_mov);
269 }
270
271 /**
272 * Check if a source register is actually always the same
273 * swizzle constant.
274 */
275 static int is_src_uniform_constant(struct rc_src_register src,
276 rc_swizzle * pswz, unsigned int * pnegate)
277 {
278 int have_used = 0;
279
280 if (src.File != RC_FILE_NONE) {
281 *pswz = 0;
282 return 0;
283 }
284
285 for(unsigned int chan = 0; chan < 4; ++chan) {
286 unsigned int swz = GET_SWZ(src.Swizzle, chan);
287 if (swz < 4) {
288 *pswz = 0;
289 return 0;
290 }
291 if (swz == RC_SWIZZLE_UNUSED)
292 continue;
293
294 if (!have_used) {
295 *pswz = swz;
296 *pnegate = GET_BIT(src.Negate, chan);
297 have_used = 1;
298 } else {
299 if (swz != *pswz || *pnegate != GET_BIT(src.Negate, chan)) {
300 *pswz = 0;
301 return 0;
302 }
303 }
304 }
305
306 return 1;
307 }
308
309 static void constant_folding_mad(struct rc_instruction * inst)
310 {
311 rc_swizzle swz;
312 unsigned int negate;
313
314 if (is_src_uniform_constant(inst->U.I.SrcReg[2], &swz, &negate)) {
315 if (swz == RC_SWIZZLE_ZERO) {
316 inst->U.I.Opcode = RC_OPCODE_MUL;
317 return;
318 }
319 }
320
321 if (is_src_uniform_constant(inst->U.I.SrcReg[1], &swz, &negate)) {
322 if (swz == RC_SWIZZLE_ONE) {
323 inst->U.I.Opcode = RC_OPCODE_ADD;
324 if (negate)
325 inst->U.I.SrcReg[0].Negate ^= RC_MASK_XYZW;
326 inst->U.I.SrcReg[1] = inst->U.I.SrcReg[2];
327 return;
328 } else if (swz == RC_SWIZZLE_ZERO) {
329 inst->U.I.Opcode = RC_OPCODE_MOV;
330 inst->U.I.SrcReg[0] = inst->U.I.SrcReg[2];
331 return;
332 }
333 }
334
335 if (is_src_uniform_constant(inst->U.I.SrcReg[0], &swz, &negate)) {
336 if (swz == RC_SWIZZLE_ONE) {
337 inst->U.I.Opcode = RC_OPCODE_ADD;
338 if (negate)
339 inst->U.I.SrcReg[1].Negate ^= RC_MASK_XYZW;
340 inst->U.I.SrcReg[0] = inst->U.I.SrcReg[2];
341 return;
342 } else if (swz == RC_SWIZZLE_ZERO) {
343 inst->U.I.Opcode = RC_OPCODE_MOV;
344 inst->U.I.SrcReg[0] = inst->U.I.SrcReg[2];
345 return;
346 }
347 }
348 }
349
350 static void constant_folding_mul(struct rc_instruction * inst)
351 {
352 rc_swizzle swz;
353 unsigned int negate;
354
355 if (is_src_uniform_constant(inst->U.I.SrcReg[0], &swz, &negate)) {
356 if (swz == RC_SWIZZLE_ONE) {
357 inst->U.I.Opcode = RC_OPCODE_MOV;
358 inst->U.I.SrcReg[0] = inst->U.I.SrcReg[1];
359 if (negate)
360 inst->U.I.SrcReg[0].Negate ^= RC_MASK_XYZW;
361 return;
362 } else if (swz == RC_SWIZZLE_ZERO) {
363 inst->U.I.Opcode = RC_OPCODE_MOV;
364 inst->U.I.SrcReg[0].Swizzle = RC_SWIZZLE_0000;
365 return;
366 }
367 }
368
369 if (is_src_uniform_constant(inst->U.I.SrcReg[1], &swz, &negate)) {
370 if (swz == RC_SWIZZLE_ONE) {
371 inst->U.I.Opcode = RC_OPCODE_MOV;
372 if (negate)
373 inst->U.I.SrcReg[0].Negate ^= RC_MASK_XYZW;
374 return;
375 } else if (swz == RC_SWIZZLE_ZERO) {
376 inst->U.I.Opcode = RC_OPCODE_MOV;
377 inst->U.I.SrcReg[0].Swizzle = RC_SWIZZLE_0000;
378 return;
379 }
380 }
381 }
382
383 static void constant_folding_add(struct rc_instruction * inst)
384 {
385 rc_swizzle swz;
386 unsigned int negate;
387
388 if (is_src_uniform_constant(inst->U.I.SrcReg[0], &swz, &negate)) {
389 if (swz == RC_SWIZZLE_ZERO) {
390 inst->U.I.Opcode = RC_OPCODE_MOV;
391 inst->U.I.SrcReg[0] = inst->U.I.SrcReg[1];
392 return;
393 }
394 }
395
396 if (is_src_uniform_constant(inst->U.I.SrcReg[1], &swz, &negate)) {
397 if (swz == RC_SWIZZLE_ZERO) {
398 inst->U.I.Opcode = RC_OPCODE_MOV;
399 return;
400 }
401 }
402 }
403
404 /**
405 * Replace 0.0, 1.0 and 0.5 immediate constants by their
406 * respective swizzles. Simplify instructions like ADD dst, src, 0;
407 */
408 static void constant_folding(struct radeon_compiler * c, struct rc_instruction * inst)
409 {
410 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode);
411
412 /* Replace 0.0, 1.0 and 0.5 immediates by their explicit swizzles */
413 for(unsigned int src = 0; src < opcode->NumSrcRegs; ++src) {
414 struct rc_constant * constant;
415 struct rc_src_register newsrc;
416 int have_real_reference;
417
418 if (inst->U.I.SrcReg[src].File != RC_FILE_CONSTANT ||
419 inst->U.I.SrcReg[src].RelAddr ||
420 inst->U.I.SrcReg[src].Index >= c->Program.Constants.Count)
421 continue;
422
423 constant =
424 &c->Program.Constants.Constants[inst->U.I.SrcReg[src].Index];
425
426 if (constant->Type != RC_CONSTANT_IMMEDIATE)
427 continue;
428
429 newsrc = inst->U.I.SrcReg[src];
430 have_real_reference = 0;
431 for(unsigned int chan = 0; chan < 4; ++chan) {
432 unsigned int swz = GET_SWZ(newsrc.Swizzle, chan);
433 unsigned int newswz;
434 float imm;
435 float baseimm;
436
437 if (swz >= 4)
438 continue;
439
440 imm = constant->u.Immediate[swz];
441 baseimm = imm;
442 if (imm < 0.0)
443 baseimm = -baseimm;
444
445 if (baseimm == 0.0) {
446 newswz = RC_SWIZZLE_ZERO;
447 } else if (baseimm == 1.0) {
448 newswz = RC_SWIZZLE_ONE;
449 } else if (baseimm == 0.5 && c->has_half_swizzles) {
450 newswz = RC_SWIZZLE_HALF;
451 } else {
452 have_real_reference = 1;
453 continue;
454 }
455
456 SET_SWZ(newsrc.Swizzle, chan, newswz);
457 if (imm < 0.0 && !newsrc.Abs)
458 newsrc.Negate ^= 1 << chan;
459 }
460
461 if (!have_real_reference) {
462 newsrc.File = RC_FILE_NONE;
463 newsrc.Index = 0;
464 }
465
466 /* don't make the swizzle worse */
467 if (!c->SwizzleCaps->IsNative(inst->U.I.Opcode, newsrc) &&
468 c->SwizzleCaps->IsNative(inst->U.I.Opcode, inst->U.I.SrcReg[src]))
469 continue;
470
471 inst->U.I.SrcReg[src] = newsrc;
472 }
473
474 /* Simplify instructions based on constants */
475 if (inst->U.I.Opcode == RC_OPCODE_MAD)
476 constant_folding_mad(inst);
477
478 /* note: MAD can simplify to MUL or ADD */
479 if (inst->U.I.Opcode == RC_OPCODE_MUL)
480 constant_folding_mul(inst);
481 else if (inst->U.I.Opcode == RC_OPCODE_ADD)
482 constant_folding_add(inst);
483 }
484
485 /**
486 * If src and dst use the same register, this function returns a writemask that
487 * indicates wich components are read by src. Otherwise zero is returned.
488 */
489 static unsigned int src_reads_dst_mask(struct rc_src_register src,
490 struct rc_dst_register dst)
491 {
492 unsigned int mask = 0;
493 unsigned int i;
494 if (dst.File != src.File || dst.Index != src.Index) {
495 return 0;
496 }
497
498 for(i = 0; i < 4; i++) {
499 mask |= 1 << GET_SWZ(src.Swizzle, i);
500 }
501 mask &= RC_MASK_XYZW;
502
503 return mask;
504 }
505
506 /* Return 1 if the source registers has a constant swizzle (e.g. 0, 0.5, 1.0)
507 * in any of its channels. Return 0 otherwise. */
508 static int src_has_const_swz(struct rc_src_register src) {
509 int chan;
510 for(chan = 0; chan < 4; chan++) {
511 unsigned int swz = GET_SWZ(src.Swizzle, chan);
512 if (swz == RC_SWIZZLE_ZERO || swz == RC_SWIZZLE_HALF
513 || swz == RC_SWIZZLE_ONE) {
514 return 1;
515 }
516 }
517 return 0;
518 }
519
520 static void peephole_scan_write(void * data, struct rc_instruction * inst,
521 rc_register_file file, unsigned int index, unsigned int mask)
522 {
523 struct peephole_state * s = data;
524 if(s->Inst->U.I.DstReg.File == file
525 && s->Inst->U.I.DstReg.Index == index) {
526 unsigned int common_mask = s->WriteMask & mask;
527 s->WriteMask &= ~common_mask;
528 }
529 }
530
531 static int presub_helper(
532 struct radeon_compiler * c,
533 struct peephole_state * s,
534 rc_presubtract_op presub_opcode,
535 rc_presub_replace_fn presub_replace)
536 {
537 struct rc_instruction * inst;
538 unsigned int can_remove = 0;
539 unsigned int cant_sub = 0;
540
541 for(inst = s->Inst->Next; inst != &c->Program.Instructions;
542 inst = inst->Next) {
543 unsigned int i;
544 unsigned char can_use_presub = 1;
545 const struct rc_opcode_info * info =
546 rc_get_opcode_info(inst->U.I.Opcode);
547 /* XXX: There are some situations where instructions
548 * with more than 2 src registers can use the
549 * presubtract select, but to keep things simple we
550 * will disable presubtract on these instructions for
551 * now. */
552 if (info->NumSrcRegs > 2 || info->HasTexture) {
553 can_use_presub = 0;
554 }
555
556 /* We can't use more than one presubtract value in an
557 * instruction, unless the two prsubtract operations
558 * are the same and read from the same registers. */
559 if (inst->U.I.PreSub.Opcode != RC_PRESUB_NONE) {
560 if (inst->U.I.PreSub.Opcode != presub_opcode
561 || inst->U.I.PreSub.SrcReg[0].File !=
562 s->Inst->U.I.SrcReg[1].File
563 || inst->U.I.PreSub.SrcReg[0].Index !=
564 s->Inst->U.I.SrcReg[1].Index) {
565 can_use_presub = 0;
566 }
567 }
568
569 /* Even if the instruction can't use a presubtract operation
570 * we still need to check if the instruction reads from
571 * s->Inst->U.I.DstReg, because if it does we must not
572 * remove s->Inst. */
573 for(i = 0; i < info->NumSrcRegs; i++) {
574 unsigned int mask = src_reads_dst_mask(
575 inst->U.I.SrcReg[i], s->Inst->U.I.DstReg);
576 /* XXX We could be more aggressive here using
577 * presubtract. It is okay if SrcReg[i] only reads
578 * from some of the mask components. */
579 if(s->Inst->U.I.DstReg.WriteMask != mask) {
580 if (s->Inst->U.I.DstReg.WriteMask & mask) {
581 can_remove = 0;
582 break;
583 } else {
584 continue;
585 }
586 }
587 if (cant_sub || !can_use_presub) {
588 can_remove = 0;
589 break;
590 }
591 presub_replace(s, inst, i);
592 can_remove = 1;
593 }
594 if(!can_remove)
595 break;
596 rc_for_all_writes_mask(inst, peephole_scan_write, s);
597 /* If all components of inst_add's destination register have
598 * been written to by subsequent instructions, the original
599 * value of the destination register is no longer valid and
600 * we can't keep doing substitutions. */
601 if (!s->WriteMask){
602 break;
603 }
604 /* Make this instruction doesn't write to the presubtract source. */
605 if (inst->U.I.DstReg.WriteMask &
606 src_reads_dst_mask(s->Inst->U.I.SrcReg[1],
607 inst->U.I.DstReg)
608 || src_reads_dst_mask(s->Inst->U.I.SrcReg[0],
609 inst->U.I.DstReg)
610 || info->IsFlowControl) {
611 cant_sub = 1;
612 }
613 }
614 return can_remove;
615 }
616
617 /* This function assumes that s->Inst->U.I.SrcReg[0] and
618 * s->Inst->U.I.SrcReg[1] aren't both negative. */
619 static void presub_replace_add(struct peephole_state *s,
620 struct rc_instruction * inst,
621 unsigned int src_index)
622 {
623 rc_presubtract_op presub_opcode;
624 if (s->Inst->U.I.SrcReg[1].Negate || s->Inst->U.I.SrcReg[0].Negate)
625 presub_opcode = RC_PRESUB_SUB;
626 else
627 presub_opcode = RC_PRESUB_ADD;
628
629 if (s->Inst->U.I.SrcReg[1].Negate) {
630 inst->U.I.PreSub.SrcReg[0] = s->Inst->U.I.SrcReg[1];
631 inst->U.I.PreSub.SrcReg[1] = s->Inst->U.I.SrcReg[0];
632 } else {
633 inst->U.I.PreSub.SrcReg[0] = s->Inst->U.I.SrcReg[0];
634 inst->U.I.PreSub.SrcReg[1] = s->Inst->U.I.SrcReg[1];
635 }
636 inst->U.I.PreSub.SrcReg[0].Negate = 0;
637 inst->U.I.PreSub.SrcReg[1].Negate = 0;
638 inst->U.I.PreSub.Opcode = presub_opcode;
639 inst->U.I.SrcReg[src_index] = chain_srcregs(inst->U.I.SrcReg[src_index],
640 inst->U.I.PreSub.SrcReg[0]);
641 inst->U.I.SrcReg[src_index].File = RC_FILE_PRESUB;
642 inst->U.I.SrcReg[src_index].Index = presub_opcode;
643 }
644
645 static int is_presub_candidate(struct rc_instruction * inst)
646 {
647 const struct rc_opcode_info * info = rc_get_opcode_info(inst->U.I.Opcode);
648 unsigned int i;
649
650 if (inst->U.I.PreSub.Opcode != RC_PRESUB_NONE || inst->U.I.SaturateMode)
651 return 0;
652
653 for(i = 0; i < info->NumSrcRegs; i++) {
654 if (src_reads_dst_mask(inst->U.I.SrcReg[i], inst->U.I.DstReg))
655 return 0;
656 }
657 return 1;
658 }
659
660 static int peephole_add_presub_add(
661 struct radeon_compiler * c,
662 struct rc_instruction * inst_add)
663 {
664 struct rc_src_register * src0 = NULL;
665 struct rc_src_register * src1 = NULL;
666 unsigned int i;
667 struct peephole_state s;
668
669 if (!is_presub_candidate(inst_add))
670 return 0;
671
672 if (inst_add->U.I.SrcReg[0].Swizzle != inst_add->U.I.SrcReg[1].Swizzle)
673 return 0;
674
675 /* src0 and src1 can't have absolute values only one can be negative and they must be all negative or all positive. */
676 for (i = 0; i < 2; i++) {
677 if (inst_add->U.I.SrcReg[i].Abs)
678 return 0;
679 if ((inst_add->U.I.SrcReg[i].Negate
680 & inst_add->U.I.DstReg.WriteMask) ==
681 inst_add->U.I.DstReg.WriteMask) {
682 src0 = &inst_add->U.I.SrcReg[i];
683 } else if (!src1) {
684 src1 = &inst_add->U.I.SrcReg[i];
685 } else {
686 src0 = &inst_add->U.I.SrcReg[i];
687 }
688 }
689
690 if (!src1)
691 return 0;
692
693 s.Inst = inst_add;
694 s.WriteMask = inst_add->U.I.DstReg.WriteMask;
695 if (presub_helper(c, &s, RC_PRESUB_ADD, presub_replace_add)) {
696 rc_remove_instruction(inst_add);
697 return 1;
698 }
699 return 0;
700 }
701
702 static void presub_replace_inv(struct peephole_state * s,
703 struct rc_instruction * inst,
704 unsigned int src_index)
705 {
706 /* We must be careful not to modify s->Inst, since it
707 * is possible it will remain part of the program.
708 * XXX Maybe pass a struct instead of a pointer for s->Inst.*/
709 inst->U.I.PreSub.SrcReg[0] = s->Inst->U.I.SrcReg[1];
710 inst->U.I.PreSub.SrcReg[0].Negate = 0;
711 inst->U.I.PreSub.Opcode = RC_PRESUB_INV;
712 inst->U.I.SrcReg[src_index] = chain_srcregs(inst->U.I.SrcReg[src_index],
713 inst->U.I.PreSub.SrcReg[0]);
714
715 inst->U.I.SrcReg[src_index].File = RC_FILE_PRESUB;
716 inst->U.I.SrcReg[src_index].Index = RC_PRESUB_INV;
717 }
718
719 /**
720 * PRESUB_INV: ADD TEMP[0], none.1, -TEMP[1]
721 * Use the presubtract 1 - src0 for all readers of TEMP[0]. The first source
722 * of the add instruction must have the constatnt 1 swizzle. This function
723 * does not check const registers to see if their value is 1.0, so it should
724 * be called after the constant_folding optimization.
725 * @return
726 * 0 if the ADD instruction is still part of the program.
727 * 1 if the ADD instruction is no longer part of the program.
728 */
729 static int peephole_add_presub_inv(
730 struct radeon_compiler * c,
731 struct rc_instruction * inst_add)
732 {
733 unsigned int i, swz, mask;
734 struct peephole_state s;
735
736 if (!is_presub_candidate(inst_add))
737 return 0;
738
739 mask = inst_add->U.I.DstReg.WriteMask;
740
741 /* Check if src0 is 1. */
742 /* XXX It would be nice to use is_src_uniform_constant here, but that
743 * function only works if the register's file is RC_FILE_NONE */
744 for(i = 0; i < 4; i++ ) {
745 swz = GET_SWZ(inst_add->U.I.SrcReg[0].Swizzle, i);
746 if(((1 << i) & inst_add->U.I.DstReg.WriteMask)
747 && swz != RC_SWIZZLE_ONE) {
748 return 0;
749 }
750 }
751
752 /* Check src1. */
753 if ((inst_add->U.I.SrcReg[1].Negate & inst_add->U.I.DstReg.WriteMask) !=
754 inst_add->U.I.DstReg.WriteMask
755 || inst_add->U.I.SrcReg[1].Abs
756 || (inst_add->U.I.SrcReg[1].File != RC_FILE_TEMPORARY
757 && inst_add->U.I.SrcReg[1].File != RC_FILE_CONSTANT)
758 || src_has_const_swz(inst_add->U.I.SrcReg[1])) {
759
760 return 0;
761 }
762
763 /* Setup the peephole_state information. */
764 s.Inst = inst_add;
765 s.WriteMask = inst_add->U.I.DstReg.WriteMask;
766
767 if (presub_helper(c, &s, RC_PRESUB_INV, presub_replace_inv)) {
768 rc_remove_instruction(inst_add);
769 return 1;
770 }
771 return 0;
772 }
773
774 /**
775 * @return
776 * 0 if inst is still part of the program.
777 * 1 if inst is no longer part of the program.
778 */
779 static int peephole(struct radeon_compiler * c, struct rc_instruction * inst)
780 {
781 switch(inst->U.I.Opcode){
782 case RC_OPCODE_ADD:
783 if (c->has_presub) {
784 if(peephole_add_presub_inv(c, inst))
785 return 1;
786 if(peephole_add_presub_add(c, inst))
787 return 1;
788 }
789 break;
790 default:
791 break;
792 }
793 return 0;
794 }
795
796 void rc_optimize(struct radeon_compiler * c, void *user)
797 {
798 struct rc_instruction * inst = c->Program.Instructions.Next;
799 while(inst != &c->Program.Instructions) {
800 struct rc_instruction * cur = inst;
801 inst = inst->Next;
802
803 constant_folding(c, cur);
804
805 if(peephole(c, cur))
806 continue;
807
808 if (cur->U.I.Opcode == RC_OPCODE_MOV) {
809 copy_propagate(c, cur);
810 /* cur may no longer be part of the program */
811 }
812 }
813 }