Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/Vulkan-Loader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>2022-05-11 17:43:14 +0300
committerCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>2022-05-11 17:57:30 +0300
commit8dc9ab5ce8e36b058920195820596ce7fd576293 (patch)
tree49d64a3c153aeb84c30db545887184344648c631
parent08cad0c015217bff6ce42dda3e1828a03a7ee744 (diff)
Revert "Implement unknown function intercept in layers"
This reverts commit 0fd2ff83845abb924db9426b1741882e5ca064bf.
-rw-r--r--loader/loader.c5
-rw-r--r--tests/framework/layer/test_layer.cpp11
-rw-r--r--tests/framework/layer/test_layer.h13
-rw-r--r--tests/loader_unknown_ext_tests.cpp67
4 files changed, 9 insertions, 87 deletions
diff --git a/loader/loader.c b/loader/loader.c
index 3c1270aac..4447fb52d 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -4018,11 +4018,6 @@ static VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL loader_gpa_instance_internal(VkI
return addr;
}
- addr = loader_phys_dev_ext_gpa_term(loader_get_instance(inst), pName);
- if (addr) {
- return addr;
- }
-
// Don't call down the chain, this would be an infinite loop
loader_log(NULL, VULKAN_LOADER_DEBUG_BIT, 0, "loader_gpa_instance_internal() unrecognized name %s", pName);
return NULL;
diff --git a/tests/framework/layer/test_layer.cpp b/tests/framework/layer/test_layer.cpp
index 9bd01ff73..5be8d8ddc 100644
--- a/tests/framework/layer/test_layer.cpp
+++ b/tests/framework/layer/test_layer.cpp
@@ -170,10 +170,6 @@ VKAPI_ATTR VkResult VKAPI_CALL test_vkCreateInstance(const VkInstanceCreateInfo*
if (layer.create_instance_callback) result = layer.create_instance_callback(layer);
- for (auto& func : layer.intercept_custom_physical_device_functions)
- func.second = reinterpret_cast<PFN_LayerPhysicalDeviceInterceptionFunc>(
- fpGetInstanceProcAddr(layer.instance_handle, func.first.name.c_str()));
-
return result;
}
@@ -434,16 +430,11 @@ VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL get_physical_device_func(VkInstance ins
if (string_eq(pName, "vkEnumeratePhysicalDeviceGroups")) return (PFN_vkVoidFunction)test_vkEnumeratePhysicalDeviceGroups;
if (string_eq(pName, "vkGetPhysicalDeviceProperties")) return (PFN_vkVoidFunction)test_vkGetPhysicalDeviceProperties;
- for (auto& func : layer.implement_custom_physical_device_functions) {
+ for (auto& func : layer.custom_physical_device_functions) {
if (func.name == pName) {
return to_vkVoidFunction(func.function);
}
}
- for (auto& func : layer.intercept_custom_physical_device_functions) {
- if (func.first.name == pName) {
- return to_vkVoidFunction(func.first.function);
- }
- }
return nullptr;
}
diff --git a/tests/framework/layer/test_layer.h b/tests/framework/layer/test_layer.h
index cf95b9a3a..32001378a 100644
--- a/tests/framework/layer/test_layer.h
+++ b/tests/framework/layer/test_layer.h
@@ -86,13 +86,7 @@ struct TestLayer;
// TestLayer* layer - Access to the TestLayer object itself
// void* data - pointer to test specific thing, used to pass data from the test into the TestLayer
// Returns VkResult - This value will be used as the return value of the function
-using FP_layer_callback = VKAPI_ATTR VkResult (VKAPI_CALL*)(TestLayer& layer, void* data);
-
-// Custom interception function for testing unknown physical device functions
-using PFN_LayerPhysicalDeviceInterceptionFunc = VKAPI_ATTR uint32_t(VKAPI_CALL*)(VkPhysicalDevice device, TestLayer& layer,
- uint32_t function_index, uint32_t input);
-
-using VulkanPhysicalDeviceInterceptionFunction = std::pair<VulkanFunction, PFN_LayerPhysicalDeviceInterceptionFunc>;
+using FP_layer_callback = VkResult (*)(TestLayer& layer, void* data);
struct TestLayer {
fs::path manifest_file_path;
@@ -137,10 +131,7 @@ struct TestLayer {
BUILDER_VECTOR(TestLayer, VkPhysicalDeviceGroupProperties, removed_physical_device_groups, removed_physical_device_group)
BUILDER_VECTOR(TestLayer, VkPhysicalDeviceGroupProperties, added_physical_device_groups, added_physical_device_group)
- BUILDER_VECTOR(TestLayer, VulkanFunction, implement_custom_physical_device_functions,
- implement_custom_physical_device_functions)
- BUILDER_VECTOR(TestLayer, VulkanPhysicalDeviceInterceptionFunction, intercept_custom_physical_device_functions,
- intercept_custom_physical_device_function)
+ BUILDER_VECTOR(TestLayer, VulkanFunction, custom_physical_device_functions, custom_physical_device_function)
PFN_vkGetInstanceProcAddr next_vkGetInstanceProcAddr = VK_NULL_HANDLE;
PFN_GetPhysicalDeviceProcAddr next_GetPhysicalDeviceProcAddr = VK_NULL_HANDLE;
diff --git a/tests/loader_unknown_ext_tests.cpp b/tests/loader_unknown_ext_tests.cpp
index b366c642a..492eec393 100644
--- a/tests/loader_unknown_ext_tests.cpp
+++ b/tests/loader_unknown_ext_tests.cpp
@@ -284,67 +284,12 @@ TEST(UnknownFunction, PhysicalDeviceFunctionMultipleDriverSupportWithImplicitLay
}
}
-VKAPI_ATTR uint32_t VKAPI_CALL DriverLayerThunkFunc(VkPhysicalDevice device, TestLayer& layer, uint32_t function_index,
- uint32_t input) {
- return input + 1;
-}
-
-VKAPI_ATTR uint32_t VKAPI_CALL LayerInterceptionFunc(VkPhysicalDevice device, TestLayer& layer, uint32_t function_index,
- uint32_t input) {
- if (layer.intercept_custom_physical_device_functions.size() > function_index)
- input = layer.intercept_custom_physical_device_functions.at(function_index).second(device, layer, function_index, input);
- return input;
-}
-
TEST(UnknownFunction, PhysicalDeviceFunctionWithImplicitLayerInterception) {
#if defined(__APPLE__)
GTEST_SKIP() << "Skip this test as currently macOS doesn't fully support unknown functions.";
#endif
FrameworkEnvironment env{};
env.add_icd(TestICDDetails(TEST_ICD_PATH_VERSION_2_EXPORT_ICD_GPDPA));
- auto& driver = env.get_test_icd();
- std::vector<std::string> custom_function_names;
- for (uint32_t i = 0; i < 100; i++) {
- custom_function_names.push_back("vkMyCustomName_" + std::to_string(i));
- }
-
- driver.physical_devices.emplace_back("physical_device_0");
- for (uint32_t i = 0; i < 100; i += 2) {
- driver.add_custom_physical_device_function({custom_function_names.at(i), reinterpret_cast<void*>(DriverLayerThunkFunc)});
- driver.add_custom_physical_device_function(
- {custom_function_names.at(i + 1), reinterpret_cast<void*>(custom_physical_device_functions::func_two)});
- }
- env.add_implicit_layer(ManifestLayer{}.add_layer(ManifestLayer::LayerDescription{}
- .set_name("VK_LAYER_implicit_layer_unknown_function_intercept")
- .set_lib_path(TEST_LAYER_PATH_EXPORT_VERSION_2)
- .set_disable_environment("DISABLE_ME")),
- "implicit_layer_unknown_function_intercept.json");
- auto& layer = env.get_test_layer();
- for (uint32_t i = 0; i < 100; i += 2) {
- layer.add_intercept_custom_physical_device_function(
- {VulkanFunction{custom_function_names.at(i), reinterpret_cast<void*>(LayerInterceptionFunc)}, nullptr});
- }
- InstWrapper inst{env.vulkan_functions};
- inst.CheckCreate();
-
- VkPhysicalDevice phys_dev = inst.GetPhysDev();
- for (uint32_t i = 0; i < 100; i += 2) {
- PFN_LayerPhysicalDeviceInterceptionFunc func0 = inst.load(custom_function_names.at(i).c_str());
- ASSERT_NE(func0, nullptr);
- EXPECT_EQ(func0(phys_dev, layer, i / 2, i), i + 1);
-
- decltype(custom_physical_device_functions::func_two)* func1 = inst.load(custom_function_names.at(i + 1).c_str());
- ASSERT_NE(func1, nullptr);
- EXPECT_NEAR(func1(phys_dev, i, i + 2, 0.123f), i + i + 2.0f + 0.123f, 0.001f);
- }
-}
-
-TEST(UnknownFunction, PhysicalDeviceFunctionWithImplicitLayerImplementation) {
-#if defined(__APPLE__)
- GTEST_SKIP() << "Skip this test as currently macOS doesn't fully support unknown functions.";
-#endif
- FrameworkEnvironment env{};
- env.add_icd(TestICDDetails(TEST_ICD_PATH_VERSION_2_EXPORT_ICD_GPDPA));
uint32_t function_count = MAX_NUM_UNKNOWN_EXTS;
auto& driver = env.get_test_icd();
std::vector<std::string> fake_function_names;
@@ -357,7 +302,7 @@ TEST(UnknownFunction, PhysicalDeviceFunctionWithImplicitLayerImplementation) {
.set_disable_environment("DISABLE_ME")),
"implicit_layer_unknown_function_intercept.json");
auto& layer = env.get_test_layer();
- fill_custom_functions(layer.implement_custom_physical_device_functions, fake_function_names, custom_physical_device_functions{},
+ fill_custom_functions(layer.custom_physical_device_functions, fake_function_names, custom_physical_device_functions{},
function_count);
InstWrapper inst{env.vulkan_functions};
@@ -368,7 +313,7 @@ TEST(UnknownFunction, PhysicalDeviceFunctionWithImplicitLayerImplementation) {
function_count);
}
-TEST(UnknownFunction, PhysicalDeviceFunctionWithMultipleImplicitLayersImplementation) {
+TEST(UnknownFunction, PhysicalDeviceFunctionWithMultipleImplicitLayersInterception) {
#if defined(__APPLE__)
GTEST_SKIP() << "Skip this test as currently macOS doesn't fully support unknown functions.";
#endif
@@ -392,10 +337,10 @@ TEST(UnknownFunction, PhysicalDeviceFunctionWithMultipleImplicitLayersImplementa
"implicit_layer_unknown_function_intercept_1.json");
auto& layer_1 = env.get_test_layer();
for (uint32_t i = 0; i < 25; i++) {
- fill_custom_functions(layer_0.implement_custom_physical_device_functions, fake_function_names,
- custom_physical_device_functions{}, 5, i * 10);
- fill_custom_functions(layer_1.implement_custom_physical_device_functions, fake_function_names,
- custom_physical_device_functions{}, 5, i * 10 + 5);
+ fill_custom_functions(layer_0.custom_physical_device_functions, fake_function_names, custom_physical_device_functions{}, 5,
+ i * 10);
+ fill_custom_functions(layer_1.custom_physical_device_functions, fake_function_names, custom_physical_device_functions{}, 5,
+ i * 10 + 5);
}
InstWrapper inst{env.vulkan_functions};
inst.CheckCreate();