i965/nir/vec4: Implement load_const intrinsic
[mesa.git] / src / mesa / drivers / dri / i965 / brw_vec4_dead_code_eliminate.cpp
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
24 #include "brw_vec4.h"
25 #include "brw_vec4_live_variables.h"
26 #include "brw_cfg.h"
27
28 /** @file brw_vec4_dead_code_eliminate.cpp
29 *
30 * Dataflow-aware dead code elimination.
31 *
32 * Walks the instruction list from the bottom, removing instructions that
33 * have results that both aren't used in later blocks and haven't been read
34 * yet in the tail end of this block.
35 */
36
37 using namespace brw;
38
39 static bool
40 can_do_writemask(const struct brw_device_info *devinfo,
41 const vec4_instruction *inst)
42 {
43 switch (inst->opcode) {
44 case SHADER_OPCODE_GEN4_SCRATCH_READ:
45 case VS_OPCODE_PULL_CONSTANT_LOAD:
46 case VS_OPCODE_PULL_CONSTANT_LOAD_GEN7:
47 case VS_OPCODE_SET_SIMD4X2_HEADER_GEN9:
48 return false;
49 default:
50 /* The MATH instruction on Gen6 only executes in align1 mode, which does
51 * not support writemasking.
52 */
53 if (devinfo->gen == 6 && inst->is_math())
54 return false;
55
56 if (inst->is_tex())
57 return false;
58
59 return true;
60 }
61 }
62
63 bool
64 vec4_visitor::dead_code_eliminate()
65 {
66 bool progress = false;
67
68 calculate_live_intervals();
69
70 int num_vars = live_intervals->num_vars;
71 BITSET_WORD *live = ralloc_array(NULL, BITSET_WORD, BITSET_WORDS(num_vars));
72 BITSET_WORD *flag_live = ralloc_array(NULL, BITSET_WORD, 1);
73
74 foreach_block(block, cfg) {
75 memcpy(live, live_intervals->block_data[block->num].liveout,
76 sizeof(BITSET_WORD) * BITSET_WORDS(num_vars));
77 memcpy(flag_live, live_intervals->block_data[block->num].flag_liveout,
78 sizeof(BITSET_WORD));
79
80 foreach_inst_in_block_reverse(vec4_instruction, inst, block) {
81 if (inst->dst.file == GRF && !inst->has_side_effects()) {
82 bool result_live[4] = { false };
83
84 for (unsigned i = 0; i < inst->regs_written; i++) {
85 for (int c = 0; c < 4; c++)
86 result_live[c] |= BITSET_TEST(
87 live, var_from_reg(alloc, offset(inst->dst, i), c));
88 }
89
90 /* If the instruction can't do writemasking, then it's all or
91 * nothing.
92 */
93 if (!can_do_writemask(devinfo, inst)) {
94 bool result = result_live[0] | result_live[1] |
95 result_live[2] | result_live[3];
96 result_live[0] = result;
97 result_live[1] = result;
98 result_live[2] = result;
99 result_live[3] = result;
100 }
101
102 for (int c = 0; c < 4; c++) {
103 if (!result_live[c] && inst->dst.writemask & (1 << c)) {
104 inst->dst.writemask &= ~(1 << c);
105 progress = true;
106
107 if (inst->dst.writemask == 0) {
108 if (inst->writes_accumulator || inst->writes_flag()) {
109 inst->dst = dst_reg(retype(brw_null_reg(), inst->dst.type));
110 } else {
111 inst->opcode = BRW_OPCODE_NOP;
112 continue;
113 }
114 }
115 }
116 }
117 }
118
119 if (inst->dst.is_null() && inst->writes_flag()) {
120 if (!BITSET_TEST(flag_live, 0)) {
121 inst->opcode = BRW_OPCODE_NOP;
122 progress = true;
123 continue;
124 }
125 }
126
127 if (inst->dst.file == GRF && !inst->predicate) {
128 for (unsigned i = 0; i < inst->regs_written; i++) {
129 for (int c = 0; c < 4; c++) {
130 if (inst->dst.writemask & (1 << c)) {
131 BITSET_CLEAR(live, var_from_reg(alloc,
132 offset(inst->dst, i), c));
133 }
134 }
135 }
136 }
137
138 if (inst->writes_flag()) {
139 BITSET_CLEAR(flag_live, 0);
140 }
141
142 for (int i = 0; i < 3; i++) {
143 if (inst->src[i].file == GRF) {
144 for (unsigned j = 0; j < inst->regs_read(i); j++) {
145 for (int c = 0; c < 4; c++) {
146 BITSET_SET(live, var_from_reg(alloc,
147 offset(inst->src[i], j), c));
148 }
149 }
150 }
151 }
152
153 if (inst->reads_flag()) {
154 BITSET_SET(flag_live, 0);
155 }
156 }
157 }
158
159 ralloc_free(live);
160 ralloc_free(flag_live);
161
162 if (progress) {
163 foreach_block_and_inst_safe(block, backend_instruction, inst, cfg) {
164 if (inst->opcode == BRW_OPCODE_NOP) {
165 inst->remove(block);
166 }
167 }
168
169 invalidate_live_intervals();
170 }
171
172 return progress;
173 }