anv: fix argument name for vkCmdEndQuery
[mesa.git] / src / intel / vulkan / genX_query.c
1 /*
2 * Copyright © 2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include <assert.h>
25 #include <stdbool.h>
26 #include <string.h>
27 #include <unistd.h>
28 #include <fcntl.h>
29
30 #include "anv_private.h"
31
32 #include "genxml/gen_macros.h"
33 #include "genxml/genX_pack.h"
34
35 /* We reserve GPR 14 and 15 for conditional rendering */
36 #define GEN_MI_BUILDER_NUM_ALLOC_GPRS 14
37 #define __gen_get_batch_dwords anv_batch_emit_dwords
38 #define __gen_address_offset anv_address_add
39 #include "common/gen_mi_builder.h"
40
41 VkResult genX(CreateQueryPool)(
42 VkDevice _device,
43 const VkQueryPoolCreateInfo* pCreateInfo,
44 const VkAllocationCallbacks* pAllocator,
45 VkQueryPool* pQueryPool)
46 {
47 ANV_FROM_HANDLE(anv_device, device, _device);
48 const struct anv_physical_device *pdevice = &device->instance->physicalDevice;
49 struct anv_query_pool *pool;
50 VkResult result;
51
52 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO);
53
54 /* Query pool slots are made up of some number of 64-bit values packed
55 * tightly together. The first 64-bit value is always the "available" bit
56 * which is 0 when the query is unavailable and 1 when it is available.
57 * The 64-bit values that follow are determined by the type of query.
58 */
59 uint32_t uint64s_per_slot = 1;
60
61 VkQueryPipelineStatisticFlags pipeline_statistics = 0;
62 switch (pCreateInfo->queryType) {
63 case VK_QUERY_TYPE_OCCLUSION:
64 /* Occlusion queries have two values: begin and end. */
65 uint64s_per_slot += 2;
66 break;
67 case VK_QUERY_TYPE_TIMESTAMP:
68 /* Timestamps just have the one timestamp value */
69 uint64s_per_slot += 1;
70 break;
71 case VK_QUERY_TYPE_PIPELINE_STATISTICS:
72 pipeline_statistics = pCreateInfo->pipelineStatistics;
73 /* We're going to trust this field implicitly so we need to ensure that
74 * no unhandled extension bits leak in.
75 */
76 pipeline_statistics &= ANV_PIPELINE_STATISTICS_MASK;
77
78 /* Statistics queries have a min and max for every statistic */
79 uint64s_per_slot += 2 * util_bitcount(pipeline_statistics);
80 break;
81 case VK_QUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT:
82 /* Transform feedback queries are 4 values, begin/end for
83 * written/available.
84 */
85 uint64s_per_slot += 4;
86 break;
87 default:
88 assert(!"Invalid query type");
89 }
90
91 pool = vk_alloc2(&device->alloc, pAllocator, sizeof(*pool), 8,
92 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
93 if (pool == NULL)
94 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
95
96 pool->type = pCreateInfo->queryType;
97 pool->pipeline_statistics = pipeline_statistics;
98 pool->stride = uint64s_per_slot * sizeof(uint64_t);
99 pool->slots = pCreateInfo->queryCount;
100
101 uint64_t size = pool->slots * pool->stride;
102 result = anv_bo_init_new(&pool->bo, device, size);
103 if (result != VK_SUCCESS)
104 goto fail;
105
106 if (pdevice->supports_48bit_addresses)
107 pool->bo.flags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS;
108
109 if (pdevice->use_softpin)
110 pool->bo.flags |= EXEC_OBJECT_PINNED;
111
112 if (pdevice->has_exec_async)
113 pool->bo.flags |= EXEC_OBJECT_ASYNC;
114
115 anv_vma_alloc(device, &pool->bo);
116
117 /* For query pools, we set the caching mode to I915_CACHING_CACHED. On LLC
118 * platforms, this does nothing. On non-LLC platforms, this means snooping
119 * which comes at a slight cost. However, the buffers aren't big, won't be
120 * written frequently, and trying to handle the flushing manually without
121 * doing too much flushing is extremely painful.
122 */
123 anv_gem_set_caching(device, pool->bo.gem_handle, I915_CACHING_CACHED);
124
125 pool->bo.map = anv_gem_mmap(device, pool->bo.gem_handle, 0, size, 0);
126
127 *pQueryPool = anv_query_pool_to_handle(pool);
128
129 return VK_SUCCESS;
130
131 fail:
132 vk_free2(&device->alloc, pAllocator, pool);
133
134 return result;
135 }
136
137 void genX(DestroyQueryPool)(
138 VkDevice _device,
139 VkQueryPool _pool,
140 const VkAllocationCallbacks* pAllocator)
141 {
142 ANV_FROM_HANDLE(anv_device, device, _device);
143 ANV_FROM_HANDLE(anv_query_pool, pool, _pool);
144
145 if (!pool)
146 return;
147
148 anv_gem_munmap(pool->bo.map, pool->bo.size);
149 anv_vma_free(device, &pool->bo);
150 anv_gem_close(device, pool->bo.gem_handle);
151 vk_free2(&device->alloc, pAllocator, pool);
152 }
153
154 static struct anv_address
155 anv_query_address(struct anv_query_pool *pool, uint32_t query)
156 {
157 return (struct anv_address) {
158 .bo = &pool->bo,
159 .offset = query * pool->stride,
160 };
161 }
162
163 static void
164 cpu_write_query_result(void *dst_slot, VkQueryResultFlags flags,
165 uint32_t value_index, uint64_t result)
166 {
167 if (flags & VK_QUERY_RESULT_64_BIT) {
168 uint64_t *dst64 = dst_slot;
169 dst64[value_index] = result;
170 } else {
171 uint32_t *dst32 = dst_slot;
172 dst32[value_index] = result;
173 }
174 }
175
176 static bool
177 query_is_available(uint64_t *slot)
178 {
179 return *(volatile uint64_t *)slot;
180 }
181
182 static VkResult
183 wait_for_available(struct anv_device *device,
184 struct anv_query_pool *pool, uint64_t *slot)
185 {
186 while (true) {
187 if (query_is_available(slot))
188 return VK_SUCCESS;
189
190 int ret = anv_gem_busy(device, pool->bo.gem_handle);
191 if (ret == 1) {
192 /* The BO is still busy, keep waiting. */
193 continue;
194 } else if (ret == -1) {
195 /* We don't know the real error. */
196 return anv_device_set_lost(device, "gem wait failed: %m");
197 } else {
198 assert(ret == 0);
199 /* The BO is no longer busy. */
200 if (query_is_available(slot)) {
201 return VK_SUCCESS;
202 } else {
203 VkResult status = anv_device_query_status(device);
204 if (status != VK_SUCCESS)
205 return status;
206
207 /* If we haven't seen availability yet, then we never will. This
208 * can only happen if we have a client error where they call
209 * GetQueryPoolResults on a query that they haven't submitted to
210 * the GPU yet. The spec allows us to do anything in this case,
211 * but returning VK_SUCCESS doesn't seem right and we shouldn't
212 * just keep spinning.
213 */
214 return VK_NOT_READY;
215 }
216 }
217 }
218 }
219
220 VkResult genX(GetQueryPoolResults)(
221 VkDevice _device,
222 VkQueryPool queryPool,
223 uint32_t firstQuery,
224 uint32_t queryCount,
225 size_t dataSize,
226 void* pData,
227 VkDeviceSize stride,
228 VkQueryResultFlags flags)
229 {
230 ANV_FROM_HANDLE(anv_device, device, _device);
231 ANV_FROM_HANDLE(anv_query_pool, pool, queryPool);
232
233 assert(pool->type == VK_QUERY_TYPE_OCCLUSION ||
234 pool->type == VK_QUERY_TYPE_PIPELINE_STATISTICS ||
235 pool->type == VK_QUERY_TYPE_TIMESTAMP ||
236 pool->type == VK_QUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT);
237
238 if (anv_device_is_lost(device))
239 return VK_ERROR_DEVICE_LOST;
240
241 if (pData == NULL)
242 return VK_SUCCESS;
243
244 void *data_end = pData + dataSize;
245
246 VkResult status = VK_SUCCESS;
247 for (uint32_t i = 0; i < queryCount; i++) {
248 uint64_t *slot = pool->bo.map + (firstQuery + i) * pool->stride;
249
250 /* Availability is always at the start of the slot */
251 bool available = slot[0];
252
253 if (!available && (flags & VK_QUERY_RESULT_WAIT_BIT)) {
254 status = wait_for_available(device, pool, slot);
255 if (status != VK_SUCCESS)
256 return status;
257
258 available = true;
259 }
260
261 /* From the Vulkan 1.0.42 spec:
262 *
263 * "If VK_QUERY_RESULT_WAIT_BIT and VK_QUERY_RESULT_PARTIAL_BIT are
264 * both not set then no result values are written to pData for
265 * queries that are in the unavailable state at the time of the call,
266 * and vkGetQueryPoolResults returns VK_NOT_READY. However,
267 * availability state is still written to pData for those queries if
268 * VK_QUERY_RESULT_WITH_AVAILABILITY_BIT is set."
269 */
270 bool write_results = available || (flags & VK_QUERY_RESULT_PARTIAL_BIT);
271
272 uint32_t idx = 0;
273 switch (pool->type) {
274 case VK_QUERY_TYPE_OCCLUSION:
275 if (write_results)
276 cpu_write_query_result(pData, flags, idx, slot[2] - slot[1]);
277 idx++;
278 break;
279
280 case VK_QUERY_TYPE_PIPELINE_STATISTICS: {
281 uint32_t statistics = pool->pipeline_statistics;
282 while (statistics) {
283 uint32_t stat = u_bit_scan(&statistics);
284 if (write_results) {
285 uint64_t result = slot[idx * 2 + 2] - slot[idx * 2 + 1];
286
287 /* WaDividePSInvocationCountBy4:HSW,BDW */
288 if ((device->info.gen == 8 || device->info.is_haswell) &&
289 (1 << stat) == VK_QUERY_PIPELINE_STATISTIC_FRAGMENT_SHADER_INVOCATIONS_BIT)
290 result >>= 2;
291
292 cpu_write_query_result(pData, flags, idx, result);
293 }
294 idx++;
295 }
296 assert(idx == util_bitcount(pool->pipeline_statistics));
297 break;
298 }
299
300 case VK_QUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT:
301 if (write_results)
302 cpu_write_query_result(pData, flags, idx, slot[2] - slot[1]);
303 idx++;
304 if (write_results)
305 cpu_write_query_result(pData, flags, idx, slot[4] - slot[3]);
306 idx++;
307 break;
308
309 case VK_QUERY_TYPE_TIMESTAMP:
310 if (write_results)
311 cpu_write_query_result(pData, flags, idx, slot[1]);
312 idx++;
313 break;
314
315 default:
316 unreachable("invalid pool type");
317 }
318
319 if (!write_results)
320 status = VK_NOT_READY;
321
322 if (flags & VK_QUERY_RESULT_WITH_AVAILABILITY_BIT)
323 cpu_write_query_result(pData, flags, idx, available);
324
325 pData += stride;
326 if (pData >= data_end)
327 break;
328 }
329
330 return status;
331 }
332
333 static void
334 emit_ps_depth_count(struct anv_cmd_buffer *cmd_buffer,
335 struct anv_address addr)
336 {
337 anv_batch_emit(&cmd_buffer->batch, GENX(PIPE_CONTROL), pc) {
338 pc.DestinationAddressType = DAT_PPGTT;
339 pc.PostSyncOperation = WritePSDepthCount;
340 pc.DepthStallEnable = true;
341 pc.Address = addr;
342
343 if (GEN_GEN == 9 && cmd_buffer->device->info.gt == 4)
344 pc.CommandStreamerStallEnable = true;
345 }
346 }
347
348 static void
349 emit_query_availability(struct anv_cmd_buffer *cmd_buffer,
350 struct anv_address addr)
351 {
352 anv_batch_emit(&cmd_buffer->batch, GENX(PIPE_CONTROL), pc) {
353 pc.DestinationAddressType = DAT_PPGTT;
354 pc.PostSyncOperation = WriteImmediateData;
355 pc.Address = addr;
356 pc.ImmediateData = 1;
357 }
358 }
359
360 /**
361 * Goes through a series of consecutive query indices in the given pool
362 * setting all element values to 0 and emitting them as available.
363 */
364 static void
365 emit_zero_queries(struct anv_cmd_buffer *cmd_buffer,
366 struct gen_mi_builder *b, struct anv_query_pool *pool,
367 uint32_t first_index, uint32_t num_queries)
368 {
369 for (uint32_t i = 0; i < num_queries; i++) {
370 struct anv_address slot_addr =
371 anv_query_address(pool, first_index + i);
372 gen_mi_memset(b, anv_address_add(slot_addr, 8), 0, pool->stride - 8);
373 emit_query_availability(cmd_buffer, slot_addr);
374 }
375 }
376
377 void genX(CmdResetQueryPool)(
378 VkCommandBuffer commandBuffer,
379 VkQueryPool queryPool,
380 uint32_t firstQuery,
381 uint32_t queryCount)
382 {
383 ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
384 ANV_FROM_HANDLE(anv_query_pool, pool, queryPool);
385
386 for (uint32_t i = 0; i < queryCount; i++) {
387 anv_batch_emit(&cmd_buffer->batch, GENX(MI_STORE_DATA_IMM), sdm) {
388 sdm.Address = anv_query_address(pool, firstQuery + i);
389 sdm.ImmediateData = 0;
390 }
391 }
392 }
393
394 void genX(ResetQueryPoolEXT)(
395 VkDevice _device,
396 VkQueryPool queryPool,
397 uint32_t firstQuery,
398 uint32_t queryCount)
399 {
400 ANV_FROM_HANDLE(anv_query_pool, pool, queryPool);
401
402 for (uint32_t i = 0; i < queryCount; i++) {
403 uint64_t *slot = pool->bo.map + (firstQuery + i) * pool->stride;
404 *slot = 0;
405 }
406 }
407
408 static const uint32_t vk_pipeline_stat_to_reg[] = {
409 GENX(IA_VERTICES_COUNT_num),
410 GENX(IA_PRIMITIVES_COUNT_num),
411 GENX(VS_INVOCATION_COUNT_num),
412 GENX(GS_INVOCATION_COUNT_num),
413 GENX(GS_PRIMITIVES_COUNT_num),
414 GENX(CL_INVOCATION_COUNT_num),
415 GENX(CL_PRIMITIVES_COUNT_num),
416 GENX(PS_INVOCATION_COUNT_num),
417 GENX(HS_INVOCATION_COUNT_num),
418 GENX(DS_INVOCATION_COUNT_num),
419 GENX(CS_INVOCATION_COUNT_num),
420 };
421
422 static void
423 emit_pipeline_stat(struct gen_mi_builder *b, uint32_t stat,
424 struct anv_address addr)
425 {
426 STATIC_ASSERT(ANV_PIPELINE_STATISTICS_MASK ==
427 (1 << ARRAY_SIZE(vk_pipeline_stat_to_reg)) - 1);
428
429 assert(stat < ARRAY_SIZE(vk_pipeline_stat_to_reg));
430 gen_mi_store(b, gen_mi_mem64(addr),
431 gen_mi_reg64(vk_pipeline_stat_to_reg[stat]));
432 }
433
434 static void
435 emit_xfb_query(struct gen_mi_builder *b, uint32_t stream,
436 struct anv_address addr)
437 {
438 assert(stream < MAX_XFB_STREAMS);
439
440 gen_mi_store(b, gen_mi_mem64(anv_address_add(addr, 0)),
441 gen_mi_reg64(GENX(SO_NUM_PRIMS_WRITTEN0_num) + stream * 8));
442 gen_mi_store(b, gen_mi_mem64(anv_address_add(addr, 16)),
443 gen_mi_reg64(GENX(SO_PRIM_STORAGE_NEEDED0_num) + stream * 8));
444 }
445
446 void genX(CmdBeginQuery)(
447 VkCommandBuffer commandBuffer,
448 VkQueryPool queryPool,
449 uint32_t query,
450 VkQueryControlFlags flags)
451 {
452 genX(CmdBeginQueryIndexedEXT)(commandBuffer, queryPool, query, flags, 0);
453 }
454
455 void genX(CmdBeginQueryIndexedEXT)(
456 VkCommandBuffer commandBuffer,
457 VkQueryPool queryPool,
458 uint32_t query,
459 VkQueryControlFlags flags,
460 uint32_t index)
461 {
462 ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
463 ANV_FROM_HANDLE(anv_query_pool, pool, queryPool);
464 struct anv_address query_addr = anv_query_address(pool, query);
465
466 struct gen_mi_builder b;
467 gen_mi_builder_init(&b, &cmd_buffer->batch);
468
469 switch (pool->type) {
470 case VK_QUERY_TYPE_OCCLUSION:
471 emit_ps_depth_count(cmd_buffer, anv_address_add(query_addr, 8));
472 break;
473
474 case VK_QUERY_TYPE_PIPELINE_STATISTICS: {
475 /* TODO: This might only be necessary for certain stats */
476 anv_batch_emit(&cmd_buffer->batch, GENX(PIPE_CONTROL), pc) {
477 pc.CommandStreamerStallEnable = true;
478 pc.StallAtPixelScoreboard = true;
479 }
480
481 uint32_t statistics = pool->pipeline_statistics;
482 uint32_t offset = 8;
483 while (statistics) {
484 uint32_t stat = u_bit_scan(&statistics);
485 emit_pipeline_stat(&b, stat, anv_address_add(query_addr, offset));
486 offset += 16;
487 }
488 break;
489 }
490
491 case VK_QUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT:
492 anv_batch_emit(&cmd_buffer->batch, GENX(PIPE_CONTROL), pc) {
493 pc.CommandStreamerStallEnable = true;
494 pc.StallAtPixelScoreboard = true;
495 }
496 emit_xfb_query(&b, index, anv_address_add(query_addr, 8));
497 break;
498
499 default:
500 unreachable("");
501 }
502 }
503
504 void genX(CmdEndQuery)(
505 VkCommandBuffer commandBuffer,
506 VkQueryPool queryPool,
507 uint32_t query)
508 {
509 genX(CmdEndQueryIndexedEXT)(commandBuffer, queryPool, query, 0);
510 }
511
512 void genX(CmdEndQueryIndexedEXT)(
513 VkCommandBuffer commandBuffer,
514 VkQueryPool queryPool,
515 uint32_t query,
516 uint32_t index)
517 {
518 ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
519 ANV_FROM_HANDLE(anv_query_pool, pool, queryPool);
520 struct anv_address query_addr = anv_query_address(pool, query);
521
522 struct gen_mi_builder b;
523 gen_mi_builder_init(&b, &cmd_buffer->batch);
524
525 switch (pool->type) {
526 case VK_QUERY_TYPE_OCCLUSION:
527 emit_ps_depth_count(cmd_buffer, anv_address_add(query_addr, 16));
528 emit_query_availability(cmd_buffer, query_addr);
529 break;
530
531 case VK_QUERY_TYPE_PIPELINE_STATISTICS: {
532 /* TODO: This might only be necessary for certain stats */
533 anv_batch_emit(&cmd_buffer->batch, GENX(PIPE_CONTROL), pc) {
534 pc.CommandStreamerStallEnable = true;
535 pc.StallAtPixelScoreboard = true;
536 }
537
538 uint32_t statistics = pool->pipeline_statistics;
539 uint32_t offset = 16;
540 while (statistics) {
541 uint32_t stat = u_bit_scan(&statistics);
542 emit_pipeline_stat(&b, stat, anv_address_add(query_addr, offset));
543 offset += 16;
544 }
545
546 emit_query_availability(cmd_buffer, query_addr);
547 break;
548 }
549
550 case VK_QUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT:
551 anv_batch_emit(&cmd_buffer->batch, GENX(PIPE_CONTROL), pc) {
552 pc.CommandStreamerStallEnable = true;
553 pc.StallAtPixelScoreboard = true;
554 }
555
556 emit_xfb_query(&b, index, anv_address_add(query_addr, 16));
557 emit_query_availability(cmd_buffer, query_addr);
558 break;
559
560 default:
561 unreachable("");
562 }
563
564 /* When multiview is active the spec requires that N consecutive query
565 * indices are used, where N is the number of active views in the subpass.
566 * The spec allows that we only write the results to one of the queries
567 * but we still need to manage result availability for all the query indices.
568 * Since we only emit a single query for all active views in the
569 * first index, mark the other query indices as being already available
570 * with result 0.
571 */
572 if (cmd_buffer->state.subpass && cmd_buffer->state.subpass->view_mask) {
573 const uint32_t num_queries =
574 util_bitcount(cmd_buffer->state.subpass->view_mask);
575 if (num_queries > 1)
576 emit_zero_queries(cmd_buffer, &b, pool, query + 1, num_queries - 1);
577 }
578 }
579
580 #define TIMESTAMP 0x2358
581
582 void genX(CmdWriteTimestamp)(
583 VkCommandBuffer commandBuffer,
584 VkPipelineStageFlagBits pipelineStage,
585 VkQueryPool queryPool,
586 uint32_t query)
587 {
588 ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
589 ANV_FROM_HANDLE(anv_query_pool, pool, queryPool);
590 struct anv_address query_addr = anv_query_address(pool, query);
591
592 assert(pool->type == VK_QUERY_TYPE_TIMESTAMP);
593
594 struct gen_mi_builder b;
595 gen_mi_builder_init(&b, &cmd_buffer->batch);
596
597 switch (pipelineStage) {
598 case VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT:
599 gen_mi_store(&b, gen_mi_mem64(anv_address_add(query_addr, 8)),
600 gen_mi_reg64(TIMESTAMP));
601 break;
602
603 default:
604 /* Everything else is bottom-of-pipe */
605 anv_batch_emit(&cmd_buffer->batch, GENX(PIPE_CONTROL), pc) {
606 pc.DestinationAddressType = DAT_PPGTT;
607 pc.PostSyncOperation = WriteTimestamp;
608 pc.Address = anv_address_add(query_addr, 8);
609
610 if (GEN_GEN == 9 && cmd_buffer->device->info.gt == 4)
611 pc.CommandStreamerStallEnable = true;
612 }
613 break;
614 }
615
616 emit_query_availability(cmd_buffer, query_addr);
617
618 /* When multiview is active the spec requires that N consecutive query
619 * indices are used, where N is the number of active views in the subpass.
620 * The spec allows that we only write the results to one of the queries
621 * but we still need to manage result availability for all the query indices.
622 * Since we only emit a single query for all active views in the
623 * first index, mark the other query indices as being already available
624 * with result 0.
625 */
626 if (cmd_buffer->state.subpass && cmd_buffer->state.subpass->view_mask) {
627 const uint32_t num_queries =
628 util_bitcount(cmd_buffer->state.subpass->view_mask);
629 if (num_queries > 1)
630 emit_zero_queries(cmd_buffer, &b, pool, query + 1, num_queries - 1);
631 }
632 }
633
634 #if GEN_GEN > 7 || GEN_IS_HASWELL
635
636 static void
637 gpu_write_query_result(struct gen_mi_builder *b,
638 struct anv_address dst_addr,
639 VkQueryResultFlags flags,
640 uint32_t value_index,
641 struct gen_mi_value query_result)
642 {
643 if (flags & VK_QUERY_RESULT_64_BIT) {
644 struct anv_address res_addr = anv_address_add(dst_addr, value_index * 8);
645 gen_mi_store(b, gen_mi_mem64(res_addr), query_result);
646 } else {
647 struct anv_address res_addr = anv_address_add(dst_addr, value_index * 4);
648 gen_mi_store(b, gen_mi_mem32(res_addr), query_result);
649 }
650 }
651
652 static struct gen_mi_value
653 compute_query_result(struct gen_mi_builder *b, struct anv_address addr)
654 {
655 return gen_mi_isub(b, gen_mi_mem64(anv_address_add(addr, 8)),
656 gen_mi_mem64(anv_address_add(addr, 0)));
657 }
658
659 void genX(CmdCopyQueryPoolResults)(
660 VkCommandBuffer commandBuffer,
661 VkQueryPool queryPool,
662 uint32_t firstQuery,
663 uint32_t queryCount,
664 VkBuffer destBuffer,
665 VkDeviceSize destOffset,
666 VkDeviceSize destStride,
667 VkQueryResultFlags flags)
668 {
669 ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
670 ANV_FROM_HANDLE(anv_query_pool, pool, queryPool);
671 ANV_FROM_HANDLE(anv_buffer, buffer, destBuffer);
672
673 struct gen_mi_builder b;
674 gen_mi_builder_init(&b, &cmd_buffer->batch);
675 struct gen_mi_value result;
676
677 /* If render target writes are ongoing, request a render target cache flush
678 * to ensure proper ordering of the commands from the 3d pipe and the
679 * command streamer.
680 */
681 if (cmd_buffer->state.pending_pipe_bits & ANV_PIPE_RENDER_TARGET_BUFFER_WRITES) {
682 cmd_buffer->state.pending_pipe_bits |=
683 ANV_PIPE_RENDER_TARGET_CACHE_FLUSH_BIT;
684 }
685
686 if ((flags & VK_QUERY_RESULT_WAIT_BIT) ||
687 (cmd_buffer->state.pending_pipe_bits & ANV_PIPE_FLUSH_BITS)) {
688 cmd_buffer->state.pending_pipe_bits |= ANV_PIPE_CS_STALL_BIT;
689 genX(cmd_buffer_apply_pipe_flushes)(cmd_buffer);
690 }
691
692 struct anv_address dest_addr = anv_address_add(buffer->address, destOffset);
693 for (uint32_t i = 0; i < queryCount; i++) {
694 struct anv_address query_addr = anv_query_address(pool, firstQuery + i);
695 uint32_t idx = 0;
696 switch (pool->type) {
697 case VK_QUERY_TYPE_OCCLUSION:
698 result = compute_query_result(&b, anv_address_add(query_addr, 8));
699 gpu_write_query_result(&b, dest_addr, flags, idx++, result);
700 break;
701
702 case VK_QUERY_TYPE_PIPELINE_STATISTICS: {
703 uint32_t statistics = pool->pipeline_statistics;
704 while (statistics) {
705 uint32_t stat = u_bit_scan(&statistics);
706
707 result = compute_query_result(&b, anv_address_add(query_addr,
708 idx * 16 + 8));
709
710 /* WaDividePSInvocationCountBy4:HSW,BDW */
711 if ((cmd_buffer->device->info.gen == 8 ||
712 cmd_buffer->device->info.is_haswell) &&
713 (1 << stat) == VK_QUERY_PIPELINE_STATISTIC_FRAGMENT_SHADER_INVOCATIONS_BIT) {
714 result = gen_mi_ushr32_imm(&b, result, 2);
715 }
716
717 gpu_write_query_result(&b, dest_addr, flags, idx++, result);
718 }
719 assert(idx == util_bitcount(pool->pipeline_statistics));
720 break;
721 }
722
723 case VK_QUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT:
724 result = compute_query_result(&b, anv_address_add(query_addr, 8));
725 gpu_write_query_result(&b, dest_addr, flags, idx++, result);
726 result = compute_query_result(&b, anv_address_add(query_addr, 24));
727 gpu_write_query_result(&b, dest_addr, flags, idx++, result);
728 break;
729
730 case VK_QUERY_TYPE_TIMESTAMP:
731 result = gen_mi_mem64(anv_address_add(query_addr, 8));
732 gpu_write_query_result(&b, dest_addr, flags, 0, result);
733 break;
734
735 default:
736 unreachable("unhandled query type");
737 }
738
739 if (flags & VK_QUERY_RESULT_WITH_AVAILABILITY_BIT) {
740 gpu_write_query_result(&b, dest_addr, flags, idx,
741 gen_mi_mem64(query_addr));
742 }
743
744 dest_addr = anv_address_add(dest_addr, destStride);
745 }
746 }
747
748 #else
749 void genX(CmdCopyQueryPoolResults)(
750 VkCommandBuffer commandBuffer,
751 VkQueryPool queryPool,
752 uint32_t firstQuery,
753 uint32_t queryCount,
754 VkBuffer destBuffer,
755 VkDeviceSize destOffset,
756 VkDeviceSize destStride,
757 VkQueryResultFlags flags)
758 {
759 anv_finishme("Queries not yet supported on Ivy Bridge");
760 }
761 #endif