naga/common/wgsl/
to_wgsl.rs

1//! Generating WGSL source code for Naga IR types.
2
3use alloc::format;
4use alloc::string::{String, ToString};
5
6/// Types that can return the WGSL source representation of their
7/// values as a `'static` string.
8///
9/// This trait is specifically for types whose WGSL forms are simple
10/// enough that they can always be returned as a static string.
11///
12/// - If only some values have a WGSL representation, consider
13///   implementing [`TryToWgsl`] instead.
14///
15/// - If a type's WGSL form requires dynamic formatting, so that
16///   returning a `&'static str` isn't feasible, consider implementing
17///   [`core::fmt::Display`] on some wrapper type instead.
18pub trait ToWgsl: Sized {
19    /// Return WGSL source code representation of `self`.
20    fn to_wgsl(self) -> &'static str;
21}
22
23/// Types that may be able to return the WGSL source representation
24/// for their values as a `'static` string.
25///
26/// This trait is specifically for types whose values are either
27/// simple enough that their WGSL form can be represented a static
28/// string, or aren't representable in WGSL at all.
29///
30/// - If all values in the type have `&'static str` representations in
31///   WGSL, consider implementing [`ToWgsl`] instead.
32///
33/// - If a type's WGSL form requires dynamic formatting, so that
34///   returning a `&'static str` isn't feasible, consider implementing
35///   [`core::fmt::Display`] on some wrapper type instead.
36pub trait TryToWgsl: Sized {
37    /// Return the WGSL form of `self` as a `'static` string.
38    ///
39    /// If `self` doesn't have a representation in WGSL (standard or
40    /// as extended by Naga), then return `None`.
41    fn try_to_wgsl(self) -> Option<&'static str>;
42
43    /// What kind of WGSL thing `Self` represents.
44    const DESCRIPTION: &'static str;
45
46    /// Return the WGSL form of `self` as appropriate for diagnostics.
47    ///
48    /// If `self` can be expressed in WGSL, return that form as a
49    /// [`String`]. Otherwise, return some representation of `self`
50    /// that is appropriate for use in diagnostic messages.
51    ///
52    /// The default implementation of this function falls back to
53    /// `self`'s [`Debug`] form.
54    ///
55    /// [`Debug`]: core::fmt::Debug
56    fn to_wgsl_for_diagnostics(self) -> String
57    where
58        Self: core::fmt::Debug + Copy,
59    {
60        match self.try_to_wgsl() {
61            Some(static_string) => static_string.to_string(),
62            None => format!("{{non-WGSL {} {self:?}}}", Self::DESCRIPTION),
63        }
64    }
65}
66
67impl TryToWgsl for crate::MathFunction {
68    const DESCRIPTION: &'static str = "math function";
69
70    fn try_to_wgsl(self) -> Option<&'static str> {
71        use crate::MathFunction as Mf;
72
73        Some(match self {
74            Mf::Abs => "abs",
75            Mf::Min => "min",
76            Mf::Max => "max",
77            Mf::Clamp => "clamp",
78            Mf::Saturate => "saturate",
79            Mf::Cos => "cos",
80            Mf::Cosh => "cosh",
81            Mf::Sin => "sin",
82            Mf::Sinh => "sinh",
83            Mf::Tan => "tan",
84            Mf::Tanh => "tanh",
85            Mf::Acos => "acos",
86            Mf::Asin => "asin",
87            Mf::Atan => "atan",
88            Mf::Atan2 => "atan2",
89            Mf::Asinh => "asinh",
90            Mf::Acosh => "acosh",
91            Mf::Atanh => "atanh",
92            Mf::Radians => "radians",
93            Mf::Degrees => "degrees",
94            Mf::Ceil => "ceil",
95            Mf::Floor => "floor",
96            Mf::Round => "round",
97            Mf::Fract => "fract",
98            Mf::Trunc => "trunc",
99            Mf::Modf => "modf",
100            Mf::Frexp => "frexp",
101            Mf::Ldexp => "ldexp",
102            Mf::Exp => "exp",
103            Mf::Exp2 => "exp2",
104            Mf::Log => "log",
105            Mf::Log2 => "log2",
106            Mf::Pow => "pow",
107            Mf::Dot => "dot",
108            Mf::Dot4I8Packed => "dot4I8Packed",
109            Mf::Dot4U8Packed => "dot4U8Packed",
110            Mf::Cross => "cross",
111            Mf::Distance => "distance",
112            Mf::Length => "length",
113            Mf::Normalize => "normalize",
114            Mf::FaceForward => "faceForward",
115            Mf::Reflect => "reflect",
116            Mf::Refract => "refract",
117            Mf::Sign => "sign",
118            Mf::Fma => "fma",
119            Mf::Mix => "mix",
120            Mf::Step => "step",
121            Mf::SmoothStep => "smoothstep",
122            Mf::Sqrt => "sqrt",
123            Mf::InverseSqrt => "inverseSqrt",
124            Mf::Transpose => "transpose",
125            Mf::Determinant => "determinant",
126            Mf::QuantizeToF16 => "quantizeToF16",
127            Mf::CountTrailingZeros => "countTrailingZeros",
128            Mf::CountLeadingZeros => "countLeadingZeros",
129            Mf::CountOneBits => "countOneBits",
130            Mf::ReverseBits => "reverseBits",
131            Mf::ExtractBits => "extractBits",
132            Mf::InsertBits => "insertBits",
133            Mf::FirstTrailingBit => "firstTrailingBit",
134            Mf::FirstLeadingBit => "firstLeadingBit",
135            Mf::Pack4x8snorm => "pack4x8snorm",
136            Mf::Pack4x8unorm => "pack4x8unorm",
137            Mf::Pack2x16snorm => "pack2x16snorm",
138            Mf::Pack2x16unorm => "pack2x16unorm",
139            Mf::Pack2x16float => "pack2x16float",
140            Mf::Pack4xI8 => "pack4xI8",
141            Mf::Pack4xU8 => "pack4xU8",
142            Mf::Pack4xI8Clamp => "pack4xI8Clamp",
143            Mf::Pack4xU8Clamp => "pack4xU8Clamp",
144            Mf::Unpack4x8snorm => "unpack4x8snorm",
145            Mf::Unpack4x8unorm => "unpack4x8unorm",
146            Mf::Unpack2x16snorm => "unpack2x16snorm",
147            Mf::Unpack2x16unorm => "unpack2x16unorm",
148            Mf::Unpack2x16float => "unpack2x16float",
149            Mf::Unpack4xI8 => "unpack4xI8",
150            Mf::Unpack4xU8 => "unpack4xU8",
151
152            // Non-standard math functions.
153            Mf::Inverse | Mf::Outer => return None,
154        })
155    }
156}
157
158impl TryToWgsl for crate::BuiltIn {
159    const DESCRIPTION: &'static str = "builtin value";
160
161    fn try_to_wgsl(self) -> Option<&'static str> {
162        use crate::BuiltIn as Bi;
163        Some(match self {
164            Bi::Position { .. } => "position",
165            Bi::ViewIndex => "view_index",
166            Bi::InstanceIndex => "instance_index",
167            Bi::VertexIndex => "vertex_index",
168            Bi::ClipDistance => "clip_distances",
169            Bi::FragDepth => "frag_depth",
170            Bi::FrontFacing => "front_facing",
171            Bi::PrimitiveIndex => "primitive_index",
172            Bi::SampleIndex => "sample_index",
173            Bi::SampleMask => "sample_mask",
174            Bi::GlobalInvocationId => "global_invocation_id",
175            Bi::LocalInvocationId => "local_invocation_id",
176            Bi::LocalInvocationIndex => "local_invocation_index",
177            Bi::WorkGroupId => "workgroup_id",
178            Bi::NumWorkGroups => "num_workgroups",
179            Bi::NumSubgroups => "num_subgroups",
180            Bi::SubgroupId => "subgroup_id",
181            Bi::SubgroupSize => "subgroup_size",
182            Bi::SubgroupInvocationId => "subgroup_invocation_id",
183
184            // Non-standard built-ins.
185            Bi::BaseInstance
186            | Bi::BaseVertex
187            | Bi::CullDistance
188            | Bi::PointSize
189            | Bi::DrawID
190            | Bi::PointCoord
191            | Bi::WorkGroupSize => return None,
192        })
193    }
194}
195
196impl ToWgsl for crate::Interpolation {
197    fn to_wgsl(self) -> &'static str {
198        match self {
199            crate::Interpolation::Perspective => "perspective",
200            crate::Interpolation::Linear => "linear",
201            crate::Interpolation::Flat => "flat",
202        }
203    }
204}
205
206impl ToWgsl for crate::Sampling {
207    fn to_wgsl(self) -> &'static str {
208        match self {
209            crate::Sampling::Center => "center",
210            crate::Sampling::Centroid => "centroid",
211            crate::Sampling::Sample => "sample",
212            crate::Sampling::First => "first",
213            crate::Sampling::Either => "either",
214        }
215    }
216}
217
218impl ToWgsl for crate::StorageFormat {
219    fn to_wgsl(self) -> &'static str {
220        use crate::StorageFormat as Sf;
221
222        match self {
223            Sf::R8Unorm => "r8unorm",
224            Sf::R8Snorm => "r8snorm",
225            Sf::R8Uint => "r8uint",
226            Sf::R8Sint => "r8sint",
227            Sf::R16Uint => "r16uint",
228            Sf::R16Sint => "r16sint",
229            Sf::R16Float => "r16float",
230            Sf::Rg8Unorm => "rg8unorm",
231            Sf::Rg8Snorm => "rg8snorm",
232            Sf::Rg8Uint => "rg8uint",
233            Sf::Rg8Sint => "rg8sint",
234            Sf::R32Uint => "r32uint",
235            Sf::R32Sint => "r32sint",
236            Sf::R32Float => "r32float",
237            Sf::Rg16Uint => "rg16uint",
238            Sf::Rg16Sint => "rg16sint",
239            Sf::Rg16Float => "rg16float",
240            Sf::Rgba8Unorm => "rgba8unorm",
241            Sf::Rgba8Snorm => "rgba8snorm",
242            Sf::Rgba8Uint => "rgba8uint",
243            Sf::Rgba8Sint => "rgba8sint",
244            Sf::Bgra8Unorm => "bgra8unorm",
245            Sf::Rgb10a2Uint => "rgb10a2uint",
246            Sf::Rgb10a2Unorm => "rgb10a2unorm",
247            Sf::Rg11b10Ufloat => "rg11b10float",
248            Sf::R64Uint => "r64uint",
249            Sf::Rg32Uint => "rg32uint",
250            Sf::Rg32Sint => "rg32sint",
251            Sf::Rg32Float => "rg32float",
252            Sf::Rgba16Uint => "rgba16uint",
253            Sf::Rgba16Sint => "rgba16sint",
254            Sf::Rgba16Float => "rgba16float",
255            Sf::Rgba32Uint => "rgba32uint",
256            Sf::Rgba32Sint => "rgba32sint",
257            Sf::Rgba32Float => "rgba32float",
258            Sf::R16Unorm => "r16unorm",
259            Sf::R16Snorm => "r16snorm",
260            Sf::Rg16Unorm => "rg16unorm",
261            Sf::Rg16Snorm => "rg16snorm",
262            Sf::Rgba16Unorm => "rgba16unorm",
263            Sf::Rgba16Snorm => "rgba16snorm",
264        }
265    }
266}
267
268impl TryToWgsl for crate::Scalar {
269    const DESCRIPTION: &'static str = "scalar type";
270
271    fn try_to_wgsl(self) -> Option<&'static str> {
272        use crate::Scalar;
273
274        Some(match self {
275            Scalar::F16 => "f16",
276            Scalar::F32 => "f32",
277            Scalar::F64 => "f64",
278            Scalar::I32 => "i32",
279            Scalar::U32 => "u32",
280            Scalar::I64 => "i64",
281            Scalar::U64 => "u64",
282            Scalar::BOOL => "bool",
283            _ => return None,
284        })
285    }
286
287    fn to_wgsl_for_diagnostics(self) -> String {
288        match self.try_to_wgsl() {
289            Some(static_string) => static_string.to_string(),
290            None => match self.kind {
291                crate::ScalarKind::Sint
292                | crate::ScalarKind::Uint
293                | crate::ScalarKind::Float
294                | crate::ScalarKind::Bool => format!("{{non-WGSL scalar {self:?}}}"),
295                crate::ScalarKind::AbstractInt => "{AbstractInt}".to_string(),
296                crate::ScalarKind::AbstractFloat => "{AbstractFloat}".to_string(),
297            },
298        }
299    }
300}
301
302impl ToWgsl for crate::ImageDimension {
303    fn to_wgsl(self) -> &'static str {
304        use crate::ImageDimension as IDim;
305
306        match self {
307            IDim::D1 => "1d",
308            IDim::D2 => "2d",
309            IDim::D3 => "3d",
310            IDim::Cube => "cube",
311        }
312    }
313}
314
315/// Return the WGSL address space and access mode strings for `space`.
316///
317/// Why don't we implement [`ToWgsl`] for [`AddressSpace`]?
318///
319/// In WGSL, the full form of a pointer type is `ptr<AS, T, AM>`, where:
320/// - `AS` is the address space,
321/// - `T` is the store type, and
322/// - `AM` is the access mode.
323///
324/// Since the type `T` intervenes between the address space and the
325/// access mode, there isn't really any individual WGSL grammar
326/// production that corresponds to an [`AddressSpace`], so [`ToWgsl`]
327/// is too simple-minded for this case.
328///
329/// Furthermore, we want to write `var<AS[, AM]>` for most address
330/// spaces, but we want to just write `var foo: T` for handle types.
331///
332/// [`AddressSpace`]: crate::AddressSpace
333pub const fn address_space_str(
334    space: crate::AddressSpace,
335) -> (Option<&'static str>, Option<&'static str>) {
336    use crate::AddressSpace as As;
337
338    (
339        Some(match space {
340            As::Private => "private",
341            As::Uniform => "uniform",
342            As::Storage { access } => {
343                if access.contains(crate::StorageAccess::ATOMIC) {
344                    return (Some("storage"), Some("atomic"));
345                } else if access.contains(crate::StorageAccess::STORE) {
346                    return (Some("storage"), Some("read_write"));
347                } else {
348                    "storage"
349                }
350            }
351            As::PushConstant => "push_constant",
352            As::WorkGroup => "workgroup",
353            As::Handle => return (None, None),
354            As::Function => "function",
355        }),
356        None,
357    )
358}