blob: 2ba7934b3c10267ac978debb432582590064133f [file] [log] [blame]
Mark Lobodzinskiff910992016-10-11 14:29:52 -06001#!/usr/bin/python3 -i
2#
Mark Lobodzinskicd05c1e2019-01-17 15:33:46 -07003# Copyright (c) 2015-2019 The Khronos Group Inc.
4# Copyright (c) 2015-2019 Valve Corporation
5# Copyright (c) 2015-2019 LunarG, Inc.
6# Copyright (c) 2015-2019 Google Inc.
Mark Lobodzinskiff910992016-10-11 14:29:52 -06007#
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS,
16# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19#
20# Author: Mike Stroyan <stroyan@google.com>
Mark Lobodzinskid3b439e2017-06-07 13:08:41 -060021# Author: Mark Lobodzinski <mark@lunarg.com>
Mark Lobodzinskiff910992016-10-11 14:29:52 -060022
23import os,re,sys
24from generator import *
Mark Lobodzinski62f71562017-10-24 13:41:18 -060025from common_codegen import *
Mark Lobodzinskiff910992016-10-11 14:29:52 -060026
27# ThreadGeneratorOptions - subclass of GeneratorOptions.
28#
29# Adds options used by ThreadOutputGenerator objects during threading
30# layer generation.
31#
32# Additional members
33# prefixText - list of strings to prefix generated header with
34# (usually a copyright statement + calling convention macros).
35# protectFile - True if multiple inclusion protection should be
36# generated (based on the filename) around the entire header.
37# protectFeature - True if #ifndef..#endif protection should be
38# generated around a feature interface in the header file.
39# genFuncPointers - True if function pointer typedefs should be
40# generated
41# protectProto - If conditional protection should be generated
42# around prototype declarations, set to either '#ifdef'
43# to require opt-in (#ifdef protectProtoStr) or '#ifndef'
44# to require opt-out (#ifndef protectProtoStr). Otherwise
45# set to None.
46# protectProtoStr - #ifdef/#ifndef symbol to use around prototype
47# declarations, if protectProto is set
48# apicall - string to use for the function declaration prefix,
49# such as APICALL on Windows.
50# apientry - string to use for the calling convention macro,
51# in typedefs, such as APIENTRY.
52# apientryp - string to use for the calling convention macro
53# in function pointer typedefs, such as APIENTRYP.
54# indentFuncProto - True if prototype declarations should put each
55# parameter on a separate line
56# indentFuncPointer - True if typedefed function pointers should put each
57# parameter on a separate line
58# alignFuncParam - if nonzero and parameters are being put on a
59# separate line, align parameter names at the specified column
60class ThreadGeneratorOptions(GeneratorOptions):
61 def __init__(self,
Mike Schuchardt21638df2019-03-16 10:52:02 -070062 conventions = None,
Mark Lobodzinskiff910992016-10-11 14:29:52 -060063 filename = None,
64 directory = '.',
65 apiname = None,
66 profile = None,
67 versions = '.*',
68 emitversions = '.*',
69 defaultExtensions = None,
70 addExtensions = None,
71 removeExtensions = None,
Mark Lobodzinski62f71562017-10-24 13:41:18 -060072 emitExtensions = None,
Mark Lobodzinskiff910992016-10-11 14:29:52 -060073 sortProcedure = regSortFeatures,
74 prefixText = "",
75 genFuncPointers = True,
76 protectFile = True,
77 protectFeature = True,
Mark Lobodzinskiff910992016-10-11 14:29:52 -060078 apicall = '',
79 apientry = '',
80 apientryp = '',
81 indentFuncProto = True,
82 indentFuncPointer = False,
Mark Lobodzinski62f71562017-10-24 13:41:18 -060083 alignFuncParam = 0,
84 expandEnumerants = True):
Mike Schuchardt21638df2019-03-16 10:52:02 -070085 GeneratorOptions.__init__(self, conventions, filename, directory, apiname, profile,
Mark Lobodzinskiff910992016-10-11 14:29:52 -060086 versions, emitversions, defaultExtensions,
Mark Lobodzinski62f71562017-10-24 13:41:18 -060087 addExtensions, removeExtensions, emitExtensions, sortProcedure)
Mark Lobodzinskiff910992016-10-11 14:29:52 -060088 self.prefixText = prefixText
89 self.genFuncPointers = genFuncPointers
90 self.protectFile = protectFile
91 self.protectFeature = protectFeature
Mark Lobodzinskiff910992016-10-11 14:29:52 -060092 self.apicall = apicall
93 self.apientry = apientry
94 self.apientryp = apientryp
95 self.indentFuncProto = indentFuncProto
96 self.indentFuncPointer = indentFuncPointer
97 self.alignFuncParam = alignFuncParam
Mark Lobodzinski62f71562017-10-24 13:41:18 -060098 self.expandEnumerants = expandEnumerants
99
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600100
101# ThreadOutputGenerator - subclass of OutputGenerator.
102# Generates Thread checking framework
103#
104# ---- methods ----
105# ThreadOutputGenerator(errFile, warnFile, diagFile) - args as for
106# OutputGenerator. Defines additional internal state.
107# ---- methods overriding base class ----
108# beginFile(genOpts)
109# endFile()
110# beginFeature(interface, emit)
111# endFeature()
112# genType(typeinfo,name)
113# genStruct(typeinfo,name)
114# genGroup(groupinfo,name)
115# genEnum(enuminfo, name)
116# genCmd(cmdinfo)
117class ThreadOutputGenerator(OutputGenerator):
118 """Generate specified API interfaces in a specific style, such as a C header"""
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700119
120 inline_copyright_message = """
121// This file is ***GENERATED***. Do Not Edit.
122// See layer_chassis_dispatch_generator.py for modifications.
123
Mark Lobodzinskicd05c1e2019-01-17 15:33:46 -0700124/* Copyright (c) 2015-2019 The Khronos Group Inc.
125 * Copyright (c) 2015-2019 Valve Corporation
126 * Copyright (c) 2015-2019 LunarG, Inc.
127 * Copyright (c) 2015-2019 Google Inc.
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700128 *
129 * Licensed under the Apache License, Version 2.0 (the "License");
130 * you may not use this file except in compliance with the License.
131 * You may obtain a copy of the License at
132 *
133 * http://www.apache.org/licenses/LICENSE-2.0
134 *
135 * Unless required by applicable law or agreed to in writing, software
136 * distributed under the License is distributed on an "AS IS" BASIS,
137 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
138 * See the License for the specific language governing permissions and
139 * limitations under the License.
140 *
141 * Author: Mark Lobodzinski <mark@lunarg.com>
142 */"""
143
Mark Lobodzinski796454c2018-12-11 16:10:55 -0700144 # Note that the inline_custom_header_preamble template below contains three embedded template expansion identifiers.
145 # These get replaced with generated code sections, and are labeled:
146 # o COUNTER_CLASS_DEFINITIONS_TEMPLATE
147 # o COUNTER_CLASS_INSTANCES_TEMPLATE
148 # o COUNTER_CLASS_BODIES_TEMPLATE
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700149 inline_custom_header_preamble = """
150#pragma once
151
152#include <condition_variable>
153#include <mutex>
154#include <vector>
155#include <unordered_set>
156#include <string>
157
158VK_DEFINE_NON_DISPATCHABLE_HANDLE(DISTINCT_NONDISPATCHABLE_PHONY_HANDLE)
159// The following line must match the vulkan_core.h condition guarding VK_DEFINE_NON_DISPATCHABLE_HANDLE
160#if defined(__LP64__) || defined(_WIN64) || (defined(__x86_64__) && !defined(__ILP32__)) || defined(_M_X64) || defined(__ia64) || \
161 defined(_M_IA64) || defined(__aarch64__) || defined(__powerpc64__)
162// If pointers are 64-bit, then there can be separate counters for each
163// NONDISPATCHABLE_HANDLE type. Otherwise they are all typedef uint64_t.
164#define DISTINCT_NONDISPATCHABLE_HANDLES
165// Make sure we catch any disagreement between us and the vulkan definition
166static_assert(std::is_pointer<DISTINCT_NONDISPATCHABLE_PHONY_HANDLE>::value,
167 "Mismatched non-dispatchable handle handle, expected pointer type.");
168#else
169// Make sure we catch any disagreement between us and the vulkan definition
170static_assert(std::is_same<uint64_t, DISTINCT_NONDISPATCHABLE_PHONY_HANDLE>::value,
171 "Mismatched non-dispatchable handle handle, expected uint64_t.");
172#endif
173
174// Suppress unused warning on Linux
175#if defined(__GNUC__)
176#define DECORATE_UNUSED __attribute__((unused))
177#else
178#define DECORATE_UNUSED
179#endif
180
181// clang-format off
182static const char DECORATE_UNUSED *kVUID_Threading_Info = "UNASSIGNED-Threading-Info";
183static const char DECORATE_UNUSED *kVUID_Threading_MultipleThreads = "UNASSIGNED-Threading-MultipleThreads";
184static const char DECORATE_UNUSED *kVUID_Threading_SingleThreadReuse = "UNASSIGNED-Threading-SingleThreadReuse";
185// clang-format on
186
187#undef DECORATE_UNUSED
188
189struct object_use_data {
190 loader_platform_thread_id thread;
191 int reader_count;
192 int writer_count;
193};
194
Jeff Bolz1cb6fd6f2019-02-03 21:58:14 -0600195// This is a wrapper around unordered_map that optimizes for the common case
196// of only containing a single element. The "first" element's use is stored
197// inline in the class and doesn't require hashing or memory (de)allocation.
198// TODO: Consider generalizing this from one element to N elements (where N
199// is a template parameter).
200template <typename Key, typename T>
201class small_unordered_map {
202
203 bool first_data_allocated;
204 Key first_data_key;
205 T first_data;
206
207 std::unordered_map<Key, T> uses;
208
209public:
210 small_unordered_map() : first_data_allocated(false) {}
211
212 bool contains(const Key& object) const {
213 if (first_data_allocated && object == first_data_key) {
214 return true;
215 // check size() first to avoid hashing object unnecessarily.
216 } else if (uses.size() == 0) {
217 return false;
218 } else {
219 return uses.find(object) != uses.end();
220 }
221 }
222
223 T& operator[](const Key& object) {
224 if (first_data_allocated && first_data_key == object) {
225 return first_data;
226 } else if (!first_data_allocated && uses.size() == 0) {
227 first_data_allocated = true;
228 first_data_key = object;
229 return first_data;
230 } else {
231 return uses[object];
232 }
233 }
234
235 typename std::unordered_map<Key, T>::size_type erase(const Key& object) {
236 if (first_data_allocated && first_data_key == object) {
237 first_data_allocated = false;
238 return 1;
239 } else {
240 return uses.erase(object);
241 }
242 }
243};
244
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700245template <typename T>
246class counter {
247public:
248 const char *typeName;
249 VkDebugReportObjectTypeEXT objectType;
250 debug_report_data **report_data;
Jeff Bolz1cb6fd6f2019-02-03 21:58:14 -0600251 small_unordered_map<T, object_use_data> uses;
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700252 std::mutex counter_lock;
253 std::condition_variable counter_condition;
254
255
256 void StartWrite(T object) {
257 if (object == VK_NULL_HANDLE) {
258 return;
259 }
260 bool skip = false;
261 loader_platform_thread_id tid = loader_platform_get_thread_id();
262 std::unique_lock<std::mutex> lock(counter_lock);
Jeff Bolz1cb6fd6f2019-02-03 21:58:14 -0600263 if (!uses.contains(object)) {
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700264 // There is no current use of the object. Record writer thread.
265 struct object_use_data *use_data = &uses[object];
266 use_data->reader_count = 0;
267 use_data->writer_count = 1;
268 use_data->thread = tid;
269 } else {
270 struct object_use_data *use_data = &uses[object];
271 if (use_data->reader_count == 0) {
272 // There are no readers. Two writers just collided.
273 if (use_data->thread != tid) {
274 skip |= log_msg(*report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, objectType, (uint64_t)(object),
275 kVUID_Threading_MultipleThreads,
276 "THREADING ERROR : object of type %s is simultaneously used in "
277 "thread 0x%" PRIx64 " and thread 0x%" PRIx64,
278 typeName, (uint64_t)use_data->thread, (uint64_t)tid);
279 if (skip) {
280 // Wait for thread-safe access to object instead of skipping call.
Jeff Bolz1cb6fd6f2019-02-03 21:58:14 -0600281 while (uses.contains(object)) {
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700282 counter_condition.wait(lock);
283 }
284 // There is now no current use of the object. Record writer thread.
285 struct object_use_data *new_use_data = &uses[object];
286 new_use_data->thread = tid;
287 new_use_data->reader_count = 0;
288 new_use_data->writer_count = 1;
289 } else {
290 // Continue with an unsafe use of the object.
291 use_data->thread = tid;
292 use_data->writer_count += 1;
293 }
294 } else {
295 // This is either safe multiple use in one call, or recursive use.
296 // There is no way to make recursion safe. Just forge ahead.
297 use_data->writer_count += 1;
298 }
299 } else {
300 // There are readers. This writer collided with them.
301 if (use_data->thread != tid) {
302 skip |= log_msg(*report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, objectType, (uint64_t)(object),
303 kVUID_Threading_MultipleThreads,
304 "THREADING ERROR : object of type %s is simultaneously used in "
305 "thread 0x%" PRIx64 " and thread 0x%" PRIx64,
306 typeName, (uint64_t)use_data->thread, (uint64_t)tid);
307 if (skip) {
308 // Wait for thread-safe access to object instead of skipping call.
Jeff Bolz1cb6fd6f2019-02-03 21:58:14 -0600309 while (uses.contains(object)) {
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700310 counter_condition.wait(lock);
311 }
312 // There is now no current use of the object. Record writer thread.
313 struct object_use_data *new_use_data = &uses[object];
314 new_use_data->thread = tid;
315 new_use_data->reader_count = 0;
316 new_use_data->writer_count = 1;
317 } else {
318 // Continue with an unsafe use of the object.
319 use_data->thread = tid;
320 use_data->writer_count += 1;
321 }
322 } else {
323 // This is either safe multiple use in one call, or recursive use.
324 // There is no way to make recursion safe. Just forge ahead.
325 use_data->writer_count += 1;
326 }
327 }
328 }
329 }
330
331 void FinishWrite(T object) {
332 if (object == VK_NULL_HANDLE) {
333 return;
334 }
335 // Object is no longer in use
336 std::unique_lock<std::mutex> lock(counter_lock);
337 uses[object].writer_count -= 1;
338 if ((uses[object].reader_count == 0) && (uses[object].writer_count == 0)) {
339 uses.erase(object);
340 }
341 // Notify any waiting threads that this object may be safe to use
342 lock.unlock();
343 counter_condition.notify_all();
344 }
345
346 void StartRead(T object) {
347 if (object == VK_NULL_HANDLE) {
348 return;
349 }
350 bool skip = false;
351 loader_platform_thread_id tid = loader_platform_get_thread_id();
352 std::unique_lock<std::mutex> lock(counter_lock);
Jeff Bolz1cb6fd6f2019-02-03 21:58:14 -0600353 if (!uses.contains(object)) {
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700354 // There is no current use of the object. Record reader count
355 struct object_use_data *use_data = &uses[object];
356 use_data->reader_count = 1;
357 use_data->writer_count = 0;
358 use_data->thread = tid;
359 } else if (uses[object].writer_count > 0 && uses[object].thread != tid) {
360 // There is a writer of the object.
361 skip |= false;
362 log_msg(*report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, objectType, (uint64_t)(object), kVUID_Threading_MultipleThreads,
363 "THREADING ERROR : object of type %s is simultaneously used in "
364 "thread 0x%" PRIx64 " and thread 0x%" PRIx64,
365 typeName, (uint64_t)uses[object].thread, (uint64_t)tid);
366 if (skip) {
367 // Wait for thread-safe access to object instead of skipping call.
Jeff Bolz1cb6fd6f2019-02-03 21:58:14 -0600368 while (uses.contains(object)) {
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700369 counter_condition.wait(lock);
370 }
371 // There is no current use of the object. Record reader count
372 struct object_use_data *use_data = &uses[object];
373 use_data->reader_count = 1;
374 use_data->writer_count = 0;
375 use_data->thread = tid;
376 } else {
377 uses[object].reader_count += 1;
378 }
379 } else {
380 // There are other readers of the object. Increase reader count
381 uses[object].reader_count += 1;
382 }
383 }
384 void FinishRead(T object) {
385 if (object == VK_NULL_HANDLE) {
386 return;
387 }
388 std::unique_lock<std::mutex> lock(counter_lock);
389 uses[object].reader_count -= 1;
390 if ((uses[object].reader_count == 0) && (uses[object].writer_count == 0)) {
391 uses.erase(object);
392 }
393 // Notify any waiting threads that this object may be safe to use
394 lock.unlock();
395 counter_condition.notify_all();
396 }
397 counter(const char *name = "", VkDebugReportObjectTypeEXT type = VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, debug_report_data **rep_data = nullptr) {
398 typeName = name;
399 objectType = type;
400 report_data = rep_data;
401 }
402};
403
404
405
406class ThreadSafety : public ValidationObject {
407public:
408
409 // Override chassis read/write locks for this validation object
Jeremy Hayesd4a3ec32019-01-29 14:42:08 -0700410 // This override takes a deferred lock. i.e. it is not acquired.
411 std::unique_lock<std::mutex> write_lock() {
412 return std::unique_lock<std::mutex>(validation_object_mutex, std::defer_lock);
413 }
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700414
415 std::mutex command_pool_lock;
416 std::unordered_map<VkCommandBuffer, VkCommandPool> command_pool_map;
417
418 counter<VkCommandBuffer> c_VkCommandBuffer;
419 counter<VkDevice> c_VkDevice;
420 counter<VkInstance> c_VkInstance;
421 counter<VkQueue> c_VkQueue;
422#ifdef DISTINCT_NONDISPATCHABLE_HANDLES
423
424 // Special entry to allow tracking of command pool Reset and Destroy
425 counter<VkCommandPool> c_VkCommandPoolContents;
Mark Lobodzinski796454c2018-12-11 16:10:55 -0700426COUNTER_CLASS_DEFINITIONS_TEMPLATE
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700427
428#else // DISTINCT_NONDISPATCHABLE_HANDLES
429 // Special entry to allow tracking of command pool Reset and Destroy
430 counter<uint64_t> c_VkCommandPoolContents;
431
432 counter<uint64_t> c_uint64_t;
433#endif // DISTINCT_NONDISPATCHABLE_HANDLES
434
435 ThreadSafety()
436 : c_VkCommandBuffer("VkCommandBuffer", VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT, &report_data),
437 c_VkDevice("VkDevice", VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT, &report_data),
438 c_VkInstance("VkInstance", VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT, &report_data),
439 c_VkQueue("VkQueue", VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT, &report_data),
440 c_VkCommandPoolContents("VkCommandPool", VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT, &report_data),
441
442#ifdef DISTINCT_NONDISPATCHABLE_HANDLES
Mark Lobodzinski796454c2018-12-11 16:10:55 -0700443COUNTER_CLASS_INSTANCES_TEMPLATE
444
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700445
446#else // DISTINCT_NONDISPATCHABLE_HANDLES
447 c_uint64_t("NON_DISPATCHABLE_HANDLE", VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, &report_data)
448#endif // DISTINCT_NONDISPATCHABLE_HANDLES
449 {};
450
451#define WRAPPER(type) \
452 void StartWriteObject(type object) { \
453 c_##type.StartWrite(object); \
454 } \
455 void FinishWriteObject(type object) { \
456 c_##type.FinishWrite(object); \
457 } \
458 void StartReadObject(type object) { \
459 c_##type.StartRead(object); \
460 } \
461 void FinishReadObject(type object) { \
462 c_##type.FinishRead(object); \
463 }
464
465WRAPPER(VkDevice)
466WRAPPER(VkInstance)
467WRAPPER(VkQueue)
468#ifdef DISTINCT_NONDISPATCHABLE_HANDLES
Mark Lobodzinski796454c2018-12-11 16:10:55 -0700469COUNTER_CLASS_BODIES_TEMPLATE
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700470
471#else // DISTINCT_NONDISPATCHABLE_HANDLES
472WRAPPER(uint64_t)
473#endif // DISTINCT_NONDISPATCHABLE_HANDLES
474
475 // VkCommandBuffer needs check for implicit use of command pool
476 void StartWriteObject(VkCommandBuffer object, bool lockPool = true) {
477 if (lockPool) {
478 std::unique_lock<std::mutex> lock(command_pool_lock);
479 VkCommandPool pool = command_pool_map[object];
480 lock.unlock();
481 StartWriteObject(pool);
482 }
483 c_VkCommandBuffer.StartWrite(object);
484 }
485 void FinishWriteObject(VkCommandBuffer object, bool lockPool = true) {
486 c_VkCommandBuffer.FinishWrite(object);
487 if (lockPool) {
488 std::unique_lock<std::mutex> lock(command_pool_lock);
489 VkCommandPool pool = command_pool_map[object];
490 lock.unlock();
491 FinishWriteObject(pool);
492 }
493 }
494 void StartReadObject(VkCommandBuffer object) {
495 std::unique_lock<std::mutex> lock(command_pool_lock);
496 VkCommandPool pool = command_pool_map[object];
497 lock.unlock();
498 // We set up a read guard against the "Contents" counter to catch conflict vs. vkResetCommandPool and vkDestroyCommandPool
499 // while *not* establishing a read guard against the command pool counter itself to avoid false postives for
500 // non-externally sync'd command buffers
501 c_VkCommandPoolContents.StartRead(pool);
502 c_VkCommandBuffer.StartRead(object);
503 }
504 void FinishReadObject(VkCommandBuffer object) {
505 c_VkCommandBuffer.FinishRead(object);
506 std::unique_lock<std::mutex> lock(command_pool_lock);
507 VkCommandPool pool = command_pool_map[object];
508 lock.unlock();
509 c_VkCommandPoolContents.FinishRead(pool);
Mark Lobodzinski796454c2018-12-11 16:10:55 -0700510 } """
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700511
512
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700513 inline_custom_source_preamble = """
514void ThreadSafety::PreCallRecordAllocateCommandBuffers(VkDevice device, const VkCommandBufferAllocateInfo *pAllocateInfo,
515 VkCommandBuffer *pCommandBuffers) {
516 StartReadObject(device);
517 StartWriteObject(pAllocateInfo->commandPool);
518}
519
520void ThreadSafety::PostCallRecordAllocateCommandBuffers(VkDevice device, const VkCommandBufferAllocateInfo *pAllocateInfo,
Mark Lobodzinskicd05c1e2019-01-17 15:33:46 -0700521 VkCommandBuffer *pCommandBuffers, VkResult result) {
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700522 FinishReadObject(device);
523 FinishWriteObject(pAllocateInfo->commandPool);
524
525 // Record mapping from command buffer to command pool
526 for (uint32_t index = 0; index < pAllocateInfo->commandBufferCount; index++) {
527 std::lock_guard<std::mutex> lock(command_pool_lock);
528 command_pool_map[pCommandBuffers[index]] = pAllocateInfo->commandPool;
529 }
530}
531
532void ThreadSafety::PreCallRecordAllocateDescriptorSets(VkDevice device, const VkDescriptorSetAllocateInfo *pAllocateInfo,
533 VkDescriptorSet *pDescriptorSets) {
534 StartReadObject(device);
535 StartWriteObject(pAllocateInfo->descriptorPool);
536 // Host access to pAllocateInfo::descriptorPool must be externally synchronized
537}
538
539void ThreadSafety::PostCallRecordAllocateDescriptorSets(VkDevice device, const VkDescriptorSetAllocateInfo *pAllocateInfo,
Mark Lobodzinskicd05c1e2019-01-17 15:33:46 -0700540 VkDescriptorSet *pDescriptorSets, VkResult result) {
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700541 FinishReadObject(device);
542 FinishWriteObject(pAllocateInfo->descriptorPool);
543 // Host access to pAllocateInfo::descriptorPool must be externally synchronized
544}
545
546void ThreadSafety::PreCallRecordFreeCommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount,
547 const VkCommandBuffer *pCommandBuffers) {
548 const bool lockCommandPool = false; // pool is already directly locked
549 StartReadObject(device);
550 StartWriteObject(commandPool);
551 for (uint32_t index = 0; index < commandBufferCount; index++) {
552 StartWriteObject(pCommandBuffers[index], lockCommandPool);
553 }
554 // The driver may immediately reuse command buffers in another thread.
555 // These updates need to be done before calling down to the driver.
556 for (uint32_t index = 0; index < commandBufferCount; index++) {
557 FinishWriteObject(pCommandBuffers[index], lockCommandPool);
558 std::lock_guard<std::mutex> lock(command_pool_lock);
559 command_pool_map.erase(pCommandBuffers[index]);
560 }
561}
562
563void ThreadSafety::PostCallRecordFreeCommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount,
564 const VkCommandBuffer *pCommandBuffers) {
565 FinishReadObject(device);
566 FinishWriteObject(commandPool);
567}
568
569void ThreadSafety::PreCallRecordResetCommandPool(VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags) {
570 StartReadObject(device);
571 StartWriteObject(commandPool);
572 // Check for any uses of non-externally sync'd command buffers (for example from vkCmdExecuteCommands)
573 c_VkCommandPoolContents.StartWrite(commandPool);
574 // Host access to commandPool must be externally synchronized
575}
576
Mark Lobodzinskicd05c1e2019-01-17 15:33:46 -0700577void ThreadSafety::PostCallRecordResetCommandPool(VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags, VkResult result) {
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700578 FinishReadObject(device);
579 FinishWriteObject(commandPool);
580 c_VkCommandPoolContents.FinishWrite(commandPool);
581 // Host access to commandPool must be externally synchronized
582}
583
584void ThreadSafety::PreCallRecordDestroyCommandPool(VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks *pAllocator) {
585 StartReadObject(device);
586 StartWriteObject(commandPool);
587 // Check for any uses of non-externally sync'd command buffers (for example from vkCmdExecuteCommands)
588 c_VkCommandPoolContents.StartWrite(commandPool);
589 // Host access to commandPool must be externally synchronized
590}
591
592void ThreadSafety::PostCallRecordDestroyCommandPool(VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks *pAllocator) {
593 FinishReadObject(device);
594 FinishWriteObject(commandPool);
595 c_VkCommandPoolContents.FinishWrite(commandPool);
596}
597
Mark Lobodzinski8925c052018-12-18 12:41:15 -0700598// GetSwapchainImages can return a non-zero count with a NULL pSwapchainImages pointer. Let's avoid crashes by ignoring
599// pSwapchainImages.
600void ThreadSafety::PreCallRecordGetSwapchainImagesKHR(VkDevice device, VkSwapchainKHR swapchain, uint32_t *pSwapchainImageCount,
601 VkImage *pSwapchainImages) {
602 StartReadObject(device);
603 StartReadObject(swapchain);
604}
605
606void ThreadSafety::PostCallRecordGetSwapchainImagesKHR(VkDevice device, VkSwapchainKHR swapchain, uint32_t *pSwapchainImageCount,
Mark Lobodzinskicd05c1e2019-01-17 15:33:46 -0700607 VkImage *pSwapchainImages, VkResult result) {
Mark Lobodzinski8925c052018-12-18 12:41:15 -0700608 FinishReadObject(device);
609 FinishReadObject(swapchain);
610}
611
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700612"""
613
614
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600615 # This is an ordered list of sections in the header file.
Mark Lobodzinski796454c2018-12-11 16:10:55 -0700616 ALL_SECTIONS = ['command']
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600617 def __init__(self,
618 errFile = sys.stderr,
619 warnFile = sys.stderr,
620 diagFile = sys.stdout):
621 OutputGenerator.__init__(self, errFile, warnFile, diagFile)
622 # Internal state - accumulators for different inner block text
623 self.sections = dict([(section, []) for section in self.ALL_SECTIONS])
Mark Lobodzinski796454c2018-12-11 16:10:55 -0700624 self.non_dispatchable_types = set()
625 self.object_to_debug_report_type = {
626 'VkInstance' : 'VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT',
627 'VkPhysicalDevice' : 'VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT',
628 'VkDevice' : 'VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT',
629 'VkQueue' : 'VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT',
630 'VkSemaphore' : 'VK_DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT',
631 'VkCommandBuffer' : 'VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT',
632 'VkFence' : 'VK_DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT',
633 'VkDeviceMemory' : 'VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT',
634 'VkBuffer' : 'VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT',
635 'VkImage' : 'VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT',
636 'VkEvent' : 'VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT',
637 'VkQueryPool' : 'VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT',
638 'VkBufferView' : 'VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT',
639 'VkImageView' : 'VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT',
640 'VkShaderModule' : 'VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT',
641 'VkPipelineCache' : 'VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT',
642 'VkPipelineLayout' : 'VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT',
643 'VkRenderPass' : 'VK_DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT',
644 'VkPipeline' : 'VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT',
645 'VkDescriptorSetLayout' : 'VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT',
646 'VkSampler' : 'VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT',
647 'VkDescriptorPool' : 'VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT',
648 'VkDescriptorSet' : 'VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT',
649 'VkFramebuffer' : 'VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT',
650 'VkCommandPool' : 'VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT',
651 'VkSurfaceKHR' : 'VK_DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT',
652 'VkSwapchainKHR' : 'VK_DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT',
653 'VkDisplayKHR' : 'VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT',
654 'VkDisplayModeKHR' : 'VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT',
655 'VkObjectTableNVX' : 'VK_DEBUG_REPORT_OBJECT_TYPE_OBJECT_TABLE_NVX_EXT',
656 'VkIndirectCommandsLayoutNVX' : 'VK_DEBUG_REPORT_OBJECT_TYPE_INDIRECT_COMMANDS_LAYOUT_NVX_EXT',
657 'VkSamplerYcbcrConversion' : 'VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT',
658 'VkDescriptorUpdateTemplate' : 'VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT',
659 'VkAccelerationStructureNV' : 'VK_DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_NV_EXT',
660 'VkDebugReportCallbackEXT' : 'VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_EXT',
661 'VkValidationCacheEXT' : 'VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT' }
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600662
663 # Check if the parameter passed in is a pointer to an array
664 def paramIsArray(self, param):
665 return param.attrib.get('len') is not None
666
667 # Check if the parameter passed in is a pointer
668 def paramIsPointer(self, param):
669 ispointer = False
670 for elem in param:
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600671 if ((elem.tag is not 'type') and (elem.tail is not None)) and '*' in elem.tail:
672 ispointer = True
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600673 return ispointer
Mark Lobodzinski60b77b32017-02-14 09:16:56 -0700674
675 # Check if an object is a non-dispatchable handle
676 def isHandleTypeNonDispatchable(self, handletype):
677 handle = self.registry.tree.find("types/type/[name='" + handletype + "'][@category='handle']")
678 if handle is not None and handle.find('type').text == 'VK_DEFINE_NON_DISPATCHABLE_HANDLE':
679 return True
680 else:
681 return False
682
683 # Check if an object is a dispatchable handle
684 def isHandleTypeDispatchable(self, handletype):
685 handle = self.registry.tree.find("types/type/[name='" + handletype + "'][@category='handle']")
686 if handle is not None and handle.find('type').text == 'VK_DEFINE_HANDLE':
687 return True
688 else:
689 return False
690
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600691 def makeThreadUseBlock(self, cmd, functionprefix):
692 """Generate C function pointer typedef for <command> Element"""
693 paramdecl = ''
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600694 # Find and add any parameters that are thread unsafe
695 params = cmd.findall('param')
696 for param in params:
697 paramname = param.find('name')
698 if False: # self.paramIsPointer(param):
699 paramdecl += ' // not watching use of pointer ' + paramname.text + '\n'
700 else:
701 externsync = param.attrib.get('externsync')
702 if externsync == 'true':
703 if self.paramIsArray(param):
John Zulauf03208642019-04-24 14:40:41 -0600704 paramdecl += 'if (' + paramname.text + ') {\n'
705 paramdecl += ' for (uint32_t index=0; index < ' + param.attrib.get('len') + '; index++) {\n'
706 paramdecl += ' ' + functionprefix + 'WriteObject(' + paramname.text + '[index]);\n'
707 paramdecl += ' }\n'
Mark Lobodzinski716a4f92018-11-16 08:54:20 -0700708 paramdecl += '}\n'
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600709 else:
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700710 paramdecl += functionprefix + 'WriteObject(' + paramname.text + ');\n'
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600711 elif (param.attrib.get('externsync')):
712 if self.paramIsArray(param):
713 # Externsync can list pointers to arrays of members to synchronize
John Zulauf03208642019-04-24 14:40:41 -0600714 paramdecl += 'if (' + paramname.text + ') {\n'
715 paramdecl += ' for (uint32_t index=0; index < ' + param.attrib.get('len') + '; index++) {\n'
716 second_indent = ' '
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600717 for member in externsync.split(","):
718 # Replace first empty [] in member name with index
719 element = member.replace('[]','[index]',1)
720 if '[]' in element:
Mark Lobodzinski6d495662019-02-15 11:54:53 -0700721 # TODO: These null checks can be removed if threading ends up behind parameter
722 # validation in layer order
723 element_ptr = element.split('[]')[0]
John Zulauf03208642019-04-24 14:40:41 -0600724 paramdecl += ' if (' + element_ptr + ') {\n'
Mark Lobodzinski6d495662019-02-15 11:54:53 -0700725 # Replace any second empty [] in element name with inner array index based on mapping array
726 # names like "pSomeThings[]" to "someThingCount" array size. This could be more robust by
727 # mapping a param member name to a struct type and "len" attribute.
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600728 limit = element[0:element.find('s[]')] + 'Count'
729 dotp = limit.rfind('.p')
730 limit = limit[0:dotp+1] + limit[dotp+2:dotp+3].lower() + limit[dotp+3:]
John Zulauf03208642019-04-24 14:40:41 -0600731 paramdecl += ' for (uint32_t index2=0; index2 < '+limit+'; index2++) {\n'
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600732 element = element.replace('[]','[index2]')
John Zulauf03208642019-04-24 14:40:41 -0600733 second_indent = ' '
Mark Lobodzinski6d495662019-02-15 11:54:53 -0700734 paramdecl += ' ' + second_indent + functionprefix + 'WriteObject(' + element + ');\n'
John Zulauf03208642019-04-24 14:40:41 -0600735 paramdecl += ' }\n'
Mark Lobodzinski6d495662019-02-15 11:54:53 -0700736 paramdecl += ' }\n'
Mark Lobodzinski6d495662019-02-15 11:54:53 -0700737 else:
738 paramdecl += ' ' + second_indent + functionprefix + 'WriteObject(' + element + ');\n'
John Zulauf03208642019-04-24 14:40:41 -0600739 paramdecl += ' }\n'
Mark Lobodzinski716a4f92018-11-16 08:54:20 -0700740 paramdecl += '}\n'
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600741 else:
742 # externsync can list members to synchronize
743 for member in externsync.split(","):
744 member = str(member).replace("::", "->")
Mark Lobodzinski9c147802017-02-10 08:34:54 -0700745 member = str(member).replace(".", "->")
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700746 paramdecl += ' ' + functionprefix + 'WriteObject(' + member + ');\n'
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600747 else:
748 paramtype = param.find('type')
749 if paramtype is not None:
750 paramtype = paramtype.text
751 else:
752 paramtype = 'None'
Mark Lobodzinski60b77b32017-02-14 09:16:56 -0700753 if (self.isHandleTypeDispatchable(paramtype) or self.isHandleTypeNonDispatchable(paramtype)) and paramtype != 'VkPhysicalDevice':
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600754 if self.paramIsArray(param) and ('pPipelines' != paramname.text):
Mark Lobodzinski9c147802017-02-10 08:34:54 -0700755 # Add pointer dereference for array counts that are pointer values
756 dereference = ''
757 for candidate in params:
758 if param.attrib.get('len') == candidate.find('name').text:
759 if self.paramIsPointer(candidate):
760 dereference = '*'
Mark Lobodzinski60b77b32017-02-14 09:16:56 -0700761 param_len = str(param.attrib.get('len')).replace("::", "->")
John Zulauf03208642019-04-24 14:40:41 -0600762 paramdecl += 'if (' + paramname.text + ') {\n'
763 paramdecl += ' for (uint32_t index = 0; index < ' + dereference + param_len + '; index++) {\n'
764 paramdecl += ' ' + functionprefix + 'ReadObject(' + paramname.text + '[index]);\n'
765 paramdecl += ' }\n'
Mark Lobodzinski716a4f92018-11-16 08:54:20 -0700766 paramdecl += '}\n'
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600767 elif not self.paramIsPointer(param):
768 # Pointer params are often being created.
769 # They are not being read from.
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700770 paramdecl += functionprefix + 'ReadObject(' + paramname.text + ');\n'
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600771 explicitexternsyncparams = cmd.findall("param[@externsync]")
772 if (explicitexternsyncparams is not None):
773 for param in explicitexternsyncparams:
774 externsyncattrib = param.attrib.get('externsync')
775 paramname = param.find('name')
Mark Lobodzinski716a4f92018-11-16 08:54:20 -0700776 paramdecl += '// Host access to '
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600777 if externsyncattrib == 'true':
778 if self.paramIsArray(param):
779 paramdecl += 'each member of ' + paramname.text
780 elif self.paramIsPointer(param):
781 paramdecl += 'the object referenced by ' + paramname.text
782 else:
783 paramdecl += paramname.text
784 else:
785 paramdecl += externsyncattrib
786 paramdecl += ' must be externally synchronized\n'
787
788 # Find and add any "implicit" parameters that are thread unsafe
789 implicitexternsyncparams = cmd.find('implicitexternsyncparams')
790 if (implicitexternsyncparams is not None):
791 for elem in implicitexternsyncparams:
Mark Lobodzinski716a4f92018-11-16 08:54:20 -0700792 paramdecl += '// '
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600793 paramdecl += elem.text
794 paramdecl += ' must be externally synchronized between host accesses\n'
795
796 if (paramdecl == ''):
797 return None
798 else:
799 return paramdecl
800 def beginFile(self, genOpts):
801 OutputGenerator.beginFile(self, genOpts)
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600802 #
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700803 # TODO: LUGMAL -- remove this and add our copyright
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600804 # User-supplied prefix text, if any (list of strings)
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700805 write(self.inline_copyright_message, file=self.outFile)
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700806
807 self.header_file = (genOpts.filename == 'thread_safety.h')
808 self.source_file = (genOpts.filename == 'thread_safety.cpp')
809
810 if not self.header_file and not self.source_file:
811 print("Error: Output Filenames have changed, update generator source.\n")
812 sys.exit(1)
813
814 if self.source_file:
815 write('#include "chassis.h"', file=self.outFile)
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700816 write('#include "thread_safety.h"', file=self.outFile)
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600817 self.newline()
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700818 write(self.inline_custom_source_preamble, file=self.outFile)
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700819
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700820
821 def endFile(self):
Mark Lobodzinski796454c2018-12-11 16:10:55 -0700822
823 # Create class definitions
824 counter_class_defs = ''
825 counter_class_instances = ''
826 counter_class_bodies = ''
827
828 for obj in self.non_dispatchable_types:
829 counter_class_defs += ' counter<%s> c_%s;\n' % (obj, obj)
830 if obj in self.object_to_debug_report_type:
831 obj_type = self.object_to_debug_report_type[obj]
832 else:
833 obj_type = 'VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT'
834 counter_class_instances += ' c_%s("%s", %s, &report_data),\n' % (obj, obj, obj_type)
835 counter_class_bodies += 'WRAPPER(%s)\n' % obj
836 if self.header_file:
837 class_def = self.inline_custom_header_preamble.replace('COUNTER_CLASS_DEFINITIONS_TEMPLATE', counter_class_defs)
838 class_def = class_def.replace('COUNTER_CLASS_INSTANCES_TEMPLATE', counter_class_instances[:-2]) # Kill last comma
839 class_def = class_def.replace('COUNTER_CLASS_BODIES_TEMPLATE', counter_class_bodies)
840 write(class_def, file=self.outFile)
841 write('\n'.join(self.sections['command']), file=self.outFile)
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700842 if self.header_file:
843 write('};', file=self.outFile)
844
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600845 # Finish processing in superclass
846 OutputGenerator.endFile(self)
Mark Lobodzinski706e52b2018-12-11 13:21:52 -0700847
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600848 def beginFeature(self, interface, emit):
849 #write('// starting beginFeature', file=self.outFile)
850 # Start processing in superclass
851 OutputGenerator.beginFeature(self, interface, emit)
852 # C-specific
853 # Accumulate includes, defines, types, enums, function pointer typedefs,
854 # end function prototypes separately for this feature. They're only
855 # printed in endFeature().
Mark Lobodzinski62f71562017-10-24 13:41:18 -0600856 self.featureExtraProtect = GetFeatureProtect(interface)
Mark Lobodzinski796454c2018-12-11 16:10:55 -0700857 if (self.featureExtraProtect is not None):
858 self.appendSection('command', '\n#ifdef %s' % self.featureExtraProtect)
859
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600860 #write('// ending beginFeature', file=self.outFile)
861 def endFeature(self):
862 # C-specific
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600863 if (self.emit):
MichaƂ Janiszewski3c3ce9e2018-10-30 23:25:21 +0100864 if (self.featureExtraProtect is not None):
Mark Lobodzinski796454c2018-12-11 16:10:55 -0700865 self.appendSection('command', '#endif // %s' % self.featureExtraProtect)
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600866 # Finish processing in superclass
867 OutputGenerator.endFeature(self)
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600868 #
869 # Append a definition to the specified section
870 def appendSection(self, section, text):
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600871 self.sections[section].append(text)
872 #
873 # Type generation
Mike Schuchardtf375c7c2017-12-28 11:23:48 -0700874 def genType(self, typeinfo, name, alias):
Mark Lobodzinski796454c2018-12-11 16:10:55 -0700875 OutputGenerator.genType(self, typeinfo, name, alias)
876 type_elem = typeinfo.elem
877 category = type_elem.get('category')
878 if category == 'handle':
879 if self.isHandleTypeNonDispatchable(name):
880 self.non_dispatchable_types.add(name)
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600881 #
882 # Struct (e.g. C "struct" type) generation.
883 # This is a special case of the <type> tag where the contents are
884 # interpreted as a set of <member> tags instead of freeform C
885 # C type declarations. The <member> tags are just like <param>
886 # tags - they are a declaration of a struct or union member.
887 # Only simple member declarations are supported (no nested
888 # structs etc.)
Mike Schuchardtf375c7c2017-12-28 11:23:48 -0700889 def genStruct(self, typeinfo, typeName, alias):
890 OutputGenerator.genStruct(self, typeinfo, typeName, alias)
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600891 body = 'typedef ' + typeinfo.elem.get('category') + ' ' + typeName + ' {\n'
892 # paramdecl = self.makeCParamDecl(typeinfo.elem, self.genOpts.alignFuncParam)
893 for member in typeinfo.elem.findall('.//member'):
894 body += self.makeCParamDecl(member, self.genOpts.alignFuncParam)
895 body += ';\n'
896 body += '} ' + typeName + ';\n'
897 self.appendSection('struct', body)
898 #
899 # Group (e.g. C "enum" type) generation.
900 # These are concatenated together with other types.
Mike Schuchardtf375c7c2017-12-28 11:23:48 -0700901 def genGroup(self, groupinfo, groupName, alias):
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600902 pass
903 # Enumerant generation
904 # <enum> tags may specify their values in several ways, but are usually
905 # just integers.
Mike Schuchardtf375c7c2017-12-28 11:23:48 -0700906 def genEnum(self, enuminfo, name, alias):
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600907 pass
908 #
909 # Command generation
Mike Schuchardtf375c7c2017-12-28 11:23:48 -0700910 def genCmd(self, cmdinfo, name, alias):
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600911 # Commands shadowed by interface functions and are not implemented
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600912 special_functions = [
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600913 'vkCreateDevice',
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600914 'vkCreateInstance',
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600915 'vkAllocateCommandBuffers',
916 'vkFreeCommandBuffers',
John Zulaufe28aa342018-10-24 12:18:39 -0600917 'vkResetCommandPool',
918 'vkDestroyCommandPool',
Mark Lobodzinski3bd82ad2017-02-16 11:45:27 -0700919 'vkAllocateDescriptorSets',
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700920 'vkQueuePresentKHR',
Mark Lobodzinski8925c052018-12-18 12:41:15 -0700921 'vkGetSwapchainImagesKHR',
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600922 ]
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700923 if name == 'vkQueuePresentKHR' or (name in special_functions and self.source_file):
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600924 return
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700925
926 if (("DebugMarker" in name or "DebugUtilsObject" in name) and "EXT" in name):
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600927 self.appendSection('command', '// TODO - not wrapping EXT function ' + name)
928 return
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700929
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600930 # Determine first if this function needs to be intercepted
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700931 startthreadsafety = self.makeThreadUseBlock(cmdinfo.elem, 'Start')
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600932 if startthreadsafety is None:
933 return
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700934 finishthreadsafety = self.makeThreadUseBlock(cmdinfo.elem, 'Finish')
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600935
Mike Schuchardtf375c7c2017-12-28 11:23:48 -0700936 OutputGenerator.genCmd(self, cmdinfo, name, alias)
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700937
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600938 # setup common to call wrappers
939 # first parameter is always dispatchable
940 dispatchable_type = cmdinfo.elem.find('param/type').text
941 dispatchable_name = cmdinfo.elem.find('param/name').text
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700942
943 decls = self.makeCDecls(cmdinfo.elem)
944
Mark Lobodzinskicd05c1e2019-01-17 15:33:46 -0700945 result_type = cmdinfo.elem.find('proto/type')
946
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700947 if self.source_file:
948 pre_decl = decls[0][:-1]
949 pre_decl = pre_decl.split("VKAPI_CALL ")[1]
950 pre_decl = 'void ThreadSafety::PreCallRecord' + pre_decl + ' {'
951
952 # PreCallRecord
953 self.appendSection('command', '')
954 self.appendSection('command', pre_decl)
955 self.appendSection('command', " " + "\n ".join(str(startthreadsafety).rstrip().split("\n")))
956 self.appendSection('command', '}')
957
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700958 # PostCallRecord
Mark Lobodzinskicd05c1e2019-01-17 15:33:46 -0700959 post_decl = pre_decl.replace('PreCallRecord', 'PostCallRecord')
960 if result_type.text == 'VkResult':
961 post_decl = post_decl.replace(')', ',\n VkResult result)')
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700962 self.appendSection('command', '')
963 self.appendSection('command', post_decl)
964 self.appendSection('command', " " + "\n ".join(str(finishthreadsafety).rstrip().split("\n")))
965 self.appendSection('command', '}')
966
967 if self.header_file:
968 pre_decl = decls[0][:-1]
969 pre_decl = pre_decl.split("VKAPI_CALL ")[1]
970 pre_decl = 'void PreCallRecord' + pre_decl + ';'
971
972 # PreCallRecord
973 self.appendSection('command', '')
974 self.appendSection('command', pre_decl)
975
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700976 # PostCallRecord
Mark Lobodzinskicd05c1e2019-01-17 15:33:46 -0700977 post_decl = pre_decl.replace('PreCallRecord', 'PostCallRecord')
978 if result_type.text == 'VkResult':
979 post_decl = post_decl.replace(')', ',\n VkResult result)')
Mark Lobodzinski1f2ba262018-12-04 14:15:47 -0700980 self.appendSection('command', '')
981 self.appendSection('command', post_decl)
982
Mark Lobodzinskiff910992016-10-11 14:29:52 -0600983 #
984 # override makeProtoName to drop the "vk" prefix
985 def makeProtoName(self, name, tail):
986 return self.genOpts.apientry + name[2:] + tail