e8da834b2fad57cd6130b45b8540f90460a58789
[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
29 /* This pass promotes reads from uniforms from load/store ops to uniform
30 * registers if it is beneficial to do so. Normally, this saves both
31 * instructions and total register pressure, but it does take a toll on the
32 * number of work registers that are available, so this is a balance.
33 *
34 * To cope, we take as an argument the maximum work register pressure in the
35 * program so we allow that many registers through at minimum, to prevent
36 * spilling. If we spill anyway, I mean, it's a lose-lose at that point. */
37
38 void
39 midgard_promote_uniforms(compiler_context *ctx, unsigned promoted_count)
40 {
41 mir_foreach_instr_global_safe(ctx, ins) {
42 if (ins->type != TAG_LOAD_STORE_4) continue;
43 if (!OP_IS_UBO_READ(ins->load_store.op)) continue;
44
45 unsigned lo = ins->load_store.varying_parameters >> 7;
46 unsigned hi = ins->load_store.address;
47
48 /* TODO: Combine fields logically */
49 unsigned address = (hi << 3) | lo;
50
51 /* Check this is UBO 0 */
52 if (ins->load_store.arg_1) continue;
53
54 /* Check we're accessing directly */
55 if (ins->load_store.arg_2 != 0x1E) continue;
56
57 /* Check if it's a promotable range */
58 unsigned uniform_reg = 23 - address;
59
60 if (address >= promoted_count) continue;
61
62 /* It is, great! Let's promote */
63
64 ctx->uniform_cutoff = MAX2(ctx->uniform_cutoff, address + 1);
65 unsigned promoted = SSA_FIXED_REGISTER(uniform_reg);
66
67 /* We do need the move for safety for a non-SSA dest, or if
68 * we're being fed into a special class */
69
70 bool needs_move = ins->ssa_args.dest & IS_REG;
71 needs_move |= mir_special_index(ctx, ins->ssa_args.dest);
72
73 if (needs_move) {
74 midgard_instruction mov = v_mov(promoted, blank_alu_src, ins->ssa_args.dest);
75 mir_insert_instruction_before(ins, mov);
76 } else {
77 mir_rewrite_index_src(ctx, ins->ssa_args.dest, promoted);
78 }
79
80 mir_remove_instruction(ins);
81 }
82 }