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