8efa91930158892231e52c58b22e679524af4487
[mesa.git] / src / compiler / spirv / vtn_private.h
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 #ifndef _VTN_PRIVATE_H_
29 #define _VTN_PRIVATE_H_
30
31 #include <setjmp.h>
32
33 #include "nir/nir.h"
34 #include "nir/nir_builder.h"
35 #include "util/u_dynarray.h"
36 #include "nir_spirv.h"
37 #include "spirv.h"
38
39 struct vtn_builder;
40 struct vtn_decoration;
41
42 void vtn_log(struct vtn_builder *b, enum nir_spirv_debug_level level,
43 size_t spirv_offset, const char *message);
44
45 void vtn_logf(struct vtn_builder *b, enum nir_spirv_debug_level level,
46 size_t spirv_offset, const char *fmt, ...) PRINTFLIKE(4, 5);
47
48 #define vtn_info(...) vtn_logf(b, NIR_SPIRV_DEBUG_LEVEL_INFO, 0, __VA_ARGS__)
49
50 void _vtn_warn(struct vtn_builder *b, const char *file, unsigned line,
51 const char *fmt, ...) PRINTFLIKE(4, 5);
52 #define vtn_warn(...) _vtn_warn(b, __FILE__, __LINE__, __VA_ARGS__)
53
54 /** Fail SPIR-V parsing
55 *
56 * This function logs an error and then bails out of the shader compile using
57 * longjmp. This being safe relies on two things:
58 *
59 * 1) We must guarantee that setjmp is called after allocating the builder
60 * and setting up b->debug (so that logging works) but before before any
61 * errors have a chance to occur.
62 *
63 * 2) While doing the SPIR-V -> NIR conversion, we need to be careful to
64 * ensure that all heap allocations happen through ralloc and are parented
65 * to the builder. This way they will get properly cleaned up on error.
66 *
67 * 3) We must ensure that _vtn_fail is never called while a mutex lock or a
68 * reference to any other resource is held with the exception of ralloc
69 * objects which are parented to the builder.
70 *
71 * So long as these two things continue to hold, we can easily longjmp back to
72 * spirv_to_nir(), clean up the builder, and return NULL.
73 */
74 void _vtn_fail(struct vtn_builder *b, const char *file, unsigned line,
75 const char *fmt, ...) NORETURN PRINTFLIKE(4, 5);
76 #define vtn_fail(...) _vtn_fail(b, __FILE__, __LINE__, __VA_ARGS__)
77
78 /** Fail if the given expression evaluates to true */
79 #define vtn_fail_if(expr, ...) \
80 do { \
81 if (unlikely(expr)) \
82 vtn_fail(__VA_ARGS__); \
83 } while (0)
84
85 /** Assert that a condition is true and, if it isn't, vtn_fail
86 *
87 * This macro is transitional only and should not be used in new code. Use
88 * vtn_fail_if and provide a real message instead.
89 */
90 #define vtn_assert(expr) \
91 do { \
92 if (!likely(expr)) \
93 vtn_fail("%s", #expr); \
94 } while (0)
95
96 enum vtn_value_type {
97 vtn_value_type_invalid = 0,
98 vtn_value_type_undef,
99 vtn_value_type_string,
100 vtn_value_type_decoration_group,
101 vtn_value_type_type,
102 vtn_value_type_constant,
103 vtn_value_type_pointer,
104 vtn_value_type_function,
105 vtn_value_type_block,
106 vtn_value_type_ssa,
107 vtn_value_type_extension,
108 vtn_value_type_image_pointer,
109 vtn_value_type_sampled_image,
110 };
111
112 enum vtn_branch_type {
113 vtn_branch_type_none,
114 vtn_branch_type_switch_break,
115 vtn_branch_type_switch_fallthrough,
116 vtn_branch_type_loop_break,
117 vtn_branch_type_loop_continue,
118 vtn_branch_type_discard,
119 vtn_branch_type_return,
120 };
121
122 enum vtn_cf_node_type {
123 vtn_cf_node_type_block,
124 vtn_cf_node_type_if,
125 vtn_cf_node_type_loop,
126 vtn_cf_node_type_switch,
127 };
128
129 struct vtn_cf_node {
130 struct list_head link;
131 enum vtn_cf_node_type type;
132 };
133
134 struct vtn_loop {
135 struct vtn_cf_node node;
136
137 /* The main body of the loop */
138 struct list_head body;
139
140 /* The "continue" part of the loop. This gets executed after the body
141 * and is where you go when you hit a continue.
142 */
143 struct list_head cont_body;
144
145 SpvLoopControlMask control;
146 };
147
148 struct vtn_if {
149 struct vtn_cf_node node;
150
151 uint32_t condition;
152
153 enum vtn_branch_type then_type;
154 struct list_head then_body;
155
156 enum vtn_branch_type else_type;
157 struct list_head else_body;
158
159 SpvSelectionControlMask control;
160 };
161
162 struct vtn_case {
163 struct list_head link;
164
165 struct list_head body;
166
167 /* The block that starts this case */
168 struct vtn_block *start_block;
169
170 /* The fallthrough case, if any */
171 struct vtn_case *fallthrough;
172
173 /* The uint32_t values that map to this case */
174 struct util_dynarray values;
175
176 /* True if this is the default case */
177 bool is_default;
178
179 /* Initialized to false; used when sorting the list of cases */
180 bool visited;
181 };
182
183 struct vtn_switch {
184 struct vtn_cf_node node;
185
186 uint32_t selector;
187
188 struct list_head cases;
189 };
190
191 struct vtn_block {
192 struct vtn_cf_node node;
193
194 /** A pointer to the label instruction */
195 const uint32_t *label;
196
197 /** A pointer to the merge instruction (or NULL if non exists) */
198 const uint32_t *merge;
199
200 /** A pointer to the branch instruction that ends this block */
201 const uint32_t *branch;
202
203 enum vtn_branch_type branch_type;
204
205 /** Points to the loop that this block starts (if it starts a loop) */
206 struct vtn_loop *loop;
207
208 /** Points to the switch case started by this block (if any) */
209 struct vtn_case *switch_case;
210
211 /** Every block ends in a nop intrinsic so that we can find it again */
212 nir_intrinsic_instr *end_nop;
213 };
214
215 struct vtn_function {
216 struct exec_node node;
217
218 bool referenced;
219 bool emitted;
220
221 nir_function_impl *impl;
222 struct vtn_block *start_block;
223
224 struct list_head body;
225
226 const uint32_t *end;
227
228 SpvFunctionControlMask control;
229 };
230
231 typedef bool (*vtn_instruction_handler)(struct vtn_builder *, uint32_t,
232 const uint32_t *, unsigned);
233
234 void vtn_build_cfg(struct vtn_builder *b, const uint32_t *words,
235 const uint32_t *end);
236 void vtn_function_emit(struct vtn_builder *b, struct vtn_function *func,
237 vtn_instruction_handler instruction_handler);
238
239 const uint32_t *
240 vtn_foreach_instruction(struct vtn_builder *b, const uint32_t *start,
241 const uint32_t *end, vtn_instruction_handler handler);
242
243 struct vtn_ssa_value {
244 union {
245 nir_ssa_def *def;
246 struct vtn_ssa_value **elems;
247 };
248
249 /* For matrices, if this is non-NULL, then this value is actually the
250 * transpose of some other value. The value that `transposed` points to
251 * always dominates this value.
252 */
253 struct vtn_ssa_value *transposed;
254
255 const struct glsl_type *type;
256 };
257
258 enum vtn_base_type {
259 vtn_base_type_void,
260 vtn_base_type_scalar,
261 vtn_base_type_vector,
262 vtn_base_type_matrix,
263 vtn_base_type_array,
264 vtn_base_type_struct,
265 vtn_base_type_pointer,
266 vtn_base_type_image,
267 vtn_base_type_sampler,
268 vtn_base_type_function,
269 };
270
271 struct vtn_type {
272 enum vtn_base_type base_type;
273
274 const struct glsl_type *type;
275
276 /* The value that declares this type. Used for finding decorations */
277 struct vtn_value *val;
278
279 /* Specifies the length of complex types. */
280 unsigned length;
281
282 /* for arrays, matrices and pointers, the array stride */
283 unsigned stride;
284
285 union {
286 /* Members for scalar, vector, and array-like types */
287 struct {
288 /* for arrays, the vtn_type for the elements of the array */
289 struct vtn_type *array_element;
290
291 /* for matrices, whether the matrix is stored row-major */
292 bool row_major:1;
293
294 /* Whether this type, or a parent type, has been decorated as a
295 * builtin
296 */
297 bool is_builtin:1;
298
299 /* Which built-in to use */
300 SpvBuiltIn builtin;
301 };
302
303 /* Members for struct types */
304 struct {
305 /* for structures, the vtn_type for each member */
306 struct vtn_type **members;
307
308 /* for structs, the offset of each member */
309 unsigned *offsets;
310
311 /* for structs, whether it was decorated as a "non-SSBO-like" block */
312 bool block:1;
313
314 /* for structs, whether it was decorated as an "SSBO-like" block */
315 bool buffer_block:1;
316
317 /* for structs with block == true, whether this is a builtin block
318 * (i.e. a block that contains only builtins).
319 */
320 bool builtin_block:1;
321 };
322
323 /* Members for pointer types */
324 struct {
325 /* For pointers, the vtn_type for dereferenced type */
326 struct vtn_type *deref;
327
328 /* Storage class for pointers */
329 SpvStorageClass storage_class;
330 };
331
332 /* Members for image types */
333 struct {
334 /* For images, indicates whether it's sampled or storage */
335 bool sampled;
336
337 /* Image format for image_load_store type images */
338 unsigned image_format;
339
340 /* Access qualifier for storage images */
341 SpvAccessQualifier access_qualifier;
342 };
343
344 /* Members for function types */
345 struct {
346 /* For functions, the vtn_type for each parameter */
347 struct vtn_type **params;
348
349 /* Return type for functions */
350 struct vtn_type *return_type;
351 };
352 };
353 };
354
355 struct vtn_variable;
356
357 enum vtn_access_mode {
358 vtn_access_mode_id,
359 vtn_access_mode_literal,
360 };
361
362 struct vtn_access_link {
363 enum vtn_access_mode mode;
364 uint32_t id;
365 };
366
367 struct vtn_access_chain {
368 uint32_t length;
369
370 /** Whether or not to treat the base pointer as an array. This is only
371 * true if this access chain came from an OpPtrAccessChain.
372 */
373 bool ptr_as_array;
374
375 /** Struct elements and array offsets.
376 *
377 * This is an array of 1 so that it can conveniently be created on the
378 * stack but the real length is given by the length field.
379 */
380 struct vtn_access_link link[1];
381 };
382
383 enum vtn_variable_mode {
384 vtn_variable_mode_local,
385 vtn_variable_mode_global,
386 vtn_variable_mode_param,
387 vtn_variable_mode_ubo,
388 vtn_variable_mode_ssbo,
389 vtn_variable_mode_push_constant,
390 vtn_variable_mode_image,
391 vtn_variable_mode_sampler,
392 vtn_variable_mode_workgroup,
393 vtn_variable_mode_input,
394 vtn_variable_mode_output,
395 };
396
397 struct vtn_pointer {
398 /** The variable mode for the referenced data */
399 enum vtn_variable_mode mode;
400
401 /** The dereferenced type of this pointer */
402 struct vtn_type *type;
403
404 /** The pointer type of this pointer
405 *
406 * This may be NULL for some temporary pointers constructed as part of a
407 * large load, store, or copy. It MUST be valid for all pointers which are
408 * stored as SPIR-V SSA values.
409 */
410 struct vtn_type *ptr_type;
411
412 /** The referenced variable, if known
413 *
414 * This field may be NULL if the pointer uses a (block_index, offset) pair
415 * instead of an access chain.
416 */
417 struct vtn_variable *var;
418
419 /** An access chain describing how to get from var to the referenced data
420 *
421 * This field may be NULL if the pointer references the entire variable or
422 * if a (block_index, offset) pair is used instead of an access chain.
423 */
424 struct vtn_access_chain *chain;
425
426 /** A (block_index, offset) pair representing a UBO or SSBO position. */
427 struct nir_ssa_def *block_index;
428 struct nir_ssa_def *offset;
429 };
430
431 static inline bool
432 vtn_pointer_uses_ssa_offset(struct vtn_pointer *ptr)
433 {
434 return ptr->mode == vtn_variable_mode_ubo ||
435 ptr->mode == vtn_variable_mode_ssbo;
436 }
437
438 struct vtn_variable {
439 enum vtn_variable_mode mode;
440
441 struct vtn_type *type;
442
443 unsigned descriptor_set;
444 unsigned binding;
445 unsigned input_attachment_index;
446 bool patch;
447
448 nir_variable *var;
449 nir_variable **members;
450
451 /**
452 * In some early released versions of GLSLang, it implemented all function
453 * calls by making copies of all parameters into temporary variables and
454 * passing those variables into the function. It even did so for samplers
455 * and images which violates the SPIR-V spec. Unfortunately, two games
456 * (Talos Principle and Doom) shipped with this old version of GLSLang and
457 * also happen to pass samplers into functions. Talos Principle received
458 * an update fairly shortly after release with an updated GLSLang. Doom,
459 * on the other hand, has never received an update so we need to work
460 * around this GLSLang issue in SPIR-V -> NIR. Hopefully, we can drop this
461 * hack at some point in the future.
462 */
463 struct vtn_pointer *copy_prop_sampler;
464 };
465
466 struct vtn_image_pointer {
467 struct vtn_pointer *image;
468 nir_ssa_def *coord;
469 nir_ssa_def *sample;
470 };
471
472 struct vtn_sampled_image {
473 struct vtn_type *type;
474 struct vtn_pointer *image; /* Image or array of images */
475 struct vtn_pointer *sampler; /* Sampler */
476 };
477
478 struct vtn_value {
479 enum vtn_value_type value_type;
480 const char *name;
481 struct vtn_decoration *decoration;
482 union {
483 void *ptr;
484 char *str;
485 struct vtn_type *type;
486 struct {
487 nir_constant *constant;
488 const struct glsl_type *const_type;
489 };
490 struct vtn_pointer *pointer;
491 struct vtn_image_pointer *image;
492 struct vtn_sampled_image *sampled_image;
493 struct vtn_function *func;
494 struct vtn_block *block;
495 struct vtn_ssa_value *ssa;
496 vtn_instruction_handler ext_handler;
497 };
498 };
499
500 #define VTN_DEC_DECORATION -1
501 #define VTN_DEC_EXECUTION_MODE -2
502 #define VTN_DEC_STRUCT_MEMBER0 0
503
504 struct vtn_decoration {
505 struct vtn_decoration *next;
506
507 /* Specifies how to apply this decoration. Negative values represent a
508 * decoration or execution mode. (See the VTN_DEC_ #defines above.)
509 * Non-negative values specify that it applies to a structure member.
510 */
511 int scope;
512
513 const uint32_t *literals;
514 struct vtn_value *group;
515
516 union {
517 SpvDecoration decoration;
518 SpvExecutionMode exec_mode;
519 };
520 };
521
522 struct vtn_builder {
523 nir_builder nb;
524
525 /* Used by vtn_fail to jump back to the beginning of SPIR-V compilation */
526 jmp_buf fail_jump;
527
528 const uint32_t *spirv;
529
530 nir_shader *shader;
531 const struct spirv_to_nir_options *options;
532 struct vtn_block *block;
533
534 /* Current offset, file, line, and column. Useful for debugging. Set
535 * automatically by vtn_foreach_instruction.
536 */
537 size_t spirv_offset;
538 char *file;
539 int line, col;
540
541 /*
542 * In SPIR-V, constants are global, whereas in NIR, the load_const
543 * instruction we use is per-function. So while we parse each function, we
544 * keep a hash table of constants we've resolved to nir_ssa_value's so
545 * far, and we lazily resolve them when we see them used in a function.
546 */
547 struct hash_table *const_table;
548
549 /*
550 * Map from phi instructions (pointer to the start of the instruction)
551 * to the variable corresponding to it.
552 */
553 struct hash_table *phi_table;
554
555 unsigned num_specializations;
556 struct nir_spirv_specialization *specializations;
557
558 unsigned value_id_bound;
559 struct vtn_value *values;
560
561 gl_shader_stage entry_point_stage;
562 const char *entry_point_name;
563 struct vtn_value *entry_point;
564 bool origin_upper_left;
565 bool pixel_center_integer;
566
567 struct vtn_function *func;
568 struct exec_list functions;
569
570 /* Current function parameter index */
571 unsigned func_param_idx;
572
573 bool has_loop_continue;
574 };
575
576 nir_ssa_def *
577 vtn_pointer_to_ssa(struct vtn_builder *b, struct vtn_pointer *ptr);
578 struct vtn_pointer *
579 vtn_pointer_from_ssa(struct vtn_builder *b, nir_ssa_def *ssa,
580 struct vtn_type *ptr_type);
581
582 static inline struct vtn_value *
583 vtn_push_value(struct vtn_builder *b, uint32_t value_id,
584 enum vtn_value_type value_type)
585 {
586 assert(value_id < b->value_id_bound);
587 assert(b->values[value_id].value_type == vtn_value_type_invalid);
588
589 b->values[value_id].value_type = value_type;
590
591 return &b->values[value_id];
592 }
593
594 static inline struct vtn_value *
595 vtn_push_ssa(struct vtn_builder *b, uint32_t value_id,
596 struct vtn_type *type, struct vtn_ssa_value *ssa)
597 {
598 struct vtn_value *val;
599 if (type->base_type == vtn_base_type_pointer) {
600 val = vtn_push_value(b, value_id, vtn_value_type_pointer);
601 val->pointer = vtn_pointer_from_ssa(b, ssa->def, type);
602 } else {
603 val = vtn_push_value(b, value_id, vtn_value_type_ssa);
604 val->ssa = ssa;
605 }
606 return val;
607 }
608
609 static inline struct vtn_value *
610 vtn_untyped_value(struct vtn_builder *b, uint32_t value_id)
611 {
612 assert(value_id < b->value_id_bound);
613 return &b->values[value_id];
614 }
615
616 static inline struct vtn_value *
617 vtn_value(struct vtn_builder *b, uint32_t value_id,
618 enum vtn_value_type value_type)
619 {
620 struct vtn_value *val = vtn_untyped_value(b, value_id);
621 assert(val->value_type == value_type);
622 return val;
623 }
624
625 struct vtn_ssa_value *vtn_ssa_value(struct vtn_builder *b, uint32_t value_id);
626
627 struct vtn_ssa_value *vtn_create_ssa_value(struct vtn_builder *b,
628 const struct glsl_type *type);
629
630 struct vtn_ssa_value *vtn_ssa_transpose(struct vtn_builder *b,
631 struct vtn_ssa_value *src);
632
633 nir_ssa_def *vtn_vector_extract(struct vtn_builder *b, nir_ssa_def *src,
634 unsigned index);
635 nir_ssa_def *vtn_vector_extract_dynamic(struct vtn_builder *b, nir_ssa_def *src,
636 nir_ssa_def *index);
637 nir_ssa_def *vtn_vector_insert(struct vtn_builder *b, nir_ssa_def *src,
638 nir_ssa_def *insert, unsigned index);
639 nir_ssa_def *vtn_vector_insert_dynamic(struct vtn_builder *b, nir_ssa_def *src,
640 nir_ssa_def *insert, nir_ssa_def *index);
641
642 nir_deref_var *vtn_nir_deref(struct vtn_builder *b, uint32_t id);
643
644 struct vtn_pointer *vtn_pointer_for_variable(struct vtn_builder *b,
645 struct vtn_variable *var,
646 struct vtn_type *ptr_type);
647
648 nir_deref_var *vtn_pointer_to_deref(struct vtn_builder *b,
649 struct vtn_pointer *ptr);
650 nir_ssa_def *
651 vtn_pointer_to_offset(struct vtn_builder *b, struct vtn_pointer *ptr,
652 nir_ssa_def **index_out, unsigned *end_idx_out);
653
654 struct vtn_ssa_value *vtn_local_load(struct vtn_builder *b, nir_deref_var *src);
655
656 void vtn_local_store(struct vtn_builder *b, struct vtn_ssa_value *src,
657 nir_deref_var *dest);
658
659 struct vtn_ssa_value *
660 vtn_variable_load(struct vtn_builder *b, struct vtn_pointer *src);
661
662 void vtn_variable_store(struct vtn_builder *b, struct vtn_ssa_value *src,
663 struct vtn_pointer *dest);
664
665 void vtn_handle_variables(struct vtn_builder *b, SpvOp opcode,
666 const uint32_t *w, unsigned count);
667
668
669 typedef void (*vtn_decoration_foreach_cb)(struct vtn_builder *,
670 struct vtn_value *,
671 int member,
672 const struct vtn_decoration *,
673 void *);
674
675 void vtn_foreach_decoration(struct vtn_builder *b, struct vtn_value *value,
676 vtn_decoration_foreach_cb cb, void *data);
677
678 typedef void (*vtn_execution_mode_foreach_cb)(struct vtn_builder *,
679 struct vtn_value *,
680 const struct vtn_decoration *,
681 void *);
682
683 void vtn_foreach_execution_mode(struct vtn_builder *b, struct vtn_value *value,
684 vtn_execution_mode_foreach_cb cb, void *data);
685
686 nir_op vtn_nir_alu_op_for_spirv_opcode(struct vtn_builder *b,
687 SpvOp opcode, bool *swap,
688 nir_alu_type src, nir_alu_type dst);
689
690 void vtn_handle_alu(struct vtn_builder *b, SpvOp opcode,
691 const uint32_t *w, unsigned count);
692
693 bool vtn_handle_glsl450_instruction(struct vtn_builder *b, uint32_t ext_opcode,
694 const uint32_t *words, unsigned count);
695
696 static inline uint64_t
697 vtn_u64_literal(const uint32_t *w)
698 {
699 return (uint64_t)w[1] << 32 | w[0];
700 }
701
702 #endif /* _VTN_PRIVATE_H_ */