1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
/*
* Copyright 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef LIBVULKAN_DRIVER_H
#define LIBVULKAN_DRIVER_H 1
#include <inttypes.h>
#include <bitset>
#include <type_traits>
#include <log/log.h>
#include <vulkan/vulkan.h>
#include <hardware/hwvulkan.h>
#include "api_gen.h"
#include "driver_gen.h"
#include "debug_report.h"
#include "swapchain.h"
namespace vulkan {
// This is here so that we can embed api::{Instance,Device}Data in
// driver::{Instance,Device}Data to avoid pointer chasing. They are
// considered opaque to the driver layer.
namespace api {
struct InstanceData {
InstanceDispatchTable dispatch;
// LayerChain::ActiveLayer array
void* layers;
uint32_t layer_count;
// debug.vulkan.enable_callback
PFN_vkDestroyDebugReportCallbackEXT destroy_debug_callback;
VkDebugReportCallbackEXT debug_callback;
};
struct DeviceData {
DeviceDispatchTable dispatch;
};
} // namespace api
namespace driver {
VK_DEFINE_HANDLE(InstanceDispatchable)
VK_DEFINE_HANDLE(DeviceDispatchable)
struct InstanceData {
InstanceData(const VkAllocationCallbacks& alloc)
: opaque_api_data(),
allocator(alloc),
driver(),
get_device_proc_addr(nullptr) {
hook_extensions.set(ProcHook::EXTENSION_CORE);
}
api::InstanceData opaque_api_data;
const VkAllocationCallbacks allocator;
std::bitset<ProcHook::EXTENSION_COUNT> hook_extensions;
InstanceDriverTable driver;
PFN_vkGetDeviceProcAddr get_device_proc_addr;
DebugReportCallbackList debug_report_callbacks;
};
struct DeviceData {
DeviceData(const VkAllocationCallbacks& alloc,
const DebugReportCallbackList& debug_report_callbacks_)
: opaque_api_data(),
allocator(alloc),
debug_report_callbacks(debug_report_callbacks_),
driver() {
hook_extensions.set(ProcHook::EXTENSION_CORE);
}
api::DeviceData opaque_api_data;
const VkAllocationCallbacks allocator;
const DebugReportCallbackList& debug_report_callbacks;
std::bitset<ProcHook::EXTENSION_COUNT> hook_extensions;
VkDevice driver_device;
DeviceDriverTable driver;
};
bool Debuggable();
bool OpenHAL();
const VkAllocationCallbacks& GetDefaultAllocator();
// clang-format off
VKAPI_ATTR PFN_vkVoidFunction GetInstanceProcAddr(VkInstance instance, const char* pName);
VKAPI_ATTR PFN_vkVoidFunction GetDeviceProcAddr(VkDevice device, const char* pName);
VKAPI_ATTR VkResult EnumerateInstanceExtensionProperties(const char* pLayerName, uint32_t* pPropertyCount, VkExtensionProperties* pProperties);
VKAPI_ATTR VkResult EnumerateDeviceExtensionProperties(VkPhysicalDevice physicalDevice, const char* pLayerName, uint32_t* pPropertyCount, VkExtensionProperties* pProperties);
VKAPI_ATTR VkResult CreateInstance(const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance);
VKAPI_ATTR void DestroyInstance(VkInstance instance, const VkAllocationCallbacks* pAllocator);
VKAPI_ATTR VkResult CreateDevice(VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDevice* pDevice);
VKAPI_ATTR void DestroyDevice(VkDevice device, const VkAllocationCallbacks* pAllocator);
VKAPI_ATTR VkResult EnumeratePhysicalDevices(VkInstance instance, uint32_t* pPhysicalDeviceCount, VkPhysicalDevice* pPhysicalDevices);
VKAPI_ATTR void GetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue);
VKAPI_ATTR VkResult AllocateCommandBuffers(VkDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers);
// clang-format on
template <typename DispatchableType>
void StaticAssertDispatchable(DispatchableType) {
static_assert(
std::is_same<DispatchableType, VkInstance>::value ||
std::is_same<DispatchableType, VkPhysicalDevice>::value ||
std::is_same<DispatchableType, VkDevice>::value ||
std::is_same<DispatchableType, InstanceDispatchable>::value ||
std::is_same<DispatchableType, VkQueue>::value ||
std::is_same<DispatchableType, VkCommandBuffer>::value ||
std::is_same<DispatchableType, DeviceDispatchable>::value,
"unrecognized dispatchable type");
}
template <typename DispatchableType>
bool SetDataInternal(DispatchableType dispatchable, const void* data) {
StaticAssertDispatchable(dispatchable);
hwvulkan_dispatch_t* dispatch =
reinterpret_cast<hwvulkan_dispatch_t*>(dispatchable);
// must be magic or already set
if (dispatch->magic != HWVULKAN_DISPATCH_MAGIC && dispatch->vtbl != data) {
ALOGE("invalid dispatchable object magic 0x%" PRIxPTR, dispatch->magic);
return false;
}
dispatch->vtbl = data;
return true;
}
template <typename DispatchableType>
void* GetDataInternal(DispatchableType dispatchable) {
StaticAssertDispatchable(dispatchable);
const hwvulkan_dispatch_t* dispatch =
reinterpret_cast<const hwvulkan_dispatch_t*>(dispatchable);
return const_cast<void*>(dispatch->vtbl);
}
inline bool SetData(VkInstance instance, const InstanceData& data) {
return SetDataInternal(instance, &data);
}
inline bool SetData(VkPhysicalDevice physical_dev, const InstanceData& data) {
return SetDataInternal(physical_dev, &data);
}
inline bool SetData(InstanceDispatchable dispatchable,
const InstanceData& data) {
return SetDataInternal(dispatchable, &data);
}
inline bool SetData(VkDevice dev, const DeviceData& data) {
return SetDataInternal(dev, &data);
}
inline bool SetData(VkQueue queue, const DeviceData& data) {
return SetDataInternal(queue, &data);
}
inline bool SetData(VkCommandBuffer cmd, const DeviceData& data) {
return SetDataInternal(cmd, &data);
}
inline bool SetData(DeviceDispatchable dispatchable, const DeviceData& data) {
return SetDataInternal(dispatchable, &data);
}
inline InstanceData& GetData(VkInstance instance) {
return *reinterpret_cast<InstanceData*>(GetDataInternal(instance));
}
inline InstanceData& GetData(VkPhysicalDevice physical_dev) {
return *reinterpret_cast<InstanceData*>(GetDataInternal(physical_dev));
}
inline InstanceData& GetData(InstanceDispatchable dispatchable) {
return *reinterpret_cast<InstanceData*>(GetDataInternal(dispatchable));
}
inline DeviceData& GetData(VkDevice dev) {
return *reinterpret_cast<DeviceData*>(GetDataInternal(dev));
}
inline DeviceData& GetData(VkQueue queue) {
return *reinterpret_cast<DeviceData*>(GetDataInternal(queue));
}
inline DeviceData& GetData(VkCommandBuffer cmd) {
return *reinterpret_cast<DeviceData*>(GetDataInternal(cmd));
}
inline DeviceData& GetData(DeviceDispatchable dispatchable) {
return *reinterpret_cast<DeviceData*>(GetDataInternal(dispatchable));
}
template <typename DispatchableType>
const DebugReportLogger Logger(DispatchableType dispatchable) {
return DebugReportLogger(GetData(dispatchable).debug_report_callbacks);
}
} // namespace driver
} // namespace vulkan
#endif // LIBVULKAN_DRIVER_H
|