| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150 |
- // 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.
- // Validates correctness of extension SPIR-V instructions.
- #include <cstdlib>
- #include <sstream>
- #include <string>
- #include <vector>
- #include "spirv/unified1/NonSemanticClspvReflection.h"
- #include "OpenCLDebugInfo100.h"
- #include "source/diagnostic.h"
- #include "source/enum_string_mapping.h"
- #include "source/extensions.h"
- #include "source/latest_version_glsl_std_450_header.h"
- #include "source/latest_version_opencl_std_header.h"
- #include "source/opcode.h"
- #include "source/spirv_constant.h"
- #include "source/spirv_target_env.h"
- #include "source/val/instruction.h"
- #include "source/val/validate.h"
- #include "source/val/validation_state.h"
- namespace spvtools {
- namespace val {
- namespace {
- uint32_t GetSizeTBitWidth(const ValidationState_t& _) {
- if (_.addressing_model() == SpvAddressingModelPhysical32) return 32;
- if (_.addressing_model() == SpvAddressingModelPhysical64) return 64;
- return 0;
- }
- // Check that the operand of a debug info instruction |inst| at |word_index|
- // is a result id of an instruction with |expected_opcode|.
- spv_result_t ValidateOperandForDebugInfo(
- ValidationState_t& _, const std::string& operand_name,
- SpvOp expected_opcode, const Instruction* inst, uint32_t word_index,
- const std::function<std::string()>& ext_inst_name) {
- auto* operand = _.FindDef(inst->word(word_index));
- if (operand->opcode() != expected_opcode) {
- spv_opcode_desc desc = nullptr;
- if (_.grammar().lookupOpcode(expected_opcode, &desc) != SPV_SUCCESS ||
- !desc) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand " << operand_name << " is invalid";
- }
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand " << operand_name << " must be a result id of "
- << "Op" << desc->name;
- }
- return SPV_SUCCESS;
- }
- #define CHECK_OPERAND(NAME, opcode, index) \
- do { \
- auto result = ValidateOperandForDebugInfo(_, NAME, opcode, inst, index, \
- ext_inst_name); \
- if (result != SPV_SUCCESS) return result; \
- } while (0)
- // True if the operand of a debug info instruction |inst| at |word_index|
- // satisifies |expectation| that is given as a function. Otherwise,
- // returns false.
- bool DoesDebugInfoOperandMatchExpectation(
- const ValidationState_t& _,
- const std::function<bool(OpenCLDebugInfo100Instructions)>& expectation,
- const Instruction* inst, uint32_t word_index) {
- if (inst->words().size() <= word_index) return false;
- auto* debug_inst = _.FindDef(inst->word(word_index));
- if (debug_inst->opcode() != SpvOpExtInst ||
- debug_inst->ext_inst_type() != SPV_EXT_INST_TYPE_OPENCL_DEBUGINFO_100 ||
- !expectation(OpenCLDebugInfo100Instructions(debug_inst->word(4)))) {
- return false;
- }
- return true;
- }
- // Check that the operand of a debug info instruction |inst| at |word_index|
- // is a result id of an debug info instruction whose debug instruction type
- // is |expected_debug_inst|.
- spv_result_t ValidateDebugInfoOperand(
- ValidationState_t& _, const std::string& debug_inst_name,
- OpenCLDebugInfo100Instructions expected_debug_inst, const Instruction* inst,
- uint32_t word_index, const std::function<std::string()>& ext_inst_name) {
- std::function<bool(OpenCLDebugInfo100Instructions)> expectation =
- [expected_debug_inst](OpenCLDebugInfo100Instructions dbg_inst) {
- return dbg_inst == expected_debug_inst;
- };
- if (DoesDebugInfoOperandMatchExpectation(_, expectation, inst, word_index))
- return SPV_SUCCESS;
- spv_ext_inst_desc desc = nullptr;
- _.grammar().lookupExtInst(SPV_EXT_INST_TYPE_OPENCL_DEBUGINFO_100,
- expected_debug_inst, &desc);
- if (_.grammar().lookupExtInst(SPV_EXT_INST_TYPE_OPENCL_DEBUGINFO_100,
- expected_debug_inst, &desc) != SPV_SUCCESS ||
- !desc) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand " << debug_inst_name << " is invalid";
- }
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand " << debug_inst_name << " must be a result id of "
- << desc->name;
- }
- #define CHECK_DEBUG_OPERAND(NAME, debug_opcode, index) \
- do { \
- auto result = ValidateDebugInfoOperand(_, NAME, debug_opcode, inst, index, \
- ext_inst_name); \
- if (result != SPV_SUCCESS) return result; \
- } while (0)
- // Check that the operand of a debug info instruction |inst| at |word_index|
- // is a result id of an debug info instruction with DebugTypeBasic.
- spv_result_t ValidateOperandBaseType(
- ValidationState_t& _, const Instruction* inst, uint32_t word_index,
- const std::function<std::string()>& ext_inst_name) {
- return ValidateDebugInfoOperand(_, "Base Type",
- OpenCLDebugInfo100DebugTypeBasic, inst,
- word_index, ext_inst_name);
- }
- // Check that the operand of a debug info instruction |inst| at |word_index|
- // is a result id of a debug lexical scope instruction which is one of
- // DebugCompilationUnit, DebugFunction, DebugLexicalBlock, or
- // DebugTypeComposite.
- spv_result_t ValidateOperandLexicalScope(
- ValidationState_t& _, const std::string& debug_inst_name,
- const Instruction* inst, uint32_t word_index,
- const std::function<std::string()>& ext_inst_name) {
- std::function<bool(OpenCLDebugInfo100Instructions)> expectation =
- [](OpenCLDebugInfo100Instructions dbg_inst) {
- return dbg_inst == OpenCLDebugInfo100DebugCompilationUnit ||
- dbg_inst == OpenCLDebugInfo100DebugFunction ||
- dbg_inst == OpenCLDebugInfo100DebugLexicalBlock ||
- dbg_inst == OpenCLDebugInfo100DebugTypeComposite;
- };
- if (DoesDebugInfoOperandMatchExpectation(_, expectation, inst, word_index))
- return SPV_SUCCESS;
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand " << debug_inst_name
- << " must be a result id of a lexical scope";
- }
- // Check that the operand of a debug info instruction |inst| at |word_index|
- // is a result id of a debug type instruction (See DebugTypeXXX in
- // "4.3. Type instructions" section of OpenCL.DebugInfo.100 spec.
- spv_result_t ValidateOperandDebugType(
- ValidationState_t& _, const std::string& debug_inst_name,
- const Instruction* inst, uint32_t word_index,
- const std::function<std::string()>& ext_inst_name,
- bool allow_template_param) {
- std::function<bool(OpenCLDebugInfo100Instructions)> expectation =
- [&allow_template_param](OpenCLDebugInfo100Instructions dbg_inst) {
- if (allow_template_param &&
- (dbg_inst == OpenCLDebugInfo100DebugTypeTemplateParameter ||
- dbg_inst ==
- OpenCLDebugInfo100DebugTypeTemplateTemplateParameter)) {
- return true;
- }
- return OpenCLDebugInfo100DebugTypeBasic <= dbg_inst &&
- dbg_inst <= OpenCLDebugInfo100DebugTypeTemplate;
- };
- if (DoesDebugInfoOperandMatchExpectation(_, expectation, inst, word_index))
- return SPV_SUCCESS;
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand " << debug_inst_name
- << " is not a valid debug type";
- }
- bool IsUint32Constant(ValidationState_t& _, uint32_t id) {
- auto inst = _.FindDef(id);
- if (!inst || inst->opcode() != SpvOpConstant) {
- return false;
- }
- auto type = _.FindDef(inst->type_id());
- if (!type || type->opcode() != SpvOpTypeInt) {
- return false;
- }
- if (type->GetOperandAs<uint32_t>(1) != 32) {
- return false;
- }
- if (type->GetOperandAs<uint32_t>(2) != 0) {
- return false;
- }
- return true;
- }
- spv_result_t ValidateClspvReflectionKernel(ValidationState_t& _,
- const Instruction* inst) {
- const auto kernel_id = inst->GetOperandAs<uint32_t>(4);
- const auto kernel = _.FindDef(kernel_id);
- if (kernel->opcode() != SpvOpFunction) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Kernel does not reference a function";
- }
- bool found_kernel = false;
- for (auto entry_point : _.entry_points()) {
- if (entry_point == kernel_id) {
- found_kernel = true;
- break;
- }
- }
- if (!found_kernel) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Kernel does not reference an entry-point";
- }
- const auto* exec_models = _.GetExecutionModels(kernel_id);
- if (!exec_models || exec_models->empty()) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Kernel does not reference an entry-point";
- }
- for (auto exec_model : *exec_models) {
- if (exec_model != SpvExecutionModelGLCompute) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Kernel must refer only to GLCompute entry-points";
- }
- }
- auto name = _.FindDef(inst->GetOperandAs<uint32_t>(5));
- if (!name || name->opcode() != SpvOpString) {
- return _.diag(SPV_ERROR_INVALID_ID, inst) << "Name must be an OpString";
- }
- const std::string name_str = reinterpret_cast<const char*>(
- name->words().data() + name->operands()[1].offset);
- bool found = false;
- for (auto& desc : _.entry_point_descriptions(kernel_id)) {
- if (name_str == desc.name) {
- found = true;
- break;
- }
- }
- if (!found) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Name must match an entry-point for Kernel";
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateClspvReflectionArgumentInfo(ValidationState_t& _,
- const Instruction* inst) {
- const auto num_operands = inst->operands().size();
- if (_.GetIdOpcode(inst->GetOperandAs<uint32_t>(4)) != SpvOpString) {
- return _.diag(SPV_ERROR_INVALID_ID, inst) << "Name must be an OpString";
- }
- if (num_operands > 5) {
- if (_.GetIdOpcode(inst->GetOperandAs<uint32_t>(5)) != SpvOpString) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "TypeName must be an OpString";
- }
- }
- if (num_operands > 6) {
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(6))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "AddressQualifier must be a 32-bit unsigned integer "
- "OpConstant";
- }
- }
- if (num_operands > 7) {
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(7))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "AccessQualifier must be a 32-bit unsigned integer "
- "OpConstant";
- }
- }
- if (num_operands > 8) {
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(8))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "TypeQualifier must be a 32-bit unsigned integer "
- "OpConstant";
- }
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateKernelDecl(ValidationState_t& _, const Instruction* inst) {
- const auto decl_id = inst->GetOperandAs<uint32_t>(4);
- const auto decl = _.FindDef(decl_id);
- if (!decl || decl->opcode() != SpvOpExtInst) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Kernel must be a Kernel extended instruction";
- }
- if (decl->GetOperandAs<uint32_t>(2) != inst->GetOperandAs<uint32_t>(2)) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Kernel must be from the same extended instruction import";
- }
- const auto ext_inst =
- decl->GetOperandAs<NonSemanticClspvReflectionInstructions>(3);
- if (ext_inst != NonSemanticClspvReflectionKernel) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Kernel must be a Kernel extended instruction";
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateArgInfo(ValidationState_t& _, const Instruction* inst,
- uint32_t info_index) {
- auto info = _.FindDef(inst->GetOperandAs<uint32_t>(info_index));
- if (!info || info->opcode() != SpvOpExtInst) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "ArgInfo must be an ArgumentInfo extended instruction";
- }
- if (info->GetOperandAs<uint32_t>(2) != inst->GetOperandAs<uint32_t>(2)) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "ArgInfo must be from the same extended instruction import";
- }
- auto ext_inst = info->GetOperandAs<NonSemanticClspvReflectionInstructions>(3);
- if (ext_inst != NonSemanticClspvReflectionArgumentInfo) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "ArgInfo must be an ArgumentInfo extended instruction";
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateClspvReflectionArgumentBuffer(ValidationState_t& _,
- const Instruction* inst) {
- const auto num_operands = inst->operands().size();
- if (auto error = ValidateKernelDecl(_, inst)) {
- return error;
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(5))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Ordinal must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(6))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "DescriptorSet must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(7))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Binding must be a 32-bit unsigned integer OpConstant";
- }
- if (num_operands == 9) {
- if (auto error = ValidateArgInfo(_, inst, 8)) {
- return error;
- }
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateClspvReflectionArgumentPodBuffer(ValidationState_t& _,
- const Instruction* inst) {
- const auto num_operands = inst->operands().size();
- if (auto error = ValidateKernelDecl(_, inst)) {
- return error;
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(5))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Ordinal must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(6))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "DescriptorSet must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(7))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Binding must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(8))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Offset must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(9))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Size must be a 32-bit unsigned integer OpConstant";
- }
- if (num_operands == 11) {
- if (auto error = ValidateArgInfo(_, inst, 10)) {
- return error;
- }
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateClspvReflectionArgumentPodPushConstant(
- ValidationState_t& _, const Instruction* inst) {
- const auto num_operands = inst->operands().size();
- if (auto error = ValidateKernelDecl(_, inst)) {
- return error;
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(5))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Ordinal must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(6))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Offset must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(7))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Size must be a 32-bit unsigned integer OpConstant";
- }
- if (num_operands == 9) {
- if (auto error = ValidateArgInfo(_, inst, 8)) {
- return error;
- }
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateClspvReflectionArgumentWorkgroup(ValidationState_t& _,
- const Instruction* inst) {
- const auto num_operands = inst->operands().size();
- if (auto error = ValidateKernelDecl(_, inst)) {
- return error;
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(5))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Ordinal must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(6))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "SpecId must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(7))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "ElemSize must be a 32-bit unsigned integer OpConstant";
- }
- if (num_operands == 9) {
- if (auto error = ValidateArgInfo(_, inst, 8)) {
- return error;
- }
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateClspvReflectionSpecConstantTriple(
- ValidationState_t& _, const Instruction* inst) {
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(4))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "X must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(5))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Y must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(6))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Z must be a 32-bit unsigned integer OpConstant";
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateClspvReflectionSpecConstantWorkDim(
- ValidationState_t& _, const Instruction* inst) {
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(4))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Dim must be a 32-bit unsigned integer OpConstant";
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateClspvReflectionPushConstant(ValidationState_t& _,
- const Instruction* inst) {
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(4))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Offset must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(5))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Size must be a 32-bit unsigned integer OpConstant";
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateClspvReflectionConstantData(ValidationState_t& _,
- const Instruction* inst) {
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(4))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "DescriptorSet must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(5))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Binding must be a 32-bit unsigned integer OpConstant";
- }
- if (_.GetIdOpcode(inst->GetOperandAs<uint32_t>(6)) != SpvOpString) {
- return _.diag(SPV_ERROR_INVALID_ID, inst) << "Data must be an OpString";
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateClspvReflectionSampler(ValidationState_t& _,
- const Instruction* inst) {
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(4))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "DescriptorSet must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(5))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Binding must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(6))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Mask must be a 32-bit unsigned integer OpConstant";
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateClspvReflectionPropertyRequiredWorkgroupSize(
- ValidationState_t& _, const Instruction* inst) {
- if (auto error = ValidateKernelDecl(_, inst)) {
- return error;
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(5))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "X must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(6))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Y must be a 32-bit unsigned integer OpConstant";
- }
- if (!IsUint32Constant(_, inst->GetOperandAs<uint32_t>(7))) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Z must be a 32-bit unsigned integer OpConstant";
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateClspvReflectionInstruction(ValidationState_t& _,
- const Instruction* inst,
- uint32_t /*version*/) {
- if (!_.IsVoidType(inst->type_id())) {
- return _.diag(SPV_ERROR_INVALID_ID, inst)
- << "Return Type must be OpTypeVoid";
- }
- auto ext_inst = inst->GetOperandAs<NonSemanticClspvReflectionInstructions>(3);
- switch (ext_inst) {
- case NonSemanticClspvReflectionKernel:
- return ValidateClspvReflectionKernel(_, inst);
- case NonSemanticClspvReflectionArgumentInfo:
- return ValidateClspvReflectionArgumentInfo(_, inst);
- case NonSemanticClspvReflectionArgumentStorageBuffer:
- case NonSemanticClspvReflectionArgumentUniform:
- case NonSemanticClspvReflectionArgumentSampledImage:
- case NonSemanticClspvReflectionArgumentStorageImage:
- case NonSemanticClspvReflectionArgumentSampler:
- return ValidateClspvReflectionArgumentBuffer(_, inst);
- case NonSemanticClspvReflectionArgumentPodStorageBuffer:
- case NonSemanticClspvReflectionArgumentPodUniform:
- return ValidateClspvReflectionArgumentPodBuffer(_, inst);
- case NonSemanticClspvReflectionArgumentPodPushConstant:
- return ValidateClspvReflectionArgumentPodPushConstant(_, inst);
- case NonSemanticClspvReflectionArgumentWorkgroup:
- return ValidateClspvReflectionArgumentWorkgroup(_, inst);
- case NonSemanticClspvReflectionSpecConstantWorkgroupSize:
- case NonSemanticClspvReflectionSpecConstantGlobalOffset:
- return ValidateClspvReflectionSpecConstantTriple(_, inst);
- case NonSemanticClspvReflectionSpecConstantWorkDim:
- return ValidateClspvReflectionSpecConstantWorkDim(_, inst);
- case NonSemanticClspvReflectionPushConstantGlobalOffset:
- case NonSemanticClspvReflectionPushConstantEnqueuedLocalSize:
- case NonSemanticClspvReflectionPushConstantGlobalSize:
- case NonSemanticClspvReflectionPushConstantRegionOffset:
- case NonSemanticClspvReflectionPushConstantNumWorkgroups:
- case NonSemanticClspvReflectionPushConstantRegionGroupOffset:
- return ValidateClspvReflectionPushConstant(_, inst);
- case NonSemanticClspvReflectionConstantDataStorageBuffer:
- case NonSemanticClspvReflectionConstantDataUniform:
- return ValidateClspvReflectionConstantData(_, inst);
- case NonSemanticClspvReflectionLiteralSampler:
- return ValidateClspvReflectionSampler(_, inst);
- case NonSemanticClspvReflectionPropertyRequiredWorkgroupSize:
- return ValidateClspvReflectionPropertyRequiredWorkgroupSize(_, inst);
- default:
- break;
- }
- return SPV_SUCCESS;
- }
- bool IsConstIntScalarTypeWith32Or64Bits(ValidationState_t& _,
- Instruction* instr) {
- if (instr->opcode() != SpvOpConstant) return false;
- if (!_.IsIntScalarType(instr->type_id())) return false;
- uint32_t size_in_bits = _.GetBitWidth(instr->type_id());
- return size_in_bits == 32 || size_in_bits == 64;
- }
- bool IsConstWithIntScalarType(ValidationState_t& _, const Instruction* inst,
- uint32_t word_index) {
- auto* int_scalar_const = _.FindDef(inst->word(word_index));
- if (int_scalar_const->opcode() == SpvOpConstant &&
- _.IsIntScalarType(int_scalar_const->type_id())) {
- return true;
- }
- return false;
- }
- bool IsDebugVariableWithIntScalarType(ValidationState_t& _,
- const Instruction* inst,
- uint32_t word_index) {
- auto* dbg_int_scalar_var = _.FindDef(inst->word(word_index));
- if (OpenCLDebugInfo100Instructions(dbg_int_scalar_var->word(4)) ==
- OpenCLDebugInfo100DebugLocalVariable ||
- OpenCLDebugInfo100Instructions(dbg_int_scalar_var->word(4)) ==
- OpenCLDebugInfo100DebugGlobalVariable) {
- auto* dbg_type = _.FindDef(dbg_int_scalar_var->word(6));
- if (OpenCLDebugInfo100Instructions(dbg_type->word(4)) ==
- OpenCLDebugInfo100DebugTypeBasic &&
- (OpenCLDebugInfo100DebugBaseTypeAttributeEncoding(dbg_type->word(7)) ==
- OpenCLDebugInfo100Signed ||
- OpenCLDebugInfo100DebugBaseTypeAttributeEncoding(dbg_type->word(7)) ==
- OpenCLDebugInfo100Unsigned)) {
- return true;
- }
- }
- return false;
- }
- } // anonymous namespace
- spv_result_t ValidateExtension(ValidationState_t& _, const Instruction* inst) {
- if (_.version() < SPV_SPIRV_VERSION_WORD(1, 4)) {
- std::string extension = GetExtensionString(&(inst->c_inst()));
- if (extension ==
- ExtensionToString(kSPV_KHR_workgroup_memory_explicit_layout)) {
- return _.diag(SPV_ERROR_WRONG_VERSION, inst)
- << "SPV_KHR_workgroup_memory_explicit_layout extension "
- "requires SPIR-V version 1.4 or later.";
- }
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateExtInstImport(ValidationState_t& _,
- const Instruction* inst) {
- const auto name_id = 1;
- if (!_.HasExtension(kSPV_KHR_non_semantic_info)) {
- const std::string name(reinterpret_cast<const char*>(
- inst->words().data() + inst->operands()[name_id].offset));
- if (name.find("NonSemantic.") == 0) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << "NonSemantic extended instruction sets cannot be declared "
- "without SPV_KHR_non_semantic_info.";
- }
- }
- return SPV_SUCCESS;
- }
- spv_result_t ValidateExtInst(ValidationState_t& _, const Instruction* inst) {
- const uint32_t result_type = inst->type_id();
- const uint32_t num_operands = static_cast<uint32_t>(inst->operands().size());
- const uint32_t ext_inst_set = inst->word(3);
- const uint32_t ext_inst_index = inst->word(4);
- const spv_ext_inst_type_t ext_inst_type =
- spv_ext_inst_type_t(inst->ext_inst_type());
- auto ext_inst_name = [&_, ext_inst_set, ext_inst_type, ext_inst_index]() {
- spv_ext_inst_desc desc = nullptr;
- if (_.grammar().lookupExtInst(ext_inst_type, ext_inst_index, &desc) !=
- SPV_SUCCESS ||
- !desc) {
- return std::string("Unknown ExtInst");
- }
- auto* import_inst = _.FindDef(ext_inst_set);
- assert(import_inst);
- std::ostringstream ss;
- ss << reinterpret_cast<const char*>(import_inst->words().data() + 2);
- ss << " ";
- ss << desc->name;
- return ss.str();
- };
- if (ext_inst_type == SPV_EXT_INST_TYPE_GLSL_STD_450) {
- const GLSLstd450 ext_inst_key = GLSLstd450(ext_inst_index);
- switch (ext_inst_key) {
- case GLSLstd450Round:
- case GLSLstd450RoundEven:
- case GLSLstd450FAbs:
- case GLSLstd450Trunc:
- case GLSLstd450FSign:
- case GLSLstd450Floor:
- case GLSLstd450Ceil:
- case GLSLstd450Fract:
- case GLSLstd450Sqrt:
- case GLSLstd450InverseSqrt:
- case GLSLstd450FMin:
- case GLSLstd450FMax:
- case GLSLstd450FClamp:
- case GLSLstd450FMix:
- case GLSLstd450Step:
- case GLSLstd450SmoothStep:
- case GLSLstd450Fma:
- case GLSLstd450Normalize:
- case GLSLstd450FaceForward:
- case GLSLstd450Reflect:
- case GLSLstd450NMin:
- case GLSLstd450NMax:
- case GLSLstd450NClamp: {
- if (!_.IsFloatScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar or vector type";
- }
- for (uint32_t operand_index = 4; operand_index < num_operands;
- ++operand_index) {
- const uint32_t operand_type = _.GetOperandTypeId(inst, operand_index);
- if (result_type != operand_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected types of all operands to be equal to Result "
- "Type";
- }
- }
- break;
- }
- case GLSLstd450SAbs:
- case GLSLstd450SSign:
- case GLSLstd450UMin:
- case GLSLstd450SMin:
- case GLSLstd450UMax:
- case GLSLstd450SMax:
- case GLSLstd450UClamp:
- case GLSLstd450SClamp:
- case GLSLstd450FindILsb:
- case GLSLstd450FindUMsb:
- case GLSLstd450FindSMsb: {
- if (!_.IsIntScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be an int scalar or vector type";
- }
- const uint32_t result_type_bit_width = _.GetBitWidth(result_type);
- const uint32_t result_type_dimension = _.GetDimension(result_type);
- for (uint32_t operand_index = 4; operand_index < num_operands;
- ++operand_index) {
- const uint32_t operand_type = _.GetOperandTypeId(inst, operand_index);
- if (!_.IsIntScalarOrVectorType(operand_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected all operands to be int scalars or vectors";
- }
- if (result_type_dimension != _.GetDimension(operand_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected all operands to have the same dimension as "
- << "Result Type";
- }
- if (result_type_bit_width != _.GetBitWidth(operand_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected all operands to have the same bit width as "
- << "Result Type";
- }
- if (ext_inst_key == GLSLstd450FindUMsb ||
- ext_inst_key == GLSLstd450FindSMsb) {
- if (result_type_bit_width != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "this instruction is currently limited to 32-bit width "
- << "components";
- }
- }
- }
- break;
- }
- case GLSLstd450Radians:
- case GLSLstd450Degrees:
- case GLSLstd450Sin:
- case GLSLstd450Cos:
- case GLSLstd450Tan:
- case GLSLstd450Asin:
- case GLSLstd450Acos:
- case GLSLstd450Atan:
- case GLSLstd450Sinh:
- case GLSLstd450Cosh:
- case GLSLstd450Tanh:
- case GLSLstd450Asinh:
- case GLSLstd450Acosh:
- case GLSLstd450Atanh:
- case GLSLstd450Exp:
- case GLSLstd450Exp2:
- case GLSLstd450Log:
- case GLSLstd450Log2:
- case GLSLstd450Atan2:
- case GLSLstd450Pow: {
- if (!_.IsFloatScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a 16 or 32-bit scalar or "
- "vector float type";
- }
- const uint32_t result_type_bit_width = _.GetBitWidth(result_type);
- if (result_type_bit_width != 16 && result_type_bit_width != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a 16 or 32-bit scalar or "
- "vector float type";
- }
- for (uint32_t operand_index = 4; operand_index < num_operands;
- ++operand_index) {
- const uint32_t operand_type = _.GetOperandTypeId(inst, operand_index);
- if (result_type != operand_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected types of all operands to be equal to Result "
- "Type";
- }
- }
- break;
- }
- case GLSLstd450Determinant: {
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- uint32_t num_rows = 0;
- uint32_t num_cols = 0;
- uint32_t col_type = 0;
- uint32_t component_type = 0;
- if (!_.GetMatrixTypeInfo(x_type, &num_rows, &num_cols, &col_type,
- &component_type) ||
- num_rows != num_cols) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X to be a square matrix";
- }
- if (result_type != component_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X component type to be equal to "
- << "Result Type";
- }
- break;
- }
- case GLSLstd450MatrixInverse: {
- uint32_t num_rows = 0;
- uint32_t num_cols = 0;
- uint32_t col_type = 0;
- uint32_t component_type = 0;
- if (!_.GetMatrixTypeInfo(result_type, &num_rows, &num_cols, &col_type,
- &component_type) ||
- num_rows != num_cols) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a square matrix";
- }
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- if (result_type != x_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X type to be equal to Result Type";
- }
- break;
- }
- case GLSLstd450Modf: {
- if (!_.IsFloatScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or vector float type";
- }
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- const uint32_t i_type = _.GetOperandTypeId(inst, 5);
- if (x_type != result_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X type to be equal to Result Type";
- }
- uint32_t i_storage_class = 0;
- uint32_t i_data_type = 0;
- if (!_.GetPointerTypeInfo(i_type, &i_data_type, &i_storage_class)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand I to be a pointer";
- }
- if (i_data_type != result_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand I data type to be equal to Result Type";
- }
- break;
- }
- case GLSLstd450ModfStruct: {
- std::vector<uint32_t> result_types;
- if (!_.GetStructMemberTypes(result_type, &result_types) ||
- result_types.size() != 2 ||
- !_.IsFloatScalarOrVectorType(result_types[0]) ||
- result_types[1] != result_types[0]) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a struct with two identical "
- << "scalar or vector float type members";
- }
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- if (x_type != result_types[0]) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X type to be equal to members of "
- << "Result Type struct";
- }
- break;
- }
- case GLSLstd450Frexp: {
- if (!_.IsFloatScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or vector float type";
- }
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- const uint32_t exp_type = _.GetOperandTypeId(inst, 5);
- if (x_type != result_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X type to be equal to Result Type";
- }
- uint32_t exp_storage_class = 0;
- uint32_t exp_data_type = 0;
- if (!_.GetPointerTypeInfo(exp_type, &exp_data_type,
- &exp_storage_class)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Exp to be a pointer";
- }
- if (!_.IsIntScalarOrVectorType(exp_data_type) ||
- (!_.HasExtension(kSPV_AMD_gpu_shader_int16) &&
- _.GetBitWidth(exp_data_type) != 32) ||
- (_.HasExtension(kSPV_AMD_gpu_shader_int16) &&
- _.GetBitWidth(exp_data_type) != 16 &&
- _.GetBitWidth(exp_data_type) != 32)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Exp data type to be a "
- << (_.HasExtension(kSPV_AMD_gpu_shader_int16)
- ? "16-bit or 32-bit "
- : "32-bit ")
- << "int scalar or vector type";
- }
- if (_.GetDimension(result_type) != _.GetDimension(exp_data_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Exp data type to have the same component "
- << "number as Result Type";
- }
- break;
- }
- case GLSLstd450Ldexp: {
- if (!_.IsFloatScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or vector float type";
- }
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- const uint32_t exp_type = _.GetOperandTypeId(inst, 5);
- if (x_type != result_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X type to be equal to Result Type";
- }
- if (!_.IsIntScalarOrVectorType(exp_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Exp to be a 32-bit int scalar "
- << "or vector type";
- }
- if (_.GetDimension(result_type) != _.GetDimension(exp_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Exp to have the same component "
- << "number as Result Type";
- }
- break;
- }
- case GLSLstd450FrexpStruct: {
- std::vector<uint32_t> result_types;
- if (!_.GetStructMemberTypes(result_type, &result_types) ||
- result_types.size() != 2 ||
- !_.IsFloatScalarOrVectorType(result_types[0]) ||
- !_.IsIntScalarOrVectorType(result_types[1]) ||
- (!_.HasExtension(kSPV_AMD_gpu_shader_int16) &&
- _.GetBitWidth(result_types[1]) != 32) ||
- (_.HasExtension(kSPV_AMD_gpu_shader_int16) &&
- _.GetBitWidth(result_types[1]) != 16 &&
- _.GetBitWidth(result_types[1]) != 32) ||
- _.GetDimension(result_types[0]) !=
- _.GetDimension(result_types[1])) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a struct with two members, "
- << "first member a float scalar or vector, second member a "
- << (_.HasExtension(kSPV_AMD_gpu_shader_int16)
- ? "16-bit or 32-bit "
- : "32-bit ")
- << "int scalar or vector with the same number of "
- << "components as the first member";
- }
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- if (x_type != result_types[0]) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X type to be equal to the first member "
- << "of Result Type struct";
- }
- break;
- }
- case GLSLstd450PackSnorm4x8:
- case GLSLstd450PackUnorm4x8: {
- if (!_.IsIntScalarType(result_type) ||
- _.GetBitWidth(result_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be 32-bit int scalar type";
- }
- const uint32_t v_type = _.GetOperandTypeId(inst, 4);
- if (!_.IsFloatVectorType(v_type) || _.GetDimension(v_type) != 4 ||
- _.GetBitWidth(v_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand V to be a 32-bit float vector of size 4";
- }
- break;
- }
- case GLSLstd450PackSnorm2x16:
- case GLSLstd450PackUnorm2x16:
- case GLSLstd450PackHalf2x16: {
- if (!_.IsIntScalarType(result_type) ||
- _.GetBitWidth(result_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be 32-bit int scalar type";
- }
- const uint32_t v_type = _.GetOperandTypeId(inst, 4);
- if (!_.IsFloatVectorType(v_type) || _.GetDimension(v_type) != 2 ||
- _.GetBitWidth(v_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand V to be a 32-bit float vector of size 2";
- }
- break;
- }
- case GLSLstd450PackDouble2x32: {
- if (!_.IsFloatScalarType(result_type) ||
- _.GetBitWidth(result_type) != 64) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be 64-bit float scalar type";
- }
- const uint32_t v_type = _.GetOperandTypeId(inst, 4);
- if (!_.IsIntVectorType(v_type) || _.GetDimension(v_type) != 2 ||
- _.GetBitWidth(v_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand V to be a 32-bit int vector of size 2";
- }
- break;
- }
- case GLSLstd450UnpackSnorm4x8:
- case GLSLstd450UnpackUnorm4x8: {
- if (!_.IsFloatVectorType(result_type) ||
- _.GetDimension(result_type) != 4 ||
- _.GetBitWidth(result_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a 32-bit float vector of size "
- "4";
- }
- const uint32_t v_type = _.GetOperandTypeId(inst, 4);
- if (!_.IsIntScalarType(v_type) || _.GetBitWidth(v_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P to be a 32-bit int scalar";
- }
- break;
- }
- case GLSLstd450UnpackSnorm2x16:
- case GLSLstd450UnpackUnorm2x16:
- case GLSLstd450UnpackHalf2x16: {
- if (!_.IsFloatVectorType(result_type) ||
- _.GetDimension(result_type) != 2 ||
- _.GetBitWidth(result_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a 32-bit float vector of size "
- "2";
- }
- const uint32_t v_type = _.GetOperandTypeId(inst, 4);
- if (!_.IsIntScalarType(v_type) || _.GetBitWidth(v_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P to be a 32-bit int scalar";
- }
- break;
- }
- case GLSLstd450UnpackDouble2x32: {
- if (!_.IsIntVectorType(result_type) ||
- _.GetDimension(result_type) != 2 ||
- _.GetBitWidth(result_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a 32-bit int vector of size "
- "2";
- }
- const uint32_t v_type = _.GetOperandTypeId(inst, 4);
- if (!_.IsFloatScalarType(v_type) || _.GetBitWidth(v_type) != 64) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand V to be a 64-bit float scalar";
- }
- break;
- }
- case GLSLstd450Length: {
- if (!_.IsFloatScalarType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar type";
- }
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- if (!_.IsFloatScalarOrVectorType(x_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X to be of float scalar or vector type";
- }
- if (result_type != _.GetComponentType(x_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X component type to be equal to Result "
- "Type";
- }
- break;
- }
- case GLSLstd450Distance: {
- if (!_.IsFloatScalarType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar type";
- }
- const uint32_t p0_type = _.GetOperandTypeId(inst, 4);
- if (!_.IsFloatScalarOrVectorType(p0_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P0 to be of float scalar or vector type";
- }
- if (result_type != _.GetComponentType(p0_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P0 component type to be equal to "
- << "Result Type";
- }
- const uint32_t p1_type = _.GetOperandTypeId(inst, 5);
- if (!_.IsFloatScalarOrVectorType(p1_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P1 to be of float scalar or vector type";
- }
- if (result_type != _.GetComponentType(p1_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P1 component type to be equal to "
- << "Result Type";
- }
- if (_.GetDimension(p0_type) != _.GetDimension(p1_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operands P0 and P1 to have the same number of "
- << "components";
- }
- break;
- }
- case GLSLstd450Cross: {
- if (!_.IsFloatVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float vector type";
- }
- if (_.GetDimension(result_type) != 3) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to have 3 components";
- }
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- const uint32_t y_type = _.GetOperandTypeId(inst, 5);
- if (x_type != result_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X type to be equal to Result Type";
- }
- if (y_type != result_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Y type to be equal to Result Type";
- }
- break;
- }
- case GLSLstd450Refract: {
- if (!_.IsFloatScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar or vector type";
- }
- const uint32_t i_type = _.GetOperandTypeId(inst, 4);
- const uint32_t n_type = _.GetOperandTypeId(inst, 5);
- const uint32_t eta_type = _.GetOperandTypeId(inst, 6);
- if (result_type != i_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand I to be of type equal to Result Type";
- }
- if (result_type != n_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand N to be of type equal to Result Type";
- }
- if (!_.IsFloatScalarType(eta_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Eta to be a float scalar";
- }
- break;
- }
- case GLSLstd450InterpolateAtCentroid:
- case GLSLstd450InterpolateAtSample:
- case GLSLstd450InterpolateAtOffset: {
- if (!_.HasCapability(SpvCapabilityInterpolationFunction)) {
- return _.diag(SPV_ERROR_INVALID_CAPABILITY, inst)
- << ext_inst_name()
- << " requires capability InterpolationFunction";
- }
- if (!_.IsFloatScalarOrVectorType(result_type) ||
- _.GetBitWidth(result_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a 32-bit float scalar "
- << "or vector type";
- }
- const uint32_t interpolant_type = _.GetOperandTypeId(inst, 4);
- uint32_t interpolant_storage_class = 0;
- uint32_t interpolant_data_type = 0;
- if (!_.GetPointerTypeInfo(interpolant_type, &interpolant_data_type,
- &interpolant_storage_class)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Interpolant to be a pointer";
- }
- if (result_type != interpolant_data_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Interpolant data type to be equal to Result Type";
- }
- if (interpolant_storage_class != SpvStorageClassInput) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Interpolant storage class to be Input";
- }
- if (ext_inst_key == GLSLstd450InterpolateAtSample) {
- const uint32_t sample_type = _.GetOperandTypeId(inst, 5);
- if (!_.IsIntScalarType(sample_type) ||
- _.GetBitWidth(sample_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Sample to be 32-bit integer";
- }
- }
- if (ext_inst_key == GLSLstd450InterpolateAtOffset) {
- const uint32_t offset_type = _.GetOperandTypeId(inst, 5);
- if (!_.IsFloatVectorType(offset_type) ||
- _.GetDimension(offset_type) != 2 ||
- _.GetBitWidth(offset_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Offset to be a vector of 2 32-bit floats";
- }
- }
- _.function(inst->function()->id())
- ->RegisterExecutionModelLimitation(
- SpvExecutionModelFragment,
- ext_inst_name() +
- std::string(" requires Fragment execution model"));
- break;
- }
- case GLSLstd450IMix: {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << "Extended instruction GLSLstd450IMix is not supported";
- }
- case GLSLstd450Bad: {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << "Encountered extended instruction GLSLstd450Bad";
- }
- case GLSLstd450Count: {
- assert(0);
- break;
- }
- }
- } else if (ext_inst_type == SPV_EXT_INST_TYPE_OPENCL_STD) {
- const OpenCLLIB::Entrypoints ext_inst_key =
- OpenCLLIB::Entrypoints(ext_inst_index);
- switch (ext_inst_key) {
- case OpenCLLIB::Acos:
- case OpenCLLIB::Acosh:
- case OpenCLLIB::Acospi:
- case OpenCLLIB::Asin:
- case OpenCLLIB::Asinh:
- case OpenCLLIB::Asinpi:
- case OpenCLLIB::Atan:
- case OpenCLLIB::Atan2:
- case OpenCLLIB::Atanh:
- case OpenCLLIB::Atanpi:
- case OpenCLLIB::Atan2pi:
- case OpenCLLIB::Cbrt:
- case OpenCLLIB::Ceil:
- case OpenCLLIB::Copysign:
- case OpenCLLIB::Cos:
- case OpenCLLIB::Cosh:
- case OpenCLLIB::Cospi:
- case OpenCLLIB::Erfc:
- case OpenCLLIB::Erf:
- case OpenCLLIB::Exp:
- case OpenCLLIB::Exp2:
- case OpenCLLIB::Exp10:
- case OpenCLLIB::Expm1:
- case OpenCLLIB::Fabs:
- case OpenCLLIB::Fdim:
- case OpenCLLIB::Floor:
- case OpenCLLIB::Fma:
- case OpenCLLIB::Fmax:
- case OpenCLLIB::Fmin:
- case OpenCLLIB::Fmod:
- case OpenCLLIB::Hypot:
- case OpenCLLIB::Lgamma:
- case OpenCLLIB::Log:
- case OpenCLLIB::Log2:
- case OpenCLLIB::Log10:
- case OpenCLLIB::Log1p:
- case OpenCLLIB::Logb:
- case OpenCLLIB::Mad:
- case OpenCLLIB::Maxmag:
- case OpenCLLIB::Minmag:
- case OpenCLLIB::Nextafter:
- case OpenCLLIB::Pow:
- case OpenCLLIB::Powr:
- case OpenCLLIB::Remainder:
- case OpenCLLIB::Rint:
- case OpenCLLIB::Round:
- case OpenCLLIB::Rsqrt:
- case OpenCLLIB::Sin:
- case OpenCLLIB::Sinh:
- case OpenCLLIB::Sinpi:
- case OpenCLLIB::Sqrt:
- case OpenCLLIB::Tan:
- case OpenCLLIB::Tanh:
- case OpenCLLIB::Tanpi:
- case OpenCLLIB::Tgamma:
- case OpenCLLIB::Trunc:
- case OpenCLLIB::Half_cos:
- case OpenCLLIB::Half_divide:
- case OpenCLLIB::Half_exp:
- case OpenCLLIB::Half_exp2:
- case OpenCLLIB::Half_exp10:
- case OpenCLLIB::Half_log:
- case OpenCLLIB::Half_log2:
- case OpenCLLIB::Half_log10:
- case OpenCLLIB::Half_powr:
- case OpenCLLIB::Half_recip:
- case OpenCLLIB::Half_rsqrt:
- case OpenCLLIB::Half_sin:
- case OpenCLLIB::Half_sqrt:
- case OpenCLLIB::Half_tan:
- case OpenCLLIB::Native_cos:
- case OpenCLLIB::Native_divide:
- case OpenCLLIB::Native_exp:
- case OpenCLLIB::Native_exp2:
- case OpenCLLIB::Native_exp10:
- case OpenCLLIB::Native_log:
- case OpenCLLIB::Native_log2:
- case OpenCLLIB::Native_log10:
- case OpenCLLIB::Native_powr:
- case OpenCLLIB::Native_recip:
- case OpenCLLIB::Native_rsqrt:
- case OpenCLLIB::Native_sin:
- case OpenCLLIB::Native_sqrt:
- case OpenCLLIB::Native_tan:
- case OpenCLLIB::FClamp:
- case OpenCLLIB::Degrees:
- case OpenCLLIB::FMax_common:
- case OpenCLLIB::FMin_common:
- case OpenCLLIB::Mix:
- case OpenCLLIB::Radians:
- case OpenCLLIB::Step:
- case OpenCLLIB::Smoothstep:
- case OpenCLLIB::Sign: {
- if (!_.IsFloatScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar or vector type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or a vector with 2, "
- "3, 4, 8 or 16 components";
- }
- for (uint32_t operand_index = 4; operand_index < num_operands;
- ++operand_index) {
- const uint32_t operand_type = _.GetOperandTypeId(inst, operand_index);
- if (result_type != operand_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected types of all operands to be equal to Result "
- "Type";
- }
- }
- break;
- }
- case OpenCLLIB::Fract:
- case OpenCLLIB::Modf:
- case OpenCLLIB::Sincos: {
- if (!_.IsFloatScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar or vector type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or a vector with 2, "
- "3, 4, 8 or 16 components";
- }
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- if (result_type != x_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected type of operand X to be equal to Result Type";
- }
- const uint32_t p_type = _.GetOperandTypeId(inst, 5);
- uint32_t p_storage_class = 0;
- uint32_t p_data_type = 0;
- if (!_.GetPointerTypeInfo(p_type, &p_data_type, &p_storage_class)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected the last operand to be a pointer";
- }
- if (p_storage_class != SpvStorageClassGeneric &&
- p_storage_class != SpvStorageClassCrossWorkgroup &&
- p_storage_class != SpvStorageClassWorkgroup &&
- p_storage_class != SpvStorageClassFunction) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected storage class of the pointer to be Generic, "
- "CrossWorkgroup, Workgroup or Function";
- }
- if (result_type != p_data_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected data type of the pointer to be equal to Result "
- "Type";
- }
- break;
- }
- case OpenCLLIB::Frexp:
- case OpenCLLIB::Lgamma_r:
- case OpenCLLIB::Remquo: {
- if (!_.IsFloatScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar or vector type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or a vector with 2, "
- "3, 4, 8 or 16 components";
- }
- uint32_t operand_index = 4;
- const uint32_t x_type = _.GetOperandTypeId(inst, operand_index++);
- if (result_type != x_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected type of operand X to be equal to Result Type";
- }
- if (ext_inst_key == OpenCLLIB::Remquo) {
- const uint32_t y_type = _.GetOperandTypeId(inst, operand_index++);
- if (result_type != y_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected type of operand Y to be equal to Result Type";
- }
- }
- const uint32_t p_type = _.GetOperandTypeId(inst, operand_index++);
- uint32_t p_storage_class = 0;
- uint32_t p_data_type = 0;
- if (!_.GetPointerTypeInfo(p_type, &p_data_type, &p_storage_class)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected the last operand to be a pointer";
- }
- if (p_storage_class != SpvStorageClassGeneric &&
- p_storage_class != SpvStorageClassCrossWorkgroup &&
- p_storage_class != SpvStorageClassWorkgroup &&
- p_storage_class != SpvStorageClassFunction) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected storage class of the pointer to be Generic, "
- "CrossWorkgroup, Workgroup or Function";
- }
- if (!_.IsIntScalarOrVectorType(p_data_type) ||
- _.GetBitWidth(p_data_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected data type of the pointer to be a 32-bit int "
- "scalar or vector type";
- }
- if (_.GetDimension(p_data_type) != num_components) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected data type of the pointer to have the same number "
- "of components as Result Type";
- }
- break;
- }
- case OpenCLLIB::Ilogb: {
- if (!_.IsIntScalarOrVectorType(result_type) ||
- _.GetBitWidth(result_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a 32-bit int scalar or vector "
- "type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or a vector with 2, "
- "3, 4, 8 or 16 components";
- }
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- if (!_.IsFloatScalarOrVectorType(x_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X to be a float scalar or vector";
- }
- if (_.GetDimension(x_type) != num_components) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X to have the same number of components "
- "as Result Type";
- }
- break;
- }
- case OpenCLLIB::Ldexp:
- case OpenCLLIB::Pown:
- case OpenCLLIB::Rootn: {
- if (!_.IsFloatScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar or vector type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or a vector with 2, "
- "3, 4, 8 or 16 components";
- }
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- if (result_type != x_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected type of operand X to be equal to Result Type";
- }
- const uint32_t exp_type = _.GetOperandTypeId(inst, 5);
- if (!_.IsIntScalarOrVectorType(exp_type) ||
- _.GetBitWidth(exp_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected the exponent to be a 32-bit int scalar or vector";
- }
- if (_.GetDimension(exp_type) != num_components) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected the exponent to have the same number of "
- "components as Result Type";
- }
- break;
- }
- case OpenCLLIB::Nan: {
- if (!_.IsFloatScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar or vector type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or a vector with 2, "
- "3, 4, 8 or 16 components";
- }
- const uint32_t nancode_type = _.GetOperandTypeId(inst, 4);
- if (!_.IsIntScalarOrVectorType(nancode_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Nancode to be an int scalar or vector type";
- }
- if (_.GetDimension(nancode_type) != num_components) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Nancode to have the same number of components as "
- "Result Type";
- }
- if (_.GetBitWidth(result_type) != _.GetBitWidth(nancode_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Nancode to have the same bit width as Result "
- "Type";
- }
- break;
- }
- case OpenCLLIB::SAbs:
- case OpenCLLIB::SAbs_diff:
- case OpenCLLIB::SAdd_sat:
- case OpenCLLIB::UAdd_sat:
- case OpenCLLIB::SHadd:
- case OpenCLLIB::UHadd:
- case OpenCLLIB::SRhadd:
- case OpenCLLIB::URhadd:
- case OpenCLLIB::SClamp:
- case OpenCLLIB::UClamp:
- case OpenCLLIB::Clz:
- case OpenCLLIB::Ctz:
- case OpenCLLIB::SMad_hi:
- case OpenCLLIB::UMad_sat:
- case OpenCLLIB::SMad_sat:
- case OpenCLLIB::SMax:
- case OpenCLLIB::UMax:
- case OpenCLLIB::SMin:
- case OpenCLLIB::UMin:
- case OpenCLLIB::SMul_hi:
- case OpenCLLIB::Rotate:
- case OpenCLLIB::SSub_sat:
- case OpenCLLIB::USub_sat:
- case OpenCLLIB::Popcount:
- case OpenCLLIB::UAbs:
- case OpenCLLIB::UAbs_diff:
- case OpenCLLIB::UMul_hi:
- case OpenCLLIB::UMad_hi: {
- if (!_.IsIntScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be an int scalar or vector type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or a vector with 2, "
- "3, 4, 8 or 16 components";
- }
- for (uint32_t operand_index = 4; operand_index < num_operands;
- ++operand_index) {
- const uint32_t operand_type = _.GetOperandTypeId(inst, operand_index);
- if (result_type != operand_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected types of all operands to be equal to Result "
- "Type";
- }
- }
- break;
- }
- case OpenCLLIB::U_Upsample:
- case OpenCLLIB::S_Upsample: {
- if (!_.IsIntScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be an int scalar or vector "
- "type";
- }
- const uint32_t result_num_components = _.GetDimension(result_type);
- if (result_num_components > 4 && result_num_components != 8 &&
- result_num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or a vector with 2, "
- "3, 4, 8 or 16 components";
- }
- const uint32_t result_bit_width = _.GetBitWidth(result_type);
- if (result_bit_width != 16 && result_bit_width != 32 &&
- result_bit_width != 64) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected bit width of Result Type components to be 16, 32 "
- "or 64";
- }
- const uint32_t hi_type = _.GetOperandTypeId(inst, 4);
- const uint32_t lo_type = _.GetOperandTypeId(inst, 5);
- if (hi_type != lo_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Hi and Lo operands to have the same type";
- }
- if (result_num_components != _.GetDimension(hi_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Hi and Lo operands to have the same number of "
- "components as Result Type";
- }
- if (result_bit_width != 2 * _.GetBitWidth(hi_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected bit width of components of Hi and Lo operands to "
- "be half of the bit width of components of Result Type";
- }
- break;
- }
- case OpenCLLIB::SMad24:
- case OpenCLLIB::UMad24:
- case OpenCLLIB::SMul24:
- case OpenCLLIB::UMul24: {
- if (!_.IsIntScalarOrVectorType(result_type) ||
- _.GetBitWidth(result_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a 32-bit int scalar or vector "
- "type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or a vector with 2, "
- "3, 4, 8 or 16 components";
- }
- for (uint32_t operand_index = 4; operand_index < num_operands;
- ++operand_index) {
- const uint32_t operand_type = _.GetOperandTypeId(inst, operand_index);
- if (result_type != operand_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected types of all operands to be equal to Result "
- "Type";
- }
- }
- break;
- }
- case OpenCLLIB::Cross: {
- if (!_.IsFloatVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float vector type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components != 3 && num_components != 4) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to have 3 or 4 components";
- }
- const uint32_t x_type = _.GetOperandTypeId(inst, 4);
- const uint32_t y_type = _.GetOperandTypeId(inst, 5);
- if (x_type != result_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X type to be equal to Result Type";
- }
- if (y_type != result_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Y type to be equal to Result Type";
- }
- break;
- }
- case OpenCLLIB::Distance:
- case OpenCLLIB::Fast_distance: {
- if (!_.IsFloatScalarType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar type";
- }
- const uint32_t p0_type = _.GetOperandTypeId(inst, 4);
- if (!_.IsFloatScalarOrVectorType(p0_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P0 to be of float scalar or vector type";
- }
- const uint32_t num_components = _.GetDimension(p0_type);
- if (num_components > 4) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P0 to have no more than 4 components";
- }
- if (result_type != _.GetComponentType(p0_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P0 component type to be equal to "
- << "Result Type";
- }
- const uint32_t p1_type = _.GetOperandTypeId(inst, 5);
- if (p0_type != p1_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operands P0 and P1 to be of the same type";
- }
- break;
- }
- case OpenCLLIB::Length:
- case OpenCLLIB::Fast_length: {
- if (!_.IsFloatScalarType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar type";
- }
- const uint32_t p_type = _.GetOperandTypeId(inst, 4);
- if (!_.IsFloatScalarOrVectorType(p_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P to be a float scalar or vector";
- }
- const uint32_t num_components = _.GetDimension(p_type);
- if (num_components > 4) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P to have no more than 4 components";
- }
- if (result_type != _.GetComponentType(p_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P component type to be equal to Result "
- "Type";
- }
- break;
- }
- case OpenCLLIB::Normalize:
- case OpenCLLIB::Fast_normalize: {
- if (!_.IsFloatScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar or vector type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to have no more than 4 components";
- }
- const uint32_t p_type = _.GetOperandTypeId(inst, 4);
- if (p_type != result_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P type to be equal to Result Type";
- }
- break;
- }
- case OpenCLLIB::Bitselect: {
- if (!_.IsFloatScalarOrVectorType(result_type) &&
- !_.IsIntScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be an int or float scalar or "
- "vector type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or a vector with 2, "
- "3, 4, 8 or 16 components";
- }
- for (uint32_t operand_index = 4; operand_index < num_operands;
- ++operand_index) {
- const uint32_t operand_type = _.GetOperandTypeId(inst, operand_index);
- if (result_type != operand_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected types of all operands to be equal to Result "
- "Type";
- }
- }
- break;
- }
- case OpenCLLIB::Select: {
- if (!_.IsFloatScalarOrVectorType(result_type) &&
- !_.IsIntScalarOrVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be an int or float scalar or "
- "vector type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or a vector with 2, "
- "3, 4, 8 or 16 components";
- }
- const uint32_t a_type = _.GetOperandTypeId(inst, 4);
- const uint32_t b_type = _.GetOperandTypeId(inst, 5);
- const uint32_t c_type = _.GetOperandTypeId(inst, 6);
- if (result_type != a_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand A type to be equal to Result Type";
- }
- if (result_type != b_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand B type to be equal to Result Type";
- }
- if (!_.IsIntScalarOrVectorType(c_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand C to be an int scalar or vector";
- }
- if (num_components != _.GetDimension(c_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand C to have the same number of components "
- "as Result Type";
- }
- if (_.GetBitWidth(result_type) != _.GetBitWidth(c_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand C to have the same bit width as Result "
- "Type";
- }
- break;
- }
- case OpenCLLIB::Vloadn: {
- if (!_.IsFloatVectorType(result_type) &&
- !_.IsIntVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be an int or float vector type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to have 2, 3, 4, 8 or 16 components";
- }
- const uint32_t offset_type = _.GetOperandTypeId(inst, 4);
- const uint32_t p_type = _.GetOperandTypeId(inst, 5);
- const uint32_t size_t_bit_width = GetSizeTBitWidth(_);
- if (!size_t_bit_width) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name()
- << " can only be used with physical addressing models";
- }
- if (!_.IsIntScalarType(offset_type) ||
- _.GetBitWidth(offset_type) != size_t_bit_width) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Offset to be of type size_t ("
- << size_t_bit_width
- << "-bit integer for the addressing model used in the module)";
- }
- uint32_t p_storage_class = 0;
- uint32_t p_data_type = 0;
- if (!_.GetPointerTypeInfo(p_type, &p_data_type, &p_storage_class)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P to be a pointer";
- }
- if (p_storage_class != SpvStorageClassUniformConstant &&
- p_storage_class != SpvStorageClassGeneric &&
- p_storage_class != SpvStorageClassCrossWorkgroup &&
- p_storage_class != SpvStorageClassWorkgroup &&
- p_storage_class != SpvStorageClassFunction) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P storage class to be UniformConstant, "
- "Generic, CrossWorkgroup, Workgroup or Function";
- }
- if (_.GetComponentType(result_type) != p_data_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P data type to be equal to component "
- "type of Result Type";
- }
- const uint32_t n_value = inst->word(7);
- if (num_components != n_value) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected literal N to be equal to the number of "
- "components of Result Type";
- }
- break;
- }
- case OpenCLLIB::Vstoren: {
- if (_.GetIdOpcode(result_type) != SpvOpTypeVoid) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": expected Result Type to be void";
- }
- const uint32_t data_type = _.GetOperandTypeId(inst, 4);
- const uint32_t offset_type = _.GetOperandTypeId(inst, 5);
- const uint32_t p_type = _.GetOperandTypeId(inst, 6);
- if (!_.IsFloatVectorType(data_type) && !_.IsIntVectorType(data_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Data to be an int or float vector";
- }
- const uint32_t num_components = _.GetDimension(data_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Data to have 2, 3, 4, 8 or 16 components";
- }
- const uint32_t size_t_bit_width = GetSizeTBitWidth(_);
- if (!size_t_bit_width) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name()
- << " can only be used with physical addressing models";
- }
- if (!_.IsIntScalarType(offset_type) ||
- _.GetBitWidth(offset_type) != size_t_bit_width) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Offset to be of type size_t ("
- << size_t_bit_width
- << "-bit integer for the addressing model used in the module)";
- }
- uint32_t p_storage_class = 0;
- uint32_t p_data_type = 0;
- if (!_.GetPointerTypeInfo(p_type, &p_data_type, &p_storage_class)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P to be a pointer";
- }
- if (p_storage_class != SpvStorageClassGeneric &&
- p_storage_class != SpvStorageClassCrossWorkgroup &&
- p_storage_class != SpvStorageClassWorkgroup &&
- p_storage_class != SpvStorageClassFunction) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P storage class to be Generic, "
- "CrossWorkgroup, Workgroup or Function";
- }
- if (_.GetComponentType(data_type) != p_data_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P data type to be equal to the type of "
- "operand Data components";
- }
- break;
- }
- case OpenCLLIB::Vload_half: {
- if (!_.IsFloatScalarType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float scalar type";
- }
- const uint32_t offset_type = _.GetOperandTypeId(inst, 4);
- const uint32_t p_type = _.GetOperandTypeId(inst, 5);
- const uint32_t size_t_bit_width = GetSizeTBitWidth(_);
- if (!size_t_bit_width) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name()
- << " can only be used with physical addressing models";
- }
- if (!_.IsIntScalarType(offset_type) ||
- _.GetBitWidth(offset_type) != size_t_bit_width) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Offset to be of type size_t ("
- << size_t_bit_width
- << "-bit integer for the addressing model used in the module)";
- }
- uint32_t p_storage_class = 0;
- uint32_t p_data_type = 0;
- if (!_.GetPointerTypeInfo(p_type, &p_data_type, &p_storage_class)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P to be a pointer";
- }
- if (p_storage_class != SpvStorageClassUniformConstant &&
- p_storage_class != SpvStorageClassGeneric &&
- p_storage_class != SpvStorageClassCrossWorkgroup &&
- p_storage_class != SpvStorageClassWorkgroup &&
- p_storage_class != SpvStorageClassFunction) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P storage class to be UniformConstant, "
- "Generic, CrossWorkgroup, Workgroup or Function";
- }
- if (!_.IsFloatScalarType(p_data_type) ||
- _.GetBitWidth(p_data_type) != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P data type to be 16-bit float scalar";
- }
- break;
- }
- case OpenCLLIB::Vload_halfn:
- case OpenCLLIB::Vloada_halfn: {
- if (!_.IsFloatVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a float vector type";
- }
- const uint32_t num_components = _.GetDimension(result_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to have 2, 3, 4, 8 or 16 components";
- }
- const uint32_t offset_type = _.GetOperandTypeId(inst, 4);
- const uint32_t p_type = _.GetOperandTypeId(inst, 5);
- const uint32_t size_t_bit_width = GetSizeTBitWidth(_);
- if (!size_t_bit_width) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name()
- << " can only be used with physical addressing models";
- }
- if (!_.IsIntScalarType(offset_type) ||
- _.GetBitWidth(offset_type) != size_t_bit_width) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Offset to be of type size_t ("
- << size_t_bit_width
- << "-bit integer for the addressing model used in the module)";
- }
- uint32_t p_storage_class = 0;
- uint32_t p_data_type = 0;
- if (!_.GetPointerTypeInfo(p_type, &p_data_type, &p_storage_class)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P to be a pointer";
- }
- if (p_storage_class != SpvStorageClassUniformConstant &&
- p_storage_class != SpvStorageClassGeneric &&
- p_storage_class != SpvStorageClassCrossWorkgroup &&
- p_storage_class != SpvStorageClassWorkgroup &&
- p_storage_class != SpvStorageClassFunction) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P storage class to be UniformConstant, "
- "Generic, CrossWorkgroup, Workgroup or Function";
- }
- if (!_.IsFloatScalarType(p_data_type) ||
- _.GetBitWidth(p_data_type) != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P data type to be 16-bit float scalar";
- }
- const uint32_t n_value = inst->word(7);
- if (num_components != n_value) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected literal N to be equal to the number of "
- "components of Result Type";
- }
- break;
- }
- case OpenCLLIB::Vstore_half:
- case OpenCLLIB::Vstore_half_r:
- case OpenCLLIB::Vstore_halfn:
- case OpenCLLIB::Vstore_halfn_r:
- case OpenCLLIB::Vstorea_halfn:
- case OpenCLLIB::Vstorea_halfn_r: {
- if (_.GetIdOpcode(result_type) != SpvOpTypeVoid) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": expected Result Type to be void";
- }
- const uint32_t data_type = _.GetOperandTypeId(inst, 4);
- const uint32_t offset_type = _.GetOperandTypeId(inst, 5);
- const uint32_t p_type = _.GetOperandTypeId(inst, 6);
- const uint32_t data_type_bit_width = _.GetBitWidth(data_type);
- if (ext_inst_key == OpenCLLIB::Vstore_half ||
- ext_inst_key == OpenCLLIB::Vstore_half_r) {
- if (!_.IsFloatScalarType(data_type) ||
- (data_type_bit_width != 32 && data_type_bit_width != 64)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Data to be a 32 or 64-bit float scalar";
- }
- } else {
- if (!_.IsFloatVectorType(data_type) ||
- (data_type_bit_width != 32 && data_type_bit_width != 64)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Data to be a 32 or 64-bit float vector";
- }
- const uint32_t num_components = _.GetDimension(data_type);
- if (num_components > 4 && num_components != 8 &&
- num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Data to have 2, 3, 4, 8 or 16 components";
- }
- }
- const uint32_t size_t_bit_width = GetSizeTBitWidth(_);
- if (!size_t_bit_width) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name()
- << " can only be used with physical addressing models";
- }
- if (!_.IsIntScalarType(offset_type) ||
- _.GetBitWidth(offset_type) != size_t_bit_width) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Offset to be of type size_t ("
- << size_t_bit_width
- << "-bit integer for the addressing model used in the module)";
- }
- uint32_t p_storage_class = 0;
- uint32_t p_data_type = 0;
- if (!_.GetPointerTypeInfo(p_type, &p_data_type, &p_storage_class)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P to be a pointer";
- }
- if (p_storage_class != SpvStorageClassGeneric &&
- p_storage_class != SpvStorageClassCrossWorkgroup &&
- p_storage_class != SpvStorageClassWorkgroup &&
- p_storage_class != SpvStorageClassFunction) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P storage class to be Generic, "
- "CrossWorkgroup, Workgroup or Function";
- }
- if (!_.IsFloatScalarType(p_data_type) ||
- _.GetBitWidth(p_data_type) != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand P data type to be 16-bit float scalar";
- }
- // Rounding mode enum is checked by assembler.
- break;
- }
- case OpenCLLIB::Shuffle:
- case OpenCLLIB::Shuffle2: {
- if (!_.IsFloatVectorType(result_type) &&
- !_.IsIntVectorType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be an int or float vector type";
- }
- const uint32_t result_num_components = _.GetDimension(result_type);
- if (result_num_components != 2 && result_num_components != 4 &&
- result_num_components != 8 && result_num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to have 2, 4, 8 or 16 components";
- }
- uint32_t operand_index = 4;
- const uint32_t x_type = _.GetOperandTypeId(inst, operand_index++);
- if (ext_inst_key == OpenCLLIB::Shuffle2) {
- const uint32_t y_type = _.GetOperandTypeId(inst, operand_index++);
- if (x_type != y_type) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operands X and Y to be of the same type";
- }
- }
- const uint32_t shuffle_mask_type =
- _.GetOperandTypeId(inst, operand_index++);
- if (!_.IsFloatVectorType(x_type) && !_.IsIntVectorType(x_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X to be an int or float vector";
- }
- const uint32_t x_num_components = _.GetDimension(x_type);
- if (x_num_components != 2 && x_num_components != 4 &&
- x_num_components != 8 && x_num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X to have 2, 4, 8 or 16 components";
- }
- const uint32_t result_component_type = _.GetComponentType(result_type);
- if (result_component_type != _.GetComponentType(x_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand X and Result Type to have equal "
- "component types";
- }
- if (!_.IsIntVectorType(shuffle_mask_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Shuffle Mask to be an int vector";
- }
- if (result_num_components != _.GetDimension(shuffle_mask_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Shuffle Mask to have the same number of "
- "components as Result Type";
- }
- if (_.GetBitWidth(result_component_type) !=
- _.GetBitWidth(shuffle_mask_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Shuffle Mask components to have the same "
- "bit width as Result Type components";
- }
- break;
- }
- case OpenCLLIB::Printf: {
- if (!_.IsIntScalarType(result_type) ||
- _.GetBitWidth(result_type) != 32) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a 32-bit int type";
- }
- const uint32_t format_type = _.GetOperandTypeId(inst, 4);
- uint32_t format_storage_class = 0;
- uint32_t format_data_type = 0;
- if (!_.GetPointerTypeInfo(format_type, &format_data_type,
- &format_storage_class)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Format to be a pointer";
- }
- if (format_storage_class != SpvStorageClassUniformConstant) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Format storage class to be UniformConstant";
- }
- if (!_.IsIntScalarType(format_data_type) ||
- _.GetBitWidth(format_data_type) != 8) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Format data type to be 8-bit int";
- }
- break;
- }
- case OpenCLLIB::Prefetch: {
- if (_.GetIdOpcode(result_type) != SpvOpTypeVoid) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": expected Result Type to be void";
- }
- const uint32_t p_type = _.GetOperandTypeId(inst, 4);
- const uint32_t num_elements_type = _.GetOperandTypeId(inst, 5);
- uint32_t p_storage_class = 0;
- uint32_t p_data_type = 0;
- if (!_.GetPointerTypeInfo(p_type, &p_data_type, &p_storage_class)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Ptr to be a pointer";
- }
- if (p_storage_class != SpvStorageClassCrossWorkgroup) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Ptr storage class to be CrossWorkgroup";
- }
- if (!_.IsFloatScalarOrVectorType(p_data_type) &&
- !_.IsIntScalarOrVectorType(p_data_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Ptr data type to be int or float scalar or "
- "vector";
- }
- const uint32_t num_components = _.GetDimension(p_data_type);
- if (num_components > 4 && num_components != 8 && num_components != 16) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected Result Type to be a scalar or a vector with 2, "
- "3, 4, 8 or 16 components";
- }
- const uint32_t size_t_bit_width = GetSizeTBitWidth(_);
- if (!size_t_bit_width) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name()
- << " can only be used with physical addressing models";
- }
- if (!_.IsIntScalarType(num_elements_type) ||
- _.GetBitWidth(num_elements_type) != size_t_bit_width) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Num Elements to be of type size_t ("
- << size_t_bit_width
- << "-bit integer for the addressing model used in the module)";
- }
- break;
- }
- }
- } else if (ext_inst_type == SPV_EXT_INST_TYPE_OPENCL_DEBUGINFO_100) {
- if (!_.IsVoidType(result_type)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected result type must be a result id of "
- << "OpTypeVoid";
- }
- auto num_words = inst->words().size();
- const OpenCLDebugInfo100Instructions ext_inst_key =
- OpenCLDebugInfo100Instructions(ext_inst_index);
- switch (ext_inst_key) {
- case OpenCLDebugInfo100DebugInfoNone:
- case OpenCLDebugInfo100DebugNoScope:
- case OpenCLDebugInfo100DebugOperation:
- // The binary parser validates the opcode for DebugInfoNone,
- // DebugNoScope, DebugOperation, and the literal values don't need
- // further checks.
- break;
- case OpenCLDebugInfo100DebugCompilationUnit: {
- CHECK_DEBUG_OPERAND("Source", OpenCLDebugInfo100DebugSource, 7);
- break;
- }
- case OpenCLDebugInfo100DebugSource: {
- CHECK_OPERAND("File", SpvOpString, 5);
- if (num_words == 7) CHECK_OPERAND("Text", SpvOpString, 6);
- break;
- }
- case OpenCLDebugInfo100DebugTypeBasic: {
- CHECK_OPERAND("Name", SpvOpString, 5);
- CHECK_OPERAND("Size", SpvOpConstant, 6);
- // "Encoding" param is already validated by the binary parsing stage.
- break;
- }
- case OpenCLDebugInfo100DebugTypePointer:
- case OpenCLDebugInfo100DebugTypeQualifier: {
- auto validate_base_type =
- ValidateOperandBaseType(_, inst, 5, ext_inst_name);
- if (validate_base_type != SPV_SUCCESS) return validate_base_type;
- break;
- }
- case OpenCLDebugInfo100DebugTypeVector: {
- auto validate_base_type =
- ValidateOperandBaseType(_, inst, 5, ext_inst_name);
- if (validate_base_type != SPV_SUCCESS) return validate_base_type;
- uint32_t component_count = inst->word(6);
- if (!component_count || component_count > 4) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": Component Count must be positive "
- << "integer less than or equal to 4";
- }
- break;
- }
- case OpenCLDebugInfo100DebugTypeArray: {
- auto validate_base_type = ValidateOperandDebugType(
- _, "Base Type", inst, 5, ext_inst_name, false);
- if (validate_base_type != SPV_SUCCESS) return validate_base_type;
- for (uint32_t i = 6; i < num_words; ++i) {
- bool invalid = false;
- auto* component_count = _.FindDef(inst->word(i));
- if (IsConstIntScalarTypeWith32Or64Bits(_, component_count)) {
- // TODO: We need a spec discussion for the bindless array.
- if (!component_count->word(3)) {
- invalid = true;
- }
- } else if (component_count->words().size() > 6 &&
- (OpenCLDebugInfo100Instructions(component_count->word(
- 4)) == OpenCLDebugInfo100DebugLocalVariable ||
- OpenCLDebugInfo100Instructions(component_count->word(
- 4)) == OpenCLDebugInfo100DebugGlobalVariable)) {
- auto* component_count_type = _.FindDef(component_count->word(6));
- if (component_count_type->words().size() > 7) {
- if (OpenCLDebugInfo100Instructions(component_count_type->word(
- 4)) != OpenCLDebugInfo100DebugTypeBasic ||
- OpenCLDebugInfo100DebugBaseTypeAttributeEncoding(
- component_count_type->word(7)) !=
- OpenCLDebugInfo100Unsigned) {
- invalid = true;
- } else {
- // DebugTypeBasic for DebugLocalVariable/DebugGlobalVariable
- // must have Unsigned encoding and 32 or 64 as its size in bits.
- Instruction* size_in_bits =
- _.FindDef(component_count_type->word(6));
- if (!_.IsIntScalarType(size_in_bits->type_id()) ||
- (size_in_bits->word(3) != 32 &&
- size_in_bits->word(3) != 64)) {
- invalid = true;
- }
- }
- } else {
- invalid = true;
- }
- } else {
- invalid = true;
- }
- if (invalid) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": Component Count must be "
- << "OpConstant with a 32- or 64-bits integer scalar type or "
- << "DebugGlobalVariable or DebugLocalVariable with a 32- or "
- << "64-bits unsigned integer scalar type";
- }
- }
- break;
- }
- case OpenCLDebugInfo100DebugTypedef: {
- CHECK_OPERAND("Name", SpvOpString, 5);
- auto validate_base_type =
- ValidateOperandBaseType(_, inst, 6, ext_inst_name);
- if (validate_base_type != SPV_SUCCESS) return validate_base_type;
- CHECK_DEBUG_OPERAND("Source", OpenCLDebugInfo100DebugSource, 7);
- auto validate_parent =
- ValidateOperandLexicalScope(_, "Parent", inst, 10, ext_inst_name);
- if (validate_parent != SPV_SUCCESS) return validate_parent;
- break;
- }
- case OpenCLDebugInfo100DebugTypeFunction: {
- auto* return_type = _.FindDef(inst->word(6));
- // TODO: We need a spec discussion that we have to allow return and
- // parameter types of a DebugTypeFunction to have template parameter.
- if (return_type->opcode() != SpvOpTypeVoid) {
- auto validate_return = ValidateOperandDebugType(
- _, "Return Type", inst, 6, ext_inst_name, true);
- if (validate_return != SPV_SUCCESS) return validate_return;
- }
- for (uint32_t word_index = 7; word_index < num_words; ++word_index) {
- auto validate_param = ValidateOperandDebugType(
- _, "Parameter Types", inst, word_index, ext_inst_name, true);
- if (validate_param != SPV_SUCCESS) return validate_param;
- }
- break;
- }
- case OpenCLDebugInfo100DebugTypeEnum: {
- CHECK_OPERAND("Name", SpvOpString, 5);
- if (!DoesDebugInfoOperandMatchExpectation(
- _,
- [](OpenCLDebugInfo100Instructions dbg_inst) {
- return dbg_inst == OpenCLDebugInfo100DebugInfoNone;
- },
- inst, 6)) {
- auto validate_underlying_type = ValidateOperandDebugType(
- _, "Underlying Types", inst, 6, ext_inst_name, false);
- if (validate_underlying_type != SPV_SUCCESS)
- return validate_underlying_type;
- }
- CHECK_DEBUG_OPERAND("Source", OpenCLDebugInfo100DebugSource, 7);
- auto validate_parent =
- ValidateOperandLexicalScope(_, "Parent", inst, 10, ext_inst_name);
- if (validate_parent != SPV_SUCCESS) return validate_parent;
- CHECK_OPERAND("Size", SpvOpConstant, 11);
- auto* size = _.FindDef(inst->word(11));
- if (!_.IsIntScalarType(size->type_id()) || !size->word(3)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": expected operand Size is a "
- << "positive integer";
- }
- for (uint32_t word_index = 13; word_index + 1 < num_words;
- word_index += 2) {
- CHECK_OPERAND("Value", SpvOpConstant, word_index);
- CHECK_OPERAND("Name", SpvOpString, word_index + 1);
- }
- break;
- }
- case OpenCLDebugInfo100DebugTypeComposite: {
- CHECK_OPERAND("Name", SpvOpString, 5);
- CHECK_DEBUG_OPERAND("Source", OpenCLDebugInfo100DebugSource, 7);
- auto validate_parent =
- ValidateOperandLexicalScope(_, "Parent", inst, 10, ext_inst_name);
- if (validate_parent != SPV_SUCCESS) return validate_parent;
- CHECK_OPERAND("Linkage Name", SpvOpString, 11);
- if (!DoesDebugInfoOperandMatchExpectation(
- _,
- [](OpenCLDebugInfo100Instructions dbg_inst) {
- return dbg_inst == OpenCLDebugInfo100DebugInfoNone;
- },
- inst, 12)) {
- CHECK_OPERAND("Size", SpvOpConstant, 12);
- }
- for (uint32_t word_index = 14; word_index < num_words; ++word_index) {
- if (!DoesDebugInfoOperandMatchExpectation(
- _,
- [](OpenCLDebugInfo100Instructions dbg_inst) {
- return dbg_inst == OpenCLDebugInfo100DebugTypeMember ||
- dbg_inst == OpenCLDebugInfo100DebugFunction ||
- dbg_inst == OpenCLDebugInfo100DebugTypeInheritance;
- },
- inst, word_index)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Members "
- << "must be DebugTypeMember, DebugFunction, or "
- "DebugTypeInheritance";
- }
- }
- break;
- }
- case OpenCLDebugInfo100DebugTypeMember: {
- CHECK_OPERAND("Name", SpvOpString, 5);
- // TODO: We need a spec discussion that we have to allow member types
- // to have template parameter.
- auto validate_type =
- ValidateOperandDebugType(_, "Type", inst, 6, ext_inst_name, true);
- if (validate_type != SPV_SUCCESS) return validate_type;
- CHECK_DEBUG_OPERAND("Source", OpenCLDebugInfo100DebugSource, 7);
- CHECK_DEBUG_OPERAND("Parent", OpenCLDebugInfo100DebugTypeComposite, 10);
- CHECK_OPERAND("Offset", SpvOpConstant, 11);
- CHECK_OPERAND("Size", SpvOpConstant, 12);
- if (num_words == 15) CHECK_OPERAND("Value", SpvOpConstant, 14);
- break;
- }
- case OpenCLDebugInfo100DebugTypeInheritance: {
- CHECK_DEBUG_OPERAND("Child", OpenCLDebugInfo100DebugTypeComposite, 5);
- auto* debug_inst = _.FindDef(inst->word(5));
- auto composite_type =
- OpenCLDebugInfo100DebugCompositeType(debug_inst->word(6));
- if (composite_type != OpenCLDebugInfo100Class &&
- composite_type != OpenCLDebugInfo100Structure) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Child must be class or struct debug type";
- }
- CHECK_DEBUG_OPERAND("Parent", OpenCLDebugInfo100DebugTypeComposite, 6);
- debug_inst = _.FindDef(inst->word(6));
- composite_type =
- OpenCLDebugInfo100DebugCompositeType(debug_inst->word(6));
- if (composite_type != OpenCLDebugInfo100Class &&
- composite_type != OpenCLDebugInfo100Structure) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Parent must be class or struct debug "
- "type";
- }
- CHECK_OPERAND("Offset", SpvOpConstant, 7);
- CHECK_OPERAND("Size", SpvOpConstant, 8);
- break;
- }
- case OpenCLDebugInfo100DebugFunction: {
- CHECK_OPERAND("Name", SpvOpString, 5);
- auto validate_type =
- ValidateOperandDebugType(_, "Type", inst, 6, ext_inst_name, false);
- if (validate_type != SPV_SUCCESS) return validate_type;
- CHECK_DEBUG_OPERAND("Source", OpenCLDebugInfo100DebugSource, 7);
- auto validate_parent =
- ValidateOperandLexicalScope(_, "Parent", inst, 10, ext_inst_name);
- if (validate_parent != SPV_SUCCESS) return validate_parent;
- CHECK_OPERAND("Linkage Name", SpvOpString, 11);
- if (!DoesDebugInfoOperandMatchExpectation(
- _,
- [](OpenCLDebugInfo100Instructions dbg_inst) {
- return dbg_inst == OpenCLDebugInfo100DebugInfoNone;
- },
- inst, 14)) {
- CHECK_OPERAND("Function", SpvOpFunction, 14);
- }
- if (num_words == 16) {
- CHECK_DEBUG_OPERAND("Declaration",
- OpenCLDebugInfo100DebugFunctionDeclaration, 15);
- }
- break;
- }
- case OpenCLDebugInfo100DebugFunctionDeclaration: {
- CHECK_OPERAND("Name", SpvOpString, 5);
- auto validate_type =
- ValidateOperandDebugType(_, "Type", inst, 6, ext_inst_name, false);
- if (validate_type != SPV_SUCCESS) return validate_type;
- CHECK_DEBUG_OPERAND("Source", OpenCLDebugInfo100DebugSource, 7);
- auto validate_parent =
- ValidateOperandLexicalScope(_, "Parent", inst, 10, ext_inst_name);
- if (validate_parent != SPV_SUCCESS) return validate_parent;
- CHECK_OPERAND("Linkage Name", SpvOpString, 11);
- break;
- }
- case OpenCLDebugInfo100DebugLexicalBlock: {
- CHECK_DEBUG_OPERAND("Source", OpenCLDebugInfo100DebugSource, 5);
- auto validate_parent =
- ValidateOperandLexicalScope(_, "Parent", inst, 8, ext_inst_name);
- if (validate_parent != SPV_SUCCESS) return validate_parent;
- if (num_words == 10) CHECK_OPERAND("Name", SpvOpString, 9);
- break;
- }
- case OpenCLDebugInfo100DebugScope: {
- auto validate_scope =
- ValidateOperandLexicalScope(_, "Scope", inst, 5, ext_inst_name);
- if (validate_scope != SPV_SUCCESS) return validate_scope;
- if (num_words == 7) {
- CHECK_DEBUG_OPERAND("Inlined At", OpenCLDebugInfo100DebugInlinedAt,
- 6);
- }
- break;
- }
- case OpenCLDebugInfo100DebugLocalVariable: {
- CHECK_OPERAND("Name", SpvOpString, 5);
- // TODO: We need a spec discussion that we have to allow local variable
- // types to have template parameter.
- auto validate_type =
- ValidateOperandDebugType(_, "Type", inst, 6, ext_inst_name, true);
- if (validate_type != SPV_SUCCESS) return validate_type;
- CHECK_DEBUG_OPERAND("Source", OpenCLDebugInfo100DebugSource, 7);
- auto validate_parent =
- ValidateOperandLexicalScope(_, "Parent", inst, 10, ext_inst_name);
- if (validate_parent != SPV_SUCCESS) return validate_parent;
- break;
- }
- case OpenCLDebugInfo100DebugDeclare: {
- CHECK_DEBUG_OPERAND("Local Variable",
- OpenCLDebugInfo100DebugLocalVariable, 5);
- auto* operand = _.FindDef(inst->word(6));
- if (operand->opcode() != SpvOpVariable &&
- operand->opcode() != SpvOpFunctionParameter) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Variable must be a result id of "
- "OpVariable or OpFunctionParameter";
- }
- CHECK_DEBUG_OPERAND("Expression", OpenCLDebugInfo100DebugExpression, 7);
- break;
- }
- case OpenCLDebugInfo100DebugExpression: {
- for (uint32_t word_index = 5; word_index < num_words; ++word_index) {
- CHECK_DEBUG_OPERAND("Operation", OpenCLDebugInfo100DebugOperation,
- word_index);
- }
- break;
- }
- case OpenCLDebugInfo100DebugTypeTemplate: {
- if (!DoesDebugInfoOperandMatchExpectation(
- _,
- [](OpenCLDebugInfo100Instructions dbg_inst) {
- return dbg_inst == OpenCLDebugInfo100DebugTypeComposite ||
- dbg_inst == OpenCLDebugInfo100DebugFunction;
- },
- inst, 5)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Target must be DebugTypeComposite "
- << "or DebugFunction";
- }
- for (uint32_t word_index = 6; word_index < num_words; ++word_index) {
- if (!DoesDebugInfoOperandMatchExpectation(
- _,
- [](OpenCLDebugInfo100Instructions dbg_inst) {
- return dbg_inst ==
- OpenCLDebugInfo100DebugTypeTemplateParameter ||
- dbg_inst ==
- OpenCLDebugInfo100DebugTypeTemplateTemplateParameter;
- },
- inst, word_index)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Parameters must be "
- << "DebugTypeTemplateParameter or "
- << "DebugTypeTemplateTemplateParameter";
- }
- }
- break;
- }
- case OpenCLDebugInfo100DebugTypeTemplateParameter: {
- CHECK_OPERAND("Name", SpvOpString, 5);
- auto validate_actual_type = ValidateOperandDebugType(
- _, "Actual Type", inst, 6, ext_inst_name, false);
- if (validate_actual_type != SPV_SUCCESS) return validate_actual_type;
- if (!DoesDebugInfoOperandMatchExpectation(
- _,
- [](OpenCLDebugInfo100Instructions dbg_inst) {
- return dbg_inst == OpenCLDebugInfo100DebugInfoNone;
- },
- inst, 7)) {
- CHECK_OPERAND("Value", SpvOpConstant, 7);
- }
- CHECK_DEBUG_OPERAND("Source", OpenCLDebugInfo100DebugSource, 8);
- break;
- }
- case OpenCLDebugInfo100DebugGlobalVariable: {
- CHECK_OPERAND("Name", SpvOpString, 5);
- auto validate_type =
- ValidateOperandDebugType(_, "Type", inst, 6, ext_inst_name, false);
- if (validate_type != SPV_SUCCESS) return validate_type;
- CHECK_DEBUG_OPERAND("Source", OpenCLDebugInfo100DebugSource, 7);
- auto validate_scope =
- ValidateOperandLexicalScope(_, "Scope", inst, 10, ext_inst_name);
- if (validate_scope != SPV_SUCCESS) return validate_scope;
- CHECK_OPERAND("Linkage Name", SpvOpString, 11);
- if (!DoesDebugInfoOperandMatchExpectation(
- _,
- [](OpenCLDebugInfo100Instructions dbg_inst) {
- return dbg_inst == OpenCLDebugInfo100DebugInfoNone;
- },
- inst, 12)) {
- auto* operand = _.FindDef(inst->word(12));
- if (operand->opcode() != SpvOpVariable &&
- operand->opcode() != SpvOpConstant) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": "
- << "expected operand Variable must be a result id of "
- "OpVariable or OpConstant or DebugInfoNone";
- }
- }
- if (num_words == 15) {
- CHECK_DEBUG_OPERAND("Static Member Declaration",
- OpenCLDebugInfo100DebugTypeMember, 14);
- }
- break;
- }
- case OpenCLDebugInfo100DebugInlinedAt: {
- auto validate_scope =
- ValidateOperandLexicalScope(_, "Scope", inst, 6, ext_inst_name);
- if (validate_scope != SPV_SUCCESS) return validate_scope;
- if (num_words == 8) {
- CHECK_DEBUG_OPERAND("Inlined", OpenCLDebugInfo100DebugInlinedAt, 7);
- }
- break;
- }
- case OpenCLDebugInfo100DebugValue: {
- CHECK_DEBUG_OPERAND("Local Variable",
- OpenCLDebugInfo100DebugLocalVariable, 5);
- CHECK_DEBUG_OPERAND("Expression", OpenCLDebugInfo100DebugExpression, 7);
- for (uint32_t word_index = 8; word_index < num_words; ++word_index) {
- // TODO: The following code simply checks if it is a const int scalar
- // or a DebugLocalVariable or DebugGlobalVariable, but we have to
- // check it using the same validation for Indexes of OpAccessChain.
- if (!IsConstWithIntScalarType(_, inst, word_index) &&
- !IsDebugVariableWithIntScalarType(_, inst, word_index)) {
- return _.diag(SPV_ERROR_INVALID_DATA, inst)
- << ext_inst_name() << ": expected operand Indexes is "
- << "OpConstant, DebugGlobalVariable, or "
- << "type is OpConstant with an integer scalar type";
- }
- }
- break;
- }
- // TODO: Add validation rules for remaining cases as well.
- case OpenCLDebugInfo100DebugTypePtrToMember:
- case OpenCLDebugInfo100DebugTypeTemplateTemplateParameter:
- case OpenCLDebugInfo100DebugTypeTemplateParameterPack:
- case OpenCLDebugInfo100DebugLexicalBlockDiscriminator:
- case OpenCLDebugInfo100DebugInlinedVariable:
- case OpenCLDebugInfo100DebugMacroDef:
- case OpenCLDebugInfo100DebugMacroUndef:
- case OpenCLDebugInfo100DebugImportedEntity:
- break;
- case OpenCLDebugInfo100InstructionsMax:
- assert(0);
- break;
- }
- } else if (ext_inst_type == SPV_EXT_INST_TYPE_NONSEMANTIC_CLSPVREFLECTION) {
- auto import_inst = _.FindDef(inst->GetOperandAs<uint32_t>(2));
- const std::string name(reinterpret_cast<const char*>(
- import_inst->words().data() + import_inst->operands()[1].offset));
- const std::string reflection = "NonSemantic.ClspvReflection.";
- char* end_ptr;
- auto version_string = name.substr(reflection.size());
- if (version_string.empty()) {
- return _.diag(SPV_ERROR_INVALID_DATA, import_inst)
- << "Missing NonSemantic.ClspvReflection import version";
- }
- uint32_t version = static_cast<uint32_t>(
- std::strtoul(version_string.c_str(), &end_ptr, 10));
- if (end_ptr && *end_ptr != '\0') {
- return _.diag(SPV_ERROR_INVALID_DATA, import_inst)
- << "NonSemantic.ClspvReflection import does not encode the "
- "version correctly";
- }
- if (version == 0 || version > NonSemanticClspvReflectionRevision) {
- return _.diag(SPV_ERROR_INVALID_DATA, import_inst)
- << "Unknown NonSemantic.ClspvReflection import version";
- }
- return ValidateClspvReflectionInstruction(_, inst, version);
- }
- return SPV_SUCCESS;
- }
- spv_result_t ExtensionPass(ValidationState_t& _, const Instruction* inst) {
- const SpvOp opcode = inst->opcode();
- if (opcode == SpvOpExtension) return ValidateExtension(_, inst);
- if (opcode == SpvOpExtInstImport) return ValidateExtInstImport(_, inst);
- if (opcode == SpvOpExtInst) return ValidateExtInst(_, inst);
- return SPV_SUCCESS;
- }
- } // namespace val
- } // namespace spvtools
|