| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959 |
- // 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_ID, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("decorated with Location multiple times is not allowed"));
- }
- 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_ID, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("decorated with Location multiple times is not allowed"));
- }
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08722"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Entry-point has conflicting output location assignment "
- "at location 1"));
- }
- TEST_F(ValidateInterfacesTest, VulkanPatchAndNonPatchOverlap) {
- const std::string text = R"(
- OpCapability Tessellation
- OpMemoryModel Logical GLSL450
- OpEntryPoint TessellationControl %main "main" %a %b
- OpExecutionMode %main OutputVertices 4
- OpDecorate %a Location 0
- OpDecorate %b Patch
- OpDecorate %b Location 0
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %uint = OpTypeInt 32 0
- %uint_4 = OpConstant %uint 4
- %_arr_float_uint_4 = OpTypeArray %float %uint_4
- %_ptr_Output__arr_float_uint_4 = OpTypePointer Output %_arr_float_uint_4
- %a = OpVariable %_ptr_Output__arr_float_uint_4 Output
- %_ptr_Output_float = OpTypePointer Output %float
- %b = OpVariable %_ptr_Output_float Output
- %main = OpFunction %void None %3
- %5 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_2);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- }
- TEST_F(ValidateInterfacesTest, VulkanPatchOverlap) {
- const std::string text = R"(
- OpCapability Tessellation
- OpMemoryModel Logical GLSL450
- OpEntryPoint TessellationControl %main "main" %a %b %c
- OpExecutionMode %main OutputVertices 4
- OpDecorate %a Location 0
- OpDecorate %b Patch
- OpDecorate %b Location 6
- OpDecorate %c Patch
- OpDecorate %c Location 6
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %uint = OpTypeInt 32 0
- %uint_4 = OpConstant %uint 4
- %_arr_float_uint_4 = OpTypeArray %float %uint_4
- %_ptr_Output__arr_float_uint_4 = OpTypePointer Output %_arr_float_uint_4
- %a = OpVariable %_ptr_Output__arr_float_uint_4 Output
- %_ptr_Output_float = OpTypePointer Output %float
- %b = OpVariable %_ptr_Output_float Output
- %c = OpVariable %_ptr_Output_float Output
- %main = OpFunction %void None %3
- %5 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_2);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08722"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting output location "
- "assignment at location 6, component 0"));
- }
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- 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_ID, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("decorated with Component multiple times is not allowed"));
- }
- 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_ID, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("decorated with Component multiple times is not allowed"));
- }
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08722"));
- 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_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08722"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting output location "
- "assignment at location 0, component 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 1
- 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(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08722"));
- 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_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location "
- "assignment at location 0, component 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_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpEntryPoint-08721"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Entry-point has conflicting input location "
- "assignment at location 0, component 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."));
- }
- TEST_F(ValidateInterfacesTest, InvalidLocationTypePointer) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical Simple
- OpEntryPoint Vertex %1 "Aiqn0" %2 %3
- OpDecorate %2 Location 0
- %void = OpTypeVoid
- %5 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %_ptr_Private_void = OpTypePointer Private %void
- %uint = OpTypeInt 32 0
- %uint_4278132784 = OpConstant %uint 4278132784
- %_arr__ptr_Private_void_uint_4278132784 = OpTypeArray %_ptr_Private_void %uint_4278132784
- %_ptr_Output__arr__ptr_Private_void_uint_4278132784 = OpTypePointer Output %_arr__ptr_Private_void_uint_4278132784
- %2 = OpVariable %_ptr_Output__arr__ptr_Private_void_uint_4278132784 Output
- %_ptr_Output__ptr_Private_void = OpTypePointer Output %_ptr_Private_void
- %3 = OpVariable %_ptr_Output__arr__ptr_Private_void_uint_4278132784 Output
- %1 = OpFunction %void None %5
- %15 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Invalid type to assign a location"));
- }
- TEST_F(ValidateInterfacesTest, PhysicalStorageBufferPointer) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability PhysicalStorageBufferAddresses
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Vertex %main "main" %var
- OpDecorate %var Location 0
- OpDecorate %var RestrictPointer
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %psb_ptr = OpTypePointer PhysicalStorageBuffer %uint
- %in_ptr = OpTypePointer Input %psb_ptr
- %var = OpVariable %in_ptr Input
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_3));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Input-09557"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Input/Output interface variable id <2> contains a "
- "PhysicalStorageBuffer pointer, which is not allowed"));
- }
- TEST_F(ValidateInterfacesTest, PhysicalStorageBufferPointerArray) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability PhysicalStorageBufferAddresses
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Vertex %main "main" %var
- OpDecorate %var Location 0
- OpDecorate %var RestrictPointer
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %uint_3 = OpConstant %uint 3
- %psb_ptr = OpTypePointer PhysicalStorageBuffer %uint
- %array = OpTypeArray %psb_ptr %uint_3
- %in_ptr = OpTypePointer Input %array
- %var = OpVariable %in_ptr Input
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_3));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Input-09557"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Input/Output interface variable id <2> contains a "
- "PhysicalStorageBuffer pointer, which is not allowed"));
- }
- TEST_F(ValidateInterfacesTest, PhysicalStorageBufferPointerStruct) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability PhysicalStorageBufferAddresses
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Vertex %main "main" %var
- OpDecorate %var Location 0
- OpDecorate %var RestrictPointer
- %void = OpTypeVoid
- %int = OpTypeInt 32 1
- OpTypeForwardPointer %psb_ptr PhysicalStorageBuffer
- %struct_0 = OpTypeStruct %int %psb_ptr
- %struct_1 = OpTypeStruct %int %int
- %psb_ptr = OpTypePointer PhysicalStorageBuffer %struct_1
- %in_ptr = OpTypePointer Input %struct_0
- %var = OpVariable %in_ptr Input
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_3));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Input-09557"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Input/Output interface variable id <2> contains a "
- "PhysicalStorageBuffer pointer, which is not allowed"));
- }
- TEST_F(ValidateInterfacesTest, PhysicalStorageBufferPointerArrayOfStruct) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability PhysicalStorageBufferAddresses
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Vertex %main "main" %var
- OpDecorate %var Location 0
- OpDecorate %var RestrictPointer
- %void = OpTypeVoid
- %int = OpTypeInt 32 1
- %uint = OpTypeInt 32 0
- %uint_3 = OpConstant %uint 3
- OpTypeForwardPointer %psb_ptr PhysicalStorageBuffer
- %array_1 = OpTypeArray %psb_ptr %uint_3
- %struct_0 = OpTypeStruct %int %array_1
- %struct_1 = OpTypeStruct %int %int
- %psb_ptr = OpTypePointer PhysicalStorageBuffer %struct_1
- %array_0 = OpTypeArray %struct_0 %uint_3
- %in_ptr = OpTypePointer Input %array_0
- %var = OpVariable %in_ptr Input
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_3));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Input-09557"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Input/Output interface variable id <2> contains a "
- "PhysicalStorageBuffer pointer, which is not allowed"));
- }
- TEST_F(ValidateInterfacesTest, PhysicalStorageBufferPointerNestedStruct) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability PhysicalStorageBufferAddresses
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Vertex %main "main" %var
- OpDecorate %var Location 0
- OpDecorate %var RestrictPointer
- %void = OpTypeVoid
- %int = OpTypeInt 32 1
- OpTypeForwardPointer %psb_ptr PhysicalStorageBuffer
- %struct_0 = OpTypeStruct %int %psb_ptr
- %struct_1 = OpTypeStruct %int %int
- %psb_ptr = OpTypePointer PhysicalStorageBuffer %struct_1
- %struct_2 = OpTypeStruct %int %struct_0
- %in_ptr = OpTypePointer Input %struct_2
- %var = OpVariable %in_ptr Input
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_3));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Input-09557"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Input/Output interface variable id <2> contains a "
- "PhysicalStorageBuffer pointer, which is not allowed"));
- }
- TEST_F(ValidateInterfacesTest, UntypedVariableInputMissing) {
- const std::string text = R"(
- OpCapability Kernel
- OpCapability UntypedPointersKHR
- OpExtension "SPV_KHR_untyped_pointers"
- OpMemoryModel Logical OpenCL
- OpEntryPoint Kernel %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpName %var "var"
- OpDecorate %var BuiltIn LocalInvocationId
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int3 = OpTypeVector %int 3
- %ptr = OpTypeUntypedPointerKHR Input
- %var = OpUntypedVariableKHR %ptr Input %int3
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %load = OpLoad %int3 %var
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(text);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- 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, UntypedVariableWorkgroupMissingSpv1p4) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability UntypedPointersKHR
- OpCapability WorkgroupMemoryExplicitLayoutKHR
- OpExtension "SPV_KHR_workgroup_memory_explicit_layout"
- OpExtension "SPV_KHR_untyped_pointers"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpName %var "var"
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %ptr = OpTypeUntypedPointerKHR Workgroup
- %var = OpUntypedVariableKHR %ptr Workgroup %int
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %load = OpLoad %int %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, UntypedIdMatchesInputVulkan1p3) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability UntypedPointersKHR
- OpExtension "SPV_KHR_untyped_pointers"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- OpDecorate %1 Block
- OpMemberDecorate %1 0 Offset 0
- %void = OpTypeVoid
- %float = OpTypeFloat 32
- %1 = OpTypeStruct %float ; this id matches Input storage class
- %ptr = OpTypeUntypedPointerKHR Uniform
- %var = OpUntypedVariableKHR %ptr Uniform %1
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- SetAssembleOptions(SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_3));
- }
- TEST_F(ValidateInterfacesTest, UntypedIdMatchesPushConstantVulkan1p3) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability UntypedPointersKHR
- OpExtension "SPV_KHR_untyped_pointers"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- OpDecorate %9 Block
- OpMemberDecorate %9 0 Offset 0
- %void = OpTypeVoid
- %float = OpTypeFloat 32
- %9 = OpTypeStruct %float ; this id matches PushConstant storage class
- %ptr = OpTypeUntypedPointerKHR Uniform
- %var = OpUntypedVariableKHR %ptr Uniform %9
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- SetAssembleOptions(SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- CompileSuccessfully(text, SPV_ENV_VULKAN_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_3));
- }
- } // namespace
- } // namespace val
- } // namespace spvtools
|