spirv: add missing SPV_EXT_descriptor_indexing capabilities
[mesa.git] / src / compiler / spirv / spirv_to_nir.c
1 /*
2 * Copyright © 2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Jason Ekstrand (jason@jlekstrand.net)
25 *
26 */
27
28 #include "vtn_private.h"
29 #include "nir/nir_vla.h"
30 #include "nir/nir_control_flow.h"
31 #include "nir/nir_constant_expressions.h"
32 #include "nir/nir_deref.h"
33 #include "spirv_info.h"
34
35 #include "util/u_math.h"
36
37 #include <stdio.h>
38
39 void
40 vtn_log(struct vtn_builder *b, enum nir_spirv_debug_level level,
41 size_t spirv_offset, const char *message)
42 {
43 if (b->options->debug.func) {
44 b->options->debug.func(b->options->debug.private_data,
45 level, spirv_offset, message);
46 }
47
48 #ifndef NDEBUG
49 if (level >= NIR_SPIRV_DEBUG_LEVEL_WARNING)
50 fprintf(stderr, "%s\n", message);
51 #endif
52 }
53
54 void
55 vtn_logf(struct vtn_builder *b, enum nir_spirv_debug_level level,
56 size_t spirv_offset, const char *fmt, ...)
57 {
58 va_list args;
59 char *msg;
60
61 va_start(args, fmt);
62 msg = ralloc_vasprintf(NULL, fmt, args);
63 va_end(args);
64
65 vtn_log(b, level, spirv_offset, msg);
66
67 ralloc_free(msg);
68 }
69
70 static void
71 vtn_log_err(struct vtn_builder *b,
72 enum nir_spirv_debug_level level, const char *prefix,
73 const char *file, unsigned line,
74 const char *fmt, va_list args)
75 {
76 char *msg;
77
78 msg = ralloc_strdup(NULL, prefix);
79
80 #ifndef NDEBUG
81 ralloc_asprintf_append(&msg, " In file %s:%u\n", file, line);
82 #endif
83
84 ralloc_asprintf_append(&msg, " ");
85
86 ralloc_vasprintf_append(&msg, fmt, args);
87
88 ralloc_asprintf_append(&msg, "\n %zu bytes into the SPIR-V binary",
89 b->spirv_offset);
90
91 if (b->file) {
92 ralloc_asprintf_append(&msg,
93 "\n in SPIR-V source file %s, line %d, col %d",
94 b->file, b->line, b->col);
95 }
96
97 vtn_log(b, level, b->spirv_offset, msg);
98
99 ralloc_free(msg);
100 }
101
102 static void
103 vtn_dump_shader(struct vtn_builder *b, const char *path, const char *prefix)
104 {
105 static int idx = 0;
106
107 char filename[1024];
108 int len = snprintf(filename, sizeof(filename), "%s/%s-%d.spirv",
109 path, prefix, idx++);
110 if (len < 0 || len >= sizeof(filename))
111 return;
112
113 FILE *f = fopen(filename, "w");
114 if (f == NULL)
115 return;
116
117 fwrite(b->spirv, sizeof(*b->spirv), b->spirv_word_count, f);
118 fclose(f);
119
120 vtn_info("SPIR-V shader dumped to %s", filename);
121 }
122
123 void
124 _vtn_warn(struct vtn_builder *b, const char *file, unsigned line,
125 const char *fmt, ...)
126 {
127 va_list args;
128
129 va_start(args, fmt);
130 vtn_log_err(b, NIR_SPIRV_DEBUG_LEVEL_WARNING, "SPIR-V WARNING:\n",
131 file, line, fmt, args);
132 va_end(args);
133 }
134
135 void
136 _vtn_err(struct vtn_builder *b, const char *file, unsigned line,
137 const char *fmt, ...)
138 {
139 va_list args;
140
141 va_start(args, fmt);
142 vtn_log_err(b, NIR_SPIRV_DEBUG_LEVEL_ERROR, "SPIR-V ERROR:\n",
143 file, line, fmt, args);
144 va_end(args);
145 }
146
147 void
148 _vtn_fail(struct vtn_builder *b, const char *file, unsigned line,
149 const char *fmt, ...)
150 {
151 va_list args;
152
153 va_start(args, fmt);
154 vtn_log_err(b, NIR_SPIRV_DEBUG_LEVEL_ERROR, "SPIR-V parsing FAILED:\n",
155 file, line, fmt, args);
156 va_end(args);
157
158 const char *dump_path = getenv("MESA_SPIRV_FAIL_DUMP_PATH");
159 if (dump_path)
160 vtn_dump_shader(b, dump_path, "fail");
161
162 longjmp(b->fail_jump, 1);
163 }
164
165 struct spec_constant_value {
166 bool is_double;
167 union {
168 uint32_t data32;
169 uint64_t data64;
170 };
171 };
172
173 static struct vtn_ssa_value *
174 vtn_undef_ssa_value(struct vtn_builder *b, const struct glsl_type *type)
175 {
176 struct vtn_ssa_value *val = rzalloc(b, struct vtn_ssa_value);
177 val->type = type;
178
179 if (glsl_type_is_vector_or_scalar(type)) {
180 unsigned num_components = glsl_get_vector_elements(val->type);
181 unsigned bit_size = glsl_get_bit_size(val->type);
182 val->def = nir_ssa_undef(&b->nb, num_components, bit_size);
183 } else {
184 unsigned elems = glsl_get_length(val->type);
185 val->elems = ralloc_array(b, struct vtn_ssa_value *, elems);
186 if (glsl_type_is_matrix(type)) {
187 const struct glsl_type *elem_type =
188 glsl_vector_type(glsl_get_base_type(type),
189 glsl_get_vector_elements(type));
190
191 for (unsigned i = 0; i < elems; i++)
192 val->elems[i] = vtn_undef_ssa_value(b, elem_type);
193 } else if (glsl_type_is_array(type)) {
194 const struct glsl_type *elem_type = glsl_get_array_element(type);
195 for (unsigned i = 0; i < elems; i++)
196 val->elems[i] = vtn_undef_ssa_value(b, elem_type);
197 } else {
198 for (unsigned i = 0; i < elems; i++) {
199 const struct glsl_type *elem_type = glsl_get_struct_field(type, i);
200 val->elems[i] = vtn_undef_ssa_value(b, elem_type);
201 }
202 }
203 }
204
205 return val;
206 }
207
208 static struct vtn_ssa_value *
209 vtn_const_ssa_value(struct vtn_builder *b, nir_constant *constant,
210 const struct glsl_type *type)
211 {
212 struct hash_entry *entry = _mesa_hash_table_search(b->const_table, constant);
213
214 if (entry)
215 return entry->data;
216
217 struct vtn_ssa_value *val = rzalloc(b, struct vtn_ssa_value);
218 val->type = type;
219
220 switch (glsl_get_base_type(type)) {
221 case GLSL_TYPE_INT:
222 case GLSL_TYPE_UINT:
223 case GLSL_TYPE_INT16:
224 case GLSL_TYPE_UINT16:
225 case GLSL_TYPE_UINT8:
226 case GLSL_TYPE_INT8:
227 case GLSL_TYPE_INT64:
228 case GLSL_TYPE_UINT64:
229 case GLSL_TYPE_BOOL:
230 case GLSL_TYPE_FLOAT:
231 case GLSL_TYPE_FLOAT16:
232 case GLSL_TYPE_DOUBLE: {
233 int bit_size = glsl_get_bit_size(type);
234 if (glsl_type_is_vector_or_scalar(type)) {
235 unsigned num_components = glsl_get_vector_elements(val->type);
236 nir_load_const_instr *load =
237 nir_load_const_instr_create(b->shader, num_components, bit_size);
238
239 memcpy(load->value, constant->values[0],
240 sizeof(nir_const_value) * load->def.num_components);
241
242 nir_instr_insert_before_cf_list(&b->nb.impl->body, &load->instr);
243 val->def = &load->def;
244 } else {
245 assert(glsl_type_is_matrix(type));
246 unsigned rows = glsl_get_vector_elements(val->type);
247 unsigned columns = glsl_get_matrix_columns(val->type);
248 val->elems = ralloc_array(b, struct vtn_ssa_value *, columns);
249
250 for (unsigned i = 0; i < columns; i++) {
251 struct vtn_ssa_value *col_val = rzalloc(b, struct vtn_ssa_value);
252 col_val->type = glsl_get_column_type(val->type);
253 nir_load_const_instr *load =
254 nir_load_const_instr_create(b->shader, rows, bit_size);
255
256 memcpy(load->value, constant->values[i],
257 sizeof(nir_const_value) * load->def.num_components);
258
259 nir_instr_insert_before_cf_list(&b->nb.impl->body, &load->instr);
260 col_val->def = &load->def;
261
262 val->elems[i] = col_val;
263 }
264 }
265 break;
266 }
267
268 case GLSL_TYPE_ARRAY: {
269 unsigned elems = glsl_get_length(val->type);
270 val->elems = ralloc_array(b, struct vtn_ssa_value *, elems);
271 const struct glsl_type *elem_type = glsl_get_array_element(val->type);
272 for (unsigned i = 0; i < elems; i++)
273 val->elems[i] = vtn_const_ssa_value(b, constant->elements[i],
274 elem_type);
275 break;
276 }
277
278 case GLSL_TYPE_STRUCT: {
279 unsigned elems = glsl_get_length(val->type);
280 val->elems = ralloc_array(b, struct vtn_ssa_value *, elems);
281 for (unsigned i = 0; i < elems; i++) {
282 const struct glsl_type *elem_type =
283 glsl_get_struct_field(val->type, i);
284 val->elems[i] = vtn_const_ssa_value(b, constant->elements[i],
285 elem_type);
286 }
287 break;
288 }
289
290 default:
291 vtn_fail("bad constant type");
292 }
293
294 return val;
295 }
296
297 struct vtn_ssa_value *
298 vtn_ssa_value(struct vtn_builder *b, uint32_t value_id)
299 {
300 struct vtn_value *val = vtn_untyped_value(b, value_id);
301 switch (val->value_type) {
302 case vtn_value_type_undef:
303 return vtn_undef_ssa_value(b, val->type->type);
304
305 case vtn_value_type_constant:
306 return vtn_const_ssa_value(b, val->constant, val->type->type);
307
308 case vtn_value_type_ssa:
309 return val->ssa;
310
311 case vtn_value_type_pointer:
312 vtn_assert(val->pointer->ptr_type && val->pointer->ptr_type->type);
313 struct vtn_ssa_value *ssa =
314 vtn_create_ssa_value(b, val->pointer->ptr_type->type);
315 ssa->def = vtn_pointer_to_ssa(b, val->pointer);
316 return ssa;
317
318 default:
319 vtn_fail("Invalid type for an SSA value");
320 }
321 }
322
323 static char *
324 vtn_string_literal(struct vtn_builder *b, const uint32_t *words,
325 unsigned word_count, unsigned *words_used)
326 {
327 char *dup = ralloc_strndup(b, (char *)words, word_count * sizeof(*words));
328 if (words_used) {
329 /* Ammount of space taken by the string (including the null) */
330 unsigned len = strlen(dup) + 1;
331 *words_used = DIV_ROUND_UP(len, sizeof(*words));
332 }
333 return dup;
334 }
335
336 const uint32_t *
337 vtn_foreach_instruction(struct vtn_builder *b, const uint32_t *start,
338 const uint32_t *end, vtn_instruction_handler handler)
339 {
340 b->file = NULL;
341 b->line = -1;
342 b->col = -1;
343
344 const uint32_t *w = start;
345 while (w < end) {
346 SpvOp opcode = w[0] & SpvOpCodeMask;
347 unsigned count = w[0] >> SpvWordCountShift;
348 vtn_assert(count >= 1 && w + count <= end);
349
350 b->spirv_offset = (uint8_t *)w - (uint8_t *)b->spirv;
351
352 switch (opcode) {
353 case SpvOpNop:
354 break; /* Do nothing */
355
356 case SpvOpLine:
357 b->file = vtn_value(b, w[1], vtn_value_type_string)->str;
358 b->line = w[2];
359 b->col = w[3];
360 break;
361
362 case SpvOpNoLine:
363 b->file = NULL;
364 b->line = -1;
365 b->col = -1;
366 break;
367
368 default:
369 if (!handler(b, opcode, w, count))
370 return w;
371 break;
372 }
373
374 w += count;
375 }
376
377 b->spirv_offset = 0;
378 b->file = NULL;
379 b->line = -1;
380 b->col = -1;
381
382 assert(w == end);
383 return w;
384 }
385
386 static void
387 vtn_handle_extension(struct vtn_builder *b, SpvOp opcode,
388 const uint32_t *w, unsigned count)
389 {
390 const char *ext = (const char *)&w[2];
391 switch (opcode) {
392 case SpvOpExtInstImport: {
393 struct vtn_value *val = vtn_push_value(b, w[1], vtn_value_type_extension);
394 if (strcmp(ext, "GLSL.std.450") == 0) {
395 val->ext_handler = vtn_handle_glsl450_instruction;
396 } else if ((strcmp(ext, "SPV_AMD_gcn_shader") == 0)
397 && (b->options && b->options->caps.gcn_shader)) {
398 val->ext_handler = vtn_handle_amd_gcn_shader_instruction;
399 } else if ((strcmp(ext, "SPV_AMD_shader_trinary_minmax") == 0)
400 && (b->options && b->options->caps.trinary_minmax)) {
401 val->ext_handler = vtn_handle_amd_shader_trinary_minmax_instruction;
402 } else if (strcmp(ext, "OpenCL.std") == 0) {
403 val->ext_handler = vtn_handle_opencl_instruction;
404 } else {
405 vtn_fail("Unsupported extension: %s", ext);
406 }
407 break;
408 }
409
410 case SpvOpExtInst: {
411 struct vtn_value *val = vtn_value(b, w[3], vtn_value_type_extension);
412 bool handled = val->ext_handler(b, w[4], w, count);
413 vtn_assert(handled);
414 break;
415 }
416
417 default:
418 vtn_fail_with_opcode("Unhandled opcode", opcode);
419 }
420 }
421
422 static void
423 _foreach_decoration_helper(struct vtn_builder *b,
424 struct vtn_value *base_value,
425 int parent_member,
426 struct vtn_value *value,
427 vtn_decoration_foreach_cb cb, void *data)
428 {
429 for (struct vtn_decoration *dec = value->decoration; dec; dec = dec->next) {
430 int member;
431 if (dec->scope == VTN_DEC_DECORATION) {
432 member = parent_member;
433 } else if (dec->scope >= VTN_DEC_STRUCT_MEMBER0) {
434 vtn_fail_if(value->value_type != vtn_value_type_type ||
435 value->type->base_type != vtn_base_type_struct,
436 "OpMemberDecorate and OpGroupMemberDecorate are only "
437 "allowed on OpTypeStruct");
438 /* This means we haven't recursed yet */
439 assert(value == base_value);
440
441 member = dec->scope - VTN_DEC_STRUCT_MEMBER0;
442
443 vtn_fail_if(member >= base_value->type->length,
444 "OpMemberDecorate specifies member %d but the "
445 "OpTypeStruct has only %u members",
446 member, base_value->type->length);
447 } else {
448 /* Not a decoration */
449 assert(dec->scope == VTN_DEC_EXECUTION_MODE);
450 continue;
451 }
452
453 if (dec->group) {
454 assert(dec->group->value_type == vtn_value_type_decoration_group);
455 _foreach_decoration_helper(b, base_value, member, dec->group,
456 cb, data);
457 } else {
458 cb(b, base_value, member, dec, data);
459 }
460 }
461 }
462
463 /** Iterates (recursively if needed) over all of the decorations on a value
464 *
465 * This function iterates over all of the decorations applied to a given
466 * value. If it encounters a decoration group, it recurses into the group
467 * and iterates over all of those decorations as well.
468 */
469 void
470 vtn_foreach_decoration(struct vtn_builder *b, struct vtn_value *value,
471 vtn_decoration_foreach_cb cb, void *data)
472 {
473 _foreach_decoration_helper(b, value, -1, value, cb, data);
474 }
475
476 void
477 vtn_foreach_execution_mode(struct vtn_builder *b, struct vtn_value *value,
478 vtn_execution_mode_foreach_cb cb, void *data)
479 {
480 for (struct vtn_decoration *dec = value->decoration; dec; dec = dec->next) {
481 if (dec->scope != VTN_DEC_EXECUTION_MODE)
482 continue;
483
484 assert(dec->group == NULL);
485 cb(b, value, dec, data);
486 }
487 }
488
489 void
490 vtn_handle_decoration(struct vtn_builder *b, SpvOp opcode,
491 const uint32_t *w, unsigned count)
492 {
493 const uint32_t *w_end = w + count;
494 const uint32_t target = w[1];
495 w += 2;
496
497 switch (opcode) {
498 case SpvOpDecorationGroup:
499 vtn_push_value(b, target, vtn_value_type_decoration_group);
500 break;
501
502 case SpvOpDecorate:
503 case SpvOpDecorateId:
504 case SpvOpMemberDecorate:
505 case SpvOpDecorateStringGOOGLE:
506 case SpvOpMemberDecorateStringGOOGLE:
507 case SpvOpExecutionMode:
508 case SpvOpExecutionModeId: {
509 struct vtn_value *val = vtn_untyped_value(b, target);
510
511 struct vtn_decoration *dec = rzalloc(b, struct vtn_decoration);
512 switch (opcode) {
513 case SpvOpDecorate:
514 case SpvOpDecorateId:
515 case SpvOpDecorateStringGOOGLE:
516 dec->scope = VTN_DEC_DECORATION;
517 break;
518 case SpvOpMemberDecorate:
519 case SpvOpMemberDecorateStringGOOGLE:
520 dec->scope = VTN_DEC_STRUCT_MEMBER0 + *(w++);
521 vtn_fail_if(dec->scope < VTN_DEC_STRUCT_MEMBER0, /* overflow */
522 "Member argument of OpMemberDecorate too large");
523 break;
524 case SpvOpExecutionMode:
525 case SpvOpExecutionModeId:
526 dec->scope = VTN_DEC_EXECUTION_MODE;
527 break;
528 default:
529 unreachable("Invalid decoration opcode");
530 }
531 dec->decoration = *(w++);
532 dec->operands = w;
533
534 /* Link into the list */
535 dec->next = val->decoration;
536 val->decoration = dec;
537 break;
538 }
539
540 case SpvOpGroupMemberDecorate:
541 case SpvOpGroupDecorate: {
542 struct vtn_value *group =
543 vtn_value(b, target, vtn_value_type_decoration_group);
544
545 for (; w < w_end; w++) {
546 struct vtn_value *val = vtn_untyped_value(b, *w);
547 struct vtn_decoration *dec = rzalloc(b, struct vtn_decoration);
548
549 dec->group = group;
550 if (opcode == SpvOpGroupDecorate) {
551 dec->scope = VTN_DEC_DECORATION;
552 } else {
553 dec->scope = VTN_DEC_STRUCT_MEMBER0 + *(++w);
554 vtn_fail_if(dec->scope < 0, /* Check for overflow */
555 "Member argument of OpGroupMemberDecorate too large");
556 }
557
558 /* Link into the list */
559 dec->next = val->decoration;
560 val->decoration = dec;
561 }
562 break;
563 }
564
565 default:
566 unreachable("Unhandled opcode");
567 }
568 }
569
570 struct member_decoration_ctx {
571 unsigned num_fields;
572 struct glsl_struct_field *fields;
573 struct vtn_type *type;
574 };
575
576 /**
577 * Returns true if the given type contains a struct decorated Block or
578 * BufferBlock
579 */
580 bool
581 vtn_type_contains_block(struct vtn_builder *b, struct vtn_type *type)
582 {
583 switch (type->base_type) {
584 case vtn_base_type_array:
585 return vtn_type_contains_block(b, type->array_element);
586 case vtn_base_type_struct:
587 if (type->block || type->buffer_block)
588 return true;
589 for (unsigned i = 0; i < type->length; i++) {
590 if (vtn_type_contains_block(b, type->members[i]))
591 return true;
592 }
593 return false;
594 default:
595 return false;
596 }
597 }
598
599 /** Returns true if two types are "compatible", i.e. you can do an OpLoad,
600 * OpStore, or OpCopyMemory between them without breaking anything.
601 * Technically, the SPIR-V rules require the exact same type ID but this lets
602 * us internally be a bit looser.
603 */
604 bool
605 vtn_types_compatible(struct vtn_builder *b,
606 struct vtn_type *t1, struct vtn_type *t2)
607 {
608 if (t1->id == t2->id)
609 return true;
610
611 if (t1->base_type != t2->base_type)
612 return false;
613
614 switch (t1->base_type) {
615 case vtn_base_type_void:
616 case vtn_base_type_scalar:
617 case vtn_base_type_vector:
618 case vtn_base_type_matrix:
619 case vtn_base_type_image:
620 case vtn_base_type_sampler:
621 case vtn_base_type_sampled_image:
622 return t1->type == t2->type;
623
624 case vtn_base_type_array:
625 return t1->length == t2->length &&
626 vtn_types_compatible(b, t1->array_element, t2->array_element);
627
628 case vtn_base_type_pointer:
629 return vtn_types_compatible(b, t1->deref, t2->deref);
630
631 case vtn_base_type_struct:
632 if (t1->length != t2->length)
633 return false;
634
635 for (unsigned i = 0; i < t1->length; i++) {
636 if (!vtn_types_compatible(b, t1->members[i], t2->members[i]))
637 return false;
638 }
639 return true;
640
641 case vtn_base_type_function:
642 /* This case shouldn't get hit since you can't copy around function
643 * types. Just require them to be identical.
644 */
645 return false;
646 }
647
648 vtn_fail("Invalid base type");
649 }
650
651 /* does a shallow copy of a vtn_type */
652
653 static struct vtn_type *
654 vtn_type_copy(struct vtn_builder *b, struct vtn_type *src)
655 {
656 struct vtn_type *dest = ralloc(b, struct vtn_type);
657 *dest = *src;
658
659 switch (src->base_type) {
660 case vtn_base_type_void:
661 case vtn_base_type_scalar:
662 case vtn_base_type_vector:
663 case vtn_base_type_matrix:
664 case vtn_base_type_array:
665 case vtn_base_type_pointer:
666 case vtn_base_type_image:
667 case vtn_base_type_sampler:
668 case vtn_base_type_sampled_image:
669 /* Nothing more to do */
670 break;
671
672 case vtn_base_type_struct:
673 dest->members = ralloc_array(b, struct vtn_type *, src->length);
674 memcpy(dest->members, src->members,
675 src->length * sizeof(src->members[0]));
676
677 dest->offsets = ralloc_array(b, unsigned, src->length);
678 memcpy(dest->offsets, src->offsets,
679 src->length * sizeof(src->offsets[0]));
680 break;
681
682 case vtn_base_type_function:
683 dest->params = ralloc_array(b, struct vtn_type *, src->length);
684 memcpy(dest->params, src->params, src->length * sizeof(src->params[0]));
685 break;
686 }
687
688 return dest;
689 }
690
691 static struct vtn_type *
692 mutable_matrix_member(struct vtn_builder *b, struct vtn_type *type, int member)
693 {
694 type->members[member] = vtn_type_copy(b, type->members[member]);
695 type = type->members[member];
696
697 /* We may have an array of matrices.... Oh, joy! */
698 while (glsl_type_is_array(type->type)) {
699 type->array_element = vtn_type_copy(b, type->array_element);
700 type = type->array_element;
701 }
702
703 vtn_assert(glsl_type_is_matrix(type->type));
704
705 return type;
706 }
707
708 static void
709 vtn_handle_access_qualifier(struct vtn_builder *b, struct vtn_type *type,
710 int member, enum gl_access_qualifier access)
711 {
712 type->members[member] = vtn_type_copy(b, type->members[member]);
713 type = type->members[member];
714
715 type->access |= access;
716 }
717
718 static void
719 array_stride_decoration_cb(struct vtn_builder *b,
720 struct vtn_value *val, int member,
721 const struct vtn_decoration *dec, void *void_ctx)
722 {
723 struct vtn_type *type = val->type;
724
725 if (dec->decoration == SpvDecorationArrayStride) {
726 vtn_fail_if(dec->operands[0] == 0, "ArrayStride must be non-zero");
727 type->stride = dec->operands[0];
728 }
729 }
730
731 static void
732 struct_member_decoration_cb(struct vtn_builder *b,
733 struct vtn_value *val, int member,
734 const struct vtn_decoration *dec, void *void_ctx)
735 {
736 struct member_decoration_ctx *ctx = void_ctx;
737
738 if (member < 0)
739 return;
740
741 assert(member < ctx->num_fields);
742
743 switch (dec->decoration) {
744 case SpvDecorationRelaxedPrecision:
745 case SpvDecorationUniform:
746 break; /* FIXME: Do nothing with this for now. */
747 case SpvDecorationNonWritable:
748 vtn_handle_access_qualifier(b, ctx->type, member, ACCESS_NON_WRITEABLE);
749 break;
750 case SpvDecorationNonReadable:
751 vtn_handle_access_qualifier(b, ctx->type, member, ACCESS_NON_READABLE);
752 break;
753 case SpvDecorationVolatile:
754 vtn_handle_access_qualifier(b, ctx->type, member, ACCESS_VOLATILE);
755 break;
756 case SpvDecorationCoherent:
757 vtn_handle_access_qualifier(b, ctx->type, member, ACCESS_COHERENT);
758 break;
759 case SpvDecorationNoPerspective:
760 ctx->fields[member].interpolation = INTERP_MODE_NOPERSPECTIVE;
761 break;
762 case SpvDecorationFlat:
763 ctx->fields[member].interpolation = INTERP_MODE_FLAT;
764 break;
765 case SpvDecorationCentroid:
766 ctx->fields[member].centroid = true;
767 break;
768 case SpvDecorationSample:
769 ctx->fields[member].sample = true;
770 break;
771 case SpvDecorationStream:
772 /* Vulkan only allows one GS stream */
773 vtn_assert(dec->operands[0] == 0);
774 break;
775 case SpvDecorationLocation:
776 ctx->fields[member].location = dec->operands[0];
777 break;
778 case SpvDecorationComponent:
779 break; /* FIXME: What should we do with these? */
780 case SpvDecorationBuiltIn:
781 ctx->type->members[member] = vtn_type_copy(b, ctx->type->members[member]);
782 ctx->type->members[member]->is_builtin = true;
783 ctx->type->members[member]->builtin = dec->operands[0];
784 ctx->type->builtin_block = true;
785 break;
786 case SpvDecorationOffset:
787 ctx->type->offsets[member] = dec->operands[0];
788 ctx->fields[member].offset = dec->operands[0];
789 break;
790 case SpvDecorationMatrixStride:
791 /* Handled as a second pass */
792 break;
793 case SpvDecorationColMajor:
794 break; /* Nothing to do here. Column-major is the default. */
795 case SpvDecorationRowMajor:
796 mutable_matrix_member(b, ctx->type, member)->row_major = true;
797 break;
798
799 case SpvDecorationPatch:
800 break;
801
802 case SpvDecorationSpecId:
803 case SpvDecorationBlock:
804 case SpvDecorationBufferBlock:
805 case SpvDecorationArrayStride:
806 case SpvDecorationGLSLShared:
807 case SpvDecorationGLSLPacked:
808 case SpvDecorationInvariant:
809 case SpvDecorationRestrict:
810 case SpvDecorationAliased:
811 case SpvDecorationConstant:
812 case SpvDecorationIndex:
813 case SpvDecorationBinding:
814 case SpvDecorationDescriptorSet:
815 case SpvDecorationLinkageAttributes:
816 case SpvDecorationNoContraction:
817 case SpvDecorationInputAttachmentIndex:
818 vtn_warn("Decoration not allowed on struct members: %s",
819 spirv_decoration_to_string(dec->decoration));
820 break;
821
822 case SpvDecorationXfbBuffer:
823 case SpvDecorationXfbStride:
824 vtn_warn("Vulkan does not have transform feedback");
825 break;
826
827 case SpvDecorationCPacked:
828 if (b->shader->info.stage != MESA_SHADER_KERNEL)
829 vtn_warn("Decoration only allowed for CL-style kernels: %s",
830 spirv_decoration_to_string(dec->decoration));
831 else
832 ctx->type->packed = true;
833 break;
834
835 case SpvDecorationSaturatedConversion:
836 case SpvDecorationFuncParamAttr:
837 case SpvDecorationFPRoundingMode:
838 case SpvDecorationFPFastMathMode:
839 case SpvDecorationAlignment:
840 if (b->shader->info.stage != MESA_SHADER_KERNEL) {
841 vtn_warn("Decoration only allowed for CL-style kernels: %s",
842 spirv_decoration_to_string(dec->decoration));
843 }
844 break;
845
846 case SpvDecorationHlslSemanticGOOGLE:
847 /* HLSL semantic decorations can safely be ignored by the driver. */
848 break;
849
850 default:
851 vtn_fail_with_decoration("Unhandled decoration", dec->decoration);
852 }
853 }
854
855 /** Chases the array type all the way down to the tail and rewrites the
856 * glsl_types to be based off the tail's glsl_type.
857 */
858 static void
859 vtn_array_type_rewrite_glsl_type(struct vtn_type *type)
860 {
861 if (type->base_type != vtn_base_type_array)
862 return;
863
864 vtn_array_type_rewrite_glsl_type(type->array_element);
865
866 type->type = glsl_array_type(type->array_element->type,
867 type->length, type->stride);
868 }
869
870 /* Matrix strides are handled as a separate pass because we need to know
871 * whether the matrix is row-major or not first.
872 */
873 static void
874 struct_member_matrix_stride_cb(struct vtn_builder *b,
875 struct vtn_value *val, int member,
876 const struct vtn_decoration *dec,
877 void *void_ctx)
878 {
879 if (dec->decoration != SpvDecorationMatrixStride)
880 return;
881
882 vtn_fail_if(member < 0,
883 "The MatrixStride decoration is only allowed on members "
884 "of OpTypeStruct");
885 vtn_fail_if(dec->operands[0] == 0, "MatrixStride must be non-zero");
886
887 struct member_decoration_ctx *ctx = void_ctx;
888
889 struct vtn_type *mat_type = mutable_matrix_member(b, ctx->type, member);
890 if (mat_type->row_major) {
891 mat_type->array_element = vtn_type_copy(b, mat_type->array_element);
892 mat_type->stride = mat_type->array_element->stride;
893 mat_type->array_element->stride = dec->operands[0];
894
895 mat_type->type = glsl_explicit_matrix_type(mat_type->type,
896 dec->operands[0], true);
897 mat_type->array_element->type = glsl_get_column_type(mat_type->type);
898 } else {
899 vtn_assert(mat_type->array_element->stride > 0);
900 mat_type->stride = dec->operands[0];
901
902 mat_type->type = glsl_explicit_matrix_type(mat_type->type,
903 dec->operands[0], false);
904 }
905
906 /* Now that we've replaced the glsl_type with a properly strided matrix
907 * type, rewrite the member type so that it's an array of the proper kind
908 * of glsl_type.
909 */
910 vtn_array_type_rewrite_glsl_type(ctx->type->members[member]);
911 ctx->fields[member].type = ctx->type->members[member]->type;
912 }
913
914 static void
915 struct_block_decoration_cb(struct vtn_builder *b,
916 struct vtn_value *val, int member,
917 const struct vtn_decoration *dec, void *ctx)
918 {
919 if (member != -1)
920 return;
921
922 struct vtn_type *type = val->type;
923 if (dec->decoration == SpvDecorationBlock)
924 type->block = true;
925 else if (dec->decoration == SpvDecorationBufferBlock)
926 type->buffer_block = true;
927 }
928
929 static void
930 type_decoration_cb(struct vtn_builder *b,
931 struct vtn_value *val, int member,
932 const struct vtn_decoration *dec, void *ctx)
933 {
934 struct vtn_type *type = val->type;
935
936 if (member != -1) {
937 /* This should have been handled by OpTypeStruct */
938 assert(val->type->base_type == vtn_base_type_struct);
939 assert(member >= 0 && member < val->type->length);
940 return;
941 }
942
943 switch (dec->decoration) {
944 case SpvDecorationArrayStride:
945 vtn_assert(type->base_type == vtn_base_type_array ||
946 type->base_type == vtn_base_type_pointer);
947 break;
948 case SpvDecorationBlock:
949 vtn_assert(type->base_type == vtn_base_type_struct);
950 vtn_assert(type->block);
951 break;
952 case SpvDecorationBufferBlock:
953 vtn_assert(type->base_type == vtn_base_type_struct);
954 vtn_assert(type->buffer_block);
955 break;
956 case SpvDecorationGLSLShared:
957 case SpvDecorationGLSLPacked:
958 /* Ignore these, since we get explicit offsets anyways */
959 break;
960
961 case SpvDecorationRowMajor:
962 case SpvDecorationColMajor:
963 case SpvDecorationMatrixStride:
964 case SpvDecorationBuiltIn:
965 case SpvDecorationNoPerspective:
966 case SpvDecorationFlat:
967 case SpvDecorationPatch:
968 case SpvDecorationCentroid:
969 case SpvDecorationSample:
970 case SpvDecorationVolatile:
971 case SpvDecorationCoherent:
972 case SpvDecorationNonWritable:
973 case SpvDecorationNonReadable:
974 case SpvDecorationUniform:
975 case SpvDecorationLocation:
976 case SpvDecorationComponent:
977 case SpvDecorationOffset:
978 case SpvDecorationXfbBuffer:
979 case SpvDecorationXfbStride:
980 case SpvDecorationHlslSemanticGOOGLE:
981 vtn_warn("Decoration only allowed for struct members: %s",
982 spirv_decoration_to_string(dec->decoration));
983 break;
984
985 case SpvDecorationStream:
986 /* We don't need to do anything here, as stream is filled up when
987 * aplying the decoration to a variable, just check that if it is not a
988 * struct member, it should be a struct.
989 */
990 vtn_assert(type->base_type == vtn_base_type_struct);
991 break;
992
993 case SpvDecorationRelaxedPrecision:
994 case SpvDecorationSpecId:
995 case SpvDecorationInvariant:
996 case SpvDecorationRestrict:
997 case SpvDecorationAliased:
998 case SpvDecorationConstant:
999 case SpvDecorationIndex:
1000 case SpvDecorationBinding:
1001 case SpvDecorationDescriptorSet:
1002 case SpvDecorationLinkageAttributes:
1003 case SpvDecorationNoContraction:
1004 case SpvDecorationInputAttachmentIndex:
1005 vtn_warn("Decoration not allowed on types: %s",
1006 spirv_decoration_to_string(dec->decoration));
1007 break;
1008
1009 case SpvDecorationCPacked:
1010 if (b->shader->info.stage != MESA_SHADER_KERNEL)
1011 vtn_warn("Decoration only allowed for CL-style kernels: %s",
1012 spirv_decoration_to_string(dec->decoration));
1013 else
1014 type->packed = true;
1015 break;
1016
1017 case SpvDecorationSaturatedConversion:
1018 case SpvDecorationFuncParamAttr:
1019 case SpvDecorationFPRoundingMode:
1020 case SpvDecorationFPFastMathMode:
1021 case SpvDecorationAlignment:
1022 vtn_warn("Decoration only allowed for CL-style kernels: %s",
1023 spirv_decoration_to_string(dec->decoration));
1024 break;
1025
1026 default:
1027 vtn_fail_with_decoration("Unhandled decoration", dec->decoration);
1028 }
1029 }
1030
1031 static unsigned
1032 translate_image_format(struct vtn_builder *b, SpvImageFormat format)
1033 {
1034 switch (format) {
1035 case SpvImageFormatUnknown: return 0; /* GL_NONE */
1036 case SpvImageFormatRgba32f: return 0x8814; /* GL_RGBA32F */
1037 case SpvImageFormatRgba16f: return 0x881A; /* GL_RGBA16F */
1038 case SpvImageFormatR32f: return 0x822E; /* GL_R32F */
1039 case SpvImageFormatRgba8: return 0x8058; /* GL_RGBA8 */
1040 case SpvImageFormatRgba8Snorm: return 0x8F97; /* GL_RGBA8_SNORM */
1041 case SpvImageFormatRg32f: return 0x8230; /* GL_RG32F */
1042 case SpvImageFormatRg16f: return 0x822F; /* GL_RG16F */
1043 case SpvImageFormatR11fG11fB10f: return 0x8C3A; /* GL_R11F_G11F_B10F */
1044 case SpvImageFormatR16f: return 0x822D; /* GL_R16F */
1045 case SpvImageFormatRgba16: return 0x805B; /* GL_RGBA16 */
1046 case SpvImageFormatRgb10A2: return 0x8059; /* GL_RGB10_A2 */
1047 case SpvImageFormatRg16: return 0x822C; /* GL_RG16 */
1048 case SpvImageFormatRg8: return 0x822B; /* GL_RG8 */
1049 case SpvImageFormatR16: return 0x822A; /* GL_R16 */
1050 case SpvImageFormatR8: return 0x8229; /* GL_R8 */
1051 case SpvImageFormatRgba16Snorm: return 0x8F9B; /* GL_RGBA16_SNORM */
1052 case SpvImageFormatRg16Snorm: return 0x8F99; /* GL_RG16_SNORM */
1053 case SpvImageFormatRg8Snorm: return 0x8F95; /* GL_RG8_SNORM */
1054 case SpvImageFormatR16Snorm: return 0x8F98; /* GL_R16_SNORM */
1055 case SpvImageFormatR8Snorm: return 0x8F94; /* GL_R8_SNORM */
1056 case SpvImageFormatRgba32i: return 0x8D82; /* GL_RGBA32I */
1057 case SpvImageFormatRgba16i: return 0x8D88; /* GL_RGBA16I */
1058 case SpvImageFormatRgba8i: return 0x8D8E; /* GL_RGBA8I */
1059 case SpvImageFormatR32i: return 0x8235; /* GL_R32I */
1060 case SpvImageFormatRg32i: return 0x823B; /* GL_RG32I */
1061 case SpvImageFormatRg16i: return 0x8239; /* GL_RG16I */
1062 case SpvImageFormatRg8i: return 0x8237; /* GL_RG8I */
1063 case SpvImageFormatR16i: return 0x8233; /* GL_R16I */
1064 case SpvImageFormatR8i: return 0x8231; /* GL_R8I */
1065 case SpvImageFormatRgba32ui: return 0x8D70; /* GL_RGBA32UI */
1066 case SpvImageFormatRgba16ui: return 0x8D76; /* GL_RGBA16UI */
1067 case SpvImageFormatRgba8ui: return 0x8D7C; /* GL_RGBA8UI */
1068 case SpvImageFormatR32ui: return 0x8236; /* GL_R32UI */
1069 case SpvImageFormatRgb10a2ui: return 0x906F; /* GL_RGB10_A2UI */
1070 case SpvImageFormatRg32ui: return 0x823C; /* GL_RG32UI */
1071 case SpvImageFormatRg16ui: return 0x823A; /* GL_RG16UI */
1072 case SpvImageFormatRg8ui: return 0x8238; /* GL_RG8UI */
1073 case SpvImageFormatR16ui: return 0x8234; /* GL_R16UI */
1074 case SpvImageFormatR8ui: return 0x8232; /* GL_R8UI */
1075 default:
1076 vtn_fail("Invalid image format: %s (%u)",
1077 spirv_imageformat_to_string(format), format);
1078 }
1079 }
1080
1081 static struct vtn_type *
1082 vtn_type_layout_std430(struct vtn_builder *b, struct vtn_type *type,
1083 uint32_t *size_out, uint32_t *align_out)
1084 {
1085 switch (type->base_type) {
1086 case vtn_base_type_scalar: {
1087 uint32_t comp_size = glsl_type_is_boolean(type->type)
1088 ? 4 : glsl_get_bit_size(type->type) / 8;
1089 *size_out = comp_size;
1090 *align_out = comp_size;
1091 return type;
1092 }
1093
1094 case vtn_base_type_vector: {
1095 uint32_t comp_size = glsl_type_is_boolean(type->type)
1096 ? 4 : glsl_get_bit_size(type->type) / 8;
1097 unsigned align_comps = type->length == 3 ? 4 : type->length;
1098 *size_out = comp_size * type->length,
1099 *align_out = comp_size * align_comps;
1100 return type;
1101 }
1102
1103 case vtn_base_type_matrix:
1104 case vtn_base_type_array: {
1105 /* We're going to add an array stride */
1106 type = vtn_type_copy(b, type);
1107 uint32_t elem_size, elem_align;
1108 type->array_element = vtn_type_layout_std430(b, type->array_element,
1109 &elem_size, &elem_align);
1110 type->stride = vtn_align_u32(elem_size, elem_align);
1111 *size_out = type->stride * type->length;
1112 *align_out = elem_align;
1113 return type;
1114 }
1115
1116 case vtn_base_type_struct: {
1117 /* We're going to add member offsets */
1118 type = vtn_type_copy(b, type);
1119 uint32_t offset = 0;
1120 uint32_t align = 0;
1121 for (unsigned i = 0; i < type->length; i++) {
1122 uint32_t mem_size, mem_align;
1123 type->members[i] = vtn_type_layout_std430(b, type->members[i],
1124 &mem_size, &mem_align);
1125 offset = vtn_align_u32(offset, mem_align);
1126 type->offsets[i] = offset;
1127 offset += mem_size;
1128 align = MAX2(align, mem_align);
1129 }
1130 *size_out = offset;
1131 *align_out = align;
1132 return type;
1133 }
1134
1135 default:
1136 unreachable("Invalid SPIR-V type for std430");
1137 }
1138 }
1139
1140 static void
1141 vtn_handle_type(struct vtn_builder *b, SpvOp opcode,
1142 const uint32_t *w, unsigned count)
1143 {
1144 struct vtn_value *val = NULL;
1145
1146 /* In order to properly handle forward declarations, we have to defer
1147 * allocation for pointer types.
1148 */
1149 if (opcode != SpvOpTypePointer && opcode != SpvOpTypeForwardPointer) {
1150 val = vtn_push_value(b, w[1], vtn_value_type_type);
1151 vtn_fail_if(val->type != NULL,
1152 "Only pointers can have forward declarations");
1153 val->type = rzalloc(b, struct vtn_type);
1154 val->type->id = w[1];
1155 }
1156
1157 switch (opcode) {
1158 case SpvOpTypeVoid:
1159 val->type->base_type = vtn_base_type_void;
1160 val->type->type = glsl_void_type();
1161 break;
1162 case SpvOpTypeBool:
1163 val->type->base_type = vtn_base_type_scalar;
1164 val->type->type = glsl_bool_type();
1165 val->type->length = 1;
1166 break;
1167 case SpvOpTypeInt: {
1168 int bit_size = w[2];
1169 const bool signedness = w[3];
1170 val->type->base_type = vtn_base_type_scalar;
1171 switch (bit_size) {
1172 case 64:
1173 val->type->type = (signedness ? glsl_int64_t_type() : glsl_uint64_t_type());
1174 break;
1175 case 32:
1176 val->type->type = (signedness ? glsl_int_type() : glsl_uint_type());
1177 break;
1178 case 16:
1179 val->type->type = (signedness ? glsl_int16_t_type() : glsl_uint16_t_type());
1180 break;
1181 case 8:
1182 val->type->type = (signedness ? glsl_int8_t_type() : glsl_uint8_t_type());
1183 break;
1184 default:
1185 vtn_fail("Invalid int bit size: %u", bit_size);
1186 }
1187 val->type->length = 1;
1188 break;
1189 }
1190
1191 case SpvOpTypeFloat: {
1192 int bit_size = w[2];
1193 val->type->base_type = vtn_base_type_scalar;
1194 switch (bit_size) {
1195 case 16:
1196 val->type->type = glsl_float16_t_type();
1197 break;
1198 case 32:
1199 val->type->type = glsl_float_type();
1200 break;
1201 case 64:
1202 val->type->type = glsl_double_type();
1203 break;
1204 default:
1205 vtn_fail("Invalid float bit size: %u", bit_size);
1206 }
1207 val->type->length = 1;
1208 break;
1209 }
1210
1211 case SpvOpTypeVector: {
1212 struct vtn_type *base = vtn_value(b, w[2], vtn_value_type_type)->type;
1213 unsigned elems = w[3];
1214
1215 vtn_fail_if(base->base_type != vtn_base_type_scalar,
1216 "Base type for OpTypeVector must be a scalar");
1217 vtn_fail_if((elems < 2 || elems > 4) && (elems != 8) && (elems != 16),
1218 "Invalid component count for OpTypeVector");
1219
1220 val->type->base_type = vtn_base_type_vector;
1221 val->type->type = glsl_vector_type(glsl_get_base_type(base->type), elems);
1222 val->type->length = elems;
1223 val->type->stride = glsl_type_is_boolean(val->type->type)
1224 ? 4 : glsl_get_bit_size(base->type) / 8;
1225 val->type->array_element = base;
1226 break;
1227 }
1228
1229 case SpvOpTypeMatrix: {
1230 struct vtn_type *base = vtn_value(b, w[2], vtn_value_type_type)->type;
1231 unsigned columns = w[3];
1232
1233 vtn_fail_if(base->base_type != vtn_base_type_vector,
1234 "Base type for OpTypeMatrix must be a vector");
1235 vtn_fail_if(columns < 2 || columns > 4,
1236 "Invalid column count for OpTypeMatrix");
1237
1238 val->type->base_type = vtn_base_type_matrix;
1239 val->type->type = glsl_matrix_type(glsl_get_base_type(base->type),
1240 glsl_get_vector_elements(base->type),
1241 columns);
1242 vtn_fail_if(glsl_type_is_error(val->type->type),
1243 "Unsupported base type for OpTypeMatrix");
1244 assert(!glsl_type_is_error(val->type->type));
1245 val->type->length = columns;
1246 val->type->array_element = base;
1247 val->type->row_major = false;
1248 val->type->stride = 0;
1249 break;
1250 }
1251
1252 case SpvOpTypeRuntimeArray:
1253 case SpvOpTypeArray: {
1254 struct vtn_type *array_element =
1255 vtn_value(b, w[2], vtn_value_type_type)->type;
1256
1257 if (opcode == SpvOpTypeRuntimeArray) {
1258 /* A length of 0 is used to denote unsized arrays */
1259 val->type->length = 0;
1260 } else {
1261 val->type->length =
1262 vtn_value(b, w[3], vtn_value_type_constant)->constant->values[0][0].u32;
1263 }
1264
1265 val->type->base_type = vtn_base_type_array;
1266 val->type->array_element = array_element;
1267 if (b->shader->info.stage == MESA_SHADER_KERNEL)
1268 val->type->stride = glsl_get_cl_size(array_element->type);
1269
1270 vtn_foreach_decoration(b, val, array_stride_decoration_cb, NULL);
1271 val->type->type = glsl_array_type(array_element->type, val->type->length,
1272 val->type->stride);
1273 break;
1274 }
1275
1276 case SpvOpTypeStruct: {
1277 unsigned num_fields = count - 2;
1278 val->type->base_type = vtn_base_type_struct;
1279 val->type->length = num_fields;
1280 val->type->members = ralloc_array(b, struct vtn_type *, num_fields);
1281 val->type->offsets = ralloc_array(b, unsigned, num_fields);
1282 val->type->packed = false;
1283
1284 NIR_VLA(struct glsl_struct_field, fields, count);
1285 for (unsigned i = 0; i < num_fields; i++) {
1286 val->type->members[i] =
1287 vtn_value(b, w[i + 2], vtn_value_type_type)->type;
1288 fields[i] = (struct glsl_struct_field) {
1289 .type = val->type->members[i]->type,
1290 .name = ralloc_asprintf(b, "field%d", i),
1291 .location = -1,
1292 .offset = -1,
1293 };
1294 }
1295
1296 if (b->shader->info.stage == MESA_SHADER_KERNEL) {
1297 unsigned offset = 0;
1298 for (unsigned i = 0; i < num_fields; i++) {
1299 offset = align(offset, glsl_get_cl_alignment(fields[i].type));
1300 fields[i].offset = offset;
1301 offset += glsl_get_cl_size(fields[i].type);
1302 }
1303 }
1304
1305 struct member_decoration_ctx ctx = {
1306 .num_fields = num_fields,
1307 .fields = fields,
1308 .type = val->type
1309 };
1310
1311 vtn_foreach_decoration(b, val, struct_member_decoration_cb, &ctx);
1312 vtn_foreach_decoration(b, val, struct_member_matrix_stride_cb, &ctx);
1313
1314 vtn_foreach_decoration(b, val, struct_block_decoration_cb, NULL);
1315
1316 const char *name = val->name;
1317
1318 if (val->type->block || val->type->buffer_block) {
1319 /* Packing will be ignored since types coming from SPIR-V are
1320 * explicitly laid out.
1321 */
1322 val->type->type = glsl_interface_type(fields, num_fields,
1323 /* packing */ 0, false,
1324 name ? name : "block");
1325 } else {
1326 val->type->type = glsl_struct_type(fields, num_fields,
1327 name ? name : "struct", false);
1328 }
1329 break;
1330 }
1331
1332 case SpvOpTypeFunction: {
1333 val->type->base_type = vtn_base_type_function;
1334 val->type->type = NULL;
1335
1336 val->type->return_type = vtn_value(b, w[2], vtn_value_type_type)->type;
1337
1338 const unsigned num_params = count - 3;
1339 val->type->length = num_params;
1340 val->type->params = ralloc_array(b, struct vtn_type *, num_params);
1341 for (unsigned i = 0; i < count - 3; i++) {
1342 val->type->params[i] =
1343 vtn_value(b, w[i + 3], vtn_value_type_type)->type;
1344 }
1345 break;
1346 }
1347
1348 case SpvOpTypePointer:
1349 case SpvOpTypeForwardPointer: {
1350 /* We can't blindly push the value because it might be a forward
1351 * declaration.
1352 */
1353 val = vtn_untyped_value(b, w[1]);
1354
1355 SpvStorageClass storage_class = w[2];
1356
1357 if (val->value_type == vtn_value_type_invalid) {
1358 val->value_type = vtn_value_type_type;
1359 val->type = rzalloc(b, struct vtn_type);
1360 val->type->id = w[1];
1361 val->type->base_type = vtn_base_type_pointer;
1362 val->type->storage_class = storage_class;
1363
1364 /* These can actually be stored to nir_variables and used as SSA
1365 * values so they need a real glsl_type.
1366 */
1367 switch (storage_class) {
1368 case SpvStorageClassUniform:
1369 val->type->type = b->options->ubo_ptr_type;
1370 break;
1371 case SpvStorageClassStorageBuffer:
1372 val->type->type = b->options->ssbo_ptr_type;
1373 break;
1374 case SpvStorageClassPhysicalStorageBufferEXT:
1375 val->type->type = b->options->phys_ssbo_ptr_type;
1376 break;
1377 case SpvStorageClassPushConstant:
1378 val->type->type = b->options->push_const_ptr_type;
1379 break;
1380 case SpvStorageClassWorkgroup:
1381 val->type->type = b->options->shared_ptr_type;
1382 break;
1383 case SpvStorageClassCrossWorkgroup:
1384 val->type->type = b->options->global_ptr_type;
1385 break;
1386 case SpvStorageClassFunction:
1387 if (b->physical_ptrs)
1388 val->type->type = b->options->temp_ptr_type;
1389 break;
1390 default:
1391 /* In this case, no variable pointers are allowed so all deref
1392 * chains are complete back to the variable and it doesn't matter
1393 * what type gets used so we leave it NULL.
1394 */
1395 break;
1396 }
1397 } else {
1398 vtn_fail_if(val->type->storage_class != storage_class,
1399 "The storage classes of an OpTypePointer and any "
1400 "OpTypeForwardPointers that provide forward "
1401 "declarations of it must match.");
1402 }
1403
1404 if (opcode == SpvOpTypePointer) {
1405 vtn_fail_if(val->type->deref != NULL,
1406 "While OpTypeForwardPointer can be used to provide a "
1407 "forward declaration of a pointer, OpTypePointer can "
1408 "only be used once for a given id.");
1409
1410 val->type->deref = vtn_value(b, w[3], vtn_value_type_type)->type;
1411
1412 vtn_foreach_decoration(b, val, array_stride_decoration_cb, NULL);
1413
1414 if (b->physical_ptrs) {
1415 switch (storage_class) {
1416 case SpvStorageClassFunction:
1417 case SpvStorageClassWorkgroup:
1418 case SpvStorageClassCrossWorkgroup:
1419 val->type->stride = align(glsl_get_cl_size(val->type->deref->type),
1420 glsl_get_cl_alignment(val->type->deref->type));
1421 break;
1422 default:
1423 break;
1424 }
1425 }
1426
1427 if (storage_class == SpvStorageClassWorkgroup &&
1428 b->options->lower_workgroup_access_to_offsets) {
1429 uint32_t size, align;
1430 val->type->deref = vtn_type_layout_std430(b, val->type->deref,
1431 &size, &align);
1432 val->type->length = size;
1433 val->type->align = align;
1434 }
1435 }
1436 break;
1437 }
1438
1439 case SpvOpTypeImage: {
1440 val->type->base_type = vtn_base_type_image;
1441
1442 const struct vtn_type *sampled_type =
1443 vtn_value(b, w[2], vtn_value_type_type)->type;
1444
1445 vtn_fail_if(sampled_type->base_type != vtn_base_type_scalar ||
1446 glsl_get_bit_size(sampled_type->type) != 32,
1447 "Sampled type of OpTypeImage must be a 32-bit scalar");
1448
1449 enum glsl_sampler_dim dim;
1450 switch ((SpvDim)w[3]) {
1451 case SpvDim1D: dim = GLSL_SAMPLER_DIM_1D; break;
1452 case SpvDim2D: dim = GLSL_SAMPLER_DIM_2D; break;
1453 case SpvDim3D: dim = GLSL_SAMPLER_DIM_3D; break;
1454 case SpvDimCube: dim = GLSL_SAMPLER_DIM_CUBE; break;
1455 case SpvDimRect: dim = GLSL_SAMPLER_DIM_RECT; break;
1456 case SpvDimBuffer: dim = GLSL_SAMPLER_DIM_BUF; break;
1457 case SpvDimSubpassData: dim = GLSL_SAMPLER_DIM_SUBPASS; break;
1458 default:
1459 vtn_fail("Invalid SPIR-V image dimensionality: %s (%u)",
1460 spirv_dim_to_string((SpvDim)w[3]), w[3]);
1461 }
1462
1463 /* w[4]: as per Vulkan spec "Validation Rules within a Module",
1464 * The “Depth” operand of OpTypeImage is ignored.
1465 */
1466 bool is_array = w[5];
1467 bool multisampled = w[6];
1468 unsigned sampled = w[7];
1469 SpvImageFormat format = w[8];
1470
1471 if (count > 9)
1472 val->type->access_qualifier = w[9];
1473 else
1474 val->type->access_qualifier = SpvAccessQualifierReadWrite;
1475
1476 if (multisampled) {
1477 if (dim == GLSL_SAMPLER_DIM_2D)
1478 dim = GLSL_SAMPLER_DIM_MS;
1479 else if (dim == GLSL_SAMPLER_DIM_SUBPASS)
1480 dim = GLSL_SAMPLER_DIM_SUBPASS_MS;
1481 else
1482 vtn_fail("Unsupported multisampled image type");
1483 }
1484
1485 val->type->image_format = translate_image_format(b, format);
1486
1487 enum glsl_base_type sampled_base_type =
1488 glsl_get_base_type(sampled_type->type);
1489 if (sampled == 1) {
1490 val->type->sampled = true;
1491 val->type->type = glsl_sampler_type(dim, false, is_array,
1492 sampled_base_type);
1493 } else if (sampled == 2) {
1494 val->type->sampled = false;
1495 val->type->type = glsl_image_type(dim, is_array, sampled_base_type);
1496 } else {
1497 vtn_fail("We need to know if the image will be sampled");
1498 }
1499 break;
1500 }
1501
1502 case SpvOpTypeSampledImage:
1503 val->type->base_type = vtn_base_type_sampled_image;
1504 val->type->image = vtn_value(b, w[2], vtn_value_type_type)->type;
1505 val->type->type = val->type->image->type;
1506 break;
1507
1508 case SpvOpTypeSampler:
1509 /* The actual sampler type here doesn't really matter. It gets
1510 * thrown away the moment you combine it with an image. What really
1511 * matters is that it's a sampler type as opposed to an integer type
1512 * so the backend knows what to do.
1513 */
1514 val->type->base_type = vtn_base_type_sampler;
1515 val->type->type = glsl_bare_sampler_type();
1516 break;
1517
1518 case SpvOpTypeOpaque:
1519 case SpvOpTypeEvent:
1520 case SpvOpTypeDeviceEvent:
1521 case SpvOpTypeReserveId:
1522 case SpvOpTypeQueue:
1523 case SpvOpTypePipe:
1524 default:
1525 vtn_fail_with_opcode("Unhandled opcode", opcode);
1526 }
1527
1528 vtn_foreach_decoration(b, val, type_decoration_cb, NULL);
1529
1530 if (val->type->base_type == vtn_base_type_struct &&
1531 (val->type->block || val->type->buffer_block)) {
1532 for (unsigned i = 0; i < val->type->length; i++) {
1533 vtn_fail_if(vtn_type_contains_block(b, val->type->members[i]),
1534 "Block and BufferBlock decorations cannot decorate a "
1535 "structure type that is nested at any level inside "
1536 "another structure type decorated with Block or "
1537 "BufferBlock.");
1538 }
1539 }
1540 }
1541
1542 static nir_constant *
1543 vtn_null_constant(struct vtn_builder *b, const struct glsl_type *type)
1544 {
1545 nir_constant *c = rzalloc(b, nir_constant);
1546
1547 /* For pointers and other typeless things, we have to return something but
1548 * it doesn't matter what.
1549 */
1550 if (!type)
1551 return c;
1552
1553 switch (glsl_get_base_type(type)) {
1554 case GLSL_TYPE_INT:
1555 case GLSL_TYPE_UINT:
1556 case GLSL_TYPE_INT16:
1557 case GLSL_TYPE_UINT16:
1558 case GLSL_TYPE_UINT8:
1559 case GLSL_TYPE_INT8:
1560 case GLSL_TYPE_INT64:
1561 case GLSL_TYPE_UINT64:
1562 case GLSL_TYPE_BOOL:
1563 case GLSL_TYPE_FLOAT:
1564 case GLSL_TYPE_FLOAT16:
1565 case GLSL_TYPE_DOUBLE:
1566 /* Nothing to do here. It's already initialized to zero */
1567 break;
1568
1569 case GLSL_TYPE_ARRAY:
1570 vtn_assert(glsl_get_length(type) > 0);
1571 c->num_elements = glsl_get_length(type);
1572 c->elements = ralloc_array(b, nir_constant *, c->num_elements);
1573
1574 c->elements[0] = vtn_null_constant(b, glsl_get_array_element(type));
1575 for (unsigned i = 1; i < c->num_elements; i++)
1576 c->elements[i] = c->elements[0];
1577 break;
1578
1579 case GLSL_TYPE_STRUCT:
1580 c->num_elements = glsl_get_length(type);
1581 c->elements = ralloc_array(b, nir_constant *, c->num_elements);
1582
1583 for (unsigned i = 0; i < c->num_elements; i++) {
1584 c->elements[i] = vtn_null_constant(b, glsl_get_struct_field(type, i));
1585 }
1586 break;
1587
1588 default:
1589 vtn_fail("Invalid type for null constant");
1590 }
1591
1592 return c;
1593 }
1594
1595 static void
1596 spec_constant_decoration_cb(struct vtn_builder *b, struct vtn_value *v,
1597 int member, const struct vtn_decoration *dec,
1598 void *data)
1599 {
1600 vtn_assert(member == -1);
1601 if (dec->decoration != SpvDecorationSpecId)
1602 return;
1603
1604 struct spec_constant_value *const_value = data;
1605
1606 for (unsigned i = 0; i < b->num_specializations; i++) {
1607 if (b->specializations[i].id == dec->operands[0]) {
1608 if (const_value->is_double)
1609 const_value->data64 = b->specializations[i].data64;
1610 else
1611 const_value->data32 = b->specializations[i].data32;
1612 return;
1613 }
1614 }
1615 }
1616
1617 static uint32_t
1618 get_specialization(struct vtn_builder *b, struct vtn_value *val,
1619 uint32_t const_value)
1620 {
1621 struct spec_constant_value data;
1622 data.is_double = false;
1623 data.data32 = const_value;
1624 vtn_foreach_decoration(b, val, spec_constant_decoration_cb, &data);
1625 return data.data32;
1626 }
1627
1628 static uint64_t
1629 get_specialization64(struct vtn_builder *b, struct vtn_value *val,
1630 uint64_t const_value)
1631 {
1632 struct spec_constant_value data;
1633 data.is_double = true;
1634 data.data64 = const_value;
1635 vtn_foreach_decoration(b, val, spec_constant_decoration_cb, &data);
1636 return data.data64;
1637 }
1638
1639 static void
1640 handle_workgroup_size_decoration_cb(struct vtn_builder *b,
1641 struct vtn_value *val,
1642 int member,
1643 const struct vtn_decoration *dec,
1644 void *data)
1645 {
1646 vtn_assert(member == -1);
1647 if (dec->decoration != SpvDecorationBuiltIn ||
1648 dec->operands[0] != SpvBuiltInWorkgroupSize)
1649 return;
1650
1651 vtn_assert(val->type->type == glsl_vector_type(GLSL_TYPE_UINT, 3));
1652 b->workgroup_size_builtin = val;
1653 }
1654
1655 static void
1656 vtn_handle_constant(struct vtn_builder *b, SpvOp opcode,
1657 const uint32_t *w, unsigned count)
1658 {
1659 struct vtn_value *val = vtn_push_value(b, w[2], vtn_value_type_constant);
1660 val->constant = rzalloc(b, nir_constant);
1661 switch (opcode) {
1662 case SpvOpConstantTrue:
1663 case SpvOpConstantFalse:
1664 case SpvOpSpecConstantTrue:
1665 case SpvOpSpecConstantFalse: {
1666 vtn_fail_if(val->type->type != glsl_bool_type(),
1667 "Result type of %s must be OpTypeBool",
1668 spirv_op_to_string(opcode));
1669
1670 uint32_t int_val = (opcode == SpvOpConstantTrue ||
1671 opcode == SpvOpSpecConstantTrue);
1672
1673 if (opcode == SpvOpSpecConstantTrue ||
1674 opcode == SpvOpSpecConstantFalse)
1675 int_val = get_specialization(b, val, int_val);
1676
1677 val->constant->values[0][0].b = int_val != 0;
1678 break;
1679 }
1680
1681 case SpvOpConstant: {
1682 vtn_fail_if(val->type->base_type != vtn_base_type_scalar,
1683 "Result type of %s must be a scalar",
1684 spirv_op_to_string(opcode));
1685 int bit_size = glsl_get_bit_size(val->type->type);
1686 switch (bit_size) {
1687 case 64:
1688 val->constant->values[0][0].u64 = vtn_u64_literal(&w[3]);
1689 break;
1690 case 32:
1691 val->constant->values[0][0].u32 = w[3];
1692 break;
1693 case 16:
1694 val->constant->values[0][0].u16 = w[3];
1695 break;
1696 case 8:
1697 val->constant->values[0][0].u8 = w[3];
1698 break;
1699 default:
1700 vtn_fail("Unsupported SpvOpConstant bit size: %u", bit_size);
1701 }
1702 break;
1703 }
1704
1705 case SpvOpSpecConstant: {
1706 vtn_fail_if(val->type->base_type != vtn_base_type_scalar,
1707 "Result type of %s must be a scalar",
1708 spirv_op_to_string(opcode));
1709 int bit_size = glsl_get_bit_size(val->type->type);
1710 switch (bit_size) {
1711 case 64:
1712 val->constant->values[0][0].u64 =
1713 get_specialization64(b, val, vtn_u64_literal(&w[3]));
1714 break;
1715 case 32:
1716 val->constant->values[0][0].u32 = get_specialization(b, val, w[3]);
1717 break;
1718 case 16:
1719 val->constant->values[0][0].u16 = get_specialization(b, val, w[3]);
1720 break;
1721 case 8:
1722 val->constant->values[0][0].u8 = get_specialization(b, val, w[3]);
1723 break;
1724 default:
1725 vtn_fail("Unsupported SpvOpSpecConstant bit size");
1726 }
1727 break;
1728 }
1729
1730 case SpvOpSpecConstantComposite:
1731 case SpvOpConstantComposite: {
1732 unsigned elem_count = count - 3;
1733 vtn_fail_if(elem_count != val->type->length,
1734 "%s has %u constituents, expected %u",
1735 spirv_op_to_string(opcode), elem_count, val->type->length);
1736
1737 nir_constant **elems = ralloc_array(b, nir_constant *, elem_count);
1738 for (unsigned i = 0; i < elem_count; i++) {
1739 struct vtn_value *val = vtn_untyped_value(b, w[i + 3]);
1740
1741 if (val->value_type == vtn_value_type_constant) {
1742 elems[i] = val->constant;
1743 } else {
1744 vtn_fail_if(val->value_type != vtn_value_type_undef,
1745 "only constants or undefs allowed for "
1746 "SpvOpConstantComposite");
1747 /* to make it easier, just insert a NULL constant for now */
1748 elems[i] = vtn_null_constant(b, val->type->type);
1749 }
1750 }
1751
1752 switch (val->type->base_type) {
1753 case vtn_base_type_vector: {
1754 assert(glsl_type_is_vector(val->type->type));
1755 for (unsigned i = 0; i < elem_count; i++)
1756 val->constant->values[0][i] = elems[i]->values[0][0];
1757 break;
1758 }
1759
1760 case vtn_base_type_matrix:
1761 assert(glsl_type_is_matrix(val->type->type));
1762 for (unsigned i = 0; i < elem_count; i++) {
1763 unsigned components =
1764 glsl_get_components(glsl_get_column_type(val->type->type));
1765 memcpy(val->constant->values[i], elems[i]->values,
1766 sizeof(nir_const_value) * components);
1767 }
1768 break;
1769
1770 case vtn_base_type_struct:
1771 case vtn_base_type_array:
1772 ralloc_steal(val->constant, elems);
1773 val->constant->num_elements = elem_count;
1774 val->constant->elements = elems;
1775 break;
1776
1777 default:
1778 vtn_fail("Result type of %s must be a composite type",
1779 spirv_op_to_string(opcode));
1780 }
1781 break;
1782 }
1783
1784 case SpvOpSpecConstantOp: {
1785 SpvOp opcode = get_specialization(b, val, w[3]);
1786 switch (opcode) {
1787 case SpvOpVectorShuffle: {
1788 struct vtn_value *v0 = &b->values[w[4]];
1789 struct vtn_value *v1 = &b->values[w[5]];
1790
1791 vtn_assert(v0->value_type == vtn_value_type_constant ||
1792 v0->value_type == vtn_value_type_undef);
1793 vtn_assert(v1->value_type == vtn_value_type_constant ||
1794 v1->value_type == vtn_value_type_undef);
1795
1796 unsigned len0 = glsl_get_vector_elements(v0->type->type);
1797 unsigned len1 = glsl_get_vector_elements(v1->type->type);
1798
1799 vtn_assert(len0 + len1 < 16);
1800
1801 unsigned bit_size = glsl_get_bit_size(val->type->type);
1802 unsigned bit_size0 = glsl_get_bit_size(v0->type->type);
1803 unsigned bit_size1 = glsl_get_bit_size(v1->type->type);
1804
1805 vtn_assert(bit_size == bit_size0 && bit_size == bit_size1);
1806 (void)bit_size0; (void)bit_size1;
1807
1808 if (bit_size == 64) {
1809 uint64_t u64[8];
1810 if (v0->value_type == vtn_value_type_constant) {
1811 for (unsigned i = 0; i < len0; i++)
1812 u64[i] = v0->constant->values[0][i].u64;
1813 }
1814 if (v1->value_type == vtn_value_type_constant) {
1815 for (unsigned i = 0; i < len1; i++)
1816 u64[len0 + i] = v1->constant->values[0][i].u64;
1817 }
1818
1819 for (unsigned i = 0, j = 0; i < count - 6; i++, j++) {
1820 uint32_t comp = w[i + 6];
1821 /* If component is not used, set the value to a known constant
1822 * to detect if it is wrongly used.
1823 */
1824 if (comp == (uint32_t)-1)
1825 val->constant->values[0][j].u64 = 0xdeadbeefdeadbeef;
1826 else
1827 val->constant->values[0][j].u64 = u64[comp];
1828 }
1829 } else {
1830 /* This is for both 32-bit and 16-bit values */
1831 uint32_t u32[8];
1832 if (v0->value_type == vtn_value_type_constant) {
1833 for (unsigned i = 0; i < len0; i++)
1834 u32[i] = v0->constant->values[0][i].u32;
1835 }
1836 if (v1->value_type == vtn_value_type_constant) {
1837 for (unsigned i = 0; i < len1; i++)
1838 u32[len0 + i] = v1->constant->values[0][i].u32;
1839 }
1840
1841 for (unsigned i = 0, j = 0; i < count - 6; i++, j++) {
1842 uint32_t comp = w[i + 6];
1843 /* If component is not used, set the value to a known constant
1844 * to detect if it is wrongly used.
1845 */
1846 if (comp == (uint32_t)-1)
1847 val->constant->values[0][j].u32 = 0xdeadbeef;
1848 else
1849 val->constant->values[0][j].u32 = u32[comp];
1850 }
1851 }
1852 break;
1853 }
1854
1855 case SpvOpCompositeExtract:
1856 case SpvOpCompositeInsert: {
1857 struct vtn_value *comp;
1858 unsigned deref_start;
1859 struct nir_constant **c;
1860 if (opcode == SpvOpCompositeExtract) {
1861 comp = vtn_value(b, w[4], vtn_value_type_constant);
1862 deref_start = 5;
1863 c = &comp->constant;
1864 } else {
1865 comp = vtn_value(b, w[5], vtn_value_type_constant);
1866 deref_start = 6;
1867 val->constant = nir_constant_clone(comp->constant,
1868 (nir_variable *)b);
1869 c = &val->constant;
1870 }
1871
1872 int elem = -1;
1873 int col = 0;
1874 const struct vtn_type *type = comp->type;
1875 for (unsigned i = deref_start; i < count; i++) {
1876 vtn_fail_if(w[i] > type->length,
1877 "%uth index of %s is %u but the type has only "
1878 "%u elements", i - deref_start,
1879 spirv_op_to_string(opcode), w[i], type->length);
1880
1881 switch (type->base_type) {
1882 case vtn_base_type_vector:
1883 elem = w[i];
1884 type = type->array_element;
1885 break;
1886
1887 case vtn_base_type_matrix:
1888 assert(col == 0 && elem == -1);
1889 col = w[i];
1890 elem = 0;
1891 type = type->array_element;
1892 break;
1893
1894 case vtn_base_type_array:
1895 c = &(*c)->elements[w[i]];
1896 type = type->array_element;
1897 break;
1898
1899 case vtn_base_type_struct:
1900 c = &(*c)->elements[w[i]];
1901 type = type->members[w[i]];
1902 break;
1903
1904 default:
1905 vtn_fail("%s must only index into composite types",
1906 spirv_op_to_string(opcode));
1907 }
1908 }
1909
1910 if (opcode == SpvOpCompositeExtract) {
1911 if (elem == -1) {
1912 val->constant = *c;
1913 } else {
1914 unsigned num_components = type->length;
1915 for (unsigned i = 0; i < num_components; i++)
1916 val->constant->values[0][i] = (*c)->values[col][elem + i];
1917 }
1918 } else {
1919 struct vtn_value *insert =
1920 vtn_value(b, w[4], vtn_value_type_constant);
1921 vtn_assert(insert->type == type);
1922 if (elem == -1) {
1923 *c = insert->constant;
1924 } else {
1925 unsigned num_components = type->length;
1926 for (unsigned i = 0; i < num_components; i++)
1927 (*c)->values[col][elem + i] = insert->constant->values[0][i];
1928 }
1929 }
1930 break;
1931 }
1932
1933 default: {
1934 bool swap;
1935 nir_alu_type dst_alu_type = nir_get_nir_type_for_glsl_type(val->type->type);
1936 nir_alu_type src_alu_type = dst_alu_type;
1937 unsigned num_components = glsl_get_vector_elements(val->type->type);
1938 unsigned bit_size;
1939
1940 vtn_assert(count <= 7);
1941
1942 switch (opcode) {
1943 case SpvOpSConvert:
1944 case SpvOpFConvert:
1945 /* We have a source in a conversion */
1946 src_alu_type =
1947 nir_get_nir_type_for_glsl_type(
1948 vtn_value(b, w[4], vtn_value_type_constant)->type->type);
1949 /* We use the bitsize of the conversion source to evaluate the opcode later */
1950 bit_size = glsl_get_bit_size(
1951 vtn_value(b, w[4], vtn_value_type_constant)->type->type);
1952 break;
1953 default:
1954 bit_size = glsl_get_bit_size(val->type->type);
1955 };
1956
1957 nir_op op = vtn_nir_alu_op_for_spirv_opcode(b, opcode, &swap,
1958 nir_alu_type_get_type_size(src_alu_type),
1959 nir_alu_type_get_type_size(dst_alu_type));
1960 nir_const_value src[3][NIR_MAX_VEC_COMPONENTS];
1961
1962 for (unsigned i = 0; i < count - 4; i++) {
1963 struct vtn_value *src_val =
1964 vtn_value(b, w[4 + i], vtn_value_type_constant);
1965
1966 /* If this is an unsized source, pull the bit size from the
1967 * source; otherwise, we'll use the bit size from the destination.
1968 */
1969 if (!nir_alu_type_get_type_size(nir_op_infos[op].input_types[i]))
1970 bit_size = glsl_get_bit_size(src_val->type->type);
1971
1972 unsigned j = swap ? 1 - i : i;
1973 memcpy(src[j], src_val->constant->values[0], sizeof(src[j]));
1974 }
1975
1976 /* fix up fixed size sources */
1977 switch (op) {
1978 case nir_op_ishl:
1979 case nir_op_ishr:
1980 case nir_op_ushr: {
1981 if (bit_size == 32)
1982 break;
1983 for (unsigned i = 0; i < num_components; ++i) {
1984 switch (bit_size) {
1985 case 64: src[1][i].u32 = src[1][i].u64; break;
1986 case 16: src[1][i].u32 = src[1][i].u16; break;
1987 case 8: src[1][i].u32 = src[1][i].u8; break;
1988 }
1989 }
1990 break;
1991 }
1992 default:
1993 break;
1994 }
1995
1996 nir_const_value *srcs[3] = {
1997 src[0], src[1], src[2],
1998 };
1999 nir_eval_const_opcode(op, val->constant->values[0], num_components, bit_size, srcs);
2000 break;
2001 } /* default */
2002 }
2003 break;
2004 }
2005
2006 case SpvOpConstantNull:
2007 val->constant = vtn_null_constant(b, val->type->type);
2008 break;
2009
2010 case SpvOpConstantSampler:
2011 vtn_fail("OpConstantSampler requires Kernel Capability");
2012 break;
2013
2014 default:
2015 vtn_fail_with_opcode("Unhandled opcode", opcode);
2016 }
2017
2018 /* Now that we have the value, update the workgroup size if needed */
2019 vtn_foreach_decoration(b, val, handle_workgroup_size_decoration_cb, NULL);
2020 }
2021
2022 struct vtn_ssa_value *
2023 vtn_create_ssa_value(struct vtn_builder *b, const struct glsl_type *type)
2024 {
2025 struct vtn_ssa_value *val = rzalloc(b, struct vtn_ssa_value);
2026 val->type = type;
2027
2028 if (!glsl_type_is_vector_or_scalar(type)) {
2029 unsigned elems = glsl_get_length(type);
2030 val->elems = ralloc_array(b, struct vtn_ssa_value *, elems);
2031 for (unsigned i = 0; i < elems; i++) {
2032 const struct glsl_type *child_type;
2033
2034 switch (glsl_get_base_type(type)) {
2035 case GLSL_TYPE_INT:
2036 case GLSL_TYPE_UINT:
2037 case GLSL_TYPE_INT16:
2038 case GLSL_TYPE_UINT16:
2039 case GLSL_TYPE_UINT8:
2040 case GLSL_TYPE_INT8:
2041 case GLSL_TYPE_INT64:
2042 case GLSL_TYPE_UINT64:
2043 case GLSL_TYPE_BOOL:
2044 case GLSL_TYPE_FLOAT:
2045 case GLSL_TYPE_FLOAT16:
2046 case GLSL_TYPE_DOUBLE:
2047 child_type = glsl_get_column_type(type);
2048 break;
2049 case GLSL_TYPE_ARRAY:
2050 child_type = glsl_get_array_element(type);
2051 break;
2052 case GLSL_TYPE_STRUCT:
2053 case GLSL_TYPE_INTERFACE:
2054 child_type = glsl_get_struct_field(type, i);
2055 break;
2056 default:
2057 vtn_fail("unkown base type");
2058 }
2059
2060 val->elems[i] = vtn_create_ssa_value(b, child_type);
2061 }
2062 }
2063
2064 return val;
2065 }
2066
2067 static nir_tex_src
2068 vtn_tex_src(struct vtn_builder *b, unsigned index, nir_tex_src_type type)
2069 {
2070 nir_tex_src src;
2071 src.src = nir_src_for_ssa(vtn_ssa_value(b, index)->def);
2072 src.src_type = type;
2073 return src;
2074 }
2075
2076 static void
2077 vtn_handle_texture(struct vtn_builder *b, SpvOp opcode,
2078 const uint32_t *w, unsigned count)
2079 {
2080 if (opcode == SpvOpSampledImage) {
2081 struct vtn_value *val =
2082 vtn_push_value(b, w[2], vtn_value_type_sampled_image);
2083 val->sampled_image = ralloc(b, struct vtn_sampled_image);
2084 val->sampled_image->type =
2085 vtn_value(b, w[1], vtn_value_type_type)->type;
2086 val->sampled_image->image =
2087 vtn_value(b, w[3], vtn_value_type_pointer)->pointer;
2088 val->sampled_image->sampler =
2089 vtn_value(b, w[4], vtn_value_type_pointer)->pointer;
2090 return;
2091 } else if (opcode == SpvOpImage) {
2092 struct vtn_value *val = vtn_push_value(b, w[2], vtn_value_type_pointer);
2093 struct vtn_value *src_val = vtn_untyped_value(b, w[3]);
2094 if (src_val->value_type == vtn_value_type_sampled_image) {
2095 val->pointer = src_val->sampled_image->image;
2096 } else {
2097 vtn_assert(src_val->value_type == vtn_value_type_pointer);
2098 val->pointer = src_val->pointer;
2099 }
2100 return;
2101 }
2102
2103 struct vtn_type *ret_type = vtn_value(b, w[1], vtn_value_type_type)->type;
2104 struct vtn_value *val = vtn_push_value(b, w[2], vtn_value_type_ssa);
2105
2106 struct vtn_sampled_image sampled;
2107 struct vtn_value *sampled_val = vtn_untyped_value(b, w[3]);
2108 if (sampled_val->value_type == vtn_value_type_sampled_image) {
2109 sampled = *sampled_val->sampled_image;
2110 } else {
2111 vtn_assert(sampled_val->value_type == vtn_value_type_pointer);
2112 sampled.type = sampled_val->pointer->type;
2113 sampled.image = NULL;
2114 sampled.sampler = sampled_val->pointer;
2115 }
2116
2117 const struct glsl_type *image_type = sampled.type->type;
2118 const enum glsl_sampler_dim sampler_dim = glsl_get_sampler_dim(image_type);
2119 const bool is_array = glsl_sampler_type_is_array(image_type);
2120
2121 /* Figure out the base texture operation */
2122 nir_texop texop;
2123 switch (opcode) {
2124 case SpvOpImageSampleImplicitLod:
2125 case SpvOpImageSampleDrefImplicitLod:
2126 case SpvOpImageSampleProjImplicitLod:
2127 case SpvOpImageSampleProjDrefImplicitLod:
2128 texop = nir_texop_tex;
2129 break;
2130
2131 case SpvOpImageSampleExplicitLod:
2132 case SpvOpImageSampleDrefExplicitLod:
2133 case SpvOpImageSampleProjExplicitLod:
2134 case SpvOpImageSampleProjDrefExplicitLod:
2135 texop = nir_texop_txl;
2136 break;
2137
2138 case SpvOpImageFetch:
2139 if (glsl_get_sampler_dim(image_type) == GLSL_SAMPLER_DIM_MS) {
2140 texop = nir_texop_txf_ms;
2141 } else {
2142 texop = nir_texop_txf;
2143 }
2144 break;
2145
2146 case SpvOpImageGather:
2147 case SpvOpImageDrefGather:
2148 texop = nir_texop_tg4;
2149 break;
2150
2151 case SpvOpImageQuerySizeLod:
2152 case SpvOpImageQuerySize:
2153 texop = nir_texop_txs;
2154 break;
2155
2156 case SpvOpImageQueryLod:
2157 texop = nir_texop_lod;
2158 break;
2159
2160 case SpvOpImageQueryLevels:
2161 texop = nir_texop_query_levels;
2162 break;
2163
2164 case SpvOpImageQuerySamples:
2165 texop = nir_texop_texture_samples;
2166 break;
2167
2168 default:
2169 vtn_fail_with_opcode("Unhandled opcode", opcode);
2170 }
2171
2172 nir_tex_src srcs[10]; /* 10 should be enough */
2173 nir_tex_src *p = srcs;
2174
2175 nir_deref_instr *sampler = vtn_pointer_to_deref(b, sampled.sampler);
2176 nir_deref_instr *texture =
2177 sampled.image ? vtn_pointer_to_deref(b, sampled.image) : sampler;
2178
2179 p->src = nir_src_for_ssa(&texture->dest.ssa);
2180 p->src_type = nir_tex_src_texture_deref;
2181 p++;
2182
2183 switch (texop) {
2184 case nir_texop_tex:
2185 case nir_texop_txb:
2186 case nir_texop_txl:
2187 case nir_texop_txd:
2188 case nir_texop_tg4:
2189 case nir_texop_lod:
2190 /* These operations require a sampler */
2191 p->src = nir_src_for_ssa(&sampler->dest.ssa);
2192 p->src_type = nir_tex_src_sampler_deref;
2193 p++;
2194 break;
2195 case nir_texop_txf:
2196 case nir_texop_txf_ms:
2197 case nir_texop_txs:
2198 case nir_texop_query_levels:
2199 case nir_texop_texture_samples:
2200 case nir_texop_samples_identical:
2201 /* These don't */
2202 break;
2203 case nir_texop_txf_ms_mcs:
2204 vtn_fail("unexpected nir_texop_txf_ms_mcs");
2205 }
2206
2207 unsigned idx = 4;
2208
2209 struct nir_ssa_def *coord;
2210 unsigned coord_components;
2211 switch (opcode) {
2212 case SpvOpImageSampleImplicitLod:
2213 case SpvOpImageSampleExplicitLod:
2214 case SpvOpImageSampleDrefImplicitLod:
2215 case SpvOpImageSampleDrefExplicitLod:
2216 case SpvOpImageSampleProjImplicitLod:
2217 case SpvOpImageSampleProjExplicitLod:
2218 case SpvOpImageSampleProjDrefImplicitLod:
2219 case SpvOpImageSampleProjDrefExplicitLod:
2220 case SpvOpImageFetch:
2221 case SpvOpImageGather:
2222 case SpvOpImageDrefGather:
2223 case SpvOpImageQueryLod: {
2224 /* All these types have the coordinate as their first real argument */
2225 switch (sampler_dim) {
2226 case GLSL_SAMPLER_DIM_1D:
2227 case GLSL_SAMPLER_DIM_BUF:
2228 coord_components = 1;
2229 break;
2230 case GLSL_SAMPLER_DIM_2D:
2231 case GLSL_SAMPLER_DIM_RECT:
2232 case GLSL_SAMPLER_DIM_MS:
2233 coord_components = 2;
2234 break;
2235 case GLSL_SAMPLER_DIM_3D:
2236 case GLSL_SAMPLER_DIM_CUBE:
2237 coord_components = 3;
2238 break;
2239 default:
2240 vtn_fail("Invalid sampler type");
2241 }
2242
2243 if (is_array && texop != nir_texop_lod)
2244 coord_components++;
2245
2246 coord = vtn_ssa_value(b, w[idx++])->def;
2247 p->src = nir_src_for_ssa(nir_channels(&b->nb, coord,
2248 (1 << coord_components) - 1));
2249 p->src_type = nir_tex_src_coord;
2250 p++;
2251 break;
2252 }
2253
2254 default:
2255 coord = NULL;
2256 coord_components = 0;
2257 break;
2258 }
2259
2260 switch (opcode) {
2261 case SpvOpImageSampleProjImplicitLod:
2262 case SpvOpImageSampleProjExplicitLod:
2263 case SpvOpImageSampleProjDrefImplicitLod:
2264 case SpvOpImageSampleProjDrefExplicitLod:
2265 /* These have the projector as the last coordinate component */
2266 p->src = nir_src_for_ssa(nir_channel(&b->nb, coord, coord_components));
2267 p->src_type = nir_tex_src_projector;
2268 p++;
2269 break;
2270
2271 default:
2272 break;
2273 }
2274
2275 bool is_shadow = false;
2276 unsigned gather_component = 0;
2277 switch (opcode) {
2278 case SpvOpImageSampleDrefImplicitLod:
2279 case SpvOpImageSampleDrefExplicitLod:
2280 case SpvOpImageSampleProjDrefImplicitLod:
2281 case SpvOpImageSampleProjDrefExplicitLod:
2282 case SpvOpImageDrefGather:
2283 /* These all have an explicit depth value as their next source */
2284 is_shadow = true;
2285 (*p++) = vtn_tex_src(b, w[idx++], nir_tex_src_comparator);
2286 break;
2287
2288 case SpvOpImageGather:
2289 /* This has a component as its next source */
2290 gather_component =
2291 vtn_value(b, w[idx++], vtn_value_type_constant)->constant->values[0][0].u32;
2292 break;
2293
2294 default:
2295 break;
2296 }
2297
2298 /* For OpImageQuerySizeLod, we always have an LOD */
2299 if (opcode == SpvOpImageQuerySizeLod)
2300 (*p++) = vtn_tex_src(b, w[idx++], nir_tex_src_lod);
2301
2302 /* Now we need to handle some number of optional arguments */
2303 struct vtn_value *gather_offsets = NULL;
2304 if (idx < count) {
2305 uint32_t operands = w[idx++];
2306
2307 if (operands & SpvImageOperandsBiasMask) {
2308 vtn_assert(texop == nir_texop_tex);
2309 texop = nir_texop_txb;
2310 (*p++) = vtn_tex_src(b, w[idx++], nir_tex_src_bias);
2311 }
2312
2313 if (operands & SpvImageOperandsLodMask) {
2314 vtn_assert(texop == nir_texop_txl || texop == nir_texop_txf ||
2315 texop == nir_texop_txs);
2316 (*p++) = vtn_tex_src(b, w[idx++], nir_tex_src_lod);
2317 }
2318
2319 if (operands & SpvImageOperandsGradMask) {
2320 vtn_assert(texop == nir_texop_txl);
2321 texop = nir_texop_txd;
2322 (*p++) = vtn_tex_src(b, w[idx++], nir_tex_src_ddx);
2323 (*p++) = vtn_tex_src(b, w[idx++], nir_tex_src_ddy);
2324 }
2325
2326 if (operands & SpvImageOperandsOffsetMask ||
2327 operands & SpvImageOperandsConstOffsetMask)
2328 (*p++) = vtn_tex_src(b, w[idx++], nir_tex_src_offset);
2329
2330 if (operands & SpvImageOperandsConstOffsetsMask) {
2331 vtn_assert(texop == nir_texop_tg4);
2332 gather_offsets = vtn_value(b, w[idx++], vtn_value_type_constant);
2333 }
2334
2335 if (operands & SpvImageOperandsSampleMask) {
2336 vtn_assert(texop == nir_texop_txf_ms);
2337 texop = nir_texop_txf_ms;
2338 (*p++) = vtn_tex_src(b, w[idx++], nir_tex_src_ms_index);
2339 }
2340
2341 if (operands & SpvImageOperandsMinLodMask) {
2342 vtn_assert(texop == nir_texop_tex ||
2343 texop == nir_texop_txb ||
2344 texop == nir_texop_txd);
2345 (*p++) = vtn_tex_src(b, w[idx++], nir_tex_src_min_lod);
2346 }
2347 }
2348 /* We should have now consumed exactly all of the arguments */
2349 vtn_assert(idx == count);
2350
2351 nir_tex_instr *instr = nir_tex_instr_create(b->shader, p - srcs);
2352 instr->op = texop;
2353
2354 memcpy(instr->src, srcs, instr->num_srcs * sizeof(*instr->src));
2355
2356 instr->coord_components = coord_components;
2357 instr->sampler_dim = sampler_dim;
2358 instr->is_array = is_array;
2359 instr->is_shadow = is_shadow;
2360 instr->is_new_style_shadow =
2361 is_shadow && glsl_get_components(ret_type->type) == 1;
2362 instr->component = gather_component;
2363
2364 if (sampled.image && (sampled.image->access & ACCESS_NON_UNIFORM))
2365 instr->texture_non_uniform = true;
2366
2367 if (sampled.sampler && (sampled.sampler->access & ACCESS_NON_UNIFORM))
2368 instr->sampler_non_uniform = true;
2369
2370 switch (glsl_get_sampler_result_type(image_type)) {
2371 case GLSL_TYPE_FLOAT: instr->dest_type = nir_type_float; break;
2372 case GLSL_TYPE_INT: instr->dest_type = nir_type_int; break;
2373 case GLSL_TYPE_UINT: instr->dest_type = nir_type_uint; break;
2374 case GLSL_TYPE_BOOL: instr->dest_type = nir_type_bool; break;
2375 default:
2376 vtn_fail("Invalid base type for sampler result");
2377 }
2378
2379 nir_ssa_dest_init(&instr->instr, &instr->dest,
2380 nir_tex_instr_dest_size(instr), 32, NULL);
2381
2382 vtn_assert(glsl_get_vector_elements(ret_type->type) ==
2383 nir_tex_instr_dest_size(instr));
2384
2385 if (gather_offsets) {
2386 vtn_fail_if(gather_offsets->type->base_type != vtn_base_type_array ||
2387 gather_offsets->type->length != 4,
2388 "ConstOffsets must be an array of size four of vectors "
2389 "of two integer components");
2390
2391 struct vtn_type *vec_type = gather_offsets->type->array_element;
2392 vtn_fail_if(vec_type->base_type != vtn_base_type_vector ||
2393 vec_type->length != 2 ||
2394 !glsl_type_is_integer(vec_type->type),
2395 "ConstOffsets must be an array of size four of vectors "
2396 "of two integer components");
2397
2398 unsigned bit_size = glsl_get_bit_size(vec_type->type);
2399 for (uint32_t i = 0; i < 4; i++) {
2400 const nir_const_value *cvec =
2401 gather_offsets->constant->elements[i]->values[0];
2402 for (uint32_t j = 0; j < 2; j++) {
2403 switch (bit_size) {
2404 case 8: instr->tg4_offsets[i][j] = cvec[j].i8; break;
2405 case 16: instr->tg4_offsets[i][j] = cvec[j].i16; break;
2406 case 32: instr->tg4_offsets[i][j] = cvec[j].i32; break;
2407 case 64: instr->tg4_offsets[i][j] = cvec[j].i64; break;
2408 default:
2409 vtn_fail("Unsupported bit size: %u", bit_size);
2410 }
2411 }
2412 }
2413 }
2414
2415 val->ssa = vtn_create_ssa_value(b, ret_type->type);
2416 val->ssa->def = &instr->dest.ssa;
2417
2418 nir_builder_instr_insert(&b->nb, &instr->instr);
2419 }
2420
2421 static void
2422 fill_common_atomic_sources(struct vtn_builder *b, SpvOp opcode,
2423 const uint32_t *w, nir_src *src)
2424 {
2425 switch (opcode) {
2426 case SpvOpAtomicIIncrement:
2427 src[0] = nir_src_for_ssa(nir_imm_int(&b->nb, 1));
2428 break;
2429
2430 case SpvOpAtomicIDecrement:
2431 src[0] = nir_src_for_ssa(nir_imm_int(&b->nb, -1));
2432 break;
2433
2434 case SpvOpAtomicISub:
2435 src[0] =
2436 nir_src_for_ssa(nir_ineg(&b->nb, vtn_ssa_value(b, w[6])->def));
2437 break;
2438
2439 case SpvOpAtomicCompareExchange:
2440 case SpvOpAtomicCompareExchangeWeak:
2441 src[0] = nir_src_for_ssa(vtn_ssa_value(b, w[8])->def);
2442 src[1] = nir_src_for_ssa(vtn_ssa_value(b, w[7])->def);
2443 break;
2444
2445 case SpvOpAtomicExchange:
2446 case SpvOpAtomicIAdd:
2447 case SpvOpAtomicSMin:
2448 case SpvOpAtomicUMin:
2449 case SpvOpAtomicSMax:
2450 case SpvOpAtomicUMax:
2451 case SpvOpAtomicAnd:
2452 case SpvOpAtomicOr:
2453 case SpvOpAtomicXor:
2454 src[0] = nir_src_for_ssa(vtn_ssa_value(b, w[6])->def);
2455 break;
2456
2457 default:
2458 vtn_fail_with_opcode("Invalid SPIR-V atomic", opcode);
2459 }
2460 }
2461
2462 static nir_ssa_def *
2463 get_image_coord(struct vtn_builder *b, uint32_t value)
2464 {
2465 struct vtn_ssa_value *coord = vtn_ssa_value(b, value);
2466
2467 /* The image_load_store intrinsics assume a 4-dim coordinate */
2468 unsigned dim = glsl_get_vector_elements(coord->type);
2469 unsigned swizzle[4];
2470 for (unsigned i = 0; i < 4; i++)
2471 swizzle[i] = MIN2(i, dim - 1);
2472
2473 return nir_swizzle(&b->nb, coord->def, swizzle, 4, false);
2474 }
2475
2476 static nir_ssa_def *
2477 expand_to_vec4(nir_builder *b, nir_ssa_def *value)
2478 {
2479 if (value->num_components == 4)
2480 return value;
2481
2482 unsigned swiz[4];
2483 for (unsigned i = 0; i < 4; i++)
2484 swiz[i] = i < value->num_components ? i : 0;
2485 return nir_swizzle(b, value, swiz, 4, false);
2486 }
2487
2488 static void
2489 vtn_handle_image(struct vtn_builder *b, SpvOp opcode,
2490 const uint32_t *w, unsigned count)
2491 {
2492 /* Just get this one out of the way */
2493 if (opcode == SpvOpImageTexelPointer) {
2494 struct vtn_value *val =
2495 vtn_push_value(b, w[2], vtn_value_type_image_pointer);
2496 val->image = ralloc(b, struct vtn_image_pointer);
2497
2498 val->image->image = vtn_value(b, w[3], vtn_value_type_pointer)->pointer;
2499 val->image->coord = get_image_coord(b, w[4]);
2500 val->image->sample = vtn_ssa_value(b, w[5])->def;
2501 return;
2502 }
2503
2504 struct vtn_image_pointer image;
2505
2506 switch (opcode) {
2507 case SpvOpAtomicExchange:
2508 case SpvOpAtomicCompareExchange:
2509 case SpvOpAtomicCompareExchangeWeak:
2510 case SpvOpAtomicIIncrement:
2511 case SpvOpAtomicIDecrement:
2512 case SpvOpAtomicIAdd:
2513 case SpvOpAtomicISub:
2514 case SpvOpAtomicLoad:
2515 case SpvOpAtomicSMin:
2516 case SpvOpAtomicUMin:
2517 case SpvOpAtomicSMax:
2518 case SpvOpAtomicUMax:
2519 case SpvOpAtomicAnd:
2520 case SpvOpAtomicOr:
2521 case SpvOpAtomicXor:
2522 image = *vtn_value(b, w[3], vtn_value_type_image_pointer)->image;
2523 break;
2524
2525 case SpvOpAtomicStore:
2526 image = *vtn_value(b, w[1], vtn_value_type_image_pointer)->image;
2527 break;
2528
2529 case SpvOpImageQuerySize:
2530 image.image = vtn_value(b, w[3], vtn_value_type_pointer)->pointer;
2531 image.coord = NULL;
2532 image.sample = NULL;
2533 break;
2534
2535 case SpvOpImageRead:
2536 image.image = vtn_value(b, w[3], vtn_value_type_pointer)->pointer;
2537 image.coord = get_image_coord(b, w[4]);
2538
2539 if (count > 5 && (w[5] & SpvImageOperandsSampleMask)) {
2540 vtn_assert(w[5] == SpvImageOperandsSampleMask);
2541 image.sample = vtn_ssa_value(b, w[6])->def;
2542 } else {
2543 image.sample = nir_ssa_undef(&b->nb, 1, 32);
2544 }
2545 break;
2546
2547 case SpvOpImageWrite:
2548 image.image = vtn_value(b, w[1], vtn_value_type_pointer)->pointer;
2549 image.coord = get_image_coord(b, w[2]);
2550
2551 /* texel = w[3] */
2552
2553 if (count > 4 && (w[4] & SpvImageOperandsSampleMask)) {
2554 vtn_assert(w[4] == SpvImageOperandsSampleMask);
2555 image.sample = vtn_ssa_value(b, w[5])->def;
2556 } else {
2557 image.sample = nir_ssa_undef(&b->nb, 1, 32);
2558 }
2559 break;
2560
2561 default:
2562 vtn_fail_with_opcode("Invalid image opcode", opcode);
2563 }
2564
2565 nir_intrinsic_op op;
2566 switch (opcode) {
2567 #define OP(S, N) case SpvOp##S: op = nir_intrinsic_image_deref_##N; break;
2568 OP(ImageQuerySize, size)
2569 OP(ImageRead, load)
2570 OP(ImageWrite, store)
2571 OP(AtomicLoad, load)
2572 OP(AtomicStore, store)
2573 OP(AtomicExchange, atomic_exchange)
2574 OP(AtomicCompareExchange, atomic_comp_swap)
2575 OP(AtomicCompareExchangeWeak, atomic_comp_swap)
2576 OP(AtomicIIncrement, atomic_add)
2577 OP(AtomicIDecrement, atomic_add)
2578 OP(AtomicIAdd, atomic_add)
2579 OP(AtomicISub, atomic_add)
2580 OP(AtomicSMin, atomic_min)
2581 OP(AtomicUMin, atomic_min)
2582 OP(AtomicSMax, atomic_max)
2583 OP(AtomicUMax, atomic_max)
2584 OP(AtomicAnd, atomic_and)
2585 OP(AtomicOr, atomic_or)
2586 OP(AtomicXor, atomic_xor)
2587 #undef OP
2588 default:
2589 vtn_fail_with_opcode("Invalid image opcode", opcode);
2590 }
2591
2592 nir_intrinsic_instr *intrin = nir_intrinsic_instr_create(b->shader, op);
2593
2594 nir_deref_instr *image_deref = vtn_pointer_to_deref(b, image.image);
2595 intrin->src[0] = nir_src_for_ssa(&image_deref->dest.ssa);
2596
2597 /* ImageQuerySize doesn't take any extra parameters */
2598 if (opcode != SpvOpImageQuerySize) {
2599 /* The image coordinate is always 4 components but we may not have that
2600 * many. Swizzle to compensate.
2601 */
2602 intrin->src[1] = nir_src_for_ssa(expand_to_vec4(&b->nb, image.coord));
2603 intrin->src[2] = nir_src_for_ssa(image.sample);
2604 }
2605
2606 switch (opcode) {
2607 case SpvOpAtomicLoad:
2608 case SpvOpImageQuerySize:
2609 case SpvOpImageRead:
2610 break;
2611 case SpvOpAtomicStore:
2612 case SpvOpImageWrite: {
2613 const uint32_t value_id = opcode == SpvOpAtomicStore ? w[4] : w[3];
2614 nir_ssa_def *value = vtn_ssa_value(b, value_id)->def;
2615 /* nir_intrinsic_image_deref_store always takes a vec4 value */
2616 assert(op == nir_intrinsic_image_deref_store);
2617 intrin->num_components = 4;
2618 intrin->src[3] = nir_src_for_ssa(expand_to_vec4(&b->nb, value));
2619 break;
2620 }
2621
2622 case SpvOpAtomicCompareExchange:
2623 case SpvOpAtomicCompareExchangeWeak:
2624 case SpvOpAtomicIIncrement:
2625 case SpvOpAtomicIDecrement:
2626 case SpvOpAtomicExchange:
2627 case SpvOpAtomicIAdd:
2628 case SpvOpAtomicISub:
2629 case SpvOpAtomicSMin:
2630 case SpvOpAtomicUMin:
2631 case SpvOpAtomicSMax:
2632 case SpvOpAtomicUMax:
2633 case SpvOpAtomicAnd:
2634 case SpvOpAtomicOr:
2635 case SpvOpAtomicXor:
2636 fill_common_atomic_sources(b, opcode, w, &intrin->src[3]);
2637 break;
2638
2639 default:
2640 vtn_fail_with_opcode("Invalid image opcode", opcode);
2641 }
2642
2643 if (opcode != SpvOpImageWrite && opcode != SpvOpAtomicStore) {
2644 struct vtn_value *val = vtn_push_value(b, w[2], vtn_value_type_ssa);
2645 struct vtn_type *type = vtn_value(b, w[1], vtn_value_type_type)->type;
2646
2647 unsigned dest_components = glsl_get_vector_elements(type->type);
2648 intrin->num_components = nir_intrinsic_infos[op].dest_components;
2649 if (intrin->num_components == 0)
2650 intrin->num_components = dest_components;
2651
2652 nir_ssa_dest_init(&intrin->instr, &intrin->dest,
2653 intrin->num_components, 32, NULL);
2654
2655 nir_builder_instr_insert(&b->nb, &intrin->instr);
2656
2657 nir_ssa_def *result = &intrin->dest.ssa;
2658 if (intrin->num_components != dest_components)
2659 result = nir_channels(&b->nb, result, (1 << dest_components) - 1);
2660
2661 val->ssa = vtn_create_ssa_value(b, type->type);
2662 val->ssa->def = result;
2663 } else {
2664 nir_builder_instr_insert(&b->nb, &intrin->instr);
2665 }
2666 }
2667
2668 static nir_intrinsic_op
2669 get_ssbo_nir_atomic_op(struct vtn_builder *b, SpvOp opcode)
2670 {
2671 switch (opcode) {
2672 case SpvOpAtomicLoad: return nir_intrinsic_load_ssbo;
2673 case SpvOpAtomicStore: return nir_intrinsic_store_ssbo;
2674 #define OP(S, N) case SpvOp##S: return nir_intrinsic_ssbo_##N;
2675 OP(AtomicExchange, atomic_exchange)
2676 OP(AtomicCompareExchange, atomic_comp_swap)
2677 OP(AtomicCompareExchangeWeak, atomic_comp_swap)
2678 OP(AtomicIIncrement, atomic_add)
2679 OP(AtomicIDecrement, atomic_add)
2680 OP(AtomicIAdd, atomic_add)
2681 OP(AtomicISub, atomic_add)
2682 OP(AtomicSMin, atomic_imin)
2683 OP(AtomicUMin, atomic_umin)
2684 OP(AtomicSMax, atomic_imax)
2685 OP(AtomicUMax, atomic_umax)
2686 OP(AtomicAnd, atomic_and)
2687 OP(AtomicOr, atomic_or)
2688 OP(AtomicXor, atomic_xor)
2689 #undef OP
2690 default:
2691 vtn_fail_with_opcode("Invalid SSBO atomic", opcode);
2692 }
2693 }
2694
2695 static nir_intrinsic_op
2696 get_uniform_nir_atomic_op(struct vtn_builder *b, SpvOp opcode)
2697 {
2698 switch (opcode) {
2699 #define OP(S, N) case SpvOp##S: return nir_intrinsic_atomic_counter_ ##N;
2700 OP(AtomicLoad, read_deref)
2701 OP(AtomicExchange, exchange)
2702 OP(AtomicCompareExchange, comp_swap)
2703 OP(AtomicCompareExchangeWeak, comp_swap)
2704 OP(AtomicIIncrement, inc_deref)
2705 OP(AtomicIDecrement, post_dec_deref)
2706 OP(AtomicIAdd, add_deref)
2707 OP(AtomicISub, add_deref)
2708 OP(AtomicUMin, min_deref)
2709 OP(AtomicUMax, max_deref)
2710 OP(AtomicAnd, and_deref)
2711 OP(AtomicOr, or_deref)
2712 OP(AtomicXor, xor_deref)
2713 #undef OP
2714 default:
2715 /* We left the following out: AtomicStore, AtomicSMin and
2716 * AtomicSmax. Right now there are not nir intrinsics for them. At this
2717 * moment Atomic Counter support is needed for ARB_spirv support, so is
2718 * only need to support GLSL Atomic Counters that are uints and don't
2719 * allow direct storage.
2720 */
2721 unreachable("Invalid uniform atomic");
2722 }
2723 }
2724
2725 static nir_intrinsic_op
2726 get_shared_nir_atomic_op(struct vtn_builder *b, SpvOp opcode)
2727 {
2728 switch (opcode) {
2729 case SpvOpAtomicLoad: return nir_intrinsic_load_shared;
2730 case SpvOpAtomicStore: return nir_intrinsic_store_shared;
2731 #define OP(S, N) case SpvOp##S: return nir_intrinsic_shared_##N;
2732 OP(AtomicExchange, atomic_exchange)
2733 OP(AtomicCompareExchange, atomic_comp_swap)
2734 OP(AtomicCompareExchangeWeak, atomic_comp_swap)
2735 OP(AtomicIIncrement, atomic_add)
2736 OP(AtomicIDecrement, atomic_add)
2737 OP(AtomicIAdd, atomic_add)
2738 OP(AtomicISub, atomic_add)
2739 OP(AtomicSMin, atomic_imin)
2740 OP(AtomicUMin, atomic_umin)
2741 OP(AtomicSMax, atomic_imax)
2742 OP(AtomicUMax, atomic_umax)
2743 OP(AtomicAnd, atomic_and)
2744 OP(AtomicOr, atomic_or)
2745 OP(AtomicXor, atomic_xor)
2746 #undef OP
2747 default:
2748 vtn_fail_with_opcode("Invalid shared atomic", opcode);
2749 }
2750 }
2751
2752 static nir_intrinsic_op
2753 get_deref_nir_atomic_op(struct vtn_builder *b, SpvOp opcode)
2754 {
2755 switch (opcode) {
2756 case SpvOpAtomicLoad: return nir_intrinsic_load_deref;
2757 case SpvOpAtomicStore: return nir_intrinsic_store_deref;
2758 #define OP(S, N) case SpvOp##S: return nir_intrinsic_deref_##N;
2759 OP(AtomicExchange, atomic_exchange)
2760 OP(AtomicCompareExchange, atomic_comp_swap)
2761 OP(AtomicCompareExchangeWeak, atomic_comp_swap)
2762 OP(AtomicIIncrement, atomic_add)
2763 OP(AtomicIDecrement, atomic_add)
2764 OP(AtomicIAdd, atomic_add)
2765 OP(AtomicISub, atomic_add)
2766 OP(AtomicSMin, atomic_imin)
2767 OP(AtomicUMin, atomic_umin)
2768 OP(AtomicSMax, atomic_imax)
2769 OP(AtomicUMax, atomic_umax)
2770 OP(AtomicAnd, atomic_and)
2771 OP(AtomicOr, atomic_or)
2772 OP(AtomicXor, atomic_xor)
2773 #undef OP
2774 default:
2775 vtn_fail_with_opcode("Invalid shared atomic", opcode);
2776 }
2777 }
2778
2779 /*
2780 * Handles shared atomics, ssbo atomics and atomic counters.
2781 */
2782 static void
2783 vtn_handle_atomics(struct vtn_builder *b, SpvOp opcode,
2784 const uint32_t *w, unsigned count)
2785 {
2786 struct vtn_pointer *ptr;
2787 nir_intrinsic_instr *atomic;
2788
2789 switch (opcode) {
2790 case SpvOpAtomicLoad:
2791 case SpvOpAtomicExchange:
2792 case SpvOpAtomicCompareExchange:
2793 case SpvOpAtomicCompareExchangeWeak:
2794 case SpvOpAtomicIIncrement:
2795 case SpvOpAtomicIDecrement:
2796 case SpvOpAtomicIAdd:
2797 case SpvOpAtomicISub:
2798 case SpvOpAtomicSMin:
2799 case SpvOpAtomicUMin:
2800 case SpvOpAtomicSMax:
2801 case SpvOpAtomicUMax:
2802 case SpvOpAtomicAnd:
2803 case SpvOpAtomicOr:
2804 case SpvOpAtomicXor:
2805 ptr = vtn_value(b, w[3], vtn_value_type_pointer)->pointer;
2806 break;
2807
2808 case SpvOpAtomicStore:
2809 ptr = vtn_value(b, w[1], vtn_value_type_pointer)->pointer;
2810 break;
2811
2812 default:
2813 vtn_fail_with_opcode("Invalid SPIR-V atomic", opcode);
2814 }
2815
2816 /*
2817 SpvScope scope = w[4];
2818 SpvMemorySemanticsMask semantics = w[5];
2819 */
2820
2821 /* uniform as "atomic counter uniform" */
2822 if (ptr->mode == vtn_variable_mode_uniform) {
2823 nir_deref_instr *deref = vtn_pointer_to_deref(b, ptr);
2824 const struct glsl_type *deref_type = deref->type;
2825 nir_intrinsic_op op = get_uniform_nir_atomic_op(b, opcode);
2826 atomic = nir_intrinsic_instr_create(b->nb.shader, op);
2827 atomic->src[0] = nir_src_for_ssa(&deref->dest.ssa);
2828
2829 /* SSBO needs to initialize index/offset. In this case we don't need to,
2830 * as that info is already stored on the ptr->var->var nir_variable (see
2831 * vtn_create_variable)
2832 */
2833
2834 switch (opcode) {
2835 case SpvOpAtomicLoad:
2836 atomic->num_components = glsl_get_vector_elements(deref_type);
2837 break;
2838
2839 case SpvOpAtomicStore:
2840 atomic->num_components = glsl_get_vector_elements(deref_type);
2841 nir_intrinsic_set_write_mask(atomic, (1 << atomic->num_components) - 1);
2842 break;
2843
2844 case SpvOpAtomicExchange:
2845 case SpvOpAtomicCompareExchange:
2846 case SpvOpAtomicCompareExchangeWeak:
2847 case SpvOpAtomicIIncrement:
2848 case SpvOpAtomicIDecrement:
2849 case SpvOpAtomicIAdd:
2850 case SpvOpAtomicISub:
2851 case SpvOpAtomicSMin:
2852 case SpvOpAtomicUMin:
2853 case SpvOpAtomicSMax:
2854 case SpvOpAtomicUMax:
2855 case SpvOpAtomicAnd:
2856 case SpvOpAtomicOr:
2857 case SpvOpAtomicXor:
2858 /* Nothing: we don't need to call fill_common_atomic_sources here, as
2859 * atomic counter uniforms doesn't have sources
2860 */
2861 break;
2862
2863 default:
2864 unreachable("Invalid SPIR-V atomic");
2865
2866 }
2867 } else if (vtn_pointer_uses_ssa_offset(b, ptr)) {
2868 nir_ssa_def *offset, *index;
2869 offset = vtn_pointer_to_offset(b, ptr, &index);
2870
2871 nir_intrinsic_op op;
2872 if (ptr->mode == vtn_variable_mode_ssbo) {
2873 op = get_ssbo_nir_atomic_op(b, opcode);
2874 } else {
2875 vtn_assert(ptr->mode == vtn_variable_mode_workgroup &&
2876 b->options->lower_workgroup_access_to_offsets);
2877 op = get_shared_nir_atomic_op(b, opcode);
2878 }
2879
2880 atomic = nir_intrinsic_instr_create(b->nb.shader, op);
2881
2882 int src = 0;
2883 switch (opcode) {
2884 case SpvOpAtomicLoad:
2885 atomic->num_components = glsl_get_vector_elements(ptr->type->type);
2886 nir_intrinsic_set_align(atomic, 4, 0);
2887 if (ptr->mode == vtn_variable_mode_ssbo)
2888 atomic->src[src++] = nir_src_for_ssa(index);
2889 atomic->src[src++] = nir_src_for_ssa(offset);
2890 break;
2891
2892 case SpvOpAtomicStore:
2893 atomic->num_components = glsl_get_vector_elements(ptr->type->type);
2894 nir_intrinsic_set_write_mask(atomic, (1 << atomic->num_components) - 1);
2895 nir_intrinsic_set_align(atomic, 4, 0);
2896 atomic->src[src++] = nir_src_for_ssa(vtn_ssa_value(b, w[4])->def);
2897 if (ptr->mode == vtn_variable_mode_ssbo)
2898 atomic->src[src++] = nir_src_for_ssa(index);
2899 atomic->src[src++] = nir_src_for_ssa(offset);
2900 break;
2901
2902 case SpvOpAtomicExchange:
2903 case SpvOpAtomicCompareExchange:
2904 case SpvOpAtomicCompareExchangeWeak:
2905 case SpvOpAtomicIIncrement:
2906 case SpvOpAtomicIDecrement:
2907 case SpvOpAtomicIAdd:
2908 case SpvOpAtomicISub:
2909 case SpvOpAtomicSMin:
2910 case SpvOpAtomicUMin:
2911 case SpvOpAtomicSMax:
2912 case SpvOpAtomicUMax:
2913 case SpvOpAtomicAnd:
2914 case SpvOpAtomicOr:
2915 case SpvOpAtomicXor:
2916 if (ptr->mode == vtn_variable_mode_ssbo)
2917 atomic->src[src++] = nir_src_for_ssa(index);
2918 atomic->src[src++] = nir_src_for_ssa(offset);
2919 fill_common_atomic_sources(b, opcode, w, &atomic->src[src]);
2920 break;
2921
2922 default:
2923 vtn_fail_with_opcode("Invalid SPIR-V atomic", opcode);
2924 }
2925 } else {
2926 nir_deref_instr *deref = vtn_pointer_to_deref(b, ptr);
2927 const struct glsl_type *deref_type = deref->type;
2928 nir_intrinsic_op op = get_deref_nir_atomic_op(b, opcode);
2929 atomic = nir_intrinsic_instr_create(b->nb.shader, op);
2930 atomic->src[0] = nir_src_for_ssa(&deref->dest.ssa);
2931
2932 switch (opcode) {
2933 case SpvOpAtomicLoad:
2934 atomic->num_components = glsl_get_vector_elements(deref_type);
2935 break;
2936
2937 case SpvOpAtomicStore:
2938 atomic->num_components = glsl_get_vector_elements(deref_type);
2939 nir_intrinsic_set_write_mask(atomic, (1 << atomic->num_components) - 1);
2940 atomic->src[1] = nir_src_for_ssa(vtn_ssa_value(b, w[4])->def);
2941 break;
2942
2943 case SpvOpAtomicExchange:
2944 case SpvOpAtomicCompareExchange:
2945 case SpvOpAtomicCompareExchangeWeak:
2946 case SpvOpAtomicIIncrement:
2947 case SpvOpAtomicIDecrement:
2948 case SpvOpAtomicIAdd:
2949 case SpvOpAtomicISub:
2950 case SpvOpAtomicSMin:
2951 case SpvOpAtomicUMin:
2952 case SpvOpAtomicSMax:
2953 case SpvOpAtomicUMax:
2954 case SpvOpAtomicAnd:
2955 case SpvOpAtomicOr:
2956 case SpvOpAtomicXor:
2957 fill_common_atomic_sources(b, opcode, w, &atomic->src[1]);
2958 break;
2959
2960 default:
2961 vtn_fail_with_opcode("Invalid SPIR-V atomic", opcode);
2962 }
2963 }
2964
2965 if (opcode != SpvOpAtomicStore) {
2966 struct vtn_type *type = vtn_value(b, w[1], vtn_value_type_type)->type;
2967
2968 nir_ssa_dest_init(&atomic->instr, &atomic->dest,
2969 glsl_get_vector_elements(type->type),
2970 glsl_get_bit_size(type->type), NULL);
2971
2972 struct vtn_value *val = vtn_push_value(b, w[2], vtn_value_type_ssa);
2973 val->ssa = rzalloc(b, struct vtn_ssa_value);
2974 val->ssa->def = &atomic->dest.ssa;
2975 val->ssa->type = type->type;
2976 }
2977
2978 nir_builder_instr_insert(&b->nb, &atomic->instr);
2979 }
2980
2981 static nir_alu_instr *
2982 create_vec(struct vtn_builder *b, unsigned num_components, unsigned bit_size)
2983 {
2984 nir_op op;
2985 switch (num_components) {
2986 case 1: op = nir_op_imov; break;
2987 case 2: op = nir_op_vec2; break;
2988 case 3: op = nir_op_vec3; break;
2989 case 4: op = nir_op_vec4; break;
2990 default: vtn_fail("bad vector size: %u", num_components);
2991 }
2992
2993 nir_alu_instr *vec = nir_alu_instr_create(b->shader, op);
2994 nir_ssa_dest_init(&vec->instr, &vec->dest.dest, num_components,
2995 bit_size, NULL);
2996 vec->dest.write_mask = (1 << num_components) - 1;
2997
2998 return vec;
2999 }
3000
3001 struct vtn_ssa_value *
3002 vtn_ssa_transpose(struct vtn_builder *b, struct vtn_ssa_value *src)
3003 {
3004 if (src->transposed)
3005 return src->transposed;
3006
3007 struct vtn_ssa_value *dest =
3008 vtn_create_ssa_value(b, glsl_transposed_type(src->type));
3009
3010 for (unsigned i = 0; i < glsl_get_matrix_columns(dest->type); i++) {
3011 nir_alu_instr *vec = create_vec(b, glsl_get_matrix_columns(src->type),
3012 glsl_get_bit_size(src->type));
3013 if (glsl_type_is_vector_or_scalar(src->type)) {
3014 vec->src[0].src = nir_src_for_ssa(src->def);
3015 vec->src[0].swizzle[0] = i;
3016 } else {
3017 for (unsigned j = 0; j < glsl_get_matrix_columns(src->type); j++) {
3018 vec->src[j].src = nir_src_for_ssa(src->elems[j]->def);
3019 vec->src[j].swizzle[0] = i;
3020 }
3021 }
3022 nir_builder_instr_insert(&b->nb, &vec->instr);
3023 dest->elems[i]->def = &vec->dest.dest.ssa;
3024 }
3025
3026 dest->transposed = src;
3027
3028 return dest;
3029 }
3030
3031 nir_ssa_def *
3032 vtn_vector_extract(struct vtn_builder *b, nir_ssa_def *src, unsigned index)
3033 {
3034 return nir_channel(&b->nb, src, index);
3035 }
3036
3037 nir_ssa_def *
3038 vtn_vector_insert(struct vtn_builder *b, nir_ssa_def *src, nir_ssa_def *insert,
3039 unsigned index)
3040 {
3041 nir_alu_instr *vec = create_vec(b, src->num_components,
3042 src->bit_size);
3043
3044 for (unsigned i = 0; i < src->num_components; i++) {
3045 if (i == index) {
3046 vec->src[i].src = nir_src_for_ssa(insert);
3047 } else {
3048 vec->src[i].src = nir_src_for_ssa(src);
3049 vec->src[i].swizzle[0] = i;
3050 }
3051 }
3052
3053 nir_builder_instr_insert(&b->nb, &vec->instr);
3054
3055 return &vec->dest.dest.ssa;
3056 }
3057
3058 static nir_ssa_def *
3059 nir_ieq_imm(nir_builder *b, nir_ssa_def *x, uint64_t i)
3060 {
3061 return nir_ieq(b, x, nir_imm_intN_t(b, i, x->bit_size));
3062 }
3063
3064 nir_ssa_def *
3065 vtn_vector_extract_dynamic(struct vtn_builder *b, nir_ssa_def *src,
3066 nir_ssa_def *index)
3067 {
3068 return nir_vector_extract(&b->nb, src, nir_i2i(&b->nb, index, 32));
3069 }
3070
3071 nir_ssa_def *
3072 vtn_vector_insert_dynamic(struct vtn_builder *b, nir_ssa_def *src,
3073 nir_ssa_def *insert, nir_ssa_def *index)
3074 {
3075 nir_ssa_def *dest = vtn_vector_insert(b, src, insert, 0);
3076 for (unsigned i = 1; i < src->num_components; i++)
3077 dest = nir_bcsel(&b->nb, nir_ieq_imm(&b->nb, index, i),
3078 vtn_vector_insert(b, src, insert, i), dest);
3079
3080 return dest;
3081 }
3082
3083 static nir_ssa_def *
3084 vtn_vector_shuffle(struct vtn_builder *b, unsigned num_components,
3085 nir_ssa_def *src0, nir_ssa_def *src1,
3086 const uint32_t *indices)
3087 {
3088 nir_alu_instr *vec = create_vec(b, num_components, src0->bit_size);
3089
3090 for (unsigned i = 0; i < num_components; i++) {
3091 uint32_t index = indices[i];
3092 if (index == 0xffffffff) {
3093 vec->src[i].src =
3094 nir_src_for_ssa(nir_ssa_undef(&b->nb, 1, src0->bit_size));
3095 } else if (index < src0->num_components) {
3096 vec->src[i].src = nir_src_for_ssa(src0);
3097 vec->src[i].swizzle[0] = index;
3098 } else {
3099 vec->src[i].src = nir_src_for_ssa(src1);
3100 vec->src[i].swizzle[0] = index - src0->num_components;
3101 }
3102 }
3103
3104 nir_builder_instr_insert(&b->nb, &vec->instr);
3105
3106 return &vec->dest.dest.ssa;
3107 }
3108
3109 /*
3110 * Concatentates a number of vectors/scalars together to produce a vector
3111 */
3112 static nir_ssa_def *
3113 vtn_vector_construct(struct vtn_builder *b, unsigned num_components,
3114 unsigned num_srcs, nir_ssa_def **srcs)
3115 {
3116 nir_alu_instr *vec = create_vec(b, num_components, srcs[0]->bit_size);
3117
3118 /* From the SPIR-V 1.1 spec for OpCompositeConstruct:
3119 *
3120 * "When constructing a vector, there must be at least two Constituent
3121 * operands."
3122 */
3123 vtn_assert(num_srcs >= 2);
3124
3125 unsigned dest_idx = 0;
3126 for (unsigned i = 0; i < num_srcs; i++) {
3127 nir_ssa_def *src = srcs[i];
3128 vtn_assert(dest_idx + src->num_components <= num_components);
3129 for (unsigned j = 0; j < src->num_components; j++) {
3130 vec->src[dest_idx].src = nir_src_for_ssa(src);
3131 vec->src[dest_idx].swizzle[0] = j;
3132 dest_idx++;
3133 }
3134 }
3135
3136 /* From the SPIR-V 1.1 spec for OpCompositeConstruct:
3137 *
3138 * "When constructing a vector, the total number of components in all
3139 * the operands must equal the number of components in Result Type."
3140 */
3141 vtn_assert(dest_idx == num_components);
3142
3143 nir_builder_instr_insert(&b->nb, &vec->instr);
3144
3145 return &vec->dest.dest.ssa;
3146 }
3147
3148 static struct vtn_ssa_value *
3149 vtn_composite_copy(void *mem_ctx, struct vtn_ssa_value *src)
3150 {
3151 struct vtn_ssa_value *dest = rzalloc(mem_ctx, struct vtn_ssa_value);
3152 dest->type = src->type;
3153
3154 if (glsl_type_is_vector_or_scalar(src->type)) {
3155 dest->def = src->def;
3156 } else {
3157 unsigned elems = glsl_get_length(src->type);
3158
3159 dest->elems = ralloc_array(mem_ctx, struct vtn_ssa_value *, elems);
3160 for (unsigned i = 0; i < elems; i++)
3161 dest->elems[i] = vtn_composite_copy(mem_ctx, src->elems[i]);
3162 }
3163
3164 return dest;
3165 }
3166
3167 static struct vtn_ssa_value *
3168 vtn_composite_insert(struct vtn_builder *b, struct vtn_ssa_value *src,
3169 struct vtn_ssa_value *insert, const uint32_t *indices,
3170 unsigned num_indices)
3171 {
3172 struct vtn_ssa_value *dest = vtn_composite_copy(b, src);
3173
3174 struct vtn_ssa_value *cur = dest;
3175 unsigned i;
3176 for (i = 0; i < num_indices - 1; i++) {
3177 cur = cur->elems[indices[i]];
3178 }
3179
3180 if (glsl_type_is_vector_or_scalar(cur->type)) {
3181 /* According to the SPIR-V spec, OpCompositeInsert may work down to
3182 * the component granularity. In that case, the last index will be
3183 * the index to insert the scalar into the vector.
3184 */
3185
3186 cur->def = vtn_vector_insert(b, cur->def, insert->def, indices[i]);
3187 } else {
3188 cur->elems[indices[i]] = insert;
3189 }
3190
3191 return dest;
3192 }
3193
3194 static struct vtn_ssa_value *
3195 vtn_composite_extract(struct vtn_builder *b, struct vtn_ssa_value *src,
3196 const uint32_t *indices, unsigned num_indices)
3197 {
3198 struct vtn_ssa_value *cur = src;
3199 for (unsigned i = 0; i < num_indices; i++) {
3200 if (glsl_type_is_vector_or_scalar(cur->type)) {
3201 vtn_assert(i == num_indices - 1);
3202 /* According to the SPIR-V spec, OpCompositeExtract may work down to
3203 * the component granularity. The last index will be the index of the
3204 * vector to extract.
3205 */
3206
3207 struct vtn_ssa_value *ret = rzalloc(b, struct vtn_ssa_value);
3208 ret->type = glsl_scalar_type(glsl_get_base_type(cur->type));
3209 ret->def = vtn_vector_extract(b, cur->def, indices[i]);
3210 return ret;
3211 } else {
3212 cur = cur->elems[indices[i]];
3213 }
3214 }
3215
3216 return cur;
3217 }
3218
3219 static void
3220 vtn_handle_composite(struct vtn_builder *b, SpvOp opcode,
3221 const uint32_t *w, unsigned count)
3222 {
3223 struct vtn_value *val = vtn_push_value(b, w[2], vtn_value_type_ssa);
3224 const struct glsl_type *type =
3225 vtn_value(b, w[1], vtn_value_type_type)->type->type;
3226 val->ssa = vtn_create_ssa_value(b, type);
3227
3228 switch (opcode) {
3229 case SpvOpVectorExtractDynamic:
3230 val->ssa->def = vtn_vector_extract_dynamic(b, vtn_ssa_value(b, w[3])->def,
3231 vtn_ssa_value(b, w[4])->def);
3232 break;
3233
3234 case SpvOpVectorInsertDynamic:
3235 val->ssa->def = vtn_vector_insert_dynamic(b, vtn_ssa_value(b, w[3])->def,
3236 vtn_ssa_value(b, w[4])->def,
3237 vtn_ssa_value(b, w[5])->def);
3238 break;
3239
3240 case SpvOpVectorShuffle:
3241 val->ssa->def = vtn_vector_shuffle(b, glsl_get_vector_elements(type),
3242 vtn_ssa_value(b, w[3])->def,
3243 vtn_ssa_value(b, w[4])->def,
3244 w + 5);
3245 break;
3246
3247 case SpvOpCompositeConstruct: {
3248 unsigned elems = count - 3;
3249 assume(elems >= 1);
3250 if (glsl_type_is_vector_or_scalar(type)) {
3251 nir_ssa_def *srcs[NIR_MAX_VEC_COMPONENTS];
3252 for (unsigned i = 0; i < elems; i++)
3253 srcs[i] = vtn_ssa_value(b, w[3 + i])->def;
3254 val->ssa->def =
3255 vtn_vector_construct(b, glsl_get_vector_elements(type),
3256 elems, srcs);
3257 } else {
3258 val->ssa->elems = ralloc_array(b, struct vtn_ssa_value *, elems);
3259 for (unsigned i = 0; i < elems; i++)
3260 val->ssa->elems[i] = vtn_ssa_value(b, w[3 + i]);
3261 }
3262 break;
3263 }
3264 case SpvOpCompositeExtract:
3265 val->ssa = vtn_composite_extract(b, vtn_ssa_value(b, w[3]),
3266 w + 4, count - 4);
3267 break;
3268
3269 case SpvOpCompositeInsert:
3270 val->ssa = vtn_composite_insert(b, vtn_ssa_value(b, w[4]),
3271 vtn_ssa_value(b, w[3]),
3272 w + 5, count - 5);
3273 break;
3274
3275 case SpvOpCopyObject:
3276 val->ssa = vtn_composite_copy(b, vtn_ssa_value(b, w[3]));
3277 break;
3278
3279 default:
3280 vtn_fail_with_opcode("unknown composite operation", opcode);
3281 }
3282 }
3283
3284 static void
3285 vtn_emit_barrier(struct vtn_builder *b, nir_intrinsic_op op)
3286 {
3287 nir_intrinsic_instr *intrin = nir_intrinsic_instr_create(b->shader, op);
3288 nir_builder_instr_insert(&b->nb, &intrin->instr);
3289 }
3290
3291 static void
3292 vtn_emit_memory_barrier(struct vtn_builder *b, SpvScope scope,
3293 SpvMemorySemanticsMask semantics)
3294 {
3295 static const SpvMemorySemanticsMask all_memory_semantics =
3296 SpvMemorySemanticsUniformMemoryMask |
3297 SpvMemorySemanticsWorkgroupMemoryMask |
3298 SpvMemorySemanticsAtomicCounterMemoryMask |
3299 SpvMemorySemanticsImageMemoryMask;
3300
3301 /* If we're not actually doing a memory barrier, bail */
3302 if (!(semantics & all_memory_semantics))
3303 return;
3304
3305 /* GL and Vulkan don't have these */
3306 vtn_assert(scope != SpvScopeCrossDevice);
3307
3308 if (scope == SpvScopeSubgroup)
3309 return; /* Nothing to do here */
3310
3311 if (scope == SpvScopeWorkgroup) {
3312 vtn_emit_barrier(b, nir_intrinsic_group_memory_barrier);
3313 return;
3314 }
3315
3316 /* There's only two scopes thing left */
3317 vtn_assert(scope == SpvScopeInvocation || scope == SpvScopeDevice);
3318
3319 if ((semantics & all_memory_semantics) == all_memory_semantics) {
3320 vtn_emit_barrier(b, nir_intrinsic_memory_barrier);
3321 return;
3322 }
3323
3324 /* Issue a bunch of more specific barriers */
3325 uint32_t bits = semantics;
3326 while (bits) {
3327 SpvMemorySemanticsMask semantic = 1 << u_bit_scan(&bits);
3328 switch (semantic) {
3329 case SpvMemorySemanticsUniformMemoryMask:
3330 vtn_emit_barrier(b, nir_intrinsic_memory_barrier_buffer);
3331 break;
3332 case SpvMemorySemanticsWorkgroupMemoryMask:
3333 vtn_emit_barrier(b, nir_intrinsic_memory_barrier_shared);
3334 break;
3335 case SpvMemorySemanticsAtomicCounterMemoryMask:
3336 vtn_emit_barrier(b, nir_intrinsic_memory_barrier_atomic_counter);
3337 break;
3338 case SpvMemorySemanticsImageMemoryMask:
3339 vtn_emit_barrier(b, nir_intrinsic_memory_barrier_image);
3340 break;
3341 default:
3342 break;;
3343 }
3344 }
3345 }
3346
3347 static void
3348 vtn_handle_barrier(struct vtn_builder *b, SpvOp opcode,
3349 const uint32_t *w, unsigned count)
3350 {
3351 switch (opcode) {
3352 case SpvOpEmitVertex:
3353 case SpvOpEmitStreamVertex:
3354 case SpvOpEndPrimitive:
3355 case SpvOpEndStreamPrimitive: {
3356 nir_intrinsic_op intrinsic_op;
3357 switch (opcode) {
3358 case SpvOpEmitVertex:
3359 case SpvOpEmitStreamVertex:
3360 intrinsic_op = nir_intrinsic_emit_vertex;
3361 break;
3362 case SpvOpEndPrimitive:
3363 case SpvOpEndStreamPrimitive:
3364 intrinsic_op = nir_intrinsic_end_primitive;
3365 break;
3366 default:
3367 unreachable("Invalid opcode");
3368 }
3369
3370 nir_intrinsic_instr *intrin =
3371 nir_intrinsic_instr_create(b->shader, intrinsic_op);
3372
3373 switch (opcode) {
3374 case SpvOpEmitStreamVertex:
3375 case SpvOpEndStreamPrimitive: {
3376 unsigned stream = vtn_constant_uint(b, w[1]);
3377 nir_intrinsic_set_stream_id(intrin, stream);
3378 break;
3379 }
3380
3381 default:
3382 break;
3383 }
3384
3385 nir_builder_instr_insert(&b->nb, &intrin->instr);
3386 break;
3387 }
3388
3389 case SpvOpMemoryBarrier: {
3390 SpvScope scope = vtn_constant_uint(b, w[1]);
3391 SpvMemorySemanticsMask semantics = vtn_constant_uint(b, w[2]);
3392 vtn_emit_memory_barrier(b, scope, semantics);
3393 return;
3394 }
3395
3396 case SpvOpControlBarrier: {
3397 SpvScope execution_scope = vtn_constant_uint(b, w[1]);
3398 if (execution_scope == SpvScopeWorkgroup)
3399 vtn_emit_barrier(b, nir_intrinsic_barrier);
3400
3401 SpvScope memory_scope = vtn_constant_uint(b, w[2]);
3402 SpvMemorySemanticsMask memory_semantics = vtn_constant_uint(b, w[3]);
3403 vtn_emit_memory_barrier(b, memory_scope, memory_semantics);
3404 break;
3405 }
3406
3407 default:
3408 unreachable("unknown barrier instruction");
3409 }
3410 }
3411
3412 static unsigned
3413 gl_primitive_from_spv_execution_mode(struct vtn_builder *b,
3414 SpvExecutionMode mode)
3415 {
3416 switch (mode) {
3417 case SpvExecutionModeInputPoints:
3418 case SpvExecutionModeOutputPoints:
3419 return 0; /* GL_POINTS */
3420 case SpvExecutionModeInputLines:
3421 return 1; /* GL_LINES */
3422 case SpvExecutionModeInputLinesAdjacency:
3423 return 0x000A; /* GL_LINE_STRIP_ADJACENCY_ARB */
3424 case SpvExecutionModeTriangles:
3425 return 4; /* GL_TRIANGLES */
3426 case SpvExecutionModeInputTrianglesAdjacency:
3427 return 0x000C; /* GL_TRIANGLES_ADJACENCY_ARB */
3428 case SpvExecutionModeQuads:
3429 return 7; /* GL_QUADS */
3430 case SpvExecutionModeIsolines:
3431 return 0x8E7A; /* GL_ISOLINES */
3432 case SpvExecutionModeOutputLineStrip:
3433 return 3; /* GL_LINE_STRIP */
3434 case SpvExecutionModeOutputTriangleStrip:
3435 return 5; /* GL_TRIANGLE_STRIP */
3436 default:
3437 vtn_fail("Invalid primitive type: %s (%u)",
3438 spirv_executionmode_to_string(mode), mode);
3439 }
3440 }
3441
3442 static unsigned
3443 vertices_in_from_spv_execution_mode(struct vtn_builder *b,
3444 SpvExecutionMode mode)
3445 {
3446 switch (mode) {
3447 case SpvExecutionModeInputPoints:
3448 return 1;
3449 case SpvExecutionModeInputLines:
3450 return 2;
3451 case SpvExecutionModeInputLinesAdjacency:
3452 return 4;
3453 case SpvExecutionModeTriangles:
3454 return 3;
3455 case SpvExecutionModeInputTrianglesAdjacency:
3456 return 6;
3457 default:
3458 vtn_fail("Invalid GS input mode: %s (%u)",
3459 spirv_executionmode_to_string(mode), mode);
3460 }
3461 }
3462
3463 static gl_shader_stage
3464 stage_for_execution_model(struct vtn_builder *b, SpvExecutionModel model)
3465 {
3466 switch (model) {
3467 case SpvExecutionModelVertex:
3468 return MESA_SHADER_VERTEX;
3469 case SpvExecutionModelTessellationControl:
3470 return MESA_SHADER_TESS_CTRL;
3471 case SpvExecutionModelTessellationEvaluation:
3472 return MESA_SHADER_TESS_EVAL;
3473 case SpvExecutionModelGeometry:
3474 return MESA_SHADER_GEOMETRY;
3475 case SpvExecutionModelFragment:
3476 return MESA_SHADER_FRAGMENT;
3477 case SpvExecutionModelGLCompute:
3478 return MESA_SHADER_COMPUTE;
3479 case SpvExecutionModelKernel:
3480 return MESA_SHADER_KERNEL;
3481 default:
3482 vtn_fail("Unsupported execution model: %s (%u)",
3483 spirv_executionmodel_to_string(model), model);
3484 }
3485 }
3486
3487 #define spv_check_supported(name, cap) do { \
3488 if (!(b->options && b->options->caps.name)) \
3489 vtn_warn("Unsupported SPIR-V capability: %s (%u)", \
3490 spirv_capability_to_string(cap), cap); \
3491 } while(0)
3492
3493
3494 void
3495 vtn_handle_entry_point(struct vtn_builder *b, const uint32_t *w,
3496 unsigned count)
3497 {
3498 struct vtn_value *entry_point = &b->values[w[2]];
3499 /* Let this be a name label regardless */
3500 unsigned name_words;
3501 entry_point->name = vtn_string_literal(b, &w[3], count - 3, &name_words);
3502
3503 if (strcmp(entry_point->name, b->entry_point_name) != 0 ||
3504 stage_for_execution_model(b, w[1]) != b->entry_point_stage)
3505 return;
3506
3507 vtn_assert(b->entry_point == NULL);
3508 b->entry_point = entry_point;
3509 }
3510
3511 static bool
3512 vtn_handle_preamble_instruction(struct vtn_builder *b, SpvOp opcode,
3513 const uint32_t *w, unsigned count)
3514 {
3515 switch (opcode) {
3516 case SpvOpSource: {
3517 const char *lang;
3518 switch (w[1]) {
3519 default:
3520 case SpvSourceLanguageUnknown: lang = "unknown"; break;
3521 case SpvSourceLanguageESSL: lang = "ESSL"; break;
3522 case SpvSourceLanguageGLSL: lang = "GLSL"; break;
3523 case SpvSourceLanguageOpenCL_C: lang = "OpenCL C"; break;
3524 case SpvSourceLanguageOpenCL_CPP: lang = "OpenCL C++"; break;
3525 case SpvSourceLanguageHLSL: lang = "HLSL"; break;
3526 }
3527
3528 uint32_t version = w[2];
3529
3530 const char *file =
3531 (count > 3) ? vtn_value(b, w[3], vtn_value_type_string)->str : "";
3532
3533 vtn_info("Parsing SPIR-V from %s %u source file %s", lang, version, file);
3534 break;
3535 }
3536
3537 case SpvOpSourceExtension:
3538 case SpvOpSourceContinued:
3539 case SpvOpExtension:
3540 case SpvOpModuleProcessed:
3541 /* Unhandled, but these are for debug so that's ok. */
3542 break;
3543
3544 case SpvOpCapability: {
3545 SpvCapability cap = w[1];
3546 switch (cap) {
3547 case SpvCapabilityMatrix:
3548 case SpvCapabilityShader:
3549 case SpvCapabilityGeometry:
3550 case SpvCapabilityGeometryPointSize:
3551 case SpvCapabilityUniformBufferArrayDynamicIndexing:
3552 case SpvCapabilitySampledImageArrayDynamicIndexing:
3553 case SpvCapabilityStorageBufferArrayDynamicIndexing:
3554 case SpvCapabilityStorageImageArrayDynamicIndexing:
3555 case SpvCapabilityImageRect:
3556 case SpvCapabilitySampledRect:
3557 case SpvCapabilitySampled1D:
3558 case SpvCapabilityImage1D:
3559 case SpvCapabilitySampledCubeArray:
3560 case SpvCapabilityImageCubeArray:
3561 case SpvCapabilitySampledBuffer:
3562 case SpvCapabilityImageBuffer:
3563 case SpvCapabilityImageQuery:
3564 case SpvCapabilityDerivativeControl:
3565 case SpvCapabilityInterpolationFunction:
3566 case SpvCapabilityMultiViewport:
3567 case SpvCapabilitySampleRateShading:
3568 case SpvCapabilityClipDistance:
3569 case SpvCapabilityCullDistance:
3570 case SpvCapabilityInputAttachment:
3571 case SpvCapabilityImageGatherExtended:
3572 case SpvCapabilityStorageImageExtendedFormats:
3573 break;
3574
3575 case SpvCapabilityLinkage:
3576 case SpvCapabilityVector16:
3577 case SpvCapabilityFloat16Buffer:
3578 case SpvCapabilitySparseResidency:
3579 vtn_warn("Unsupported SPIR-V capability: %s",
3580 spirv_capability_to_string(cap));
3581 break;
3582
3583 case SpvCapabilityMinLod:
3584 spv_check_supported(min_lod, cap);
3585 break;
3586
3587 case SpvCapabilityAtomicStorage:
3588 spv_check_supported(atomic_storage, cap);
3589 break;
3590
3591 case SpvCapabilityFloat64:
3592 spv_check_supported(float64, cap);
3593 break;
3594 case SpvCapabilityInt64:
3595 spv_check_supported(int64, cap);
3596 break;
3597 case SpvCapabilityInt16:
3598 spv_check_supported(int16, cap);
3599 break;
3600 case SpvCapabilityInt8:
3601 spv_check_supported(int8, cap);
3602 break;
3603
3604 case SpvCapabilityTransformFeedback:
3605 spv_check_supported(transform_feedback, cap);
3606 break;
3607
3608 case SpvCapabilityGeometryStreams:
3609 spv_check_supported(geometry_streams, cap);
3610 break;
3611
3612 case SpvCapabilityInt64Atomics:
3613 spv_check_supported(int64_atomics, cap);
3614 break;
3615
3616 case SpvCapabilityStorageImageMultisample:
3617 spv_check_supported(storage_image_ms, cap);
3618 break;
3619
3620 case SpvCapabilityAddresses:
3621 spv_check_supported(address, cap);
3622 break;
3623
3624 case SpvCapabilityKernel:
3625 spv_check_supported(kernel, cap);
3626 break;
3627
3628 case SpvCapabilityImageBasic:
3629 case SpvCapabilityImageReadWrite:
3630 case SpvCapabilityImageMipmap:
3631 case SpvCapabilityPipes:
3632 case SpvCapabilityGroups:
3633 case SpvCapabilityDeviceEnqueue:
3634 case SpvCapabilityLiteralSampler:
3635 case SpvCapabilityGenericPointer:
3636 vtn_warn("Unsupported OpenCL-style SPIR-V capability: %s",
3637 spirv_capability_to_string(cap));
3638 break;
3639
3640 case SpvCapabilityImageMSArray:
3641 spv_check_supported(image_ms_array, cap);
3642 break;
3643
3644 case SpvCapabilityTessellation:
3645 case SpvCapabilityTessellationPointSize:
3646 spv_check_supported(tessellation, cap);
3647 break;
3648
3649 case SpvCapabilityDrawParameters:
3650 spv_check_supported(draw_parameters, cap);
3651 break;
3652
3653 case SpvCapabilityStorageImageReadWithoutFormat:
3654 spv_check_supported(image_read_without_format, cap);
3655 break;
3656
3657 case SpvCapabilityStorageImageWriteWithoutFormat:
3658 spv_check_supported(image_write_without_format, cap);
3659 break;
3660
3661 case SpvCapabilityDeviceGroup:
3662 spv_check_supported(device_group, cap);
3663 break;
3664
3665 case SpvCapabilityMultiView:
3666 spv_check_supported(multiview, cap);
3667 break;
3668
3669 case SpvCapabilityGroupNonUniform:
3670 spv_check_supported(subgroup_basic, cap);
3671 break;
3672
3673 case SpvCapabilityGroupNonUniformVote:
3674 spv_check_supported(subgroup_vote, cap);
3675 break;
3676
3677 case SpvCapabilitySubgroupBallotKHR:
3678 case SpvCapabilityGroupNonUniformBallot:
3679 spv_check_supported(subgroup_ballot, cap);
3680 break;
3681
3682 case SpvCapabilityGroupNonUniformShuffle:
3683 case SpvCapabilityGroupNonUniformShuffleRelative:
3684 spv_check_supported(subgroup_shuffle, cap);
3685 break;
3686
3687 case SpvCapabilityGroupNonUniformQuad:
3688 spv_check_supported(subgroup_quad, cap);
3689 break;
3690
3691 case SpvCapabilityGroupNonUniformArithmetic:
3692 case SpvCapabilityGroupNonUniformClustered:
3693 spv_check_supported(subgroup_arithmetic, cap);
3694 break;
3695
3696 case SpvCapabilityVariablePointersStorageBuffer:
3697 case SpvCapabilityVariablePointers:
3698 spv_check_supported(variable_pointers, cap);
3699 b->variable_pointers = true;
3700 break;
3701
3702 case SpvCapabilityStorageUniformBufferBlock16:
3703 case SpvCapabilityStorageUniform16:
3704 case SpvCapabilityStoragePushConstant16:
3705 case SpvCapabilityStorageInputOutput16:
3706 spv_check_supported(storage_16bit, cap);
3707 break;
3708
3709 case SpvCapabilityShaderViewportIndexLayerEXT:
3710 spv_check_supported(shader_viewport_index_layer, cap);
3711 break;
3712
3713 case SpvCapabilityStorageBuffer8BitAccess:
3714 case SpvCapabilityUniformAndStorageBuffer8BitAccess:
3715 case SpvCapabilityStoragePushConstant8:
3716 spv_check_supported(storage_8bit, cap);
3717 break;
3718
3719 case SpvCapabilityShaderNonUniformEXT:
3720 spv_check_supported(descriptor_indexing, cap);
3721 break;
3722
3723 case SpvCapabilityInputAttachmentArrayDynamicIndexingEXT:
3724 case SpvCapabilityUniformTexelBufferArrayDynamicIndexingEXT:
3725 case SpvCapabilityStorageTexelBufferArrayDynamicIndexingEXT:
3726 spv_check_supported(descriptor_array_dynamic_indexing, cap);
3727 break;
3728
3729 case SpvCapabilityUniformBufferArrayNonUniformIndexingEXT:
3730 case SpvCapabilitySampledImageArrayNonUniformIndexingEXT:
3731 case SpvCapabilityStorageBufferArrayNonUniformIndexingEXT:
3732 case SpvCapabilityStorageImageArrayNonUniformIndexingEXT:
3733 case SpvCapabilityInputAttachmentArrayNonUniformIndexingEXT:
3734 case SpvCapabilityUniformTexelBufferArrayNonUniformIndexingEXT:
3735 case SpvCapabilityStorageTexelBufferArrayNonUniformIndexingEXT:
3736 spv_check_supported(descriptor_array_non_uniform_indexing, cap);
3737 break;
3738
3739 case SpvCapabilityRuntimeDescriptorArrayEXT:
3740 spv_check_supported(runtime_descriptor_array, cap);
3741 break;
3742
3743 case SpvCapabilityStencilExportEXT:
3744 spv_check_supported(stencil_export, cap);
3745 break;
3746
3747 case SpvCapabilitySampleMaskPostDepthCoverage:
3748 spv_check_supported(post_depth_coverage, cap);
3749 break;
3750
3751 case SpvCapabilityPhysicalStorageBufferAddressesEXT:
3752 spv_check_supported(physical_storage_buffer_address, cap);
3753 break;
3754
3755 case SpvCapabilityComputeDerivativeGroupQuadsNV:
3756 case SpvCapabilityComputeDerivativeGroupLinearNV:
3757 spv_check_supported(derivative_group, cap);
3758 break;
3759
3760 case SpvCapabilityFloat16:
3761 spv_check_supported(float16, cap);
3762 break;
3763
3764 default:
3765 vtn_fail("Unhandled capability: %s (%u)",
3766 spirv_capability_to_string(cap), cap);
3767 }
3768 break;
3769 }
3770
3771 case SpvOpExtInstImport:
3772 vtn_handle_extension(b, opcode, w, count);
3773 break;
3774
3775 case SpvOpMemoryModel:
3776 switch (w[1]) {
3777 case SpvAddressingModelPhysical32:
3778 vtn_fail_if(b->shader->info.stage != MESA_SHADER_KERNEL,
3779 "AddressingModelPhysical32 only supported for kernels");
3780 b->shader->info.cs.ptr_size = 32;
3781 b->physical_ptrs = true;
3782 b->options->shared_ptr_type = glsl_uint_type();
3783 b->options->global_ptr_type = glsl_uint_type();
3784 b->options->temp_ptr_type = glsl_uint_type();
3785 break;
3786 case SpvAddressingModelPhysical64:
3787 vtn_fail_if(b->shader->info.stage != MESA_SHADER_KERNEL,
3788 "AddressingModelPhysical64 only supported for kernels");
3789 b->shader->info.cs.ptr_size = 64;
3790 b->physical_ptrs = true;
3791 b->options->shared_ptr_type = glsl_uint64_t_type();
3792 b->options->global_ptr_type = glsl_uint64_t_type();
3793 b->options->temp_ptr_type = glsl_uint64_t_type();
3794 break;
3795 case SpvAddressingModelLogical:
3796 vtn_fail_if(b->shader->info.stage >= MESA_SHADER_STAGES,
3797 "AddressingModelLogical only supported for shaders");
3798 b->shader->info.cs.ptr_size = 0;
3799 b->physical_ptrs = false;
3800 break;
3801 case SpvAddressingModelPhysicalStorageBuffer64EXT:
3802 vtn_fail_if(!b->options ||
3803 !b->options->caps.physical_storage_buffer_address,
3804 "AddressingModelPhysicalStorageBuffer64EXT not supported");
3805 break;
3806 default:
3807 vtn_fail("Unknown addressing model: %s (%u)",
3808 spirv_addressingmodel_to_string(w[1]), w[1]);
3809 break;
3810 }
3811
3812 vtn_assert(w[2] == SpvMemoryModelSimple ||
3813 w[2] == SpvMemoryModelGLSL450 ||
3814 w[2] == SpvMemoryModelOpenCL);
3815 break;
3816
3817 case SpvOpEntryPoint:
3818 vtn_handle_entry_point(b, w, count);
3819 break;
3820
3821 case SpvOpString:
3822 vtn_push_value(b, w[1], vtn_value_type_string)->str =
3823 vtn_string_literal(b, &w[2], count - 2, NULL);
3824 break;
3825
3826 case SpvOpName:
3827 b->values[w[1]].name = vtn_string_literal(b, &w[2], count - 2, NULL);
3828 break;
3829
3830 case SpvOpMemberName:
3831 /* TODO */
3832 break;
3833
3834 case SpvOpExecutionMode:
3835 case SpvOpExecutionModeId:
3836 case SpvOpDecorationGroup:
3837 case SpvOpDecorate:
3838 case SpvOpDecorateId:
3839 case SpvOpMemberDecorate:
3840 case SpvOpGroupDecorate:
3841 case SpvOpGroupMemberDecorate:
3842 case SpvOpDecorateStringGOOGLE:
3843 case SpvOpMemberDecorateStringGOOGLE:
3844 vtn_handle_decoration(b, opcode, w, count);
3845 break;
3846
3847 default:
3848 return false; /* End of preamble */
3849 }
3850
3851 return true;
3852 }
3853
3854 static void
3855 vtn_handle_execution_mode(struct vtn_builder *b, struct vtn_value *entry_point,
3856 const struct vtn_decoration *mode, void *data)
3857 {
3858 vtn_assert(b->entry_point == entry_point);
3859
3860 switch(mode->exec_mode) {
3861 case SpvExecutionModeOriginUpperLeft:
3862 case SpvExecutionModeOriginLowerLeft:
3863 vtn_assert(b->shader->info.stage == MESA_SHADER_FRAGMENT);
3864 b->shader->info.fs.origin_upper_left =
3865 (mode->exec_mode == SpvExecutionModeOriginUpperLeft);
3866 break;
3867
3868 case SpvExecutionModeEarlyFragmentTests:
3869 vtn_assert(b->shader->info.stage == MESA_SHADER_FRAGMENT);
3870 b->shader->info.fs.early_fragment_tests = true;
3871 break;
3872
3873 case SpvExecutionModePostDepthCoverage:
3874 vtn_assert(b->shader->info.stage == MESA_SHADER_FRAGMENT);
3875 b->shader->info.fs.post_depth_coverage = true;
3876 break;
3877
3878 case SpvExecutionModeInvocations:
3879 vtn_assert(b->shader->info.stage == MESA_SHADER_GEOMETRY);
3880 b->shader->info.gs.invocations = MAX2(1, mode->operands[0]);
3881 break;
3882
3883 case SpvExecutionModeDepthReplacing:
3884 vtn_assert(b->shader->info.stage == MESA_SHADER_FRAGMENT);
3885 b->shader->info.fs.depth_layout = FRAG_DEPTH_LAYOUT_ANY;
3886 break;
3887 case SpvExecutionModeDepthGreater:
3888 vtn_assert(b->shader->info.stage == MESA_SHADER_FRAGMENT);
3889 b->shader->info.fs.depth_layout = FRAG_DEPTH_LAYOUT_GREATER;
3890 break;
3891 case SpvExecutionModeDepthLess:
3892 vtn_assert(b->shader->info.stage == MESA_SHADER_FRAGMENT);
3893 b->shader->info.fs.depth_layout = FRAG_DEPTH_LAYOUT_LESS;
3894 break;
3895 case SpvExecutionModeDepthUnchanged:
3896 vtn_assert(b->shader->info.stage == MESA_SHADER_FRAGMENT);
3897 b->shader->info.fs.depth_layout = FRAG_DEPTH_LAYOUT_UNCHANGED;
3898 break;
3899
3900 case SpvExecutionModeLocalSize:
3901 vtn_assert(gl_shader_stage_is_compute(b->shader->info.stage));
3902 b->shader->info.cs.local_size[0] = mode->operands[0];
3903 b->shader->info.cs.local_size[1] = mode->operands[1];
3904 b->shader->info.cs.local_size[2] = mode->operands[2];
3905 break;
3906
3907 case SpvExecutionModeLocalSizeId:
3908 b->shader->info.cs.local_size[0] = vtn_constant_uint(b, mode->operands[0]);
3909 b->shader->info.cs.local_size[1] = vtn_constant_uint(b, mode->operands[1]);
3910 b->shader->info.cs.local_size[2] = vtn_constant_uint(b, mode->operands[2]);
3911 break;
3912
3913 case SpvExecutionModeLocalSizeHint:
3914 case SpvExecutionModeLocalSizeHintId:
3915 break; /* Nothing to do with this */
3916
3917 case SpvExecutionModeOutputVertices:
3918 if (b->shader->info.stage == MESA_SHADER_TESS_CTRL ||
3919 b->shader->info.stage == MESA_SHADER_TESS_EVAL) {
3920 b->shader->info.tess.tcs_vertices_out = mode->operands[0];
3921 } else {
3922 vtn_assert(b->shader->info.stage == MESA_SHADER_GEOMETRY);
3923 b->shader->info.gs.vertices_out = mode->operands[0];
3924 }
3925 break;
3926
3927 case SpvExecutionModeInputPoints:
3928 case SpvExecutionModeInputLines:
3929 case SpvExecutionModeInputLinesAdjacency:
3930 case SpvExecutionModeTriangles:
3931 case SpvExecutionModeInputTrianglesAdjacency:
3932 case SpvExecutionModeQuads:
3933 case SpvExecutionModeIsolines:
3934 if (b->shader->info.stage == MESA_SHADER_TESS_CTRL ||
3935 b->shader->info.stage == MESA_SHADER_TESS_EVAL) {
3936 b->shader->info.tess.primitive_mode =
3937 gl_primitive_from_spv_execution_mode(b, mode->exec_mode);
3938 } else {
3939 vtn_assert(b->shader->info.stage == MESA_SHADER_GEOMETRY);
3940 b->shader->info.gs.vertices_in =
3941 vertices_in_from_spv_execution_mode(b, mode->exec_mode);
3942 b->shader->info.gs.input_primitive =
3943 gl_primitive_from_spv_execution_mode(b, mode->exec_mode);
3944 }
3945 break;
3946
3947 case SpvExecutionModeOutputPoints:
3948 case SpvExecutionModeOutputLineStrip:
3949 case SpvExecutionModeOutputTriangleStrip:
3950 vtn_assert(b->shader->info.stage == MESA_SHADER_GEOMETRY);
3951 b->shader->info.gs.output_primitive =
3952 gl_primitive_from_spv_execution_mode(b, mode->exec_mode);
3953 break;
3954
3955 case SpvExecutionModeSpacingEqual:
3956 vtn_assert(b->shader->info.stage == MESA_SHADER_TESS_CTRL ||
3957 b->shader->info.stage == MESA_SHADER_TESS_EVAL);
3958 b->shader->info.tess.spacing = TESS_SPACING_EQUAL;
3959 break;
3960 case SpvExecutionModeSpacingFractionalEven:
3961 vtn_assert(b->shader->info.stage == MESA_SHADER_TESS_CTRL ||
3962 b->shader->info.stage == MESA_SHADER_TESS_EVAL);
3963 b->shader->info.tess.spacing = TESS_SPACING_FRACTIONAL_EVEN;
3964 break;
3965 case SpvExecutionModeSpacingFractionalOdd:
3966 vtn_assert(b->shader->info.stage == MESA_SHADER_TESS_CTRL ||
3967 b->shader->info.stage == MESA_SHADER_TESS_EVAL);
3968 b->shader->info.tess.spacing = TESS_SPACING_FRACTIONAL_ODD;
3969 break;
3970 case SpvExecutionModeVertexOrderCw:
3971 vtn_assert(b->shader->info.stage == MESA_SHADER_TESS_CTRL ||
3972 b->shader->info.stage == MESA_SHADER_TESS_EVAL);
3973 b->shader->info.tess.ccw = false;
3974 break;
3975 case SpvExecutionModeVertexOrderCcw:
3976 vtn_assert(b->shader->info.stage == MESA_SHADER_TESS_CTRL ||
3977 b->shader->info.stage == MESA_SHADER_TESS_EVAL);
3978 b->shader->info.tess.ccw = true;
3979 break;
3980 case SpvExecutionModePointMode:
3981 vtn_assert(b->shader->info.stage == MESA_SHADER_TESS_CTRL ||
3982 b->shader->info.stage == MESA_SHADER_TESS_EVAL);
3983 b->shader->info.tess.point_mode = true;
3984 break;
3985
3986 case SpvExecutionModePixelCenterInteger:
3987 vtn_assert(b->shader->info.stage == MESA_SHADER_FRAGMENT);
3988 b->shader->info.fs.pixel_center_integer = true;
3989 break;
3990
3991 case SpvExecutionModeXfb:
3992 b->shader->info.has_transform_feedback_varyings = true;
3993 break;
3994
3995 case SpvExecutionModeVecTypeHint:
3996 break; /* OpenCL */
3997
3998 case SpvExecutionModeContractionOff:
3999 if (b->shader->info.stage != MESA_SHADER_KERNEL)
4000 vtn_warn("ExectionMode only allowed for CL-style kernels: %s",
4001 spirv_executionmode_to_string(mode->exec_mode));
4002 else
4003 b->exact = true;
4004 break;
4005
4006 case SpvExecutionModeStencilRefReplacingEXT:
4007 vtn_assert(b->shader->info.stage == MESA_SHADER_FRAGMENT);
4008 break;
4009
4010 case SpvExecutionModeDerivativeGroupQuadsNV:
4011 vtn_assert(b->shader->info.stage == MESA_SHADER_COMPUTE);
4012 b->shader->info.cs.derivative_group = DERIVATIVE_GROUP_QUADS;
4013 break;
4014
4015 case SpvExecutionModeDerivativeGroupLinearNV:
4016 vtn_assert(b->shader->info.stage == MESA_SHADER_COMPUTE);
4017 b->shader->info.cs.derivative_group = DERIVATIVE_GROUP_LINEAR;
4018 break;
4019
4020 default:
4021 vtn_fail("Unhandled execution mode: %s (%u)",
4022 spirv_executionmode_to_string(mode->exec_mode),
4023 mode->exec_mode);
4024 }
4025 }
4026
4027 static bool
4028 vtn_handle_variable_or_type_instruction(struct vtn_builder *b, SpvOp opcode,
4029 const uint32_t *w, unsigned count)
4030 {
4031 vtn_set_instruction_result_type(b, opcode, w, count);
4032
4033 switch (opcode) {
4034 case SpvOpSource:
4035 case SpvOpSourceContinued:
4036 case SpvOpSourceExtension:
4037 case SpvOpExtension:
4038 case SpvOpCapability:
4039 case SpvOpExtInstImport:
4040 case SpvOpMemoryModel:
4041 case SpvOpEntryPoint:
4042 case SpvOpExecutionMode:
4043 case SpvOpString:
4044 case SpvOpName:
4045 case SpvOpMemberName:
4046 case SpvOpDecorationGroup:
4047 case SpvOpDecorate:
4048 case SpvOpDecorateId:
4049 case SpvOpMemberDecorate:
4050 case SpvOpGroupDecorate:
4051 case SpvOpGroupMemberDecorate:
4052 case SpvOpDecorateStringGOOGLE:
4053 case SpvOpMemberDecorateStringGOOGLE:
4054 vtn_fail("Invalid opcode types and variables section");
4055 break;
4056
4057 case SpvOpTypeVoid:
4058 case SpvOpTypeBool:
4059 case SpvOpTypeInt:
4060 case SpvOpTypeFloat:
4061 case SpvOpTypeVector:
4062 case SpvOpTypeMatrix:
4063 case SpvOpTypeImage:
4064 case SpvOpTypeSampler:
4065 case SpvOpTypeSampledImage:
4066 case SpvOpTypeArray:
4067 case SpvOpTypeRuntimeArray:
4068 case SpvOpTypeStruct:
4069 case SpvOpTypeOpaque:
4070 case SpvOpTypePointer:
4071 case SpvOpTypeForwardPointer:
4072 case SpvOpTypeFunction:
4073 case SpvOpTypeEvent:
4074 case SpvOpTypeDeviceEvent:
4075 case SpvOpTypeReserveId:
4076 case SpvOpTypeQueue:
4077 case SpvOpTypePipe:
4078 vtn_handle_type(b, opcode, w, count);
4079 break;
4080
4081 case SpvOpConstantTrue:
4082 case SpvOpConstantFalse:
4083 case SpvOpConstant:
4084 case SpvOpConstantComposite:
4085 case SpvOpConstantSampler:
4086 case SpvOpConstantNull:
4087 case SpvOpSpecConstantTrue:
4088 case SpvOpSpecConstantFalse:
4089 case SpvOpSpecConstant:
4090 case SpvOpSpecConstantComposite:
4091 case SpvOpSpecConstantOp:
4092 vtn_handle_constant(b, opcode, w, count);
4093 break;
4094
4095 case SpvOpUndef:
4096 case SpvOpVariable:
4097 vtn_handle_variables(b, opcode, w, count);
4098 break;
4099
4100 default:
4101 return false; /* End of preamble */
4102 }
4103
4104 return true;
4105 }
4106
4107 static bool
4108 vtn_handle_body_instruction(struct vtn_builder *b, SpvOp opcode,
4109 const uint32_t *w, unsigned count)
4110 {
4111 switch (opcode) {
4112 case SpvOpLabel:
4113 break;
4114
4115 case SpvOpLoopMerge:
4116 case SpvOpSelectionMerge:
4117 /* This is handled by cfg pre-pass and walk_blocks */
4118 break;
4119
4120 case SpvOpUndef: {
4121 struct vtn_value *val = vtn_push_value(b, w[2], vtn_value_type_undef);
4122 val->type = vtn_value(b, w[1], vtn_value_type_type)->type;
4123 break;
4124 }
4125
4126 case SpvOpExtInst:
4127 vtn_handle_extension(b, opcode, w, count);
4128 break;
4129
4130 case SpvOpVariable:
4131 case SpvOpLoad:
4132 case SpvOpStore:
4133 case SpvOpCopyMemory:
4134 case SpvOpCopyMemorySized:
4135 case SpvOpAccessChain:
4136 case SpvOpPtrAccessChain:
4137 case SpvOpInBoundsAccessChain:
4138 case SpvOpInBoundsPtrAccessChain:
4139 case SpvOpArrayLength:
4140 case SpvOpConvertPtrToU:
4141 case SpvOpConvertUToPtr:
4142 vtn_handle_variables(b, opcode, w, count);
4143 break;
4144
4145 case SpvOpFunctionCall:
4146 vtn_handle_function_call(b, opcode, w, count);
4147 break;
4148
4149 case SpvOpSampledImage:
4150 case SpvOpImage:
4151 case SpvOpImageSampleImplicitLod:
4152 case SpvOpImageSampleExplicitLod:
4153 case SpvOpImageSampleDrefImplicitLod:
4154 case SpvOpImageSampleDrefExplicitLod:
4155 case SpvOpImageSampleProjImplicitLod:
4156 case SpvOpImageSampleProjExplicitLod:
4157 case SpvOpImageSampleProjDrefImplicitLod:
4158 case SpvOpImageSampleProjDrefExplicitLod:
4159 case SpvOpImageFetch:
4160 case SpvOpImageGather:
4161 case SpvOpImageDrefGather:
4162 case SpvOpImageQuerySizeLod:
4163 case SpvOpImageQueryLod:
4164 case SpvOpImageQueryLevels:
4165 case SpvOpImageQuerySamples:
4166 vtn_handle_texture(b, opcode, w, count);
4167 break;
4168
4169 case SpvOpImageRead:
4170 case SpvOpImageWrite:
4171 case SpvOpImageTexelPointer:
4172 vtn_handle_image(b, opcode, w, count);
4173 break;
4174
4175 case SpvOpImageQuerySize: {
4176 struct vtn_pointer *image =
4177 vtn_value(b, w[3], vtn_value_type_pointer)->pointer;
4178 if (glsl_type_is_image(image->type->type)) {
4179 vtn_handle_image(b, opcode, w, count);
4180 } else {
4181 vtn_assert(glsl_type_is_sampler(image->type->type));
4182 vtn_handle_texture(b, opcode, w, count);
4183 }
4184 break;
4185 }
4186
4187 case SpvOpAtomicLoad:
4188 case SpvOpAtomicExchange:
4189 case SpvOpAtomicCompareExchange:
4190 case SpvOpAtomicCompareExchangeWeak:
4191 case SpvOpAtomicIIncrement:
4192 case SpvOpAtomicIDecrement:
4193 case SpvOpAtomicIAdd:
4194 case SpvOpAtomicISub:
4195 case SpvOpAtomicSMin:
4196 case SpvOpAtomicUMin:
4197 case SpvOpAtomicSMax:
4198 case SpvOpAtomicUMax:
4199 case SpvOpAtomicAnd:
4200 case SpvOpAtomicOr:
4201 case SpvOpAtomicXor: {
4202 struct vtn_value *pointer = vtn_untyped_value(b, w[3]);
4203 if (pointer->value_type == vtn_value_type_image_pointer) {
4204 vtn_handle_image(b, opcode, w, count);
4205 } else {
4206 vtn_assert(pointer->value_type == vtn_value_type_pointer);
4207 vtn_handle_atomics(b, opcode, w, count);
4208 }
4209 break;
4210 }
4211
4212 case SpvOpAtomicStore: {
4213 struct vtn_value *pointer = vtn_untyped_value(b, w[1]);
4214 if (pointer->value_type == vtn_value_type_image_pointer) {
4215 vtn_handle_image(b, opcode, w, count);
4216 } else {
4217 vtn_assert(pointer->value_type == vtn_value_type_pointer);
4218 vtn_handle_atomics(b, opcode, w, count);
4219 }
4220 break;
4221 }
4222
4223 case SpvOpSelect: {
4224 /* Handle OpSelect up-front here because it needs to be able to handle
4225 * pointers and not just regular vectors and scalars.
4226 */
4227 struct vtn_value *res_val = vtn_untyped_value(b, w[2]);
4228 struct vtn_value *sel_val = vtn_untyped_value(b, w[3]);
4229 struct vtn_value *obj1_val = vtn_untyped_value(b, w[4]);
4230 struct vtn_value *obj2_val = vtn_untyped_value(b, w[5]);
4231
4232 const struct glsl_type *sel_type;
4233 switch (res_val->type->base_type) {
4234 case vtn_base_type_scalar:
4235 sel_type = glsl_bool_type();
4236 break;
4237 case vtn_base_type_vector:
4238 sel_type = glsl_vector_type(GLSL_TYPE_BOOL, res_val->type->length);
4239 break;
4240 case vtn_base_type_pointer:
4241 /* We need to have actual storage for pointer types */
4242 vtn_fail_if(res_val->type->type == NULL,
4243 "Invalid pointer result type for OpSelect");
4244 sel_type = glsl_bool_type();
4245 break;
4246 default:
4247 vtn_fail("Result type of OpSelect must be a scalar, vector, or pointer");
4248 }
4249
4250 if (unlikely(sel_val->type->type != sel_type)) {
4251 if (sel_val->type->type == glsl_bool_type()) {
4252 /* This case is illegal but some older versions of GLSLang produce
4253 * it. The GLSLang issue was fixed on March 30, 2017:
4254 *
4255 * https://github.com/KhronosGroup/glslang/issues/809
4256 *
4257 * Unfortunately, there are applications in the wild which are
4258 * shipping with this bug so it isn't nice to fail on them so we
4259 * throw a warning instead. It's not actually a problem for us as
4260 * nir_builder will just splat the condition out which is most
4261 * likely what the client wanted anyway.
4262 */
4263 vtn_warn("Condition type of OpSelect must have the same number "
4264 "of components as Result Type");
4265 } else {
4266 vtn_fail("Condition type of OpSelect must be a scalar or vector "
4267 "of Boolean type. It must have the same number of "
4268 "components as Result Type");
4269 }
4270 }
4271
4272 vtn_fail_if(obj1_val->type != res_val->type ||
4273 obj2_val->type != res_val->type,
4274 "Object types must match the result type in OpSelect");
4275
4276 struct vtn_type *res_type = vtn_value(b, w[1], vtn_value_type_type)->type;
4277 struct vtn_ssa_value *ssa = vtn_create_ssa_value(b, res_type->type);
4278 ssa->def = nir_bcsel(&b->nb, vtn_ssa_value(b, w[3])->def,
4279 vtn_ssa_value(b, w[4])->def,
4280 vtn_ssa_value(b, w[5])->def);
4281 vtn_push_ssa(b, w[2], res_type, ssa);
4282 break;
4283 }
4284
4285 case SpvOpSNegate:
4286 case SpvOpFNegate:
4287 case SpvOpNot:
4288 case SpvOpAny:
4289 case SpvOpAll:
4290 case SpvOpConvertFToU:
4291 case SpvOpConvertFToS:
4292 case SpvOpConvertSToF:
4293 case SpvOpConvertUToF:
4294 case SpvOpUConvert:
4295 case SpvOpSConvert:
4296 case SpvOpFConvert:
4297 case SpvOpQuantizeToF16:
4298 case SpvOpPtrCastToGeneric:
4299 case SpvOpGenericCastToPtr:
4300 case SpvOpBitcast:
4301 case SpvOpIsNan:
4302 case SpvOpIsInf:
4303 case SpvOpIsFinite:
4304 case SpvOpIsNormal:
4305 case SpvOpSignBitSet:
4306 case SpvOpLessOrGreater:
4307 case SpvOpOrdered:
4308 case SpvOpUnordered:
4309 case SpvOpIAdd:
4310 case SpvOpFAdd:
4311 case SpvOpISub:
4312 case SpvOpFSub:
4313 case SpvOpIMul:
4314 case SpvOpFMul:
4315 case SpvOpUDiv:
4316 case SpvOpSDiv:
4317 case SpvOpFDiv:
4318 case SpvOpUMod:
4319 case SpvOpSRem:
4320 case SpvOpSMod:
4321 case SpvOpFRem:
4322 case SpvOpFMod:
4323 case SpvOpVectorTimesScalar:
4324 case SpvOpDot:
4325 case SpvOpIAddCarry:
4326 case SpvOpISubBorrow:
4327 case SpvOpUMulExtended:
4328 case SpvOpSMulExtended:
4329 case SpvOpShiftRightLogical:
4330 case SpvOpShiftRightArithmetic:
4331 case SpvOpShiftLeftLogical:
4332 case SpvOpLogicalEqual:
4333 case SpvOpLogicalNotEqual:
4334 case SpvOpLogicalOr:
4335 case SpvOpLogicalAnd:
4336 case SpvOpLogicalNot:
4337 case SpvOpBitwiseOr:
4338 case SpvOpBitwiseXor:
4339 case SpvOpBitwiseAnd:
4340 case SpvOpIEqual:
4341 case SpvOpFOrdEqual:
4342 case SpvOpFUnordEqual:
4343 case SpvOpINotEqual:
4344 case SpvOpFOrdNotEqual:
4345 case SpvOpFUnordNotEqual:
4346 case SpvOpULessThan:
4347 case SpvOpSLessThan:
4348 case SpvOpFOrdLessThan:
4349 case SpvOpFUnordLessThan:
4350 case SpvOpUGreaterThan:
4351 case SpvOpSGreaterThan:
4352 case SpvOpFOrdGreaterThan:
4353 case SpvOpFUnordGreaterThan:
4354 case SpvOpULessThanEqual:
4355 case SpvOpSLessThanEqual:
4356 case SpvOpFOrdLessThanEqual:
4357 case SpvOpFUnordLessThanEqual:
4358 case SpvOpUGreaterThanEqual:
4359 case SpvOpSGreaterThanEqual:
4360 case SpvOpFOrdGreaterThanEqual:
4361 case SpvOpFUnordGreaterThanEqual:
4362 case SpvOpDPdx:
4363 case SpvOpDPdy:
4364 case SpvOpFwidth:
4365 case SpvOpDPdxFine:
4366 case SpvOpDPdyFine:
4367 case SpvOpFwidthFine:
4368 case SpvOpDPdxCoarse:
4369 case SpvOpDPdyCoarse:
4370 case SpvOpFwidthCoarse:
4371 case SpvOpBitFieldInsert:
4372 case SpvOpBitFieldSExtract:
4373 case SpvOpBitFieldUExtract:
4374 case SpvOpBitReverse:
4375 case SpvOpBitCount:
4376 case SpvOpTranspose:
4377 case SpvOpOuterProduct:
4378 case SpvOpMatrixTimesScalar:
4379 case SpvOpVectorTimesMatrix:
4380 case SpvOpMatrixTimesVector:
4381 case SpvOpMatrixTimesMatrix:
4382 vtn_handle_alu(b, opcode, w, count);
4383 break;
4384
4385 case SpvOpVectorExtractDynamic:
4386 case SpvOpVectorInsertDynamic:
4387 case SpvOpVectorShuffle:
4388 case SpvOpCompositeConstruct:
4389 case SpvOpCompositeExtract:
4390 case SpvOpCompositeInsert:
4391 case SpvOpCopyObject:
4392 vtn_handle_composite(b, opcode, w, count);
4393 break;
4394
4395 case SpvOpEmitVertex:
4396 case SpvOpEndPrimitive:
4397 case SpvOpEmitStreamVertex:
4398 case SpvOpEndStreamPrimitive:
4399 case SpvOpControlBarrier:
4400 case SpvOpMemoryBarrier:
4401 vtn_handle_barrier(b, opcode, w, count);
4402 break;
4403
4404 case SpvOpGroupNonUniformElect:
4405 case SpvOpGroupNonUniformAll:
4406 case SpvOpGroupNonUniformAny:
4407 case SpvOpGroupNonUniformAllEqual:
4408 case SpvOpGroupNonUniformBroadcast:
4409 case SpvOpGroupNonUniformBroadcastFirst:
4410 case SpvOpGroupNonUniformBallot:
4411 case SpvOpGroupNonUniformInverseBallot:
4412 case SpvOpGroupNonUniformBallotBitExtract:
4413 case SpvOpGroupNonUniformBallotBitCount:
4414 case SpvOpGroupNonUniformBallotFindLSB:
4415 case SpvOpGroupNonUniformBallotFindMSB:
4416 case SpvOpGroupNonUniformShuffle:
4417 case SpvOpGroupNonUniformShuffleXor:
4418 case SpvOpGroupNonUniformShuffleUp:
4419 case SpvOpGroupNonUniformShuffleDown:
4420 case SpvOpGroupNonUniformIAdd:
4421 case SpvOpGroupNonUniformFAdd:
4422 case SpvOpGroupNonUniformIMul:
4423 case SpvOpGroupNonUniformFMul:
4424 case SpvOpGroupNonUniformSMin:
4425 case SpvOpGroupNonUniformUMin:
4426 case SpvOpGroupNonUniformFMin:
4427 case SpvOpGroupNonUniformSMax:
4428 case SpvOpGroupNonUniformUMax:
4429 case SpvOpGroupNonUniformFMax:
4430 case SpvOpGroupNonUniformBitwiseAnd:
4431 case SpvOpGroupNonUniformBitwiseOr:
4432 case SpvOpGroupNonUniformBitwiseXor:
4433 case SpvOpGroupNonUniformLogicalAnd:
4434 case SpvOpGroupNonUniformLogicalOr:
4435 case SpvOpGroupNonUniformLogicalXor:
4436 case SpvOpGroupNonUniformQuadBroadcast:
4437 case SpvOpGroupNonUniformQuadSwap:
4438 vtn_handle_subgroup(b, opcode, w, count);
4439 break;
4440
4441 default:
4442 vtn_fail_with_opcode("Unhandled opcode", opcode);
4443 }
4444
4445 return true;
4446 }
4447
4448 struct vtn_builder*
4449 vtn_create_builder(const uint32_t *words, size_t word_count,
4450 gl_shader_stage stage, const char *entry_point_name,
4451 const struct spirv_to_nir_options *options)
4452 {
4453 /* Initialize the vtn_builder object */
4454 struct vtn_builder *b = rzalloc(NULL, struct vtn_builder);
4455 struct spirv_to_nir_options *dup_options =
4456 ralloc(b, struct spirv_to_nir_options);
4457 *dup_options = *options;
4458
4459 b->spirv = words;
4460 b->spirv_word_count = word_count;
4461 b->file = NULL;
4462 b->line = -1;
4463 b->col = -1;
4464 exec_list_make_empty(&b->functions);
4465 b->entry_point_stage = stage;
4466 b->entry_point_name = entry_point_name;
4467 b->options = dup_options;
4468
4469 /*
4470 * Handle the SPIR-V header (first 5 dwords).
4471 * Can't use vtx_assert() as the setjmp(3) target isn't initialized yet.
4472 */
4473 if (word_count <= 5)
4474 goto fail;
4475
4476 if (words[0] != SpvMagicNumber) {
4477 vtn_err("words[0] was 0x%x, want 0x%x", words[0], SpvMagicNumber);
4478 goto fail;
4479 }
4480 if (words[1] < 0x10000) {
4481 vtn_err("words[1] was 0x%x, want >= 0x10000", words[1]);
4482 goto fail;
4483 }
4484
4485 uint16_t generator_id = words[2] >> 16;
4486 uint16_t generator_version = words[2];
4487
4488 /* The first GLSLang version bump actually 1.5 years after #179 was fixed
4489 * but this should at least let us shut the workaround off for modern
4490 * versions of GLSLang.
4491 */
4492 b->wa_glslang_179 = (generator_id == 8 && generator_version == 1);
4493
4494 /* words[2] == generator magic */
4495 unsigned value_id_bound = words[3];
4496 if (words[4] != 0) {
4497 vtn_err("words[4] was %u, want 0", words[4]);
4498 goto fail;
4499 }
4500
4501 b->value_id_bound = value_id_bound;
4502 b->values = rzalloc_array(b, struct vtn_value, value_id_bound);
4503
4504 return b;
4505 fail:
4506 ralloc_free(b);
4507 return NULL;
4508 }
4509
4510 static nir_function *
4511 vtn_emit_kernel_entry_point_wrapper(struct vtn_builder *b,
4512 nir_function *entry_point)
4513 {
4514 vtn_assert(entry_point == b->entry_point->func->impl->function);
4515 vtn_fail_if(!entry_point->name, "entry points are required to have a name");
4516 const char *func_name =
4517 ralloc_asprintf(b->shader, "__wrapped_%s", entry_point->name);
4518
4519 /* we shouldn't have any inputs yet */
4520 vtn_assert(!entry_point->shader->num_inputs);
4521 vtn_assert(b->shader->info.stage == MESA_SHADER_KERNEL);
4522
4523 nir_function *main_entry_point = nir_function_create(b->shader, func_name);
4524 main_entry_point->impl = nir_function_impl_create(main_entry_point);
4525 nir_builder_init(&b->nb, main_entry_point->impl);
4526 b->nb.cursor = nir_after_cf_list(&main_entry_point->impl->body);
4527 b->func_param_idx = 0;
4528
4529 nir_call_instr *call = nir_call_instr_create(b->nb.shader, entry_point);
4530
4531 for (unsigned i = 0; i < entry_point->num_params; ++i) {
4532 struct vtn_type *param_type = b->entry_point->func->type->params[i];
4533
4534 /* consider all pointers to function memory to be parameters passed
4535 * by value
4536 */
4537 bool is_by_val = param_type->base_type == vtn_base_type_pointer &&
4538 param_type->storage_class == SpvStorageClassFunction;
4539
4540 /* input variable */
4541 nir_variable *in_var = rzalloc(b->nb.shader, nir_variable);
4542 in_var->data.mode = nir_var_shader_in;
4543 in_var->data.read_only = true;
4544 in_var->data.location = i;
4545
4546 if (is_by_val)
4547 in_var->type = param_type->deref->type;
4548 else
4549 in_var->type = param_type->type;
4550
4551 nir_shader_add_variable(b->nb.shader, in_var);
4552 b->nb.shader->num_inputs++;
4553
4554 /* we have to copy the entire variable into function memory */
4555 if (is_by_val) {
4556 nir_variable *copy_var =
4557 nir_local_variable_create(main_entry_point->impl, in_var->type,
4558 "copy_in");
4559 nir_copy_var(&b->nb, copy_var, in_var);
4560 call->params[i] =
4561 nir_src_for_ssa(&nir_build_deref_var(&b->nb, copy_var)->dest.ssa);
4562 } else {
4563 call->params[i] = nir_src_for_ssa(nir_load_var(&b->nb, in_var));
4564 }
4565 }
4566
4567 nir_builder_instr_insert(&b->nb, &call->instr);
4568
4569 return main_entry_point;
4570 }
4571
4572 nir_function *
4573 spirv_to_nir(const uint32_t *words, size_t word_count,
4574 struct nir_spirv_specialization *spec, unsigned num_spec,
4575 gl_shader_stage stage, const char *entry_point_name,
4576 const struct spirv_to_nir_options *options,
4577 const nir_shader_compiler_options *nir_options)
4578
4579 {
4580 const uint32_t *word_end = words + word_count;
4581
4582 struct vtn_builder *b = vtn_create_builder(words, word_count,
4583 stage, entry_point_name,
4584 options);
4585
4586 if (b == NULL)
4587 return NULL;
4588
4589 /* See also _vtn_fail() */
4590 if (setjmp(b->fail_jump)) {
4591 ralloc_free(b);
4592 return NULL;
4593 }
4594
4595 /* Skip the SPIR-V header, handled at vtn_create_builder */
4596 words+= 5;
4597
4598 b->shader = nir_shader_create(b, stage, nir_options, NULL);
4599
4600 /* Handle all the preamble instructions */
4601 words = vtn_foreach_instruction(b, words, word_end,
4602 vtn_handle_preamble_instruction);
4603
4604 if (b->entry_point == NULL) {
4605 vtn_fail("Entry point not found");
4606 ralloc_free(b);
4607 return NULL;
4608 }
4609
4610 /* Set shader info defaults */
4611 b->shader->info.gs.invocations = 1;
4612
4613 b->specializations = spec;
4614 b->num_specializations = num_spec;
4615
4616 /* Handle all variable, type, and constant instructions */
4617 words = vtn_foreach_instruction(b, words, word_end,
4618 vtn_handle_variable_or_type_instruction);
4619
4620 /* Parse execution modes */
4621 vtn_foreach_execution_mode(b, b->entry_point,
4622 vtn_handle_execution_mode, NULL);
4623
4624 if (b->workgroup_size_builtin) {
4625 vtn_assert(b->workgroup_size_builtin->type->type ==
4626 glsl_vector_type(GLSL_TYPE_UINT, 3));
4627
4628 nir_const_value *const_size =
4629 b->workgroup_size_builtin->constant->values[0];
4630
4631 b->shader->info.cs.local_size[0] = const_size[0].u32;
4632 b->shader->info.cs.local_size[1] = const_size[1].u32;
4633 b->shader->info.cs.local_size[2] = const_size[2].u32;
4634 }
4635
4636 /* Set types on all vtn_values */
4637 vtn_foreach_instruction(b, words, word_end, vtn_set_instruction_result_type);
4638
4639 vtn_build_cfg(b, words, word_end);
4640
4641 assert(b->entry_point->value_type == vtn_value_type_function);
4642 b->entry_point->func->referenced = true;
4643
4644 bool progress;
4645 do {
4646 progress = false;
4647 foreach_list_typed(struct vtn_function, func, node, &b->functions) {
4648 if (func->referenced && !func->emitted) {
4649 b->const_table = _mesa_pointer_hash_table_create(b);
4650
4651 vtn_function_emit(b, func, vtn_handle_body_instruction);
4652 progress = true;
4653 }
4654 }
4655 } while (progress);
4656
4657 vtn_assert(b->entry_point->value_type == vtn_value_type_function);
4658 nir_function *entry_point = b->entry_point->func->impl->function;
4659 vtn_assert(entry_point);
4660
4661 /* post process entry_points with input params */
4662 if (entry_point->num_params && b->shader->info.stage == MESA_SHADER_KERNEL)
4663 entry_point = vtn_emit_kernel_entry_point_wrapper(b, entry_point);
4664
4665 entry_point->is_entrypoint = true;
4666
4667 /* When multiple shader stages exist in the same SPIR-V module, we
4668 * generate input and output variables for every stage, in the same
4669 * NIR program. These dead variables can be invalid NIR. For example,
4670 * TCS outputs must be per-vertex arrays (or decorated 'patch'), while
4671 * VS output variables wouldn't be.
4672 *
4673 * To ensure we have valid NIR, we eliminate any dead inputs and outputs
4674 * right away. In order to do so, we must lower any constant initializers
4675 * on outputs so nir_remove_dead_variables sees that they're written to.
4676 */
4677 nir_lower_constant_initializers(b->shader, nir_var_shader_out);
4678 nir_remove_dead_variables(b->shader,
4679 nir_var_shader_in | nir_var_shader_out);
4680
4681 /* We sometimes generate bogus derefs that, while never used, give the
4682 * validator a bit of heartburn. Run dead code to get rid of them.
4683 */
4684 nir_opt_dce(b->shader);
4685
4686 /* Unparent the shader from the vtn_builder before we delete the builder */
4687 ralloc_steal(NULL, b->shader);
4688
4689 ralloc_free(b);
4690
4691 return entry_point;
4692 }