vk/0.170.2: Make destructors return void
[mesa.git] / src / vulkan / anv_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 VkResult anv_CreateQueryPool(
33 VkDevice _device,
34 const VkQueryPoolCreateInfo* pCreateInfo,
35 VkQueryPool* pQueryPool)
36 {
37 ANV_FROM_HANDLE(anv_device, device, _device);
38 struct anv_query_pool *pool;
39 VkResult result;
40 size_t size;
41
42 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO);
43
44 switch (pCreateInfo->queryType) {
45 case VK_QUERY_TYPE_OCCLUSION:
46 break;
47 case VK_QUERY_TYPE_PIPELINE_STATISTICS:
48 return VK_UNSUPPORTED;
49 default:
50 unreachable("");
51 }
52
53 pool = anv_device_alloc(device, sizeof(*pool), 8,
54 VK_SYSTEM_ALLOC_TYPE_API_OBJECT);
55 if (pool == NULL)
56 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
57
58 size = pCreateInfo->slots * sizeof(struct anv_query_pool_slot);
59 result = anv_bo_init_new(&pool->bo, device, size);
60 if (result != VK_SUCCESS)
61 goto fail;
62
63 pool->bo.map = anv_gem_mmap(device, pool->bo.gem_handle, 0, size);
64
65 *pQueryPool = anv_query_pool_to_handle(pool);
66
67 return VK_SUCCESS;
68
69 fail:
70 anv_device_free(device, pool);
71
72 return result;
73 }
74
75 void anv_DestroyQueryPool(
76 VkDevice _device,
77 VkQueryPool _pool)
78 {
79 ANV_FROM_HANDLE(anv_device, device, _device);
80 ANV_FROM_HANDLE(anv_query_pool, pool, _pool);
81
82 anv_gem_munmap(pool->bo.map, pool->bo.size);
83 anv_gem_close(device, pool->bo.gem_handle);
84 anv_device_free(device, pool);
85 }
86
87 VkResult anv_GetQueryPoolResults(
88 VkDevice _device,
89 VkQueryPool queryPool,
90 uint32_t startQuery,
91 uint32_t queryCount,
92 size_t* pDataSize,
93 void* pData,
94 VkQueryResultFlags flags)
95 {
96 ANV_FROM_HANDLE(anv_device, device, _device);
97 ANV_FROM_HANDLE(anv_query_pool, pool, queryPool);
98 struct anv_query_pool_slot *slot = pool->bo.map;
99 int64_t timeout = INT64_MAX;
100 uint32_t *dst32 = pData;
101 uint64_t *dst64 = pData;
102 uint64_t result;
103 int ret;
104
105 if (flags & VK_QUERY_RESULT_WITH_AVAILABILITY_BIT) {
106 /* Where is the availabilty info supposed to go? */
107 anv_finishme("VK_QUERY_RESULT_WITH_AVAILABILITY_BIT");
108 return VK_UNSUPPORTED;
109 }
110
111 assert(pool->type == VK_QUERY_TYPE_OCCLUSION);
112
113 if (flags & VK_QUERY_RESULT_64_BIT)
114 *pDataSize = queryCount * sizeof(uint64_t);
115 else
116 *pDataSize = queryCount * sizeof(uint32_t);
117
118 if (pData == NULL)
119 return VK_SUCCESS;
120
121 if (flags & VK_QUERY_RESULT_WAIT_BIT) {
122 ret = anv_gem_wait(device, pool->bo.gem_handle, &timeout);
123 if (ret == -1)
124 return vk_errorf(VK_ERROR_UNKNOWN, "gem_wait failed %m");
125 }
126
127 for (uint32_t i = 0; i < queryCount; i++) {
128 result = slot[startQuery + i].end - slot[startQuery + i].begin;
129 if (flags & VK_QUERY_RESULT_64_BIT) {
130 *dst64++ = result;
131 } else {
132 if (result > UINT32_MAX)
133 result = UINT32_MAX;
134 *dst32++ = result;
135 }
136 }
137
138 return VK_SUCCESS;
139 }
140
141 void anv_CmdResetQueryPool(
142 VkCmdBuffer cmdBuffer,
143 VkQueryPool queryPool,
144 uint32_t startQuery,
145 uint32_t queryCount)
146 {
147 stub();
148 }