vc4: Drop pointless raddr conflict handling on SF.
[mesa.git] / src / gallium / drivers / vc4 / vc4_opt_algebraic.c
1 /*
2 * Copyright © 2014 Broadcom
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 /**
25 * @file vc4_opt_algebraic.c
26 *
27 * This is the optimization pass for miscellaneous changes to instructions
28 * where we can simplify the operation by some knowledge about the specific
29 * operations.
30 *
31 * Mostly this will be a matter of turning things into MOVs so that they can
32 * later be copy-propagated out.
33 */
34
35 #include "vc4_qir.h"
36
37 bool
38 qir_opt_algebraic(struct vc4_compile *c)
39 {
40 bool progress = false;
41 struct simple_node *node;
42 bool debug = false;
43
44 foreach(node, &c->instructions) {
45 struct qinst *inst = (struct qinst *)node;
46
47 switch (inst->op) {
48 case QOP_SEL_X_Y_ZS:
49 case QOP_SEL_X_Y_ZC:
50 case QOP_SEL_X_Y_NS:
51 case QOP_SEL_X_Y_NC:
52 /* Turn "dst = (sf == x) ? a : a)" into "dst = a" */
53 if (qir_reg_equals(inst->src[0], inst->src[1])) {
54 if (debug) {
55 fprintf(stderr, "optimizing: ");
56 qir_dump_inst(inst);
57 fprintf(stderr, "\n");
58 }
59
60 inst->op = QOP_MOV;
61 inst->src[0] = inst->src[1];
62 inst->src[1] = c->undef;
63 progress = true;
64
65 if (debug) {
66 fprintf(stderr, "to: ");
67 qir_dump_inst(inst);
68 fprintf(stderr, "\n");
69 }
70 }
71 break;
72
73 default:
74 break;
75 }
76 }
77
78 return progress;
79 }