Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1 | /* |
Alyssa Rosenzweig | 1155446 | 2019-05-19 23:20:34 +0000 | [diff] [blame] | 2 | * Copyright (C) 2018-2019 Alyssa Rosenzweig <alyssa@rosenzweig.io> |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 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 | |
| 24 | #include <sys/types.h> |
| 25 | #include <sys/stat.h> |
| 26 | #include <sys/mman.h> |
| 27 | #include <fcntl.h> |
| 28 | #include <stdint.h> |
| 29 | #include <stdlib.h> |
| 30 | #include <stdio.h> |
| 31 | #include <err.h> |
| 32 | |
Tomeu Vizoso | f0b1bbe | 2019-03-08 15:04:50 +0100 | [diff] [blame] | 33 | #include "main/mtypes.h" |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 34 | #include "compiler/glsl/glsl_to_nir.h" |
| 35 | #include "compiler/nir_types.h" |
| 36 | #include "main/imports.h" |
| 37 | #include "compiler/nir/nir_builder.h" |
| 38 | #include "util/half_float.h" |
Alyssa Rosenzweig | 213b628 | 2019-06-18 09:02:20 -0700 | [diff] [blame] | 39 | #include "util/u_math.h" |
Tomeu Vizoso | f0b1bbe | 2019-03-08 15:04:50 +0100 | [diff] [blame] | 40 | #include "util/u_debug.h" |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 41 | #include "util/u_dynarray.h" |
| 42 | #include "util/list.h" |
| 43 | #include "main/mtypes.h" |
| 44 | |
| 45 | #include "midgard.h" |
| 46 | #include "midgard_nir.h" |
| 47 | #include "midgard_compile.h" |
Alyssa Rosenzweig | 1155446 | 2019-05-19 23:20:34 +0000 | [diff] [blame] | 48 | #include "midgard_ops.h" |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 49 | #include "helpers.h" |
Alyssa Rosenzweig | 1155446 | 2019-05-19 23:20:34 +0000 | [diff] [blame] | 50 | #include "compiler.h" |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 51 | |
| 52 | #include "disassemble.h" |
| 53 | |
Tomeu Vizoso | f0b1bbe | 2019-03-08 15:04:50 +0100 | [diff] [blame] | 54 | static const struct debug_named_value debug_options[] = { |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 55 | {"msgs", MIDGARD_DBG_MSGS, "Print debug messages"}, |
| 56 | {"shaders", MIDGARD_DBG_SHADERS, "Dump shaders in NIR and MIR"}, |
Alyssa Rosenzweig | 138e40d | 2019-07-08 16:42:29 -0700 | [diff] [blame] | 57 | {"shaderdb", MIDGARD_DBG_SHADERDB, "Prints shader-db statistics"}, |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 58 | DEBUG_NAMED_VALUE_END |
Tomeu Vizoso | f0b1bbe | 2019-03-08 15:04:50 +0100 | [diff] [blame] | 59 | }; |
| 60 | |
| 61 | DEBUG_GET_ONCE_FLAGS_OPTION(midgard_debug, "MIDGARD_MESA_DEBUG", debug_options, 0) |
| 62 | |
Alyssa Rosenzweig | 138e40d | 2019-07-08 16:42:29 -0700 | [diff] [blame] | 63 | unsigned SHADER_DB_COUNT = 0; |
| 64 | |
Tomeu Vizoso | f0b1bbe | 2019-03-08 15:04:50 +0100 | [diff] [blame] | 65 | int midgard_debug = 0; |
| 66 | |
| 67 | #define DBG(fmt, ...) \ |
| 68 | do { if (midgard_debug & MIDGARD_DBG_MSGS) \ |
| 69 | fprintf(stderr, "%s:%d: "fmt, \ |
| 70 | __FUNCTION__, __LINE__, ##__VA_ARGS__); } while (0) |
| 71 | |
Alyssa Rosenzweig | 1f345bc | 2019-04-24 01:15:15 +0000 | [diff] [blame] | 72 | static bool |
| 73 | midgard_is_branch_unit(unsigned unit) |
| 74 | { |
| 75 | return (unit == ALU_ENAB_BRANCH) || (unit == ALU_ENAB_BR_COMPACT); |
| 76 | } |
| 77 | |
Alyssa Rosenzweig | c0fb260 | 2019-04-21 03:29:47 +0000 | [diff] [blame] | 78 | static void |
| 79 | midgard_block_add_successor(midgard_block *block, midgard_block *successor) |
| 80 | { |
Alyssa Rosenzweig | 9aeb726 | 2019-08-02 13:48:27 -0700 | [diff] [blame] | 81 | assert(block); |
| 82 | assert(successor); |
| 83 | |
| 84 | /* Deduplicate */ |
| 85 | for (unsigned i = 0; i < block->nr_successors; ++i) { |
| 86 | if (block->successors[i] == successor) |
| 87 | return; |
| 88 | } |
| 89 | |
Alyssa Rosenzweig | c0fb260 | 2019-04-21 03:29:47 +0000 | [diff] [blame] | 90 | block->successors[block->nr_successors++] = successor; |
| 91 | assert(block->nr_successors <= ARRAY_SIZE(block->successors)); |
| 92 | } |
| 93 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 94 | /* Helpers to generate midgard_instruction's using macro magic, since every |
| 95 | * driver seems to do it that way */ |
| 96 | |
| 97 | #define EMIT(op, ...) emit_mir_instruction(ctx, v_##op(__VA_ARGS__)); |
Alyssa Rosenzweig | 56f9b47 | 2019-06-14 16:03:01 -0700 | [diff] [blame] | 98 | |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 99 | #define M_LOAD_STORE(name, store) \ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 100 | static midgard_instruction m_##name(unsigned ssa, unsigned address) { \ |
| 101 | midgard_instruction i = { \ |
| 102 | .type = TAG_LOAD_STORE_4, \ |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 103 | .mask = 0xF, \ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 104 | .ssa_args = { \ |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 105 | .dest = -1, \ |
| 106 | .src = { -1, -1, -1 }, \ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 107 | }, \ |
| 108 | .load_store = { \ |
| 109 | .op = midgard_op_##name, \ |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 110 | .swizzle = SWIZZLE_XYZW, \ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 111 | .address = address \ |
| 112 | } \ |
| 113 | }; \ |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 114 | \ |
| 115 | if (store) \ |
| 116 | i.ssa_args.src[0] = ssa; \ |
| 117 | else \ |
| 118 | i.ssa_args.dest = ssa; \ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 119 | \ |
| 120 | return i; \ |
| 121 | } |
| 122 | |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 123 | #define M_LOAD(name) M_LOAD_STORE(name, false) |
| 124 | #define M_STORE(name) M_LOAD_STORE(name, true) |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 125 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 126 | /* Inputs a NIR ALU source, with modifiers attached if necessary, and outputs |
| 127 | * the corresponding Midgard source */ |
| 128 | |
| 129 | static midgard_vector_alu_src |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 130 | vector_alu_modifiers(nir_alu_src *src, bool is_int, unsigned broadcast_count, |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 131 | bool half, bool sext) |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 132 | { |
| 133 | if (!src) return blank_alu_src; |
| 134 | |
Alyssa Rosenzweig | 195e297 | 2019-06-19 07:23:27 -0700 | [diff] [blame] | 135 | /* Figure out how many components there are so we can adjust the |
| 136 | * swizzle. Specifically we want to broadcast the last channel so |
| 137 | * things like ball2/3 work |
| 138 | */ |
| 139 | |
| 140 | if (broadcast_count) { |
| 141 | uint8_t last_component = src->swizzle[broadcast_count - 1]; |
| 142 | |
| 143 | for (unsigned c = broadcast_count; c < NIR_MAX_VEC_COMPONENTS; ++c) { |
| 144 | src->swizzle[c] = last_component; |
| 145 | } |
| 146 | } |
| 147 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 148 | midgard_vector_alu_src alu_src = { |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 149 | .rep_low = 0, |
| 150 | .rep_high = 0, |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 151 | .half = half, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 152 | .swizzle = SWIZZLE_FROM_ARRAY(src->swizzle) |
| 153 | }; |
| 154 | |
Alyssa Rosenzweig | fcdfb67 | 2019-04-22 03:25:42 +0000 | [diff] [blame] | 155 | if (is_int) { |
Alyssa Rosenzweig | fcdfb67 | 2019-04-22 03:25:42 +0000 | [diff] [blame] | 156 | alu_src.mod = midgard_int_normal; |
| 157 | |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 158 | /* Sign/zero-extend if needed */ |
| 159 | |
| 160 | if (half) { |
| 161 | alu_src.mod = sext ? |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 162 | midgard_int_sign_extend |
| 163 | : midgard_int_zero_extend; |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 164 | } |
| 165 | |
Alyssa Rosenzweig | fcdfb67 | 2019-04-22 03:25:42 +0000 | [diff] [blame] | 166 | /* These should have been lowered away */ |
| 167 | assert(!(src->abs || src->negate)); |
| 168 | } else { |
| 169 | alu_src.mod = (src->abs << 0) | (src->negate << 1); |
| 170 | } |
| 171 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 172 | return alu_src; |
| 173 | } |
| 174 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 175 | /* load/store instructions have both 32-bit and 16-bit variants, depending on |
| 176 | * whether we are using vectors composed of highp or mediump. At the moment, we |
| 177 | * don't support half-floats -- this requires changes in other parts of the |
| 178 | * compiler -- therefore the 16-bit versions are commented out. */ |
| 179 | |
Alyssa Rosenzweig | 74ab80b | 2019-05-14 04:11:36 +0000 | [diff] [blame] | 180 | //M_LOAD(ld_attr_16); |
| 181 | M_LOAD(ld_attr_32); |
| 182 | //M_LOAD(ld_vary_16); |
| 183 | M_LOAD(ld_vary_32); |
| 184 | //M_LOAD(ld_uniform_16); |
| 185 | M_LOAD(ld_uniform_32); |
| 186 | M_LOAD(ld_color_buffer_8); |
| 187 | //M_STORE(st_vary_16); |
| 188 | M_STORE(st_vary_32); |
Alyssa Rosenzweig | be56840 | 2019-07-25 07:09:40 -0700 | [diff] [blame] | 189 | M_LOAD(st_cubemap_coords); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 190 | |
| 191 | static midgard_instruction |
| 192 | v_alu_br_compact_cond(midgard_jmp_writeout_op op, unsigned tag, signed offset, unsigned cond) |
| 193 | { |
| 194 | midgard_branch_cond branch = { |
| 195 | .op = op, |
| 196 | .dest_tag = tag, |
| 197 | .offset = offset, |
| 198 | .cond = cond |
| 199 | }; |
| 200 | |
| 201 | uint16_t compact; |
| 202 | memcpy(&compact, &branch, sizeof(branch)); |
| 203 | |
| 204 | midgard_instruction ins = { |
| 205 | .type = TAG_ALU_4, |
| 206 | .unit = ALU_ENAB_BR_COMPACT, |
| 207 | .prepacked_branch = true, |
| 208 | .compact_branch = true, |
Alyssa Rosenzweig | 29416a8 | 2019-07-30 12:20:24 -0700 | [diff] [blame] | 209 | .br_compact = compact, |
| 210 | .ssa_args = { |
| 211 | .dest = -1, |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 212 | .src = { -1, -1, -1 }, |
Alyssa Rosenzweig | 29416a8 | 2019-07-30 12:20:24 -0700 | [diff] [blame] | 213 | } |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 214 | }; |
| 215 | |
| 216 | if (op == midgard_jmp_writeout_op_writeout) |
| 217 | ins.writeout = true; |
| 218 | |
| 219 | return ins; |
| 220 | } |
| 221 | |
| 222 | static midgard_instruction |
| 223 | v_branch(bool conditional, bool invert) |
| 224 | { |
| 225 | midgard_instruction ins = { |
| 226 | .type = TAG_ALU_4, |
Alyssa Rosenzweig | 5abb7b5 | 2019-02-17 22:09:09 +0000 | [diff] [blame] | 227 | .unit = ALU_ENAB_BRANCH, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 228 | .compact_branch = true, |
| 229 | .branch = { |
| 230 | .conditional = conditional, |
| 231 | .invert_conditional = invert |
Alyssa Rosenzweig | 29416a8 | 2019-07-30 12:20:24 -0700 | [diff] [blame] | 232 | }, |
| 233 | .ssa_args = { |
| 234 | .dest = -1, |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 235 | .src = { -1, -1, -1 }, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 236 | } |
| 237 | }; |
| 238 | |
| 239 | return ins; |
| 240 | } |
| 241 | |
Alyssa Rosenzweig | 5abb7b5 | 2019-02-17 22:09:09 +0000 | [diff] [blame] | 242 | static midgard_branch_extended |
| 243 | midgard_create_branch_extended( midgard_condition cond, |
| 244 | midgard_jmp_writeout_op op, |
| 245 | unsigned dest_tag, |
| 246 | signed quadword_offset) |
| 247 | { |
Alyssa Rosenzweig | 13ee87c | 2019-07-29 09:15:32 -0700 | [diff] [blame] | 248 | /* The condition code is actually a LUT describing a function to |
| 249 | * combine multiple condition codes. However, we only support a single |
| 250 | * condition code at the moment, so we just duplicate over a bunch of |
| 251 | * times. */ |
| 252 | |
Alyssa Rosenzweig | 5abb7b5 | 2019-02-17 22:09:09 +0000 | [diff] [blame] | 253 | uint16_t duplicated_cond = |
| 254 | (cond << 14) | |
| 255 | (cond << 12) | |
| 256 | (cond << 10) | |
| 257 | (cond << 8) | |
| 258 | (cond << 6) | |
| 259 | (cond << 4) | |
| 260 | (cond << 2) | |
| 261 | (cond << 0); |
| 262 | |
| 263 | midgard_branch_extended branch = { |
Alyssa Rosenzweig | 779e140 | 2019-02-17 23:24:39 +0000 | [diff] [blame] | 264 | .op = op, |
Alyssa Rosenzweig | 5abb7b5 | 2019-02-17 22:09:09 +0000 | [diff] [blame] | 265 | .dest_tag = dest_tag, |
| 266 | .offset = quadword_offset, |
| 267 | .cond = duplicated_cond |
| 268 | }; |
| 269 | |
| 270 | return branch; |
| 271 | } |
| 272 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 273 | static void |
| 274 | attach_constants(compiler_context *ctx, midgard_instruction *ins, void *constants, int name) |
| 275 | { |
| 276 | ins->has_constants = true; |
| 277 | memcpy(&ins->constants, constants, 16); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | static int |
Timothy Arceri | 035759b | 2019-03-29 12:39:48 +1100 | [diff] [blame] | 281 | glsl_type_size(const struct glsl_type *type, bool bindless) |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 282 | { |
| 283 | return glsl_count_attribute_slots(type, false); |
| 284 | } |
| 285 | |
| 286 | /* Lower fdot2 to a vector multiplication followed by channel addition */ |
| 287 | static void |
| 288 | midgard_nir_lower_fdot2_body(nir_builder *b, nir_alu_instr *alu) |
| 289 | { |
| 290 | if (alu->op != nir_op_fdot2) |
| 291 | return; |
| 292 | |
| 293 | b->cursor = nir_before_instr(&alu->instr); |
| 294 | |
| 295 | nir_ssa_def *src0 = nir_ssa_for_alu_src(b, alu, 0); |
| 296 | nir_ssa_def *src1 = nir_ssa_for_alu_src(b, alu, 1); |
| 297 | |
| 298 | nir_ssa_def *product = nir_fmul(b, src0, src1); |
| 299 | |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 300 | nir_ssa_def *sum = nir_fadd(b, |
| 301 | nir_channel(b, product, 0), |
| 302 | nir_channel(b, product, 1)); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 303 | |
| 304 | /* Replace the fdot2 with this sum */ |
| 305 | nir_ssa_def_rewrite_uses(&alu->dest.dest.ssa, nir_src_for_ssa(sum)); |
| 306 | } |
| 307 | |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 308 | static int |
Alyssa Rosenzweig | 2efa025 | 2019-08-01 11:03:15 -0700 | [diff] [blame^] | 309 | midgard_sysval_for_ssbo(nir_intrinsic_instr *instr) |
| 310 | { |
| 311 | nir_src index = instr->src[0]; |
| 312 | assert(nir_src_is_const(index)); |
| 313 | uint32_t uindex = nir_src_as_uint(index); |
| 314 | |
| 315 | return PAN_SYSVAL(SSBO, uindex); |
| 316 | } |
| 317 | |
| 318 | static int |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 319 | midgard_nir_sysval_for_intrinsic(nir_intrinsic_instr *instr) |
| 320 | { |
| 321 | switch (instr->intrinsic) { |
| 322 | case nir_intrinsic_load_viewport_scale: |
| 323 | return PAN_SYSVAL_VIEWPORT_SCALE; |
| 324 | case nir_intrinsic_load_viewport_offset: |
| 325 | return PAN_SYSVAL_VIEWPORT_OFFSET; |
Alyssa Rosenzweig | 2efa025 | 2019-08-01 11:03:15 -0700 | [diff] [blame^] | 326 | case nir_intrinsic_load_ssbo: |
| 327 | return midgard_sysval_for_ssbo(instr); |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 328 | default: |
| 329 | return -1; |
| 330 | } |
| 331 | } |
| 332 | |
Boris Brezillon | bd49c8f | 2019-06-14 09:59:20 +0200 | [diff] [blame] | 333 | static int sysval_for_instr(compiler_context *ctx, nir_instr *instr, |
| 334 | unsigned *dest) |
| 335 | { |
| 336 | nir_intrinsic_instr *intr; |
| 337 | nir_dest *dst = NULL; |
Boris Brezillon | c355886 | 2019-06-17 22:13:04 +0200 | [diff] [blame] | 338 | nir_tex_instr *tex; |
Boris Brezillon | bd49c8f | 2019-06-14 09:59:20 +0200 | [diff] [blame] | 339 | int sysval = -1; |
| 340 | |
| 341 | switch (instr->type) { |
| 342 | case nir_instr_type_intrinsic: |
| 343 | intr = nir_instr_as_intrinsic(instr); |
| 344 | sysval = midgard_nir_sysval_for_intrinsic(intr); |
| 345 | dst = &intr->dest; |
| 346 | break; |
Boris Brezillon | c355886 | 2019-06-17 22:13:04 +0200 | [diff] [blame] | 347 | case nir_instr_type_tex: |
| 348 | tex = nir_instr_as_tex(instr); |
| 349 | if (tex->op != nir_texop_txs) |
| 350 | break; |
| 351 | |
| 352 | sysval = PAN_SYSVAL(TEXTURE_SIZE, |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 353 | PAN_TXS_SYSVAL_ID(tex->texture_index, |
| 354 | nir_tex_instr_dest_size(tex) - |
| 355 | (tex->is_array ? 1 : 0), |
| 356 | tex->is_array)); |
Boris Brezillon | c355886 | 2019-06-17 22:13:04 +0200 | [diff] [blame] | 357 | dst = &tex->dest; |
| 358 | break; |
Boris Brezillon | bd49c8f | 2019-06-14 09:59:20 +0200 | [diff] [blame] | 359 | default: |
| 360 | break; |
| 361 | } |
| 362 | |
| 363 | if (dest && dst) |
| 364 | *dest = nir_dest_index(ctx, dst); |
| 365 | |
| 366 | return sysval; |
| 367 | } |
| 368 | |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 369 | static void |
| 370 | midgard_nir_assign_sysval_body(compiler_context *ctx, nir_instr *instr) |
| 371 | { |
Boris Brezillon | bd49c8f | 2019-06-14 09:59:20 +0200 | [diff] [blame] | 372 | int sysval; |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 373 | |
Boris Brezillon | bd49c8f | 2019-06-14 09:59:20 +0200 | [diff] [blame] | 374 | sysval = sysval_for_instr(ctx, instr, NULL); |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 375 | if (sysval < 0) |
| 376 | return; |
| 377 | |
| 378 | /* We have a sysval load; check if it's already been assigned */ |
| 379 | |
| 380 | if (_mesa_hash_table_u64_search(ctx->sysval_to_id, sysval)) |
| 381 | return; |
| 382 | |
| 383 | /* It hasn't -- so assign it now! */ |
| 384 | |
| 385 | unsigned id = ctx->sysval_count++; |
| 386 | _mesa_hash_table_u64_insert(ctx->sysval_to_id, sysval, (void *) ((uintptr_t) id + 1)); |
| 387 | ctx->sysvals[id] = sysval; |
| 388 | } |
| 389 | |
| 390 | static void |
| 391 | midgard_nir_assign_sysvals(compiler_context *ctx, nir_shader *shader) |
| 392 | { |
| 393 | ctx->sysval_count = 0; |
| 394 | |
| 395 | nir_foreach_function(function, shader) { |
| 396 | if (!function->impl) continue; |
| 397 | |
| 398 | nir_foreach_block(block, function->impl) { |
| 399 | nir_foreach_instr_safe(instr, block) { |
| 400 | midgard_nir_assign_sysval_body(ctx, instr); |
| 401 | } |
| 402 | } |
| 403 | } |
| 404 | } |
| 405 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 406 | static bool |
| 407 | midgard_nir_lower_fdot2(nir_shader *shader) |
| 408 | { |
| 409 | bool progress = false; |
| 410 | |
| 411 | nir_foreach_function(function, shader) { |
| 412 | if (!function->impl) continue; |
| 413 | |
| 414 | nir_builder _b; |
| 415 | nir_builder *b = &_b; |
| 416 | nir_builder_init(b, function->impl); |
| 417 | |
| 418 | nir_foreach_block(block, function->impl) { |
| 419 | nir_foreach_instr_safe(instr, block) { |
| 420 | if (instr->type != nir_instr_type_alu) continue; |
| 421 | |
| 422 | nir_alu_instr *alu = nir_instr_as_alu(instr); |
| 423 | midgard_nir_lower_fdot2_body(b, alu); |
| 424 | |
| 425 | progress |= true; |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | nir_metadata_preserve(function->impl, nir_metadata_block_index | nir_metadata_dominance); |
| 430 | |
| 431 | } |
| 432 | |
| 433 | return progress; |
| 434 | } |
| 435 | |
Alyssa Rosenzweig | a2f1a06 | 2019-07-08 12:40:34 -0700 | [diff] [blame] | 436 | /* Flushes undefined values to zero */ |
| 437 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 438 | static void |
| 439 | optimise_nir(nir_shader *nir) |
| 440 | { |
| 441 | bool progress; |
Ian Romanick | d41cdef | 2018-08-18 16:42:04 -0700 | [diff] [blame] | 442 | unsigned lower_flrp = |
| 443 | (nir->options->lower_flrp16 ? 16 : 0) | |
| 444 | (nir->options->lower_flrp32 ? 32 : 0) | |
| 445 | (nir->options->lower_flrp64 ? 64 : 0); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 446 | |
| 447 | NIR_PASS(progress, nir, nir_lower_regs_to_ssa); |
| 448 | NIR_PASS(progress, nir, midgard_nir_lower_fdot2); |
Alyssa Rosenzweig | c51312b | 2019-06-05 15:12:58 +0000 | [diff] [blame] | 449 | NIR_PASS(progress, nir, nir_lower_idiv); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 450 | |
Boris Brezillon | c355886 | 2019-06-17 22:13:04 +0200 | [diff] [blame] | 451 | nir_lower_tex_options lower_tex_1st_pass_options = { |
Alyssa Rosenzweig | 6ae4f9c | 2019-06-11 09:51:29 -0700 | [diff] [blame] | 452 | .lower_rect = true, |
| 453 | .lower_txp = ~0 |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 454 | }; |
| 455 | |
Boris Brezillon | c355886 | 2019-06-17 22:13:04 +0200 | [diff] [blame] | 456 | nir_lower_tex_options lower_tex_2nd_pass_options = { |
| 457 | .lower_txs_lod = true, |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 458 | }; |
Boris Brezillon | c355886 | 2019-06-17 22:13:04 +0200 | [diff] [blame] | 459 | |
| 460 | NIR_PASS(progress, nir, nir_lower_tex, &lower_tex_1st_pass_options); |
| 461 | NIR_PASS(progress, nir, nir_lower_tex, &lower_tex_2nd_pass_options); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 462 | |
| 463 | do { |
| 464 | progress = false; |
| 465 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 466 | NIR_PASS(progress, nir, nir_lower_var_copies); |
| 467 | NIR_PASS(progress, nir, nir_lower_vars_to_ssa); |
| 468 | |
| 469 | NIR_PASS(progress, nir, nir_copy_prop); |
| 470 | NIR_PASS(progress, nir, nir_opt_dce); |
| 471 | NIR_PASS(progress, nir, nir_opt_dead_cf); |
| 472 | NIR_PASS(progress, nir, nir_opt_cse); |
| 473 | NIR_PASS(progress, nir, nir_opt_peephole_select, 64, false, true); |
| 474 | NIR_PASS(progress, nir, nir_opt_algebraic); |
| 475 | NIR_PASS(progress, nir, nir_opt_constant_folding); |
Ian Romanick | d41cdef | 2018-08-18 16:42:04 -0700 | [diff] [blame] | 476 | |
| 477 | if (lower_flrp != 0) { |
Ian Romanick | 1f1007a | 2019-05-08 07:32:43 -0700 | [diff] [blame] | 478 | bool lower_flrp_progress = false; |
Ian Romanick | d41cdef | 2018-08-18 16:42:04 -0700 | [diff] [blame] | 479 | NIR_PASS(lower_flrp_progress, |
| 480 | nir, |
| 481 | nir_lower_flrp, |
| 482 | lower_flrp, |
| 483 | false /* always_precise */, |
| 484 | nir->options->lower_ffma); |
| 485 | if (lower_flrp_progress) { |
| 486 | NIR_PASS(progress, nir, |
| 487 | nir_opt_constant_folding); |
| 488 | progress = true; |
| 489 | } |
| 490 | |
| 491 | /* Nothing should rematerialize any flrps, so we only |
| 492 | * need to do this lowering once. |
| 493 | */ |
| 494 | lower_flrp = 0; |
| 495 | } |
| 496 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 497 | NIR_PASS(progress, nir, nir_opt_undef); |
Alyssa Rosenzweig | a2f1a06 | 2019-07-08 12:40:34 -0700 | [diff] [blame] | 498 | NIR_PASS(progress, nir, nir_undef_to_zero); |
| 499 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 500 | NIR_PASS(progress, nir, nir_opt_loop_unroll, |
| 501 | nir_var_shader_in | |
| 502 | nir_var_shader_out | |
| 503 | nir_var_function_temp); |
| 504 | |
Alyssa Rosenzweig | 9402970 | 2019-06-17 11:12:51 -0700 | [diff] [blame] | 505 | NIR_PASS(progress, nir, nir_opt_vectorize); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 506 | } while (progress); |
| 507 | |
| 508 | /* Must be run at the end to prevent creation of fsin/fcos ops */ |
| 509 | NIR_PASS(progress, nir, midgard_nir_scale_trig); |
| 510 | |
| 511 | do { |
| 512 | progress = false; |
| 513 | |
| 514 | NIR_PASS(progress, nir, nir_opt_dce); |
| 515 | NIR_PASS(progress, nir, nir_opt_algebraic); |
| 516 | NIR_PASS(progress, nir, nir_opt_constant_folding); |
| 517 | NIR_PASS(progress, nir, nir_copy_prop); |
| 518 | } while (progress); |
| 519 | |
| 520 | NIR_PASS(progress, nir, nir_opt_algebraic_late); |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 521 | |
| 522 | /* We implement booleans as 32-bit 0/~0 */ |
| 523 | NIR_PASS(progress, nir, nir_lower_bool_to_int32); |
| 524 | |
| 525 | /* Now that booleans are lowered, we can run out late opts */ |
Alyssa Rosenzweig | effe6fb0 | 2019-03-25 02:49:04 +0000 | [diff] [blame] | 526 | NIR_PASS(progress, nir, midgard_nir_lower_algebraic_late); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 527 | |
Alyssa Rosenzweig | effe6fb0 | 2019-03-25 02:49:04 +0000 | [diff] [blame] | 528 | /* Lower mods for float ops only. Integer ops don't support modifiers |
| 529 | * (saturate doesn't make sense on integers, neg/abs require dedicated |
| 530 | * instructions) */ |
| 531 | |
| 532 | NIR_PASS(progress, nir, nir_lower_to_source_mods, nir_lower_float_source_mods); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 533 | NIR_PASS(progress, nir, nir_copy_prop); |
| 534 | NIR_PASS(progress, nir, nir_opt_dce); |
| 535 | |
| 536 | /* Take us out of SSA */ |
| 537 | NIR_PASS(progress, nir, nir_lower_locals_to_regs); |
| 538 | NIR_PASS(progress, nir, nir_convert_from_ssa, true); |
| 539 | |
| 540 | /* We are a vector architecture; write combine where possible */ |
| 541 | NIR_PASS(progress, nir, nir_move_vec_src_uses_to_dest); |
| 542 | NIR_PASS(progress, nir, nir_lower_vec_to_movs); |
| 543 | |
| 544 | NIR_PASS(progress, nir, nir_opt_dce); |
| 545 | } |
| 546 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 547 | /* Do not actually emit a load; instead, cache the constant for inlining */ |
| 548 | |
| 549 | static void |
| 550 | emit_load_const(compiler_context *ctx, nir_load_const_instr *instr) |
| 551 | { |
| 552 | nir_ssa_def def = instr->def; |
| 553 | |
Tomeu Vizoso | 554975b | 2019-05-07 17:28:36 +0200 | [diff] [blame] | 554 | float *v = rzalloc_array(NULL, float, 4); |
Karol Herbst | 14531d6 | 2019-03-27 00:59:03 +0100 | [diff] [blame] | 555 | nir_const_load_to_arr(v, instr, f32); |
Alyssa Rosenzweig | 9beb339 | 2019-07-26 11:30:06 -0700 | [diff] [blame] | 556 | |
| 557 | /* Shifted for SSA, +1 for off-by-one */ |
| 558 | _mesa_hash_table_u64_insert(ctx->ssa_constants, (def.index << 1) + 1, v); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 559 | } |
| 560 | |
Alyssa Rosenzweig | e169301 | 2019-07-24 12:52:27 -0700 | [diff] [blame] | 561 | /* Normally constants are embedded implicitly, but for I/O and such we have to |
| 562 | * explicitly emit a move with the constant source */ |
| 563 | |
| 564 | static void |
| 565 | emit_explicit_constant(compiler_context *ctx, unsigned node, unsigned to) |
| 566 | { |
| 567 | void *constant_value = _mesa_hash_table_u64_search(ctx->ssa_constants, node + 1); |
| 568 | |
| 569 | if (constant_value) { |
| 570 | midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), blank_alu_src, to); |
| 571 | attach_constants(ctx, &ins, constant_value, node + 1); |
| 572 | emit_mir_instruction(ctx, ins); |
| 573 | } |
| 574 | } |
| 575 | |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 576 | static bool |
| 577 | nir_is_non_scalar_swizzle(nir_alu_src *src, unsigned nr_components) |
| 578 | { |
| 579 | unsigned comp = src->swizzle[0]; |
| 580 | |
| 581 | for (unsigned c = 1; c < nr_components; ++c) { |
| 582 | if (src->swizzle[c] != comp) |
| 583 | return true; |
| 584 | } |
| 585 | |
| 586 | return false; |
| 587 | } |
| 588 | |
| 589 | /* Midgard puts scalar conditionals in r31.w; move an arbitrary source (the |
| 590 | * output of a conditional test) into that register */ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 591 | |
| 592 | static void |
Alyssa Rosenzweig | 8b15f8a | 2019-04-21 00:09:13 +0000 | [diff] [blame] | 593 | emit_condition(compiler_context *ctx, nir_src *src, bool for_branch, unsigned component) |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 594 | { |
Alyssa Rosenzweig | 4ed23b1 | 2019-02-07 04:56:13 +0000 | [diff] [blame] | 595 | int condition = nir_src_index(ctx, src); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 596 | |
Alyssa Rosenzweig | 8b15f8a | 2019-04-21 00:09:13 +0000 | [diff] [blame] | 597 | /* Source to swizzle the desired component into w */ |
| 598 | |
| 599 | const midgard_vector_alu_src alu_src = { |
| 600 | .swizzle = SWIZZLE(component, component, component, component), |
| 601 | }; |
| 602 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 603 | /* There is no boolean move instruction. Instead, we simulate a move by |
| 604 | * ANDing the condition with itself to get it into r31.w */ |
| 605 | |
| 606 | midgard_instruction ins = { |
| 607 | .type = TAG_ALU_4, |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 608 | |
| 609 | /* We need to set the conditional as close as possible */ |
| 610 | .precede_break = true, |
| 611 | .unit = for_branch ? UNIT_SMUL : UNIT_SADD, |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 612 | .mask = 1 << COMPONENT_W, |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 613 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 614 | .ssa_args = { |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 615 | .src = { condition, condition, -1 }, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 616 | .dest = SSA_FIXED_REGISTER(31), |
| 617 | }, |
Alyssa Rosenzweig | 6780481 | 2019-06-05 15:17:45 -0700 | [diff] [blame] | 618 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 619 | .alu = { |
| 620 | .op = midgard_alu_op_iand, |
Alyssa Rosenzweig | 6780481 | 2019-06-05 15:17:45 -0700 | [diff] [blame] | 621 | .outmod = midgard_outmod_int_wrap, |
Alyssa Rosenzweig | 576a27f | 2019-04-30 02:19:26 +0000 | [diff] [blame] | 622 | .reg_mode = midgard_reg_mode_32, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 623 | .dest_override = midgard_dest_override_none, |
Alyssa Rosenzweig | 8b15f8a | 2019-04-21 00:09:13 +0000 | [diff] [blame] | 624 | .src1 = vector_alu_srco_unsigned(alu_src), |
| 625 | .src2 = vector_alu_srco_unsigned(alu_src) |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 626 | }, |
| 627 | }; |
| 628 | |
| 629 | emit_mir_instruction(ctx, ins); |
| 630 | } |
| 631 | |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 632 | /* Or, for mixed conditions (with csel_v), here's a vector version using all of |
| 633 | * r31 instead */ |
| 634 | |
| 635 | static void |
| 636 | emit_condition_mixed(compiler_context *ctx, nir_alu_src *src, unsigned nr_comp) |
| 637 | { |
| 638 | int condition = nir_src_index(ctx, &src->src); |
| 639 | |
| 640 | /* Source to swizzle the desired component into w */ |
| 641 | |
| 642 | const midgard_vector_alu_src alu_src = { |
| 643 | .swizzle = SWIZZLE_FROM_ARRAY(src->swizzle), |
| 644 | }; |
| 645 | |
| 646 | /* There is no boolean move instruction. Instead, we simulate a move by |
| 647 | * ANDing the condition with itself to get it into r31.w */ |
| 648 | |
| 649 | midgard_instruction ins = { |
| 650 | .type = TAG_ALU_4, |
| 651 | .precede_break = true, |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 652 | .mask = mask_of(nr_comp), |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 653 | .ssa_args = { |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 654 | .src = { condition, condition, -1 }, |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 655 | .dest = SSA_FIXED_REGISTER(31), |
| 656 | }, |
| 657 | .alu = { |
| 658 | .op = midgard_alu_op_iand, |
Alyssa Rosenzweig | 6780481 | 2019-06-05 15:17:45 -0700 | [diff] [blame] | 659 | .outmod = midgard_outmod_int_wrap, |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 660 | .reg_mode = midgard_reg_mode_32, |
| 661 | .dest_override = midgard_dest_override_none, |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 662 | .src1 = vector_alu_srco_unsigned(alu_src), |
| 663 | .src2 = vector_alu_srco_unsigned(alu_src) |
| 664 | }, |
| 665 | }; |
| 666 | |
| 667 | emit_mir_instruction(ctx, ins); |
| 668 | } |
| 669 | |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 670 | #define ALU_CASE(nir, _op) \ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 671 | case nir_op_##nir: \ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 672 | op = midgard_alu_op_##_op; \ |
Alyssa Rosenzweig | 0ed8cca | 2019-07-01 17:35:25 -0700 | [diff] [blame] | 673 | assert(src_bitsize == dst_bitsize); \ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 674 | break; |
Alyssa Rosenzweig | 195e297 | 2019-06-19 07:23:27 -0700 | [diff] [blame] | 675 | |
| 676 | #define ALU_CASE_BCAST(nir, _op, count) \ |
| 677 | case nir_op_##nir: \ |
| 678 | op = midgard_alu_op_##_op; \ |
| 679 | broadcast_swizzle = count; \ |
Alyssa Rosenzweig | 0ed8cca | 2019-07-01 17:35:25 -0700 | [diff] [blame] | 680 | assert(src_bitsize == dst_bitsize); \ |
Alyssa Rosenzweig | 195e297 | 2019-06-19 07:23:27 -0700 | [diff] [blame] | 681 | break; |
Alyssa Rosenzweig | 7bc91b4 | 2019-04-24 23:42:30 +0000 | [diff] [blame] | 682 | static bool |
| 683 | nir_is_fzero_constant(nir_src src) |
| 684 | { |
| 685 | if (!nir_src_is_const(src)) |
| 686 | return false; |
| 687 | |
| 688 | for (unsigned c = 0; c < nir_src_num_components(src); ++c) { |
| 689 | if (nir_src_comp_as_float(src, c) != 0.0) |
| 690 | return false; |
| 691 | } |
| 692 | |
| 693 | return true; |
| 694 | } |
| 695 | |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 696 | /* Analyze the sizes of the inputs to determine which reg mode. Ops needed |
| 697 | * special treatment override this anyway. */ |
Alyssa Rosenzweig | 4df80ca | 2019-07-01 15:26:22 -0700 | [diff] [blame] | 698 | |
| 699 | static midgard_reg_mode |
| 700 | reg_mode_for_nir(nir_alu_instr *instr) |
| 701 | { |
| 702 | unsigned src_bitsize = nir_src_bit_size(instr->src[0].src); |
| 703 | |
| 704 | switch (src_bitsize) { |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 705 | case 8: |
| 706 | return midgard_reg_mode_8; |
| 707 | case 16: |
| 708 | return midgard_reg_mode_16; |
| 709 | case 32: |
| 710 | return midgard_reg_mode_32; |
| 711 | case 64: |
| 712 | return midgard_reg_mode_64; |
| 713 | default: |
| 714 | unreachable("Invalid bit size"); |
Alyssa Rosenzweig | 4df80ca | 2019-07-01 15:26:22 -0700 | [diff] [blame] | 715 | } |
| 716 | } |
| 717 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 718 | static void |
| 719 | emit_alu(compiler_context *ctx, nir_alu_instr *instr) |
| 720 | { |
Alyssa Rosenzweig | 8f88732 | 2019-07-29 15:11:12 -0700 | [diff] [blame] | 721 | /* Derivatives end up emitted on the texture pipe, not the ALUs. This |
| 722 | * is handled elsewhere */ |
| 723 | |
| 724 | if (instr->op == nir_op_fddx || instr->op == nir_op_fddy) { |
| 725 | midgard_emit_derivatives(ctx, instr); |
| 726 | return; |
| 727 | } |
| 728 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 729 | bool is_ssa = instr->dest.dest.is_ssa; |
| 730 | |
Alyssa Rosenzweig | 4ed23b1 | 2019-02-07 04:56:13 +0000 | [diff] [blame] | 731 | unsigned dest = nir_dest_index(ctx, &instr->dest.dest); |
Alyssa Rosenzweig | f42e5be | 2019-07-01 15:28:37 -0700 | [diff] [blame] | 732 | unsigned nr_components = nir_dest_num_components(instr->dest.dest); |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 733 | unsigned nr_inputs = nir_op_infos[instr->op].num_inputs; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 734 | |
| 735 | /* Most Midgard ALU ops have a 1:1 correspondance to NIR ops; these are |
| 736 | * supported. A few do not and are commented for now. Also, there are a |
| 737 | * number of NIR ops which Midgard does not support and need to be |
| 738 | * lowered, also TODO. This switch block emits the opcode and calling |
| 739 | * convention of the Midgard instruction; actual packing is done in |
| 740 | * emit_alu below */ |
| 741 | |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 742 | unsigned op; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 743 | |
Alyssa Rosenzweig | 195e297 | 2019-06-19 07:23:27 -0700 | [diff] [blame] | 744 | /* Number of components valid to check for the instruction (the rest |
| 745 | * will be forced to the last), or 0 to use as-is. Relevant as |
| 746 | * ball-type instructions have a channel count in NIR but are all vec4 |
| 747 | * in Midgard */ |
| 748 | |
| 749 | unsigned broadcast_swizzle = 0; |
| 750 | |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 751 | /* What register mode should we operate in? */ |
| 752 | midgard_reg_mode reg_mode = |
| 753 | reg_mode_for_nir(instr); |
| 754 | |
Alyssa Rosenzweig | 4df80ca | 2019-07-01 15:26:22 -0700 | [diff] [blame] | 755 | /* Do we need a destination override? Used for inline |
| 756 | * type conversion */ |
| 757 | |
| 758 | midgard_dest_override dest_override = |
| 759 | midgard_dest_override_none; |
| 760 | |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 761 | /* Should we use a smaller respective source and sign-extend? */ |
| 762 | |
| 763 | bool half_1 = false, sext_1 = false; |
| 764 | bool half_2 = false, sext_2 = false; |
| 765 | |
Alyssa Rosenzweig | 0ed8cca | 2019-07-01 17:35:25 -0700 | [diff] [blame] | 766 | unsigned src_bitsize = nir_src_bit_size(instr->src[0].src); |
| 767 | unsigned dst_bitsize = nir_dest_bit_size(instr->dest.dest); |
| 768 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 769 | switch (instr->op) { |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 770 | ALU_CASE(fadd, fadd); |
| 771 | ALU_CASE(fmul, fmul); |
| 772 | ALU_CASE(fmin, fmin); |
| 773 | ALU_CASE(fmax, fmax); |
| 774 | ALU_CASE(imin, imin); |
| 775 | ALU_CASE(imax, imax); |
Alyssa Rosenzweig | 2e7555b | 2019-04-05 05:16:54 +0000 | [diff] [blame] | 776 | ALU_CASE(umin, umin); |
| 777 | ALU_CASE(umax, umax); |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 778 | ALU_CASE(ffloor, ffloor); |
Alyssa Rosenzweig | c6be996 | 2019-02-23 01:12:10 +0000 | [diff] [blame] | 779 | ALU_CASE(fround_even, froundeven); |
| 780 | ALU_CASE(ftrunc, ftrunc); |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 781 | ALU_CASE(fceil, fceil); |
| 782 | ALU_CASE(fdot3, fdot3); |
| 783 | ALU_CASE(fdot4, fdot4); |
| 784 | ALU_CASE(iadd, iadd); |
| 785 | ALU_CASE(isub, isub); |
| 786 | ALU_CASE(imul, imul); |
Alyssa Rosenzweig | 9f14e20 | 2019-06-05 15:18:35 +0000 | [diff] [blame] | 787 | |
| 788 | /* Zero shoved as second-arg */ |
| 789 | ALU_CASE(iabs, iabsdiff); |
| 790 | |
Jason Ekstrand | f2dc0f2 | 2019-05-06 11:45:46 -0500 | [diff] [blame] | 791 | ALU_CASE(mov, imov); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 792 | |
Alyssa Rosenzweig | 3fb8842 | 2019-03-25 00:25:01 +0000 | [diff] [blame] | 793 | ALU_CASE(feq32, feq); |
| 794 | ALU_CASE(fne32, fne); |
| 795 | ALU_CASE(flt32, flt); |
| 796 | ALU_CASE(ieq32, ieq); |
| 797 | ALU_CASE(ine32, ine); |
| 798 | ALU_CASE(ilt32, ilt); |
Alyssa Rosenzweig | b8739c2 | 2019-03-26 04:00:33 +0000 | [diff] [blame] | 799 | ALU_CASE(ult32, ult); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 800 | |
Alyssa Rosenzweig | 3208c9d | 2019-03-25 01:13:12 +0000 | [diff] [blame] | 801 | /* We don't have a native b2f32 instruction. Instead, like many |
| 802 | * GPUs, we exploit booleans as 0/~0 for false/true, and |
| 803 | * correspondingly AND |
| 804 | * by 1.0 to do the type conversion. For the moment, prime us |
| 805 | * to emit: |
| 806 | * |
| 807 | * iand [whatever], #0 |
| 808 | * |
| 809 | * At the end of emit_alu (as MIR), we'll fix-up the constant |
| 810 | */ |
| 811 | |
| 812 | ALU_CASE(b2f32, iand); |
| 813 | ALU_CASE(b2i32, iand); |
| 814 | |
Alyssa Rosenzweig | ae43b8f | 2019-03-25 00:53:46 +0000 | [diff] [blame] | 815 | /* Likewise, we don't have a dedicated f2b32 instruction, but |
Alyssa Rosenzweig | 3208c9d | 2019-03-25 01:13:12 +0000 | [diff] [blame] | 816 | * we can do a "not equal to 0.0" test. */ |
Alyssa Rosenzweig | ae43b8f | 2019-03-25 00:53:46 +0000 | [diff] [blame] | 817 | |
| 818 | ALU_CASE(f2b32, fne); |
Alyssa Rosenzweig | 5b95fef | 2019-03-25 00:56:48 +0000 | [diff] [blame] | 819 | ALU_CASE(i2b32, ine); |
Alyssa Rosenzweig | ae43b8f | 2019-03-25 00:53:46 +0000 | [diff] [blame] | 820 | |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 821 | ALU_CASE(frcp, frcp); |
| 822 | ALU_CASE(frsq, frsqrt); |
| 823 | ALU_CASE(fsqrt, fsqrt); |
| 824 | ALU_CASE(fexp2, fexp2); |
| 825 | ALU_CASE(flog2, flog2); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 826 | |
Alyssa Rosenzweig | 73bf669 | 2019-06-05 15:03:02 -0700 | [diff] [blame] | 827 | ALU_CASE(f2i32, f2i_rtz); |
| 828 | ALU_CASE(f2u32, f2u_rtz); |
| 829 | ALU_CASE(i2f32, i2f_rtz); |
| 830 | ALU_CASE(u2f32, u2f_rtz); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 831 | |
Alyssa Rosenzweig | d8c084d | 2019-07-01 17:41:20 -0700 | [diff] [blame] | 832 | ALU_CASE(f2i16, f2i_rtz); |
| 833 | ALU_CASE(f2u16, f2u_rtz); |
| 834 | ALU_CASE(i2f16, i2f_rtz); |
| 835 | ALU_CASE(u2f16, u2f_rtz); |
| 836 | |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 837 | ALU_CASE(fsin, fsin); |
| 838 | ALU_CASE(fcos, fcos); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 839 | |
Alyssa Rosenzweig | 159abd5 | 2019-07-26 11:15:31 -0700 | [diff] [blame] | 840 | /* We'll set invert */ |
| 841 | ALU_CASE(inot, imov); |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 842 | ALU_CASE(iand, iand); |
| 843 | ALU_CASE(ior, ior); |
| 844 | ALU_CASE(ixor, ixor); |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 845 | ALU_CASE(ishl, ishl); |
| 846 | ALU_CASE(ishr, iasr); |
| 847 | ALU_CASE(ushr, ilsr); |
| 848 | |
Alyssa Rosenzweig | 195e297 | 2019-06-19 07:23:27 -0700 | [diff] [blame] | 849 | ALU_CASE_BCAST(b32all_fequal2, fball_eq, 2); |
| 850 | ALU_CASE_BCAST(b32all_fequal3, fball_eq, 3); |
Alyssa Rosenzweig | 3fb8842 | 2019-03-25 00:25:01 +0000 | [diff] [blame] | 851 | ALU_CASE(b32all_fequal4, fball_eq); |
Alyssa Rosenzweig | 5366410 | 2019-03-25 00:12:06 +0000 | [diff] [blame] | 852 | |
Alyssa Rosenzweig | 195e297 | 2019-06-19 07:23:27 -0700 | [diff] [blame] | 853 | ALU_CASE_BCAST(b32any_fnequal2, fbany_neq, 2); |
| 854 | ALU_CASE_BCAST(b32any_fnequal3, fbany_neq, 3); |
Alyssa Rosenzweig | 3fb8842 | 2019-03-25 00:25:01 +0000 | [diff] [blame] | 855 | ALU_CASE(b32any_fnequal4, fbany_neq); |
Alyssa Rosenzweig | 5366410 | 2019-03-25 00:12:06 +0000 | [diff] [blame] | 856 | |
Alyssa Rosenzweig | 195e297 | 2019-06-19 07:23:27 -0700 | [diff] [blame] | 857 | ALU_CASE_BCAST(b32all_iequal2, iball_eq, 2); |
| 858 | ALU_CASE_BCAST(b32all_iequal3, iball_eq, 3); |
Alyssa Rosenzweig | 3fb8842 | 2019-03-25 00:25:01 +0000 | [diff] [blame] | 859 | ALU_CASE(b32all_iequal4, iball_eq); |
Alyssa Rosenzweig | 5366410 | 2019-03-25 00:12:06 +0000 | [diff] [blame] | 860 | |
Alyssa Rosenzweig | 195e297 | 2019-06-19 07:23:27 -0700 | [diff] [blame] | 861 | ALU_CASE_BCAST(b32any_inequal2, ibany_neq, 2); |
| 862 | ALU_CASE_BCAST(b32any_inequal3, ibany_neq, 3); |
Alyssa Rosenzweig | 3fb8842 | 2019-03-25 00:25:01 +0000 | [diff] [blame] | 863 | ALU_CASE(b32any_inequal4, ibany_neq); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 864 | |
Alyssa Rosenzweig | 659aa3d | 2019-05-26 03:16:37 +0000 | [diff] [blame] | 865 | /* Source mods will be shoved in later */ |
| 866 | ALU_CASE(fabs, fmov); |
| 867 | ALU_CASE(fneg, fmov); |
| 868 | ALU_CASE(fsat, fmov); |
| 869 | |
Alyssa Rosenzweig | 4df80ca | 2019-07-01 15:26:22 -0700 | [diff] [blame] | 870 | /* For size conversion, we use a move. Ideally though we would squash |
| 871 | * these ops together; maybe that has to happen after in NIR as part of |
| 872 | * propagation...? An earlier algebraic pass ensured we step down by |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 873 | * only / exactly one size. If stepping down, we use a dest override to |
| 874 | * reduce the size; if stepping up, we use a larger-sized move with a |
| 875 | * half source and a sign/zero-extension modifier */ |
Alyssa Rosenzweig | 4df80ca | 2019-07-01 15:26:22 -0700 | [diff] [blame] | 876 | |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 877 | case nir_op_i2i8: |
| 878 | case nir_op_i2i16: |
| 879 | case nir_op_i2i32: |
| 880 | /* If we end up upscale, we'll need a sign-extend on the |
| 881 | * operand (the second argument) */ |
| 882 | |
| 883 | sext_2 = true; |
Alyssa Rosenzweig | 4df80ca | 2019-07-01 15:26:22 -0700 | [diff] [blame] | 884 | case nir_op_u2u8: |
| 885 | case nir_op_u2u16: |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 886 | case nir_op_u2u32: { |
Alyssa Rosenzweig | 4df80ca | 2019-07-01 15:26:22 -0700 | [diff] [blame] | 887 | op = midgard_alu_op_imov; |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 888 | |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 889 | if (dst_bitsize == (src_bitsize * 2)) { |
| 890 | /* Converting up */ |
| 891 | half_2 = true; |
| 892 | |
| 893 | /* Use a greater register mode */ |
| 894 | reg_mode++; |
| 895 | } else if (src_bitsize == (dst_bitsize * 2)) { |
| 896 | /* Converting down */ |
| 897 | dest_override = midgard_dest_override_lower; |
| 898 | } |
| 899 | |
Alyssa Rosenzweig | 4df80ca | 2019-07-01 15:26:22 -0700 | [diff] [blame] | 900 | break; |
| 901 | } |
| 902 | |
Alyssa Rosenzweig | 954c6af | 2019-07-01 17:38:26 -0700 | [diff] [blame] | 903 | case nir_op_f2f16: { |
| 904 | assert(src_bitsize == 32); |
| 905 | |
| 906 | op = midgard_alu_op_fmov; |
| 907 | dest_override = midgard_dest_override_lower; |
| 908 | break; |
| 909 | } |
| 910 | |
| 911 | case nir_op_f2f32: { |
| 912 | assert(src_bitsize == 16); |
| 913 | |
| 914 | op = midgard_alu_op_fmov; |
| 915 | half_2 = true; |
| 916 | reg_mode++; |
| 917 | break; |
| 918 | } |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 919 | |
Alyssa Rosenzweig | 954c6af | 2019-07-01 17:38:26 -0700 | [diff] [blame] | 920 | |
Alyssa Rosenzweig | 7b78af8 | 2019-03-26 04:01:33 +0000 | [diff] [blame] | 921 | /* For greater-or-equal, we lower to less-or-equal and flip the |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 922 | * arguments */ |
| 923 | |
Alyssa Rosenzweig | 7b78af8 | 2019-03-26 04:01:33 +0000 | [diff] [blame] | 924 | case nir_op_fge: |
| 925 | case nir_op_fge32: |
| 926 | case nir_op_ige32: |
| 927 | case nir_op_uge32: { |
| 928 | op = |
| 929 | instr->op == nir_op_fge ? midgard_alu_op_fle : |
| 930 | instr->op == nir_op_fge32 ? midgard_alu_op_fle : |
| 931 | instr->op == nir_op_ige32 ? midgard_alu_op_ile : |
| 932 | instr->op == nir_op_uge32 ? midgard_alu_op_ule : |
| 933 | 0; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 934 | |
| 935 | /* Swap via temporary */ |
| 936 | nir_alu_src temp = instr->src[1]; |
| 937 | instr->src[1] = instr->src[0]; |
| 938 | instr->src[0] = temp; |
| 939 | |
| 940 | break; |
| 941 | } |
| 942 | |
Alyssa Rosenzweig | 3fb8842 | 2019-03-25 00:25:01 +0000 | [diff] [blame] | 943 | case nir_op_b32csel: { |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 944 | /* Midgard features both fcsel and icsel, depending on |
| 945 | * the type of the arguments/output. However, as long |
| 946 | * as we're careful we can _always_ use icsel and |
| 947 | * _never_ need fcsel, since the latter does additional |
| 948 | * floating-point-specific processing whereas the |
| 949 | * former just moves bits on the wire. It's not obvious |
| 950 | * why these are separate opcodes, save for the ability |
| 951 | * to do things like sat/pos/abs/neg for free */ |
Alyssa Rosenzweig | 3d7874c | 2019-05-03 01:54:16 +0000 | [diff] [blame] | 952 | |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 953 | bool mixed = nir_is_non_scalar_swizzle(&instr->src[0], nr_components); |
| 954 | op = mixed ? midgard_alu_op_icsel_v : midgard_alu_op_icsel; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 955 | |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 956 | /* csel works as a two-arg in Midgard, since the condition is hardcoded in r31.w */ |
| 957 | nr_inputs = 2; |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 958 | |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 959 | /* Emit the condition into r31 */ |
Alyssa Rosenzweig | 8b15f8a | 2019-04-21 00:09:13 +0000 | [diff] [blame] | 960 | |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 961 | if (mixed) |
| 962 | emit_condition_mixed(ctx, &instr->src[0], nr_components); |
| 963 | else |
| 964 | emit_condition(ctx, &instr->src[0].src, false, instr->src[0].swizzle[0]); |
Alyssa Rosenzweig | 8b15f8a | 2019-04-21 00:09:13 +0000 | [diff] [blame] | 965 | |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 966 | /* The condition is the first argument; move the other |
| 967 | * arguments up one to be a binary instruction for |
| 968 | * Midgard */ |
Alyssa Rosenzweig | 8b15f8a | 2019-04-21 00:09:13 +0000 | [diff] [blame] | 969 | |
Alyssa Rosenzweig | 726f026 | 2019-05-07 02:52:08 +0000 | [diff] [blame] | 970 | memmove(instr->src, instr->src + 1, 2 * sizeof(nir_alu_src)); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 971 | break; |
| 972 | } |
| 973 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 974 | default: |
Tomeu Vizoso | f0b1bbe | 2019-03-08 15:04:50 +0100 | [diff] [blame] | 975 | DBG("Unhandled ALU op %s\n", nir_op_infos[instr->op].name); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 976 | assert(0); |
| 977 | return; |
| 978 | } |
| 979 | |
Alyssa Rosenzweig | 0a13bab | 2019-05-15 01:16:51 +0000 | [diff] [blame] | 980 | /* Midgard can perform certain modifiers on output of an ALU op */ |
Alyssa Rosenzweig | 6780481 | 2019-06-05 15:17:45 -0700 | [diff] [blame] | 981 | unsigned outmod; |
Alyssa Rosenzweig | 7bc91b4 | 2019-04-24 23:42:30 +0000 | [diff] [blame] | 982 | |
Alyssa Rosenzweig | 6780481 | 2019-06-05 15:17:45 -0700 | [diff] [blame] | 983 | if (midgard_is_integer_out_op(op)) { |
| 984 | outmod = midgard_outmod_int_wrap; |
| 985 | } else { |
| 986 | bool sat = instr->dest.saturate || instr->op == nir_op_fsat; |
| 987 | outmod = sat ? midgard_outmod_sat : midgard_outmod_none; |
| 988 | } |
Alyssa Rosenzweig | 659aa3d | 2019-05-26 03:16:37 +0000 | [diff] [blame] | 989 | |
Alyssa Rosenzweig | 7bc91b4 | 2019-04-24 23:42:30 +0000 | [diff] [blame] | 990 | /* fmax(a, 0.0) can turn into a .pos modifier as an optimization */ |
| 991 | |
| 992 | if (instr->op == nir_op_fmax) { |
| 993 | if (nir_is_fzero_constant(instr->src[0].src)) { |
| 994 | op = midgard_alu_op_fmov; |
| 995 | nr_inputs = 1; |
| 996 | outmod = midgard_outmod_pos; |
| 997 | instr->src[0] = instr->src[1]; |
| 998 | } else if (nir_is_fzero_constant(instr->src[1].src)) { |
| 999 | op = midgard_alu_op_fmov; |
| 1000 | nr_inputs = 1; |
| 1001 | outmod = midgard_outmod_pos; |
| 1002 | } |
| 1003 | } |
| 1004 | |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 1005 | /* Fetch unit, quirks, etc information */ |
Alyssa Rosenzweig | 1f345bc | 2019-04-24 01:15:15 +0000 | [diff] [blame] | 1006 | unsigned opcode_props = alu_opcode_props[op].props; |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 1007 | bool quirk_flipped_r24 = opcode_props & QUIRK_FLIPPED_R24; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1008 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1009 | /* src0 will always exist afaik, but src1 will not for 1-argument |
| 1010 | * instructions. The latter can only be fetched if the instruction |
| 1011 | * needs it, or else we may segfault. */ |
| 1012 | |
Alyssa Rosenzweig | 4ed23b1 | 2019-02-07 04:56:13 +0000 | [diff] [blame] | 1013 | unsigned src0 = nir_alu_src_index(ctx, &instr->src[0]); |
| 1014 | unsigned src1 = nr_inputs == 2 ? nir_alu_src_index(ctx, &instr->src[1]) : SSA_UNUSED_0; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1015 | |
| 1016 | /* Rather than use the instruction generation helpers, we do it |
| 1017 | * ourselves here to avoid the mess */ |
| 1018 | |
| 1019 | midgard_instruction ins = { |
| 1020 | .type = TAG_ALU_4, |
| 1021 | .ssa_args = { |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1022 | .src = { |
| 1023 | quirk_flipped_r24 ? SSA_UNUSED_1 : src0, |
| 1024 | quirk_flipped_r24 ? src0 : src1, |
| 1025 | -1 |
| 1026 | }, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1027 | .dest = dest, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1028 | } |
| 1029 | }; |
| 1030 | |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 1031 | nir_alu_src *nirmods[2] = { NULL }; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1032 | |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 1033 | if (nr_inputs == 2) { |
| 1034 | nirmods[0] = &instr->src[0]; |
| 1035 | nirmods[1] = &instr->src[1]; |
| 1036 | } else if (nr_inputs == 1) { |
| 1037 | nirmods[quirk_flipped_r24] = &instr->src[0]; |
| 1038 | } else { |
| 1039 | assert(0); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1040 | } |
| 1041 | |
Alyssa Rosenzweig | 659aa3d | 2019-05-26 03:16:37 +0000 | [diff] [blame] | 1042 | /* These were lowered to a move, so apply the corresponding mod */ |
| 1043 | |
| 1044 | if (instr->op == nir_op_fneg || instr->op == nir_op_fabs) { |
| 1045 | nir_alu_src *s = nirmods[quirk_flipped_r24]; |
| 1046 | |
| 1047 | if (instr->op == nir_op_fneg) |
| 1048 | s->negate = !s->negate; |
| 1049 | |
| 1050 | if (instr->op == nir_op_fabs) |
| 1051 | s->abs = !s->abs; |
| 1052 | } |
| 1053 | |
Alyssa Rosenzweig | fcdfb67 | 2019-04-22 03:25:42 +0000 | [diff] [blame] | 1054 | bool is_int = midgard_is_integer_op(op); |
| 1055 | |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 1056 | ins.mask = mask_of(nr_components); |
| 1057 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1058 | midgard_vector_alu alu = { |
| 1059 | .op = op, |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 1060 | .reg_mode = reg_mode, |
Alyssa Rosenzweig | 4df80ca | 2019-07-01 15:26:22 -0700 | [diff] [blame] | 1061 | .dest_override = dest_override, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1062 | .outmod = outmod, |
| 1063 | |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 1064 | .src1 = vector_alu_srco_unsigned(vector_alu_modifiers(nirmods[0], is_int, broadcast_swizzle, half_1, sext_1)), |
| 1065 | .src2 = vector_alu_srco_unsigned(vector_alu_modifiers(nirmods[1], is_int, broadcast_swizzle, half_2, sext_2)), |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1066 | }; |
| 1067 | |
| 1068 | /* Apply writemask if non-SSA, keeping in mind that we can't write to components that don't exist */ |
| 1069 | |
| 1070 | if (!is_ssa) |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 1071 | ins.mask &= instr->dest.write_mask; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1072 | |
| 1073 | ins.alu = alu; |
| 1074 | |
| 1075 | /* Late fixup for emulated instructions */ |
| 1076 | |
Alyssa Rosenzweig | 3208c9d | 2019-03-25 01:13:12 +0000 | [diff] [blame] | 1077 | if (instr->op == nir_op_b2f32 || instr->op == nir_op_b2i32) { |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1078 | /* Presently, our second argument is an inline #0 constant. |
| 1079 | * Switch over to an embedded 1.0 constant (that can't fit |
| 1080 | * inline, since we're 32-bit, not 16-bit like the inline |
| 1081 | * constants) */ |
| 1082 | |
| 1083 | ins.ssa_args.inline_constant = false; |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1084 | ins.ssa_args.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1085 | ins.has_constants = true; |
Alyssa Rosenzweig | 9da4603 | 2019-03-24 16:07:31 +0000 | [diff] [blame] | 1086 | |
Alyssa Rosenzweig | 3208c9d | 2019-03-25 01:13:12 +0000 | [diff] [blame] | 1087 | if (instr->op == nir_op_b2f32) { |
| 1088 | ins.constants[0] = 1.0f; |
| 1089 | } else { |
| 1090 | /* Type pun it into place */ |
| 1091 | uint32_t one = 0x1; |
| 1092 | memcpy(&ins.constants[0], &one, sizeof(uint32_t)); |
| 1093 | } |
| 1094 | |
| 1095 | ins.alu.src2 = vector_alu_srco_unsigned(blank_alu_src_xxxx); |
Alyssa Rosenzweig | 88c5979 | 2019-06-05 15:24:51 +0000 | [diff] [blame] | 1096 | } else if (nr_inputs == 1 && !quirk_flipped_r24) { |
| 1097 | /* Lots of instructions need a 0 plonked in */ |
Alyssa Rosenzweig | 3208c9d | 2019-03-25 01:13:12 +0000 | [diff] [blame] | 1098 | ins.ssa_args.inline_constant = false; |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1099 | ins.ssa_args.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT); |
Alyssa Rosenzweig | 3208c9d | 2019-03-25 01:13:12 +0000 | [diff] [blame] | 1100 | ins.has_constants = true; |
| 1101 | ins.constants[0] = 0.0f; |
Alyssa Rosenzweig | 9da4603 | 2019-03-24 16:07:31 +0000 | [diff] [blame] | 1102 | ins.alu.src2 = vector_alu_srco_unsigned(blank_alu_src_xxxx); |
Alyssa Rosenzweig | bcabcfe | 2019-04-25 04:25:33 +0000 | [diff] [blame] | 1103 | } else if (instr->op == nir_op_inot) { |
Alyssa Rosenzweig | 159abd5 | 2019-07-26 11:15:31 -0700 | [diff] [blame] | 1104 | ins.invert = true; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1105 | } |
| 1106 | |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 1107 | if ((opcode_props & UNITS_ALL) == UNIT_VLUT) { |
| 1108 | /* To avoid duplicating the lookup tables (probably), true LUT |
| 1109 | * instructions can only operate as if they were scalars. Lower |
| 1110 | * them here by changing the component. */ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1111 | |
| 1112 | uint8_t original_swizzle[4]; |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 1113 | memcpy(original_swizzle, nirmods[0]->swizzle, sizeof(nirmods[0]->swizzle)); |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 1114 | unsigned orig_mask = ins.mask; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1115 | |
| 1116 | for (int i = 0; i < nr_components; ++i) { |
Alyssa Rosenzweig | 2c9e124 | 2019-06-17 11:49:44 -0700 | [diff] [blame] | 1117 | /* Mask the associated component, dropping the |
| 1118 | * instruction if needed */ |
| 1119 | |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 1120 | ins.mask = 1 << i; |
| 1121 | ins.mask &= orig_mask; |
Alyssa Rosenzweig | 2c9e124 | 2019-06-17 11:49:44 -0700 | [diff] [blame] | 1122 | |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 1123 | if (!ins.mask) |
Alyssa Rosenzweig | 2c9e124 | 2019-06-17 11:49:44 -0700 | [diff] [blame] | 1124 | continue; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1125 | |
| 1126 | for (int j = 0; j < 4; ++j) |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 1127 | nirmods[0]->swizzle[j] = original_swizzle[i]; /* Pull from the correct component */ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1128 | |
Alyssa Rosenzweig | 7f807ef | 2019-07-01 16:44:00 -0700 | [diff] [blame] | 1129 | ins.alu.src1 = vector_alu_srco_unsigned(vector_alu_modifiers(nirmods[0], is_int, broadcast_swizzle, half_1, false)); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1130 | emit_mir_instruction(ctx, ins); |
| 1131 | } |
| 1132 | } else { |
| 1133 | emit_mir_instruction(ctx, ins); |
| 1134 | } |
| 1135 | } |
| 1136 | |
Alyssa Rosenzweig | 97dcad8 | 2019-02-07 03:39:25 +0000 | [diff] [blame] | 1137 | #undef ALU_CASE |
| 1138 | |
Alyssa Rosenzweig | 5e2c3d4 | 2019-06-20 15:51:31 -0700 | [diff] [blame] | 1139 | /* Uniforms and UBOs use a shared code path, as uniforms are just (slightly |
| 1140 | * optimized) versions of UBO #0 */ |
| 1141 | |
Alyssa Rosenzweig | 3174bc9 | 2019-07-16 14:10:08 -0700 | [diff] [blame] | 1142 | void |
Alyssa Rosenzweig | 5e2c3d4 | 2019-06-20 15:51:31 -0700 | [diff] [blame] | 1143 | emit_ubo_read( |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1144 | compiler_context *ctx, |
| 1145 | unsigned dest, |
| 1146 | unsigned offset, |
| 1147 | nir_src *indirect_offset, |
| 1148 | unsigned index) |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 1149 | { |
| 1150 | /* TODO: half-floats */ |
| 1151 | |
Alyssa Rosenzweig | 3174bc9 | 2019-07-16 14:10:08 -0700 | [diff] [blame] | 1152 | midgard_instruction ins = m_ld_uniform_32(dest, offset); |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 1153 | |
Alyssa Rosenzweig | 3174bc9 | 2019-07-16 14:10:08 -0700 | [diff] [blame] | 1154 | /* TODO: Don't split */ |
| 1155 | ins.load_store.varying_parameters = (offset & 7) << 7; |
| 1156 | ins.load_store.address = offset >> 3; |
| 1157 | |
| 1158 | if (indirect_offset) { |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1159 | ins.ssa_args.src[1] = nir_src_index(ctx, indirect_offset); |
Alyssa Rosenzweig | 513d02c | 2019-08-01 14:28:34 -0700 | [diff] [blame] | 1160 | ins.load_store.arg_2 = 0x80; |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 1161 | } else { |
Alyssa Rosenzweig | c908772 | 2019-08-01 13:29:01 -0700 | [diff] [blame] | 1162 | ins.load_store.arg_2 = 0x1E; |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 1163 | } |
Alyssa Rosenzweig | 3174bc9 | 2019-07-16 14:10:08 -0700 | [diff] [blame] | 1164 | |
Alyssa Rosenzweig | c908772 | 2019-08-01 13:29:01 -0700 | [diff] [blame] | 1165 | ins.load_store.arg_1 = index; |
| 1166 | |
Alyssa Rosenzweig | 3174bc9 | 2019-07-16 14:10:08 -0700 | [diff] [blame] | 1167 | emit_mir_instruction(ctx, ins); |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 1168 | } |
| 1169 | |
| 1170 | static void |
Alyssa Rosenzweig | 15fae1e | 2019-06-04 23:26:09 +0000 | [diff] [blame] | 1171 | emit_varying_read( |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1172 | compiler_context *ctx, |
| 1173 | unsigned dest, unsigned offset, |
| 1174 | unsigned nr_comp, unsigned component, |
| 1175 | nir_src *indirect_offset, nir_alu_type type) |
Alyssa Rosenzweig | 15fae1e | 2019-06-04 23:26:09 +0000 | [diff] [blame] | 1176 | { |
| 1177 | /* XXX: Half-floats? */ |
| 1178 | /* TODO: swizzle, mask */ |
| 1179 | |
| 1180 | midgard_instruction ins = m_ld_vary_32(dest, offset); |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 1181 | ins.mask = mask_of(nr_comp); |
Alyssa Rosenzweig | 15fae1e | 2019-06-04 23:26:09 +0000 | [diff] [blame] | 1182 | ins.load_store.swizzle = SWIZZLE_XYZW >> (2 * component); |
| 1183 | |
| 1184 | midgard_varying_parameter p = { |
| 1185 | .is_varying = 1, |
| 1186 | .interpolation = midgard_interp_default, |
| 1187 | .flat = /*var->data.interpolation == INTERP_MODE_FLAT*/ 0 |
| 1188 | }; |
| 1189 | |
| 1190 | unsigned u; |
| 1191 | memcpy(&u, &p, sizeof(p)); |
| 1192 | ins.load_store.varying_parameters = u; |
| 1193 | |
Alyssa Rosenzweig | 513d02c | 2019-08-01 14:28:34 -0700 | [diff] [blame] | 1194 | if (indirect_offset) |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1195 | ins.ssa_args.src[1] = nir_src_index(ctx, indirect_offset); |
Alyssa Rosenzweig | 513d02c | 2019-08-01 14:28:34 -0700 | [diff] [blame] | 1196 | else |
Alyssa Rosenzweig | c908772 | 2019-08-01 13:29:01 -0700 | [diff] [blame] | 1197 | ins.load_store.arg_2 = 0x1E; |
Alyssa Rosenzweig | 15fae1e | 2019-06-04 23:26:09 +0000 | [diff] [blame] | 1198 | |
Alyssa Rosenzweig | c908772 | 2019-08-01 13:29:01 -0700 | [diff] [blame] | 1199 | ins.load_store.arg_1 = 0x9E; |
| 1200 | |
Alyssa Rosenzweig | 9b97ed1 | 2019-06-28 09:30:59 -0700 | [diff] [blame] | 1201 | /* Use the type appropriate load */ |
| 1202 | switch (type) { |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1203 | case nir_type_uint: |
| 1204 | case nir_type_bool: |
| 1205 | ins.load_store.op = midgard_op_ld_vary_32u; |
| 1206 | break; |
| 1207 | case nir_type_int: |
| 1208 | ins.load_store.op = midgard_op_ld_vary_32i; |
| 1209 | break; |
| 1210 | case nir_type_float: |
| 1211 | ins.load_store.op = midgard_op_ld_vary_32; |
| 1212 | break; |
| 1213 | default: |
| 1214 | unreachable("Attempted to load unknown type"); |
| 1215 | break; |
Alyssa Rosenzweig | 9b97ed1 | 2019-06-28 09:30:59 -0700 | [diff] [blame] | 1216 | } |
| 1217 | |
Alyssa Rosenzweig | 15fae1e | 2019-06-04 23:26:09 +0000 | [diff] [blame] | 1218 | emit_mir_instruction(ctx, ins); |
| 1219 | } |
| 1220 | |
| 1221 | static void |
Boris Brezillon | bd49c8f | 2019-06-14 09:59:20 +0200 | [diff] [blame] | 1222 | emit_sysval_read(compiler_context *ctx, nir_instr *instr) |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 1223 | { |
Alyssa Rosenzweig | 6d8490f | 2019-07-11 15:34:56 -0700 | [diff] [blame] | 1224 | unsigned dest = 0; |
| 1225 | |
Boris Brezillon | bd49c8f | 2019-06-14 09:59:20 +0200 | [diff] [blame] | 1226 | /* Figure out which uniform this is */ |
| 1227 | int sysval = sysval_for_instr(ctx, instr, &dest); |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 1228 | void *val = _mesa_hash_table_u64_search(ctx->sysval_to_id, sysval); |
| 1229 | |
| 1230 | /* Sysvals are prefix uniforms */ |
| 1231 | unsigned uniform = ((uintptr_t) val) - 1; |
| 1232 | |
Alyssa Rosenzweig | 6a466c0 | 2019-04-20 23:52:42 +0000 | [diff] [blame] | 1233 | /* Emit the read itself -- this is never indirect */ |
Alyssa Rosenzweig | 5e2c3d4 | 2019-06-20 15:51:31 -0700 | [diff] [blame] | 1234 | emit_ubo_read(ctx, dest, uniform, NULL, 0); |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 1235 | } |
| 1236 | |
| 1237 | static void |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1238 | emit_intrinsic(compiler_context *ctx, nir_intrinsic_instr *instr) |
| 1239 | { |
Alyssa Rosenzweig | 5e2c3d4 | 2019-06-20 15:51:31 -0700 | [diff] [blame] | 1240 | unsigned offset = 0, reg; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1241 | |
| 1242 | switch (instr->intrinsic) { |
| 1243 | case nir_intrinsic_discard_if: |
Alyssa Rosenzweig | 8b15f8a | 2019-04-21 00:09:13 +0000 | [diff] [blame] | 1244 | emit_condition(ctx, &instr->src[0], true, COMPONENT_X); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1245 | |
| 1246 | /* fallthrough */ |
| 1247 | |
| 1248 | case nir_intrinsic_discard: { |
Alyssa Rosenzweig | 779e140 | 2019-02-17 23:24:39 +0000 | [diff] [blame] | 1249 | bool conditional = instr->intrinsic == nir_intrinsic_discard_if; |
| 1250 | struct midgard_instruction discard = v_branch(conditional, false); |
| 1251 | discard.branch.target_type = TARGET_DISCARD; |
| 1252 | emit_mir_instruction(ctx, discard); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1253 | break; |
| 1254 | } |
| 1255 | |
| 1256 | case nir_intrinsic_load_uniform: |
Alyssa Rosenzweig | 5e2c3d4 | 2019-06-20 15:51:31 -0700 | [diff] [blame] | 1257 | case nir_intrinsic_load_ubo: |
| 1258 | case nir_intrinsic_load_input: { |
| 1259 | bool is_uniform = instr->intrinsic == nir_intrinsic_load_uniform; |
| 1260 | bool is_ubo = instr->intrinsic == nir_intrinsic_load_ubo; |
| 1261 | |
Alyssa Rosenzweig | bbc050b | 2019-06-27 15:33:07 -0700 | [diff] [blame] | 1262 | /* Get the base type of the intrinsic */ |
Alyssa Rosenzweig | 8d74749 | 2019-06-27 14:13:10 -0700 | [diff] [blame] | 1263 | /* TODO: Infer type? Does it matter? */ |
| 1264 | nir_alu_type t = |
| 1265 | is_ubo ? nir_type_uint : nir_intrinsic_type(instr); |
Alyssa Rosenzweig | bbc050b | 2019-06-27 15:33:07 -0700 | [diff] [blame] | 1266 | t = nir_alu_type_get_base_type(t); |
| 1267 | |
Alyssa Rosenzweig | 5e2c3d4 | 2019-06-20 15:51:31 -0700 | [diff] [blame] | 1268 | if (!is_ubo) { |
| 1269 | offset = nir_intrinsic_base(instr); |
| 1270 | } |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1271 | |
Alyssa Rosenzweig | c1715b5 | 2019-05-22 02:44:12 +0000 | [diff] [blame] | 1272 | unsigned nr_comp = nir_intrinsic_dest_components(instr); |
Alyssa Rosenzweig | 6a466c0 | 2019-04-20 23:52:42 +0000 | [diff] [blame] | 1273 | |
Alyssa Rosenzweig | 5e2c3d4 | 2019-06-20 15:51:31 -0700 | [diff] [blame] | 1274 | nir_src *src_offset = nir_get_io_offset_src(instr); |
| 1275 | |
| 1276 | bool direct = nir_src_is_const(*src_offset); |
| 1277 | |
| 1278 | if (direct) |
| 1279 | offset += nir_src_as_uint(*src_offset); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1280 | |
Alyssa Rosenzweig | 43568f2 | 2019-06-06 08:16:04 -0700 | [diff] [blame] | 1281 | /* We may need to apply a fractional offset */ |
| 1282 | int component = instr->intrinsic == nir_intrinsic_load_input ? |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1283 | nir_intrinsic_component(instr) : 0; |
Alyssa Rosenzweig | 4ed23b1 | 2019-02-07 04:56:13 +0000 | [diff] [blame] | 1284 | reg = nir_dest_index(ctx, &instr->dest); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1285 | |
Alyssa Rosenzweig | 5e2c3d4 | 2019-06-20 15:51:31 -0700 | [diff] [blame] | 1286 | if (is_uniform && !ctx->is_blend) { |
| 1287 | emit_ubo_read(ctx, reg, ctx->sysval_count + offset, !direct ? &instr->src[0] : NULL, 0); |
| 1288 | } else if (is_ubo) { |
| 1289 | nir_src index = instr->src[0]; |
| 1290 | |
| 1291 | /* We don't yet support indirect UBOs. For indirect |
| 1292 | * block numbers (if that's possible), we don't know |
| 1293 | * enough about the hardware yet. For indirect sources, |
| 1294 | * we know what we need but we need to add some NIR |
| 1295 | * support for lowering correctly with respect to |
| 1296 | * 128-bit reads */ |
| 1297 | |
| 1298 | assert(nir_src_is_const(index)); |
| 1299 | assert(nir_src_is_const(*src_offset)); |
| 1300 | |
| 1301 | /* TODO: Alignment */ |
| 1302 | assert((offset & 0xF) == 0); |
| 1303 | |
| 1304 | uint32_t uindex = nir_src_as_uint(index) + 1; |
| 1305 | emit_ubo_read(ctx, reg, offset / 16, NULL, uindex); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1306 | } else if (ctx->stage == MESA_SHADER_FRAGMENT && !ctx->is_blend) { |
Alyssa Rosenzweig | 9b97ed1 | 2019-06-28 09:30:59 -0700 | [diff] [blame] | 1307 | emit_varying_read(ctx, reg, offset, nr_comp, component, !direct ? &instr->src[0] : NULL, t); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1308 | } else if (ctx->is_blend) { |
Alyssa Rosenzweig | 3910422 | 2019-05-06 02:12:41 +0000 | [diff] [blame] | 1309 | /* For blend shaders, load the input color, which is |
| 1310 | * preloaded to r0 */ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1311 | |
Alyssa Rosenzweig | 13f61f2 | 2019-07-26 08:15:50 -0700 | [diff] [blame] | 1312 | midgard_instruction move = v_mov(SSA_FIXED_REGISTER(0), blank_alu_src, reg); |
Alyssa Rosenzweig | 005d9b1 | 2019-05-20 00:46:48 +0000 | [diff] [blame] | 1313 | emit_mir_instruction(ctx, move); |
Alyssa Rosenzweig | 3910422 | 2019-05-06 02:12:41 +0000 | [diff] [blame] | 1314 | } else if (ctx->stage == MESA_SHADER_VERTEX) { |
Alyssa Rosenzweig | 74ab80b | 2019-05-14 04:11:36 +0000 | [diff] [blame] | 1315 | midgard_instruction ins = m_ld_attr_32(reg, offset); |
Alyssa Rosenzweig | c908772 | 2019-08-01 13:29:01 -0700 | [diff] [blame] | 1316 | ins.load_store.arg_1 = 0x1E; |
| 1317 | ins.load_store.arg_2 = 0x1E; |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 1318 | ins.mask = mask_of(nr_comp); |
Alyssa Rosenzweig | bbc050b | 2019-06-27 15:33:07 -0700 | [diff] [blame] | 1319 | |
| 1320 | /* Use the type appropriate load */ |
| 1321 | switch (t) { |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1322 | case nir_type_uint: |
| 1323 | case nir_type_bool: |
| 1324 | ins.load_store.op = midgard_op_ld_attr_32u; |
| 1325 | break; |
| 1326 | case nir_type_int: |
| 1327 | ins.load_store.op = midgard_op_ld_attr_32i; |
| 1328 | break; |
| 1329 | case nir_type_float: |
| 1330 | ins.load_store.op = midgard_op_ld_attr_32; |
| 1331 | break; |
| 1332 | default: |
| 1333 | unreachable("Attempted to load unknown type"); |
| 1334 | break; |
Alyssa Rosenzweig | bbc050b | 2019-06-27 15:33:07 -0700 | [diff] [blame] | 1335 | } |
| 1336 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1337 | emit_mir_instruction(ctx, ins); |
| 1338 | } else { |
Tomeu Vizoso | f0b1bbe | 2019-03-08 15:04:50 +0100 | [diff] [blame] | 1339 | DBG("Unknown load\n"); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1340 | assert(0); |
| 1341 | } |
| 1342 | |
| 1343 | break; |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1344 | } |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1345 | |
Alyssa Rosenzweig | 1686ef8 | 2019-07-01 17:23:58 -0700 | [diff] [blame] | 1346 | /* Reads 128-bit value raw off the tilebuffer during blending, tasty */ |
| 1347 | |
Alyssa Rosenzweig | 541b329 | 2019-07-01 15:02:40 -0700 | [diff] [blame] | 1348 | case nir_intrinsic_load_raw_output_pan: |
Alyssa Rosenzweig | 3910422 | 2019-05-06 02:12:41 +0000 | [diff] [blame] | 1349 | reg = nir_dest_index(ctx, &instr->dest); |
Alyssa Rosenzweig | 541b329 | 2019-07-01 15:02:40 -0700 | [diff] [blame] | 1350 | assert(ctx->is_blend); |
Alyssa Rosenzweig | 1686ef8 | 2019-07-01 17:23:58 -0700 | [diff] [blame] | 1351 | |
| 1352 | midgard_instruction ins = m_ld_color_buffer_8(reg, 0); |
| 1353 | emit_mir_instruction(ctx, ins); |
Alyssa Rosenzweig | 3910422 | 2019-05-06 02:12:41 +0000 | [diff] [blame] | 1354 | break; |
| 1355 | |
| 1356 | case nir_intrinsic_load_blend_const_color_rgba: { |
| 1357 | assert(ctx->is_blend); |
| 1358 | reg = nir_dest_index(ctx, &instr->dest); |
| 1359 | |
| 1360 | /* Blend constants are embedded directly in the shader and |
| 1361 | * patched in, so we use some magic routing */ |
| 1362 | |
Alyssa Rosenzweig | 565c446 | 2019-06-17 09:40:14 -0700 | [diff] [blame] | 1363 | midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), blank_alu_src, reg); |
Alyssa Rosenzweig | 3910422 | 2019-05-06 02:12:41 +0000 | [diff] [blame] | 1364 | ins.has_constants = true; |
| 1365 | ins.has_blend_constant = true; |
| 1366 | emit_mir_instruction(ctx, ins); |
| 1367 | break; |
| 1368 | } |
| 1369 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1370 | case nir_intrinsic_store_output: |
Karol Herbst | 1aabb79 | 2019-03-29 21:40:45 +0100 | [diff] [blame] | 1371 | assert(nir_src_is_const(instr->src[1]) && "no indirect outputs"); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1372 | |
Karol Herbst | 1aabb79 | 2019-03-29 21:40:45 +0100 | [diff] [blame] | 1373 | offset = nir_intrinsic_base(instr) + nir_src_as_uint(instr->src[1]); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1374 | |
Alyssa Rosenzweig | 4ed23b1 | 2019-02-07 04:56:13 +0000 | [diff] [blame] | 1375 | reg = nir_src_index(ctx, &instr->src[0]); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1376 | |
| 1377 | if (ctx->stage == MESA_SHADER_FRAGMENT) { |
| 1378 | /* gl_FragColor is not emitted with load/store |
| 1379 | * instructions. Instead, it gets plonked into |
| 1380 | * r0 at the end of the shader and we do the |
| 1381 | * framebuffer writeout dance. TODO: Defer |
| 1382 | * writes */ |
| 1383 | |
Alyssa Rosenzweig | 565c446 | 2019-06-17 09:40:14 -0700 | [diff] [blame] | 1384 | midgard_instruction move = v_mov(reg, blank_alu_src, SSA_FIXED_REGISTER(0)); |
Alyssa Rosenzweig | 3910422 | 2019-05-06 02:12:41 +0000 | [diff] [blame] | 1385 | emit_mir_instruction(ctx, move); |
| 1386 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1387 | /* Save the index we're writing to for later reference |
| 1388 | * in the epilogue */ |
| 1389 | |
| 1390 | ctx->fragment_output = reg; |
| 1391 | } else if (ctx->stage == MESA_SHADER_VERTEX) { |
Alyssa Rosenzweig | a3ae3cb | 2019-06-17 12:35:57 -0700 | [diff] [blame] | 1392 | /* We should have been vectorized, though we don't |
| 1393 | * currently check that st_vary is emitted only once |
| 1394 | * per slot (this is relevant, since there's not a mask |
| 1395 | * parameter available on the store [set to 0 by the |
| 1396 | * blob]). We do respect the component by adjusting the |
Alyssa Rosenzweig | 233c0fa | 2019-07-24 12:54:59 -0700 | [diff] [blame] | 1397 | * swizzle. If this is a constant source, we'll need to |
| 1398 | * emit that explicitly. */ |
| 1399 | |
| 1400 | emit_explicit_constant(ctx, reg, reg); |
Alyssa Rosenzweig | a3ae3cb | 2019-06-17 12:35:57 -0700 | [diff] [blame] | 1401 | |
| 1402 | unsigned component = nir_intrinsic_component(instr); |
Alyssa Rosenzweig | de8d49a | 2019-06-06 09:15:26 -0700 | [diff] [blame] | 1403 | |
Alyssa Rosenzweig | 233c0fa | 2019-07-24 12:54:59 -0700 | [diff] [blame] | 1404 | midgard_instruction st = m_st_vary_32(reg, offset); |
Alyssa Rosenzweig | c908772 | 2019-08-01 13:29:01 -0700 | [diff] [blame] | 1405 | st.load_store.arg_1 = 0x9E; |
| 1406 | st.load_store.arg_2 = 0x1E; |
Alyssa Rosenzweig | a3ae3cb | 2019-06-17 12:35:57 -0700 | [diff] [blame] | 1407 | st.load_store.swizzle = SWIZZLE_XYZW << (2*component); |
Alyssa Rosenzweig | 4aced18 | 2019-06-06 08:21:27 -0700 | [diff] [blame] | 1408 | emit_mir_instruction(ctx, st); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1409 | } else { |
Tomeu Vizoso | f0b1bbe | 2019-03-08 15:04:50 +0100 | [diff] [blame] | 1410 | DBG("Unknown store\n"); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1411 | assert(0); |
| 1412 | } |
| 1413 | |
| 1414 | break; |
| 1415 | |
Alyssa Rosenzweig | 541b329 | 2019-07-01 15:02:40 -0700 | [diff] [blame] | 1416 | /* Special case of store_output for lowered blend shaders */ |
| 1417 | case nir_intrinsic_store_raw_output_pan: |
| 1418 | assert (ctx->stage == MESA_SHADER_FRAGMENT); |
| 1419 | reg = nir_src_index(ctx, &instr->src[0]); |
| 1420 | |
| 1421 | midgard_instruction move = v_mov(reg, blank_alu_src, SSA_FIXED_REGISTER(0)); |
| 1422 | emit_mir_instruction(ctx, move); |
| 1423 | ctx->fragment_output = reg; |
| 1424 | |
| 1425 | break; |
| 1426 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1427 | case nir_intrinsic_load_alpha_ref_float: |
| 1428 | assert(instr->dest.is_ssa); |
| 1429 | |
| 1430 | float ref_value = ctx->alpha_ref; |
| 1431 | |
Alyssa Rosenzweig | 463164b | 2019-07-29 08:31:03 -0700 | [diff] [blame] | 1432 | /* See emit_load_const */ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1433 | float *v = ralloc_array(NULL, float, 4); |
| 1434 | memcpy(v, &ref_value, sizeof(float)); |
Alyssa Rosenzweig | 463164b | 2019-07-29 08:31:03 -0700 | [diff] [blame] | 1435 | _mesa_hash_table_u64_insert(ctx->ssa_constants, (instr->dest.ssa.index << 1) + 1, v); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1436 | break; |
| 1437 | |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 1438 | case nir_intrinsic_load_viewport_scale: |
| 1439 | case nir_intrinsic_load_viewport_offset: |
Boris Brezillon | bd49c8f | 2019-06-14 09:59:20 +0200 | [diff] [blame] | 1440 | emit_sysval_read(ctx, &instr->instr); |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 1441 | break; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1442 | |
| 1443 | default: |
| 1444 | printf ("Unhandled intrinsic\n"); |
| 1445 | assert(0); |
| 1446 | break; |
| 1447 | } |
| 1448 | } |
| 1449 | |
| 1450 | static unsigned |
| 1451 | midgard_tex_format(enum glsl_sampler_dim dim) |
| 1452 | { |
| 1453 | switch (dim) { |
Alyssa Rosenzweig | 83c02a5 | 2019-06-17 14:26:08 -0700 | [diff] [blame] | 1454 | case GLSL_SAMPLER_DIM_1D: |
| 1455 | case GLSL_SAMPLER_DIM_BUF: |
| 1456 | return MALI_TEX_1D; |
| 1457 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1458 | case GLSL_SAMPLER_DIM_2D: |
| 1459 | case GLSL_SAMPLER_DIM_EXTERNAL: |
Alyssa Rosenzweig | 83c02a5 | 2019-06-17 14:26:08 -0700 | [diff] [blame] | 1460 | return MALI_TEX_2D; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1461 | |
| 1462 | case GLSL_SAMPLER_DIM_3D: |
Alyssa Rosenzweig | 83c02a5 | 2019-06-17 14:26:08 -0700 | [diff] [blame] | 1463 | return MALI_TEX_3D; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1464 | |
| 1465 | case GLSL_SAMPLER_DIM_CUBE: |
Alyssa Rosenzweig | 83c02a5 | 2019-06-17 14:26:08 -0700 | [diff] [blame] | 1466 | return MALI_TEX_CUBE; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1467 | |
| 1468 | default: |
Tomeu Vizoso | f0b1bbe | 2019-03-08 15:04:50 +0100 | [diff] [blame] | 1469 | DBG("Unknown sampler dim type\n"); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1470 | assert(0); |
| 1471 | return 0; |
| 1472 | } |
| 1473 | } |
| 1474 | |
Alyssa Rosenzweig | 213b628 | 2019-06-18 09:02:20 -0700 | [diff] [blame] | 1475 | /* Tries to attach an explicit LOD / bias as a constant. Returns whether this |
| 1476 | * was successful */ |
| 1477 | |
| 1478 | static bool |
| 1479 | pan_attach_constant_bias( |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1480 | compiler_context *ctx, |
| 1481 | nir_src lod, |
| 1482 | midgard_texture_word *word) |
Alyssa Rosenzweig | 213b628 | 2019-06-18 09:02:20 -0700 | [diff] [blame] | 1483 | { |
| 1484 | /* To attach as constant, it has to *be* constant */ |
| 1485 | |
| 1486 | if (!nir_src_is_const(lod)) |
| 1487 | return false; |
| 1488 | |
| 1489 | float f = nir_src_as_float(lod); |
| 1490 | |
| 1491 | /* Break into fixed-point */ |
| 1492 | signed lod_int = f; |
| 1493 | float lod_frac = f - lod_int; |
| 1494 | |
| 1495 | /* Carry over negative fractions */ |
| 1496 | if (lod_frac < 0.0) { |
| 1497 | lod_int--; |
| 1498 | lod_frac += 1.0; |
| 1499 | } |
| 1500 | |
| 1501 | /* Encode */ |
| 1502 | word->bias = float_to_ubyte(lod_frac); |
| 1503 | word->bias_int = lod_int; |
| 1504 | |
| 1505 | return true; |
| 1506 | } |
| 1507 | |
Alyssa Rosenzweig | e32af4b | 2019-06-26 16:12:28 -0700 | [diff] [blame] | 1508 | static enum mali_sampler_type |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1509 | midgard_sampler_type(nir_alu_type t) { |
| 1510 | switch (nir_alu_type_get_base_type(t)) |
| 1511 | { |
| 1512 | case nir_type_float: |
| 1513 | return MALI_SAMPLER_FLOAT; |
| 1514 | case nir_type_int: |
| 1515 | return MALI_SAMPLER_SIGNED; |
| 1516 | case nir_type_uint: |
| 1517 | return MALI_SAMPLER_UNSIGNED; |
| 1518 | default: |
| 1519 | unreachable("Unknown sampler type"); |
Alyssa Rosenzweig | e32af4b | 2019-06-26 16:12:28 -0700 | [diff] [blame] | 1520 | } |
| 1521 | } |
| 1522 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1523 | static void |
Boris Brezillon | 5c17f84 | 2019-06-17 21:47:46 +0200 | [diff] [blame] | 1524 | emit_texop_native(compiler_context *ctx, nir_tex_instr *instr, |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1525 | unsigned midgard_texop) |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1526 | { |
| 1527 | /* TODO */ |
| 1528 | //assert (!instr->sampler); |
| 1529 | //assert (!instr->texture_array_size); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1530 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1531 | int texture_index = instr->texture_index; |
| 1532 | int sampler_index = texture_index; |
| 1533 | |
Alyssa Rosenzweig | b0e8941 | 2019-06-18 09:02:35 -0700 | [diff] [blame] | 1534 | /* No helper to build texture words -- we do it all here */ |
| 1535 | midgard_instruction ins = { |
| 1536 | .type = TAG_TEXTURE_4, |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 1537 | .mask = 0xF, |
Alyssa Rosenzweig | b6946d3 | 2019-07-25 08:44:53 -0700 | [diff] [blame] | 1538 | .ssa_args = { |
| 1539 | .dest = nir_dest_index(ctx, &instr->dest), |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1540 | .src = { -1, -1, -1 }, |
Alyssa Rosenzweig | b6946d3 | 2019-07-25 08:44:53 -0700 | [diff] [blame] | 1541 | }, |
Alyssa Rosenzweig | b0e8941 | 2019-06-18 09:02:35 -0700 | [diff] [blame] | 1542 | .texture = { |
| 1543 | .op = midgard_texop, |
| 1544 | .format = midgard_tex_format(instr->sampler_dim), |
| 1545 | .texture_handle = texture_index, |
| 1546 | .sampler_handle = sampler_index, |
Alyssa Rosenzweig | b0e8941 | 2019-06-18 09:02:35 -0700 | [diff] [blame] | 1547 | .swizzle = SWIZZLE_XYZW, |
Alyssa Rosenzweig | b6946d3 | 2019-07-25 08:44:53 -0700 | [diff] [blame] | 1548 | .in_reg_swizzle = SWIZZLE_XYZW, |
Alyssa Rosenzweig | b0e8941 | 2019-06-18 09:02:35 -0700 | [diff] [blame] | 1549 | |
| 1550 | /* TODO: half */ |
| 1551 | .in_reg_full = 1, |
| 1552 | .out_full = 1, |
| 1553 | |
Alyssa Rosenzweig | e32af4b | 2019-06-26 16:12:28 -0700 | [diff] [blame] | 1554 | .sampler_type = midgard_sampler_type(instr->dest_type), |
Alyssa Rosenzweig | b0e8941 | 2019-06-18 09:02:35 -0700 | [diff] [blame] | 1555 | } |
| 1556 | }; |
Alyssa Rosenzweig | 8429bee | 2019-06-14 16:03:39 -0700 | [diff] [blame] | 1557 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1558 | for (unsigned i = 0; i < instr->num_srcs; ++i) { |
Alyssa Rosenzweig | a19ca34 | 2019-06-11 09:23:05 -0700 | [diff] [blame] | 1559 | int index = nir_src_index(ctx, &instr->src[i].src); |
| 1560 | midgard_vector_alu_src alu_src = blank_alu_src; |
| 1561 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1562 | switch (instr->src[i].src_type) { |
| 1563 | case nir_tex_src_coord: { |
Alyssa Rosenzweig | b6946d3 | 2019-07-25 08:44:53 -0700 | [diff] [blame] | 1564 | emit_explicit_constant(ctx, index, index); |
| 1565 | |
| 1566 | /* Texelfetch coordinates uses all four elements |
| 1567 | * (xyz/index) regardless of texture dimensionality, |
| 1568 | * which means it's necessary to zero the unused |
| 1569 | * components to keep everything happy */ |
| 1570 | |
| 1571 | if (midgard_texop == TEXTURE_OP_TEXEL_FETCH) { |
| 1572 | unsigned old_index = index; |
| 1573 | |
| 1574 | index = make_compiler_temp(ctx); |
| 1575 | |
| 1576 | /* mov index, old_index */ |
| 1577 | midgard_instruction mov = v_mov(old_index, blank_alu_src, index); |
| 1578 | mov.mask = 0x3; |
| 1579 | emit_mir_instruction(ctx, mov); |
| 1580 | |
| 1581 | /* mov index.zw, #0 */ |
| 1582 | mov = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), |
| 1583 | blank_alu_src, index); |
| 1584 | mov.has_constants = true; |
| 1585 | mov.mask = (1 << COMPONENT_Z) | (1 << COMPONENT_W); |
| 1586 | emit_mir_instruction(ctx, mov); |
| 1587 | } |
| 1588 | |
Alyssa Rosenzweig | 70b3e5d | 2019-03-28 04:27:13 +0000 | [diff] [blame] | 1589 | if (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE) { |
Alyssa Rosenzweig | faf8ad4 | 2019-06-24 14:39:25 -0700 | [diff] [blame] | 1590 | /* texelFetch is undefined on samplerCube */ |
| 1591 | assert(midgard_texop != TEXTURE_OP_TEXEL_FETCH); |
| 1592 | |
Alyssa Rosenzweig | be56840 | 2019-07-25 07:09:40 -0700 | [diff] [blame] | 1593 | /* For cubemaps, we use a special ld/st op to |
| 1594 | * select the face and copy the xy into the |
Alyssa Rosenzweig | a19ca34 | 2019-06-11 09:23:05 -0700 | [diff] [blame] | 1595 | * texture register */ |
Alyssa Rosenzweig | 70b3e5d | 2019-03-28 04:27:13 +0000 | [diff] [blame] | 1596 | |
Alyssa Rosenzweig | b6946d3 | 2019-07-25 08:44:53 -0700 | [diff] [blame] | 1597 | unsigned temp = make_compiler_temp(ctx); |
Alyssa Rosenzweig | b6946d3 | 2019-07-25 08:44:53 -0700 | [diff] [blame] | 1598 | midgard_instruction st = m_st_cubemap_coords(temp, 0); |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1599 | st.ssa_args.src[0] = index; |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 1600 | st.mask = 0x3; /* xy */ |
Alyssa Rosenzweig | 513d02c | 2019-08-01 14:28:34 -0700 | [diff] [blame] | 1601 | st.load_store.arg_1 = 0x20; |
Alyssa Rosenzweig | 70b3e5d | 2019-03-28 04:27:13 +0000 | [diff] [blame] | 1602 | st.load_store.swizzle = alu_src.swizzle; |
| 1603 | emit_mir_instruction(ctx, st); |
| 1604 | |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1605 | ins.ssa_args.src[0] = temp; |
Alyssa Rosenzweig | 70b3e5d | 2019-03-28 04:27:13 +0000 | [diff] [blame] | 1606 | } else { |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1607 | ins.ssa_args.src[0] = index; |
Alyssa Rosenzweig | b6946d3 | 2019-07-25 08:44:53 -0700 | [diff] [blame] | 1608 | } |
Alyssa Rosenzweig | 70b3e5d | 2019-03-28 04:27:13 +0000 | [diff] [blame] | 1609 | |
Alyssa Rosenzweig | b6946d3 | 2019-07-25 08:44:53 -0700 | [diff] [blame] | 1610 | if (instr->sampler_dim == GLSL_SAMPLER_DIM_2D) { |
| 1611 | /* Array component in w but NIR wants it in z */ |
| 1612 | ins.texture.in_reg_swizzle = SWIZZLE_XYZZ; |
Alyssa Rosenzweig | 70b3e5d | 2019-03-28 04:27:13 +0000 | [diff] [blame] | 1613 | } |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1614 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1615 | break; |
| 1616 | } |
| 1617 | |
Alyssa Rosenzweig | 4012e06 | 2019-06-11 09:43:08 -0700 | [diff] [blame] | 1618 | case nir_tex_src_bias: |
| 1619 | case nir_tex_src_lod: { |
Alyssa Rosenzweig | b0e8941 | 2019-06-18 09:02:35 -0700 | [diff] [blame] | 1620 | /* Try as a constant if we can */ |
| 1621 | |
| 1622 | bool is_txf = midgard_texop == TEXTURE_OP_TEXEL_FETCH; |
| 1623 | if (!is_txf && pan_attach_constant_bias(ctx, instr->src[i].src, &ins.texture)) |
| 1624 | break; |
| 1625 | |
Alyssa Rosenzweig | b0e8941 | 2019-06-18 09:02:35 -0700 | [diff] [blame] | 1626 | ins.texture.lod_register = true; |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1627 | ins.ssa_args.src[1] = index; |
Alyssa Rosenzweig | b6946d3 | 2019-07-25 08:44:53 -0700 | [diff] [blame] | 1628 | emit_explicit_constant(ctx, index, index); |
Alyssa Rosenzweig | b0e8941 | 2019-06-18 09:02:35 -0700 | [diff] [blame] | 1629 | |
Alyssa Rosenzweig | a19ca34 | 2019-06-11 09:23:05 -0700 | [diff] [blame] | 1630 | break; |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1631 | }; |
Alyssa Rosenzweig | a19ca34 | 2019-06-11 09:23:05 -0700 | [diff] [blame] | 1632 | |
Alyssa Rosenzweig | 5062b61 | 2019-06-11 09:55:18 -0700 | [diff] [blame] | 1633 | default: |
| 1634 | unreachable("Unknown texture source type\n"); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1635 | } |
| 1636 | } |
| 1637 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1638 | emit_mir_instruction(ctx, ins); |
| 1639 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1640 | /* Used for .cont and .last hinting */ |
| 1641 | ctx->texture_op_count++; |
| 1642 | } |
| 1643 | |
| 1644 | static void |
Boris Brezillon | 5c17f84 | 2019-06-17 21:47:46 +0200 | [diff] [blame] | 1645 | emit_tex(compiler_context *ctx, nir_tex_instr *instr) |
| 1646 | { |
Alyssa Rosenzweig | 6729912 | 2019-06-24 10:35:03 -0700 | [diff] [blame] | 1647 | /* Fixup op, since only textureLod is permitted in VS but NIR can give |
| 1648 | * generic tex in some cases (which confuses the hardware) */ |
| 1649 | |
| 1650 | bool is_vertex = ctx->stage == MESA_SHADER_VERTEX; |
| 1651 | |
| 1652 | if (is_vertex && instr->op == nir_texop_tex) |
| 1653 | instr->op = nir_texop_txl; |
| 1654 | |
Boris Brezillon | 5c17f84 | 2019-06-17 21:47:46 +0200 | [diff] [blame] | 1655 | switch (instr->op) { |
| 1656 | case nir_texop_tex: |
| 1657 | case nir_texop_txb: |
| 1658 | emit_texop_native(ctx, instr, TEXTURE_OP_NORMAL); |
| 1659 | break; |
| 1660 | case nir_texop_txl: |
| 1661 | emit_texop_native(ctx, instr, TEXTURE_OP_LOD); |
| 1662 | break; |
Alyssa Rosenzweig | f4bb7f0 | 2019-06-21 16:17:34 -0700 | [diff] [blame] | 1663 | case nir_texop_txf: |
| 1664 | emit_texop_native(ctx, instr, TEXTURE_OP_TEXEL_FETCH); |
| 1665 | break; |
Boris Brezillon | c355886 | 2019-06-17 22:13:04 +0200 | [diff] [blame] | 1666 | case nir_texop_txs: |
| 1667 | emit_sysval_read(ctx, &instr->instr); |
| 1668 | break; |
Boris Brezillon | 5c17f84 | 2019-06-17 21:47:46 +0200 | [diff] [blame] | 1669 | default: |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1670 | unreachable("Unhanlded texture op"); |
Boris Brezillon | 5c17f84 | 2019-06-17 21:47:46 +0200 | [diff] [blame] | 1671 | } |
| 1672 | } |
| 1673 | |
| 1674 | static void |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1675 | emit_jump(compiler_context *ctx, nir_jump_instr *instr) |
| 1676 | { |
| 1677 | switch (instr->type) { |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1678 | case nir_jump_break: { |
| 1679 | /* Emit a branch out of the loop */ |
| 1680 | struct midgard_instruction br = v_branch(false, false); |
| 1681 | br.branch.target_type = TARGET_BREAK; |
| 1682 | br.branch.target_break = ctx->current_loop_depth; |
| 1683 | emit_mir_instruction(ctx, br); |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1684 | break; |
| 1685 | } |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1686 | |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 1687 | default: |
| 1688 | DBG("Unknown jump type %d\n", instr->type); |
| 1689 | break; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1690 | } |
| 1691 | } |
| 1692 | |
| 1693 | static void |
| 1694 | emit_instr(compiler_context *ctx, struct nir_instr *instr) |
| 1695 | { |
| 1696 | switch (instr->type) { |
| 1697 | case nir_instr_type_load_const: |
| 1698 | emit_load_const(ctx, nir_instr_as_load_const(instr)); |
| 1699 | break; |
| 1700 | |
| 1701 | case nir_instr_type_intrinsic: |
| 1702 | emit_intrinsic(ctx, nir_instr_as_intrinsic(instr)); |
| 1703 | break; |
| 1704 | |
| 1705 | case nir_instr_type_alu: |
| 1706 | emit_alu(ctx, nir_instr_as_alu(instr)); |
| 1707 | break; |
| 1708 | |
| 1709 | case nir_instr_type_tex: |
| 1710 | emit_tex(ctx, nir_instr_as_tex(instr)); |
| 1711 | break; |
| 1712 | |
| 1713 | case nir_instr_type_jump: |
| 1714 | emit_jump(ctx, nir_instr_as_jump(instr)); |
| 1715 | break; |
| 1716 | |
| 1717 | case nir_instr_type_ssa_undef: |
| 1718 | /* Spurious */ |
| 1719 | break; |
| 1720 | |
| 1721 | default: |
Tomeu Vizoso | f0b1bbe | 2019-03-08 15:04:50 +0100 | [diff] [blame] | 1722 | DBG("Unhandled instruction type\n"); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1723 | break; |
| 1724 | } |
| 1725 | } |
| 1726 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1727 | |
| 1728 | /* ALU instructions can inline or embed constants, which decreases register |
| 1729 | * pressure and saves space. */ |
| 1730 | |
| 1731 | #define CONDITIONAL_ATTACH(src) { \ |
| 1732 | void *entry = _mesa_hash_table_u64_search(ctx->ssa_constants, alu->ssa_args.src + 1); \ |
| 1733 | \ |
| 1734 | if (entry) { \ |
| 1735 | attach_constants(ctx, alu, entry, alu->ssa_args.src + 1); \ |
| 1736 | alu->ssa_args.src = SSA_FIXED_REGISTER(REGISTER_CONSTANT); \ |
| 1737 | } \ |
| 1738 | } |
| 1739 | |
| 1740 | static void |
| 1741 | inline_alu_constants(compiler_context *ctx) |
| 1742 | { |
| 1743 | mir_foreach_instr(ctx, alu) { |
| 1744 | /* Other instructions cannot inline constants */ |
| 1745 | if (alu->type != TAG_ALU_4) continue; |
| 1746 | |
| 1747 | /* If there is already a constant here, we can do nothing */ |
| 1748 | if (alu->has_constants) continue; |
| 1749 | |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1750 | CONDITIONAL_ATTACH(src[0]); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1751 | |
| 1752 | if (!alu->has_constants) { |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1753 | CONDITIONAL_ATTACH(src[1]) |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1754 | } else if (!alu->inline_constant) { |
| 1755 | /* Corner case: _two_ vec4 constants, for instance with a |
| 1756 | * csel. For this case, we can only use a constant |
| 1757 | * register for one, we'll have to emit a move for the |
| 1758 | * other. Note, if both arguments are constants, then |
| 1759 | * necessarily neither argument depends on the value of |
| 1760 | * any particular register. As the destination register |
| 1761 | * will be wiped, that means we can spill the constant |
| 1762 | * to the destination register. |
| 1763 | */ |
| 1764 | |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1765 | void *entry = _mesa_hash_table_u64_search(ctx->ssa_constants, alu->ssa_args.src[1] + 1); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1766 | unsigned scratch = alu->ssa_args.dest; |
| 1767 | |
| 1768 | if (entry) { |
Alyssa Rosenzweig | 565c446 | 2019-06-17 09:40:14 -0700 | [diff] [blame] | 1769 | midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), blank_alu_src, scratch); |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1770 | attach_constants(ctx, &ins, entry, alu->ssa_args.src[1] + 1); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1771 | |
| 1772 | /* Force a break XXX Defer r31 writes */ |
| 1773 | ins.unit = UNIT_VLUT; |
| 1774 | |
| 1775 | /* Set the source */ |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1776 | alu->ssa_args.src[1] = scratch; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1777 | |
| 1778 | /* Inject us -before- the last instruction which set r31 */ |
| 1779 | mir_insert_instruction_before(mir_prev_op(alu), ins); |
| 1780 | } |
| 1781 | } |
| 1782 | } |
| 1783 | } |
| 1784 | |
Alyssa Rosenzweig | 62a5ee3 | 2019-07-26 14:25:25 -0700 | [diff] [blame] | 1785 | /* Being a little silly with the names, but returns the op that is the bitwise |
| 1786 | * inverse of the op with the argument switched. I.e. (f and g are |
| 1787 | * contrapositives): |
| 1788 | * |
| 1789 | * f(a, b) = ~g(b, a) |
| 1790 | * |
| 1791 | * Corollary: if g is the contrapositve of f, f is the contrapositive of g: |
| 1792 | * |
| 1793 | * f(a, b) = ~g(b, a) |
| 1794 | * ~f(a, b) = g(b, a) |
| 1795 | * ~f(a, b) = ~h(a, b) where h is the contrapositive of g |
| 1796 | * f(a, b) = h(a, b) |
| 1797 | * |
| 1798 | * Thus we define this function in pairs. |
| 1799 | */ |
| 1800 | |
| 1801 | static inline midgard_alu_op |
| 1802 | mir_contrapositive(midgard_alu_op op) |
| 1803 | { |
| 1804 | switch (op) { |
| 1805 | case midgard_alu_op_flt: |
| 1806 | return midgard_alu_op_fle; |
| 1807 | case midgard_alu_op_fle: |
| 1808 | return midgard_alu_op_flt; |
| 1809 | |
| 1810 | case midgard_alu_op_ilt: |
| 1811 | return midgard_alu_op_ile; |
| 1812 | case midgard_alu_op_ile: |
| 1813 | return midgard_alu_op_ilt; |
| 1814 | |
| 1815 | default: |
| 1816 | unreachable("No known contrapositive"); |
| 1817 | } |
| 1818 | } |
| 1819 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1820 | /* Midgard supports two types of constants, embedded constants (128-bit) and |
| 1821 | * inline constants (16-bit). Sometimes, especially with scalar ops, embedded |
| 1822 | * constants can be demoted to inline constants, for space savings and |
| 1823 | * sometimes a performance boost */ |
| 1824 | |
| 1825 | static void |
| 1826 | embedded_to_inline_constant(compiler_context *ctx) |
| 1827 | { |
| 1828 | mir_foreach_instr(ctx, ins) { |
| 1829 | if (!ins->has_constants) continue; |
| 1830 | |
| 1831 | if (ins->ssa_args.inline_constant) continue; |
| 1832 | |
| 1833 | /* Blend constants must not be inlined by definition */ |
| 1834 | if (ins->has_blend_constant) continue; |
| 1835 | |
Alyssa Rosenzweig | e92caad | 2019-07-01 20:02:57 -0700 | [diff] [blame] | 1836 | /* We can inline 32-bit (sometimes) or 16-bit (usually) */ |
| 1837 | bool is_16 = ins->alu.reg_mode == midgard_reg_mode_16; |
| 1838 | bool is_32 = ins->alu.reg_mode == midgard_reg_mode_32; |
| 1839 | |
| 1840 | if (!(is_16 || is_32)) |
| 1841 | continue; |
| 1842 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1843 | /* src1 cannot be an inline constant due to encoding |
| 1844 | * restrictions. So, if possible we try to flip the arguments |
| 1845 | * in that case */ |
| 1846 | |
| 1847 | int op = ins->alu.op; |
| 1848 | |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1849 | if (ins->ssa_args.src[0] == SSA_FIXED_REGISTER(REGISTER_CONSTANT)) { |
Alyssa Rosenzweig | 62a5ee3 | 2019-07-26 14:25:25 -0700 | [diff] [blame] | 1850 | bool flip = alu_opcode_props[op].props & OP_COMMUTES; |
| 1851 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1852 | switch (op) { |
Alyssa Rosenzweig | 62a5ee3 | 2019-07-26 14:25:25 -0700 | [diff] [blame] | 1853 | /* Conditionals can be inverted */ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1854 | case midgard_alu_op_flt: |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1855 | case midgard_alu_op_ilt: |
Alyssa Rosenzweig | 62a5ee3 | 2019-07-26 14:25:25 -0700 | [diff] [blame] | 1856 | case midgard_alu_op_fle: |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1857 | case midgard_alu_op_ile: |
Alyssa Rosenzweig | 62a5ee3 | 2019-07-26 14:25:25 -0700 | [diff] [blame] | 1858 | ins->alu.op = mir_contrapositive(ins->alu.op); |
| 1859 | ins->invert = true; |
| 1860 | flip = true; |
| 1861 | break; |
| 1862 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1863 | case midgard_alu_op_fcsel: |
| 1864 | case midgard_alu_op_icsel: |
Alyssa Rosenzweig | 1f345bc | 2019-04-24 01:15:15 +0000 | [diff] [blame] | 1865 | DBG("Missed non-commutative flip (%s)\n", alu_opcode_props[op].name); |
Alyssa Rosenzweig | bb1aff3 | 2019-04-24 02:18:28 +0000 | [diff] [blame] | 1866 | default: |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1867 | break; |
Alyssa Rosenzweig | bb1aff3 | 2019-04-24 02:18:28 +0000 | [diff] [blame] | 1868 | } |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1869 | |
Alyssa Rosenzweig | 62a5ee3 | 2019-07-26 14:25:25 -0700 | [diff] [blame] | 1870 | if (flip) { |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1871 | /* Flip the SSA numbers */ |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1872 | ins->ssa_args.src[0] = ins->ssa_args.src[1]; |
| 1873 | ins->ssa_args.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1874 | |
| 1875 | /* And flip the modifiers */ |
| 1876 | |
| 1877 | unsigned src_temp; |
| 1878 | |
| 1879 | src_temp = ins->alu.src2; |
| 1880 | ins->alu.src2 = ins->alu.src1; |
| 1881 | ins->alu.src1 = src_temp; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1882 | } |
| 1883 | } |
| 1884 | |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1885 | if (ins->ssa_args.src[1] == SSA_FIXED_REGISTER(REGISTER_CONSTANT)) { |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1886 | /* Extract the source information */ |
| 1887 | |
| 1888 | midgard_vector_alu_src *src; |
| 1889 | int q = ins->alu.src2; |
| 1890 | midgard_vector_alu_src *m = (midgard_vector_alu_src *) &q; |
| 1891 | src = m; |
| 1892 | |
| 1893 | /* Component is from the swizzle, e.g. r26.w -> w component. TODO: What if x is masked out? */ |
| 1894 | int component = src->swizzle & 3; |
| 1895 | |
| 1896 | /* Scale constant appropriately, if we can legally */ |
| 1897 | uint16_t scaled_constant = 0; |
| 1898 | |
Alyssa Rosenzweig | e92caad | 2019-07-01 20:02:57 -0700 | [diff] [blame] | 1899 | if (midgard_is_integer_op(op) || is_16) { |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1900 | unsigned int *iconstants = (unsigned int *) ins->constants; |
| 1901 | scaled_constant = (uint16_t) iconstants[component]; |
| 1902 | |
| 1903 | /* Constant overflow after resize */ |
| 1904 | if (scaled_constant != iconstants[component]) |
| 1905 | continue; |
| 1906 | } else { |
Alyssa Rosenzweig | 3978614 | 2019-04-28 15:46:47 +0000 | [diff] [blame] | 1907 | float original = (float) ins->constants[component]; |
| 1908 | scaled_constant = _mesa_float_to_half(original); |
| 1909 | |
| 1910 | /* Check for loss of precision. If this is |
| 1911 | * mediump, we don't care, but for a highp |
| 1912 | * shader, we need to pay attention. NIR |
| 1913 | * doesn't yet tell us which mode we're in! |
| 1914 | * Practically this prevents most constants |
| 1915 | * from being inlined, sadly. */ |
| 1916 | |
| 1917 | float fp32 = _mesa_half_to_float(scaled_constant); |
| 1918 | |
| 1919 | if (fp32 != original) |
| 1920 | continue; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1921 | } |
| 1922 | |
| 1923 | /* We don't know how to handle these with a constant */ |
| 1924 | |
Alyssa Rosenzweig | c45487b | 2019-07-26 11:52:30 -0700 | [diff] [blame] | 1925 | if (mir_nontrivial_source2_mod_simple(ins) || src->rep_low || src->rep_high) { |
Tomeu Vizoso | f0b1bbe | 2019-03-08 15:04:50 +0100 | [diff] [blame] | 1926 | DBG("Bailing inline constant...\n"); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1927 | continue; |
| 1928 | } |
| 1929 | |
| 1930 | /* Make sure that the constant is not itself a |
| 1931 | * vector by checking if all accessed values |
| 1932 | * (by the swizzle) are the same. */ |
| 1933 | |
| 1934 | uint32_t *cons = (uint32_t *) ins->constants; |
| 1935 | uint32_t value = cons[component]; |
| 1936 | |
| 1937 | bool is_vector = false; |
Alyssa Rosenzweig | f8b18a4 | 2019-07-01 18:51:48 -0700 | [diff] [blame] | 1938 | unsigned mask = effective_writemask(&ins->alu, ins->mask); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1939 | |
| 1940 | for (int c = 1; c < 4; ++c) { |
| 1941 | /* We only care if this component is actually used */ |
| 1942 | if (!(mask & (1 << c))) |
| 1943 | continue; |
| 1944 | |
| 1945 | uint32_t test = cons[(src->swizzle >> (2 * c)) & 3]; |
| 1946 | |
| 1947 | if (test != value) { |
| 1948 | is_vector = true; |
| 1949 | break; |
| 1950 | } |
| 1951 | } |
| 1952 | |
| 1953 | if (is_vector) |
| 1954 | continue; |
| 1955 | |
| 1956 | /* Get rid of the embedded constant */ |
| 1957 | ins->has_constants = false; |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 1958 | ins->ssa_args.src[1] = -1; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 1959 | ins->ssa_args.inline_constant = true; |
| 1960 | ins->inline_constant = scaled_constant; |
| 1961 | } |
| 1962 | } |
| 1963 | } |
| 1964 | |
Alyssa Rosenzweig | ae20bee | 2019-06-06 11:19:13 -0700 | [diff] [blame] | 1965 | /* Dead code elimination for branches at the end of a block - only one branch |
| 1966 | * per block is legal semantically */ |
| 1967 | |
| 1968 | static void |
| 1969 | midgard_opt_cull_dead_branch(compiler_context *ctx, midgard_block *block) |
| 1970 | { |
| 1971 | bool branched = false; |
| 1972 | |
| 1973 | mir_foreach_instr_in_block_safe(block, ins) { |
| 1974 | if (!midgard_is_branch_unit(ins->unit)) continue; |
| 1975 | |
| 1976 | /* We ignore prepacked branches since the fragment epilogue is |
| 1977 | * just generally special */ |
| 1978 | if (ins->prepacked_branch) continue; |
| 1979 | |
Alyssa Rosenzweig | e9703fb | 2019-06-10 08:21:24 -0700 | [diff] [blame] | 1980 | /* Discards are similarly special and may not correspond to the |
| 1981 | * end of a block */ |
| 1982 | |
| 1983 | if (ins->branch.target_type == TARGET_DISCARD) continue; |
| 1984 | |
Alyssa Rosenzweig | ae20bee | 2019-06-06 11:19:13 -0700 | [diff] [blame] | 1985 | if (branched) { |
| 1986 | /* We already branched, so this is dead */ |
| 1987 | mir_remove_instruction(ins); |
| 1988 | } |
| 1989 | |
| 1990 | branched = true; |
| 1991 | } |
| 1992 | } |
| 1993 | |
Alyssa Rosenzweig | 4a03d37 | 2019-05-23 03:01:32 +0000 | [diff] [blame] | 1994 | /* fmov.pos is an idiom for fpos. Propoagate the .pos up to the source, so then |
| 1995 | * the move can be propagated away entirely */ |
| 1996 | |
| 1997 | static bool |
Alyssa Rosenzweig | 6780481 | 2019-06-05 15:17:45 -0700 | [diff] [blame] | 1998 | mir_compose_float_outmod(midgard_outmod_float *outmod, midgard_outmod_float comp) |
Alyssa Rosenzweig | 4a03d37 | 2019-05-23 03:01:32 +0000 | [diff] [blame] | 1999 | { |
| 2000 | /* Nothing to do */ |
| 2001 | if (comp == midgard_outmod_none) |
| 2002 | return true; |
| 2003 | |
| 2004 | if (*outmod == midgard_outmod_none) { |
| 2005 | *outmod = comp; |
| 2006 | return true; |
| 2007 | } |
| 2008 | |
| 2009 | /* TODO: Compose rules */ |
| 2010 | return false; |
| 2011 | } |
| 2012 | |
| 2013 | static bool |
| 2014 | midgard_opt_pos_propagate(compiler_context *ctx, midgard_block *block) |
| 2015 | { |
| 2016 | bool progress = false; |
| 2017 | |
| 2018 | mir_foreach_instr_in_block_safe(block, ins) { |
| 2019 | if (ins->type != TAG_ALU_4) continue; |
| 2020 | if (ins->alu.op != midgard_alu_op_fmov) continue; |
| 2021 | if (ins->alu.outmod != midgard_outmod_pos) continue; |
| 2022 | |
| 2023 | /* TODO: Registers? */ |
Alyssa Rosenzweig | d4bcca1 | 2019-08-02 15:25:02 -0700 | [diff] [blame] | 2024 | unsigned src = ins->ssa_args.src[1]; |
Alyssa Rosenzweig | 9beb339 | 2019-07-26 11:30:06 -0700 | [diff] [blame] | 2025 | if (src & IS_REG) continue; |
Alyssa Rosenzweig | 6780481 | 2019-06-05 15:17:45 -0700 | [diff] [blame] | 2026 | assert(!mir_has_multiple_writes(ctx, src)); |
Alyssa Rosenzweig | 4a03d37 | 2019-05-23 03:01:32 +0000 | [diff] [blame] | 2027 | |
| 2028 | /* There might be a source modifier, too */ |
| 2029 | if (mir_nontrivial_source2_mod(ins)) continue; |
| 2030 | |
| 2031 | /* Backpropagate the modifier */ |
| 2032 | mir_foreach_instr_in_block_from_rev(block, v, mir_prev_op(ins)) { |
| 2033 | if (v->type != TAG_ALU_4) continue; |
| 2034 | if (v->ssa_args.dest != src) continue; |
| 2035 | |
Alyssa Rosenzweig | 6780481 | 2019-06-05 15:17:45 -0700 | [diff] [blame] | 2036 | /* Can we even take a float outmod? */ |
| 2037 | if (midgard_is_integer_out_op(v->alu.op)) continue; |
| 2038 | |
| 2039 | midgard_outmod_float temp = v->alu.outmod; |
| 2040 | progress |= mir_compose_float_outmod(&temp, ins->alu.outmod); |
Alyssa Rosenzweig | 4a03d37 | 2019-05-23 03:01:32 +0000 | [diff] [blame] | 2041 | |
| 2042 | /* Throw in the towel.. */ |
| 2043 | if (!progress) break; |
| 2044 | |
| 2045 | /* Otherwise, transfer the modifier */ |
| 2046 | v->alu.outmod = temp; |
| 2047 | ins->alu.outmod = midgard_outmod_none; |
| 2048 | |
| 2049 | break; |
| 2050 | } |
| 2051 | } |
| 2052 | |
| 2053 | return progress; |
| 2054 | } |
| 2055 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2056 | static void |
| 2057 | emit_fragment_epilogue(compiler_context *ctx) |
| 2058 | { |
Alyssa Rosenzweig | e169301 | 2019-07-24 12:52:27 -0700 | [diff] [blame] | 2059 | emit_explicit_constant(ctx, ctx->fragment_output, SSA_FIXED_REGISTER(0)); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2060 | |
| 2061 | /* Perform the actual fragment writeout. We have two writeout/branch |
| 2062 | * instructions, forming a loop until writeout is successful as per the |
| 2063 | * docs. TODO: gl_FragDepth */ |
| 2064 | |
| 2065 | EMIT(alu_br_compact_cond, midgard_jmp_writeout_op_writeout, TAG_ALU_4, 0, midgard_condition_always); |
| 2066 | EMIT(alu_br_compact_cond, midgard_jmp_writeout_op_writeout, TAG_ALU_4, -1, midgard_condition_always); |
| 2067 | } |
| 2068 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2069 | static midgard_block * |
| 2070 | emit_block(compiler_context *ctx, nir_block *block) |
| 2071 | { |
Alyssa Rosenzweig | 9aeb726 | 2019-08-02 13:48:27 -0700 | [diff] [blame] | 2072 | midgard_block *this_block = ctx->after_block; |
| 2073 | ctx->after_block = NULL; |
| 2074 | |
| 2075 | if (!this_block) |
| 2076 | this_block = calloc(sizeof(midgard_block), 1); |
| 2077 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2078 | list_addtail(&this_block->link, &ctx->blocks); |
| 2079 | |
| 2080 | this_block->is_scheduled = false; |
| 2081 | ++ctx->block_count; |
| 2082 | |
| 2083 | ctx->texture_index[0] = -1; |
| 2084 | ctx->texture_index[1] = -1; |
| 2085 | |
| 2086 | /* Set up current block */ |
| 2087 | list_inithead(&this_block->instructions); |
| 2088 | ctx->current_block = this_block; |
| 2089 | |
| 2090 | nir_foreach_instr(instr, block) { |
| 2091 | emit_instr(ctx, instr); |
| 2092 | ++ctx->instruction_count; |
| 2093 | } |
| 2094 | |
| 2095 | inline_alu_constants(ctx); |
| 2096 | embedded_to_inline_constant(ctx); |
| 2097 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2098 | /* Append fragment shader epilogue (value writeout) */ |
| 2099 | if (ctx->stage == MESA_SHADER_FRAGMENT) { |
| 2100 | if (block == nir_impl_last_block(ctx->func->impl)) { |
Alyssa Rosenzweig | 541b329 | 2019-07-01 15:02:40 -0700 | [diff] [blame] | 2101 | emit_fragment_epilogue(ctx); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2102 | } |
| 2103 | } |
| 2104 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2105 | /* Allow the next control flow to access us retroactively, for |
| 2106 | * branching etc */ |
| 2107 | ctx->current_block = this_block; |
| 2108 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2109 | return this_block; |
| 2110 | } |
| 2111 | |
| 2112 | static midgard_block *emit_cf_list(struct compiler_context *ctx, struct exec_list *list); |
| 2113 | |
| 2114 | static void |
| 2115 | emit_if(struct compiler_context *ctx, nir_if *nif) |
| 2116 | { |
Alyssa Rosenzweig | 9aeb726 | 2019-08-02 13:48:27 -0700 | [diff] [blame] | 2117 | midgard_block *before_block = ctx->current_block; |
| 2118 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2119 | /* Conditional branches expect the condition in r31.w; emit a move for |
| 2120 | * that in the _previous_ block (which is the current block). */ |
Alyssa Rosenzweig | 8b15f8a | 2019-04-21 00:09:13 +0000 | [diff] [blame] | 2121 | emit_condition(ctx, &nif->condition, true, COMPONENT_X); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2122 | |
| 2123 | /* Speculatively emit the branch, but we can't fill it in until later */ |
| 2124 | EMIT(branch, true, true); |
| 2125 | midgard_instruction *then_branch = mir_last_in_block(ctx->current_block); |
| 2126 | |
Alyssa Rosenzweig | 9aeb726 | 2019-08-02 13:48:27 -0700 | [diff] [blame] | 2127 | /* Emit the two subblocks. */ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2128 | midgard_block *then_block = emit_cf_list(ctx, &nif->then_list); |
Alyssa Rosenzweig | 9aeb726 | 2019-08-02 13:48:27 -0700 | [diff] [blame] | 2129 | midgard_block *end_then_block = ctx->current_block; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2130 | |
| 2131 | /* Emit a jump from the end of the then block to the end of the else */ |
| 2132 | EMIT(branch, false, false); |
| 2133 | midgard_instruction *then_exit = mir_last_in_block(ctx->current_block); |
| 2134 | |
| 2135 | /* Emit second block, and check if it's empty */ |
| 2136 | |
| 2137 | int else_idx = ctx->block_count; |
| 2138 | int count_in = ctx->instruction_count; |
| 2139 | midgard_block *else_block = emit_cf_list(ctx, &nif->else_list); |
Alyssa Rosenzweig | 9aeb726 | 2019-08-02 13:48:27 -0700 | [diff] [blame] | 2140 | midgard_block *end_else_block = ctx->current_block; |
Alyssa Rosenzweig | 2c74709 | 2019-02-17 05:14:24 +0000 | [diff] [blame] | 2141 | int after_else_idx = ctx->block_count; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2142 | |
| 2143 | /* Now that we have the subblocks emitted, fix up the branches */ |
| 2144 | |
| 2145 | assert(then_block); |
| 2146 | assert(else_block); |
| 2147 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2148 | if (ctx->instruction_count == count_in) { |
| 2149 | /* The else block is empty, so don't emit an exit jump */ |
| 2150 | mir_remove_instruction(then_exit); |
Alyssa Rosenzweig | 2c74709 | 2019-02-17 05:14:24 +0000 | [diff] [blame] | 2151 | then_branch->branch.target_block = after_else_idx; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2152 | } else { |
| 2153 | then_branch->branch.target_block = else_idx; |
Alyssa Rosenzweig | 2c74709 | 2019-02-17 05:14:24 +0000 | [diff] [blame] | 2154 | then_exit->branch.target_block = after_else_idx; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2155 | } |
Alyssa Rosenzweig | 9aeb726 | 2019-08-02 13:48:27 -0700 | [diff] [blame] | 2156 | |
| 2157 | /* Wire up the successors */ |
| 2158 | |
| 2159 | ctx->after_block = calloc(sizeof(midgard_block), 1); |
| 2160 | |
| 2161 | midgard_block_add_successor(before_block, then_block); |
| 2162 | midgard_block_add_successor(before_block, else_block); |
| 2163 | |
| 2164 | midgard_block_add_successor(end_then_block, ctx->after_block); |
| 2165 | midgard_block_add_successor(end_else_block, ctx->after_block); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2166 | } |
| 2167 | |
| 2168 | static void |
| 2169 | emit_loop(struct compiler_context *ctx, nir_loop *nloop) |
| 2170 | { |
| 2171 | /* Remember where we are */ |
| 2172 | midgard_block *start_block = ctx->current_block; |
| 2173 | |
Alyssa Rosenzweig | 521ac6e | 2019-04-21 16:22:44 +0000 | [diff] [blame] | 2174 | /* Allocate a loop number, growing the current inner loop depth */ |
| 2175 | int loop_idx = ++ctx->current_loop_depth; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2176 | |
| 2177 | /* Get index from before the body so we can loop back later */ |
| 2178 | int start_idx = ctx->block_count; |
| 2179 | |
| 2180 | /* Emit the body itself */ |
Alyssa Rosenzweig | 9aeb726 | 2019-08-02 13:48:27 -0700 | [diff] [blame] | 2181 | midgard_block *loop_block = emit_cf_list(ctx, &nloop->body); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2182 | |
| 2183 | /* Branch back to loop back */ |
| 2184 | struct midgard_instruction br_back = v_branch(false, false); |
| 2185 | br_back.branch.target_block = start_idx; |
| 2186 | emit_mir_instruction(ctx, br_back); |
| 2187 | |
Alyssa Rosenzweig | 9aeb726 | 2019-08-02 13:48:27 -0700 | [diff] [blame] | 2188 | /* Mark down that branch in the graph. */ |
| 2189 | midgard_block_add_successor(start_block, loop_block); |
| 2190 | midgard_block_add_successor(ctx->current_block, loop_block); |
Alyssa Rosenzweig | c0fb260 | 2019-04-21 03:29:47 +0000 | [diff] [blame] | 2191 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2192 | /* Find the index of the block about to follow us (note: we don't add |
| 2193 | * one; blocks are 0-indexed so we get a fencepost problem) */ |
| 2194 | int break_block_idx = ctx->block_count; |
| 2195 | |
| 2196 | /* Fix up the break statements we emitted to point to the right place, |
| 2197 | * now that we can allocate a block number for them */ |
Alyssa Rosenzweig | 9aeb726 | 2019-08-02 13:48:27 -0700 | [diff] [blame] | 2198 | ctx->after_block = calloc(sizeof(midgard_block), 1); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2199 | |
| 2200 | list_for_each_entry_from(struct midgard_block, block, start_block, &ctx->blocks, link) { |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2201 | mir_foreach_instr_in_block(block, ins) { |
| 2202 | if (ins->type != TAG_ALU_4) continue; |
| 2203 | if (!ins->compact_branch) continue; |
| 2204 | if (ins->prepacked_branch) continue; |
| 2205 | |
| 2206 | /* We found a branch -- check the type to see if we need to do anything */ |
| 2207 | if (ins->branch.target_type != TARGET_BREAK) continue; |
| 2208 | |
| 2209 | /* It's a break! Check if it's our break */ |
| 2210 | if (ins->branch.target_break != loop_idx) continue; |
| 2211 | |
| 2212 | /* Okay, cool, we're breaking out of this loop. |
| 2213 | * Rewrite from a break to a goto */ |
| 2214 | |
| 2215 | ins->branch.target_type = TARGET_GOTO; |
| 2216 | ins->branch.target_block = break_block_idx; |
Alyssa Rosenzweig | 9aeb726 | 2019-08-02 13:48:27 -0700 | [diff] [blame] | 2217 | |
| 2218 | midgard_block_add_successor(block, ctx->after_block); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2219 | } |
| 2220 | } |
Alyssa Rosenzweig | 521ac6e | 2019-04-21 16:22:44 +0000 | [diff] [blame] | 2221 | |
| 2222 | /* Now that we've finished emitting the loop, free up the depth again |
| 2223 | * so we play nice with recursion amid nested loops */ |
| 2224 | --ctx->current_loop_depth; |
Alyssa Rosenzweig | 7ad6516 | 2019-07-09 11:10:49 -0700 | [diff] [blame] | 2225 | |
| 2226 | /* Dump loop stats */ |
| 2227 | ++ctx->loop_count; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2228 | } |
| 2229 | |
| 2230 | static midgard_block * |
| 2231 | emit_cf_list(struct compiler_context *ctx, struct exec_list *list) |
| 2232 | { |
| 2233 | midgard_block *start_block = NULL; |
| 2234 | |
| 2235 | foreach_list_typed(nir_cf_node, node, node, list) { |
| 2236 | switch (node->type) { |
| 2237 | case nir_cf_node_block: { |
| 2238 | midgard_block *block = emit_block(ctx, nir_cf_node_as_block(node)); |
| 2239 | |
| 2240 | if (!start_block) |
| 2241 | start_block = block; |
| 2242 | |
| 2243 | break; |
| 2244 | } |
| 2245 | |
| 2246 | case nir_cf_node_if: |
| 2247 | emit_if(ctx, nir_cf_node_as_if(node)); |
| 2248 | break; |
| 2249 | |
| 2250 | case nir_cf_node_loop: |
| 2251 | emit_loop(ctx, nir_cf_node_as_loop(node)); |
| 2252 | break; |
| 2253 | |
| 2254 | case nir_cf_node_function: |
| 2255 | assert(0); |
| 2256 | break; |
| 2257 | } |
| 2258 | } |
| 2259 | |
| 2260 | return start_block; |
| 2261 | } |
| 2262 | |
Alyssa Rosenzweig | 5e55c11 | 2019-02-17 03:35:03 +0000 | [diff] [blame] | 2263 | /* Due to lookahead, we need to report the first tag executed in the command |
| 2264 | * stream and in branch targets. An initial block might be empty, so iterate |
| 2265 | * until we find one that 'works' */ |
| 2266 | |
| 2267 | static unsigned |
| 2268 | midgard_get_first_tag_from_block(compiler_context *ctx, unsigned block_idx) |
| 2269 | { |
| 2270 | midgard_block *initial_block = mir_get_block(ctx, block_idx); |
| 2271 | |
| 2272 | unsigned first_tag = 0; |
| 2273 | |
Alyssa Rosenzweig | 73c40d6 | 2019-07-31 15:49:30 -0700 | [diff] [blame] | 2274 | mir_foreach_block_from(ctx, initial_block, v) { |
| 2275 | midgard_bundle *initial_bundle = |
| 2276 | util_dynarray_element(&v->bundles, midgard_bundle, 0); |
Alyssa Rosenzweig | 5e55c11 | 2019-02-17 03:35:03 +0000 | [diff] [blame] | 2277 | |
| 2278 | if (initial_bundle) { |
| 2279 | first_tag = initial_bundle->tag; |
| 2280 | break; |
| 2281 | } |
Alyssa Rosenzweig | 73c40d6 | 2019-07-31 15:49:30 -0700 | [diff] [blame] | 2282 | } |
Alyssa Rosenzweig | 5e55c11 | 2019-02-17 03:35:03 +0000 | [diff] [blame] | 2283 | |
Alyssa Rosenzweig | 5e55c11 | 2019-02-17 03:35:03 +0000 | [diff] [blame] | 2284 | return first_tag; |
| 2285 | } |
| 2286 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2287 | int |
Alyssa Rosenzweig | 840b806 | 2019-07-23 07:59:00 -0700 | [diff] [blame] | 2288 | midgard_compile_shader_nir(struct midgard_screen *screen, nir_shader *nir, midgard_program *program, bool is_blend) |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2289 | { |
| 2290 | struct util_dynarray *compiled = &program->compiled; |
| 2291 | |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 2292 | midgard_debug = debug_get_option_midgard_debug(); |
Tomeu Vizoso | f0b1bbe | 2019-03-08 15:04:50 +0100 | [diff] [blame] | 2293 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2294 | compiler_context ictx = { |
| 2295 | .nir = nir, |
Alyssa Rosenzweig | 840b806 | 2019-07-23 07:59:00 -0700 | [diff] [blame] | 2296 | .screen = screen, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2297 | .stage = nir->info.stage, |
Alyssa Rosenzweig | b6946d3 | 2019-07-25 08:44:53 -0700 | [diff] [blame] | 2298 | .temp_alloc = 0, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2299 | |
| 2300 | .is_blend = is_blend, |
Alyssa Rosenzweig | c9af770 | 2019-07-05 16:51:30 -0700 | [diff] [blame] | 2301 | .blend_constant_offset = 0, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2302 | |
| 2303 | .alpha_ref = program->alpha_ref |
| 2304 | }; |
| 2305 | |
| 2306 | compiler_context *ctx = &ictx; |
| 2307 | |
Alyssa Rosenzweig | 3174bc9 | 2019-07-16 14:10:08 -0700 | [diff] [blame] | 2308 | /* Start off with a safe cutoff, allowing usage of all 16 work |
| 2309 | * registers. Later, we'll promote uniform reads to uniform registers |
| 2310 | * if we determine it is beneficial to do so */ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2311 | ctx->uniform_cutoff = 8; |
| 2312 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2313 | /* Initialize at a global (not block) level hash tables */ |
| 2314 | |
| 2315 | ctx->ssa_constants = _mesa_hash_table_u64_create(NULL); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2316 | ctx->hash_to_temp = _mesa_hash_table_u64_create(NULL); |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 2317 | ctx->sysval_to_id = _mesa_hash_table_u64_create(NULL); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2318 | |
Alyssa Rosenzweig | b98955e | 2019-03-15 23:25:55 +0000 | [diff] [blame] | 2319 | /* Record the varying mapping for the command stream's bookkeeping */ |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2320 | |
Alyssa Rosenzweig | b98955e | 2019-03-15 23:25:55 +0000 | [diff] [blame] | 2321 | struct exec_list *varyings = |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 2322 | ctx->stage == MESA_SHADER_VERTEX ? &nir->outputs : &nir->inputs; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2323 | |
Alyssa Rosenzweig | de8d49a | 2019-06-06 09:15:26 -0700 | [diff] [blame] | 2324 | unsigned max_varying = 0; |
Alyssa Rosenzweig | b98955e | 2019-03-15 23:25:55 +0000 | [diff] [blame] | 2325 | nir_foreach_variable(var, varyings) { |
| 2326 | unsigned loc = var->data.driver_location; |
Alyssa Rosenzweig | 1f7b388 | 2019-04-20 23:39:29 +0000 | [diff] [blame] | 2327 | unsigned sz = glsl_type_size(var->type, FALSE); |
| 2328 | |
Boris Brezillon | 749c544 | 2019-06-13 14:56:02 +0200 | [diff] [blame] | 2329 | for (int c = 0; c < sz; ++c) { |
| 2330 | program->varyings[loc + c] = var->data.location + c; |
| 2331 | max_varying = MAX2(max_varying, loc + c); |
Alyssa Rosenzweig | 1f7b388 | 2019-04-20 23:39:29 +0000 | [diff] [blame] | 2332 | } |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2333 | } |
| 2334 | |
Alyssa Rosenzweig | de8d49a | 2019-06-06 09:15:26 -0700 | [diff] [blame] | 2335 | /* Lower gl_Position pre-optimisation, but after lowering vars to ssa |
| 2336 | * (so we don't accidentally duplicate the epilogue since mesa/st has |
| 2337 | * messed with our I/O quite a bit already) */ |
| 2338 | |
| 2339 | NIR_PASS_V(nir, nir_lower_vars_to_ssa); |
Alyssa Rosenzweig | 1e2cb3e | 2019-04-07 16:37:28 +0000 | [diff] [blame] | 2340 | |
Alyssa Rosenzweig | bb483a9 | 2019-07-10 11:30:00 -0700 | [diff] [blame] | 2341 | if (ctx->stage == MESA_SHADER_VERTEX) { |
Alyssa Rosenzweig | 1e2cb3e | 2019-04-07 16:37:28 +0000 | [diff] [blame] | 2342 | NIR_PASS_V(nir, nir_lower_viewport_transform); |
Alyssa Rosenzweig | bb483a9 | 2019-07-10 11:30:00 -0700 | [diff] [blame] | 2343 | NIR_PASS_V(nir, nir_clamp_psiz, 1.0, 1024.0); |
| 2344 | } |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2345 | |
| 2346 | NIR_PASS_V(nir, nir_lower_var_copies); |
| 2347 | NIR_PASS_V(nir, nir_lower_vars_to_ssa); |
| 2348 | NIR_PASS_V(nir, nir_split_var_copies); |
| 2349 | NIR_PASS_V(nir, nir_lower_var_copies); |
| 2350 | NIR_PASS_V(nir, nir_lower_global_vars_to_local); |
| 2351 | NIR_PASS_V(nir, nir_lower_var_copies); |
| 2352 | NIR_PASS_V(nir, nir_lower_vars_to_ssa); |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 2353 | |
Eric Anholt | 771adff | 2019-04-08 16:32:01 -0700 | [diff] [blame] | 2354 | NIR_PASS_V(nir, nir_lower_io, nir_var_all, glsl_type_size, 0); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2355 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2356 | /* Optimisation passes */ |
| 2357 | |
| 2358 | optimise_nir(nir); |
| 2359 | |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 2360 | if (midgard_debug & MIDGARD_DBG_SHADERS) { |
| 2361 | nir_print_shader(nir, stdout); |
| 2362 | } |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2363 | |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 2364 | /* Assign sysvals and counts, now that we're sure |
| 2365 | * (post-optimisation) */ |
| 2366 | |
| 2367 | midgard_nir_assign_sysvals(ctx, nir); |
| 2368 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2369 | program->uniform_count = nir->num_uniforms; |
Alyssa Rosenzweig | 7e8de5a | 2019-04-03 01:48:09 +0000 | [diff] [blame] | 2370 | program->sysval_count = ctx->sysval_count; |
| 2371 | memcpy(program->sysvals, ctx->sysvals, sizeof(ctx->sysvals[0]) * ctx->sysval_count); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2372 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2373 | nir_foreach_function(func, nir) { |
| 2374 | if (!func->impl) |
| 2375 | continue; |
| 2376 | |
| 2377 | list_inithead(&ctx->blocks); |
| 2378 | ctx->block_count = 0; |
| 2379 | ctx->func = func; |
| 2380 | |
| 2381 | emit_cf_list(ctx, &func->impl->body); |
| 2382 | emit_block(ctx, func->impl->end_block); |
| 2383 | |
| 2384 | break; /* TODO: Multi-function shaders */ |
| 2385 | } |
| 2386 | |
| 2387 | util_dynarray_init(compiled, NULL); |
| 2388 | |
Alyssa Rosenzweig | 4d995e0 | 2019-04-22 04:58:53 +0000 | [diff] [blame] | 2389 | /* MIR-level optimizations */ |
Alyssa Rosenzweig | 84f09ff | 2019-04-21 16:11:11 +0000 | [diff] [blame] | 2390 | |
Alyssa Rosenzweig | 4d995e0 | 2019-04-22 04:58:53 +0000 | [diff] [blame] | 2391 | bool progress = false; |
| 2392 | |
| 2393 | do { |
| 2394 | progress = false; |
| 2395 | |
| 2396 | mir_foreach_block(ctx, block) { |
Alyssa Rosenzweig | 4a03d37 | 2019-05-23 03:01:32 +0000 | [diff] [blame] | 2397 | progress |= midgard_opt_pos_propagate(ctx, block); |
Alyssa Rosenzweig | 4d995e0 | 2019-04-22 04:58:53 +0000 | [diff] [blame] | 2398 | progress |= midgard_opt_copy_prop(ctx, block); |
| 2399 | progress |= midgard_opt_dead_code_eliminate(ctx, block); |
Alyssa Rosenzweig | 9ce7582 | 2019-07-24 15:37:24 -0700 | [diff] [blame] | 2400 | progress |= midgard_opt_combine_projection(ctx, block); |
| 2401 | progress |= midgard_opt_varying_projection(ctx, block); |
Alyssa Rosenzweig | 620c271 | 2019-07-26 13:14:55 -0700 | [diff] [blame] | 2402 | progress |= midgard_opt_not_propagate(ctx, block); |
Alyssa Rosenzweig | d066ca35 | 2019-07-26 13:32:54 -0700 | [diff] [blame] | 2403 | progress |= midgard_opt_fuse_src_invert(ctx, block); |
Alyssa Rosenzweig | b821e1b | 2019-07-26 13:08:54 -0700 | [diff] [blame] | 2404 | progress |= midgard_opt_fuse_dest_invert(ctx, block); |
Alyssa Rosenzweig | 4d995e0 | 2019-04-22 04:58:53 +0000 | [diff] [blame] | 2405 | } |
| 2406 | } while (progress); |
Alyssa Rosenzweig | 84f09ff | 2019-04-21 16:11:11 +0000 | [diff] [blame] | 2407 | |
Alyssa Rosenzweig | 159abd5 | 2019-07-26 11:15:31 -0700 | [diff] [blame] | 2408 | mir_foreach_block(ctx, block) { |
| 2409 | midgard_lower_invert(ctx, block); |
Alyssa Rosenzweig | 8f88732 | 2019-07-29 15:11:12 -0700 | [diff] [blame] | 2410 | midgard_lower_derivatives(ctx, block); |
Alyssa Rosenzweig | 159abd5 | 2019-07-26 11:15:31 -0700 | [diff] [blame] | 2411 | } |
| 2412 | |
Alyssa Rosenzweig | ae20bee | 2019-06-06 11:19:13 -0700 | [diff] [blame] | 2413 | /* Nested control-flow can result in dead branches at the end of the |
| 2414 | * block. This messes with our analysis and is just dead code, so cull |
| 2415 | * them */ |
| 2416 | mir_foreach_block(ctx, block) { |
| 2417 | midgard_opt_cull_dead_branch(ctx, block); |
| 2418 | } |
| 2419 | |
Alyssa Rosenzweig | 159abd5 | 2019-07-26 11:15:31 -0700 | [diff] [blame] | 2420 | /* Ensure we were lowered */ |
| 2421 | mir_foreach_instr_global(ctx, ins) { |
| 2422 | assert(!ins->invert); |
| 2423 | } |
| 2424 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2425 | /* Schedule! */ |
| 2426 | schedule_program(ctx); |
| 2427 | |
| 2428 | /* Now that all the bundles are scheduled and we can calculate block |
| 2429 | * sizes, emit actual branch instructions rather than placeholders */ |
| 2430 | |
| 2431 | int br_block_idx = 0; |
| 2432 | |
| 2433 | mir_foreach_block(ctx, block) { |
| 2434 | util_dynarray_foreach(&block->bundles, midgard_bundle, bundle) { |
| 2435 | for (int c = 0; c < bundle->instruction_count; ++c) { |
Alyssa Rosenzweig | 3c7abbf | 2019-05-22 04:33:21 +0000 | [diff] [blame] | 2436 | midgard_instruction *ins = bundle->instructions[c]; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2437 | |
Alyssa Rosenzweig | 5abb7b5 | 2019-02-17 22:09:09 +0000 | [diff] [blame] | 2438 | if (!midgard_is_branch_unit(ins->unit)) continue; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2439 | |
| 2440 | if (ins->prepacked_branch) continue; |
| 2441 | |
Alyssa Rosenzweig | 779e140 | 2019-02-17 23:24:39 +0000 | [diff] [blame] | 2442 | /* Parse some basic branch info */ |
| 2443 | bool is_compact = ins->unit == ALU_ENAB_BR_COMPACT; |
| 2444 | bool is_conditional = ins->branch.conditional; |
| 2445 | bool is_inverted = ins->branch.invert_conditional; |
| 2446 | bool is_discard = ins->branch.target_type == TARGET_DISCARD; |
| 2447 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2448 | /* Determine the block we're jumping to */ |
| 2449 | int target_number = ins->branch.target_block; |
| 2450 | |
Alyssa Rosenzweig | 3c7abbf | 2019-05-22 04:33:21 +0000 | [diff] [blame] | 2451 | /* Report the destination tag */ |
Alyssa Rosenzweig | 779e140 | 2019-02-17 23:24:39 +0000 | [diff] [blame] | 2452 | int dest_tag = is_discard ? 0 : midgard_get_first_tag_from_block(ctx, target_number); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2453 | |
Alyssa Rosenzweig | 3c7abbf | 2019-05-22 04:33:21 +0000 | [diff] [blame] | 2454 | /* Count up the number of quadwords we're |
| 2455 | * jumping over = number of quadwords until |
| 2456 | * (br_block_idx, target_number) */ |
| 2457 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2458 | int quadword_offset = 0; |
| 2459 | |
Alyssa Rosenzweig | 779e140 | 2019-02-17 23:24:39 +0000 | [diff] [blame] | 2460 | if (is_discard) { |
Alyssa Rosenzweig | 7f75b2b | 2019-07-30 17:07:25 -0700 | [diff] [blame] | 2461 | /* Ignored */ |
Alyssa Rosenzweig | 779e140 | 2019-02-17 23:24:39 +0000 | [diff] [blame] | 2462 | } else if (target_number > br_block_idx) { |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2463 | /* Jump forward */ |
| 2464 | |
| 2465 | for (int idx = br_block_idx + 1; idx < target_number; ++idx) { |
| 2466 | midgard_block *blk = mir_get_block(ctx, idx); |
| 2467 | assert(blk); |
| 2468 | |
| 2469 | quadword_offset += blk->quadword_count; |
| 2470 | } |
| 2471 | } else { |
| 2472 | /* Jump backwards */ |
| 2473 | |
| 2474 | for (int idx = br_block_idx; idx >= target_number; --idx) { |
| 2475 | midgard_block *blk = mir_get_block(ctx, idx); |
| 2476 | assert(blk); |
| 2477 | |
| 2478 | quadword_offset -= blk->quadword_count; |
| 2479 | } |
| 2480 | } |
| 2481 | |
Alyssa Rosenzweig | 5abb7b5 | 2019-02-17 22:09:09 +0000 | [diff] [blame] | 2482 | /* Unconditional extended branches (far jumps) |
| 2483 | * have issues, so we always use a conditional |
| 2484 | * branch, setting the condition to always for |
| 2485 | * unconditional. For compact unconditional |
| 2486 | * branches, cond isn't used so it doesn't |
| 2487 | * matter what we pick. */ |
| 2488 | |
| 2489 | midgard_condition cond = |
| 2490 | !is_conditional ? midgard_condition_always : |
| 2491 | is_inverted ? midgard_condition_false : |
| 2492 | midgard_condition_true; |
| 2493 | |
Alyssa Rosenzweig | 779e140 | 2019-02-17 23:24:39 +0000 | [diff] [blame] | 2494 | midgard_jmp_writeout_op op = |
| 2495 | is_discard ? midgard_jmp_writeout_op_discard : |
| 2496 | (is_compact && !is_conditional) ? midgard_jmp_writeout_op_branch_uncond : |
| 2497 | midgard_jmp_writeout_op_branch_cond; |
| 2498 | |
Alyssa Rosenzweig | 5abb7b5 | 2019-02-17 22:09:09 +0000 | [diff] [blame] | 2499 | if (!is_compact) { |
| 2500 | midgard_branch_extended branch = |
| 2501 | midgard_create_branch_extended( |
Alyssa Rosenzweig | 779e140 | 2019-02-17 23:24:39 +0000 | [diff] [blame] | 2502 | cond, op, |
Alyssa Rosenzweig | 5abb7b5 | 2019-02-17 22:09:09 +0000 | [diff] [blame] | 2503 | dest_tag, |
| 2504 | quadword_offset); |
| 2505 | |
| 2506 | memcpy(&ins->branch_extended, &branch, sizeof(branch)); |
Alyssa Rosenzweig | 779e140 | 2019-02-17 23:24:39 +0000 | [diff] [blame] | 2507 | } else if (is_conditional || is_discard) { |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2508 | midgard_branch_cond branch = { |
Alyssa Rosenzweig | 779e140 | 2019-02-17 23:24:39 +0000 | [diff] [blame] | 2509 | .op = op, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2510 | .dest_tag = dest_tag, |
| 2511 | .offset = quadword_offset, |
Alyssa Rosenzweig | 5abb7b5 | 2019-02-17 22:09:09 +0000 | [diff] [blame] | 2512 | .cond = cond |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2513 | }; |
| 2514 | |
Alyssa Rosenzweig | 5abb7b5 | 2019-02-17 22:09:09 +0000 | [diff] [blame] | 2515 | assert(branch.offset == quadword_offset); |
| 2516 | |
| 2517 | memcpy(&ins->br_compact, &branch, sizeof(branch)); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2518 | } else { |
Alyssa Rosenzweig | 779e140 | 2019-02-17 23:24:39 +0000 | [diff] [blame] | 2519 | assert(op == midgard_jmp_writeout_op_branch_uncond); |
| 2520 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2521 | midgard_branch_uncond branch = { |
Alyssa Rosenzweig | 779e140 | 2019-02-17 23:24:39 +0000 | [diff] [blame] | 2522 | .op = op, |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2523 | .dest_tag = dest_tag, |
| 2524 | .offset = quadword_offset, |
| 2525 | .unknown = 1 |
| 2526 | }; |
| 2527 | |
Alyssa Rosenzweig | 5abb7b5 | 2019-02-17 22:09:09 +0000 | [diff] [blame] | 2528 | assert(branch.offset == quadword_offset); |
| 2529 | |
| 2530 | memcpy(&ins->br_compact, &branch, sizeof(branch)); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2531 | } |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2532 | } |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2533 | } |
| 2534 | |
| 2535 | ++br_block_idx; |
| 2536 | } |
| 2537 | |
| 2538 | /* Emit flat binary from the instruction arrays. Iterate each block in |
| 2539 | * sequence. Save instruction boundaries such that lookahead tags can |
| 2540 | * be assigned easily */ |
| 2541 | |
| 2542 | /* Cache _all_ bundles in source order for lookahead across failed branches */ |
| 2543 | |
| 2544 | int bundle_count = 0; |
| 2545 | mir_foreach_block(ctx, block) { |
| 2546 | bundle_count += block->bundles.size / sizeof(midgard_bundle); |
| 2547 | } |
| 2548 | midgard_bundle **source_order_bundles = malloc(sizeof(midgard_bundle *) * bundle_count); |
| 2549 | int bundle_idx = 0; |
| 2550 | mir_foreach_block(ctx, block) { |
| 2551 | util_dynarray_foreach(&block->bundles, midgard_bundle, bundle) { |
| 2552 | source_order_bundles[bundle_idx++] = bundle; |
| 2553 | } |
| 2554 | } |
| 2555 | |
| 2556 | int current_bundle = 0; |
| 2557 | |
Alyssa Rosenzweig | 2a79afc | 2019-05-23 01:56:03 +0000 | [diff] [blame] | 2558 | /* Midgard prefetches instruction types, so during emission we |
| 2559 | * need to lookahead. Unless this is the last instruction, in |
| 2560 | * which we return 1. Or if this is the second to last and the |
| 2561 | * last is an ALU, then it's also 1... */ |
| 2562 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2563 | mir_foreach_block(ctx, block) { |
Alyssa Rosenzweig | d3ad8d6 | 2019-06-06 11:19:44 -0700 | [diff] [blame] | 2564 | mir_foreach_bundle_in_block(block, bundle) { |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2565 | int lookahead = 1; |
| 2566 | |
| 2567 | if (current_bundle + 1 < bundle_count) { |
| 2568 | uint8_t next = source_order_bundles[current_bundle + 1]->tag; |
| 2569 | |
| 2570 | if (!(current_bundle + 2 < bundle_count) && IS_ALU(next)) { |
| 2571 | lookahead = 1; |
| 2572 | } else { |
| 2573 | lookahead = next; |
| 2574 | } |
| 2575 | } |
| 2576 | |
| 2577 | emit_binary_bundle(ctx, bundle, compiled, lookahead); |
| 2578 | ++current_bundle; |
| 2579 | } |
| 2580 | |
| 2581 | /* TODO: Free deeper */ |
| 2582 | //util_dynarray_fini(&block->instructions); |
| 2583 | } |
| 2584 | |
| 2585 | free(source_order_bundles); |
| 2586 | |
Alyssa Rosenzweig | 5e55c11 | 2019-02-17 03:35:03 +0000 | [diff] [blame] | 2587 | /* Report the very first tag executed */ |
| 2588 | program->first_tag = midgard_get_first_tag_from_block(ctx, 0); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2589 | |
| 2590 | /* Deal with off-by-one related to the fencepost problem */ |
| 2591 | program->work_register_count = ctx->work_registers + 1; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2592 | program->uniform_cutoff = ctx->uniform_cutoff; |
| 2593 | |
| 2594 | program->blend_patch_offset = ctx->blend_constant_offset; |
Alyssa Rosenzweig | f0d0061 | 2019-07-19 16:23:52 -0700 | [diff] [blame] | 2595 | program->tls_size = ctx->tls_size; |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2596 | |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 2597 | if (midgard_debug & MIDGARD_DBG_SHADERS) |
| 2598 | disassemble_midgard(program->compiled.data, program->compiled.size); |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2599 | |
Alyssa Rosenzweig | 138e40d | 2019-07-08 16:42:29 -0700 | [diff] [blame] | 2600 | if (midgard_debug & MIDGARD_DBG_SHADERDB) { |
Alyssa Rosenzweig | 2d739f6 | 2019-07-09 11:16:57 -0700 | [diff] [blame] | 2601 | unsigned nr_bundles = 0, nr_ins = 0, nr_quadwords = 0; |
Alyssa Rosenzweig | 138e40d | 2019-07-08 16:42:29 -0700 | [diff] [blame] | 2602 | |
| 2603 | /* Count instructions and bundles */ |
| 2604 | |
| 2605 | mir_foreach_instr_global(ctx, ins) { |
| 2606 | nr_ins++; |
| 2607 | } |
| 2608 | |
| 2609 | mir_foreach_block(ctx, block) { |
| 2610 | nr_bundles += util_dynarray_num_elements( |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 2611 | &block->bundles, midgard_bundle); |
Alyssa Rosenzweig | 2d739f6 | 2019-07-09 11:16:57 -0700 | [diff] [blame] | 2612 | |
| 2613 | nr_quadwords += block->quadword_count; |
Alyssa Rosenzweig | 138e40d | 2019-07-08 16:42:29 -0700 | [diff] [blame] | 2614 | } |
| 2615 | |
| 2616 | /* Calculate thread count. There are certain cutoffs by |
| 2617 | * register count for thread count */ |
| 2618 | |
| 2619 | unsigned nr_registers = program->work_register_count; |
| 2620 | |
| 2621 | unsigned nr_threads = |
| 2622 | (nr_registers <= 4) ? 4 : |
| 2623 | (nr_registers <= 8) ? 2 : |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 2624 | 1; |
Alyssa Rosenzweig | 138e40d | 2019-07-08 16:42:29 -0700 | [diff] [blame] | 2625 | |
| 2626 | /* Dump stats */ |
| 2627 | |
| 2628 | fprintf(stderr, "shader%d - %s shader: " |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 2629 | "%u inst, %u bundles, %u quadwords, " |
Alyssa Rosenzweig | e8dca7e | 2019-07-22 06:32:48 -0700 | [diff] [blame] | 2630 | "%u registers, %u threads, %u loops, " |
| 2631 | "%d:%d spills:fills\n", |
Alyssa Rosenzweig | e4bd6fb | 2019-07-10 10:00:50 -0700 | [diff] [blame] | 2632 | SHADER_DB_COUNT++, |
| 2633 | gl_shader_stage_name(ctx->stage), |
| 2634 | nr_ins, nr_bundles, nr_quadwords, |
| 2635 | nr_registers, nr_threads, |
Alyssa Rosenzweig | e8dca7e | 2019-07-22 06:32:48 -0700 | [diff] [blame] | 2636 | ctx->loop_count, |
| 2637 | ctx->spills, ctx->fills); |
Alyssa Rosenzweig | 138e40d | 2019-07-08 16:42:29 -0700 | [diff] [blame] | 2638 | } |
| 2639 | |
| 2640 | |
Alyssa Rosenzweig | e67e072 | 2019-01-30 01:11:31 +0000 | [diff] [blame] | 2641 | return 0; |
| 2642 | } |