| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841 |
- // AUTOGENERATED: DO NOT EDIT
- // Last update date: 2021-01-06 23:02:27.020534
- #region Grammar License
- // Copyright (c) 2014-2016 The Khronos Group Inc.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and/or associated documentation files (the "Materials"),
- // to deal in the Materials without restriction, including without limitation
- // the rights to use, copy, modify, merge, publish, distribute, sublicense,
- // and/or sell copies of the Materials, and to permit persons to whom the
- // Materials are furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Materials.
- //
- // MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS
- // STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND
- // HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/
- //
- // THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- // FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS
- // IN THE MATERIALS.
- #endregion
- using static Spv.Specification;
- namespace Spv.Generator
- {
- public partial class Module
- {
- public Instruction OpenClAcos(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 0, x);
- }
-
- public Instruction OpenClAcosh(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 1, x);
- }
-
- public Instruction OpenClAcospi(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 2, x);
- }
-
- public Instruction OpenClAsin(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 3, x);
- }
-
- public Instruction OpenClAsinh(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 4, x);
- }
-
- public Instruction OpenClAsinpi(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 5, x);
- }
-
- public Instruction OpenClAtan(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 6, x);
- }
-
- public Instruction OpenClAtan2(Instruction resultType, Instruction y, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 7, y, x);
- }
-
- public Instruction OpenClAtanh(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 8, x);
- }
-
- public Instruction OpenClAtanpi(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 9, x);
- }
-
- public Instruction OpenClAtan2pi(Instruction resultType, Instruction y, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 10, y, x);
- }
-
- public Instruction OpenClCbrt(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 11, x);
- }
-
- public Instruction OpenClCeil(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 12, x);
- }
-
- public Instruction OpenClCopysign(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 13, x, y);
- }
-
- public Instruction OpenClCos(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 14, x);
- }
-
- public Instruction OpenClCosh(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 15, x);
- }
-
- public Instruction OpenClCospi(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 16, x);
- }
-
- public Instruction OpenClErfc(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 17, x);
- }
-
- public Instruction OpenClErf(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 18, x);
- }
-
- public Instruction OpenClExp(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 19, x);
- }
-
- public Instruction OpenClExp2(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 20, x);
- }
-
- public Instruction OpenClExp10(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 21, x);
- }
-
- public Instruction OpenClExpm1(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 22, x);
- }
-
- public Instruction OpenClFabs(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 23, x);
- }
-
- public Instruction OpenClFdim(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 24, x, y);
- }
-
- public Instruction OpenClFloor(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 25, x);
- }
-
- public Instruction OpenClFma(Instruction resultType, Instruction a, Instruction b, Instruction c)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 26, a, b, c);
- }
-
- public Instruction OpenClFmax(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 27, x, y);
- }
-
- public Instruction OpenClFmin(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 28, x, y);
- }
-
- public Instruction OpenClFmod(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 29, x, y);
- }
-
- public Instruction OpenClFract(Instruction resultType, Instruction x, Instruction ptr)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 30, x, ptr);
- }
-
- public Instruction OpenClFrexp(Instruction resultType, Instruction x, Instruction exp)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 31, x, exp);
- }
-
- public Instruction OpenClHypot(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 32, x, y);
- }
-
- public Instruction OpenClIlogb(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 33, x);
- }
-
- public Instruction OpenClLdexp(Instruction resultType, Instruction x, Instruction k)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 34, x, k);
- }
-
- public Instruction OpenClLgamma(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 35, x);
- }
-
- public Instruction OpenClLgamma_r(Instruction resultType, Instruction x, Instruction signp)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 36, x, signp);
- }
-
- public Instruction OpenClLog(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 37, x);
- }
-
- public Instruction OpenClLog2(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 38, x);
- }
-
- public Instruction OpenClLog10(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 39, x);
- }
-
- public Instruction OpenClLog1p(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 40, x);
- }
-
- public Instruction OpenClLogb(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 41, x);
- }
-
- public Instruction OpenClMad(Instruction resultType, Instruction a, Instruction b, Instruction c)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 42, a, b, c);
- }
-
- public Instruction OpenClMaxmag(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 43, x, y);
- }
-
- public Instruction OpenClMinmag(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 44, x, y);
- }
-
- public Instruction OpenClModf(Instruction resultType, Instruction x, Instruction iptr)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 45, x, iptr);
- }
-
- public Instruction OpenClNan(Instruction resultType, Instruction nancode)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 46, nancode);
- }
-
- public Instruction OpenClNextafter(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 47, x, y);
- }
-
- public Instruction OpenClPow(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 48, x, y);
- }
-
- public Instruction OpenClPown(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 49, x, y);
- }
-
- public Instruction OpenClPowr(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 50, x, y);
- }
-
- public Instruction OpenClRemainder(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 51, x, y);
- }
-
- public Instruction OpenClRemquo(Instruction resultType, Instruction x, Instruction y, Instruction quo)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 52, x, y, quo);
- }
-
- public Instruction OpenClRint(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 53, x);
- }
-
- public Instruction OpenClRootn(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 54, x, y);
- }
-
- public Instruction OpenClRound(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 55, x);
- }
-
- public Instruction OpenClRsqrt(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 56, x);
- }
-
- public Instruction OpenClSin(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 57, x);
- }
-
- public Instruction OpenClSincos(Instruction resultType, Instruction x, Instruction cosval)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 58, x, cosval);
- }
-
- public Instruction OpenClSinh(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 59, x);
- }
-
- public Instruction OpenClSinpi(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 60, x);
- }
-
- public Instruction OpenClSqrt(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 61, x);
- }
-
- public Instruction OpenClTan(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 62, x);
- }
-
- public Instruction OpenClTanh(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 63, x);
- }
-
- public Instruction OpenClTanpi(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 64, x);
- }
-
- public Instruction OpenClTgamma(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 65, x);
- }
-
- public Instruction OpenClTrunc(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 66, x);
- }
-
- public Instruction OpenClHalf_cos(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 67, x);
- }
-
- public Instruction OpenClHalf_divide(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 68, x, y);
- }
-
- public Instruction OpenClHalf_exp(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 69, x);
- }
-
- public Instruction OpenClHalf_exp2(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 70, x);
- }
-
- public Instruction OpenClHalf_exp10(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 71, x);
- }
-
- public Instruction OpenClHalf_log(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 72, x);
- }
-
- public Instruction OpenClHalf_log2(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 73, x);
- }
-
- public Instruction OpenClHalf_log10(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 74, x);
- }
-
- public Instruction OpenClHalf_powr(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 75, x, y);
- }
-
- public Instruction OpenClHalf_recip(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 76, x);
- }
-
- public Instruction OpenClHalf_rsqrt(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 77, x);
- }
-
- public Instruction OpenClHalf_sin(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 78, x);
- }
-
- public Instruction OpenClHalf_sqrt(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 79, x);
- }
-
- public Instruction OpenClHalf_tan(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 80, x);
- }
-
- public Instruction OpenClNative_cos(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 81, x);
- }
-
- public Instruction OpenClNative_divide(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 82, x, y);
- }
-
- public Instruction OpenClNative_exp(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 83, x);
- }
-
- public Instruction OpenClNative_exp2(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 84, x);
- }
-
- public Instruction OpenClNative_exp10(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 85, x);
- }
-
- public Instruction OpenClNative_log(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 86, x);
- }
-
- public Instruction OpenClNative_log2(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 87, x);
- }
-
- public Instruction OpenClNative_log10(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 88, x);
- }
-
- public Instruction OpenClNative_powr(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 89, x, y);
- }
-
- public Instruction OpenClNative_recip(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 90, x);
- }
-
- public Instruction OpenClNative_rsqrt(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 91, x);
- }
-
- public Instruction OpenClNative_sin(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 92, x);
- }
-
- public Instruction OpenClNative_sqrt(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 93, x);
- }
-
- public Instruction OpenClNative_tan(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 94, x);
- }
-
- public Instruction OpenClS_abs(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 141, x);
- }
-
- public Instruction OpenClS_abs_diff(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 142, x, y);
- }
-
- public Instruction OpenClS_add_sat(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 143, x, y);
- }
-
- public Instruction OpenClU_add_sat(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 144, x, y);
- }
-
- public Instruction OpenClS_hadd(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 145, x, y);
- }
-
- public Instruction OpenClU_hadd(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 146, x, y);
- }
-
- public Instruction OpenClS_rhadd(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 147, x, y);
- }
-
- public Instruction OpenClU_rhadd(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 148, x, y);
- }
-
- public Instruction OpenClS_clamp(Instruction resultType, Instruction x, Instruction minval, Instruction maxval)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 149, x, minval, maxval);
- }
-
- public Instruction OpenClU_clamp(Instruction resultType, Instruction x, Instruction minval, Instruction maxval)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 150, x, minval, maxval);
- }
-
- public Instruction OpenClClz(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 151, x);
- }
-
- public Instruction OpenClCtz(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 152, x);
- }
-
- public Instruction OpenClS_mad_hi(Instruction resultType, Instruction a, Instruction b, Instruction c)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 153, a, b, c);
- }
-
- public Instruction OpenClU_mad_sat(Instruction resultType, Instruction x, Instruction y, Instruction z)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 154, x, y, z);
- }
-
- public Instruction OpenClS_mad_sat(Instruction resultType, Instruction x, Instruction y, Instruction z)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 155, x, y, z);
- }
-
- public Instruction OpenClS_max(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 156, x, y);
- }
-
- public Instruction OpenClU_max(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 157, x, y);
- }
-
- public Instruction OpenClS_min(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 158, x, y);
- }
-
- public Instruction OpenClU_min(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 159, x, y);
- }
-
- public Instruction OpenClS_mul_hi(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 160, x, y);
- }
-
- public Instruction OpenClRotate(Instruction resultType, Instruction v, Instruction i)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 161, v, i);
- }
-
- public Instruction OpenClS_sub_sat(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 162, x, y);
- }
-
- public Instruction OpenClU_sub_sat(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 163, x, y);
- }
-
- public Instruction OpenClU_upsample(Instruction resultType, Instruction hi, Instruction lo)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 164, hi, lo);
- }
-
- public Instruction OpenClS_upsample(Instruction resultType, Instruction hi, Instruction lo)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 165, hi, lo);
- }
-
- public Instruction OpenClPopcount(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 166, x);
- }
-
- public Instruction OpenClS_mad24(Instruction resultType, Instruction x, Instruction y, Instruction z)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 167, x, y, z);
- }
-
- public Instruction OpenClU_mad24(Instruction resultType, Instruction x, Instruction y, Instruction z)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 168, x, y, z);
- }
-
- public Instruction OpenClS_mul24(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 169, x, y);
- }
-
- public Instruction OpenClU_mul24(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 170, x, y);
- }
-
- public Instruction OpenClU_abs(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 201, x);
- }
-
- public Instruction OpenClU_abs_diff(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 202, x, y);
- }
-
- public Instruction OpenClU_mul_hi(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 203, x, y);
- }
-
- public Instruction OpenClU_mad_hi(Instruction resultType, Instruction a, Instruction b, Instruction c)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 204, a, b, c);
- }
-
- public Instruction OpenClFclamp(Instruction resultType, Instruction x, Instruction minval, Instruction maxval)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 95, x, minval, maxval);
- }
-
- public Instruction OpenClDegrees(Instruction resultType, Instruction radians)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 96, radians);
- }
-
- public Instruction OpenClFmax_common(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 97, x, y);
- }
-
- public Instruction OpenClFmin_common(Instruction resultType, Instruction x, Instruction y)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 98, x, y);
- }
-
- public Instruction OpenClMix(Instruction resultType, Instruction x, Instruction y, Instruction a)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 99, x, y, a);
- }
-
- public Instruction OpenClRadians(Instruction resultType, Instruction degrees)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 100, degrees);
- }
-
- public Instruction OpenClStep(Instruction resultType, Instruction edge, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 101, edge, x);
- }
-
- public Instruction OpenClSmoothstep(Instruction resultType, Instruction edge0, Instruction edge1, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 102, edge0, edge1, x);
- }
-
- public Instruction OpenClSign(Instruction resultType, Instruction x)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 103, x);
- }
-
- public Instruction OpenClCross(Instruction resultType, Instruction p0, Instruction p1)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 104, p0, p1);
- }
-
- public Instruction OpenClDistance(Instruction resultType, Instruction p0, Instruction p1)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 105, p0, p1);
- }
-
- public Instruction OpenClLength(Instruction resultType, Instruction p)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 106, p);
- }
-
- public Instruction OpenClNormalize(Instruction resultType, Instruction p)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 107, p);
- }
-
- public Instruction OpenClFast_distance(Instruction resultType, Instruction p0, Instruction p1)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 108, p0, p1);
- }
-
- public Instruction OpenClFast_length(Instruction resultType, Instruction p)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 109, p);
- }
-
- public Instruction OpenClFast_normalize(Instruction resultType, Instruction p)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 110, p);
- }
-
- public Instruction OpenClBitselect(Instruction resultType, Instruction a, Instruction b, Instruction c)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 186, a, b, c);
- }
-
- public Instruction OpenClSelect(Instruction resultType, Instruction a, Instruction b, Instruction c)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 187, a, b, c);
- }
-
- public Instruction OpenClVloadn(Instruction resultType, Instruction offset, Instruction p, LiteralInteger n)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 171, offset, p, n);
- }
-
- public Instruction OpenClVstoren(Instruction resultType, Instruction data, Instruction offset, Instruction p)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 172, data, offset, p);
- }
-
- public Instruction OpenClVload_half(Instruction resultType, Instruction offset, Instruction p)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 173, offset, p);
- }
-
- public Instruction OpenClVload_halfn(Instruction resultType, Instruction offset, Instruction p, LiteralInteger n)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 174, offset, p, n);
- }
-
- public Instruction OpenClVstore_half(Instruction resultType, Instruction data, Instruction offset, Instruction p)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 175, data, offset, p);
- }
-
- public Instruction OpenClVstore_half_r(Instruction resultType, Instruction data, Instruction offset, Instruction p, FPRoundingMode mode)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 176, data, offset, p, LiteralInteger.CreateForEnum(mode));
- }
-
- public Instruction OpenClVstore_halfn(Instruction resultType, Instruction data, Instruction offset, Instruction p)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 177, data, offset, p);
- }
-
- public Instruction OpenClVstore_halfn_r(Instruction resultType, Instruction data, Instruction offset, Instruction p, FPRoundingMode mode)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 178, data, offset, p, LiteralInteger.CreateForEnum(mode));
- }
-
- public Instruction OpenClVloada_halfn(Instruction resultType, Instruction offset, Instruction p, LiteralInteger n)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 179, offset, p, n);
- }
-
- public Instruction OpenClVstorea_halfn(Instruction resultType, Instruction data, Instruction offset, Instruction p)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 180, data, offset, p);
- }
-
- public Instruction OpenClVstorea_halfn_r(Instruction resultType, Instruction data, Instruction offset, Instruction p, FPRoundingMode mode)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 181, data, offset, p, LiteralInteger.CreateForEnum(mode));
- }
-
- public Instruction OpenClShuffle(Instruction resultType, Instruction x, Instruction shufflemask)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 182, x, shufflemask);
- }
-
- public Instruction OpenClShuffle2(Instruction resultType, Instruction x, Instruction y, Instruction shufflemask)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 183, x, y, shufflemask);
- }
-
- public Instruction OpenClPrefetch(Instruction resultType, Instruction ptr, Instruction numelements)
- {
- return ExtInst(resultType, AddExtInstImport("OpenCL.std"), 185, ptr, numelements);
- }
-
- }
- }
|