Austin Eng | cc2516a | 2023-10-17 20:57:54 +0000 | [diff] [blame] | 1 | // Copyright 2023 The Dawn & Tint Authors |
dan sinclair | 774b6a4 | 2023-09-06 21:04:30 +0000 | [diff] [blame] | 2 | // |
Austin Eng | cc2516a | 2023-10-17 20:57:54 +0000 | [diff] [blame] | 3 | // Redistribution and use in source and binary forms, with or without |
| 4 | // modification, are permitted provided that the following conditions are met: |
dan sinclair | 774b6a4 | 2023-09-06 21:04:30 +0000 | [diff] [blame] | 5 | // |
Austin Eng | cc2516a | 2023-10-17 20:57:54 +0000 | [diff] [blame] | 6 | // 1. Redistributions of source code must retain the above copyright notice, this |
| 7 | // list of conditions and the following disclaimer. |
dan sinclair | 774b6a4 | 2023-09-06 21:04:30 +0000 | [diff] [blame] | 8 | // |
Austin Eng | cc2516a | 2023-10-17 20:57:54 +0000 | [diff] [blame] | 9 | // 2. Redistributions in binary form must reproduce the above copyright notice, |
| 10 | // this list of conditions and the following disclaimer in the documentation |
| 11 | // and/or other materials provided with the distribution. |
| 12 | // |
| 13 | // 3. Neither the name of the copyright holder nor the names of its |
| 14 | // contributors may be used to endorse or promote products derived from |
| 15 | // this software without specific prior written permission. |
| 16 | // |
| 17 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 18 | // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 19 | // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 20 | // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| 21 | // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 22 | // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 23 | // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 24 | // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 25 | // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
dan sinclair | 774b6a4 | 2023-09-06 21:04:30 +0000 | [diff] [blame] | 27 | |
| 28 | //////////////////////////////////////////////////////////////////////////////// |
| 29 | // File generated by 'tools/src/cmd/gen' using the template: |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 30 | // src/tint/lang/spirv/builtin_fn.cc.tmpl |
dan sinclair | 774b6a4 | 2023-09-06 21:04:30 +0000 | [diff] [blame] | 31 | // |
| 32 | // To regenerate run: './tools/run gen' |
| 33 | // |
| 34 | // Do not modify this file directly |
| 35 | //////////////////////////////////////////////////////////////////////////////// |
| 36 | |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 37 | #include "src/tint/lang/spirv/builtin_fn.h" |
dan sinclair | 774b6a4 | 2023-09-06 21:04:30 +0000 | [diff] [blame] | 38 | |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 39 | namespace tint::spirv { |
dan sinclair | 774b6a4 | 2023-09-06 21:04:30 +0000 | [diff] [blame] | 40 | |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 41 | const char* str(BuiltinFn i) { |
dan sinclair | 774b6a4 | 2023-09-06 21:04:30 +0000 | [diff] [blame] | 42 | switch (i) { |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 43 | case BuiltinFn::kNone: |
dan sinclair | 774b6a4 | 2023-09-06 21:04:30 +0000 | [diff] [blame] | 44 | return "<none>"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 45 | case BuiltinFn::kArrayLength: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 46 | return "array_length"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 47 | case BuiltinFn::kAtomicAnd: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 48 | return "atomic_and"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 49 | case BuiltinFn::kAtomicCompareExchange: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 50 | return "atomic_compare_exchange"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 51 | case BuiltinFn::kAtomicExchange: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 52 | return "atomic_exchange"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 53 | case BuiltinFn::kAtomicIadd: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 54 | return "atomic_iadd"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 55 | case BuiltinFn::kAtomicIsub: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 56 | return "atomic_isub"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 57 | case BuiltinFn::kAtomicLoad: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 58 | return "atomic_load"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 59 | case BuiltinFn::kAtomicOr: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 60 | return "atomic_or"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 61 | case BuiltinFn::kAtomicSmax: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 62 | return "atomic_smax"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 63 | case BuiltinFn::kAtomicSmin: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 64 | return "atomic_smin"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 65 | case BuiltinFn::kAtomicStore: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 66 | return "atomic_store"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 67 | case BuiltinFn::kAtomicUmax: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 68 | return "atomic_umax"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 69 | case BuiltinFn::kAtomicUmin: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 70 | return "atomic_umin"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 71 | case BuiltinFn::kAtomicXor: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 72 | return "atomic_xor"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 73 | case BuiltinFn::kDot: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 74 | return "dot"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 75 | case BuiltinFn::kImageDrefGather: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 76 | return "image_dref_gather"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 77 | case BuiltinFn::kImageFetch: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 78 | return "image_fetch"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 79 | case BuiltinFn::kImageGather: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 80 | return "image_gather"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 81 | case BuiltinFn::kImageQuerySize: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 82 | return "image_query_size"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 83 | case BuiltinFn::kImageQuerySizeLod: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 84 | return "image_query_size_lod"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 85 | case BuiltinFn::kImageRead: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 86 | return "image_read"; |
dan sinclair | 86d4f3b | 2023-09-21 16:46:52 +0000 | [diff] [blame] | 87 | case BuiltinFn::kImageSampleImplicitLod: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 88 | return "image_sample_implicit_lod"; |
dan sinclair | 86d4f3b | 2023-09-21 16:46:52 +0000 | [diff] [blame] | 89 | case BuiltinFn::kImageSampleExplicitLod: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 90 | return "image_sample_explicit_lod"; |
dan sinclair | 86d4f3b | 2023-09-21 16:46:52 +0000 | [diff] [blame] | 91 | case BuiltinFn::kImageSampleDrefImplicitLod: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 92 | return "image_sample_dref_implicit_lod"; |
dan sinclair | 86d4f3b | 2023-09-21 16:46:52 +0000 | [diff] [blame] | 93 | case BuiltinFn::kImageSampleDrefExplicitLod: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 94 | return "image_sample_dref_explicit_lod"; |
dan sinclair | 6950208 | 2023-09-21 16:48:42 +0000 | [diff] [blame] | 95 | case BuiltinFn::kImageWrite: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 96 | return "image_write"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 97 | case BuiltinFn::kMatrixTimesMatrix: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 98 | return "matrix_times_matrix"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 99 | case BuiltinFn::kMatrixTimesScalar: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 100 | return "matrix_times_scalar"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 101 | case BuiltinFn::kMatrixTimesVector: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 102 | return "matrix_times_vector"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 103 | case BuiltinFn::kSampledImage: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 104 | return "sampled_image"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 105 | case BuiltinFn::kSelect: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 106 | return "select"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 107 | case BuiltinFn::kVectorTimesMatrix: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 108 | return "vector_times_matrix"; |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 109 | case BuiltinFn::kVectorTimesScalar: |
Ben Clayton | eb44794 | 2023-09-25 11:43:19 +0000 | [diff] [blame] | 110 | return "vector_times_scalar"; |
James Price | 650cb61 | 2023-09-26 19:19:16 +0000 | [diff] [blame] | 111 | case BuiltinFn::kSdot: |
| 112 | return "sdot"; |
| 113 | case BuiltinFn::kUdot: |
| 114 | return "udot"; |
dan sinclair | 774b6a4 | 2023-09-06 21:04:30 +0000 | [diff] [blame] | 115 | } |
| 116 | return "<unknown>"; |
| 117 | } |
| 118 | |
Ben Clayton | 9dce1d6 | 2023-09-21 12:41:20 +0000 | [diff] [blame] | 119 | } // namespace tint::spirv |