| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938 |
- // Copyright (c) 2018 Google Inc.
- //
- // 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.
- // Validation tests for memory/storage
- #include <string>
- #include <vector>
- #include "gmock/gmock.h"
- #include "test/unit_spirv.h"
- #include "test/val/val_code_generator.h"
- #include "test/val/val_fixtures.h"
- // For pretty-printing tuples with spv_target_env.
- std::ostream& operator<<(std::ostream& stream, spv_target_env target)
- {
- switch (target) {
- case SPV_ENV_UNIVERSAL_1_3: return stream << "SPV_ENV_UNIVERSAL_1_3";
- case SPV_ENV_UNIVERSAL_1_4: return stream << "SPV_ENV_UNIVERSAL_1_4";
- default: return stream << (unsigned)target;
- }
- }
- namespace spvtools {
- namespace val {
- namespace {
- using ::testing::Combine;
- using ::testing::Eq;
- using ::testing::HasSubstr;
- using ::testing::Values;
- using ValidateMemory = spvtest::ValidateBase<bool>;
- TEST_F(ValidateMemory, VulkanUniformConstantOnNonOpaqueResourceBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %float = OpTypeFloat 32
- %float_ptr = OpTypePointer UniformConstant %float
- %2 = OpVariable %float_ptr UniformConstant
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-UniformConstant-04655"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Variables identified with the UniformConstant storage class "
- "are used only as handles to refer to opaque resources. Such "
- "variables must be typed as OpTypeImage, OpTypeSampler, "
- "OpTypeSampledImage, OpTypeAccelerationStructureKHR, "
- "or an array of one of these types."));
- }
- TEST_F(ValidateMemory, VulkanUniformConstantOnOpaqueResourceGood) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %2 DescriptorSet 0
- OpDecorate %2 Binding 0
- %sampler = OpTypeSampler
- %sampler_ptr = OpTypePointer UniformConstant %sampler
- %2 = OpVariable %sampler_ptr UniformConstant
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, VulkanUniformConstantOnNonOpaqueResourceArrayBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %float = OpTypeFloat 32
- %uint = OpTypeInt 32 0
- %array_size = OpConstant %uint 5
- %array = OpTypeArray %float %array_size
- %array_ptr = OpTypePointer UniformConstant %array
- %2 = OpVariable %array_ptr UniformConstant
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-UniformConstant-04655"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Variables identified with the UniformConstant storage class "
- "are used only as handles to refer to opaque resources. Such "
- "variables must be typed as OpTypeImage, OpTypeSampler, "
- "OpTypeSampledImage, OpTypeAccelerationStructureKHR, "
- "or an array of one of these types."));
- }
- TEST_F(ValidateMemory, VulkanUniformConstantOnOpaqueResourceArrayGood) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %2 DescriptorSet 0
- OpDecorate %2 Binding 0
- %sampler = OpTypeSampler
- %uint = OpTypeInt 32 0
- %array_size = OpConstant %uint 5
- %array = OpTypeArray %sampler %array_size
- %array_ptr = OpTypePointer UniformConstant %array
- %2 = OpVariable %array_ptr UniformConstant
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, VulkanUniformConstantOnOpaqueResourceRuntimeArrayGood) {
- std::string spirv = R"(
- OpCapability RuntimeDescriptorArrayEXT
- OpCapability Shader
- OpExtension "SPV_EXT_descriptor_indexing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %2 DescriptorSet 0
- OpDecorate %2 Binding 0
- %sampler = OpTypeSampler
- %uint = OpTypeInt 32 0
- %array = OpTypeRuntimeArray %sampler
- %array_ptr = OpTypePointer UniformConstant %array
- %2 = OpVariable %array_ptr UniformConstant
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, VulkanUniformOnIntBad) {
- char src[] = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %kernel "main"
- OpExecutionMode %kernel LocalSize 1 1 1
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- %voidty = OpTypeVoid
- %kernelty = OpTypeFunction %voidty
- %intty = OpTypeInt 32 0
- %varty = OpTypePointer Uniform %intty
- %value = OpConstant %intty 42
- %var = OpVariable %varty Uniform
- %kernel = OpFunction %voidty None %kernelty
- %label = OpLabel
- OpStore %var %value
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(src, SPV_ENV_VULKAN_1_1);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Uniform-06807"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("From Vulkan spec:\n"
- "Variables identified with the Uniform storage class are used "
- "to access transparent buffer backed resources. Such variables "
- "must be typed as OpTypeStruct, or an array of this type"));
- }
- // #version 440
- // #extension GL_EXT_nonuniform_qualifier : enable
- // layout(binding = 1) uniform sampler2D s2d[][2];
- // layout(location = 0) in nonuniformEXT int i;
- // void main()
- // {
- // vec4 v = texture(s2d[i][i], vec2(0.3));
- // }
- TEST_F(ValidateMemory, VulkanUniformOnRuntimeArrayOfArrayBad) {
- char src[] = R"(
- OpCapability Shader
- OpCapability ShaderNonUniformEXT
- OpCapability RuntimeDescriptorArrayEXT
- OpCapability SampledImageArrayNonUniformIndexingEXT
- OpExtension "SPV_EXT_descriptor_indexing"
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Vertex %main "main" %i
- OpSource GLSL 440
- OpSourceExtension "GL_EXT_nonuniform_qualifier"
- OpName %main "main"
- OpName %v "v"
- OpName %s2d "s2d"
- OpName %i "i"
- OpDecorate %s2d DescriptorSet 0
- OpDecorate %s2d Binding 1
- OpDecorate %i Location 0
- OpDecorate %i NonUniformEXT
- OpDecorate %21 NonUniformEXT
- OpDecorate %22 NonUniformEXT
- OpDecorate %25 NonUniformEXT
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %v4float = OpTypeVector %float 4
- %_ptr_Function_v4float = OpTypePointer Function %v4float
- %10 = OpTypeImage %float 2D 0 0 0 1 Unknown
- %11 = OpTypeSampledImage %10
- %uint = OpTypeInt 32 0
- %uint_2 = OpConstant %uint 2
- %_arr_11_uint_2 = OpTypeArray %11 %uint_2
- %_runtimearr__arr_11_uint_2 = OpTypeRuntimeArray %_arr_11_uint_2
- %_ptr_Uniform__runtimearr__arr_11_uint_2 = OpTypePointer Uniform %_runtimearr__arr_11_uint_2
- %s2d = OpVariable %_ptr_Uniform__runtimearr__arr_11_uint_2 Uniform
- %int = OpTypeInt 32 1
- %_ptr_Input_int = OpTypePointer Input %int
- %i = OpVariable %_ptr_Input_int Input
- %_ptr_Uniform_11 = OpTypePointer Uniform %11
- %v2float = OpTypeVector %float 2
- %float_0_300000012 = OpConstant %float 0.300000012
- %28 = OpConstantComposite %v2float %float_0_300000012 %float_0_300000012
- %float_0 = OpConstant %float 0
- %main = OpFunction %void None %3
- %5 = OpLabel
- %v = OpVariable %_ptr_Function_v4float Function
- %21 = OpLoad %int %i
- %22 = OpLoad %int %i
- %24 = OpAccessChain %_ptr_Uniform_11 %s2d %21 %22
- %25 = OpLoad %11 %24
- %30 = OpImageSampleExplicitLod %v4float %25 %28 Lod %float_0
- OpStore %v %30
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(src, SPV_ENV_VULKAN_1_1);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Uniform-06807"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("From Vulkan spec:\n"
- "Variables identified with the Uniform storage class are used "
- "to access transparent buffer backed resources. Such variables "
- "must be typed as OpTypeStruct, or an array of this type"));
- }
- // #version 440
- // layout (set=1, binding=1) uniform sampler2D variableName[2][2];
- // void main() {
- // }
- TEST_F(ValidateMemory, VulkanUniformOnArrayOfArrayBad) {
- char src[] = R"(
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Vertex %main "main"
- OpSource GLSL 440
- OpName %main "main"
- OpName %variableName "variableName"
- OpDecorate %variableName DescriptorSet 1
- OpDecorate %variableName Binding 1
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %7 = OpTypeImage %float 2D 0 0 0 1 Unknown
- %8 = OpTypeSampledImage %7
- %uint = OpTypeInt 32 0
- %uint_2 = OpConstant %uint 2
- %_arr_8_uint_2 = OpTypeArray %8 %uint_2
- %_arr__arr_8_uint_2_uint_2 = OpTypeArray %_arr_8_uint_2 %uint_2
- %_ptr_Uniform__arr__arr_8_uint_2_uint_2 = OpTypePointer Uniform %_arr__arr_8_uint_2_uint_2
- %variableName = OpVariable %_ptr_Uniform__arr__arr_8_uint_2_uint_2 Uniform
- %main = OpFunction %void None %3
- %5 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(src, SPV_ENV_VULKAN_1_1);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Uniform-06807"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("From Vulkan spec:\n"
- "Variables identified with the Uniform storage class are used "
- "to access transparent buffer backed resources. Such variables "
- "must be typed as OpTypeStruct, or an array of this type"));
- }
- TEST_F(ValidateMemory, MismatchingStorageClassesBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %float = OpTypeFloat 32
- %float_ptr = OpTypePointer Uniform %float
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %1 = OpLabel
- %2 = OpVariable %float_ptr Function
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "From SPIR-V spec, section 3.32.8 on OpVariable:\n"
- "Its Storage Class operand must be the same as the Storage Class "
- "operand of the result type."));
- }
- TEST_F(ValidateMemory, MatchingStorageClassesGood) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %float = OpTypeFloat 32
- %float_ptr = OpTypePointer Function %float
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %1 = OpLabel
- %2 = OpVariable %float_ptr Function
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateMemory, VulkanInitializerWithOutputStorageClassesGood) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %float = OpTypeFloat 32
- %float_ptr = OpTypePointer Output %float
- %init_val = OpConstant %float 1.0
- %1 = OpVariable %float_ptr Output %init_val
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %2 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, VulkanInitializerWithFunctionStorageClassesGood) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %float = OpTypeFloat 32
- %float_ptr = OpTypePointer Function %float
- %init_val = OpConstant %float 1.0
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %1 = OpLabel
- %2 = OpVariable %float_ptr Function %init_val
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, VulkanInitializerWithPrivateStorageClassesGood) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %float = OpTypeFloat 32
- %float_ptr = OpTypePointer Private %float
- %init_val = OpConstant %float 1.0
- %1 = OpVariable %float_ptr Private %init_val
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %2 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, VulkanInitializerWithDisallowedStorageClassesBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %float = OpTypeFloat 32
- %float_ptr = OpTypePointer Input %float
- %init_val = OpConstant %float 1.0
- %1 = OpVariable %float_ptr Input %init_val
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %2 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpVariable-04651"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("OpVariable, <id> '5[%5]', has a disallowed initializer & "
- "storage class combination.\nFrom Vulkan spec:\nVariable "
- "declarations that include initializers must have one of the "
- "following storage classes: Output, Private, Function or "
- "Workgroup\n %5 "
- "= OpVariable %_ptr_Input_float Input %float_1\n"));
- }
- TEST_F(ValidateMemory, UniversalInitializerWithDisallowedStorageClassesBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %float = OpTypeFloat 32
- %float_ptr = OpTypePointer Input %float
- %init_val = OpConstant %float 1.0
- %1 = OpVariable %float_ptr Input %init_val
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %2 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "OpVariable, <id> '5[%5]', initializer are not allowed for Input"));
- }
- TEST_F(ValidateMemory, InitializerWithTaskPayloadWorkgroupEXT) {
- std::string spirv = R"(
- OpCapability MeshShadingEXT
- OpExtension "SPV_EXT_mesh_shader"
- OpMemoryModel Logical GLSL450
- OpEntryPoint TaskEXT %main "main" %payload
- %void = OpTypeVoid
- %func = OpTypeFunction %void
- %uint = OpTypeInt 32 0
- %_ptr_TaskPayloadWorkgroupEXT = OpTypePointer TaskPayloadWorkgroupEXT %uint
- %uint_1 = OpConstant %uint 1
- %payload = OpVariable %_ptr_TaskPayloadWorkgroupEXT TaskPayloadWorkgroupEXT %uint_1
- %main = OpFunction %void None %func
- %label = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_UNIVERSAL_1_5);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_5));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpVariable, <id> '2[%2]', initializer are not allowed "
- "for TaskPayloadWorkgroupEXT"));
- }
- TEST_F(ValidateMemory, ArrayLenCorrectResultType) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %uint = OpTypeInt 32 0
- %_runtimearr_float = OpTypeRuntimeArray %float
- %_struct_7 = OpTypeStruct %_runtimearr_float
- %_ptr_Function__struct_7 = OpTypePointer Function %_struct_7
- %1 = OpFunction %void None %3
- %9 = OpLabel
- %10 = OpVariable %_ptr_Function__struct_7 Function
- %11 = OpArrayLength %uint %10 0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateMemory, ArrayLenIndexCorrectWith2Members) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %uint = OpTypeInt 32 0
- %_runtimearr_float = OpTypeRuntimeArray %float
- %_struct_7 = OpTypeStruct %float %_runtimearr_float
- %_ptr_Function__struct_7 = OpTypePointer Function %_struct_7
- %1 = OpFunction %void None %3
- %9 = OpLabel
- %10 = OpVariable %_ptr_Function__struct_7 Function
- %11 = OpArrayLength %uint %10 1
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateMemory, ArrayLenResultNotIntType) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %_runtimearr_float = OpTypeRuntimeArray %float
- %_struct_6 = OpTypeStruct %_runtimearr_float
- %_ptr_Function__struct_6 = OpTypePointer Function %_struct_6
- %1 = OpFunction %void None %3
- %8 = OpLabel
- %9 = OpVariable %_ptr_Function__struct_6 Function
- %10 = OpArrayLength %float %9 0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "The Result Type of OpArrayLength <id> '10[%10]' must be OpTypeInt "
- "with width 32 and signedness 0.\n %10 = OpArrayLength %float %9 "
- "0\n"));
- }
- TEST_F(ValidateMemory, ArrayLenResultNot32bits) {
- std::string spirv = R"(
- OpCapability Shader
- OpCapability Int16
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %ushort = OpTypeInt 16 0
- %_runtimearr_float = OpTypeRuntimeArray %float
- %_struct_7 = OpTypeStruct %_runtimearr_float
- %_ptr_Function__struct_7 = OpTypePointer Function %_struct_7
- %1 = OpFunction %void None %3
- %9 = OpLabel
- %10 = OpVariable %_ptr_Function__struct_7 Function
- %11 = OpArrayLength %ushort %10 0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "The Result Type of OpArrayLength <id> '11[%11]' must be OpTypeInt "
- "with width 32 and signedness 0.\n %11 = OpArrayLength %ushort %10 "
- "0\n"));
- }
- TEST_F(ValidateMemory, ArrayLenResultSigned) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %int = OpTypeInt 32 1
- %_runtimearr_float = OpTypeRuntimeArray %float
- %_struct_7 = OpTypeStruct %_runtimearr_float
- %_ptr_Function__struct_7 = OpTypePointer Function %_struct_7
- %1 = OpFunction %void None %3
- %9 = OpLabel
- %10 = OpVariable %_ptr_Function__struct_7 Function
- %11 = OpArrayLength %int %10 0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "The Result Type of OpArrayLength <id> '11[%11]' must be OpTypeInt "
- "with width 32 and signedness 0.\n %11 = OpArrayLength %int %10 "
- "0\n"));
- }
- TEST_F(ValidateMemory, ArrayLenInputNotStruct) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %uint = OpTypeInt 32 0
- %_runtimearr_float = OpTypeRuntimeArray %float
- %_struct_7 = OpTypeStruct %_runtimearr_float
- %_ptr_Function_float = OpTypePointer Function %float
- %1 = OpFunction %void None %3
- %9 = OpLabel
- %10 = OpVariable %_ptr_Function_float Function
- %11 = OpArrayLength %uint %10 0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("The Structure's type in OpArrayLength <id> '11[%11]' "
- "must be a pointer to an OpTypeStruct."));
- }
- TEST_F(ValidateMemory, ArrayLenInputLastMemberNoRTA) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %uint = OpTypeInt 32 0
- %_runtimearr_float = OpTypeRuntimeArray %float
- %_struct_7 = OpTypeStruct %float
- %_ptr_Function__struct_7 = OpTypePointer Function %_struct_7
- %1 = OpFunction %void None %3
- %9 = OpLabel
- %10 = OpVariable %_ptr_Function__struct_7 Function
- %11 = OpArrayLength %uint %10 0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("The Structure's last member in OpArrayLength <id> '11[%11]' "
- "must be an OpTypeRuntimeArray.\n %11 = OpArrayLength %uint "
- "%10 0\n"));
- }
- TEST_F(ValidateMemory, ArrayLenInputLastMemberNoRTA2) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %uint = OpTypeInt 32 0
- %_runtimearr_float = OpTypeRuntimeArray %float
- %_struct_7 = OpTypeStruct %_runtimearr_float %float
- %_ptr_Function__struct_7 = OpTypePointer Function %_struct_7
- %1 = OpFunction %void None %3
- %9 = OpLabel
- %10 = OpVariable %_ptr_Function__struct_7 Function
- %11 = OpArrayLength %uint %10 1
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("The Structure's last member in OpArrayLength <id> '11[%11]' "
- "must be an OpTypeRuntimeArray.\n %11 = OpArrayLength %uint "
- "%10 1\n"));
- }
- TEST_F(ValidateMemory, ArrayLenIndexNotLastMember) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %uint = OpTypeInt 32 0
- %_runtimearr_float = OpTypeRuntimeArray %float
- %_struct_7 = OpTypeStruct %float %_runtimearr_float
- %_ptr_Function__struct_7 = OpTypePointer Function %_struct_7
- %1 = OpFunction %void None %3
- %9 = OpLabel
- %10 = OpVariable %_ptr_Function__struct_7 Function
- %11 = OpArrayLength %uint %10 0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "The array member in OpArrayLength <id> '11[%11]' must be an the "
- "last member of the struct.\n %11 = OpArrayLength %uint %10 0\n"));
- }
- TEST_F(ValidateMemory, ArrayLenIndexNotPointerToStruct) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %uint = OpTypeInt 32 0
- %_runtimearr_float = OpTypeRuntimeArray %float
- %_struct_7 = OpTypeStruct %float
- %_ptr_Function__struct_7 = OpTypePointer Function %_struct_7
- %1 = OpFunction %void None %3
- %9 = OpLabel
- %10 = OpVariable %_ptr_Function__struct_7 Function
- %11 = OpLoad %_struct_7 %10
- %12 = OpArrayLength %uint %11 0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "The Structure's type in OpArrayLength <id> '12[%12]' must be a "
- "pointer to an OpTypeStruct.\n %12 = OpArrayLength %uint %11 0\n"));
- }
- TEST_F(ValidateMemory, ArrayLenPointerIsAType) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %uint = OpTypeInt 32 0
- %1 = OpFunction %void None %3
- %9 = OpLabel
- %12 = OpArrayLength %uint %float 0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str());
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Operand '4[%float]' cannot be a "
- "type"));
- }
- TEST_F(ValidateMemory, PushConstantNotStructGood) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %ptr = OpTypePointer PushConstant %float
- %pc = OpVariable %ptr PushConstant
- %1 = OpFunction %void None %voidfn
- %label = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateMemory, VulkanPushConstantNotStructBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %ptr = OpTypePointer PushConstant %float
- %pc = OpVariable %ptr PushConstant
- %1 = OpFunction %void None %voidfn
- %label = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-PushConstant-06808"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("PushConstant OpVariable <id> '6[%6]' has illegal "
- "type.\nFrom Vulkan spec, Push Constant Interface section:\n"
- "Such variables must be typed as OpTypeStruct"));
- }
- TEST_F(ValidateMemory, VulkanPushConstantArrayOfStructBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Offset 0
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %int = OpTypeInt 32 0
- %int_1 = OpConstant %int 1
- %struct = OpTypeStruct %float
- %array = OpTypeArray %struct %int_1
- %ptr = OpTypePointer PushConstant %array
- %pc = OpVariable %ptr PushConstant
- %1 = OpFunction %void None %voidfn
- %label = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-PushConstant-06808"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("PushConstant OpVariable <id> '10[%10]' has illegal "
- "type.\nFrom Vulkan spec, Push Constant Interface section:\n"
- "Such variables must be typed as OpTypeStruct"));
- }
- TEST_F(ValidateMemory, VulkanPushConstant) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Offset 0
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %float = OpTypeFloat 32
- %struct = OpTypeStruct %float
- %ptr = OpTypePointer PushConstant %struct
- %pc = OpVariable %ptr PushConstant
- %1 = OpFunction %void None %voidfn
- %label = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeLoadBad1) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- %load = OpLoad %int %var MakePointerVisibleKHR|NonPrivatePointerKHR %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Use of device scope with VulkanKHR memory model requires the "
- "VulkanMemoryModelDeviceScopeKHR capability"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeLoadBad2) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- %load = OpLoad %int %var Aligned|MakePointerVisibleKHR|NonPrivatePointerKHR 4 %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Use of device scope with VulkanKHR memory model requires the "
- "VulkanMemoryModelDeviceScopeKHR capability"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeLoadGood1) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- %load = OpLoad %int %var MakePointerVisibleKHR|NonPrivatePointerKHR %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeLoadGood2) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- %load = OpLoad %int %var Aligned|MakePointerVisibleKHR|NonPrivatePointerKHR 4 %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeStoreBad1) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpStore %var %device MakePointerAvailableKHR|NonPrivatePointerKHR %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Use of device scope with VulkanKHR memory model requires the "
- "VulkanMemoryModelDeviceScopeKHR capability"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeStoreBad2) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpStore %var %device Aligned|MakePointerAvailableKHR|NonPrivatePointerKHR 4 %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Use of device scope with VulkanKHR memory model requires the "
- "VulkanMemoryModelDeviceScopeKHR capability"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeStoreGood1) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpStore %var %device MakePointerAvailableKHR|NonPrivatePointerKHR %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeStoreGood2) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpStore %var %device Aligned|MakePointerAvailableKHR|NonPrivatePointerKHR 4 %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeCopyMemoryBad1) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2 MakePointerAvailableKHR|NonPrivatePointerKHR %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Use of device scope with VulkanKHR memory model requires the "
- "VulkanMemoryModelDeviceScopeKHR capability"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeCopyMemoryBad2) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %workgroup = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2 Aligned|MakePointerVisibleKHR|MakePointerAvailableKHR|NonPrivatePointerKHR 4 %device %workgroup
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Use of device scope with VulkanKHR memory model requires the "
- "VulkanMemoryModelDeviceScopeKHR capability"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeCopyMemoryBad3) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %workgroup = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2 Aligned|MakePointerVisibleKHR|MakePointerAvailableKHR|NonPrivatePointerKHR 4 %workgroup %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Use of device scope with VulkanKHR memory model requires the "
- "VulkanMemoryModelDeviceScopeKHR capability"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeCopyMemoryGood2) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %workgroup = OpConstant %int 2
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2 Aligned|MakePointerVisibleKHR|MakePointerAvailableKHR|NonPrivatePointerKHR 4 %device %workgroup
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeCopyMemoryGood3) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %workgroup = OpConstant %int 2
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2 Aligned|MakePointerVisibleKHR|MakePointerAvailableKHR|NonPrivatePointerKHR 4 %workgroup %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelCopyMemoryTwoAccessAvVisBadBinaryV13) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2
- MakePointerAvailableKHR|NonPrivatePointerKHR %device
- MakePointerVisibleKHR|NonPrivatePointerKHR %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "with two memory access operands requires SPIR-V 1.4 or later"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelCopyMemoryTwoAccessAvVisGood) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2
- MakePointerAvailableKHR|NonPrivatePointerKHR %device
- MakePointerVisibleKHR|NonPrivatePointerKHR %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(getDiagnosticString(), Eq(""));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelCopyMemoryTwoAccessFirstWithAvBad) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2
- MakePointerAvailableKHR|NonPrivatePointerKHR %device
- MakePointerAvailableKHR|NonPrivatePointerKHR %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "Source memory access must not include MakePointerAvailableKHR\n"
- " OpCopyMemory %5 %6 MakePointerAvailable|NonPrivatePointer"
- " %uint_1 MakePointerAvailable|NonPrivatePointer %uint_1"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelCopyMemoryTwoAccessSecondWithVisBad) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2
- MakePointerVisibleKHR|NonPrivatePointerKHR %device
- MakePointerVisibleKHR|NonPrivatePointerKHR %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Target memory access must not include MakePointerVisibleKHR\n"
- " OpCopyMemory %5 %6 MakePointerVisible|NonPrivatePointer"
- " %uint_1 MakePointerVisible|NonPrivatePointer %uint_1"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeCopyMemorySizedBad1) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability Linkage
- OpCapability Addresses
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemorySized %var1 %var2 %device MakePointerAvailableKHR|NonPrivatePointerKHR %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Use of device scope with VulkanKHR memory model requires the "
- "VulkanMemoryModelDeviceScopeKHR capability"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeCopyMemorySizedBad2) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability Linkage
- OpCapability Addresses
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %workgroup = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemorySized %var1 %var2 %device Aligned|MakePointerVisibleKHR|MakePointerAvailableKHR|NonPrivatePointerKHR 4 %device %workgroup
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Use of device scope with VulkanKHR memory model requires the "
- "VulkanMemoryModelDeviceScopeKHR capability"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeCopyMemorySizedBad3) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability Linkage
- OpCapability Addresses
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %workgroup = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemorySized %var1 %var2 %device Aligned|MakePointerVisibleKHR|MakePointerAvailableKHR|NonPrivatePointerKHR 4 %workgroup %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Use of device scope with VulkanKHR memory model requires the "
- "VulkanMemoryModelDeviceScopeKHR capability"));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeCopyMemorySizedGood1) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpCapability Addresses
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemorySized %var1 %var2 %device MakePointerAvailableKHR|NonPrivatePointerKHR %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeCopyMemorySizedGood2) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpCapability Addresses
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %workgroup = OpConstant %int 2
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemorySized %var1 %var2 %device Aligned|MakePointerVisibleKHR|MakePointerAvailableKHR|NonPrivatePointerKHR 4 %device %workgroup
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateMemory, VulkanMemoryModelDeviceScopeCopyMemorySizedGood3) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpCapability VulkanMemoryModelDeviceScopeKHR
- OpCapability Linkage
- OpCapability Addresses
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %device = OpConstant %int 1
- %workgroup = OpConstant %int 2
- %int_ptr_ssbo = OpTypePointer StorageBuffer %int
- %var1 = OpVariable %int_ptr_ssbo StorageBuffer
- %var2 = OpVariable %int_ptr_ssbo StorageBuffer
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemorySized %var1 %var2 %device Aligned|MakePointerVisibleKHR|MakePointerAvailableKHR|NonPrivatePointerKHR 4 %workgroup %device
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateMemory, ArrayLengthStructIsLabel) {
- const std::string spirv = R"(
- OpCapability Tessellation
- OpMemoryModel Logical GLSL450
- OpName %20 "incorrect"
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %v4float = OpTypeVector %float 4
- %uint = OpTypeInt 32 0
- %4 = OpFunction %void None %3
- %20 = OpLabel
- %24 = OpArrayLength %uint %20 0
- %25 = OpLoad %v4float %24
- OpReturnValue %25
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Operand '1[%incorrect]' requires a type"));
- }
- TEST_F(ValidateMemory, PSBLoadAlignedSuccess) {
- const std::string body = R"(
- OpCapability PhysicalStorageBufferAddresses
- OpCapability Int64
- OpCapability Shader
- OpExtension "SPV_EXT_physical_storage_buffer"
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %val1 AliasedPointer
- %uint64 = OpTypeInt 64 0
- %ptr = OpTypePointer PhysicalStorageBuffer %uint64
- %pptr_f = OpTypePointer Function %ptr
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %main = OpFunction %void None %voidfn
- %entry = OpLabel
- %val1 = OpVariable %pptr_f Function
- %val2 = OpLoad %ptr %val1
- %val3 = OpLoad %uint64 %val2 Aligned 8
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body.c_str(), SPV_ENV_VULKAN_1_2);
- ASSERT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- }
- TEST_F(ValidateMemory, PSBLoadAlignedMissing) {
- const std::string body = R"(
- OpCapability PhysicalStorageBufferAddresses
- OpCapability Int64
- OpCapability Shader
- OpExtension "SPV_EXT_physical_storage_buffer"
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %val1 AliasedPointer
- %uint64 = OpTypeInt 64 0
- %ptr = OpTypePointer PhysicalStorageBuffer %uint64
- %pptr_f = OpTypePointer Function %ptr
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %main = OpFunction %void None %voidfn
- %entry = OpLabel
- %val1 = OpVariable %pptr_f Function
- %val2 = OpLoad %ptr %val1
- %val3 = OpLoad %uint64 %val2
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body.c_str(), SPV_ENV_VULKAN_1_2);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-PhysicalStorageBuffer64-04708"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Memory accesses with PhysicalStorageBuffer must use Aligned"));
- }
- TEST_F(ValidateMemory, PSBLoadAlignedMissingWithOtherOperand) {
- const std::string body = R"(
- OpCapability PhysicalStorageBufferAddresses
- OpCapability Int64
- OpCapability Shader
- OpExtension "SPV_EXT_physical_storage_buffer"
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %val1 AliasedPointer
- %uint64 = OpTypeInt 64 0
- %ptr = OpTypePointer PhysicalStorageBuffer %uint64
- %pptr_f = OpTypePointer Function %ptr
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %main = OpFunction %void None %voidfn
- %entry = OpLabel
- %val1 = OpVariable %pptr_f Function
- %val2 = OpLoad %ptr %val1
- %val3 = OpLoad %uint64 %val2 Volatile
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body.c_str(), SPV_ENV_VULKAN_1_2);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-PhysicalStorageBuffer64-04708"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Memory accesses with PhysicalStorageBuffer must use Aligned"));
- }
- TEST_F(ValidateMemory, PSBStoreAlignedSuccess) {
- const std::string body = R"(
- OpCapability PhysicalStorageBufferAddresses
- OpCapability Int64
- OpCapability Shader
- OpExtension "SPV_EXT_physical_storage_buffer"
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %val1 AliasedPointer
- %uint64 = OpTypeInt 64 0
- %u64_1 = OpConstant %uint64 1
- %ptr = OpTypePointer PhysicalStorageBuffer %uint64
- %pptr_f = OpTypePointer Function %ptr
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %main = OpFunction %void None %voidfn
- %entry = OpLabel
- %val1 = OpVariable %pptr_f Function
- %val2 = OpLoad %ptr %val1
- OpStore %val2 %u64_1 Aligned 8
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body.c_str(), SPV_ENV_VULKAN_1_2);
- ASSERT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- }
- TEST_F(ValidateMemory, PSBStoreAlignedMissing) {
- const std::string body = R"(
- OpCapability PhysicalStorageBufferAddresses
- OpCapability Int64
- OpCapability Shader
- OpExtension "SPV_EXT_physical_storage_buffer"
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %val1 AliasedPointer
- %uint64 = OpTypeInt 64 0
- %u64_1 = OpConstant %uint64 1
- %ptr = OpTypePointer PhysicalStorageBuffer %uint64
- %pptr_f = OpTypePointer Function %ptr
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %main = OpFunction %void None %voidfn
- %entry = OpLabel
- %val1 = OpVariable %pptr_f Function
- %val2 = OpLoad %ptr %val1
- OpStore %val2 %u64_1 None
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body.c_str(), SPV_ENV_VULKAN_1_2);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-PhysicalStorageBuffer64-04708"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Memory accesses with PhysicalStorageBuffer must use Aligned"));
- }
- TEST_F(ValidateMemory, PSBCopyMemoryAlignedSuccess) {
- const std::string body = R"(
- OpCapability PhysicalStorageBufferAddresses
- OpCapability Int64
- OpCapability Shader
- OpExtension "SPV_EXT_physical_storage_buffer"
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %val1 AliasedPointer
- %int = OpTypeInt 32 0
- %uint64 = OpTypeInt 64 0
- %u64_1 = OpConstant %uint64 1
- %ptr = OpTypePointer PhysicalStorageBuffer %uint64
- %pptr_f = OpTypePointer Function %ptr
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %main = OpFunction %void None %voidfn
- %entry = OpLabel
- %val1 = OpVariable %pptr_f Function
- %val2 = OpLoad %ptr %val1
- %val3 = OpLoad %ptr %val1
- OpCopyMemory %val2 %val3 Aligned 4
- OpCopyMemory %val3 %val2 Aligned 4 Aligned 4
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body.c_str(), SPV_ENV_VULKAN_1_2);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- }
- TEST_F(ValidateMemory, PSBCopyMemoryAlignedMissingTarget) {
- const std::string body = R"(
- OpCapability PhysicalStorageBufferAddresses
- OpCapability Int64
- OpCapability Shader
- OpExtension "SPV_EXT_physical_storage_buffer"
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %val1 AliasedPointer
- %int = OpTypeInt 32 0
- %uint64 = OpTypeInt 64 0
- %u64_1 = OpConstant %uint64 1
- %ptr = OpTypePointer PhysicalStorageBuffer %uint64
- %pptr_f = OpTypePointer Function %ptr
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %main = OpFunction %void None %voidfn
- %entry = OpLabel
- %val1 = OpVariable %pptr_f Function
- %val2 = OpLoad %ptr %val1
- %val3 = OpLoad %ptr %val1
- OpCopyMemory %val2 %val3 Volatile Aligned 4
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body.c_str(), SPV_ENV_VULKAN_1_2);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-PhysicalStorageBuffer64-04708"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Memory accesses with PhysicalStorageBuffer must use Aligned"));
- }
- TEST_F(ValidateMemory, PSBCopyMemoryAlignedMissingSource) {
- const std::string body = R"(
- OpCapability PhysicalStorageBufferAddresses
- OpCapability Int64
- OpCapability Shader
- OpExtension "SPV_EXT_physical_storage_buffer"
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %val1 AliasedPointer
- %int = OpTypeInt 32 0
- %uint64 = OpTypeInt 64 0
- %u64_1 = OpConstant %uint64 1
- %ptr = OpTypePointer PhysicalStorageBuffer %uint64
- %pptr_f = OpTypePointer Function %ptr
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %main = OpFunction %void None %voidfn
- %entry = OpLabel
- %val1 = OpVariable %pptr_f Function
- %val2 = OpLoad %ptr %val1
- %val3 = OpLoad %ptr %val1
- OpCopyMemory %val2 %val3 Aligned 4 Volatile
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body.c_str(), SPV_ENV_VULKAN_1_2);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-PhysicalStorageBuffer64-04708"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Memory accesses with PhysicalStorageBuffer must use Aligned"));
- }
- TEST_F(ValidateMemory, PSBCopyMemoryAlignedMissingBoth) {
- const std::string body = R"(
- OpCapability PhysicalStorageBufferAddresses
- OpCapability Int64
- OpCapability Shader
- OpExtension "SPV_EXT_physical_storage_buffer"
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %val1 AliasedPointer
- %int = OpTypeInt 32 0
- %uint64 = OpTypeInt 64 0
- %u64_1 = OpConstant %uint64 1
- %ptr = OpTypePointer PhysicalStorageBuffer %uint64
- %pptr_f = OpTypePointer Function %ptr
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %main = OpFunction %void None %voidfn
- %entry = OpLabel
- %val1 = OpVariable %pptr_f Function
- %val2 = OpLoad %ptr %val1
- %val3 = OpLoad %ptr %val1
- OpCopyMemory %val2 %val3 Volatile
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body.c_str(), SPV_ENV_VULKAN_1_2);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-PhysicalStorageBuffer64-04708"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Memory accesses with PhysicalStorageBuffer must use Aligned"));
- }
- TEST_F(ValidateMemory, PSBVariable) {
- const std::string body = R"(
- OpCapability PhysicalStorageBufferAddresses
- OpCapability Int64
- OpCapability Shader
- OpExtension "SPV_EXT_physical_storage_buffer"
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %val1 AliasedPointer
- %uint64 = OpTypeInt 64 0
- %ptr = OpTypePointer PhysicalStorageBuffer %uint64
- %val1 = OpVariable %ptr PhysicalStorageBuffer
- %void = OpTypeVoid
- %voidfn = OpTypeFunction %void
- %main = OpFunction %void None %voidfn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("PhysicalStorageBuffer must not be used with OpVariable"));
- }
- std::string GenCoopMatLoadStoreShader(const std::string& storeMemoryAccess,
- const std::string& loadMemoryAccess) {
- std::string s = R"(
- OpCapability Shader
- OpCapability GroupNonUniform
- OpCapability VulkanMemoryModelKHR
- OpCapability CooperativeMatrixNV
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpExtension "SPV_NV_cooperative_matrix"
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical VulkanKHR
- OpEntryPoint GLCompute %4 "main" %11 %21
- OpExecutionMode %4 LocalSize 1 1 1
- OpDecorate %11 BuiltIn SubgroupId
- OpDecorate %21 BuiltIn WorkgroupId
- OpDecorate %74 ArrayStride 4
- OpMemberDecorate %75 0 Offset 0
- OpDecorate %75 Block
- OpDecorate %77 DescriptorSet 0
- OpDecorate %77 Binding 0
- OpDecorate %92 ArrayStride 4
- OpMemberDecorate %93 0 Offset 0
- OpDecorate %93 Block
- OpDecorate %95 DescriptorSet 0
- OpDecorate %95 Binding 1
- OpDecorate %102 ArrayStride 4
- OpMemberDecorate %103 0 Offset 0
- OpDecorate %103 Block
- OpDecorate %105 DescriptorSet 0
- OpDecorate %105 Binding 2
- OpDecorate %117 ArrayStride 4
- OpMemberDecorate %118 0 Offset 0
- OpDecorate %118 Block
- OpDecorate %120 DescriptorSet 0
- OpDecorate %120 Binding 3
- OpDecorate %123 SpecId 2
- OpDecorate %124 SpecId 3
- OpDecorate %125 SpecId 4
- OpDecorate %126 SpecId 5
- OpDecorate %127 SpecId 0
- OpDecorate %128 SpecId 1
- OpDecorate %129 BuiltIn WorkgroupSize
- %2 = OpTypeVoid
- %3 = OpTypeFunction %2
- %6 = OpTypeInt 32 0
- %7 = OpTypeVector %6 2
- %8 = OpTypePointer Function %7
- %10 = OpTypePointer Input %6
- %11 = OpVariable %10 Input
- %13 = OpConstant %6 2
- %19 = OpTypeVector %6 3
- %20 = OpTypePointer Input %19
- %21 = OpVariable %20 Input
- %27 = OpConstantComposite %7 %13 %13
- %31 = OpTypePointer Function %6
- %33 = OpConstant %6 1024
- %34 = OpConstant %6 1
- %38 = OpConstant %6 8
- %39 = OpConstant %6 0
- %68 = OpTypeFloat 32
- %69 = OpConstant %6 16
- %70 = OpConstant %6 3
- %71 = OpTypeCooperativeMatrixNV %68 %70 %69 %38
- %72 = OpTypePointer Function %71
- %74 = OpTypeRuntimeArray %68
- %75 = OpTypeStruct %74
- %76 = OpTypePointer StorageBuffer %75
- %77 = OpVariable %76 StorageBuffer
- %78 = OpTypeInt 32 1
- %79 = OpConstant %78 0
- %81 = OpConstant %6 5
- %82 = OpTypePointer StorageBuffer %68
- %84 = OpConstant %6 64
- %85 = OpTypeBool
- %86 = OpConstantFalse %85
- %88 = OpTypePointer Private %71
- %89 = OpVariable %88 Private
- %92 = OpTypeRuntimeArray %68
- %93 = OpTypeStruct %92
- %94 = OpTypePointer StorageBuffer %93
- %95 = OpVariable %94 StorageBuffer
- %99 = OpVariable %88 Private
- %102 = OpTypeRuntimeArray %68
- %103 = OpTypeStruct %102
- %104 = OpTypePointer StorageBuffer %103
- %105 = OpVariable %104 StorageBuffer
- %109 = OpVariable %88 Private
- %111 = OpVariable %88 Private
- %112 = OpSpecConstantOp %6 CooperativeMatrixLengthNV %71
- %113 = OpSpecConstantOp %78 IAdd %112 %79
- %117 = OpTypeRuntimeArray %68
- %118 = OpTypeStruct %117
- %119 = OpTypePointer StorageBuffer %118
- %120 = OpVariable %119 StorageBuffer
- %123 = OpSpecConstant %78 1
- %124 = OpSpecConstant %78 1
- %125 = OpSpecConstant %78 1
- %126 = OpSpecConstant %78 1
- %127 = OpSpecConstant %6 1
- %128 = OpSpecConstant %6 1
- %129 = OpSpecConstantComposite %19 %127 %128 %34
- %4 = OpFunction %2 None %3
- %5 = OpLabel
- %9 = OpVariable %8 Function
- %18 = OpVariable %8 Function
- %32 = OpVariable %31 Function
- %44 = OpVariable %31 Function
- %52 = OpVariable %31 Function
- %60 = OpVariable %31 Function
- %73 = OpVariable %72 Function
- %91 = OpVariable %72 Function
- %101 = OpVariable %72 Function
- %12 = OpLoad %6 %11
- %14 = OpUMod %6 %12 %13
- %15 = OpLoad %6 %11
- %16 = OpUDiv %6 %15 %13
- %17 = OpCompositeConstruct %7 %14 %16
- OpStore %9 %17
- %22 = OpLoad %19 %21
- %23 = OpVectorShuffle %7 %22 %22 0 1
- %24 = OpCompositeExtract %6 %23 0
- %25 = OpCompositeExtract %6 %23 1
- %26 = OpCompositeConstruct %7 %24 %25
- %28 = OpIMul %7 %26 %27
- %29 = OpLoad %7 %9
- %30 = OpIAdd %7 %28 %29
- OpStore %18 %30
- %35 = OpAccessChain %31 %18 %34
- %36 = OpLoad %6 %35
- %37 = OpIMul %6 %33 %36
- %40 = OpAccessChain %31 %18 %39
- %41 = OpLoad %6 %40
- %42 = OpIMul %6 %38 %41
- %43 = OpIAdd %6 %37 %42
- OpStore %32 %43
- %45 = OpAccessChain %31 %18 %34
- %46 = OpLoad %6 %45
- %47 = OpIMul %6 %33 %46
- %48 = OpAccessChain %31 %18 %39
- %49 = OpLoad %6 %48
- %50 = OpIMul %6 %38 %49
- %51 = OpIAdd %6 %47 %50
- OpStore %44 %51
- %53 = OpAccessChain %31 %18 %34
- %54 = OpLoad %6 %53
- %55 = OpIMul %6 %33 %54
- %56 = OpAccessChain %31 %18 %39
- %57 = OpLoad %6 %56
- %58 = OpIMul %6 %38 %57
- %59 = OpIAdd %6 %55 %58
- OpStore %52 %59
- %61 = OpAccessChain %31 %18 %34
- %62 = OpLoad %6 %61
- %63 = OpIMul %6 %33 %62
- %64 = OpAccessChain %31 %18 %39
- %65 = OpLoad %6 %64
- %66 = OpIMul %6 %38 %65
- %67 = OpIAdd %6 %63 %66
- OpStore %60 %67
- %80 = OpLoad %6 %32
- %83 = OpAccessChain %82 %77 %79 %80
- %87 = OpCooperativeMatrixLoadNV %71 %83 %84 %86 )" +
- loadMemoryAccess + R"( %81
- OpStore %73 %87
- %90 = OpLoad %71 %73
- OpStore %89 %90
- %96 = OpLoad %6 %44
- %97 = OpAccessChain %82 %95 %79 %96
- %98 = OpCooperativeMatrixLoadNV %71 %97 %84 %86 MakePointerVisibleKHR|NonPrivatePointerKHR %81
- OpStore %91 %98
- %100 = OpLoad %71 %91
- OpStore %99 %100
- %106 = OpLoad %6 %52
- %107 = OpAccessChain %82 %105 %79 %106
- %108 = OpCooperativeMatrixLoadNV %71 %107 %84 %86 MakePointerVisibleKHR|NonPrivatePointerKHR %81
- OpStore %101 %108
- %110 = OpLoad %71 %101
- OpStore %109 %110
- %114 = OpConvertSToF %68 %113
- %115 = OpCompositeConstruct %71 %114
- OpStore %111 %115
- %116 = OpLoad %71 %111
- %121 = OpLoad %6 %60
- %122 = OpAccessChain %82 %120 %79 %121
- OpCooperativeMatrixStoreNV %122 %116 %84 %86 )" + storeMemoryAccess + R"( %81
- OpReturn
- OpFunctionEnd
- )";
- return s;
- }
- TEST_F(ValidateMemory, CoopMatLoadStoreSuccess) {
- std::string spirv =
- GenCoopMatLoadStoreShader("MakePointerAvailableKHR|NonPrivatePointerKHR",
- "MakePointerVisibleKHR|NonPrivatePointerKHR");
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, CoopMatStoreMemoryAccessFail) {
- std::string spirv =
- GenCoopMatLoadStoreShader("MakePointerVisibleKHR|NonPrivatePointerKHR",
- "MakePointerVisibleKHR|NonPrivatePointerKHR");
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("MakePointerVisibleKHR cannot be used with OpStore"));
- }
- TEST_F(ValidateMemory, CoopMatLoadMemoryAccessFail) {
- std::string spirv =
- GenCoopMatLoadStoreShader("MakePointerAvailableKHR|NonPrivatePointerKHR",
- "MakePointerAvailableKHR|NonPrivatePointerKHR");
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("MakePointerAvailableKHR cannot be used with OpLoad"));
- }
- TEST_F(ValidateMemory, CoopMatInvalidStorageClassFail) {
- const std::string body =
- R"(
- OpCapability Shader
- OpCapability Float16
- OpCapability CooperativeMatrixNV
- OpExtension "SPV_NV_cooperative_matrix"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- %void = OpTypeVoid
- %func = OpTypeFunction %void
- %f16 = OpTypeFloat 16
- %u32 = OpTypeInt 32 0
- %u32_8 = OpConstant %u32 8
- %subgroup = OpConstant %u32 3
- %f16mat = OpTypeCooperativeMatrixNV %f16 %subgroup %u32_8 %u32_8
- %str = OpTypeStruct %f16mat
- %str_ptr = OpTypePointer Workgroup %str
- %sh = OpVariable %str_ptr Workgroup
- %main = OpFunction %void None %func
- %main_entry = OpLabel
- OpReturn
- OpFunctionEnd)";
- CompileSuccessfully(body.c_str());
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "Cooperative matrix types (or types containing them) can only be "
- "allocated in Function or Private storage classes or as function "
- "parameters"));
- }
- TEST_F(ValidateMemory, CoopMatMatrixLengthResultTypeBad) {
- const std::string body =
- R"(
- OpCapability Shader
- OpCapability Float16
- OpCapability CooperativeMatrixNV
- OpExtension "SPV_NV_cooperative_matrix"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- %void = OpTypeVoid
- %func = OpTypeFunction %void
- %f16 = OpTypeFloat 16
- %u32 = OpTypeInt 32 0
- %i32 = OpTypeInt 32 1
- %u32_8 = OpConstant %u32 8
- %subgroup = OpConstant %u32 3
- %f16mat = OpTypeCooperativeMatrixNV %f16 %subgroup %u32_8 %u32_8
- %main = OpFunction %void None %func
- %main_entry = OpLabel
- %1 = OpCooperativeMatrixLengthNV %i32 %f16mat
- OpReturn
- OpFunctionEnd)";
- CompileSuccessfully(body.c_str());
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("The Result Type of OpCooperativeMatrixLengthNV <id> "
- "'11[%11]' must be OpTypeInt with width 32 and signedness 0"));
- }
- TEST_F(ValidateMemory, CoopMatMatrixLengthOperandTypeBad) {
- const std::string body =
- R"(
- OpCapability Shader
- OpCapability Float16
- OpCapability CooperativeMatrixNV
- OpExtension "SPV_NV_cooperative_matrix"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- %void = OpTypeVoid
- %func = OpTypeFunction %void
- %f16 = OpTypeFloat 16
- %u32 = OpTypeInt 32 0
- %i32 = OpTypeInt 32 1
- %u32_8 = OpConstant %u32 8
- %subgroup = OpConstant %u32 3
- %f16mat = OpTypeCooperativeMatrixNV %f16 %subgroup %u32_8 %u32_8
- %main = OpFunction %void None %func
- %main_entry = OpLabel
- %1 = OpCooperativeMatrixLengthNV %u32 %u32
- OpReturn
- OpFunctionEnd)";
- CompileSuccessfully(body.c_str());
- ASSERT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("The type in OpCooperativeMatrixLengthNV <id> '5[%uint]' "
- "must be OpTypeCooperativeMatrixNV"));
- }
- TEST_F(ValidateMemory, CoopMatMatrixLengthGood) {
- const std::string body =
- R"(
- OpCapability Shader
- OpCapability Float16
- OpCapability CooperativeMatrixNV
- OpExtension "SPV_NV_cooperative_matrix"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- %void = OpTypeVoid
- %func = OpTypeFunction %void
- %f16 = OpTypeFloat 16
- %u32 = OpTypeInt 32 0
- %i32 = OpTypeInt 32 1
- %u32_8 = OpConstant %u32 8
- %subgroup = OpConstant %u32 3
- %f16mat = OpTypeCooperativeMatrixNV %f16 %subgroup %u32_8 %u32_8
- %main = OpFunction %void None %func
- %main_entry = OpLabel
- %1 = OpCooperativeMatrixLengthNV %u32 %f16mat
- OpReturn
- OpFunctionEnd)";
- CompileSuccessfully(body.c_str());
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateMemory, VulkanRTAOutsideOfStructBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %sampler_t = OpTypeSampler
- %array_t = OpTypeRuntimeArray %sampler_t
- %array_ptr = OpTypePointer UniformConstant %array_t
- %2 = OpVariable %array_ptr UniformConstant
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "OpVariable, <id> '5[%5]', is attempting to create memory for an "
- "illegal type, OpTypeRuntimeArray.\nFor Vulkan OpTypeRuntimeArray "
- "can only appear as the final member of an OpTypeStruct, thus cannot "
- "be instantiated via OpVariable\n %5 = OpVariable "
- "%_ptr_UniformConstant__runtimearr_2 UniformConstant\n"));
- }
- TEST_F(ValidateMemory, VulkanRTAOutsideOfStructWithRuntimeDescriptorArrayGood) {
- std::string spirv = R"(
- OpCapability Shader
- OpCapability RuntimeDescriptorArrayEXT
- OpExtension "SPV_EXT_descriptor_indexing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Offset 0
- %sampler_t = OpTypeSampler
- %uint = OpTypeInt 32 0
- %array_t = OpTypeRuntimeArray %sampler_t
- %struct = OpTypeStruct %uint
- %sb_array_t = OpTypeRuntimeArray %struct
- %array_sb_ptr = OpTypePointer StorageBuffer %sb_array_t
- %2 = OpVariable %array_sb_ptr StorageBuffer
- %array_uc_ptr = OpTypePointer UniformConstant %array_t
- %3 = OpVariable %array_uc_ptr UniformConstant
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(
- ValidateMemory,
- VulkanRTAOutsideOfStructWithRuntimeDescriptorArrayAndWrongStorageClassBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpCapability RuntimeDescriptorArrayEXT
- OpExtension "SPV_EXT_descriptor_indexing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %uint_t = OpTypeInt 32 0
- %array_t = OpTypeRuntimeArray %uint_t
- %array_ptr = OpTypePointer Workgroup %array_t
- %2 = OpVariable %array_ptr Workgroup
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("For Vulkan with RuntimeDescriptorArrayEXT, a variable "
- "containing OpTypeRuntimeArray must have storage class of "
- "StorageBuffer, Uniform, or UniformConstant.\n %5 = "
- "OpVariable %_ptr_Workgroup__runtimearr_uint Workgroup\n"));
- }
- TEST_F(ValidateMemory, VulkanRTAInsideStorageBufferStructGood) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %array_t ArrayStride 4
- OpMemberDecorate %struct_t 0 Offset 0
- OpDecorate %struct_t Block
- %uint_t = OpTypeInt 32 0
- %array_t = OpTypeRuntimeArray %uint_t
- %struct_t = OpTypeStruct %array_t
- %struct_ptr = OpTypePointer StorageBuffer %struct_t
- %2 = OpVariable %struct_ptr StorageBuffer
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, VulkanRTAInsideWrongStorageClassStructBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %struct_t Block
- %uint_t = OpTypeInt 32 0
- %array_t = OpTypeRuntimeArray %uint_t
- %struct_t = OpTypeStruct %array_t
- %struct_ptr = OpTypePointer Workgroup %struct_t
- %2 = OpVariable %struct_ptr Workgroup
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "For Vulkan, OpTypeStruct variables containing OpTypeRuntimeArray "
- "must have storage class of StorageBuffer, PhysicalStorageBuffer, or "
- "Uniform.\n %6 = "
- "OpVariable %_ptr_Workgroup__struct_2 Workgroup\n"));
- }
- TEST_F(ValidateMemory, VulkanRTAInsideStorageBufferStructWithoutBlockBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %struct_t BufferBlock
- %uint_t = OpTypeInt 32 0
- %array_t = OpTypeRuntimeArray %uint_t
- %struct_t = OpTypeStruct %array_t
- %struct_ptr = OpTypePointer StorageBuffer %struct_t
- %2 = OpVariable %struct_ptr StorageBuffer
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("For Vulkan, an OpTypeStruct variable containing an "
- "OpTypeRuntimeArray must be decorated with Block if it "
- "has storage class StorageBuffer or "
- "PhysicalStorageBuffer.\n %6 = OpVariable "
- "%_ptr_StorageBuffer__struct_2 StorageBuffer\n"));
- }
- TEST_F(ValidateMemory, VulkanRTAInsideUniformStructGood) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %array_t ArrayStride 4
- OpMemberDecorate %struct_t 0 Offset 0
- OpDecorate %struct_t BufferBlock
- %uint_t = OpTypeInt 32 0
- %array_t = OpTypeRuntimeArray %uint_t
- %struct_t = OpTypeStruct %array_t
- %struct_ptr = OpTypePointer Uniform %struct_t
- %2 = OpVariable %struct_ptr Uniform
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, VulkanRTAInsideUniformStructWithoutBufferBlockBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %struct_t Block
- %uint_t = OpTypeInt 32 0
- %array_t = OpTypeRuntimeArray %uint_t
- %struct_t = OpTypeStruct %array_t
- %struct_ptr = OpTypePointer Uniform %struct_t
- %2 = OpVariable %struct_ptr Uniform
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("For Vulkan, an OpTypeStruct variable containing an "
- "OpTypeRuntimeArray must be decorated with BufferBlock "
- "if it has storage class Uniform.\n %6 = OpVariable "
- "%_ptr_Uniform__struct_2 Uniform\n"));
- }
- TEST_F(ValidateMemory, VulkanRTAInsideRTABad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %sampler_t = OpTypeSampler
- %inner_array_t = OpTypeRuntimeArray %sampler_t
- %array_t = OpTypeRuntimeArray %inner_array_t
- %array_ptr = OpTypePointer UniformConstant %array_t
- %2 = OpVariable %array_ptr UniformConstant
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "OpTypeRuntimeArray Element Type <id> '3[%_runtimearr_2]' is not "
- "valid in Vulkan environments.\n %_runtimearr__runtimearr_2 = "
- "OpTypeRuntimeArray %_runtimearr_2\n"));
- }
- TEST_F(ValidateMemory, VulkanRTAInsideRTAWithRuntimeDescriptorArrayBad) {
- std::string spirv = R"(
- OpCapability RuntimeDescriptorArrayEXT
- OpCapability Shader
- OpExtension "SPV_EXT_descriptor_indexing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %struct Block
- %uint_t = OpTypeInt 32 0
- %inner_array_t = OpTypeRuntimeArray %uint_t
- %array_t = OpTypeRuntimeArray %inner_array_t
- %struct = OpTypeStruct %array_t
- %array_ptr = OpTypePointer StorageBuffer %struct
- %2 = OpVariable %array_ptr StorageBuffer
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "OpTypeRuntimeArray Element Type <id> '4[%_runtimearr_uint]' is not "
- "valid in Vulkan environments.\n %_runtimearr__runtimearr_uint = "
- "OpTypeRuntimeArray %_runtimearr_uint\n"));
- }
- TEST_F(ValidateMemory,
- VulkanUniformStructInsideRTAWithRuntimeDescriptorArrayGood) {
- std::string spirv = R"(
- OpCapability RuntimeDescriptorArrayEXT
- OpCapability Shader
- OpExtension "SPV_EXT_descriptor_indexing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %array_t ArrayStride 4
- OpMemberDecorate %struct_t 0 Offset 0
- OpDecorate %struct_t Block
- %uint_t = OpTypeInt 32 0
- %struct_t = OpTypeStruct %uint_t
- %array_t = OpTypeRuntimeArray %struct_t
- %array_ptr = OpTypePointer Uniform %array_t
- %2 = OpVariable %array_ptr Uniform
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, VulkanRTAInsideRTAInsideStructBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %array_t ArrayStride 4
- OpMemberDecorate %struct_t 0 Offset 0
- OpDecorate %struct_t Block
- %uint_t = OpTypeInt 32 0
- %inner_array_t = OpTypeRuntimeArray %uint_t
- %array_t = OpTypeRuntimeArray %inner_array_t
- %struct_t = OpTypeStruct %array_t
- %struct_ptr = OpTypePointer StorageBuffer %struct_t
- %2 = OpVariable %struct_ptr StorageBuffer
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "OpTypeRuntimeArray Element Type <id> '5[%_runtimearr_uint]' is not "
- "valid in Vulkan environments.\n %_runtimearr__runtimearr_uint = "
- "OpTypeRuntimeArray %_runtimearr_uint\n"));
- }
- TEST_F(ValidateMemory,
- VulkanRTAInsideRTAInsideStructWithRuntimeDescriptorArrayBad) {
- std::string spirv = R"(
- OpCapability RuntimeDescriptorArrayEXT
- OpCapability Shader
- OpExtension "SPV_EXT_descriptor_indexing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %array_t ArrayStride 4
- OpMemberDecorate %struct_t 0 Offset 0
- OpDecorate %struct_t Block
- %uint_t = OpTypeInt 32 0
- %inner_array_t = OpTypeRuntimeArray %uint_t
- %array_t = OpTypeRuntimeArray %inner_array_t
- %struct_t = OpTypeStruct %array_t
- %struct_ptr = OpTypePointer StorageBuffer %struct_t
- %2 = OpVariable %struct_ptr StorageBuffer
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "OpTypeRuntimeArray Element Type <id> '5[%_runtimearr_uint]' is not "
- "valid in Vulkan environments.\n %_runtimearr__runtimearr_uint = "
- "OpTypeRuntimeArray %_runtimearr_uint\n"));
- }
- TEST_F(ValidateMemory, VulkanRTAInsideArrayBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %uint_t = OpTypeInt 32 0
- %dim = OpConstant %uint_t 1
- %sampler_t = OpTypeSampler
- %inner_array_t = OpTypeRuntimeArray %sampler_t
- %array_t = OpTypeArray %inner_array_t %dim
- %array_ptr = OpTypePointer UniformConstant %array_t
- %2 = OpVariable %array_ptr UniformConstant
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("OpTypeArray Element Type <id> '5[%_runtimearr_4]' is not "
- "valid in Vulkan environments.\n %_arr__runtimearr_4_uint_1 = "
- "OpTypeArray %_runtimearr_4 %uint_1\n"));
- }
- TEST_F(ValidateMemory, VulkanRTAInsideArrayWithRuntimeDescriptorArrayBad) {
- std::string spirv = R"(
- OpCapability RuntimeDescriptorArrayEXT
- OpCapability Shader
- OpExtension "SPV_EXT_descriptor_indexing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %struct Block
- %uint_t = OpTypeInt 32 0
- %dim = OpConstant %uint_t 1
- %sampler_t = OpTypeSampler
- %inner_array_t = OpTypeRuntimeArray %uint_t
- %array_t = OpTypeRuntimeArray %inner_array_t
- %struct = OpTypeStruct %array_t
- %array_ptr = OpTypePointer StorageBuffer %struct
- %2 = OpVariable %array_ptr StorageBuffer
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "OpTypeRuntimeArray Element Type <id> '6[%_runtimearr_uint]' is not "
- "valid in Vulkan environments.\n %_runtimearr__runtimearr_uint = "
- "OpTypeRuntimeArray %_runtimearr_uint\n"));
- }
- TEST_F(ValidateMemory, VulkanRTAInsideArrayInsideStructBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %array_t ArrayStride 4
- OpMemberDecorate %struct_t 0 Offset 0
- OpDecorate %struct_t Block
- %uint_t = OpTypeInt 32 0
- %dim = OpConstant %uint_t 1
- %inner_array_t = OpTypeRuntimeArray %uint_t
- %array_t = OpTypeArray %inner_array_t %dim
- %struct_t = OpTypeStruct %array_t
- %struct_ptr = OpTypePointer StorageBuffer %struct_t
- %2 = OpVariable %struct_ptr StorageBuffer
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "OpTypeArray Element Type <id> '6[%_runtimearr_uint]' is not "
- "valid in Vulkan environments.\n %_arr__runtimearr_uint_uint_1 "
- "= OpTypeArray %_runtimearr_uint %uint_1\n"));
- }
- TEST_F(ValidateMemory,
- VulkanRTAInsideArrayInsideStructWithRuntimeDescriptorArrayBad) {
- std::string spirv = R"(
- OpCapability RuntimeDescriptorArrayEXT
- OpCapability Shader
- OpExtension "SPV_EXT_descriptor_indexing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %array_t ArrayStride 4
- OpMemberDecorate %struct_t 0 Offset 0
- OpDecorate %struct_t Block
- %uint_t = OpTypeInt 32 0
- %dim = OpConstant %uint_t 1
- %inner_array_t = OpTypeRuntimeArray %uint_t
- %array_t = OpTypeArray %inner_array_t %dim
- %struct_t = OpTypeStruct %array_t
- %struct_ptr = OpTypePointer StorageBuffer %struct_t
- %2 = OpVariable %struct_ptr StorageBuffer
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-OpTypeRuntimeArray-04680"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "OpTypeArray Element Type <id> '6[%_runtimearr_uint]' is not "
- "valid in Vulkan environments.\n %_arr__runtimearr_uint_uint_1 "
- "= OpTypeArray %_runtimearr_uint %uint_1\n"));
- }
- TEST_F(ValidateMemory, VulkanRTAStructInsideRTAWithRuntimeDescriptorArrayGood) {
- std::string spirv = R"(
- OpCapability RuntimeDescriptorArrayEXT
- OpCapability Shader
- OpExtension "SPV_EXT_descriptor_indexing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %inner_array_t ArrayStride 4
- OpDecorate %array_t ArrayStride 4
- OpMemberDecorate %struct_t 0 Offset 0
- OpDecorate %struct_t Block
- %uint_t = OpTypeInt 32 0
- %inner_array_t = OpTypeRuntimeArray %uint_t
- %struct_t = OpTypeStruct %inner_array_t
- %array_t = OpTypeRuntimeArray %struct_t
- %array_ptr = OpTypePointer StorageBuffer %array_t
- %2 = OpVariable %array_ptr StorageBuffer
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, VulkanRTAStructInsideArrayGood) {
- std::string spirv = R"(
- OpCapability RuntimeDescriptorArrayEXT
- OpCapability Shader
- OpExtension "SPV_EXT_descriptor_indexing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- OpDecorate %inner_array_t ArrayStride 4
- OpDecorate %array_t ArrayStride 4
- OpMemberDecorate %struct_t 0 Offset 0
- OpDecorate %struct_t Block
- %uint_t = OpTypeInt 32 0
- %inner_array_t = OpTypeRuntimeArray %uint_t
- %struct_t = OpTypeStruct %inner_array_t
- %array_size = OpConstant %uint_t 5
- %array_t = OpTypeArray %struct_t %array_size
- %array_ptr = OpTypePointer StorageBuffer %array_t
- %2 = OpVariable %array_ptr StorageBuffer
- %void = OpTypeVoid
- %func_t = OpTypeFunction %void
- %func = OpFunction %void None %func_t
- %1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, CopyMemoryNoAccessGood) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_ptr_priv = OpTypePointer Private %int
- %var1 = OpVariable %int_ptr_priv Private
- %var2 = OpVariable %int_ptr_priv Private
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(), Eq(""));
- }
- TEST_F(ValidateMemory, CopyMemorySimpleMixedAccessGood) {
- // Test one memory access operand using features that don't require the
- // Vulkan memory model.
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_ptr_priv = OpTypePointer Private %int
- %var1 = OpVariable %int_ptr_priv Private
- %var2 = OpVariable %int_ptr_priv Private
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2 Volatile|Aligned|Nontemporal 4
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(), Eq(""));
- }
- TEST_F(ValidateMemory, CopyMemorySimpleTwoMixedAccessV13Bad) {
- // Two memory access operands is invalid up to SPIR-V 1.3
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_ptr_priv = OpTypePointer Private %int
- %var1 = OpVariable %int_ptr_priv Private
- %var2 = OpVariable %int_ptr_priv Private
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2 Volatile Volatile
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("CopyMemory with two memory access operands requires "
- "SPIR-V 1.4 or later"));
- }
- TEST_F(ValidateMemory, CopyMemorySimpleTwoMixedAccessV14Good) {
- // Two memory access operands is valid in SPIR-V 1.4
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_ptr_priv = OpTypePointer Private %int
- %var1 = OpVariable %int_ptr_priv Private
- %var2 = OpVariable %int_ptr_priv Private
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemory %var1 %var2 Volatile Volatile
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(getDiagnosticString(), Eq(""));
- }
- TEST_F(ValidateMemory, CopyMemorySizedNoAccessGood) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability Addresses
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_16 = OpConstant %int 16
- %int_ptr_priv = OpTypePointer Private %int
- %var1 = OpVariable %int_ptr_priv Private
- %var2 = OpVariable %int_ptr_priv Private
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemorySized %var1 %var2 %int_16
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(), Eq(""));
- }
- TEST_F(ValidateMemory, CopyMemorySizedSimpleMixedAccessGood) {
- // Test one memory access operand using features that don't require the
- // Vulkan memory model.
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability Addresses
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_16 = OpConstant %int 16
- %int_ptr_priv = OpTypePointer Private %int
- %var1 = OpVariable %int_ptr_priv Private
- %var2 = OpVariable %int_ptr_priv Private
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemorySized %var1 %var2 %int_16 Volatile|Aligned|Nontemporal 4
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv);
- ASSERT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateMemory, CopyMemorySizedSimpleTwoMixedAccessV13Bad) {
- // Two memory access operands is invalid up to SPIR-V 1.3
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability Addresses
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_16 = OpConstant %int 16
- %int_ptr_priv = OpTypePointer Private %int
- %var1 = OpVariable %int_ptr_priv Private
- %var2 = OpVariable %int_ptr_priv Private
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemorySized %var1 %var2 %int_16 Volatile Volatile
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("CopyMemorySized with two memory access operands requires "
- "SPIR-V 1.4 or later"));
- }
- TEST_F(ValidateMemory, CopyMemorySizedSimpleTwoMixedAccessV14Good) {
- // Two memory access operands is valid in SPIR-V 1.4
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability Addresses
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_16 = OpConstant %int 16
- %int_ptr_priv = OpTypePointer Private %int
- %var1 = OpVariable %int_ptr_priv Private
- %var2 = OpVariable %int_ptr_priv Private
- %voidfn = OpTypeFunction %void
- %func = OpFunction %void None %voidfn
- %entry = OpLabel
- OpCopyMemorySized %var1 %var2 %int_16 Volatile Volatile
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(getDiagnosticString(), Eq(""));
- }
- using ValidatePointerComparisons = spvtest::ValidateBase<std::string>;
- TEST_P(ValidatePointerComparisons, Good) {
- const std::string operation = GetParam();
- std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability VariablePointersStorageBuffer
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %ptr_int = OpTypePointer StorageBuffer %int
- %var = OpVariable %ptr_int StorageBuffer
- %func_ty = OpTypeFunction %void
- %func = OpFunction %void None %func_ty
- %1 = OpLabel
- %equal = )" + operation;
- if (operation == "OpPtrDiff") {
- spirv += " %int ";
- } else {
- spirv += " %bool ";
- }
- spirv += R"(%var %var
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- }
- TEST_P(ValidatePointerComparisons, GoodWorkgroup) {
- const std::string operation = GetParam();
- std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability VariablePointers
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %ptr_int = OpTypePointer Workgroup %int
- %var = OpVariable %ptr_int Workgroup
- %func_ty = OpTypeFunction %void
- %func = OpFunction %void None %func_ty
- %1 = OpLabel
- %equal = )" + operation;
- if (operation == "OpPtrDiff") {
- spirv += " %int ";
- } else {
- spirv += " %bool ";
- }
- spirv += R"(%var %var
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- }
- TEST_P(ValidatePointerComparisons, BadResultType) {
- const std::string operation = GetParam();
- std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability VariablePointersStorageBuffer
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %ptr_int = OpTypePointer StorageBuffer %int
- %var = OpVariable %ptr_int StorageBuffer
- %func_ty = OpTypeFunction %void
- %func = OpFunction %void None %func_ty
- %1 = OpLabel
- %equal = )" + operation;
- if (operation == "OpPtrDiff") {
- spirv += " %bool ";
- } else {
- spirv += " %int ";
- }
- spirv += R"(%var %var
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- if (operation == "OpPtrDiff") {
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Result Type must be an integer scalar"));
- } else {
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Result Type must be OpTypeBool"));
- }
- }
- TEST_P(ValidatePointerComparisons, BadCapabilities) {
- const std::string operation = GetParam();
- std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %ptr_int = OpTypePointer StorageBuffer %int
- %var = OpVariable %ptr_int StorageBuffer
- %func_ty = OpTypeFunction %void
- %func = OpFunction %void None %func_ty
- %1 = OpLabel
- %equal = )" + operation;
- if (operation == "OpPtrDiff") {
- spirv += " %int ";
- } else {
- spirv += " %bool ";
- }
- spirv += R"(%var %var
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- if (operation == "OpPtrDiff") {
- // Gets caught by the grammar.
- EXPECT_EQ(SPV_ERROR_INVALID_CAPABILITY,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- } else {
- EXPECT_EQ(SPV_ERROR_INVALID_ID,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Instruction cannot for logical addressing model be "
- "used without a variable pointers capability"));
- }
- }
- TEST_P(ValidatePointerComparisons, BadOperandType) {
- const std::string operation = GetParam();
- std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability VariablePointersStorageBuffer
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %ptr_int = OpTypePointer StorageBuffer %int
- %var = OpVariable %ptr_int StorageBuffer
- %func_ty = OpTypeFunction %void
- %func = OpFunction %void None %func_ty
- %1 = OpLabel
- %ld = OpLoad %int %var
- %equal = )" + operation;
- if (operation == "OpPtrDiff") {
- spirv += " %int ";
- } else {
- spirv += " %bool ";
- }
- spirv += R"(%ld %ld
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Operand type must be a pointer"));
- }
- TEST_P(ValidatePointerComparisons, BadStorageClassWorkgroup) {
- const std::string operation = GetParam();
- std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability VariablePointersStorageBuffer
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %ptr_int = OpTypePointer Workgroup %int
- %var = OpVariable %ptr_int Workgroup
- %func_ty = OpTypeFunction %void
- %func = OpFunction %void None %func_ty
- %1 = OpLabel
- %equal = )" + operation;
- if (operation == "OpPtrDiff") {
- spirv += " %int ";
- } else {
- spirv += " %bool ";
- }
- spirv += R"(%var %var
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Workgroup storage class pointer requires "
- "VariablePointers capability to be specified"));
- }
- TEST_P(ValidatePointerComparisons, BadStorageClass) {
- const std::string operation = GetParam();
- std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability VariablePointersStorageBuffer
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %ptr_int = OpTypePointer Private %int
- %var = OpVariable %ptr_int Private
- %func_ty = OpTypeFunction %void
- %func = OpFunction %void None %func_ty
- %1 = OpLabel
- %equal = )" + operation;
- if (operation == "OpPtrDiff") {
- spirv += " %int ";
- } else {
- spirv += " %bool ";
- }
- spirv += R"(%var %var
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Invalid pointer storage class"));
- }
- TEST_P(ValidatePointerComparisons, BadDiffOperandTypes) {
- const std::string operation = GetParam();
- std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability VariablePointersStorageBuffer
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %ptr_int = OpTypePointer Private %int
- %var = OpVariable %ptr_int Private
- %func_ty = OpTypeFunction %void
- %func = OpFunction %void None %func_ty
- %1 = OpLabel
- %ld = OpLoad %int %var
- %equal = )" + operation;
- if (operation == "OpPtrDiff") {
- spirv += " %int ";
- } else {
- spirv += " %bool ";
- }
- spirv += R"(%var %ld
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_4);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_4));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("The types of Operand 1 and Operand 2 must match"));
- }
- INSTANTIATE_TEST_SUITE_P(PointerComparisons, ValidatePointerComparisons,
- Values("OpPtrEqual", "OpPtrNotEqual", "OpPtrDiff"));
- TEST_F(ValidateMemory, VariableInitializerWrongType) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability VariablePointersStorageBuffer
- OpMemoryModel Logical GLSL450
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %float = OpTypeFloat 32
- %ptr_wg_int = OpTypePointer Workgroup %int
- %ptr_wg_float = OpTypePointer Workgroup %int
- %wg_var = OpVariable %ptr_wg_int Workgroup
- %ptr_private_wg_float = OpTypePointer Private %ptr_wg_float
- %priv_var = OpVariable %ptr_private_wg_float Private %wg_var
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Initializer type must match the type pointed to by "
- "the Result Type"));
- }
- TEST_F(ValidateMemory, StoreToUniformBlock) {
- const std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Offset 0
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %int4 = OpTypeVector %int 4
- %struct = OpTypeStruct %int4
- %ptr_uniform_struct = OpTypePointer Uniform %struct
- %ptr_uniform_int4 = OpTypePointer Uniform %int4
- %ptr_uniform_int = OpTypePointer Uniform %int
- %var = OpVariable %ptr_uniform_struct Uniform
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %gep1 = OpAccessChain %ptr_uniform_int4 %var %int_0
- %gep2 = OpAccessChain %ptr_uniform_int %gep1 %int_0
- OpStore %gep2 %int_0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateMemory, StoreToUniformBlockVulkan) {
- const std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Offset 0
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %int4 = OpTypeVector %int 4
- %struct = OpTypeStruct %int4
- %ptr_uniform_struct = OpTypePointer Uniform %struct
- %ptr_uniform_int4 = OpTypePointer Uniform %int4
- %ptr_uniform_int = OpTypePointer Uniform %int
- %var = OpVariable %ptr_uniform_struct Uniform
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %gep1 = OpAccessChain %ptr_uniform_int4 %var %int_0
- %gep2 = OpAccessChain %ptr_uniform_int %gep1 %int_0
- OpStore %gep2 %int_0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Uniform-06925"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("In the Vulkan environment, cannot store to Uniform Blocks"));
- }
- // This test requires that the struct is not id 2.
- TEST_F(ValidateMemory, StoreToUniformBlockVulkan2) {
- const std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main" %gid_var
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %3 Block
- OpMemberDecorate %3 0 Offset 0
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- OpDecorate %gid_var BuiltIn GlobalInvocationId
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %int3 = OpTypeVector %int 3
- %int4 = OpTypeVector %int 4
- %3 = OpTypeStruct %int4
- %ptr_uniform_struct = OpTypePointer Uniform %3
- %ptr_uniform_int4 = OpTypePointer Uniform %int4
- %ptr_uniform_int = OpTypePointer Uniform %int
- %var = OpVariable %ptr_uniform_struct Uniform
- %ptr_input_int3 = OpTypePointer Input %int3
- %gid_var = OpVariable %ptr_input_int3 Input
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %gep1 = OpAccessChain %ptr_uniform_int4 %var %int_0
- %gep2 = OpAccessChain %ptr_uniform_int %gep1 %int_0
- OpStore %gep2 %int_0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Uniform-06925"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("In the Vulkan environment, cannot store to Uniform Blocks"));
- }
- TEST_F(ValidateMemory, StoreToUniformBufferBlockVulkan) {
- const std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %struct BufferBlock
- OpMemberDecorate %struct 0 Offset 0
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %int4 = OpTypeVector %int 4
- %struct = OpTypeStruct %int4
- %ptr_uniform_struct = OpTypePointer Uniform %struct
- %ptr_uniform_int4 = OpTypePointer Uniform %int4
- %ptr_uniform_int = OpTypePointer Uniform %int
- %var = OpVariable %ptr_uniform_struct Uniform
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %gep1 = OpAccessChain %ptr_uniform_int4 %var %int_0
- %gep2 = OpAccessChain %ptr_uniform_int %gep1 %int_0
- OpStore %gep2 %int_0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- }
- TEST_F(ValidateMemory, StoreToUniformBlockVulkanArray) {
- const std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Offset 0
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %int_1 = OpConstant %int 1
- %int4 = OpTypeVector %int 4
- %struct = OpTypeStruct %int4
- %array_struct = OpTypeArray %struct %int_1
- %ptr_uniform_array = OpTypePointer Uniform %array_struct
- %ptr_uniform_struct = OpTypePointer Uniform %struct
- %ptr_uniform_int4 = OpTypePointer Uniform %int4
- %ptr_uniform_int = OpTypePointer Uniform %int
- %var = OpVariable %ptr_uniform_array Uniform
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %gep1 = OpAccessChain %ptr_uniform_int %var %int_0 %int_0 %int_0
- %gep2 = OpCopyObject %ptr_uniform_int %gep1
- OpStore %gep2 %int_0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Uniform-06925"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("In the Vulkan environment, cannot store to Uniform Blocks"));
- }
- // This test requires that the struct is not id 2.
- TEST_F(ValidateMemory, StoreToUniformBlockVulkanArray2) {
- const std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main" %gid_var
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Offset 0
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- OpDecorate %gid_var BuiltIn GlobalInvocationId
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %int_1 = OpConstant %int 1
- %int3 = OpTypeVector %int 3
- %int4 = OpTypeVector %int 4
- %struct = OpTypeStruct %int4
- %array_struct = OpTypeArray %struct %int_1
- %ptr_uniform_array = OpTypePointer Uniform %array_struct
- %ptr_uniform_struct = OpTypePointer Uniform %struct
- %ptr_uniform_int4 = OpTypePointer Uniform %int4
- %ptr_uniform_int = OpTypePointer Uniform %int
- %var = OpVariable %ptr_uniform_array Uniform
- %ptr_input_int3 = OpTypePointer Input %int3
- %gid_var = OpVariable %ptr_input_int3 Input
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %gep1 = OpAccessChain %ptr_uniform_int %var %int_0 %int_0 %int_0
- %gep2 = OpCopyObject %ptr_uniform_int %gep1
- OpStore %gep2 %int_0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Uniform-06925"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("In the Vulkan environment, cannot store to Uniform Blocks"));
- }
- TEST_F(ValidateMemory, StoreToUniformBlockVulkanRuntimeArray) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability RuntimeDescriptorArrayEXT
- OpExtension "SPV_EXT_descriptor_indexing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Offset 0
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %int4 = OpTypeVector %int 4
- %struct = OpTypeStruct %int4
- %array_struct = OpTypeRuntimeArray %struct
- %ptr_uniform_array = OpTypePointer Uniform %array_struct
- %ptr_uniform_struct = OpTypePointer Uniform %struct
- %ptr_uniform_int4 = OpTypePointer Uniform %int4
- %ptr_uniform_int = OpTypePointer Uniform %int
- %var = OpVariable %ptr_uniform_array Uniform
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %gep1 = OpAccessChain %ptr_uniform_int4 %var %int_0 %int_0
- %gep2 = OpInBoundsAccessChain %ptr_uniform_int %gep1 %int_0
- OpStore %gep2 %int_0
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_1);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_1));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Uniform-06925"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("In the Vulkan environment, cannot store to Uniform Blocks"));
- }
- using ValidateSizedVariable =
- spvtest::ValidateBase<std::tuple<std::string, std::string,
- std::string, spv_target_env>>;
- CodeGenerator GetSizedVariableCodeGenerator(bool is_8bit, bool buffer_block) {
- CodeGenerator generator;
- generator.capabilities_ = "OpCapability Shader\nOpCapability Linkage\n";
- generator.extensions_ =
- "OpExtension \"SPV_KHR_16bit_storage\"\nOpExtension "
- "\"SPV_KHR_8bit_storage\"\n";
- generator.memory_model_ = "OpMemoryModel Logical GLSL450\n";
- if (is_8bit) {
- generator.before_types_ = "OpMemberDecorate %char_buffer_block 0 Offset 0\n";
- if (buffer_block)
- generator.before_types_ += "OpDecorate %char_buffer_block BufferBlock\n";
- generator.types_ = R"(%void = OpTypeVoid
- %char = OpTypeInt 8 0
- %char4 = OpTypeVector %char 4
- %char_buffer_block = OpTypeStruct %char
- )";
- } else {
- generator.before_types_ =
- "OpMemberDecorate %half_buffer_block 0 Offset 0\n"
- "OpMemberDecorate %short_buffer_block 0 Offset 0\n";
- if (buffer_block) {
- generator.before_types_ +=
- "OpDecorate %half_buffer_block BufferBlock\n"
- "OpDecorate %short_buffer_block BufferBlock\n";
- }
- generator.types_ = R"(%void = OpTypeVoid
- %short = OpTypeInt 16 0
- %half = OpTypeFloat 16
- %short4 = OpTypeVector %short 4
- %half4 = OpTypeVector %half 4
- %mat4x4 = OpTypeMatrix %half4 4
- %short_buffer_block = OpTypeStruct %short
- %half_buffer_block = OpTypeStruct %half
- )";
- }
- generator.after_types_ = R"(%void_fn = OpTypeFunction %void
- %func = OpFunction %void None %void_fn
- %entry = OpLabel
- )";
- generator.add_at_the_end_ = "OpReturn\nOpFunctionEnd\n";
- return generator;
- }
- TEST_P(ValidateSizedVariable, Capability) {
- const std::string storage_class = std::get<0>(GetParam());
- const std::string capability = std::get<1>(GetParam());
- const std::string var_type = std::get<2>(GetParam());
- const spv_target_env target = std::get<3>(GetParam());
- ASSERT_TRUE(target == SPV_ENV_UNIVERSAL_1_3 ||
- target == SPV_ENV_UNIVERSAL_1_4);
- bool type_8bit = false;
- if (var_type == "%char" || var_type == "%char4" ||
- var_type == "%char_buffer_block") {
- type_8bit = true;
- }
- const bool buffer_block = var_type.find("buffer_block") != std::string::npos;
- auto generator = GetSizedVariableCodeGenerator(type_8bit, buffer_block);
- if (capability == "WorkgroupMemoryExplicitLayout8BitAccessKHR" ||
- capability == "WorkgroupMemoryExplicitLayout16BitAccessKHR") {
- generator.extensions_ +=
- "OpExtension \"SPV_KHR_workgroup_memory_explicit_layout\"\n";
- }
- generator.types_ += "%ptr_type = OpTypePointer " + storage_class + " " +
- var_type + "\n%var = OpVariable %ptr_type " +
- storage_class + "\n";
- generator.capabilities_ += "OpCapability " + capability + "\n";
- bool capability_ok = false;
- bool storage_class_ok = false;
- if (storage_class == "Input" || storage_class == "Output") {
- if (!type_8bit) {
- capability_ok = capability == "StorageInputOutput16";
- storage_class_ok = true;
- }
- } else if (storage_class == "StorageBuffer") {
- if (type_8bit) {
- capability_ok = capability == "StorageBuffer8BitAccess" ||
- capability == "UniformAndStorageBuffer8BitAccess";
- } else {
- capability_ok = capability == "StorageBuffer16BitAccess" ||
- capability == "UniformAndStorageBuffer16BitAccess";
- }
- storage_class_ok = true;
- } else if (storage_class == "PushConstant") {
- if (type_8bit) {
- capability_ok = capability == "StoragePushConstant8";
- } else {
- capability_ok = capability == "StoragePushConstant16";
- }
- storage_class_ok = true;
- } else if (storage_class == "Uniform") {
- if (type_8bit) {
- capability_ok = capability == "UniformAndStorageBuffer8BitAccess" ||
- (capability == "StorageBuffer8BitAccess" && buffer_block);
- } else {
- capability_ok =
- capability == "UniformAndStorageBuffer16BitAccess" ||
- (capability == "StorageBuffer16BitAccess" && buffer_block);
- }
- storage_class_ok = true;
- } else if (storage_class == "Workgroup") {
- if (type_8bit) {
- capability_ok =
- capability == "WorkgroupMemoryExplicitLayout8BitAccessKHR";
- } else {
- capability_ok =
- capability == "WorkgroupMemoryExplicitLayout16BitAccessKHR";
- }
- storage_class_ok = true;
- }
- CompileSuccessfully(generator.Build(), target);
- spv_result_t result = ValidateInstructions(target);
- if (target < SPV_ENV_UNIVERSAL_1_4 &&
- (capability == "WorkgroupMemoryExplicitLayout8BitAccessKHR" ||
- capability == "WorkgroupMemoryExplicitLayout16BitAccessKHR")) {
- EXPECT_EQ(SPV_ERROR_WRONG_VERSION, result);
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("requires SPIR-V version 1.4 or later"));
- } else if (buffer_block && target > SPV_ENV_UNIVERSAL_1_3) {
- EXPECT_EQ(SPV_ERROR_WRONG_VERSION, result);
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("requires SPIR-V version 1.3 or earlier"));
- } else if (capability_ok) {
- EXPECT_EQ(SPV_SUCCESS, result);
- } else {
- EXPECT_EQ(SPV_ERROR_INVALID_ID, result);
- if (storage_class_ok) {
- std::string message = std::string("Allocating a variable containing a ") +
- (type_8bit ? "8" : "16") + "-bit element in " +
- storage_class +
- " storage class requires an additional capability";
- EXPECT_THAT(getDiagnosticString(), HasSubstr(message));
- } else {
- std::string message =
- std::string("Cannot allocate a variable containing a ") +
- (type_8bit ? "8" : "16") + "-bit type in " + storage_class +
- " storage class";
- EXPECT_THAT(getDiagnosticString(), HasSubstr(message));
- }
- }
- }
- INSTANTIATE_TEST_SUITE_P(
- Storage8, ValidateSizedVariable,
- Combine(Values("UniformConstant", "Input", "Output", "Workgroup",
- "CrossWorkgroup", "Private", "StorageBuffer", "Uniform"),
- Values("StorageBuffer8BitAccess",
- "UniformAndStorageBuffer8BitAccess", "StoragePushConstant8",
- "WorkgroupMemoryExplicitLayout8BitAccessKHR"),
- Values("%char", "%char4", "%char_buffer_block"),
- Values(SPV_ENV_UNIVERSAL_1_3, SPV_ENV_UNIVERSAL_1_4)));
- INSTANTIATE_TEST_SUITE_P(
- Storage16, ValidateSizedVariable,
- Combine(Values("UniformConstant", "Input", "Output", "Workgroup",
- "CrossWorkgroup", "Private", "StorageBuffer", "Uniform"),
- Values("StorageBuffer16BitAccess",
- "UniformAndStorageBuffer16BitAccess",
- "StoragePushConstant16", "StorageInputOutput16",
- "WorkgroupMemoryExplicitLayout16BitAccessKHR"),
- Values("%short", "%half", "%short4", "%half4", "%mat4x4",
- "%short_buffer_block", "%half_buffer_block"),
- Values(SPV_ENV_UNIVERSAL_1_3, SPV_ENV_UNIVERSAL_1_4)));
- using ValidateSizedLoadStore =
- spvtest::ValidateBase<std::tuple<std::string, uint32_t, std::string>>;
- CodeGenerator GetSizedLoadStoreCodeGenerator(const std::string& base_type,
- uint32_t width) {
- CodeGenerator generator;
- generator.capabilities_ = "OpCapability Shader\nOpCapability Linkage\n";
- if (width == 8) {
- generator.capabilities_ +=
- "OpCapability UniformAndStorageBuffer8BitAccess\n";
- generator.extensions_ = "OpExtension \"SPV_KHR_8bit_storage\"\n";
- } else {
- generator.capabilities_ +=
- "OpCapability UniformAndStorageBuffer16BitAccess\n";
- generator.extensions_ = "OpExtension \"SPV_KHR_16bit_storage\"\n";
- }
- generator.memory_model_ = "OpMemoryModel Logical GLSL450\n";
- generator.before_types_ = R"(OpDecorate %block Block
- OpMemberDecorate %block 0 Offset 0
- OpMemberDecorate %struct 0 Offset 0
- )";
- generator.types_ = R"(%void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %int_1 = OpConstant %int 1
- %int_2 = OpConstant %int 2
- %int_3 = OpConstant %int 3
- )";
- if (width == 8) {
- generator.types_ += R"(%scalar = OpTypeInt 8 0
- %vector = OpTypeVector %scalar 4
- %struct = OpTypeStruct %vector
- )";
- } else if (base_type == "int") {
- generator.types_ += R"(%scalar = OpTypeInt 16 0
- %vector = OpTypeVector %scalar 4
- %struct = OpTypeStruct %vector
- )";
- } else {
- generator.types_ += R"(%scalar = OpTypeFloat 16
- %vector = OpTypeVector %scalar 4
- %matrix = OpTypeMatrix %vector 4
- %struct = OpTypeStruct %matrix
- %ptr_ssbo_matrix = OpTypePointer StorageBuffer %matrix
- )";
- generator.before_types_ += R"(OpMemberDecorate %struct 0 RowMajor
- OpMemberDecorate %struct 0 MatrixStride 16
- )";
- }
- generator.types_ += R"(%block = OpTypeStruct %struct
- %ptr_ssbo_block = OpTypePointer StorageBuffer %block
- %ptr_ssbo_struct = OpTypePointer StorageBuffer %struct
- %ptr_ssbo_vector = OpTypePointer StorageBuffer %vector
- %ptr_ssbo_scalar = OpTypePointer StorageBuffer %scalar
- %ld_var = OpVariable %ptr_ssbo_block StorageBuffer
- %st_var = OpVariable %ptr_ssbo_block StorageBuffer
- )";
- generator.after_types_ = R"(%void_fn = OpTypeFunction %void
- %func = OpFunction %void None %void_fn
- %entry = OpLabel
- )";
- generator.add_at_the_end_ = "OpReturn\nOpFunctionEnd\n";
- return generator;
- }
- TEST_P(ValidateSizedLoadStore, Load) {
- std::string base_type = std::get<0>(GetParam());
- uint32_t width = std::get<1>(GetParam());
- std::string mem_type = std::get<2>(GetParam());
- CodeGenerator generator = GetSizedLoadStoreCodeGenerator(base_type, width);
- generator.after_types_ +=
- "%ld_gep = OpAccessChain %ptr_ssbo_" + mem_type + " %ld_var %int_0";
- if (mem_type != "struct") {
- generator.after_types_ += " %int_0";
- if (mem_type != "matrix" && base_type == "float") {
- generator.after_types_ += " %int_0";
- }
- if (mem_type == "scalar") {
- generator.after_types_ += " %int_0";
- }
- }
- generator.after_types_ += "\n";
- generator.after_types_ += "%ld = OpLoad %" + mem_type + " %ld_gep\n";
- CompileSuccessfully(generator.Build(), SPV_ENV_UNIVERSAL_1_3);
- if (mem_type == "struct") {
- EXPECT_EQ(SPV_ERROR_INVALID_ID,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "8- or 16-bit loads must be a scalar, vector or matrix type"));
- } else {
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- }
- TEST_P(ValidateSizedLoadStore, Store) {
- std::string base_type = std::get<0>(GetParam());
- uint32_t width = std::get<1>(GetParam());
- std::string mem_type = std::get<2>(GetParam());
- CodeGenerator generator = GetSizedLoadStoreCodeGenerator(base_type, width);
- generator.after_types_ +=
- "%ld_gep = OpAccessChain %ptr_ssbo_" + mem_type + " %ld_var %int_0";
- if (mem_type != "struct") {
- generator.after_types_ += " %int_0";
- if (mem_type != "matrix" && base_type == "float") {
- generator.after_types_ += " %int_0";
- }
- if (mem_type == "scalar") {
- generator.after_types_ += " %int_0";
- }
- }
- generator.after_types_ += "\n";
- generator.after_types_ += "%ld = OpLoad %" + mem_type + " %ld_gep\n";
- generator.after_types_ +=
- "%st_gep = OpAccessChain %ptr_ssbo_" + mem_type + " %st_var %int_0";
- if (mem_type != "struct") {
- generator.after_types_ += " %int_0";
- if (mem_type != "matrix" && base_type == "float") {
- generator.after_types_ += " %int_0";
- }
- if (mem_type == "scalar") {
- generator.after_types_ += " %int_0";
- }
- }
- generator.after_types_ += "\n";
- generator.after_types_ += "OpStore %st_gep %ld\n";
- CompileSuccessfully(generator.Build(), SPV_ENV_UNIVERSAL_1_3);
- if (mem_type == "struct") {
- EXPECT_EQ(SPV_ERROR_INVALID_ID,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- // Can only catch the load.
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "8- or 16-bit loads must be a scalar, vector or matrix type"));
- } else {
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- }
- INSTANTIATE_TEST_SUITE_P(LoadStoreInt8, ValidateSizedLoadStore,
- Combine(Values("int"), Values(8u),
- Values("scalar", "vector", "struct")));
- INSTANTIATE_TEST_SUITE_P(LoadStoreInt16, ValidateSizedLoadStore,
- Combine(Values("int"), Values(16u),
- Values("scalar", "vector", "struct")));
- INSTANTIATE_TEST_SUITE_P(LoadStoreFloat16, ValidateSizedLoadStore,
- Combine(Values("float"), Values(16u),
- Values("scalar", "vector", "matrix",
- "struct")));
- TEST_F(ValidateMemory, SmallStorageCopyMemoryChar) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability UniformAndStorageBuffer8BitAccess
- OpExtension "SPV_KHR_8bit_storage"
- OpMemoryModel Logical GLSL450
- OpDecorate %block Block
- OpMemberDecorate %block 0 Offset 0
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %char = OpTypeInt 8 0
- %block = OpTypeStruct %char
- %ptr_ssbo_block = OpTypePointer StorageBuffer %block
- %in = OpVariable %ptr_ssbo_block StorageBuffer
- %out = OpVariable %ptr_ssbo_block StorageBuffer
- %void_fn = OpTypeFunction %void
- %func = OpFunction %void None %void_fn
- %entry = OpLabel
- OpCopyMemory %out %in
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Cannot copy memory of objects containing 8- or 16-bit types"));
- }
- TEST_F(ValidateMemory, SmallStorageCopyMemoryShort) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability UniformAndStorageBuffer16BitAccess
- OpExtension "SPV_KHR_16bit_storage"
- OpMemoryModel Logical GLSL450
- OpDecorate %block Block
- OpMemberDecorate %block 0 Offset 0
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %short = OpTypeInt 16 0
- %block = OpTypeStruct %short
- %ptr_ssbo_block = OpTypePointer StorageBuffer %block
- %in = OpVariable %ptr_ssbo_block StorageBuffer
- %out = OpVariable %ptr_ssbo_block StorageBuffer
- %void_fn = OpTypeFunction %void
- %func = OpFunction %void None %void_fn
- %entry = OpLabel
- OpCopyMemory %out %in
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Cannot copy memory of objects containing 8- or 16-bit types"));
- }
- TEST_F(ValidateMemory, SmallStorageCopyMemoryHalf) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability UniformAndStorageBuffer16BitAccess
- OpExtension "SPV_KHR_16bit_storage"
- OpMemoryModel Logical GLSL450
- OpDecorate %block Block
- OpMemberDecorate %block 0 Offset 0
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %half = OpTypeFloat 16
- %block = OpTypeStruct %half
- %ptr_ssbo_block = OpTypePointer StorageBuffer %block
- %in = OpVariable %ptr_ssbo_block StorageBuffer
- %out = OpVariable %ptr_ssbo_block StorageBuffer
- %void_fn = OpTypeFunction %void
- %func = OpFunction %void None %void_fn
- %entry = OpLabel
- OpCopyMemory %out %in
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("Cannot copy memory of objects containing 8- or 16-bit types"));
- }
- TEST_F(ValidateMemory, SmallStorageVariableArrayBufferBlockShort) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability StorageBuffer16BitAccess
- OpExtension "SPV_KHR_16bit_storage"
- OpMemoryModel Logical GLSL450
- OpDecorate %block BufferBlock
- OpMemberDecorate %block 0 Offset 0
- %void = OpTypeVoid
- %short = OpTypeInt 16 0
- %int = OpTypeInt 32 0
- %int_4 = OpConstant %int 4
- %block = OpTypeStruct %short
- %block_array = OpTypeArray %block %int_4
- %ptr_block_array = OpTypePointer Uniform %block_array
- %var = OpVariable %ptr_block_array Uniform
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateMemory, SmallStorageVariableArrayBufferBlockChar) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability StorageBuffer8BitAccess
- OpExtension "SPV_KHR_8bit_storage"
- OpMemoryModel Logical GLSL450
- OpDecorate %block BufferBlock
- OpMemberDecorate %block 0 Offset 0
- %void = OpTypeVoid
- %char = OpTypeInt 8 0
- %int = OpTypeInt 32 0
- %int_4 = OpConstant %int 4
- %block = OpTypeStruct %char
- %block_array = OpTypeArray %block %int_4
- %ptr_block_array = OpTypePointer Uniform %block_array
- %var = OpVariable %ptr_block_array Uniform
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateMemory, SmallStorageVariableArrayBufferBlockHalf) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Linkage
- OpCapability StorageBuffer16BitAccess
- OpExtension "SPV_KHR_16bit_storage"
- OpMemoryModel Logical GLSL450
- OpDecorate %block BufferBlock
- OpMemberDecorate %block 0 Offset 0
- %void = OpTypeVoid
- %half = OpTypeFloat 16
- %int = OpTypeInt 32 0
- %int_4 = OpConstant %int 4
- %block = OpTypeStruct %half
- %block_array = OpTypeArray %block %int_4
- %ptr_block_array = OpTypePointer Uniform %block_array
- %var = OpVariable %ptr_block_array Uniform
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_3);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_3));
- }
- TEST_F(ValidateMemory, VulkanStorageBufferNotAStruct) {
- const std::string spirv = R"(
- OpCapability Shader
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %ptr_ssbo = OpTypePointer StorageBuffer %uint
- %var = OpVariable %ptr_ssbo StorageBuffer
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Uniform-06807"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("From Vulkan spec:\nVariables identified with "
- "the StorageBuffer storage class are used to access "
- "transparent buffer backed resources. Such variables must be "
- "typed as OpTypeStruct, or an array of this type"));
- }
- TEST_F(ValidateMemory, VulkanStorageBufferRuntimeArrayNotAStruct) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability RuntimeDescriptorArrayEXT
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- OpExtension "SPV_EXT_descriptor_indexing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %array = OpTypeRuntimeArray %uint
- %ptr_ssbo = OpTypePointer StorageBuffer %array
- %var = OpVariable %ptr_ssbo StorageBuffer
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Uniform-06807"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("From Vulkan spec:\nVariables identified with "
- "the StorageBuffer storage class are used to access "
- "transparent buffer backed resources. Such variables must be "
- "typed as OpTypeStruct, or an array of this type"));
- }
- TEST_F(ValidateMemory, VulkanStorageBufferArrayNotAStruct) {
- const std::string spirv = R"(
- OpCapability Shader
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %uint_4 = OpConstant %uint 4
- %array = OpTypeArray %uint %uint_4
- %ptr_ssbo = OpTypePointer StorageBuffer %array
- %var = OpVariable %ptr_ssbo StorageBuffer
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Uniform-06807"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr("From Vulkan spec:\nVariables identified with "
- "the StorageBuffer storage class are used to access "
- "transparent buffer backed resources. Such variables must be "
- "typed as OpTypeStruct, or an array of this type"));
- }
- TEST_F(ValidateMemory, VulkanInvariantOutputSuccess) {
- const std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Vertex %main "main" %var
- OpDecorate %var Location 0
- OpDecorate %var Invariant
- %void = OpTypeVoid
- %f32 = OpTypeFloat 32
- %ptr_output = OpTypePointer Output %f32
- %var = OpVariable %ptr_output Output
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateMemory, VulkanInvariantInputStructSuccess) {
- const std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %var
- OpExecutionMode %main OriginUpperLeft
- OpDecorate %var Location 0
- OpMemberDecorate %struct 1 Invariant
- %void = OpTypeVoid
- %f32 = OpTypeFloat 32
- %struct = OpTypeStruct %f32 %f32
- %ptr_input = OpTypePointer Input %struct
- %var = OpVariable %ptr_input Input
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateMemory, VulkanInvariantWrongStorageClass) {
- const std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Vertex %main "main"
- OpDecorate %var Invariant
- %void = OpTypeVoid
- %f32 = OpTypeFloat 32
- %ptr_private = OpTypePointer Private %f32
- %var = OpVariable %ptr_private Private
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Invariant-04677"));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "Variable decorated with Invariant must only be identified with the "
- "Input or Output storage class in Vulkan environment."));
- }
- TEST_F(ValidateMemory, VulkanInvariantMemberWrongStorageClass) {
- const std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- OpMemberDecorate %struct 1 Invariant
- %void = OpTypeVoid
- %f32 = OpTypeFloat 32
- %struct = OpTypeStruct %f32 %f32
- %ptr_private = OpTypePointer Private %struct
- %var = OpVariable %ptr_private Private
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Invariant-04677"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Variable struct member decorated with Invariant must "
- "only be identified with the Input or Output storage "
- "class in Vulkan environment."));
- }
- TEST_F(ValidateMemory, PhysicalStorageBufferPtrEqual) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Int64
- OpCapability PhysicalStorageBufferAddresses
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- %void = OpTypeVoid
- %bool = OpTypeBool
- %long = OpTypeInt 64 0
- %long_0 = OpConstant %long 0
- %ptr_pssbo_long = OpTypePointer PhysicalStorageBuffer %long
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %conv = OpConvertUToPtr %ptr_pssbo_long %long_0
- %eq = OpPtrEqual %bool %conv %conv
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_5);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_5));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "Cannot use a pointer in the PhysicalStorageBuffer storage class"));
- }
- TEST_F(ValidateMemory, PhysicalStorageBufferPtrNotEqual) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Int64
- OpCapability PhysicalStorageBufferAddresses
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- %void = OpTypeVoid
- %bool = OpTypeBool
- %long = OpTypeInt 64 0
- %long_0 = OpConstant %long 0
- %ptr_pssbo_long = OpTypePointer PhysicalStorageBuffer %long
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %conv = OpConvertUToPtr %ptr_pssbo_long %long_0
- %neq = OpPtrNotEqual %bool %conv %conv
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_5);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_5));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "Cannot use a pointer in the PhysicalStorageBuffer storage class"));
- }
- TEST_F(ValidateMemory, PhysicalStorageBufferPtrDiff) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability Int64
- OpCapability PhysicalStorageBufferAddresses
- OpCapability VariablePointers
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- %void = OpTypeVoid
- %long = OpTypeInt 64 0
- %long_0 = OpConstant %long 0
- %ptr_pssbo_long = OpTypePointer PhysicalStorageBuffer %long
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %conv = OpConvertUToPtr %ptr_pssbo_long %long_0
- %diff = OpPtrDiff %long %conv %conv
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_5);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_UNIVERSAL_1_5));
- EXPECT_THAT(
- getDiagnosticString(),
- HasSubstr(
- "Cannot use a pointer in the PhysicalStorageBuffer storage class"));
- }
- TEST_F(ValidateMemory, VulkanInitializerWithWorkgroupStorageClassBad) {
- std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %float = OpTypeFloat 32
- %float_ptr = OpTypePointer Workgroup %float
- %init_val = OpConstant %float 1.0
- %1 = OpVariable %float_ptr Workgroup %init_val
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %2 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID(" VUID-StandaloneSpirv-OpVariable-04734"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpVariable, <id> '5[%5]', initializers are limited to "
- "OpConstantNull in Workgroup storage class"));
- }
- TEST_F(ValidateMemory, VulkanInitializerWithWorkgroupStorageClassGood) {
- std::string spirv = R"(
- OpCapability Shader
- OpCapability VulkanMemoryModelKHR
- OpExtension "SPV_KHR_vulkan_memory_model"
- OpMemoryModel Logical VulkanKHR
- OpEntryPoint Fragment %func "func"
- OpExecutionMode %func OriginUpperLeft
- %float = OpTypeFloat 32
- %float_ptr = OpTypePointer Workgroup %float
- %init_val = OpConstantNull %float
- %1 = OpVariable %float_ptr Workgroup %init_val
- %void = OpTypeVoid
- %functy = OpTypeFunction %void
- %func = OpFunction %void None %functy
- %2 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv.c_str(), SPV_ENV_VULKAN_1_0);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_0));
- }
- TEST_F(ValidateMemory, LoadRuntimeArray) {
- const std::string spirv = R"(
- OpCapability Shader
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %rta = OpTypeRuntimeArray %int
- %block = OpTypeStruct %rta
- %ptr_rta = OpTypePointer StorageBuffer %rta
- %ptr_block = OpTypePointer StorageBuffer %block
- %var = OpVariable %ptr_block StorageBuffer
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %gep = OpAccessChain %ptr_rta %var %int_0
- %ld = OpLoad %rta %gep
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Cannot load a runtime-sized array"));
- }
- TEST_F(ValidateMemory, LoadRuntimeArrayInStruct) {
- const std::string spirv = R"(
- OpCapability Shader
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %rta = OpTypeRuntimeArray %int
- %block = OpTypeStruct %rta
- %ptr_rta = OpTypePointer StorageBuffer %rta
- %ptr_block = OpTypePointer StorageBuffer %block
- %var = OpVariable %ptr_block StorageBuffer
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %ld = OpLoad %block %var
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Cannot load a runtime-sized array"));
- }
- TEST_F(ValidateMemory, LoadRuntimeArrayInArray) {
- const std::string spirv = R"(
- OpCapability Shader
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- %void = OpTypeVoid
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %int_4 = OpConstant %int 4
- %rta = OpTypeRuntimeArray %int
- %block = OpTypeStruct %rta
- %array = OpTypeArray %block %int_4
- %ptr_rta = OpTypePointer StorageBuffer %rta
- %ptr_block = OpTypePointer StorageBuffer %block
- %ptr_array = OpTypePointer StorageBuffer %array
- %var = OpVariable %ptr_array StorageBuffer
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %ld = OpLoad %array %var
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Cannot load a runtime-sized array"));
- }
- TEST_F(ValidateMemory, Pre1p4WorkgroupMemoryBadLayoutOk) {
- const std::string spirv = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpDecorate %struct Block
- OpMemberDecorate %struct 0 Offset 0
- %void = OpTypeVoid
- %bool = OpTypeBool
- %struct = OpTypeStruct %bool
- %ptr = OpTypePointer Workgroup %struct
- %var = OpVariable %ptr Workgroup
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateMemory, PtrAccessChainArrayStrideBad) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VariablePointersStorageBuffer
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- OpExtension "SPV_KHR_variable_pointers"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "foo" %var
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- %uint = OpTypeInt 32 0
- %uint_0 = OpConstant %uint 0
- %uint_1 = OpConstant %uint 1
- %ptr = OpTypePointer StorageBuffer %uint
- %void = OpTypeVoid
- %func = OpTypeFunction %void
- %var = OpVariable %ptr StorageBuffer
- %main = OpFunction %void None %func
- %label = OpLabel
- %access = OpAccessChain %ptr %var
- %ptr_access = OpPtrAccessChain %ptr %access %uint_1
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_5);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA,
- ValidateInstructions(SPV_ENV_UNIVERSAL_1_5));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpPtrAccessChain must have a Base whose type is "
- "decorated with ArrayStride"));
- }
- TEST_F(ValidateMemory, PtrAccessChainArrayStrideSuccess) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VariablePointersStorageBuffer
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- OpExtension "SPV_KHR_variable_pointers"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "foo" %var
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 00
- OpDecorate %ptr ArrayStride 4
- %uint = OpTypeInt 32 0
- %uint_0 = OpConstant %uint 0
- %uint_1 = OpConstant %uint 1
- %ptr = OpTypePointer StorageBuffer %uint
- %void = OpTypeVoid
- %func = OpTypeFunction %void
- %var = OpVariable %ptr StorageBuffer
- %main = OpFunction %void None %func
- %label = OpLabel
- %access = OpAccessChain %ptr %var
- %ptr_access = OpPtrAccessChain %ptr %access %uint_1
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_UNIVERSAL_1_5);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_UNIVERSAL_1_5));
- }
- TEST_F(ValidateMemory, VulkanPtrAccessChainStorageBufferSuccess) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VariablePointersStorageBuffer
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- OpExtension "SPV_KHR_variable_pointers"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "foo" %var
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %_runtimearr_uint ArrayStride 4
- OpMemberDecorate %_struct_10 0 Offset 0
- OpDecorate %_struct_10 Block
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- OpDecorate %_ptr_StorageBuffer_uint ArrayStride 4
- %uint = OpTypeInt 32 0
- %uint_0 = OpConstant %uint 0
- %uint_1 = OpConstant %uint 1
- %_runtimearr_uint = OpTypeRuntimeArray %uint
- %_struct_10 = OpTypeStruct %_runtimearr_uint
- %_ptr_StorageBuffer__struct_10 = OpTypePointer StorageBuffer %_struct_10
- %_ptr_StorageBuffer_uint = OpTypePointer StorageBuffer %uint
- %void = OpTypeVoid
- %func2 = OpTypeFunction %void %_ptr_StorageBuffer_uint
- %func1 = OpTypeFunction %void
- %var = OpVariable %_ptr_StorageBuffer__struct_10 StorageBuffer
- %called = OpFunction %void None %func2
- %param = OpFunctionParameter %_ptr_StorageBuffer_uint
- %label2 = OpLabel
- %ptr_access = OpPtrAccessChain %_ptr_StorageBuffer_uint %param %uint_1
- OpReturn
- OpFunctionEnd
- %main = OpFunction %void None %func1
- %label1 = OpLabel
- %access = OpAccessChain %_ptr_StorageBuffer_uint %var %uint_0 %uint_0
- %call = OpFunctionCall %void %called %access
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_2);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- }
- TEST_F(ValidateMemory, VulkanPtrAccessChainStorageBufferCapability) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability PhysicalStorageBufferAddresses
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- OpExtension "SPV_KHR_variable_pointers"
- OpMemoryModel PhysicalStorageBuffer64 GLSL450
- OpEntryPoint GLCompute %main "foo" %var
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %_runtimearr_uint ArrayStride 4
- OpMemberDecorate %_struct_10 0 Offset 0
- OpDecorate %_struct_10 Block
- OpDecorate %var DescriptorSet 0
- OpDecorate %var Binding 0
- OpDecorate %_ptr_StorageBuffer_uint ArrayStride 4
- %uint = OpTypeInt 32 0
- %uint_0 = OpConstant %uint 0
- %uint_1 = OpConstant %uint 1
- %_runtimearr_uint = OpTypeRuntimeArray %uint
- %_struct_10 = OpTypeStruct %_runtimearr_uint
- %_ptr_StorageBuffer__struct_10 = OpTypePointer StorageBuffer %_struct_10
- %_ptr_StorageBuffer_uint = OpTypePointer StorageBuffer %uint
- %void = OpTypeVoid
- %func = OpTypeFunction %void
- %var = OpVariable %_ptr_StorageBuffer__struct_10 StorageBuffer
- %main = OpFunction %void None %func
- %label = OpLabel
- %access = OpAccessChain %_ptr_StorageBuffer_uint %var %uint_0 %uint_0
- %ptr_access = OpPtrAccessChain %_ptr_StorageBuffer_uint %access %uint_1
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_2);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Base-07652"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpPtrAccessChain Base operand pointing to "
- "StorageBuffer storage class must use VariablePointers "
- "or VariablePointersStorageBuffer capability"));
- }
- TEST_F(ValidateMemory, VulkanPtrAccessChainWorkgroupCapability) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VariablePointersStorageBuffer
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- OpExtension "SPV_KHR_variable_pointers"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "foo" %var
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %_ptr_Workgroup_uint ArrayStride 4
- %uint = OpTypeInt 32 0
- %uint_0 = OpConstant %uint 0
- %uint_1 = OpConstant %uint 1
- %_arr_uint = OpTypeArray %uint %uint_1
- %_ptr_Workgroup__arr_uint = OpTypePointer Workgroup %_arr_uint
- %_ptr_Workgroup_uint = OpTypePointer Workgroup %uint
- %void = OpTypeVoid
- %func = OpTypeFunction %void
- %var = OpVariable %_ptr_Workgroup__arr_uint Workgroup
- %main = OpFunction %void None %func
- %label = OpLabel
- %access = OpAccessChain %_ptr_Workgroup_uint %var %uint_0
- %ptr_access = OpPtrAccessChain %_ptr_Workgroup_uint %access %uint_1
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_2);
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- EXPECT_THAT(getDiagnosticString(),
- AnyVUID("VUID-StandaloneSpirv-Base-07651"));
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpPtrAccessChain Base operand pointing to Workgroup "
- "storage class must use VariablePointers capability"));
- }
- TEST_F(ValidateMemory, VulkanPtrAccessChainWorkgroupNoArrayStrideSuccess) {
- const std::string spirv = R"(
- OpCapability Shader
- OpCapability VariablePointers
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- OpExtension "SPV_KHR_variable_pointers"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "foo" %var
- OpExecutionMode %main LocalSize 1 1 1
- %uint = OpTypeInt 32 0
- %uint_0 = OpConstant %uint 0
- %uint_1 = OpConstant %uint 1
- %_arr_uint = OpTypeArray %uint %uint_1
- %_ptr_Workgroup__arr_uint = OpTypePointer Workgroup %_arr_uint
- %_ptr_Workgroup_uint = OpTypePointer Workgroup %uint
- %void = OpTypeVoid
- %func = OpTypeFunction %void
- %var = OpVariable %_ptr_Workgroup__arr_uint Workgroup
- %main = OpFunction %void None %func
- %label = OpLabel
- %access = OpAccessChain %_ptr_Workgroup_uint %var %uint_0
- %ptr_access = OpPtrAccessChain %_ptr_Workgroup_uint %access %uint_1
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(spirv, SPV_ENV_VULKAN_1_2);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions(SPV_ENV_VULKAN_1_2));
- }
- } // namespace
- } // namespace val
- } // namespace spvtools
|