Skip to content

Commit 655441c

Browse files
kpreidcwfitzgerald
authored andcommitted
Clean up wgpu::util SPIR-V loading functions.
* "SPIR-V", not "SPIRV". * Give better error messages: always mention the magic number if it is missing, rather than the length. * Use `bytemuck` instead of unsafe code in the non-const version. * Remove unnecessary `Aligned` wrapper type (`transmute_copy` only cares that the input is aligned for its own type, not the output type). * Add more tests and put them in a test module.
1 parent 168e573 commit 655441c

File tree

2 files changed

+171
-73
lines changed

2 files changed

+171
-73
lines changed

wgpu/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ wgpu-types.workspace = true
190190
# Needed for both wgpu-core and webgpu
191191
arrayvec.workspace = true
192192
bitflags.workspace = true
193+
bytemuck.workspace = true
193194
cfg-if.workspace = true
194195
document-features.workspace = true
195196
log.workspace = true

wgpu/src/util/spirv.rs

Lines changed: 170 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
use alloc::{borrow::Cow, vec};
2-
use core::{mem, ptr};
1+
//! Utilities for loading SPIR-V module data.
2+
3+
use alloc::borrow::Cow;
4+
use core::mem;
5+
6+
#[cfg_attr(not(any(feature = "spirv", doc)), expect(unused_imports))]
7+
use crate::ShaderSource;
38

49
#[cfg(doc)]
510
use crate::Device;
@@ -8,66 +13,103 @@ const SPIRV_MAGIC_NUMBER: u32 = 0x0723_0203;
813

914
/// Treat the given byte slice as a SPIR-V module.
1015
///
11-
/// # Panic
16+
/// # Panics
1217
///
1318
/// This function panics if:
1419
///
15-
/// - Input length isn't multiple of 4
16-
/// - Input is longer than [`usize::MAX`]
17-
/// - Input is empty
18-
/// - SPIR-V magic number is missing from beginning of stream
19-
#[cfg(feature = "spirv")]
20-
pub fn make_spirv(data: &[u8]) -> crate::ShaderSource<'_> {
21-
crate::ShaderSource::SpirV(make_spirv_raw(data))
20+
/// - `data.len()` is not a multiple of 4
21+
/// - `data` does not begin with the SPIR-V magic number
22+
///
23+
/// It does not check that the data is a valid SPIR-V module in any other way.
24+
#[cfg(feature = "spirv")] // ShaderSource::SpirV only exists in this case
25+
pub fn make_spirv(data: &[u8]) -> ShaderSource<'_> {
26+
ShaderSource::SpirV(make_spirv_raw(data))
2227
}
2328

24-
const fn check_spirv_len(data: &[u8]) {
25-
assert!(
26-
data.len() % size_of::<u32>() == 0,
27-
"SPIRV data size must be a multiple of 4."
28-
);
29-
assert!(!data.is_empty(), "SPIRV data must not be empty.");
30-
}
29+
/// Check whether the byte slice has the SPIR-V magic number (in either byte order) and of an
30+
/// appropriate size, and panic with a suitable message when it is not.
31+
///
32+
/// Returns whether the endianness is opposite of native endianness (i.e. whether
33+
/// [`u32::swap_bytes()`] should be called.)
34+
///
35+
/// Note: this function’s checks are relied upon for the soundness of [`make_spirv_const()`].
36+
/// Undefined behavior will result if it does not panic when `bytes.len()` is not a multiple of 4.
37+
#[track_caller]
38+
const fn assert_has_spirv_magic_number_and_length(bytes: &[u8]) -> bool {
39+
// First, check the magic number.
40+
// This way we give the best error for wrong formats.
41+
// (Plus a special case for the empty slice.)
42+
let found_magic_number: Option<bool> = match *bytes {
43+
[] => panic!("byte slice is empty, not SPIR-V"),
44+
// This would be simpler as slice::starts_with(), but that isn't a const fn yet.
45+
[b1, b2, b3, b4, ..] => {
46+
let prefix = u32::from_ne_bytes([b1, b2, b3, b4]);
47+
if prefix == SPIRV_MAGIC_NUMBER {
48+
Some(false)
49+
} else if prefix == const { SPIRV_MAGIC_NUMBER.swap_bytes() } {
50+
// needs swapping
51+
Some(true)
52+
} else {
53+
None
54+
}
55+
}
56+
_ => None, // fallthrough case = between 1 and 3 bytes
57+
};
3158

32-
const fn verify_spirv_magic(words: &[u32]) {
33-
assert!(
34-
words[0] == SPIRV_MAGIC_NUMBER,
35-
"Wrong magic word in data. Make sure you are using a binary SPIRV file.",
36-
);
59+
match found_magic_number {
60+
Some(needs_byte_swap) => {
61+
// Note: this assertion is relied upon for the soundness of `make_spirv_const()`.
62+
assert!(
63+
bytes.len() % size_of::<u32>() == 0,
64+
"SPIR-V data must be a multiple of 4 bytes long"
65+
);
66+
67+
needs_byte_swap
68+
}
69+
None => {
70+
panic!(
71+
"byte slice does not start with SPIR-V magic number. \
72+
Make sure you are using a binary SPIR-V file."
73+
);
74+
}
75+
}
3776
}
3877

39-
/// Version of `make_spirv` intended for use with [`Device::create_shader_module_passthrough`].
40-
/// Returns a raw slice instead of [`ShaderSource`](super::ShaderSource).
78+
/// Version of [`make_spirv()`] intended for use with
79+
/// [`Device::create_shader_module_passthrough()`].
80+
///
81+
/// Returns a raw slice instead of [`ShaderSource`].
82+
///
83+
/// # Panics
4184
///
42-
/// [`Device::create_shader_module_passthrough`]: crate::Device::create_shader_module_passthrough
43-
pub fn make_spirv_raw(data: &[u8]) -> Cow<'_, [u32]> {
44-
check_spirv_len(data);
85+
/// This function panics if:
86+
///
87+
/// - `data.len()` is not a multiple of 4
88+
/// - `data` does not begin with the SPIR-V magic number
89+
///
90+
/// It does not check that the data is a valid SPIR-V module in any other way.
91+
pub fn make_spirv_raw(bytes: &[u8]) -> Cow<'_, [u32]> {
92+
let needs_byte_swap = assert_has_spirv_magic_number_and_length(bytes);
4593

4694
// If the data happens to be aligned, directly use the byte array,
4795
// otherwise copy the byte array in an owned vector and use that instead.
48-
let mut words = if data.as_ptr().align_offset(align_of::<u32>()) == 0 {
49-
let (pre, words, post) = unsafe { data.align_to::<u32>() };
50-
debug_assert!(pre.is_empty());
51-
debug_assert!(post.is_empty());
52-
Cow::from(words)
53-
} else {
54-
let mut words = vec![0u32; data.len() / size_of::<u32>()];
55-
unsafe {
56-
ptr::copy_nonoverlapping(data.as_ptr(), words.as_mut_ptr() as *mut u8, data.len());
57-
}
58-
Cow::from(words)
96+
let mut words: Cow<'_, [u32]> = match bytemuck::try_cast_slice(bytes) {
97+
Ok(words) => Cow::Borrowed(words),
98+
// We already checked the length, so if this fails, it fails due to lack of alignment only.
99+
Err(_) => Cow::Owned(bytemuck::pod_collect_to_vec(bytes)),
59100
};
60101

61-
// Before checking if the data starts with the magic, check if it starts
62-
// with the magic in non-native endianness, own & swap the data if so.
63-
if words[0] == SPIRV_MAGIC_NUMBER.swap_bytes() {
102+
// If necessary, swap bytes to native endianness.
103+
if needs_byte_swap {
64104
for word in Cow::to_mut(&mut words) {
65105
*word = word.swap_bytes();
66106
}
67107
}
68108

69-
verify_spirv_magic(&words);
70-
109+
assert!(
110+
words[0] == SPIRV_MAGIC_NUMBER,
111+
"can't happen: wrong magic number after swap_bytes"
112+
);
71113
words
72114
}
73115

@@ -77,47 +119,102 @@ pub fn make_spirv_raw(data: &[u8]) -> Cow<'_, [u32]> {
77119
///
78120
/// [`include_spirv!`]: crate::include_spirv
79121
#[doc(hidden)]
80-
pub const fn make_spirv_const<const IN: usize, const OUT: usize>(data: [u8; IN]) -> [u32; OUT] {
81-
#[repr(align(4))]
82-
struct Aligned<T: ?Sized>(T);
83-
84-
check_spirv_len(&data);
85-
86-
// NOTE: to get around lack of generic const expressions
87-
assert!(IN / 4 == OUT);
88-
89-
let aligned = Aligned(data);
90-
let mut words: [u32; OUT] = unsafe { mem::transmute_copy(&aligned) };
91-
92-
// Before checking if the data starts with the magic, check if it starts
93-
// with the magic in non-native endianness, own & swap the data if so.
94-
if words[0] == SPIRV_MAGIC_NUMBER.swap_bytes() {
122+
pub const fn make_spirv_const<const IN: usize, const OUT: usize>(bytes: [u8; IN]) -> [u32; OUT] {
123+
let needs_byte_swap = assert_has_spirv_magic_number_and_length(&bytes);
124+
125+
// NOTE: to get around lack of generic const expressions, the input and output lengths must
126+
// be specified separately.
127+
// Check that they are consistent with each other.
128+
assert!(mem::size_of_val(&bytes) == mem::size_of::<[u32; OUT]>());
129+
130+
// Can't use `bytemuck` in `const fn` (yet), so do it unsafely.
131+
// SAFETY:
132+
// * The previous assertion checked that the byte sizes of `bytes` and `words` are equal.
133+
// * `transmute_copy` doesn't care that the alignment might be wrong.
134+
let mut words: [u32; OUT] = unsafe { mem::transmute_copy(&bytes) };
135+
136+
// If necessary, swap bytes to native endianness.
137+
if needs_byte_swap {
95138
let mut idx = 0;
96139
while idx < words.len() {
97140
words[idx] = words[idx].swap_bytes();
98141
idx += 1;
99142
}
100143
}
101144

102-
verify_spirv_magic(&words);
145+
assert!(
146+
words[0] == SPIRV_MAGIC_NUMBER,
147+
"can't happen: wrong magic number after swap_bytes"
148+
);
103149

104150
words
105151
}
106152

107-
#[should_panic = "multiple of 4"]
108-
#[test]
109-
fn make_spirv_le_fail() {
110-
let _: [u32; 1] = make_spirv_const([0x03, 0x02, 0x23, 0x07, 0x44, 0x33]);
111-
}
153+
#[cfg(test)]
154+
mod tests {
155+
use super::*;
156+
use alloc::vec;
157+
158+
fn test_success_with_misalignments<const IN: usize, const OUT: usize>(
159+
input: &[u8; IN],
160+
expected: [u32; OUT],
161+
) {
162+
// We don't know which 3 out of 4 offsets will produce an actually misaligned slice,
163+
// but they always will. (Note that it is necessary to reuse the same allocation for all 4
164+
// tests, or we could (in theory) get unlucky and not test any misalignments.)
165+
let mut buffer = vec![0; input.len() + 4];
166+
for offset in 0..4 {
167+
let misaligned_slice: &mut [u8; IN] =
168+
(&mut buffer[offset..][..input.len()]).try_into().unwrap();
169+
170+
misaligned_slice.copy_from_slice(input);
171+
assert_eq!(*make_spirv_raw(misaligned_slice), expected);
172+
assert_eq!(make_spirv_const(*misaligned_slice), expected);
173+
}
174+
}
112175

113-
#[should_panic = "multiple of 4"]
114-
#[test]
115-
fn make_spirv_be_fail() {
116-
let _: [u32; 1] = make_spirv_const([0x07, 0x23, 0x02, 0x03, 0x11, 0x22]);
117-
}
176+
#[test]
177+
fn success_be() {
178+
// magic number followed by dummy data to see the endianness handling
179+
let input = b"\x07\x23\x02\x03\xF1\xF2\xF3\xF4";
180+
let expected: [u32; 2] = [SPIRV_MAGIC_NUMBER, 0xF1F2F3F4];
181+
test_success_with_misalignments(input, expected);
182+
}
183+
184+
#[test]
185+
fn success_le() {
186+
let input = b"\x03\x02\x23\x07\xF1\xF2\xF3\xF4";
187+
let expected: [u32; 2] = [SPIRV_MAGIC_NUMBER, 0xF4F3F2F1];
188+
test_success_with_misalignments(input, expected);
189+
}
190+
191+
#[should_panic = "multiple of 4"]
192+
#[test]
193+
fn nonconst_le_fail() {
194+
let _: Cow<'_, [u32]> = make_spirv_raw(&[0x03, 0x02, 0x23, 0x07, 0x44, 0x33]);
195+
}
196+
197+
#[should_panic = "multiple of 4"]
198+
#[test]
199+
fn nonconst_be_fail() {
200+
let _: Cow<'_, [u32]> = make_spirv_raw(&[0x07, 0x23, 0x02, 0x03, 0x11, 0x22]);
201+
}
202+
203+
#[should_panic = "multiple of 4"]
204+
#[test]
205+
fn const_le_fail() {
206+
let _: [u32; 1] = make_spirv_const([0x03, 0x02, 0x23, 0x07, 0x44, 0x33]);
207+
}
118208

119-
#[should_panic = "empty"]
120-
#[test]
121-
fn make_spirv_empty() {
122-
let _: [u32; 0] = make_spirv_const([]);
209+
#[should_panic = "multiple of 4"]
210+
#[test]
211+
fn const_be_fail() {
212+
let _: [u32; 1] = make_spirv_const([0x07, 0x23, 0x02, 0x03, 0x11, 0x22]);
213+
}
214+
215+
#[should_panic = "byte slice is empty, not SPIR-V"]
216+
#[test]
217+
fn make_spirv_empty() {
218+
let _: [u32; 0] = make_spirv_const([]);
219+
}
123220
}

0 commit comments

Comments
 (0)