OSDN Git Service

0c02564aa297e89034d00e76e80bbeaf49a2b265
[android-x86/external-mesa.git] / src / intel / vulkan / anv_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
24 #pragma once
25
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <stdbool.h>
29 #include <pthread.h>
30 #include <assert.h>
31 #include <stdint.h>
32 #include <i915_drm.h>
33
34 #ifdef HAVE_VALGRIND
35 #include <valgrind.h>
36 #include <memcheck.h>
37 #define VG(x) x
38 #define __gen_validate_value(x) VALGRIND_CHECK_MEM_IS_DEFINED(&(x), sizeof(x))
39 #else
40 #define VG(x)
41 #endif
42
43 #include "brw_device_info.h"
44 #include "brw_compiler.h"
45 #include "util/macros.h"
46 #include "util/list.h"
47
48 /* Pre-declarations needed for WSI entrypoints */
49 struct wl_surface;
50 struct wl_display;
51 typedef struct xcb_connection_t xcb_connection_t;
52 typedef uint32_t xcb_visualid_t;
53 typedef uint32_t xcb_window_t;
54
55 struct anv_l3_config;
56
57 #include <vulkan/vulkan.h>
58 #include <vulkan/vulkan_intel.h>
59 #include <vulkan/vk_icd.h>
60
61 #include "anv_entrypoints.h"
62 #include "brw_context.h"
63 #include "isl/isl.h"
64
65 #ifdef __cplusplus
66 extern "C" {
67 #endif
68
69 #define MAX_VBS         32
70 #define MAX_SETS         8
71 #define MAX_RTS          8
72 #define MAX_VIEWPORTS   16
73 #define MAX_SCISSORS    16
74 #define MAX_PUSH_CONSTANTS_SIZE 128
75 #define MAX_DYNAMIC_BUFFERS 16
76 #define MAX_IMAGES 8
77 #define MAX_SAMPLES_LOG2 4 /* SKL supports 16 samples */
78
79 #define anv_noreturn __attribute__((__noreturn__))
80 #define anv_printflike(a, b) __attribute__((__format__(__printf__, a, b)))
81
82 #define MIN(a, b) ((a) < (b) ? (a) : (b))
83 #define MAX(a, b) ((a) > (b) ? (a) : (b))
84
85 static inline uint32_t
86 align_down_npot_u32(uint32_t v, uint32_t a)
87 {
88    return v - (v % a);
89 }
90
91 static inline uint32_t
92 align_u32(uint32_t v, uint32_t a)
93 {
94    assert(a != 0 && a == (a & -a));
95    return (v + a - 1) & ~(a - 1);
96 }
97
98 static inline uint64_t
99 align_u64(uint64_t v, uint64_t a)
100 {
101    assert(a != 0 && a == (a & -a));
102    return (v + a - 1) & ~(a - 1);
103 }
104
105 static inline int32_t
106 align_i32(int32_t v, int32_t a)
107 {
108    assert(a != 0 && a == (a & -a));
109    return (v + a - 1) & ~(a - 1);
110 }
111
112 /** Alignment must be a power of 2. */
113 static inline bool
114 anv_is_aligned(uintmax_t n, uintmax_t a)
115 {
116    assert(a == (a & -a));
117    return (n & (a - 1)) == 0;
118 }
119
120 static inline uint32_t
121 anv_minify(uint32_t n, uint32_t levels)
122 {
123    if (unlikely(n == 0))
124       return 0;
125    else
126       return MAX(n >> levels, 1);
127 }
128
129 static inline float
130 anv_clamp_f(float f, float min, float max)
131 {
132    assert(min < max);
133
134    if (f > max)
135       return max;
136    else if (f < min)
137       return min;
138    else
139       return f;
140 }
141
142 static inline bool
143 anv_clear_mask(uint32_t *inout_mask, uint32_t clear_mask)
144 {
145    if (*inout_mask & clear_mask) {
146       *inout_mask &= ~clear_mask;
147       return true;
148    } else {
149       return false;
150    }
151 }
152
153 #define for_each_bit(b, dword)                          \
154    for (uint32_t __dword = (dword);                     \
155         (b) = __builtin_ffs(__dword) - 1, __dword;      \
156         __dword &= ~(1 << (b)))
157
158 #define typed_memcpy(dest, src, count) ({ \
159    static_assert(sizeof(*src) == sizeof(*dest), ""); \
160    memcpy((dest), (src), (count) * sizeof(*(src))); \
161 })
162
163 #define zero(x) (memset(&(x), 0, sizeof(x)))
164
165 /* Define no kernel as 1, since that's an illegal offset for a kernel */
166 #define NO_KERNEL 1
167
168 struct anv_common {
169     VkStructureType                             sType;
170     const void*                                 pNext;
171 };
172
173 /* Whenever we generate an error, pass it through this function. Useful for
174  * debugging, where we can break on it. Only call at error site, not when
175  * propagating errors. Might be useful to plug in a stack trace here.
176  */
177
178 VkResult __vk_errorf(VkResult error, const char *file, int line, const char *format, ...);
179
180 #ifdef DEBUG
181 #define vk_error(error) __vk_errorf(error, __FILE__, __LINE__, NULL);
182 #define vk_errorf(error, format, ...) __vk_errorf(error, __FILE__, __LINE__, format, ## __VA_ARGS__);
183 #else
184 #define vk_error(error) error
185 #define vk_errorf(error, format, ...) error
186 #endif
187
188 void __anv_finishme(const char *file, int line, const char *format, ...)
189    anv_printflike(3, 4);
190 void anv_loge(const char *format, ...) anv_printflike(1, 2);
191 void anv_loge_v(const char *format, va_list va);
192
193 /**
194  * Print a FINISHME message, including its source location.
195  */
196 #define anv_finishme(format, ...) \
197    __anv_finishme(__FILE__, __LINE__, format, ##__VA_ARGS__);
198
199 /* A non-fatal assert.  Useful for debugging. */
200 #ifdef DEBUG
201 #define anv_assert(x) ({ \
202    if (unlikely(!(x))) \
203       fprintf(stderr, "%s:%d ASSERT: %s\n", __FILE__, __LINE__, #x); \
204 })
205 #else
206 #define anv_assert(x)
207 #endif
208
209 /**
210  * If a block of code is annotated with anv_validate, then the block runs only
211  * in debug builds.
212  */
213 #ifdef DEBUG
214 #define anv_validate if (1)
215 #else
216 #define anv_validate if (0)
217 #endif
218
219 void anv_abortf(const char *format, ...) anv_noreturn anv_printflike(1, 2);
220 void anv_abortfv(const char *format, va_list va) anv_noreturn;
221
222 #define stub_return(v) \
223    do { \
224       anv_finishme("stub %s", __func__); \
225       return (v); \
226    } while (0)
227
228 #define stub() \
229    do { \
230       anv_finishme("stub %s", __func__); \
231       return; \
232    } while (0)
233
234 /**
235  * A dynamically growable, circular buffer.  Elements are added at head and
236  * removed from tail. head and tail are free-running uint32_t indices and we
237  * only compute the modulo with size when accessing the array.  This way,
238  * number of bytes in the queue is always head - tail, even in case of
239  * wraparound.
240  */
241
242 struct anv_vector {
243    uint32_t head;
244    uint32_t tail;
245    uint32_t element_size;
246    uint32_t size;
247    void *data;
248 };
249
250 int anv_vector_init(struct anv_vector *queue, uint32_t element_size, uint32_t size);
251 void *anv_vector_add(struct anv_vector *queue);
252 void *anv_vector_remove(struct anv_vector *queue);
253
254 static inline int
255 anv_vector_length(struct anv_vector *queue)
256 {
257    return (queue->head - queue->tail) / queue->element_size;
258 }
259
260 static inline void *
261 anv_vector_head(struct anv_vector *vector)
262 {
263    assert(vector->tail < vector->head);
264    return (void *)((char *)vector->data +
265                    ((vector->head - vector->element_size) &
266                     (vector->size - 1)));
267 }
268
269 static inline void *
270 anv_vector_tail(struct anv_vector *vector)
271 {
272    return (void *)((char *)vector->data + (vector->tail & (vector->size - 1)));
273 }
274
275 static inline void
276 anv_vector_finish(struct anv_vector *queue)
277 {
278    free(queue->data);
279 }
280
281 #define anv_vector_foreach(elem, queue)                                  \
282    static_assert(__builtin_types_compatible_p(__typeof__(queue), struct anv_vector *), ""); \
283    for (uint32_t __anv_vector_offset = (queue)->tail;                                \
284         elem = (queue)->data + (__anv_vector_offset & ((queue)->size - 1)), __anv_vector_offset < (queue)->head; \
285         __anv_vector_offset += (queue)->element_size)
286
287 struct anv_bo {
288    uint32_t gem_handle;
289
290    /* Index into the current validation list.  This is used by the
291     * validation list building alrogithm to track which buffers are already
292     * in the validation list so that we can ensure uniqueness.
293     */
294    uint32_t index;
295
296    /* Last known offset.  This value is provided by the kernel when we
297     * execbuf and is used as the presumed offset for the next bunch of
298     * relocations.
299     */
300    uint64_t offset;
301
302    uint64_t size;
303    void *map;
304
305    /* We need to set the WRITE flag on winsys bos so GEM will know we're
306     * writing to them and synchronize uses on other rings (eg if the display
307     * server uses the blitter ring).
308     */
309    bool is_winsys_bo;
310 };
311
312 /* Represents a lock-free linked list of "free" things.  This is used by
313  * both the block pool and the state pools.  Unfortunately, in order to
314  * solve the ABA problem, we can't use a single uint32_t head.
315  */
316 union anv_free_list {
317    struct {
318       int32_t offset;
319
320       /* A simple count that is incremented every time the head changes. */
321       uint32_t count;
322    };
323    uint64_t u64;
324 };
325
326 #define ANV_FREE_LIST_EMPTY ((union anv_free_list) { { 1, 0 } })
327
328 struct anv_block_state {
329    union {
330       struct {
331          uint32_t next;
332          uint32_t end;
333       };
334       uint64_t u64;
335    };
336 };
337
338 struct anv_block_pool {
339    struct anv_device *device;
340
341    struct anv_bo bo;
342
343    /* The offset from the start of the bo to the "center" of the block
344     * pool.  Pointers to allocated blocks are given by
345     * bo.map + center_bo_offset + offsets.
346     */
347    uint32_t center_bo_offset;
348
349    /* Current memory map of the block pool.  This pointer may or may not
350     * point to the actual beginning of the block pool memory.  If
351     * anv_block_pool_alloc_back has ever been called, then this pointer
352     * will point to the "center" position of the buffer and all offsets
353     * (negative or positive) given out by the block pool alloc functions
354     * will be valid relative to this pointer.
355     *
356     * In particular, map == bo.map + center_offset
357     */
358    void *map;
359    int fd;
360
361    /**
362     * Array of mmaps and gem handles owned by the block pool, reclaimed when
363     * the block pool is destroyed.
364     */
365    struct anv_vector mmap_cleanups;
366
367    uint32_t block_size;
368
369    union anv_free_list free_list;
370    struct anv_block_state state;
371
372    union anv_free_list back_free_list;
373    struct anv_block_state back_state;
374 };
375
376 /* Block pools are backed by a fixed-size 2GB memfd */
377 #define BLOCK_POOL_MEMFD_SIZE (1ull << 32)
378
379 /* The center of the block pool is also the middle of the memfd.  This may
380  * change in the future if we decide differently for some reason.
381  */
382 #define BLOCK_POOL_MEMFD_CENTER (BLOCK_POOL_MEMFD_SIZE / 2)
383
384 static inline uint32_t
385 anv_block_pool_size(struct anv_block_pool *pool)
386 {
387    return pool->state.end + pool->back_state.end;
388 }
389
390 struct anv_state {
391    int32_t offset;
392    uint32_t alloc_size;
393    void *map;
394 };
395
396 struct anv_fixed_size_state_pool {
397    size_t state_size;
398    union anv_free_list free_list;
399    struct anv_block_state block;
400 };
401
402 #define ANV_MIN_STATE_SIZE_LOG2 6
403 #define ANV_MAX_STATE_SIZE_LOG2 10
404
405 #define ANV_STATE_BUCKETS (ANV_MAX_STATE_SIZE_LOG2 - ANV_MIN_STATE_SIZE_LOG2 + 1)
406
407 struct anv_state_pool {
408    struct anv_block_pool *block_pool;
409    struct anv_fixed_size_state_pool buckets[ANV_STATE_BUCKETS];
410 };
411
412 struct anv_state_stream_block;
413
414 struct anv_state_stream {
415    struct anv_block_pool *block_pool;
416
417    /* The current working block */
418    struct anv_state_stream_block *block;
419
420    /* Offset at which the current block starts */
421    uint32_t start;
422    /* Offset at which to allocate the next state */
423    uint32_t next;
424    /* Offset at which the current block ends */
425    uint32_t end;
426 };
427
428 #define CACHELINE_SIZE 64
429 #define CACHELINE_MASK 63
430
431 static inline void
432 anv_clflush_range(void *start, size_t size)
433 {
434    void *p = (void *) (((uintptr_t) start) & ~CACHELINE_MASK);
435    void *end = start + size;
436
437    __builtin_ia32_mfence();
438    while (p < end) {
439       __builtin_ia32_clflush(p);
440       p += CACHELINE_SIZE;
441    }
442 }
443
444 static void inline
445 anv_state_clflush(struct anv_state state)
446 {
447    anv_clflush_range(state.map, state.alloc_size);
448 }
449
450 void anv_block_pool_init(struct anv_block_pool *pool,
451                          struct anv_device *device, uint32_t block_size);
452 void anv_block_pool_finish(struct anv_block_pool *pool);
453 int32_t anv_block_pool_alloc(struct anv_block_pool *pool);
454 int32_t anv_block_pool_alloc_back(struct anv_block_pool *pool);
455 void anv_block_pool_free(struct anv_block_pool *pool, int32_t offset);
456 void anv_state_pool_init(struct anv_state_pool *pool,
457                          struct anv_block_pool *block_pool);
458 void anv_state_pool_finish(struct anv_state_pool *pool);
459 struct anv_state anv_state_pool_alloc(struct anv_state_pool *pool,
460                                       size_t state_size, size_t alignment);
461 void anv_state_pool_free(struct anv_state_pool *pool, struct anv_state state);
462 void anv_state_stream_init(struct anv_state_stream *stream,
463                            struct anv_block_pool *block_pool);
464 void anv_state_stream_finish(struct anv_state_stream *stream);
465 struct anv_state anv_state_stream_alloc(struct anv_state_stream *stream,
466                                         uint32_t size, uint32_t alignment);
467
468 /**
469  * Implements a pool of re-usable BOs.  The interface is identical to that
470  * of block_pool except that each block is its own BO.
471  */
472 struct anv_bo_pool {
473    struct anv_device *device;
474
475    void *free_list[16];
476 };
477
478 void anv_bo_pool_init(struct anv_bo_pool *pool, struct anv_device *device);
479 void anv_bo_pool_finish(struct anv_bo_pool *pool);
480 VkResult anv_bo_pool_alloc(struct anv_bo_pool *pool, struct anv_bo *bo,
481                            uint32_t size);
482 void anv_bo_pool_free(struct anv_bo_pool *pool, const struct anv_bo *bo);
483
484 struct anv_scratch_pool {
485    /* Indexed by Per-Thread Scratch Space number (the hardware value) and stage */
486    struct anv_bo bos[16][MESA_SHADER_STAGES];
487 };
488
489 void anv_scratch_pool_init(struct anv_device *device,
490                            struct anv_scratch_pool *pool);
491 void anv_scratch_pool_finish(struct anv_device *device,
492                              struct anv_scratch_pool *pool);
493 struct anv_bo *anv_scratch_pool_alloc(struct anv_device *device,
494                                       struct anv_scratch_pool *pool,
495                                       gl_shader_stage stage,
496                                       unsigned per_thread_scratch);
497
498 void *anv_resolve_entrypoint(uint32_t index);
499
500 extern struct anv_dispatch_table dtable;
501
502 #define ANV_CALL(func) ({ \
503    if (dtable.func == NULL) { \
504       size_t idx = offsetof(struct anv_dispatch_table, func) / sizeof(void *); \
505       dtable.entrypoints[idx] = anv_resolve_entrypoint(idx); \
506    } \
507    dtable.func; \
508 })
509
510 static inline void *
511 anv_alloc(const VkAllocationCallbacks *alloc,
512           size_t size, size_t align,
513           VkSystemAllocationScope scope)
514 {
515    return alloc->pfnAllocation(alloc->pUserData, size, align, scope);
516 }
517
518 static inline void *
519 anv_realloc(const VkAllocationCallbacks *alloc,
520             void *ptr, size_t size, size_t align,
521             VkSystemAllocationScope scope)
522 {
523    return alloc->pfnReallocation(alloc->pUserData, ptr, size, align, scope);
524 }
525
526 static inline void
527 anv_free(const VkAllocationCallbacks *alloc, void *data)
528 {
529    alloc->pfnFree(alloc->pUserData, data);
530 }
531
532 static inline void *
533 anv_alloc2(const VkAllocationCallbacks *parent_alloc,
534            const VkAllocationCallbacks *alloc,
535            size_t size, size_t align,
536            VkSystemAllocationScope scope)
537 {
538    if (alloc)
539       return anv_alloc(alloc, size, align, scope);
540    else
541       return anv_alloc(parent_alloc, size, align, scope);
542 }
543
544 static inline void
545 anv_free2(const VkAllocationCallbacks *parent_alloc,
546           const VkAllocationCallbacks *alloc,
547           void *data)
548 {
549    if (alloc)
550       anv_free(alloc, data);
551    else
552       anv_free(parent_alloc, data);
553 }
554
555 struct anv_wsi_interaface;
556
557 #define VK_ICD_WSI_PLATFORM_MAX 5
558
559 struct anv_physical_device {
560     VK_LOADER_DATA                              _loader_data;
561
562     struct anv_instance *                       instance;
563     uint32_t                                    chipset_id;
564     char                                        path[20];
565     const char *                                name;
566     const struct brw_device_info *              info;
567     uint64_t                                    aperture_size;
568     struct brw_compiler *                       compiler;
569     struct isl_device                           isl_dev;
570     int                                         cmd_parser_version;
571
572     struct anv_wsi_interface *                  wsi[VK_ICD_WSI_PLATFORM_MAX];
573 };
574
575 struct anv_instance {
576     VK_LOADER_DATA                              _loader_data;
577
578     VkAllocationCallbacks                       alloc;
579
580     uint32_t                                    apiVersion;
581     int                                         physicalDeviceCount;
582     struct anv_physical_device                  physicalDevice;
583 };
584
585 VkResult anv_init_wsi(struct anv_physical_device *physical_device);
586 void anv_finish_wsi(struct anv_physical_device *physical_device);
587
588 struct anv_meta_state {
589    VkAllocationCallbacks alloc;
590
591    /**
592     * Use array element `i` for images with `2^i` samples.
593     */
594    struct {
595       /**
596        * Pipeline N is used to clear color attachment N of the current
597        * subpass.
598        *
599        * HACK: We use one pipeline per color attachment to work around the
600        * compiler's inability to dynamically set the render target index of
601        * the render target write message.
602        */
603       struct anv_pipeline *color_pipelines[MAX_RTS];
604
605       struct anv_pipeline *depth_only_pipeline;
606       struct anv_pipeline *stencil_only_pipeline;
607       struct anv_pipeline *depthstencil_pipeline;
608    } clear[1 + MAX_SAMPLES_LOG2];
609
610    struct {
611       VkRenderPass render_pass;
612
613       /** Pipeline that blits from a 1D image. */
614       VkPipeline pipeline_1d_src;
615
616       /** Pipeline that blits from a 2D image. */
617       VkPipeline pipeline_2d_src;
618
619       /** Pipeline that blits from a 3D image. */
620       VkPipeline pipeline_3d_src;
621
622       VkPipelineLayout                          pipeline_layout;
623       VkDescriptorSetLayout                     ds_layout;
624    } blit;
625
626    struct {
627       VkRenderPass render_pass;
628
629       VkPipelineLayout                          img_p_layout;
630       VkDescriptorSetLayout                     img_ds_layout;
631       VkPipelineLayout                          buf_p_layout;
632       VkDescriptorSetLayout                     buf_ds_layout;
633
634       /* Pipelines indexed by source and destination type.  See the
635        * blit2d_src_type and blit2d_dst_type enums in anv_meta_blit2d.c to
636        * see what these mean.
637        */
638       VkPipeline pipelines[2][3];
639    } blit2d;
640
641    struct {
642       /** Pipeline [i] resolves an image with 2^(i+1) samples.  */
643       VkPipeline                                pipelines[MAX_SAMPLES_LOG2];
644
645       VkRenderPass                              pass;
646       VkPipelineLayout                          pipeline_layout;
647       VkDescriptorSetLayout                     ds_layout;
648    } resolve;
649 };
650
651 struct anv_queue {
652     VK_LOADER_DATA                              _loader_data;
653
654     struct anv_device *                         device;
655
656     struct anv_state_pool *                     pool;
657 };
658
659 struct anv_pipeline_cache {
660    struct anv_device *                          device;
661    struct anv_state_stream                      program_stream;
662    pthread_mutex_t                              mutex;
663
664    uint32_t                                     total_size;
665    uint32_t                                     table_size;
666    uint32_t                                     kernel_count;
667    uint32_t *                                   hash_table;
668 };
669
670 struct anv_pipeline_bind_map;
671
672 void anv_pipeline_cache_init(struct anv_pipeline_cache *cache,
673                              struct anv_device *device);
674 void anv_pipeline_cache_finish(struct anv_pipeline_cache *cache);
675 uint32_t anv_pipeline_cache_search(struct anv_pipeline_cache *cache,
676                                    const unsigned char *sha1,
677                                    const struct brw_stage_prog_data **prog_data,
678                                    struct anv_pipeline_bind_map *map);
679 uint32_t anv_pipeline_cache_upload_kernel(struct anv_pipeline_cache *cache,
680                                           const unsigned char *sha1,
681                                           const void *kernel,
682                                           size_t kernel_size,
683                                           const struct brw_stage_prog_data **prog_data,
684                                           size_t prog_data_size,
685                                           struct anv_pipeline_bind_map *map);
686
687 struct anv_device {
688     VK_LOADER_DATA                              _loader_data;
689
690     VkAllocationCallbacks                       alloc;
691
692     struct anv_instance *                       instance;
693     uint32_t                                    chipset_id;
694     struct brw_device_info                      info;
695     struct isl_device                           isl_dev;
696     int                                         context_id;
697     int                                         fd;
698     bool                                        can_chain_batches;
699     bool                                        robust_buffer_access;
700
701     struct anv_bo_pool                          batch_bo_pool;
702
703     struct anv_block_pool                       dynamic_state_block_pool;
704     struct anv_state_pool                       dynamic_state_pool;
705
706     struct anv_block_pool                       instruction_block_pool;
707     struct anv_pipeline_cache                   default_pipeline_cache;
708
709     struct anv_block_pool                       surface_state_block_pool;
710     struct anv_state_pool                       surface_state_pool;
711
712     struct anv_bo                               workaround_bo;
713
714     struct anv_meta_state                       meta_state;
715
716     struct anv_state                            border_colors;
717
718     struct anv_queue                            queue;
719
720     struct anv_scratch_pool                     scratch_pool;
721
722     uint32_t                                    default_mocs;
723
724     pthread_mutex_t                             mutex;
725 };
726
727 void anv_device_get_cache_uuid(void *uuid);
728
729
730 void* anv_gem_mmap(struct anv_device *device,
731                    uint32_t gem_handle, uint64_t offset, uint64_t size, uint32_t flags);
732 void anv_gem_munmap(void *p, uint64_t size);
733 uint32_t anv_gem_create(struct anv_device *device, size_t size);
734 void anv_gem_close(struct anv_device *device, uint32_t gem_handle);
735 uint32_t anv_gem_userptr(struct anv_device *device, void *mem, size_t size);
736 int anv_gem_wait(struct anv_device *device, uint32_t gem_handle, int64_t *timeout_ns);
737 int anv_gem_execbuffer(struct anv_device *device,
738                        struct drm_i915_gem_execbuffer2 *execbuf);
739 int anv_gem_set_tiling(struct anv_device *device, uint32_t gem_handle,
740                        uint32_t stride, uint32_t tiling);
741 int anv_gem_create_context(struct anv_device *device);
742 int anv_gem_destroy_context(struct anv_device *device, int context);
743 int anv_gem_get_param(int fd, uint32_t param);
744 bool anv_gem_get_bit6_swizzle(int fd, uint32_t tiling);
745 int anv_gem_get_aperture(int fd, uint64_t *size);
746 int anv_gem_handle_to_fd(struct anv_device *device, uint32_t gem_handle);
747 uint32_t anv_gem_fd_to_handle(struct anv_device *device, int fd);
748 int anv_gem_set_caching(struct anv_device *device, uint32_t gem_handle, uint32_t caching);
749 int anv_gem_set_domain(struct anv_device *device, uint32_t gem_handle,
750                        uint32_t read_domains, uint32_t write_domain);
751
752 VkResult anv_bo_init_new(struct anv_bo *bo, struct anv_device *device, uint64_t size);
753
754 struct anv_reloc_list {
755    size_t                                       num_relocs;
756    size_t                                       array_length;
757    struct drm_i915_gem_relocation_entry *       relocs;
758    struct anv_bo **                             reloc_bos;
759 };
760
761 VkResult anv_reloc_list_init(struct anv_reloc_list *list,
762                              const VkAllocationCallbacks *alloc);
763 void anv_reloc_list_finish(struct anv_reloc_list *list,
764                            const VkAllocationCallbacks *alloc);
765
766 uint64_t anv_reloc_list_add(struct anv_reloc_list *list,
767                             const VkAllocationCallbacks *alloc,
768                             uint32_t offset, struct anv_bo *target_bo,
769                             uint32_t delta);
770
771 struct anv_batch_bo {
772    /* Link in the anv_cmd_buffer.owned_batch_bos list */
773    struct list_head                             link;
774
775    struct anv_bo                                bo;
776
777    /* Bytes actually consumed in this batch BO */
778    size_t                                       length;
779
780    /* Last seen surface state block pool bo offset */
781    uint32_t                                     last_ss_pool_bo_offset;
782
783    struct anv_reloc_list                        relocs;
784 };
785
786 struct anv_batch {
787    const VkAllocationCallbacks *                alloc;
788
789    void *                                       start;
790    void *                                       end;
791    void *                                       next;
792
793    struct anv_reloc_list *                      relocs;
794
795    /* This callback is called (with the associated user data) in the event
796     * that the batch runs out of space.
797     */
798    VkResult (*extend_cb)(struct anv_batch *, void *);
799    void *                                       user_data;
800 };
801
802 void *anv_batch_emit_dwords(struct anv_batch *batch, int num_dwords);
803 void anv_batch_emit_batch(struct anv_batch *batch, struct anv_batch *other);
804 uint64_t anv_batch_emit_reloc(struct anv_batch *batch,
805                               void *location, struct anv_bo *bo, uint32_t offset);
806 VkResult anv_device_submit_simple_batch(struct anv_device *device,
807                                         struct anv_batch *batch);
808
809 struct anv_address {
810    struct anv_bo *bo;
811    uint32_t offset;
812 };
813
814 #define __gen_address_type struct anv_address
815 #define __gen_user_data struct anv_batch
816
817 static inline uint64_t
818 __gen_combine_address(struct anv_batch *batch, void *location,
819                       const struct anv_address address, uint32_t delta)
820 {
821    if (address.bo == NULL) {
822       return address.offset + delta;
823    } else {
824       assert(batch->start <= location && location < batch->end);
825
826       return anv_batch_emit_reloc(batch, location, address.bo, address.offset + delta);
827    }
828 }
829
830 /* Wrapper macros needed to work around preprocessor argument issues.  In
831  * particular, arguments don't get pre-evaluated if they are concatenated.
832  * This means that, if you pass GENX(3DSTATE_PS) into the emit macro, the
833  * GENX macro won't get evaluated if the emit macro contains "cmd ## foo".
834  * We can work around this easily enough with these helpers.
835  */
836 #define __anv_cmd_length(cmd) cmd ## _length
837 #define __anv_cmd_length_bias(cmd) cmd ## _length_bias
838 #define __anv_cmd_header(cmd) cmd ## _header
839 #define __anv_cmd_pack(cmd) cmd ## _pack
840 #define __anv_reg_num(reg) reg ## _num
841
842 #define anv_pack_struct(dst, struc, ...) do {                              \
843       struct struc __template = {                                          \
844          __VA_ARGS__                                                       \
845       };                                                                   \
846       __anv_cmd_pack(struc)(NULL, dst, &__template);                       \
847       VG(VALGRIND_CHECK_MEM_IS_DEFINED(dst, __anv_cmd_length(struc) * 4)); \
848    } while (0)
849
850 #define anv_batch_emitn(batch, n, cmd, ...) ({          \
851       void *__dst = anv_batch_emit_dwords(batch, n);    \
852       struct cmd __template = {                         \
853          __anv_cmd_header(cmd),                         \
854         .DWordLength = n - __anv_cmd_length_bias(cmd),  \
855          __VA_ARGS__                                    \
856       };                                                \
857       __anv_cmd_pack(cmd)(batch, __dst, &__template);   \
858       __dst;                                            \
859    })
860
861 #define anv_batch_emit_merge(batch, dwords0, dwords1)                   \
862    do {                                                                 \
863       uint32_t *dw;                                                     \
864                                                                         \
865       static_assert(ARRAY_SIZE(dwords0) == ARRAY_SIZE(dwords1), "mismatch merge"); \
866       dw = anv_batch_emit_dwords((batch), ARRAY_SIZE(dwords0));         \
867       for (uint32_t i = 0; i < ARRAY_SIZE(dwords0); i++)                \
868          dw[i] = (dwords0)[i] | (dwords1)[i];                           \
869       VG(VALGRIND_CHECK_MEM_IS_DEFINED(dw, ARRAY_SIZE(dwords0) * 4));\
870    } while (0)
871
872 #define anv_batch_emit(batch, cmd, name)                            \
873    for (struct cmd name = { __anv_cmd_header(cmd) },                    \
874         *_dst = anv_batch_emit_dwords(batch, __anv_cmd_length(cmd));    \
875         __builtin_expect(_dst != NULL, 1);                              \
876         ({ __anv_cmd_pack(cmd)(batch, _dst, &name);                     \
877            VG(VALGRIND_CHECK_MEM_IS_DEFINED(_dst, __anv_cmd_length(cmd) * 4)); \
878            _dst = NULL;                                                 \
879          }))
880
881 #define anv_state_pool_emit(pool, cmd, align, ...) ({                   \
882       const uint32_t __size = __anv_cmd_length(cmd) * 4;                \
883       struct anv_state __state =                                        \
884          anv_state_pool_alloc((pool), __size, align);                   \
885       struct cmd __template = {                                         \
886          __VA_ARGS__                                                    \
887       };                                                                \
888       __anv_cmd_pack(cmd)(NULL, __state.map, &__template);              \
889       VG(VALGRIND_CHECK_MEM_IS_DEFINED(__state.map, __anv_cmd_length(cmd) * 4)); \
890       if (!(pool)->block_pool->device->info.has_llc)                    \
891          anv_state_clflush(__state);                                    \
892       __state;                                                          \
893    })
894
895 #define GEN7_MOCS (struct GEN7_MEMORY_OBJECT_CONTROL_STATE) {  \
896    .GraphicsDataTypeGFDT                        = 0,           \
897    .LLCCacheabilityControlLLCCC                 = 0,           \
898    .L3CacheabilityControlL3CC                   = 1,           \
899 }
900
901 #define GEN75_MOCS (struct GEN75_MEMORY_OBJECT_CONTROL_STATE) {  \
902    .LLCeLLCCacheabilityControlLLCCC             = 0,           \
903    .L3CacheabilityControlL3CC                   = 1,           \
904 }
905
906 #define GEN8_MOCS (struct GEN8_MEMORY_OBJECT_CONTROL_STATE) {  \
907       .MemoryTypeLLCeLLCCacheabilityControl = WB,              \
908       .TargetCache = L3DefertoPATforLLCeLLCselection,          \
909       .AgeforQUADLRU = 0                                       \
910    }
911
912 /* Skylake: MOCS is now an index into an array of 62 different caching
913  * configurations programmed by the kernel.
914  */
915
916 #define GEN9_MOCS (struct GEN9_MEMORY_OBJECT_CONTROL_STATE) {  \
917       /* TC=LLC/eLLC, LeCC=WB, LRUM=3, L3CC=WB */              \
918       .IndextoMOCSTables                           = 2         \
919    }
920
921 #define GEN9_MOCS_PTE {                                 \
922       /* TC=LLC/eLLC, LeCC=WB, LRUM=3, L3CC=WB */       \
923       .IndextoMOCSTables                           = 1  \
924    }
925
926 struct anv_device_memory {
927    struct anv_bo                                bo;
928    uint32_t                                     type_index;
929    VkDeviceSize                                 map_size;
930    void *                                       map;
931 };
932
933 /**
934  * Header for Vertex URB Entry (VUE)
935  */
936 struct anv_vue_header {
937    uint32_t Reserved;
938    uint32_t RTAIndex; /* RenderTargetArrayIndex */
939    uint32_t ViewportIndex;
940    float PointWidth;
941 };
942
943 struct anv_descriptor_set_binding_layout {
944 #ifndef NDEBUG
945    /* The type of the descriptors in this binding */
946    VkDescriptorType type;
947 #endif
948
949    /* Number of array elements in this binding */
950    uint16_t array_size;
951
952    /* Index into the flattend descriptor set */
953    uint16_t descriptor_index;
954
955    /* Index into the dynamic state array for a dynamic buffer */
956    int16_t dynamic_offset_index;
957
958    /* Index into the descriptor set buffer views */
959    int16_t buffer_index;
960
961    struct {
962       /* Index into the binding table for the associated surface */
963       int16_t surface_index;
964
965       /* Index into the sampler table for the associated sampler */
966       int16_t sampler_index;
967
968       /* Index into the image table for the associated image */
969       int16_t image_index;
970    } stage[MESA_SHADER_STAGES];
971
972    /* Immutable samplers (or NULL if no immutable samplers) */
973    struct anv_sampler **immutable_samplers;
974 };
975
976 struct anv_descriptor_set_layout {
977    /* Number of bindings in this descriptor set */
978    uint16_t binding_count;
979
980    /* Total size of the descriptor set with room for all array entries */
981    uint16_t size;
982
983    /* Shader stages affected by this descriptor set */
984    uint16_t shader_stages;
985
986    /* Number of buffers in this descriptor set */
987    uint16_t buffer_count;
988
989    /* Number of dynamic offsets used by this descriptor set */
990    uint16_t dynamic_offset_count;
991
992    /* Bindings in this descriptor set */
993    struct anv_descriptor_set_binding_layout binding[0];
994 };
995
996 struct anv_descriptor {
997    VkDescriptorType type;
998
999    union {
1000       struct {
1001          struct anv_image_view *image_view;
1002          struct anv_sampler *sampler;
1003       };
1004
1005       struct anv_buffer_view *buffer_view;
1006    };
1007 };
1008
1009 struct anv_descriptor_set {
1010    const struct anv_descriptor_set_layout *layout;
1011    uint32_t size;
1012    uint32_t buffer_count;
1013    struct anv_buffer_view *buffer_views;
1014    struct anv_descriptor descriptors[0];
1015 };
1016
1017 struct anv_descriptor_pool {
1018    uint32_t size;
1019    uint32_t next;
1020    uint32_t free_list;
1021
1022    struct anv_state_stream surface_state_stream;
1023    void *surface_state_free_list;
1024
1025    char data[0];
1026 };
1027
1028 VkResult
1029 anv_descriptor_set_create(struct anv_device *device,
1030                           struct anv_descriptor_pool *pool,
1031                           const struct anv_descriptor_set_layout *layout,
1032                           struct anv_descriptor_set **out_set);
1033
1034 void
1035 anv_descriptor_set_destroy(struct anv_device *device,
1036                            struct anv_descriptor_pool *pool,
1037                            struct anv_descriptor_set *set);
1038
1039 #define ANV_DESCRIPTOR_SET_COLOR_ATTACHMENTS UINT8_MAX
1040
1041 struct anv_pipeline_binding {
1042    /* The descriptor set this surface corresponds to.  The special value of
1043     * ANV_DESCRIPTOR_SET_COLOR_ATTACHMENTS indicates that the offset refers
1044     * to a color attachment and not a regular descriptor.
1045     */
1046    uint8_t set;
1047
1048    /* Binding in the descriptor set */
1049    uint8_t binding;
1050
1051    /* Index in the binding */
1052    uint8_t index;
1053 };
1054
1055 struct anv_pipeline_layout {
1056    struct {
1057       struct anv_descriptor_set_layout *layout;
1058       uint32_t dynamic_offset_start;
1059    } set[MAX_SETS];
1060
1061    uint32_t num_sets;
1062
1063    struct {
1064       bool has_dynamic_offsets;
1065    } stage[MESA_SHADER_STAGES];
1066
1067    unsigned char sha1[20];
1068 };
1069
1070 struct anv_buffer {
1071    struct anv_device *                          device;
1072    VkDeviceSize                                 size;
1073
1074    VkBufferUsageFlags                           usage;
1075
1076    /* Set when bound */
1077    struct anv_bo *                              bo;
1078    VkDeviceSize                                 offset;
1079 };
1080
1081 enum anv_cmd_dirty_bits {
1082    ANV_CMD_DIRTY_DYNAMIC_VIEWPORT                  = 1 << 0, /* VK_DYNAMIC_STATE_VIEWPORT */
1083    ANV_CMD_DIRTY_DYNAMIC_SCISSOR                   = 1 << 1, /* VK_DYNAMIC_STATE_SCISSOR */
1084    ANV_CMD_DIRTY_DYNAMIC_LINE_WIDTH                = 1 << 2, /* VK_DYNAMIC_STATE_LINE_WIDTH */
1085    ANV_CMD_DIRTY_DYNAMIC_DEPTH_BIAS                = 1 << 3, /* VK_DYNAMIC_STATE_DEPTH_BIAS */
1086    ANV_CMD_DIRTY_DYNAMIC_BLEND_CONSTANTS           = 1 << 4, /* VK_DYNAMIC_STATE_BLEND_CONSTANTS */
1087    ANV_CMD_DIRTY_DYNAMIC_DEPTH_BOUNDS              = 1 << 5, /* VK_DYNAMIC_STATE_DEPTH_BOUNDS */
1088    ANV_CMD_DIRTY_DYNAMIC_STENCIL_COMPARE_MASK      = 1 << 6, /* VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK */
1089    ANV_CMD_DIRTY_DYNAMIC_STENCIL_WRITE_MASK        = 1 << 7, /* VK_DYNAMIC_STATE_STENCIL_WRITE_MASK */
1090    ANV_CMD_DIRTY_DYNAMIC_STENCIL_REFERENCE         = 1 << 8, /* VK_DYNAMIC_STATE_STENCIL_REFERENCE */
1091    ANV_CMD_DIRTY_DYNAMIC_ALL                       = (1 << 9) - 1,
1092    ANV_CMD_DIRTY_PIPELINE                          = 1 << 9,
1093    ANV_CMD_DIRTY_INDEX_BUFFER                      = 1 << 10,
1094    ANV_CMD_DIRTY_RENDER_TARGETS                    = 1 << 11,
1095 };
1096 typedef uint32_t anv_cmd_dirty_mask_t;
1097
1098 enum anv_pipe_bits {
1099    ANV_PIPE_DEPTH_CACHE_FLUSH_BIT            = (1 << 0),
1100    ANV_PIPE_STALL_AT_SCOREBOARD_BIT          = (1 << 1),
1101    ANV_PIPE_STATE_CACHE_INVALIDATE_BIT       = (1 << 2),
1102    ANV_PIPE_CONSTANT_CACHE_INVALIDATE_BIT    = (1 << 3),
1103    ANV_PIPE_VF_CACHE_INVALIDATE_BIT          = (1 << 4),
1104    ANV_PIPE_DATA_CACHE_FLUSH_BIT             = (1 << 5),
1105    ANV_PIPE_TEXTURE_CACHE_INVALIDATE_BIT     = (1 << 10),
1106    ANV_PIPE_INSTRUCTION_CACHE_INVALIDATE_BIT = (1 << 11),
1107    ANV_PIPE_RENDER_TARGET_CACHE_FLUSH_BIT    = (1 << 12),
1108    ANV_PIPE_DEPTH_STALL_BIT                  = (1 << 13),
1109    ANV_PIPE_CS_STALL_BIT                     = (1 << 20),
1110
1111    /* This bit does not exist directly in PIPE_CONTROL.  Instead it means that
1112     * a flush has happened but not a CS stall.  The next time we do any sort
1113     * of invalidation we need to insert a CS stall at that time.  Otherwise,
1114     * we would have to CS stall on every flush which could be bad.
1115     */
1116    ANV_PIPE_NEEDS_CS_STALL_BIT               = (1 << 21),
1117 };
1118
1119 #define ANV_PIPE_FLUSH_BITS ( \
1120    ANV_PIPE_DEPTH_CACHE_FLUSH_BIT | \
1121    ANV_PIPE_DATA_CACHE_FLUSH_BIT | \
1122    ANV_PIPE_RENDER_TARGET_CACHE_FLUSH_BIT)
1123
1124 #define ANV_PIPE_STALL_BITS ( \
1125    ANV_PIPE_STALL_AT_SCOREBOARD_BIT | \
1126    ANV_PIPE_DEPTH_STALL_BIT | \
1127    ANV_PIPE_CS_STALL_BIT)
1128
1129 #define ANV_PIPE_INVALIDATE_BITS ( \
1130    ANV_PIPE_STATE_CACHE_INVALIDATE_BIT | \
1131    ANV_PIPE_CONSTANT_CACHE_INVALIDATE_BIT | \
1132    ANV_PIPE_VF_CACHE_INVALIDATE_BIT | \
1133    ANV_PIPE_DATA_CACHE_FLUSH_BIT | \
1134    ANV_PIPE_TEXTURE_CACHE_INVALIDATE_BIT | \
1135    ANV_PIPE_INSTRUCTION_CACHE_INVALIDATE_BIT)
1136
1137 struct anv_vertex_binding {
1138    struct anv_buffer *                          buffer;
1139    VkDeviceSize                                 offset;
1140 };
1141
1142 struct anv_push_constants {
1143    /* Current allocated size of this push constants data structure.
1144     * Because a decent chunk of it may not be used (images on SKL, for
1145     * instance), we won't actually allocate the entire structure up-front.
1146     */
1147    uint32_t size;
1148
1149    /* Push constant data provided by the client through vkPushConstants */
1150    uint8_t client_data[MAX_PUSH_CONSTANTS_SIZE];
1151
1152    /* Our hardware only provides zero-based vertex and instance id so, in
1153     * order to satisfy the vulkan requirements, we may have to push one or
1154     * both of these into the shader.
1155     */
1156    uint32_t base_vertex;
1157    uint32_t base_instance;
1158
1159    /* Offsets and ranges for dynamically bound buffers */
1160    struct {
1161       uint32_t offset;
1162       uint32_t range;
1163    } dynamic[MAX_DYNAMIC_BUFFERS];
1164
1165    /* Image data for image_load_store on pre-SKL */
1166    struct brw_image_param images[MAX_IMAGES];
1167 };
1168
1169 struct anv_dynamic_state {
1170    struct {
1171       uint32_t                                  count;
1172       VkViewport                                viewports[MAX_VIEWPORTS];
1173    } viewport;
1174
1175    struct {
1176       uint32_t                                  count;
1177       VkRect2D                                  scissors[MAX_SCISSORS];
1178    } scissor;
1179
1180    float                                        line_width;
1181
1182    struct {
1183       float                                     bias;
1184       float                                     clamp;
1185       float                                     slope;
1186    } depth_bias;
1187
1188    float                                        blend_constants[4];
1189
1190    struct {
1191       float                                     min;
1192       float                                     max;
1193    } depth_bounds;
1194
1195    struct {
1196       uint32_t                                  front;
1197       uint32_t                                  back;
1198    } stencil_compare_mask;
1199
1200    struct {
1201       uint32_t                                  front;
1202       uint32_t                                  back;
1203    } stencil_write_mask;
1204
1205    struct {
1206       uint32_t                                  front;
1207       uint32_t                                  back;
1208    } stencil_reference;
1209 };
1210
1211 extern const struct anv_dynamic_state default_dynamic_state;
1212
1213 void anv_dynamic_state_copy(struct anv_dynamic_state *dest,
1214                             const struct anv_dynamic_state *src,
1215                             uint32_t copy_mask);
1216
1217 /**
1218  * Attachment state when recording a renderpass instance.
1219  *
1220  * The clear value is valid only if there exists a pending clear.
1221  */
1222 struct anv_attachment_state {
1223    VkImageAspectFlags                           pending_clear_aspects;
1224    VkClearValue                                 clear_value;
1225 };
1226
1227 /** State required while building cmd buffer */
1228 struct anv_cmd_state {
1229    /* PIPELINE_SELECT.PipelineSelection */
1230    uint32_t                                     current_pipeline;
1231    const struct anv_l3_config *                 current_l3_config;
1232    uint32_t                                     vb_dirty;
1233    anv_cmd_dirty_mask_t                         dirty;
1234    anv_cmd_dirty_mask_t                         compute_dirty;
1235    enum anv_pipe_bits                           pending_pipe_bits;
1236    uint32_t                                     num_workgroups_offset;
1237    struct anv_bo                                *num_workgroups_bo;
1238    VkShaderStageFlags                           descriptors_dirty;
1239    VkShaderStageFlags                           push_constants_dirty;
1240    uint32_t                                     scratch_size;
1241    struct anv_pipeline *                        pipeline;
1242    struct anv_pipeline *                        compute_pipeline;
1243    struct anv_framebuffer *                     framebuffer;
1244    struct anv_render_pass *                     pass;
1245    struct anv_subpass *                         subpass;
1246    VkRect2D                                     render_area;
1247    uint32_t                                     restart_index;
1248    struct anv_vertex_binding                    vertex_bindings[MAX_VBS];
1249    struct anv_descriptor_set *                  descriptors[MAX_SETS];
1250    VkShaderStageFlags                           push_constant_stages;
1251    struct anv_push_constants *                  push_constants[MESA_SHADER_STAGES];
1252    struct anv_state                             binding_tables[MESA_SHADER_STAGES];
1253    struct anv_state                             samplers[MESA_SHADER_STAGES];
1254    struct anv_dynamic_state                     dynamic;
1255    bool                                         need_query_wa;
1256
1257    /**
1258     * Array length is anv_cmd_state::pass::attachment_count. Array content is
1259     * valid only when recording a render pass instance.
1260     */
1261    struct anv_attachment_state *                attachments;
1262
1263    struct {
1264       struct anv_buffer *                       index_buffer;
1265       uint32_t                                  index_type; /**< 3DSTATE_INDEX_BUFFER.IndexFormat */
1266       uint32_t                                  index_offset;
1267    } gen7;
1268 };
1269
1270 struct anv_cmd_pool {
1271    VkAllocationCallbacks                        alloc;
1272    struct list_head                             cmd_buffers;
1273 };
1274
1275 #define ANV_CMD_BUFFER_BATCH_SIZE 8192
1276
1277 enum anv_cmd_buffer_exec_mode {
1278    ANV_CMD_BUFFER_EXEC_MODE_PRIMARY,
1279    ANV_CMD_BUFFER_EXEC_MODE_EMIT,
1280    ANV_CMD_BUFFER_EXEC_MODE_GROW_AND_EMIT,
1281    ANV_CMD_BUFFER_EXEC_MODE_CHAIN,
1282    ANV_CMD_BUFFER_EXEC_MODE_COPY_AND_CHAIN,
1283 };
1284
1285 struct anv_cmd_buffer {
1286    VK_LOADER_DATA                               _loader_data;
1287
1288    struct anv_device *                          device;
1289
1290    struct anv_cmd_pool *                        pool;
1291    struct list_head                             pool_link;
1292
1293    struct anv_batch                             batch;
1294
1295    /* Fields required for the actual chain of anv_batch_bo's.
1296     *
1297     * These fields are initialized by anv_cmd_buffer_init_batch_bo_chain().
1298     */
1299    struct list_head                             batch_bos;
1300    enum anv_cmd_buffer_exec_mode                exec_mode;
1301
1302    /* A vector of anv_batch_bo pointers for every batch or surface buffer
1303     * referenced by this command buffer
1304     *
1305     * initialized by anv_cmd_buffer_init_batch_bo_chain()
1306     */
1307    struct anv_vector                            seen_bbos;
1308
1309    /* A vector of int32_t's for every block of binding tables.
1310     *
1311     * initialized by anv_cmd_buffer_init_batch_bo_chain()
1312     */
1313    struct anv_vector                            bt_blocks;
1314    uint32_t                                     bt_next;
1315    struct anv_reloc_list                        surface_relocs;
1316
1317    /* Information needed for execbuf
1318     *
1319     * These fields are generated by anv_cmd_buffer_prepare_execbuf().
1320     */
1321    struct {
1322       struct drm_i915_gem_execbuffer2           execbuf;
1323
1324       struct drm_i915_gem_exec_object2 *        objects;
1325       uint32_t                                  bo_count;
1326       struct anv_bo **                          bos;
1327
1328       /* Allocated length of the 'objects' and 'bos' arrays */
1329       uint32_t                                  array_length;
1330
1331       bool                                      need_reloc;
1332    } execbuf2;
1333
1334    /* Serial for tracking buffer completion */
1335    uint32_t                                     serial;
1336
1337    /* Stream objects for storing temporary data */
1338    struct anv_state_stream                      surface_state_stream;
1339    struct anv_state_stream                      dynamic_state_stream;
1340
1341    VkCommandBufferUsageFlags                    usage_flags;
1342    VkCommandBufferLevel                         level;
1343
1344    struct anv_cmd_state                         state;
1345 };
1346
1347 VkResult anv_cmd_buffer_init_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer);
1348 void anv_cmd_buffer_fini_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer);
1349 void anv_cmd_buffer_reset_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer);
1350 void anv_cmd_buffer_end_batch_buffer(struct anv_cmd_buffer *cmd_buffer);
1351 void anv_cmd_buffer_add_secondary(struct anv_cmd_buffer *primary,
1352                                   struct anv_cmd_buffer *secondary);
1353 void anv_cmd_buffer_prepare_execbuf(struct anv_cmd_buffer *cmd_buffer);
1354
1355 VkResult anv_cmd_buffer_emit_binding_table(struct anv_cmd_buffer *cmd_buffer,
1356                                            unsigned stage, struct anv_state *bt_state);
1357 VkResult anv_cmd_buffer_emit_samplers(struct anv_cmd_buffer *cmd_buffer,
1358                                       unsigned stage, struct anv_state *state);
1359 uint32_t anv_cmd_buffer_flush_descriptor_sets(struct anv_cmd_buffer *cmd_buffer);
1360
1361 struct anv_state anv_cmd_buffer_emit_dynamic(struct anv_cmd_buffer *cmd_buffer,
1362                                              const void *data, uint32_t size, uint32_t alignment);
1363 struct anv_state anv_cmd_buffer_merge_dynamic(struct anv_cmd_buffer *cmd_buffer,
1364                                               uint32_t *a, uint32_t *b,
1365                                               uint32_t dwords, uint32_t alignment);
1366
1367 struct anv_address
1368 anv_cmd_buffer_surface_base_address(struct anv_cmd_buffer *cmd_buffer);
1369 struct anv_state
1370 anv_cmd_buffer_alloc_binding_table(struct anv_cmd_buffer *cmd_buffer,
1371                                    uint32_t entries, uint32_t *state_offset);
1372 struct anv_state
1373 anv_cmd_buffer_alloc_surface_state(struct anv_cmd_buffer *cmd_buffer);
1374 struct anv_state
1375 anv_cmd_buffer_alloc_dynamic_state(struct anv_cmd_buffer *cmd_buffer,
1376                                    uint32_t size, uint32_t alignment);
1377
1378 VkResult
1379 anv_cmd_buffer_new_binding_table_block(struct anv_cmd_buffer *cmd_buffer);
1380
1381 void gen8_cmd_buffer_emit_viewport(struct anv_cmd_buffer *cmd_buffer);
1382 void gen8_cmd_buffer_emit_depth_viewport(struct anv_cmd_buffer *cmd_buffer,
1383                                          bool depth_clamp_enable);
1384 void gen7_cmd_buffer_emit_scissor(struct anv_cmd_buffer *cmd_buffer);
1385
1386 void anv_cmd_buffer_emit_state_base_address(struct anv_cmd_buffer *cmd_buffer);
1387
1388 void anv_cmd_state_setup_attachments(struct anv_cmd_buffer *cmd_buffer,
1389                                      const VkRenderPassBeginInfo *info);
1390
1391 void anv_cmd_buffer_set_subpass(struct anv_cmd_buffer *cmd_buffer,
1392                                   struct anv_subpass *subpass);
1393
1394 struct anv_state
1395 anv_cmd_buffer_push_constants(struct anv_cmd_buffer *cmd_buffer,
1396                               gl_shader_stage stage);
1397 struct anv_state
1398 anv_cmd_buffer_cs_push_constants(struct anv_cmd_buffer *cmd_buffer);
1399
1400 void anv_cmd_buffer_clear_subpass(struct anv_cmd_buffer *cmd_buffer);
1401 void anv_cmd_buffer_resolve_subpass(struct anv_cmd_buffer *cmd_buffer);
1402
1403 const struct anv_image_view *
1404 anv_cmd_buffer_get_depth_stencil_view(const struct anv_cmd_buffer *cmd_buffer);
1405
1406 void anv_cmd_buffer_dump(struct anv_cmd_buffer *cmd_buffer);
1407
1408 struct anv_fence {
1409    struct anv_bo bo;
1410    struct drm_i915_gem_execbuffer2 execbuf;
1411    struct drm_i915_gem_exec_object2 exec2_objects[1];
1412    bool ready;
1413 };
1414
1415 struct anv_event {
1416    uint64_t                                     semaphore;
1417    struct anv_state                             state;
1418 };
1419
1420 struct nir_shader;
1421
1422 struct anv_shader_module {
1423    struct nir_shader *                          nir;
1424
1425    unsigned char                                sha1[20];
1426    uint32_t                                     size;
1427    char                                         data[0];
1428 };
1429
1430 void anv_hash_shader(unsigned char *hash, const void *key, size_t key_size,
1431                      struct anv_shader_module *module,
1432                      const char *entrypoint,
1433                      const struct anv_pipeline_layout *pipeline_layout,
1434                      const VkSpecializationInfo *spec_info);
1435
1436 static inline gl_shader_stage
1437 vk_to_mesa_shader_stage(VkShaderStageFlagBits vk_stage)
1438 {
1439    assert(__builtin_popcount(vk_stage) == 1);
1440    return ffs(vk_stage) - 1;
1441 }
1442
1443 static inline VkShaderStageFlagBits
1444 mesa_to_vk_shader_stage(gl_shader_stage mesa_stage)
1445 {
1446    return (1 << mesa_stage);
1447 }
1448
1449 #define ANV_STAGE_MASK ((1 << MESA_SHADER_STAGES) - 1)
1450
1451 #define anv_foreach_stage(stage, stage_bits)                         \
1452    for (gl_shader_stage stage,                                       \
1453         __tmp = (gl_shader_stage)((stage_bits) & ANV_STAGE_MASK);    \
1454         stage = __builtin_ffs(__tmp) - 1, __tmp;                     \
1455         __tmp &= ~(1 << (stage)))
1456
1457 struct anv_pipeline_bind_map {
1458    uint32_t surface_count;
1459    uint32_t sampler_count;
1460    uint32_t image_count;
1461    uint32_t attachment_count;
1462
1463    struct anv_pipeline_binding *                surface_to_descriptor;
1464    struct anv_pipeline_binding *                sampler_to_descriptor;
1465    uint32_t *                                   surface_to_attachment;
1466 };
1467
1468 struct anv_pipeline {
1469    struct anv_device *                          device;
1470    struct anv_batch                             batch;
1471    uint32_t                                     batch_data[512];
1472    struct anv_reloc_list                        batch_relocs;
1473    uint32_t                                     dynamic_state_mask;
1474    struct anv_dynamic_state                     dynamic_state;
1475
1476    struct anv_pipeline_layout *                 layout;
1477    struct anv_pipeline_bind_map                 bindings[MESA_SHADER_STAGES];
1478
1479    bool                                         use_repclear;
1480    bool                                         needs_data_cache;
1481
1482    const struct brw_stage_prog_data *           prog_data[MESA_SHADER_STAGES];
1483    struct {
1484       uint32_t                                  start[MESA_SHADER_GEOMETRY + 1];
1485       uint32_t                                  size[MESA_SHADER_GEOMETRY + 1];
1486       uint32_t                                  entries[MESA_SHADER_GEOMETRY + 1];
1487       const struct anv_l3_config *              l3_config;
1488       uint32_t                                  total_size;
1489    } urb;
1490
1491    VkShaderStageFlags                           active_stages;
1492    struct anv_state                             blend_state;
1493    uint32_t                                     vs_simd8;
1494    uint32_t                                     vs_vec4;
1495    uint32_t                                     ps_ksp0;
1496    uint32_t                                     gs_kernel;
1497    uint32_t                                     cs_simd;
1498
1499    uint32_t                                     vb_used;
1500    uint32_t                                     binding_stride[MAX_VBS];
1501    bool                                         instancing_enable[MAX_VBS];
1502    bool                                         primitive_restart;
1503    uint32_t                                     topology;
1504
1505    uint32_t                                     cs_right_mask;
1506
1507    bool                                         depth_clamp_enable;
1508
1509    struct {
1510       uint32_t                                  sf[7];
1511       uint32_t                                  depth_stencil_state[3];
1512    } gen7;
1513
1514    struct {
1515       uint32_t                                  sf[4];
1516       uint32_t                                  raster[5];
1517       uint32_t                                  wm_depth_stencil[3];
1518    } gen8;
1519
1520    struct {
1521       uint32_t                                  wm_depth_stencil[4];
1522    } gen9;
1523 };
1524
1525 static inline const struct brw_vs_prog_data *
1526 get_vs_prog_data(struct anv_pipeline *pipeline)
1527 {
1528    return (const struct brw_vs_prog_data *) pipeline->prog_data[MESA_SHADER_VERTEX];
1529 }
1530
1531 static inline const struct brw_gs_prog_data *
1532 get_gs_prog_data(struct anv_pipeline *pipeline)
1533 {
1534    return (const struct brw_gs_prog_data *) pipeline->prog_data[MESA_SHADER_GEOMETRY];
1535 }
1536
1537 static inline const struct brw_wm_prog_data *
1538 get_wm_prog_data(struct anv_pipeline *pipeline)
1539 {
1540    return (const struct brw_wm_prog_data *) pipeline->prog_data[MESA_SHADER_FRAGMENT];
1541 }
1542
1543 static inline const struct brw_cs_prog_data *
1544 get_cs_prog_data(struct anv_pipeline *pipeline)
1545 {
1546    return (const struct brw_cs_prog_data *) pipeline->prog_data[MESA_SHADER_COMPUTE];
1547 }
1548
1549 struct anv_graphics_pipeline_create_info {
1550    /**
1551     * If non-negative, overrides the color attachment count of the pipeline's
1552     * subpass.
1553     */
1554    int8_t color_attachment_count;
1555
1556    bool                                         use_repclear;
1557    bool                                         disable_vs;
1558    bool                                         use_rectlist;
1559 };
1560
1561 VkResult
1562 anv_pipeline_init(struct anv_pipeline *pipeline, struct anv_device *device,
1563                   struct anv_pipeline_cache *cache,
1564                   const VkGraphicsPipelineCreateInfo *pCreateInfo,
1565                   const struct anv_graphics_pipeline_create_info *extra,
1566                   const VkAllocationCallbacks *alloc);
1567
1568 VkResult
1569 anv_pipeline_compile_cs(struct anv_pipeline *pipeline,
1570                         struct anv_pipeline_cache *cache,
1571                         const VkComputePipelineCreateInfo *info,
1572                         struct anv_shader_module *module,
1573                         const char *entrypoint,
1574                         const VkSpecializationInfo *spec_info);
1575
1576 VkResult
1577 anv_graphics_pipeline_create(VkDevice device,
1578                              VkPipelineCache cache,
1579                              const VkGraphicsPipelineCreateInfo *pCreateInfo,
1580                              const struct anv_graphics_pipeline_create_info *extra,
1581                              const VkAllocationCallbacks *alloc,
1582                              VkPipeline *pPipeline);
1583
1584 struct anv_format_swizzle {
1585    enum isl_channel_select r:4;
1586    enum isl_channel_select g:4;
1587    enum isl_channel_select b:4;
1588    enum isl_channel_select a:4;
1589 };
1590
1591 struct anv_format {
1592    enum isl_format isl_format:16;
1593    struct anv_format_swizzle swizzle;
1594 };
1595
1596 struct anv_format
1597 anv_get_format(const struct brw_device_info *devinfo, VkFormat format,
1598                VkImageAspectFlags aspect, VkImageTiling tiling);
1599
1600 static inline enum isl_format
1601 anv_get_isl_format(const struct brw_device_info *devinfo, VkFormat vk_format,
1602                    VkImageAspectFlags aspect, VkImageTiling tiling)
1603 {
1604    return anv_get_format(devinfo, vk_format, aspect, tiling).isl_format;
1605 }
1606
1607 void
1608 anv_compute_urb_partition(struct anv_pipeline *pipeline);
1609
1610 void
1611 anv_setup_pipeline_l3_config(struct anv_pipeline *pipeline);
1612
1613 /**
1614  * Subsurface of an anv_image.
1615  */
1616 struct anv_surface {
1617    struct isl_surf isl;
1618
1619    /**
1620     * Offset from VkImage's base address, as bound by vkBindImageMemory().
1621     */
1622    uint32_t offset;
1623 };
1624
1625 struct anv_image {
1626    VkImageType type;
1627    /* The original VkFormat provided by the client.  This may not match any
1628     * of the actual surface formats.
1629     */
1630    VkFormat vk_format;
1631    VkImageAspectFlags aspects;
1632    VkExtent3D extent;
1633    uint32_t levels;
1634    uint32_t array_size;
1635    uint32_t samples; /**< VkImageCreateInfo::samples */
1636    VkImageUsageFlags usage; /**< Superset of VkImageCreateInfo::usage. */
1637    VkImageTiling tiling; /** VkImageCreateInfo::tiling */
1638
1639    VkDeviceSize size;
1640    uint32_t alignment;
1641
1642    /* Set when bound */
1643    struct anv_bo *bo;
1644    VkDeviceSize offset;
1645
1646    /**
1647     * Image subsurfaces
1648     *
1649     * For each foo, anv_image::foo_surface is valid if and only if
1650     * anv_image::aspects has a foo aspect.
1651     *
1652     * The hardware requires that the depth buffer and stencil buffer be
1653     * separate surfaces.  From Vulkan's perspective, though, depth and stencil
1654     * reside in the same VkImage.  To satisfy both the hardware and Vulkan, we
1655     * allocate the depth and stencil buffers as separate surfaces in the same
1656     * bo.
1657     */
1658    union {
1659       struct anv_surface color_surface;
1660
1661       struct {
1662          struct anv_surface depth_surface;
1663          struct anv_surface stencil_surface;
1664       };
1665    };
1666 };
1667
1668 static inline uint32_t
1669 anv_get_layerCount(const struct anv_image *image,
1670                    const VkImageSubresourceRange *range)
1671 {
1672    return range->layerCount == VK_REMAINING_ARRAY_LAYERS ?
1673           image->array_size - range->baseArrayLayer : range->layerCount;
1674 }
1675
1676 static inline uint32_t
1677 anv_get_levelCount(const struct anv_image *image,
1678                    const VkImageSubresourceRange *range)
1679 {
1680    return range->levelCount == VK_REMAINING_MIP_LEVELS ?
1681           image->levels - range->baseMipLevel : range->levelCount;
1682 }
1683
1684
1685 struct anv_image_view {
1686    const struct anv_image *image; /**< VkImageViewCreateInfo::image */
1687    struct anv_bo *bo;
1688    uint32_t offset; /**< Offset into bo. */
1689
1690    VkImageAspectFlags aspect_mask;
1691    VkFormat vk_format;
1692    uint32_t base_layer;
1693    uint32_t base_mip;
1694    VkExtent3D extent; /**< Extent of VkImageViewCreateInfo::baseMipLevel. */
1695
1696    /** RENDER_SURFACE_STATE when using image as a color render target. */
1697    struct anv_state color_rt_surface_state;
1698
1699    /** RENDER_SURFACE_STATE when using image as a sampler surface. */
1700    struct anv_state sampler_surface_state;
1701
1702    /** RENDER_SURFACE_STATE when using image as a storage image. */
1703    struct anv_state storage_surface_state;
1704
1705    struct brw_image_param storage_image_param;
1706 };
1707
1708 struct anv_image_create_info {
1709    const VkImageCreateInfo *vk_info;
1710    isl_tiling_flags_t isl_tiling_flags;
1711    uint32_t stride;
1712 };
1713
1714 VkResult anv_image_create(VkDevice _device,
1715                           const struct anv_image_create_info *info,
1716                           const VkAllocationCallbacks* alloc,
1717                           VkImage *pImage);
1718
1719 struct anv_surface *
1720 anv_image_get_surface_for_aspect_mask(struct anv_image *image,
1721                                       VkImageAspectFlags aspect_mask);
1722
1723 void anv_image_view_init(struct anv_image_view *view,
1724                          struct anv_device *device,
1725                          const VkImageViewCreateInfo* pCreateInfo,
1726                          struct anv_cmd_buffer *cmd_buffer,
1727                          VkImageUsageFlags usage_mask);
1728
1729 struct anv_buffer_view {
1730    enum isl_format format; /**< VkBufferViewCreateInfo::format */
1731    struct anv_bo *bo;
1732    uint32_t offset; /**< Offset into bo. */
1733    uint64_t range; /**< VkBufferViewCreateInfo::range */
1734
1735    struct anv_state surface_state;
1736    struct anv_state storage_surface_state;
1737
1738    struct brw_image_param storage_image_param;
1739 };
1740
1741 void anv_buffer_view_init(struct anv_buffer_view *view,
1742                           struct anv_device *device,
1743                           const VkBufferViewCreateInfo* pCreateInfo,
1744                           struct anv_cmd_buffer *cmd_buffer);
1745
1746 enum isl_format
1747 anv_isl_format_for_descriptor_type(VkDescriptorType type);
1748
1749 static inline struct VkExtent3D
1750 anv_sanitize_image_extent(const VkImageType imageType,
1751                           const struct VkExtent3D imageExtent)
1752 {
1753    switch (imageType) {
1754    case VK_IMAGE_TYPE_1D:
1755       return (VkExtent3D) { imageExtent.width, 1, 1 };
1756    case VK_IMAGE_TYPE_2D:
1757       return (VkExtent3D) { imageExtent.width, imageExtent.height, 1 };
1758    case VK_IMAGE_TYPE_3D:
1759       return imageExtent;
1760    default:
1761       unreachable("invalid image type");
1762    }
1763 }
1764
1765 static inline struct VkOffset3D
1766 anv_sanitize_image_offset(const VkImageType imageType,
1767                           const struct VkOffset3D imageOffset)
1768 {
1769    switch (imageType) {
1770    case VK_IMAGE_TYPE_1D:
1771       return (VkOffset3D) { imageOffset.x, 0, 0 };
1772    case VK_IMAGE_TYPE_2D:
1773       return (VkOffset3D) { imageOffset.x, imageOffset.y, 0 };
1774    case VK_IMAGE_TYPE_3D:
1775       return imageOffset;
1776    default:
1777       unreachable("invalid image type");
1778    }
1779 }
1780
1781
1782 void anv_fill_buffer_surface_state(struct anv_device *device,
1783                                    struct anv_state state,
1784                                    enum isl_format format,
1785                                    uint32_t offset, uint32_t range,
1786                                    uint32_t stride);
1787
1788 void anv_image_view_fill_image_param(struct anv_device *device,
1789                                      struct anv_image_view *view,
1790                                      struct brw_image_param *param);
1791 void anv_buffer_view_fill_image_param(struct anv_device *device,
1792                                       struct anv_buffer_view *view,
1793                                       struct brw_image_param *param);
1794
1795 struct anv_sampler {
1796    uint32_t state[4];
1797 };
1798
1799 struct anv_framebuffer {
1800    uint32_t                                     width;
1801    uint32_t                                     height;
1802    uint32_t                                     layers;
1803
1804    uint32_t                                     attachment_count;
1805    struct anv_image_view *                      attachments[0];
1806 };
1807
1808 struct anv_subpass {
1809    uint32_t                                     input_count;
1810    uint32_t *                                   input_attachments;
1811    uint32_t                                     color_count;
1812    uint32_t *                                   color_attachments;
1813    uint32_t *                                   resolve_attachments;
1814    uint32_t                                     depth_stencil_attachment;
1815
1816    /** Subpass has at least one resolve attachment */
1817    bool                                         has_resolve;
1818 };
1819
1820 struct anv_render_pass_attachment {
1821    VkFormat                                     format;
1822    uint32_t                                     samples;
1823    VkAttachmentLoadOp                           load_op;
1824    VkAttachmentLoadOp                           stencil_load_op;
1825 };
1826
1827 struct anv_render_pass {
1828    uint32_t                                     attachment_count;
1829    uint32_t                                     subpass_count;
1830    uint32_t *                                   subpass_attachments;
1831    struct anv_render_pass_attachment *          attachments;
1832    struct anv_subpass                           subpasses[0];
1833 };
1834
1835 extern struct anv_render_pass anv_meta_dummy_renderpass;
1836
1837 struct anv_query_pool_slot {
1838    uint64_t begin;
1839    uint64_t end;
1840    uint64_t available;
1841 };
1842
1843 struct anv_query_pool {
1844    VkQueryType                                  type;
1845    uint32_t                                     slots;
1846    struct anv_bo                                bo;
1847 };
1848
1849 VkResult anv_device_init_meta(struct anv_device *device);
1850 void anv_device_finish_meta(struct anv_device *device);
1851
1852 void *anv_lookup_entrypoint(const char *name);
1853
1854 void anv_dump_image_to_ppm(struct anv_device *device,
1855                            struct anv_image *image, unsigned miplevel,
1856                            unsigned array_layer, const char *filename);
1857
1858 #define ANV_DEFINE_HANDLE_CASTS(__anv_type, __VkType)                      \
1859                                                                            \
1860    static inline struct __anv_type *                                       \
1861    __anv_type ## _from_handle(__VkType _handle)                            \
1862    {                                                                       \
1863       return (struct __anv_type *) _handle;                                \
1864    }                                                                       \
1865                                                                            \
1866    static inline __VkType                                                  \
1867    __anv_type ## _to_handle(struct __anv_type *_obj)                       \
1868    {                                                                       \
1869       return (__VkType) _obj;                                              \
1870    }
1871
1872 #define ANV_DEFINE_NONDISP_HANDLE_CASTS(__anv_type, __VkType)              \
1873                                                                            \
1874    static inline struct __anv_type *                                       \
1875    __anv_type ## _from_handle(__VkType _handle)                            \
1876    {                                                                       \
1877       return (struct __anv_type *)(uintptr_t) _handle;                     \
1878    }                                                                       \
1879                                                                            \
1880    static inline __VkType                                                  \
1881    __anv_type ## _to_handle(struct __anv_type *_obj)                       \
1882    {                                                                       \
1883       return (__VkType)(uintptr_t) _obj;                                   \
1884    }
1885
1886 #define ANV_FROM_HANDLE(__anv_type, __name, __handle) \
1887    struct __anv_type *__name = __anv_type ## _from_handle(__handle)
1888
1889 ANV_DEFINE_HANDLE_CASTS(anv_cmd_buffer, VkCommandBuffer)
1890 ANV_DEFINE_HANDLE_CASTS(anv_device, VkDevice)
1891 ANV_DEFINE_HANDLE_CASTS(anv_instance, VkInstance)
1892 ANV_DEFINE_HANDLE_CASTS(anv_physical_device, VkPhysicalDevice)
1893 ANV_DEFINE_HANDLE_CASTS(anv_queue, VkQueue)
1894
1895 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_cmd_pool, VkCommandPool)
1896 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_buffer, VkBuffer)
1897 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_buffer_view, VkBufferView)
1898 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_descriptor_pool, VkDescriptorPool)
1899 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_descriptor_set, VkDescriptorSet)
1900 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_descriptor_set_layout, VkDescriptorSetLayout)
1901 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_device_memory, VkDeviceMemory)
1902 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_fence, VkFence)
1903 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_event, VkEvent)
1904 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_framebuffer, VkFramebuffer)
1905 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_image, VkImage)
1906 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_image_view, VkImageView);
1907 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_pipeline_cache, VkPipelineCache)
1908 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_pipeline, VkPipeline)
1909 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_pipeline_layout, VkPipelineLayout)
1910 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_query_pool, VkQueryPool)
1911 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_render_pass, VkRenderPass)
1912 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_sampler, VkSampler)
1913 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_shader_module, VkShaderModule)
1914
1915 #define ANV_DEFINE_STRUCT_CASTS(__anv_type, __VkType) \
1916    \
1917    static inline const __VkType * \
1918    __anv_type ## _to_ ## __VkType(const struct __anv_type *__anv_obj) \
1919    { \
1920       return (const __VkType *) __anv_obj; \
1921    }
1922
1923 #define ANV_COMMON_TO_STRUCT(__VkType, __vk_name, __common_name) \
1924    const __VkType *__vk_name = anv_common_to_ ## __VkType(__common_name)
1925
1926 ANV_DEFINE_STRUCT_CASTS(anv_common, VkMemoryBarrier)
1927 ANV_DEFINE_STRUCT_CASTS(anv_common, VkBufferMemoryBarrier)
1928 ANV_DEFINE_STRUCT_CASTS(anv_common, VkImageMemoryBarrier)
1929
1930 /* Gen-specific function declarations */
1931 #ifdef genX
1932 #  include "anv_genX.h"
1933 #else
1934 #  define genX(x) gen7_##x
1935 #  include "anv_genX.h"
1936 #  undef genX
1937 #  define genX(x) gen75_##x
1938 #  include "anv_genX.h"
1939 #  undef genX
1940 #  define genX(x) gen8_##x
1941 #  include "anv_genX.h"
1942 #  undef genX
1943 #  define genX(x) gen9_##x
1944 #  include "anv_genX.h"
1945 #  undef genX
1946 #endif
1947
1948 #ifdef __cplusplus
1949 }
1950 #endif