blob: 9cac695f15cd8d3165b33a8d461a5849909e834b [file] [log] [blame]
Austin Engcc2516a2023-10-17 20:57:54 +00001// Copyright 2023 The Dawn & Tint Authors
dan sinclair774b6a42023-09-06 21:04:30 +00002//
Austin Engcc2516a2023-10-17 20:57:54 +00003// Redistribution and use in source and binary forms, with or without
4// modification, are permitted provided that the following conditions are met:
dan sinclair774b6a42023-09-06 21:04:30 +00005//
Austin Engcc2516a2023-10-17 20:57:54 +00006// 1. Redistributions of source code must retain the above copyright notice, this
7// list of conditions and the following disclaimer.
dan sinclair774b6a42023-09-06 21:04:30 +00008//
Austin Engcc2516a2023-10-17 20:57:54 +00009// 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 sinclair774b6a42023-09-06 21:04:30 +000027
28////////////////////////////////////////////////////////////////////////////////
29// File generated by 'tools/src/cmd/gen' using the template:
Ben Clayton9dce1d62023-09-21 12:41:20 +000030// src/tint/lang/spirv/builtin_fn.h.tmpl
dan sinclair774b6a42023-09-06 21:04:30 +000031//
32// To regenerate run: './tools/run gen'
33//
34// Do not modify this file directly
35////////////////////////////////////////////////////////////////////////////////
36
Ben Clayton9dce1d62023-09-21 12:41:20 +000037#ifndef SRC_TINT_LANG_SPIRV_BUILTIN_FN_H_
38#define SRC_TINT_LANG_SPIRV_BUILTIN_FN_H_
dan sinclair774b6a42023-09-06 21:04:30 +000039
40#include <cstdint>
41#include <string>
42
43#include "src/tint/utils/traits/traits.h"
44
45// \cond DO_NOT_DOCUMENT
Ben Clayton9dce1d62023-09-21 12:41:20 +000046namespace tint::spirv {
dan sinclair774b6a42023-09-06 21:04:30 +000047
48/// Enumerator of all builtin functions
Ben Clayton9dce1d62023-09-21 12:41:20 +000049enum class BuiltinFn : uint8_t {
dan sinclair721f6382023-09-08 20:29:48 +000050 kArrayLength,
dan sinclaire9fe7722023-09-08 20:29:48 +000051 kAtomicAnd,
52 kAtomicCompareExchange,
53 kAtomicExchange,
54 kAtomicIadd,
55 kAtomicIsub,
56 kAtomicLoad,
57 kAtomicOr,
58 kAtomicSmax,
59 kAtomicSmin,
60 kAtomicStore,
61 kAtomicUmax,
62 kAtomicUmin,
63 kAtomicXor,
dan sinclair669edf72023-09-08 20:29:48 +000064 kDot,
dan sinclair57bfe822023-09-19 21:59:23 +000065 kImageDrefGather,
dan sinclair9f1bd722023-09-19 16:09:01 +000066 kImageFetch,
dan sinclair57bfe822023-09-19 21:59:23 +000067 kImageGather,
dan sinclair7b4ec6e2023-09-20 03:05:04 +000068 kImageQuerySize,
69 kImageQuerySizeLod,
dan sinclair9f1bd722023-09-19 16:09:01 +000070 kImageRead,
dan sinclair86d4f3b2023-09-21 16:46:52 +000071 kImageSampleImplicitLod,
72 kImageSampleExplicitLod,
73 kImageSampleDrefImplicitLod,
74 kImageSampleDrefExplicitLod,
dan sinclair69502082023-09-21 16:48:42 +000075 kImageWrite,
dan sinclairddffd5e2023-09-07 16:49:32 +000076 kMatrixTimesMatrix,
77 kMatrixTimesScalar,
78 kMatrixTimesVector,
dan sinclair5ca21ed2023-09-19 00:33:25 +000079 kSampledImage,
dan sinclairf7c0ede2023-09-08 20:29:48 +000080 kSelect,
dan sinclair5ca21ed2023-09-19 00:33:25 +000081 kVectorTimesMatrix,
dan sinclair774b6a42023-09-06 21:04:30 +000082 kVectorTimesScalar,
James Price650cb612023-09-26 19:19:16 +000083 kSdot,
84 kUdot,
dan sinclair774b6a42023-09-06 21:04:30 +000085 kNone,
86};
87
88/// @returns the name of the builtin function type. The spelling, including
89/// case, matches the name in the WGSL spec.
Ben Clayton9dce1d62023-09-21 12:41:20 +000090const char* str(BuiltinFn i);
dan sinclair774b6a42023-09-06 21:04:30 +000091
92/// Emits the name of the builtin function type. The spelling, including case,
93/// matches the name in the WGSL spec.
94template <typename STREAM, typename = traits::EnableIfIsOStream<STREAM>>
Ben Clayton9dce1d62023-09-21 12:41:20 +000095auto& operator<<(STREAM& o, BuiltinFn i) {
dan sinclair774b6a42023-09-06 21:04:30 +000096 return o << str(i);
97}
98
Ben Clayton9dce1d62023-09-21 12:41:20 +000099} // namespace tint::spirv
dan sinclair774b6a42023-09-06 21:04:30 +0000100// \endcond
101
Ben Clayton9dce1d62023-09-21 12:41:20 +0000102#endif // SRC_TINT_LANG_SPIRV_BUILTIN_FN_H_