blob: 327c527f5e507712ffc22fc39d25e3f25efe730d [file] [log] [blame]
Mark Lobodzinski288e4f72016-02-02 15:55:36 -07001/* Copyright (c) 2015-2016 The Khronos Group Inc.
2 * Copyright (c) 2015-2016 Valve Corporation
3 * Copyright (c) 2015-2016 LunarG, Inc.
4 * Copyright (C) 2015-2016 Google Inc.
Tobin Ehlisacab8882014-11-14 13:01:02 -07005 *
Jon Ashburn43b53e82016-04-19 11:30:31 -06006 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
Tobin Ehlisacab8882014-11-14 13:01:02 -07009 *
Jon Ashburn43b53e82016-04-19 11:30:31 -060010 * http://www.apache.org/licenses/LICENSE-2.0
Tobin Ehlisacab8882014-11-14 13:01:02 -070011 *
Jon Ashburn43b53e82016-04-19 11:30:31 -060012 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
Courtney Goeltzenleuchter96cd7952015-10-30 11:14:30 -060017 *
Courtney Goeltzenleuchter96cd7952015-10-30 11:14:30 -060018 * Author: Mark Lobodzinski <mark@lunarg.com>
Mark Lobodzinski2faa2142016-07-01 10:53:31 -060019 * Author: Jon Ashburn <jon@lunarg.com>
Courtney Goeltzenleuchter96cd7952015-10-30 11:14:30 -060020 * Author: Tobin Ehlis <tobin@lunarg.com>
Tobin Ehlisacab8882014-11-14 13:01:02 -070021 */
22
Jeremy Hayes241a2db2016-04-13 10:54:17 -060023#include <mutex>
24
Courtney Goeltzenleuchter1c7c65d2015-06-10 17:39:03 -060025#include "vk_enum_string_helper.h"
Mark Lobodzinski2faa2142016-07-01 10:53:31 -060026#include "vk_layer_extension_utils.h"
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -070027#include "vk_layer_table.h"
Mark Lobodzinskid11c4ee2016-03-15 14:21:59 -060028#include "vk_layer_utils.h"
Mark Lobodzinski2faa2142016-07-01 10:53:31 -060029#include "vulkan/vk_layer.h"
Mark Lobodzinski14305ad2015-06-23 11:35:12 -060030
Chia-I Wu1c0b7312016-05-13 14:07:36 +080031namespace object_tracker {
32
Tobin Ehlis3c26a542014-11-18 11:28:33 -070033// Object Tracker ERROR codes
Mark Lobodzinski6cb97f92016-05-19 17:06:56 -060034enum OBJECT_TRACK_ERROR {
Jon Ashburn491a3cd2016-03-08 17:48:44 -070035 OBJTRACK_NONE, // Used for INFO & other non-error messages
36 OBJTRACK_UNKNOWN_OBJECT, // Updating uses of object that's not in global object list
37 OBJTRACK_INTERNAL_ERROR, // Bug with data tracking within the layer
Jon Ashburn491a3cd2016-03-08 17:48:44 -070038 OBJTRACK_OBJECT_LEAK, // OBJECT was not correctly freed/destroyed
Jon Ashburn491a3cd2016-03-08 17:48:44 -070039 OBJTRACK_INVALID_OBJECT, // Object used that has never been created
40 OBJTRACK_DESCRIPTOR_POOL_MISMATCH, // Descriptor Pools specified incorrectly
41 OBJTRACK_COMMAND_POOL_MISMATCH, // Command Pools specified incorrectly
Chris Forbesc8a0b732016-09-29 13:51:10 +130042 OBJTRACK_ALLOCATOR_MISMATCH, // Created with custom allocator but destroyed without
Mark Lobodzinski6cb97f92016-05-19 17:06:56 -060043};
Tobin Ehlis3c26a542014-11-18 11:28:33 -070044
Tobin Ehlis235c20e2015-01-16 08:56:30 -070045// Object Status -- used to track state of individual objects
Mark Lobodzinski7d2d5ac2015-05-20 17:33:47 -050046typedef VkFlags ObjectStatusFlags;
Mark Lobodzinski6cb97f92016-05-19 17:06:56 -060047enum ObjectStatusFlagBits {
Jon Ashburn491a3cd2016-03-08 17:48:44 -070048 OBJSTATUS_NONE = 0x00000000, // No status is set
49 OBJSTATUS_FENCE_IS_SUBMITTED = 0x00000001, // Fence has been submitted
50 OBJSTATUS_VIEWPORT_BOUND = 0x00000002, // Viewport state object has been bound
51 OBJSTATUS_RASTER_BOUND = 0x00000004, // Viewport state object has been bound
52 OBJSTATUS_COLOR_BLEND_BOUND = 0x00000008, // Viewport state object has been bound
53 OBJSTATUS_DEPTH_STENCIL_BOUND = 0x00000010, // Viewport state object has been bound
54 OBJSTATUS_GPU_MEM_MAPPED = 0x00000020, // Memory object is currently mapped
55 OBJSTATUS_COMMAND_BUFFER_SECONDARY = 0x00000040, // Command Buffer is of type SECONDARY
Chris Forbesc8a0b732016-09-29 13:51:10 +130056 OBJSTATUS_CUSTOM_ALLOCATOR = 0x00000080, // Allocated with custom allocator
Mark Lobodzinski6cb97f92016-05-19 17:06:56 -060057};
Chia-I Wu5b66aa52015-04-16 22:02:10 +080058
Mark Lobodzinski2faa2142016-07-01 10:53:31 -060059// Object and state information structure
Mark Lobodzinski6cb97f92016-05-19 17:06:56 -060060struct OBJTRACK_NODE {
Mark Lobodzinski2faa2142016-07-01 10:53:31 -060061 uint64_t handle; // Object handle (new)
62 VkDebugReportObjectTypeEXT object_type; // Object type identifier
63 ObjectStatusFlags status; // Object state
64 uint64_t parent_object; // Parent object
Mark Lobodzinski6cb97f92016-05-19 17:06:56 -060065};
Mark Lobodzinskie1d3f0c2015-02-09 10:20:53 -060066
Mark Lobodzinski2faa2142016-07-01 10:53:31 -060067// Track Queue information
68struct OT_QUEUE_INFO {
69 uint32_t queue_node_index;
70 VkQueue queue;
Cody Northrop73bb6572015-09-28 15:09:32 -060071};
Mark Lobodzinski14305ad2015-06-23 11:35:12 -060072
Mark Lobodzinski2faa2142016-07-01 10:53:31 -060073// Layer name string to be logged with validation messages.
74const char LayerName[] = "ObjectTracker";
75
Mark Lobodzinski61d505e2016-06-24 09:57:32 -060076struct instance_extension_enables {
Jon Ashburnde4f1102015-09-17 10:00:32 -060077 bool wsi_enabled;
Mark Lobodzinski61d505e2016-06-24 09:57:32 -060078 bool xlib_enabled;
79 bool xcb_enabled;
80 bool wayland_enabled;
81 bool mir_enabled;
82 bool android_enabled;
83 bool win32_enabled;
Norbert Nopper6f2ed662016-11-25 07:55:13 +010084 bool display_enabled;
Jon Ashburnde4f1102015-09-17 10:00:32 -060085};
86
Tobin Ehlis5c4c68c2016-08-02 10:50:29 -060087typedef std::unordered_map<uint64_t, OBJTRACK_NODE *> object_map_type;
Mark Lobodzinski2faa2142016-07-01 10:53:31 -060088struct layer_data {
89 VkInstance instance;
90 VkPhysicalDevice physical_device;
Mark Lobodzinskidc87a3f2015-11-24 15:50:44 -070091
Mark Lobodzinski2faa2142016-07-01 10:53:31 -060092 uint64_t num_objects[VK_DEBUG_REPORT_OBJECT_TYPE_RANGE_SIZE_EXT + 1];
93 uint64_t num_total_objects;
Mark Lobodzinski61d505e2016-06-24 09:57:32 -060094
Mark Lobodzinski2faa2142016-07-01 10:53:31 -060095 debug_report_data *report_data;
96 std::vector<VkDebugReportCallbackEXT> logging_callback;
97 bool wsi_enabled;
Mark Young19ab93c2016-09-08 12:28:38 -060098 bool wsi_display_swapchain_enabled;
Mark Lobodzinskidfb417d2016-11-14 10:00:41 -070099 bool wsi_display_extension_enabled;
Mark Lobodzinski2faa2142016-07-01 10:53:31 -0600100 bool objtrack_extensions_enabled;
Mark Youngb5f087a2017-01-19 21:10:49 -0700101 bool nvx_device_generated_commands_enabled;
102 bool ext_display_control_enabled;
Mark Lobodzinski61d505e2016-06-24 09:57:32 -0600103
Mark Lobodzinski2faa2142016-07-01 10:53:31 -0600104 // The following are for keeping track of the temporary callbacks that can
105 // be used in vkCreateInstance and vkDestroyInstance:
106 uint32_t num_tmp_callbacks;
107 VkDebugReportCallbackCreateInfoEXT *tmp_dbg_create_infos;
108 VkDebugReportCallbackEXT *tmp_callbacks;
Jon Ashburnde4f1102015-09-17 10:00:32 -0600109
Mark Lobodzinski2faa2142016-07-01 10:53:31 -0600110 std::vector<VkQueueFamilyProperties> queue_family_properties;
111
Tobin Ehlis5c4c68c2016-08-02 10:50:29 -0600112 // Vector of unordered_maps per object type to hold OBJTRACK_NODE info
113 std::vector<object_map_type> object_map;
Mark Lobodzinski2faa2142016-07-01 10:53:31 -0600114 // Special-case map for swapchain images
115 std::unordered_map<uint64_t, OBJTRACK_NODE *> swapchainImageMap;
116 // Map of queue information structures, one per queue
117 std::unordered_map<VkQueue, OT_QUEUE_INFO *> queue_info_map;
Mark Lobodzinski2faa2142016-07-01 10:53:31 -0600118
Tobin Ehlis7b0f9d72016-12-01 09:37:56 -0700119 VkLayerDispatchTable dispatch_table;
Mark Lobodzinski2faa2142016-07-01 10:53:31 -0600120 // Default constructor
121 layer_data()
122 : instance(nullptr), physical_device(nullptr), num_objects{}, num_total_objects(0), report_data(nullptr),
Mark Lobodzinskidfb417d2016-11-14 10:00:41 -0700123 wsi_enabled(false), wsi_display_swapchain_enabled(false), wsi_display_extension_enabled(false),
124 objtrack_extensions_enabled(false), num_tmp_callbacks(0), tmp_dbg_create_infos(nullptr), tmp_callbacks(nullptr),
125 object_map{}, dispatch_table{} {
Tobin Ehlis5c4c68c2016-08-02 10:50:29 -0600126 object_map.resize(VK_DEBUG_REPORT_OBJECT_TYPE_RANGE_SIZE_EXT + 1);
127 }
Mark Lobodzinski6cb97f92016-05-19 17:06:56 -0600128};
Mark Lobodzinski14305ad2015-06-23 11:35:12 -0600129
Mark Lobodzinski2faa2142016-07-01 10:53:31 -0600130static std::unordered_map<void *, struct instance_extension_enables> instanceExtMap;
131static std::unordered_map<void *, layer_data *> layer_data_map;
132static device_table_map ot_device_table_map;
133static instance_table_map ot_instance_table_map;
134static std::mutex global_lock;
135static uint64_t object_track_index = 0;
Mark Lobodzinski14305ad2015-06-23 11:35:12 -0600136
Mark Lobodzinski2faa2142016-07-01 10:53:31 -0600137// Array of object name strings for OBJECT_TYPE enum conversion
138static const char *object_name[VK_DEBUG_REPORT_OBJECT_TYPE_RANGE_SIZE_EXT] = {
139 "Unknown", // VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN
140 "Instance", // VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT
141 "Physical Device", // VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT
142 "Device", // VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT
143 "Queue", // VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT
144 "Semaphore", // VK_DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT
145 "Command Buffer", // VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT
146 "Fence", // VK_DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT
147 "Device Memory", // VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT
148 "Buffer", // VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT
149 "Image", // VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT
150 "Event", // VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT
151 "Query Pool", // VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT
152 "Buffer View", // VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT
153 "Image View", // VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT
154 "Shader Module", // VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT
155 "Pipeline Cache", // VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT
156 "Pipeline Layout", // VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT
157 "Render Pass", // VK_DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT
158 "Pipeline", // VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT
159 "Descriptor Set Layout", // VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT
160 "Sampler", // VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT
161 "Descriptor Pool", // VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT
162 "Descriptor Set", // VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT
163 "Framebuffer", // VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT
164 "Command Pool", // VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT
165 "SurfaceKHR", // VK_DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT
166 "SwapchainKHR", // VK_DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT
Mark Lobodzinskibc9caa52017-01-26 12:16:30 -0700167 "Debug Report"}; // VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_EXT
Mark Lobodzinski14305ad2015-06-23 11:35:12 -0600168
Mark Lobodzinski14305ad2015-06-23 11:35:12 -0600169#include "vk_dispatch_table_helper.h"
Mark Lobodzinski14305ad2015-06-23 11:35:12 -0600170
Chia-I Wu1c0b7312016-05-13 14:07:36 +0800171} // namespace object_tracker