| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543 |
- // Copyright (c) 2018 Google LLC.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #include <string>
- #include "gmock/gmock.h"
- #include "test/unit_spirv.h"
- #include "test/val/val_fixtures.h"
- namespace spvtools {
- namespace val {
- namespace {
- using ::testing::HasSubstr;
- using ValidateInterfacesTest = spvtest::ValidateBase<bool>;
- TEST_F(ValidateInterfacesTest, EntryPointMissingInput) {
- std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "func"
- OpExecutionMode %1 OriginUpperLeft
- %2 = OpTypeVoid
- %3 = OpTypeInt 32 0
- %4 = OpTypePointer Input %3
- %5 = OpVariable %4 Input
- %6 = OpTypeFunction %2
- %1 = OpFunction %2 None %6
- %7 = OpLabel
- %8 = OpLoad %3 %5
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "Interface variable id <5> is used by entry point 'func' id <1>, "
- "but is not listed as an interface"));
- }
- TEST_F(ValidateInterfacesTest, EntryPointMissingOutput) {
- std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "func"
- OpExecutionMode %1 OriginUpperLeft
- %2 = OpTypeVoid
- %3 = OpTypeInt 32 0
- %4 = OpTypePointer Output %3
- %5 = OpVariable %4 Output
- %6 = OpTypeFunction %2
- %1 = OpFunction %2 None %6
- %7 = OpLabel
- %8 = OpLoad %3 %5
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "Interface variable id <5> is used by entry point 'func' id <1>, "
- "but is not listed as an interface"));
- }
- TEST_F(ValidateInterfacesTest, InterfaceMissingUseInSubfunction) {
- std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "func"
- OpExecutionMode %1 OriginUpperLeft
- %2 = OpTypeVoid
- %3 = OpTypeInt 32 0
- %4 = OpTypePointer Input %3
- %5 = OpVariable %4 Input
- %6 = OpTypeFunction %2
- %1 = OpFunction %2 None %6
- %7 = OpLabel
- %8 = OpFunctionCall %2 %9
- OpReturn
- OpFunctionEnd
- %9 = OpFunction %2 None %6
- %10 = OpLabel
- %11 = OpLoad %3 %5
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "Interface variable id <5> is used by entry point 'func' id <1>, "
- "but is not listed as an interface"));
- }
- TEST_F(ValidateInterfacesTest, TwoEntryPointsOneFunction) {
- std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "func" %2
- OpEntryPoint Fragment %1 "func2"
- OpExecutionMode %1 OriginUpperLeft
- %3 = OpTypeVoid
- %4 = OpTypeInt 32 0
- %5 = OpTypePointer Input %4
- %2 = OpVariable %5 Input
- %6 = OpTypeFunction %3
- %1 = OpFunction %3 None %6
- %7 = OpLabel
- %8 = OpLoad %4 %2
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "Interface variable id <2> is used by entry point 'func2' id <1>, "
- "but is not listed as an interface"));
- }
- TEST_F(ValidateInterfacesTest, MissingInterfaceThroughInitializer) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability VariablePointers
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "func"
- OpExecutionMode %1 OriginUpperLeft
- %2 = OpTypeVoid
- %3 = OpTypeInt 32 0
- %4 = OpTypePointer Input %3
- %5 = OpTypePointer Function %4
- %6 = OpVariable %4 Input
- %7 = OpTypeFunction %2
- %1 = OpFunction %2 None %7
- %8 = OpLabel
- %9 = OpVariable %5 Function %6
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_UNIVERSAL_1_3);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "Interface variable id <6> is used by entry point 'func' id <1>, "
- "but is not listed as an interface"));
- }
- TEST_F(ValidateInterfacesTest, NonUniqueInterfacesSPV1p3) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main" %var %var
- OpExecutionMode %main LocalSize 1 1 1
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %uint3 = OpTypeVector %uint 3
- %struct = OpTypeStruct %uint3
- %ptr_struct = OpTypePointer Input %struct
- %var = OpVariable %ptr_struct Input
- %func_ty = OpTypeFunction %void
- %main = OpFunction %void None %func_ty
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateInterfacesTest, NonUniqueInterfacesSPV1p4) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main" %var %var
- OpExecutionMode %main LocalSize 1 1 1
- OpName %main "main"
- OpName %var "var"
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %uint3 = OpTypeVector %uint 3
- %struct = OpTypeStruct %uint3
- %ptr_struct = OpTypePointer Input %struct
- %var = OpVariable %ptr_struct Input
- %func_ty = OpTypeFunction %void
- %main = OpFunction %void None %func_ty
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Non-unique OpEntryPoint interface '2[%var]' is disallowed"));
- }
- TEST_F(ValidateInterfacesTest, MissingGlobalVarSPV1p3) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %uint3 = OpTypeVector %uint 3
- %struct = OpTypeStruct %uint3
- %ptr_struct = OpTypePointer StorageBuffer %struct
- %var = OpVariable %ptr_struct StorageBuffer
- %func_ty = OpTypeFunction %void
- %main = OpFunction %void None %func_ty
- %1 = OpLabel
- %ld = OpLoad %struct %var
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateInterfacesTest, MissingGlobalVarSPV1p4) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpName %var "var"
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %uint3 = OpTypeVector %uint 3
- %struct = OpTypeStruct %uint3
- %ptr_struct = OpTypePointer StorageBuffer %struct
- %var = OpVariable %ptr_struct StorageBuffer
- %func_ty = OpTypeFunction %void
- %main = OpFunction %void None %func_ty
- %1 = OpLabel
- %ld = OpLoad %struct %var
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Interface variable id <2> is used by entry point "
- "'main' id <1>, but is not listed as an interface"));
- }
- TEST_F(ValidateInterfacesTest, FunctionInterfaceVarSPV1p3) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main" %var
- OpExecutionMode %main LocalSize 1 1 1
- OpName %var "var"
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %uint3 = OpTypeVector %uint 3
- %struct = OpTypeStruct %uint3
- %ptr_struct = OpTypePointer Function %struct
- %func_ty = OpTypeFunction %void
- %main = OpFunction %void None %func_ty
- %1 = OpLabel
- %var = OpVariable %ptr_struct Function
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpEntryPoint interfaces must be OpVariables with "
- "Storage Class of Input(1) or Output(3). Found Storage "
- "Class 7 for Entry Point id 1."));
- }
- TEST_F(ValidateInterfacesTest, FunctionInterfaceVarSPV1p4) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main" %var
- OpExecutionMode %main LocalSize 1 1 1
- OpName %var "var"
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %uint3 = OpTypeVector %uint 3
- %struct = OpTypeStruct %uint3
- %ptr_struct = OpTypePointer Function %struct
- %func_ty = OpTypeFunction %void
- %main = OpFunction %void None %func_ty
- %1 = OpLabel
- %var = OpVariable %ptr_struct Function
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("OpEntryPoint interfaces should only list global variables"));
- }
- TEST_F(ValidateInterfacesTest, ModuleSPV1p3ValidateSPV1p4_NotAllUsedGlobals) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpName %var "var"
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %uint3 = OpTypeVector %uint 3
- %struct = OpTypeStruct %uint3
- %ptr_struct = OpTypePointer StorageBuffer %struct
- %var = OpVariable %ptr_struct StorageBuffer
- %func_ty = OpTypeFunction %void
- %main = OpFunction %void None %func_ty
- %1 = OpLabel
- %ld = OpLoad %struct %var
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- }
- TEST_F(ValidateInterfacesTest, ModuleSPV1p3ValidateSPV1p4_DuplicateInterface) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main" %gid %gid
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %gid BuiltIn GlobalInvocationId
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int3 = OpTypeVector %int 3
- %ptr_input_int3 = OpTypePointer Input %int3
- %gid = OpVariable %ptr_input_int3 Input
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- }
- TEST_F(ValidateInterfacesTest, SPV14MultipleEntryPointsSameFunction) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main1" %gid
- OpEntryPoint GLCompute %main "main2" %gid
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %gid BuiltIn GlobalInvocationId
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int3 = OpTypeVector %int 3
- %ptr_input_int3 = OpTypePointer Input %int3
- %gid = OpVariable %ptr_input_int3 Input
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsDoubleAssignmentVariable) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var Location 0
- OpDecorate %var Location 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %ptr_input_float = OpTypePointer Input %float
- %var = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Variable has conflicting location decorations"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsVariableAndMemberAssigned) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var Location 0
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Location 0
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var = OpVariable %ptr_input_struct Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Location-04918"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Members cannot be assigned a location"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsMemberAndSubMemberAssigned) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %outer Block
- OpMemberDecorate %outer 0 Location 0
- OpMemberDecorate %struct 0 Location 0
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float
- %outer = OpTypeStruct %struct
- %ptr_input_outer = OpTypePointer Input %outer
- %var = OpVariable %ptr_input_outer Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Location-04918"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Members cannot be assigned a location"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsDoubleAssignmentStructMember) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %struct Block
- OpMemberDecorate %struct 1 Location 0
- OpMemberDecorate %struct 1 Location 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var = OpVariable %ptr_input_struct Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Member index 1 has conflicting location assignments"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsMissingAssignmentStructMember) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %struct Block
- OpMemberDecorate %struct 1 Location 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var = OpVariable %ptr_input_struct Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Member index 0 is missing a location assignment"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsMissingAssignmentNonBlockStruct) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var = OpVariable %ptr_input_struct Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Variable must be decorated with a location"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsVariableConflictInput) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 0
- OpDecorate %var2 Location 0
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var1 = OpVariable %ptr_input_struct Input
- %var2 = OpVariable %ptr_input_struct Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 0"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsVariableConflictOutput) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 1
- OpDecorate %var2 Location 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float %float
- %ptr_output_struct = OpTypePointer Output %struct
- %var1 = OpVariable %ptr_output_struct Output
- %var2 = OpVariable %ptr_output_struct Output
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Entry-point has conflicting output location assignment "
- "at location 1"));
- }
- TEST_F(ValidateInterfacesTest,
- VulkanLocationsSameLocationInputAndOutputNoConflict) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 1
- OpDecorate %var2 Location 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float %float
- %ptr_input_struct = OpTypePointer Input %struct
- %ptr_output_struct = OpTypePointer Output %struct
- %var1 = OpVariable %ptr_input_struct Input
- %var2 = OpVariable %ptr_output_struct Output
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsVariableInGap) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Location 0
- OpMemberDecorate %struct 1 Location 2
- OpDecorate %var2 Location 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float %float
- %ptr_input_struct = OpTypePointer Input %struct
- %ptr_input_float = OpTypePointer Input %float
- %var1 = OpVariable %ptr_input_struct Input
- %var2 = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsLargeFloatVectorConflict) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability Float64
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 0
- OpDecorate %var2 Location 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %double = OpTypeFloat 64
- %vector = OpTypeVector %double 3
- %ptr_input_float = OpTypePointer Input %float
- %ptr_input_vector = OpTypePointer Input %vector
- %var1 = OpVariable %ptr_input_vector Input
- %var2 = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 1"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsLargeIntVectorConflict) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability Int64
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 0
- OpDecorate %var1 Flat
- OpDecorate %var2 Location 1
- OpDecorate %var2 Flat
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %long = OpTypeInt 64 0
- %vector = OpTypeVector %long 4
- %ptr_input_float = OpTypePointer Input %float
- %ptr_input_vector = OpTypePointer Input %vector
- %var1 = OpVariable %ptr_input_vector Input
- %var2 = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 1"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsMatrix2x2Conflict) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 0
- OpDecorate %var2 Location 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %vector = OpTypeVector %float 2
- %matrix = OpTypeMatrix %vector 2
- %ptr_input_float = OpTypePointer Input %float
- %ptr_input_matrix = OpTypePointer Input %matrix
- %var1 = OpVariable %ptr_input_matrix Input
- %var2 = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 1"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsMatrix3x3Conflict) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 0
- OpDecorate %var2 Location 2
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %vector = OpTypeVector %float 3
- %matrix = OpTypeMatrix %vector 3
- %ptr_input_float = OpTypePointer Input %float
- %ptr_input_matrix = OpTypePointer Input %matrix
- %var1 = OpVariable %ptr_input_matrix Input
- %var2 = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 2"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsMatrix4x4Conflict) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 0
- OpDecorate %var2 Location 3
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %vector = OpTypeVector %float 4
- %matrix = OpTypeMatrix %vector 4
- %ptr_input_float = OpTypePointer Input %float
- %ptr_input_matrix = OpTypePointer Input %matrix
- %var1 = OpVariable %ptr_input_matrix Input
- %var2 = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 3"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsLargeMatrix2x2Conflict) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability Float64
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 0
- OpDecorate %var2 Location 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %double = OpTypeFloat 64
- %vector = OpTypeVector %double 2
- %matrix = OpTypeMatrix %vector 2
- %ptr_input_float = OpTypePointer Input %float
- %ptr_input_matrix = OpTypePointer Input %matrix
- %var1 = OpVariable %ptr_input_matrix Input
- %var2 = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 1"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsLargeMatrix3x3Conflict) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability Float64
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 0
- OpDecorate %var2 Location 5
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %double = OpTypeFloat 64
- %vector = OpTypeVector %double 3
- %matrix = OpTypeMatrix %vector 3
- %ptr_input_float = OpTypePointer Input %float
- %ptr_input_matrix = OpTypePointer Input %matrix
- %var1 = OpVariable %ptr_input_matrix Input
- %var2 = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 5"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsLargeMatrix4x4Conflict) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability Float64
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 0
- OpDecorate %var2 Location 7
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %double = OpTypeFloat 64
- %vector = OpTypeVector %double 4
- %matrix = OpTypeMatrix %vector 4
- %ptr_input_float = OpTypePointer Input %float
- %ptr_input_matrix = OpTypePointer Input %matrix
- %var1 = OpVariable %ptr_input_matrix Input
- %var2 = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 7"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsArray2Conflict) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 0
- OpDecorate %var2 Location 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %int = OpTypeInt 32 0
- %int_2 = OpConstant %int 2
- %array = OpTypeArray %int %int_2
- %struct = OpTypeStruct %array
- %ptr_input_float = OpTypePointer Input %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var1 = OpVariable %ptr_input_struct Input
- %var2 = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 1"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsArray4Conflict) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 0
- OpDecorate %var2 Location 3
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %int = OpTypeInt 32 0
- %int_4 = OpConstant %int 4
- %array = OpTypeArray %int %int_4
- %struct = OpTypeStruct %array
- %ptr_input_float = OpTypePointer Input %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var1 = OpVariable %ptr_input_struct Input
- %var2 = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 3"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsMatrix4x4Array4Conflict) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 0
- OpDecorate %var2 Location 15
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %int = OpTypeInt 32 0
- %int_4 = OpConstant %int 4
- %vector = OpTypeVector %float 4
- %matrix = OpTypeMatrix %vector 4
- %array = OpTypeArray %matrix %int_4
- %struct = OpTypeStruct %array
- %ptr_input_float = OpTypePointer Input %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var1 = OpVariable %ptr_input_struct Input
- %var2 = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 15"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsComponentDisambiguates) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Location 0
- OpMemberDecorate %struct 0 Component 0
- OpMemberDecorate %struct 1 Location 0
- OpMemberDecorate %struct 1 Component 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var1 = OpVariable %ptr_input_struct Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsComponentIn64BitVec3) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability Float64
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Location 0
- OpMemberDecorate %struct 1 Location 1
- OpMemberDecorate %struct 1 Component 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %double = OpTypeFloat 64
- %double3 = OpTypeVector %double 3
- %struct = OpTypeStruct %double3 %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var = OpVariable %ptr_input_struct Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location assignment "
- "at location 1, component 1"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsComponentAfter64BitVec3) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability Float64
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Location 0
- OpMemberDecorate %struct 1 Location 1
- OpMemberDecorate %struct 1 Component 2
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %double = OpTypeFloat 64
- %double3 = OpTypeVector %double 3
- %struct = OpTypeStruct %double3 %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var = OpVariable %ptr_input_struct Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsConflictingComponentVariable) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var Location 0
- OpDecorate %var Component 0
- OpDecorate %var Component 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %ptr_input_float = OpTypePointer Input %float
- %var = OpVariable %ptr_input_float Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Variable has conflicting component decorations"));
- }
- TEST_F(ValidateInterfacesTest,
- VulkanLocationsConflictingComponentStructMember) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Location 0
- OpMemberDecorate %struct 0 Component 0
- OpMemberDecorate %struct 0 Component 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var = OpVariable %ptr_input_struct Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Member index 0 has conflicting component assignments"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsVariableConflictOutputIndex1) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 1
- OpDecorate %var1 Index 1
- OpDecorate %var2 Location 1
- OpDecorate %var2 Index 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float %float
- %ptr_output_struct = OpTypePointer Output %struct
- %var1 = OpVariable %ptr_output_struct Output
- %var2 = OpVariable %ptr_output_struct Output
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Entry-point has conflicting output location assignment "
- "at location 1"));
- }
- TEST_F(ValidateInterfacesTest,
- VulkanLocationsVariableNoConflictDifferentIndex) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1 %var2
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 1
- OpDecorate %var1 Index 0
- OpDecorate %var2 Location 1
- OpDecorate %var2 Index 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float %float
- %ptr_output_struct = OpTypePointer Output %struct
- %var1 = OpVariable %ptr_output_struct Output
- %var2 = OpVariable %ptr_output_struct Output
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsIndexGLCompute) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability Geometry
- OpMemoryModel Logical GLSL450
- OpEntryPoint Geometry %main "main" %var1
- OpExecutionMode %main Triangles
- OpExecutionMode %main OutputPoints
- OpDecorate %var1 Location 1
- OpDecorate %var1 Index 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float %float
- %ptr_output_struct = OpTypePointer Output %struct
- %var1 = OpVariable %ptr_output_struct Output
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Index can only be applied to Fragment output variables"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsIndexInput) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var1
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var1 Location 1
- OpDecorate %var1 Index 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float %float
- %ptr_input_struct = OpTypePointer Input %struct
- %var1 = OpVariable %ptr_input_struct Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("must be in the Output storage class"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsArrayWithComponent) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %4 "main" %11 %18 %28 %36 %40
- OpExecutionMode %4 OriginUpperLeft
- OpDecorate %11 Location 0
- OpDecorate %18 Component 0
- OpDecorate %18 Location 0
- OpDecorate %28 Component 1
- OpDecorate %28 Location 0
- OpDecorate %36 Location 1
- OpDecorate %40 Component 0
- OpDecorate %40 Location 1
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %v4float = OpTypeVector %float 4
- %_ptr_Input_v4float = OpTypePointer Input %v4float
- %11 = OpVariable %_ptr_Input_v4float Input
- %_ptr_Output_float = OpTypePointer Output %float
- %18 = OpVariable %_ptr_Output_float Output
- %uint = OpTypeInt 32 0
- %v3float = OpTypeVector %float 3
- %uint_2 = OpConstant %uint 2
- %_arr_v3float_uint_2 = OpTypeArray %v3float %uint_2
- %_ptr_Output__arr_v3float_uint_2 = OpTypePointer Output %_arr_v3float_uint_2
- %28 = OpVariable %_ptr_Output__arr_v3float_uint_2 Output
- %_ptr_Output_v3float = OpTypePointer Output %v3float
- %36 = OpVariable %_ptr_Input_v4float Input
- %40 = OpVariable %_ptr_Output_float Output
- %4 = OpFunction %void None %3
- %5 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsArrayWithComponentBad) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %4 "main" %11 %18 %28 %36 %40
- OpExecutionMode %4 OriginUpperLeft
- OpDecorate %11 Location 0
- OpDecorate %18 Component 0
- OpDecorate %18 Location 0
- OpDecorate %28 Component 1
- OpDecorate %28 Location 0
- OpDecorate %36 Location 1
- OpDecorate %40 Component 1
- OpDecorate %40 Location 1
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %v4float = OpTypeVector %float 4
- %_ptr_Input_v4float = OpTypePointer Input %v4float
- %11 = OpVariable %_ptr_Input_v4float Input
- %_ptr_Output_float = OpTypePointer Output %float
- %18 = OpVariable %_ptr_Output_float Output
- %uint = OpTypeInt 32 0
- %v3float = OpTypeVector %float 3
- %uint_2 = OpConstant %uint 2
- %_arr_v3float_uint_2 = OpTypeArray %v3float %uint_2
- %_ptr_Output__arr_v3float_uint_2 = OpTypePointer Output %_arr_v3float_uint_2
- %28 = OpVariable %_ptr_Output__arr_v3float_uint_2 Output
- %_ptr_Output_v3float = OpTypePointer Output %v3float
- %36 = OpVariable %_ptr_Input_v4float Input
- %40 = OpVariable %_ptr_Output_float Output
- %4 = OpFunction %void None %3
- %5 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting output location "
- "assignment at location 1, component 1"));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationsLargeLocation) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %4 "????????" %17
- OpExecutionMode %4 OriginUpperLeft
- OpDecorate %17 Location 4227868160
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %v3float = OpTypeVector %float 3
- %_ptr_Input_v3float = OpTypePointer Input %v3float
- %17 = OpVariable %_ptr_Input_v3float Input
- %4 = OpFunction %void None %3
- %5 = OpLabel
- OpUnreachable
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationMeshShader) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability MeshShadingNV
- OpExtension "SPV_NV_mesh_shader"
- OpMemoryModel Logical GLSL450
- OpEntryPoint MeshNV %foo "foo" %in
- OpExecutionMode %foo LocalSize 1 1 1
- OpDecorate %block Block
- OpMemberDecorate %block 0 PerTaskNV
- OpMemberDecorate %block 0 Offset 0
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_32 = OpConstant %int 32
- %array = OpTypeArray %int %int_32
- %block = OpTypeStruct %array
- %ptr_input_block = OpTypePointer Input %block
- %in = OpVariable %ptr_input_block Input
- %void_fn = OpTypeFunction %void
- %foo = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_2);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationArrayWithComponent1) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %in
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Location 0
- OpMemberDecorate %struct 0 Component 0
- OpMemberDecorate %struct 1 Location 0
- OpMemberDecorate %struct 1 Component 1
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %int = OpTypeInt 32 0
- %int_2 = OpConstant %int 2
- %float_arr = OpTypeArray %float %int_2
- %struct = OpTypeStruct %float_arr %float_arr
- %ptr = OpTypePointer Input %struct
- %in = OpVariable %ptr Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateInterfacesTest, VulkanLocationArrayWithComponent2) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability Float64
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %in
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Location 0
- OpMemberDecorate %struct 0 Component 0
- OpMemberDecorate %struct 1 Location 0
- OpMemberDecorate %struct 1 Component 2
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %double = OpTypeFloat 64
- %int = OpTypeInt 32 0
- %int_2 = OpConstant %int 2
- %double_arr = OpTypeArray %double %int_2
- %struct = OpTypeStruct %float %double_arr
- %ptr = OpTypePointer Input %struct
- %in = OpVariable %ptr Input
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateInterfacesTest, DuplicateInterfaceVariableSuccess) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %in %out %in
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %in Location 0
- OpDecorate %out Location 0
- %void = OpTypeVoid
- %float = OpTypeFloat 32
- %in_ptr = OpTypePointer Input %float
- %out_ptr = OpTypePointer Output %float
- %in = OpVariable %in_ptr Input
- %out = OpVariable %out_ptr Output
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateInterfacesTest, StructWithBuiltinsMissingBlock_Bad) {
- // See https://github.com/KhronosGroup/SPIRV-Registry/issues/134
- //
- // When a shader input or output is a struct that does not have Block,
- // then it must have a Location.
- // But BuiltIns must not have locations.
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %in
- OpExecutionMode %main OriginUpperLeft
- ; %struct needs a Block decoration
- OpMemberDecorate %struct 0 BuiltIn Position
- %void = OpTypeVoid
- %float = OpTypeFloat 32
- %v4float = OpTypeVector %float 4
- %struct = OpTypeStruct %v4float
- %in_ptr = OpTypePointer Input %struct
- %in = OpVariable %in_ptr Input
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Location-04919"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "Interface struct has no Block decoration but has BuiltIn members."));
- }
- } // namespace
- } // namespace val
- } // namespace spvtools
|