| Mark Lobodzinski | 6eda00a | 2016-02-02 15:55:36 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2015-2016 The Khronos Group Inc. |
| 2 | * Copyright (c) 2015-2016 Valve Corporation |
| 3 | * Copyright (c) 2015-2016 LunarG, Inc. |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 4 | * |
| Jon Ashburn | 3ebf125 | 2016-04-19 11:30:31 -0600 | [diff] [blame] | 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 8 | * |
| Jon Ashburn | 3ebf125 | 2016-04-19 11:30:31 -0600 | [diff] [blame] | 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 10 | * |
| Jon Ashburn | 3ebf125 | 2016-04-19 11:30:31 -0600 | [diff] [blame] | 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 16 | * |
| Courtney Goeltzenleuchter | 0555952 | 2015-10-30 11:14:30 -0600 | [diff] [blame] | 17 | * Author: Courtney Goeltzenleuchter <courtney@LunarG.com> |
| 18 | * Author: Tobin Ehlis <tobin@lunarg.com> |
| 19 | * |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #ifndef LAYER_LOGGING_H |
| 23 | #define LAYER_LOGGING_H |
| 24 | |
| Mark Lobodzinski | b87f902 | 2016-05-24 16:04:56 -0600 | [diff] [blame] | 25 | #include "vk_loader_layer.h" |
| Tobin Ehlis | 2d9deec | 2016-04-21 14:19:26 -0600 | [diff] [blame] | 26 | #include "vk_layer_config.h" |
| Tobin Ehlis | a0cb02e | 2015-07-03 10:15:26 -0600 | [diff] [blame] | 27 | #include "vk_layer_data.h" |
| 28 | #include "vk_layer_table.h" |
| Tobin Ehlis | 2d9deec | 2016-04-21 14:19:26 -0600 | [diff] [blame] | 29 | #include "vk_loader_platform.h" |
| 30 | #include "vulkan/vk_layer.h" |
| Mark Lobodzinski | c9d8165 | 2017-08-10 11:01:17 -0600 | [diff] [blame] | 31 | #include <signal.h> |
| Karl Schultz | d7f3754 | 2016-05-10 11:36:08 -0600 | [diff] [blame] | 32 | #include <cinttypes> |
| Tobin Ehlis | 2d9deec | 2016-04-21 14:19:26 -0600 | [diff] [blame] | 33 | #include <stdarg.h> |
| 34 | #include <stdbool.h> |
| 35 | #include <stdio.h> |
| 36 | #include <unordered_map> |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 37 | #include <vector> |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 38 | |
| Courtney Goeltzenleuchter | e45acec | 2015-06-14 12:03:26 -0600 | [diff] [blame] | 39 | typedef struct _debug_report_data { |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 40 | VkLayerDbgFunctionNode *debug_callback_list; |
| 41 | VkLayerDbgFunctionNode *default_debug_callback_list; |
| Courtney Goeltzenleuchter | b9f0bf3 | 2015-06-14 09:50:18 -0600 | [diff] [blame] | 42 | VkFlags active_flags; |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 43 | bool g_DEBUG_REPORT; |
| Tony Barbour | 3431dac | 2017-06-19 16:50:37 -0600 | [diff] [blame] | 44 | std::unordered_map<uint64_t, std::string> *debugObjectNameMap; |
| Courtney Goeltzenleuchter | e45acec | 2015-06-14 12:03:26 -0600 | [diff] [blame] | 45 | } debug_report_data; |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 46 | |
| Tobin Ehlis | 8d6acde | 2017-02-08 07:40:40 -0700 | [diff] [blame] | 47 | template debug_report_data *GetLayerDataPtr<debug_report_data>(void *data_key, |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 48 | std::unordered_map<void *, debug_report_data *> &data_map); |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 49 | |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 50 | // Forward Declarations |
| 51 | static inline bool debug_report_log_msg(const debug_report_data *debug_data, VkFlags msgFlags, |
| 52 | VkDebugReportObjectTypeEXT objectType, uint64_t srcObject, size_t location, int32_t msgCode, |
| 53 | const char *pLayerPrefix, const char *pMsg); |
| 54 | |
| 55 | // Add a debug message callback node structure to the specified callback linked list |
| 56 | static inline void AddDebugMessageCallback(debug_report_data *debug_data, VkLayerDbgFunctionNode **list_head, |
| 57 | VkLayerDbgFunctionNode *new_node) { |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 58 | new_node->pNext = *list_head; |
| 59 | *list_head = new_node; |
| 60 | } |
| 61 | |
| 62 | // Remove specified debug message callback node structure from the specified callback linked list |
| 63 | static inline void RemoveDebugMessageCallback(debug_report_data *debug_data, VkLayerDbgFunctionNode **list_head, |
| 64 | VkDebugReportCallbackEXT callback) { |
| 65 | VkLayerDbgFunctionNode *cur_callback = *list_head; |
| 66 | VkLayerDbgFunctionNode *prev_callback = cur_callback; |
| 67 | bool matched = false; |
| Mark Lobodzinski | 05b04cd | 2016-11-10 09:12:57 -0700 | [diff] [blame] | 68 | VkFlags local_flags = 0; |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 69 | |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 70 | while (cur_callback) { |
| 71 | if (cur_callback->msgCallback == callback) { |
| 72 | matched = true; |
| 73 | prev_callback->pNext = cur_callback->pNext; |
| 74 | if (*list_head == cur_callback) { |
| 75 | *list_head = cur_callback->pNext; |
| 76 | } |
| 77 | debug_report_log_msg(debug_data, VK_DEBUG_REPORT_DEBUG_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_EXT, |
| Mark Lobodzinski | 863d5de | 2017-05-22 10:10:07 -0600 | [diff] [blame] | 78 | reinterpret_cast<uint64_t &>(cur_callback->msgCallback), 0, 0, "DebugReport", |
| 79 | "Destroyed callback\n"); |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 80 | } else { |
| 81 | matched = false; |
| Mark Lobodzinski | 05b04cd | 2016-11-10 09:12:57 -0700 | [diff] [blame] | 82 | local_flags |= cur_callback->msgFlags; |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 83 | } |
| 84 | prev_callback = cur_callback; |
| 85 | cur_callback = cur_callback->pNext; |
| 86 | if (matched) { |
| 87 | free(prev_callback); |
| 88 | } |
| 89 | } |
| Mark Lobodzinski | 05b04cd | 2016-11-10 09:12:57 -0700 | [diff] [blame] | 90 | debug_data->active_flags = local_flags; |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | // Removes all debug callback function nodes from the specified callback linked lists and frees their resources |
| 94 | static inline void RemoveAllMessageCallbacks(debug_report_data *debug_data, VkLayerDbgFunctionNode **list_head) { |
| 95 | VkLayerDbgFunctionNode *current_callback = *list_head; |
| 96 | VkLayerDbgFunctionNode *prev_callback = current_callback; |
| 97 | |
| 98 | while (current_callback) { |
| 99 | prev_callback = current_callback->pNext; |
| 100 | debug_report_log_msg(debug_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_EXT, |
| Mark Lobodzinski | 863d5de | 2017-05-22 10:10:07 -0600 | [diff] [blame] | 101 | (uint64_t)current_callback->msgCallback, 0, 0, "DebugReport", |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 102 | "Debug Report callbacks not removed before DestroyInstance"); |
| 103 | free(current_callback); |
| 104 | current_callback = prev_callback; |
| 105 | } |
| 106 | *list_head = NULL; |
| 107 | } |
| 108 | |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 109 | // Utility function to handle reporting |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 110 | static inline bool debug_report_log_msg(const debug_report_data *debug_data, VkFlags msgFlags, |
| 111 | VkDebugReportObjectTypeEXT objectType, uint64_t srcObject, size_t location, int32_t msgCode, |
| 112 | const char *pLayerPrefix, const char *pMsg) { |
| Dustin Graves | 8f1eab9 | 2016-04-05 09:41:17 -0600 | [diff] [blame] | 113 | bool bail = false; |
| Mark Lobodzinski | 55a197f | 2016-06-21 15:54:57 -0600 | [diff] [blame] | 114 | VkLayerDbgFunctionNode *pTrav = NULL; |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 115 | |
| Mark Lobodzinski | 55a197f | 2016-06-21 15:54:57 -0600 | [diff] [blame] | 116 | if (debug_data->debug_callback_list != NULL) { |
| 117 | pTrav = debug_data->debug_callback_list; |
| 118 | } else { |
| 119 | pTrav = debug_data->default_debug_callback_list; |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 120 | } |
| 121 | |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 122 | while (pTrav) { |
| 123 | if (pTrav->msgFlags & msgFlags) { |
| Tony Barbour | 3431dac | 2017-06-19 16:50:37 -0600 | [diff] [blame] | 124 | auto it = debug_data->debugObjectNameMap->find(srcObject); |
| 125 | if (it == debug_data->debugObjectNameMap->end()) { |
| 126 | if (pTrav->pfnMsgCallback(msgFlags, objectType, srcObject, location, msgCode, pLayerPrefix, pMsg, |
| 127 | pTrav->pUserData)) { |
| 128 | bail = true; |
| 129 | } |
| 130 | } else { |
| 131 | std::string newMsg = "SrcObject name = "; |
| 132 | newMsg.append(it->second.c_str()); |
| 133 | newMsg.append(" "); |
| 134 | newMsg.append(pMsg); |
| 135 | if (pTrav->pfnMsgCallback(msgFlags, objectType, srcObject, location, msgCode, pLayerPrefix, newMsg.c_str(), |
| 136 | pTrav->pUserData)) { |
| 137 | bail = true; |
| 138 | } |
| Courtney Goeltzenleuchter | 0664083 | 2015-09-04 13:52:24 -0600 | [diff] [blame] | 139 | } |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 140 | } |
| 141 | pTrav = pTrav->pNext; |
| 142 | } |
| Courtney Goeltzenleuchter | 0664083 | 2015-09-04 13:52:24 -0600 | [diff] [blame] | 143 | |
| 144 | return bail; |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 145 | } |
| 146 | |
| Mark Lobodzinski | 64318ba | 2017-01-26 13:34:13 -0700 | [diff] [blame] | 147 | static inline debug_report_data *debug_report_create_instance( |
| 148 | VkLayerInstanceDispatchTable *table, VkInstance inst, uint32_t extension_count, |
| 149 | const char *const *ppEnabledExtensions) // layer or extension name to be enabled |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 150 | { |
| Mark Young | aa1aa3a | 2016-07-05 16:41:50 -0600 | [diff] [blame] | 151 | debug_report_data *debug_data = (debug_report_data *)malloc(sizeof(debug_report_data)); |
| Mark Lobodzinski | 64318ba | 2017-01-26 13:34:13 -0700 | [diff] [blame] | 152 | if (!debug_data) return NULL; |
| Courtney Goeltzenleuchter | e45acec | 2015-06-14 12:03:26 -0600 | [diff] [blame] | 153 | |
| 154 | memset(debug_data, 0, sizeof(debug_report_data)); |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 155 | for (uint32_t i = 0; i < extension_count; i++) { |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 156 | // TODO: Check other property fields |
| Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 157 | if (strcmp(ppEnabledExtensions[i], VK_EXT_DEBUG_REPORT_EXTENSION_NAME) == 0) { |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 158 | debug_data->g_DEBUG_REPORT = true; |
| 159 | } |
| 160 | } |
| Tony Barbour | 3431dac | 2017-06-19 16:50:37 -0600 | [diff] [blame] | 161 | debug_data->debugObjectNameMap = new std::unordered_map<uint64_t, std::string>; |
| Courtney Goeltzenleuchter | e45acec | 2015-06-14 12:03:26 -0600 | [diff] [blame] | 162 | return debug_data; |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 163 | } |
| 164 | |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 165 | static inline void layer_debug_report_destroy_instance(debug_report_data *debug_data) { |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 166 | if (debug_data) { |
| 167 | RemoveAllMessageCallbacks(debug_data, &debug_data->default_debug_callback_list); |
| 168 | RemoveAllMessageCallbacks(debug_data, &debug_data->debug_callback_list); |
| Tony Barbour | 3431dac | 2017-06-19 16:50:37 -0600 | [diff] [blame] | 169 | delete debug_data->debugObjectNameMap; |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 170 | free(debug_data); |
| Courtney Goeltzenleuchter | ee4027d | 2015-06-28 13:01:17 -0600 | [diff] [blame] | 171 | } |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 172 | } |
| 173 | |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 174 | static inline debug_report_data *layer_debug_report_create_device(debug_report_data *instance_debug_data, VkDevice device) { |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 175 | // DEBUG_REPORT shares data between Instance and Device, |
| 176 | // so just return instance's data pointer |
| Courtney Goeltzenleuchter | b9f0bf3 | 2015-06-14 09:50:18 -0600 | [diff] [blame] | 177 | return instance_debug_data; |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 178 | } |
| 179 | |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 180 | static inline void layer_debug_report_destroy_device(VkDevice device) { |
| 181 | // Nothing to do since we're using instance data record |
| 182 | } |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 183 | |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 184 | static inline void layer_destroy_msg_callback(debug_report_data *debug_data, VkDebugReportCallbackEXT callback, |
| 185 | const VkAllocationCallbacks *pAllocator) { |
| 186 | RemoveDebugMessageCallback(debug_data, &debug_data->debug_callback_list, callback); |
| 187 | RemoveDebugMessageCallback(debug_data, &debug_data->default_debug_callback_list, callback); |
| 188 | } |
| 189 | |
| 190 | static inline VkResult layer_create_msg_callback(debug_report_data *debug_data, bool default_callback, |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 191 | const VkDebugReportCallbackCreateInfoEXT *pCreateInfo, |
| 192 | const VkAllocationCallbacks *pAllocator, VkDebugReportCallbackEXT *pCallback) { |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 193 | VkLayerDbgFunctionNode *pNewDbgFuncNode = (VkLayerDbgFunctionNode *)malloc(sizeof(VkLayerDbgFunctionNode)); |
| Mark Lobodzinski | 64318ba | 2017-01-26 13:34:13 -0700 | [diff] [blame] | 194 | if (!pNewDbgFuncNode) return VK_ERROR_OUT_OF_HOST_MEMORY; |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 195 | |
| Tobin Ehlis | eb7715d | 2015-09-21 09:36:47 -0600 | [diff] [blame] | 196 | // Handle of 0 is logging_callback so use allocated Node address as unique handle |
| Mark Lobodzinski | 64318ba | 2017-01-26 13:34:13 -0700 | [diff] [blame] | 197 | if (!(*pCallback)) *pCallback = (VkDebugReportCallbackEXT)pNewDbgFuncNode; |
| Courtney Goeltzenleuchter | 05854bf | 2015-11-30 12:13:14 -0700 | [diff] [blame] | 198 | pNewDbgFuncNode->msgCallback = *pCallback; |
| 199 | pNewDbgFuncNode->pfnMsgCallback = pCreateInfo->pfnCallback; |
| 200 | pNewDbgFuncNode->msgFlags = pCreateInfo->flags; |
| 201 | pNewDbgFuncNode->pUserData = pCreateInfo->pUserData; |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 202 | |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 203 | if (default_callback) { |
| 204 | AddDebugMessageCallback(debug_data, &debug_data->default_debug_callback_list, pNewDbgFuncNode); |
| Mark Lobodzinski | 2134fc3 | 2016-11-10 09:10:08 -0700 | [diff] [blame] | 205 | debug_data->active_flags |= pCreateInfo->flags; |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 206 | } else { |
| 207 | AddDebugMessageCallback(debug_data, &debug_data->debug_callback_list, pNewDbgFuncNode); |
| Mark Lobodzinski | 2134fc3 | 2016-11-10 09:10:08 -0700 | [diff] [blame] | 208 | debug_data->active_flags = pCreateInfo->flags; |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 209 | } |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 210 | |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 211 | debug_report_log_msg(debug_data, VK_DEBUG_REPORT_DEBUG_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_EXT, |
| Mark Lobodzinski | 863d5de | 2017-05-22 10:10:07 -0600 | [diff] [blame] | 212 | (uint64_t)*pCallback, 0, 0, "DebugReport", "Added callback"); |
| Courtney Goeltzenleuchter | e45acec | 2015-06-14 12:03:26 -0600 | [diff] [blame] | 213 | return VK_SUCCESS; |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 214 | } |
| 215 | |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 216 | static inline PFN_vkVoidFunction debug_report_get_instance_proc_addr(debug_report_data *debug_data, const char *funcName) { |
| Courtney Goeltzenleuchter | e45acec | 2015-06-14 12:03:26 -0600 | [diff] [blame] | 217 | if (!debug_data || !debug_data->g_DEBUG_REPORT) { |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 218 | return NULL; |
| 219 | } |
| 220 | |
| Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 221 | if (!strcmp(funcName, "vkCreateDebugReportCallbackEXT")) { |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 222 | return (PFN_vkVoidFunction)vkCreateDebugReportCallbackEXT; |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 223 | } |
| Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 224 | if (!strcmp(funcName, "vkDestroyDebugReportCallbackEXT")) { |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 225 | return (PFN_vkVoidFunction)vkDestroyDebugReportCallbackEXT; |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 226 | } |
| Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 227 | if (!strcmp(funcName, "vkDebugReportMessageEXT")) { |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 228 | return (PFN_vkVoidFunction)vkDebugReportMessageEXT; |
| Courtney Goeltzenleuchter | 822e8d7 | 2015-11-30 15:28:25 -0700 | [diff] [blame] | 229 | } |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 230 | return NULL; |
| 231 | } |
| 232 | |
| Ian Elliott | ed6b5ac | 2016-04-28 09:08:13 -0600 | [diff] [blame] | 233 | // This utility (called at vkCreateInstance() time), looks at a pNext chain. |
| 234 | // It counts any VkDebugReportCallbackCreateInfoEXT structs that it finds. It |
| 235 | // then allocates an array that can hold that many structs, as well as that |
| 236 | // many VkDebugReportCallbackEXT handles. It then copies each |
| 237 | // VkDebugReportCallbackCreateInfoEXT, and initializes each handle. |
| Mark Lobodzinski | 1bcbdf9 | 2018-02-07 10:00:22 -0700 | [diff] [blame^] | 238 | static inline VkResult layer_copy_tmp_callbacks(const void *pChain, uint32_t *num_callbacks, |
| 239 | VkDebugReportCallbackCreateInfoEXT **infos, VkDebugReportCallbackEXT **callbacks) { |
| Ian Elliott | ed6b5ac | 2016-04-28 09:08:13 -0600 | [diff] [blame] | 240 | uint32_t n = *num_callbacks = 0; |
| 241 | |
| 242 | const void *pNext = pChain; |
| 243 | while (pNext) { |
| 244 | // 1st, count the number VkDebugReportCallbackCreateInfoEXT: |
| 245 | if (((VkDebugReportCallbackCreateInfoEXT *)pNext)->sType == VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT) { |
| 246 | n++; |
| 247 | } |
| 248 | pNext = (void *)((VkDebugReportCallbackCreateInfoEXT *)pNext)->pNext; |
| 249 | } |
| 250 | if (n == 0) { |
| 251 | return VK_SUCCESS; |
| 252 | } |
| 253 | |
| 254 | // 2nd, allocate memory for each VkDebugReportCallbackCreateInfoEXT: |
| 255 | VkDebugReportCallbackCreateInfoEXT *pInfos = *infos = |
| 256 | ((VkDebugReportCallbackCreateInfoEXT *)malloc(n * sizeof(VkDebugReportCallbackCreateInfoEXT))); |
| 257 | if (!pInfos) { |
| 258 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 259 | } |
| 260 | // 3rd, allocate memory for a unique handle for each callback: |
| 261 | VkDebugReportCallbackEXT *pCallbacks = *callbacks = ((VkDebugReportCallbackEXT *)malloc(n * sizeof(VkDebugReportCallbackEXT))); |
| 262 | if (!pCallbacks) { |
| 263 | free(pInfos); |
| 264 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 265 | } |
| 266 | // 4th, copy each VkDebugReportCallbackCreateInfoEXT for use by |
| 267 | // vkDestroyInstance, and assign a unique handle to each callback (just |
| 268 | // use the address of the copied VkDebugReportCallbackCreateInfoEXT): |
| 269 | pNext = pChain; |
| 270 | while (pNext) { |
| 271 | if (((VkInstanceCreateInfo *)pNext)->sType == VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT) { |
| 272 | memcpy(pInfos, pNext, sizeof(VkDebugReportCallbackCreateInfoEXT)); |
| 273 | *pCallbacks++ = (VkDebugReportCallbackEXT)pInfos++; |
| 274 | } |
| 275 | pNext = (void *)((VkInstanceCreateInfo *)pNext)->pNext; |
| 276 | } |
| 277 | |
| 278 | *num_callbacks = n; |
| 279 | return VK_SUCCESS; |
| 280 | } |
| 281 | |
| 282 | // This utility frees the arrays allocated by layer_copy_tmp_callbacks() |
| Mark Lobodzinski | 1bcbdf9 | 2018-02-07 10:00:22 -0700 | [diff] [blame^] | 283 | static inline void layer_free_tmp_callbacks(VkDebugReportCallbackCreateInfoEXT *infos, VkDebugReportCallbackEXT *callbacks) { |
| Ian Elliott | ed6b5ac | 2016-04-28 09:08:13 -0600 | [diff] [blame] | 284 | free(infos); |
| 285 | free(callbacks); |
| 286 | } |
| 287 | |
| 288 | // This utility enables all of the VkDebugReportCallbackCreateInfoEXT structs |
| 289 | // that were copied by layer_copy_tmp_callbacks() |
| Mark Lobodzinski | 1bcbdf9 | 2018-02-07 10:00:22 -0700 | [diff] [blame^] | 290 | static inline VkResult layer_enable_tmp_callbacks(debug_report_data *debug_data, uint32_t num_callbacks, |
| 291 | VkDebugReportCallbackCreateInfoEXT *infos, VkDebugReportCallbackEXT *callbacks) { |
| Ian Elliott | ed6b5ac | 2016-04-28 09:08:13 -0600 | [diff] [blame] | 292 | VkResult rtn = VK_SUCCESS; |
| 293 | for (uint32_t i = 0; i < num_callbacks; i++) { |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 294 | rtn = layer_create_msg_callback(debug_data, false, &infos[i], NULL, &callbacks[i]); |
| Ian Elliott | ed6b5ac | 2016-04-28 09:08:13 -0600 | [diff] [blame] | 295 | if (rtn != VK_SUCCESS) { |
| 296 | for (uint32_t j = 0; j < i; j++) { |
| 297 | layer_destroy_msg_callback(debug_data, callbacks[j], NULL); |
| 298 | } |
| 299 | return rtn; |
| 300 | } |
| 301 | } |
| 302 | return rtn; |
| 303 | } |
| 304 | |
| 305 | // This utility disables all of the VkDebugReportCallbackCreateInfoEXT structs |
| 306 | // that were copied by layer_copy_tmp_callbacks() |
| Mark Lobodzinski | 1bcbdf9 | 2018-02-07 10:00:22 -0700 | [diff] [blame^] | 307 | static inline void layer_disable_tmp_callbacks(debug_report_data *debug_data, uint32_t num_callbacks, |
| 308 | VkDebugReportCallbackEXT *callbacks) { |
| Ian Elliott | ed6b5ac | 2016-04-28 09:08:13 -0600 | [diff] [blame] | 309 | for (uint32_t i = 0; i < num_callbacks; i++) { |
| 310 | layer_destroy_msg_callback(debug_data, callbacks[i], NULL); |
| 311 | } |
| 312 | } |
| 313 | |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 314 | // Checks if the message will get logged. |
| 315 | // Allows layer to defer collecting & formating data if the |
| 316 | // message will be discarded. |
| Dustin Graves | 8f1eab9 | 2016-04-05 09:41:17 -0600 | [diff] [blame] | 317 | static inline bool will_log_msg(debug_report_data *debug_data, VkFlags msgFlags) { |
| Courtney Goeltzenleuchter | 6a564a1 | 2015-09-18 16:30:24 -0600 | [diff] [blame] | 318 | if (!debug_data || !(debug_data->active_flags & msgFlags)) { |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 319 | // Message is not wanted |
| Courtney Goeltzenleuchter | 6a564a1 | 2015-09-18 16:30:24 -0600 | [diff] [blame] | 320 | return false; |
| 321 | } |
| 322 | |
| 323 | return true; |
| 324 | } |
| John Zulauf | 6664e27 | 2018-01-17 11:00:22 -0700 | [diff] [blame] | 325 | #ifndef WIN32 |
| Mark Lobodzinski | 1bcbdf9 | 2018-02-07 10:00:22 -0700 | [diff] [blame^] | 326 | static inline int string_sprintf(std::string *output, const char *fmt, ...) __attribute__((format(printf, 2, 3))); |
| John Zulauf | 6664e27 | 2018-01-17 11:00:22 -0700 | [diff] [blame] | 327 | #endif |
| Mark Lobodzinski | 1bcbdf9 | 2018-02-07 10:00:22 -0700 | [diff] [blame^] | 328 | static inline int string_sprintf(std::string *output, const char *fmt, ...) { |
| John Zulauf | 6664e27 | 2018-01-17 11:00:22 -0700 | [diff] [blame] | 329 | std::string &formatted = *output; |
| 330 | va_list argptr; |
| 331 | va_start(argptr, fmt); |
| 332 | int reserve = vsnprintf(nullptr, 0, fmt, argptr); |
| 333 | va_end(argptr); |
| 334 | formatted.reserve(reserve + 1); |
| 335 | va_start(argptr, fmt); |
| 336 | int result = vsnprintf((char *)formatted.data(), formatted.capacity(), fmt, argptr); |
| 337 | va_end(argptr); |
| 338 | assert(result == reserve); |
| 339 | return result; |
| 340 | } |
| Courtney Goeltzenleuchter | 6a564a1 | 2015-09-18 16:30:24 -0600 | [diff] [blame] | 341 | |
| Chris Forbes | 8a25bce | 2016-03-24 12:06:35 +1300 | [diff] [blame] | 342 | #ifdef WIN32 |
| 343 | static inline int vasprintf(char **strp, char const *fmt, va_list ap) { |
| 344 | *strp = nullptr; |
| 345 | int size = _vscprintf(fmt, ap); |
| 346 | if (size >= 0) { |
| Mark Lobodzinski | 729a8d3 | 2017-01-26 12:16:30 -0700 | [diff] [blame] | 347 | *strp = (char *)malloc(size + 1); |
| Chris Forbes | 8a25bce | 2016-03-24 12:06:35 +1300 | [diff] [blame] | 348 | if (!*strp) { |
| 349 | return -1; |
| 350 | } |
| Mark Lobodzinski | 729a8d3 | 2017-01-26 12:16:30 -0700 | [diff] [blame] | 351 | _vsnprintf(*strp, size + 1, fmt, ap); |
| Chris Forbes | 8a25bce | 2016-03-24 12:06:35 +1300 | [diff] [blame] | 352 | } |
| 353 | return size; |
| 354 | } |
| 355 | #endif |
| 356 | |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 357 | // Output log message via DEBUG_REPORT |
| 358 | // Takes format and variable arg list so that output string |
| 359 | // is only computed if a message needs to be logged |
| Michael Lentine | 010f469 | 2015-11-03 16:19:46 -0800 | [diff] [blame] | 360 | #ifndef WIN32 |
| Tobin Ehlis | 17978d8 | 2016-05-17 07:58:01 -0600 | [diff] [blame] | 361 | static inline bool log_msg(const debug_report_data *debug_data, VkFlags msgFlags, VkDebugReportObjectTypeEXT objectType, |
| Dustin Graves | 8f1eab9 | 2016-04-05 09:41:17 -0600 | [diff] [blame] | 362 | uint64_t srcObject, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *format, ...) |
| 363 | __attribute__((format(printf, 8, 9))); |
| Michael Lentine | 010f469 | 2015-11-03 16:19:46 -0800 | [diff] [blame] | 364 | #endif |
| Tobin Ehlis | 17978d8 | 2016-05-17 07:58:01 -0600 | [diff] [blame] | 365 | static inline bool log_msg(const debug_report_data *debug_data, VkFlags msgFlags, VkDebugReportObjectTypeEXT objectType, |
| Dustin Graves | 8f1eab9 | 2016-04-05 09:41:17 -0600 | [diff] [blame] | 366 | uint64_t srcObject, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *format, |
| 367 | ...) { |
| Courtney Goeltzenleuchter | 61cb70a | 2015-06-26 15:14:50 -0600 | [diff] [blame] | 368 | if (!debug_data || !(debug_data->active_flags & msgFlags)) { |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 369 | // Message is not wanted |
| Courtney Goeltzenleuchter | 0664083 | 2015-09-04 13:52:24 -0600 | [diff] [blame] | 370 | return false; |
| Courtney Goeltzenleuchter | b9f0bf3 | 2015-06-14 09:50:18 -0600 | [diff] [blame] | 371 | } |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 372 | |
| Courtney Goeltzenleuchter | b9f0bf3 | 2015-06-14 09:50:18 -0600 | [diff] [blame] | 373 | va_list argptr; |
| 374 | va_start(argptr, format); |
| Chris Forbes | 8a25bce | 2016-03-24 12:06:35 +1300 | [diff] [blame] | 375 | char *str; |
| Chris Forbes | ed6a1b3 | 2016-04-28 14:27:19 +1200 | [diff] [blame] | 376 | if (-1 == vasprintf(&str, format, argptr)) { |
| Mark Lobodzinski | 97c4d51 | 2016-05-19 15:27:18 -0600 | [diff] [blame] | 377 | // On failure, glibc vasprintf leaves str undefined |
| Chris Forbes | ed6a1b3 | 2016-04-28 14:27:19 +1200 | [diff] [blame] | 378 | str = nullptr; |
| 379 | } |
| Courtney Goeltzenleuchter | b9f0bf3 | 2015-06-14 09:50:18 -0600 | [diff] [blame] | 380 | va_end(argptr); |
| Chris Forbes | ed6a1b3 | 2016-04-28 14:27:19 +1200 | [diff] [blame] | 381 | bool result = debug_report_log_msg(debug_data, msgFlags, objectType, srcObject, location, msgCode, pLayerPrefix, |
| 382 | str ? str : "Allocation failure"); |
| Chris Forbes | 8a25bce | 2016-03-24 12:06:35 +1300 | [diff] [blame] | 383 | free(str); |
| 384 | return result; |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 385 | } |
| 386 | |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 387 | static inline VKAPI_ATTR VkBool32 VKAPI_CALL log_callback(VkFlags msgFlags, VkDebugReportObjectTypeEXT objType, uint64_t srcObject, |
| 388 | size_t location, int32_t msgCode, const char *pLayerPrefix, |
| 389 | const char *pMsg, void *pUserData) { |
| Courtney Goeltzenleuchter | 2f25bb4 | 2015-06-14 11:29:24 -0600 | [diff] [blame] | 390 | char msg_flags[30]; |
| Courtney Goeltzenleuchter | 7d8503b | 2015-06-11 15:58:51 -0600 | [diff] [blame] | 391 | |
| Courtney Goeltzenleuchter | 2f25bb4 | 2015-06-14 11:29:24 -0600 | [diff] [blame] | 392 | print_msg_flags(msgFlags, msg_flags); |
| 393 | |
| Mark Mueller | aab3650 | 2016-05-03 13:17:29 -0600 | [diff] [blame] | 394 | fprintf((FILE *)pUserData, "%s(%s): object: 0x%" PRIx64 " type: %d location: %lu msgCode: %d: %s\n", pLayerPrefix, msg_flags, |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 395 | srcObject, objType, (unsigned long)location, msgCode, pMsg); |
| 396 | fflush((FILE *)pUserData); |
| Courtney Goeltzenleuchter | 0664083 | 2015-09-04 13:52:24 -0600 | [diff] [blame] | 397 | |
| 398 | return false; |
| Courtney Goeltzenleuchter | 2f25bb4 | 2015-06-14 11:29:24 -0600 | [diff] [blame] | 399 | } |
| Courtney Goeltzenleuchter | 5907ac4 | 2015-10-05 14:41:34 -0600 | [diff] [blame] | 400 | |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 401 | static inline VKAPI_ATTR VkBool32 VKAPI_CALL win32_debug_output_msg(VkFlags msgFlags, VkDebugReportObjectTypeEXT objType, |
| 402 | uint64_t srcObject, size_t location, int32_t msgCode, |
| 403 | const char *pLayerPrefix, const char *pMsg, void *pUserData) { |
| Courtney Goeltzenleuchter | 5907ac4 | 2015-10-05 14:41:34 -0600 | [diff] [blame] | 404 | #ifdef WIN32 |
| 405 | char msg_flags[30]; |
| 406 | char buf[2048]; |
| 407 | |
| 408 | print_msg_flags(msgFlags, msg_flags); |
| Jon Ashburn | 5484e0c | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 409 | _snprintf(buf, sizeof(buf) - 1, |
| 410 | "%s (%s): object: 0x%" PRIxPTR " type: %d location: " PRINTF_SIZE_T_SPECIFIER " msgCode: %d: %s\n", pLayerPrefix, |
| 411 | msg_flags, (size_t)srcObject, objType, location, msgCode, pMsg); |
| Courtney Goeltzenleuchter | 5907ac4 | 2015-10-05 14:41:34 -0600 | [diff] [blame] | 412 | |
| 413 | OutputDebugString(buf); |
| 414 | #endif |
| 415 | |
| 416 | return false; |
| 417 | } |
| 418 | |
| Mark Lobodzinski | c9d8165 | 2017-08-10 11:01:17 -0600 | [diff] [blame] | 419 | static inline VKAPI_ATTR VkBool32 VKAPI_CALL DebugBreakCallback(VkFlags msgFlags, VkDebugReportObjectTypeEXT objType, |
| 420 | uint64_t srcObject, size_t location, int32_t msgCode, |
| 421 | const char *pLayerPrefix, const char *pMsg, void *pUserData) { |
| 422 | #ifdef WIN32 |
| 423 | DebugBreak(); |
| 424 | #else |
| 425 | raise(SIGTRAP); |
| 426 | #endif |
| 427 | |
| 428 | return false; |
| 429 | } |
| 430 | |
| 431 | |
| Mark Lobodzinski | 863d5de | 2017-05-22 10:10:07 -0600 | [diff] [blame] | 432 | // TODO: Could be autogenerated for the specific handles for extra type safety... |
| 433 | template <typename HANDLE_T> |
| 434 | static inline uint64_t HandleToUint64(HANDLE_T *h) { |
| 435 | return reinterpret_cast<uint64_t>(h); |
| Petr Kraus | e9388f6 | 2017-05-13 20:53:12 +0200 | [diff] [blame] | 436 | } |
| 437 | |
| Mark Lobodzinski | 863d5de | 2017-05-22 10:10:07 -0600 | [diff] [blame] | 438 | template <typename HANDLE_T> |
| 439 | uint64_t HandleToUint64(HANDLE_T h); |
| 440 | |
| 441 | static inline uint64_t HandleToUint64(uint64_t h) { return h; } |
| 442 | |
| Mark Lobodzinski | 64318ba | 2017-01-26 13:34:13 -0700 | [diff] [blame] | 443 | #endif // LAYER_LOGGING_H |