pan/midgard: Pipe uniform mask through when spilling
[mesa.git] / src / panfrost / midgard / mir_promote_uniforms.c
1 /*
2 * Copyright (C) 2019 Collabora, Ltd.
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 FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors (Collabora):
24 * Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
25 */
26
27 #include "compiler.h"
28 #include "util/u_math.h"
29
30 /* This pass promotes reads from uniforms from load/store ops to uniform
31 * registers if it is beneficial to do so. Normally, this saves both
32 * instructions and total register pressure, but it does take a toll on the
33 * number of work registers that are available, so this is a balance.
34 *
35 * To cope, we take as an argument the maximum work register pressure in the
36 * program so we allow that many registers through at minimum, to prevent
37 * spilling. If we spill anyway, I mean, it's a lose-lose at that point. */
38
39 void
40 midgard_promote_uniforms(compiler_context *ctx, unsigned promoted_count)
41 {
42 mir_foreach_instr_global_safe(ctx, ins) {
43 if (ins->type != TAG_LOAD_STORE_4) continue;
44 if (!OP_IS_UBO_READ(ins->load_store.op)) continue;
45
46 unsigned lo = ins->load_store.varying_parameters >> 7;
47 unsigned hi = ins->load_store.address;
48
49 /* TODO: Combine fields logically */
50 unsigned address = (hi << 3) | lo;
51
52 /* Check this is UBO 0 */
53 if (ins->load_store.arg_1) continue;
54
55 /* Check we're accessing directly */
56 if (ins->load_store.arg_2 != 0x1E) continue;
57
58 /* Check if it's a promotable range */
59 unsigned uniform_reg = 23 - address;
60
61 if (address >= promoted_count) continue;
62
63 /* It is, great! Let's promote */
64
65 ctx->uniform_cutoff = MAX2(ctx->uniform_cutoff, address + 1);
66 unsigned promoted = SSA_FIXED_REGISTER(uniform_reg);
67
68 /* We do need the move for safety for a non-SSA dest, or if
69 * we're being fed into a special class */
70
71 bool needs_move = ins->ssa_args.dest & IS_REG;
72 needs_move |= mir_special_index(ctx, ins->ssa_args.dest);
73
74 /* Ensure this is a contiguous X-bound mask. It should be since
75 * we haven't done RA and per-component masked UBO reads don't
76 * make much sense. */
77
78 assert(((ins->mask + 1) & ins->mask) == 0);
79
80 /* Check the component count from the mask so we can setup a
81 * swizzle appropriately when promoting. The idea is to ensure
82 * the component count is preserved so RA can be smarter if we
83 * need to spill */
84
85 unsigned nr_components = util_bitcount(ins->mask);
86
87 if (needs_move) {
88 midgard_instruction mov = v_mov(promoted, blank_alu_src, ins->ssa_args.dest);
89 mov.mask = ins->mask;
90 mir_insert_instruction_before(ins, mov);
91 } else {
92 mir_rewrite_index_src_swizzle(ctx, ins->ssa_args.dest,
93 promoted, swizzle_of(nr_components));
94 }
95
96 mir_remove_instruction(ins);
97 }
98 }