4ef9d8c4b0c8a57e8bee84e5f0ebe06a9045fb88
[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 VkResult 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 return VK_SUCCESS;
87 }
88
89 VkResult anv_GetQueryPoolResults(
90 VkDevice _device,
91 VkQueryPool queryPool,
92 uint32_t startQuery,
93 uint32_t queryCount,
94 size_t* pDataSize,
95 void* pData,
96 VkQueryResultFlags flags)
97 {
98 ANV_FROM_HANDLE(anv_device, device, _device);
99 ANV_FROM_HANDLE(anv_query_pool, pool, queryPool);
100 struct anv_query_pool_slot *slot = pool->bo.map;
101 int64_t timeout = INT64_MAX;
102 uint32_t *dst32 = pData;
103 uint64_t *dst64 = pData;
104 uint64_t result;
105 int ret;
106
107 if (flags & VK_QUERY_RESULT_WITH_AVAILABILITY_BIT) {
108 /* Where is the availabilty info supposed to go? */
109 anv_finishme("VK_QUERY_RESULT_WITH_AVAILABILITY_BIT");
110 return VK_UNSUPPORTED;
111 }
112
113 assert(pool->type == VK_QUERY_TYPE_OCCLUSION);
114
115 if (flags & VK_QUERY_RESULT_64_BIT)
116 *pDataSize = queryCount * sizeof(uint64_t);
117 else
118 *pDataSize = queryCount * sizeof(uint32_t);
119
120 if (pData == NULL)
121 return VK_SUCCESS;
122
123 if (flags & VK_QUERY_RESULT_WAIT_BIT) {
124 ret = anv_gem_wait(device, pool->bo.gem_handle, &timeout);
125 if (ret == -1)
126 return vk_errorf(VK_ERROR_UNKNOWN, "gem_wait failed %m");
127 }
128
129 for (uint32_t i = 0; i < queryCount; i++) {
130 result = slot[startQuery + i].end - slot[startQuery + i].begin;
131 if (flags & VK_QUERY_RESULT_64_BIT) {
132 *dst64++ = result;
133 } else {
134 if (result > UINT32_MAX)
135 result = UINT32_MAX;
136 *dst32++ = result;
137 }
138 }
139
140 return VK_SUCCESS;
141 }
142
143 void anv_CmdResetQueryPool(
144 VkCmdBuffer cmdBuffer,
145 VkQueryPool queryPool,
146 uint32_t startQuery,
147 uint32_t queryCount)
148 {
149 stub();
150 }