2022-02-03 18:27:21 +00:00
|
|
|
/*!
|
|
|
|
Tests for the WGSL front end.
|
|
|
|
*/
|
2021-05-13 17:21:43 +00:00
|
|
|
#![cfg(feature = "wgsl-in")]
|
|
|
|
|
2021-04-14 18:20:48 +00:00
|
|
|
fn check(input: &str, snapshot: &str) {
|
|
|
|
let output = naga::front::wgsl::parse_str(input)
|
|
|
|
.expect_err("expected parser error")
|
2021-05-02 04:49:02 +00:00
|
|
|
.emit_to_string(input);
|
2021-04-14 18:20:48 +00:00
|
|
|
if output != snapshot {
|
|
|
|
for diff in diff::lines(&output, snapshot) {
|
|
|
|
match diff {
|
|
|
|
diff::Result::Left(l) => println!("-{}", l),
|
|
|
|
diff::Result::Both(l, _) => println!(" {}", l),
|
|
|
|
diff::Result::Right(r) => println!("+{}", r),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
panic!("Error snapshot failed");
|
|
|
|
}
|
2021-02-13 20:54:31 +00:00
|
|
|
}
|
|
|
|
|
2021-11-23 13:36:48 +00:00
|
|
|
#[test]
|
|
|
|
fn reserved_identifier_prefix() {
|
|
|
|
check(
|
|
|
|
"var __bad;",
|
|
|
|
r###"error: Identifier starts with a reserved prefix: '__bad'
|
|
|
|
┌─ wgsl:1:5
|
|
|
|
│
|
|
|
|
1 │ var __bad;
|
|
|
|
│ ^^^^^ invalid identifier
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-02-13 20:54:31 +00:00
|
|
|
#[test]
|
|
|
|
fn function_without_identifier() {
|
2021-04-14 18:20:48 +00:00
|
|
|
check(
|
2021-02-13 20:54:31 +00:00
|
|
|
"fn () {}",
|
2021-04-14 23:22:40 +00:00
|
|
|
r###"error: expected identifier, found '('
|
2021-04-14 18:20:48 +00:00
|
|
|
┌─ wgsl:1:4
|
|
|
|
│
|
|
|
|
1 │ fn () {}
|
|
|
|
│ ^ expected identifier
|
2021-02-28 04:22:34 +00:00
|
|
|
|
2021-04-14 18:20:48 +00:00
|
|
|
"###,
|
2021-02-13 20:54:31 +00:00
|
|
|
);
|
|
|
|
}
|
2021-03-04 03:28:54 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn invalid_integer() {
|
2021-04-14 18:20:48 +00:00
|
|
|
check(
|
2021-03-07 05:03:05 +00:00
|
|
|
"fn foo([location(1.)] x: i32) {}",
|
2021-04-14 23:22:40 +00:00
|
|
|
r###"error: expected identifier, found '['
|
2021-04-14 18:20:48 +00:00
|
|
|
┌─ wgsl:1:8
|
|
|
|
│
|
|
|
|
1 │ fn foo([location(1.)] x: i32) {}
|
|
|
|
│ ^ expected identifier
|
2021-03-04 03:28:54 +00:00
|
|
|
|
2021-04-14 18:20:48 +00:00
|
|
|
"###,
|
2021-03-04 03:28:54 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn invalid_float() {
|
2021-04-14 18:20:48 +00:00
|
|
|
check(
|
2021-04-11 04:35:03 +00:00
|
|
|
"let scale: f32 = 1.1.;",
|
2021-08-24 05:50:53 +00:00
|
|
|
r###"error: expected ';', found '.'
|
|
|
|
┌─ wgsl:1:21
|
2021-04-14 18:20:48 +00:00
|
|
|
│
|
|
|
|
1 │ let scale: f32 = 1.1.;
|
2021-08-24 05:50:53 +00:00
|
|
|
│ ^ expected ';'
|
Improve wgsl lexer error messages.
Better errors for Unexpected, BadInteger, BadFloat, BadTexture, BadTypeCast, UnknownScalarType, UnknownStorageClass, UnknownAttribute, UnknownBuiltin, UnknownShaderStage, UnknownStorageFormat and UnknownConservativeDepth, ZeroStride, ZeroSizeOrAlign and UnknownType.
Also adds lexer::capture_span.
Also fixes some validation for texture sample types and and issue that cauld cause e.g. the type `f33` to be parsed as `f32`.
2021-05-25 14:58:17 +00:00
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn invalid_texture_sample_type() {
|
|
|
|
check(
|
|
|
|
"let x: texture_2d<f16>;",
|
|
|
|
r###"error: texture sample type must be one of f32, i32 or u32, but found f16
|
|
|
|
┌─ wgsl:1:19
|
|
|
|
│
|
|
|
|
1 │ let x: texture_2d<f16>;
|
|
|
|
│ ^^^ must be one of f32, i32 or u32
|
2021-03-04 03:28:54 +00:00
|
|
|
|
2021-04-14 18:20:48 +00:00
|
|
|
"###,
|
2021-03-04 03:28:54 +00:00
|
|
|
);
|
|
|
|
}
|
2021-05-13 17:29:03 +00:00
|
|
|
|
2021-05-17 23:19:33 +00:00
|
|
|
#[test]
|
|
|
|
fn unknown_identifier() {
|
|
|
|
check(
|
|
|
|
r###"
|
|
|
|
fn f(x: f32) -> f32 {
|
|
|
|
return x * schmoo;
|
|
|
|
}
|
|
|
|
"###,
|
2021-05-18 18:20:25 +00:00
|
|
|
r###"error: no definition in scope for identifier: 'schmoo'
|
2021-05-17 23:19:33 +00:00
|
|
|
┌─ wgsl:3:30
|
|
|
|
│
|
|
|
|
3 │ return x * schmoo;
|
|
|
|
│ ^^^^^^ unknown identifier
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-05-27 22:02:38 +00:00
|
|
|
#[test]
|
|
|
|
fn negative_index() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn main() -> f32 {
|
|
|
|
let a = array<f32, 3>(0., 1., 2.);
|
|
|
|
return a[-1];
|
|
|
|
}
|
|
|
|
"#,
|
2021-08-24 05:50:53 +00:00
|
|
|
r#"error: expected unsigned integer constant expression, found `-1`
|
2021-05-27 22:02:38 +00:00
|
|
|
┌─ wgsl:4:26
|
|
|
|
│
|
|
|
|
4 │ return a[-1];
|
2021-08-24 05:50:53 +00:00
|
|
|
│ ^^ expected unsigned integer
|
2021-05-27 22:02:38 +00:00
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-07-04 03:12:22 +00:00
|
|
|
#[test]
|
|
|
|
fn bad_texture() {
|
|
|
|
check(
|
|
|
|
r#"
|
2022-01-19 15:33:06 +00:00
|
|
|
@group(0) @binding(0) var sampler1 : sampler;
|
2021-07-04 03:12:22 +00:00
|
|
|
|
2022-04-15 09:54:15 +00:00
|
|
|
@fragment
|
2022-01-19 15:33:06 +00:00
|
|
|
fn main() -> @location(0) vec4<f32> {
|
2021-07-04 03:12:22 +00:00
|
|
|
let a = 3;
|
2021-11-24 13:28:23 +00:00
|
|
|
return textureSample(a, sampler1, vec2<f32>(0.0));
|
2021-07-04 03:12:22 +00:00
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: expected an image, but found 'a' which is not an image
|
|
|
|
┌─ wgsl:7:38
|
|
|
|
│
|
2021-11-24 13:28:23 +00:00
|
|
|
7 │ return textureSample(a, sampler1, vec2<f32>(0.0));
|
2021-07-04 03:12:22 +00:00
|
|
|
│ ^ not an image
|
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-04 03:12:22 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn bad_type_cast() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn x() -> i32 {
|
|
|
|
return i32(vec2<f32>(0.0));
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: cannot cast a vec2<f32> to a i32
|
2022-03-30 05:51:54 +00:00
|
|
|
┌─ wgsl:3:28
|
2021-07-04 03:12:22 +00:00
|
|
|
│
|
|
|
|
3 │ return i32(vec2<f32>(0.0));
|
2022-03-30 05:51:54 +00:00
|
|
|
│ ^^^^^^^^^^^^^^ cannot cast a vec2<f32> to a i32
|
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn type_not_constructible() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn x() {
|
|
|
|
var _ = atomic<i32>(0);
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: type `atomic` is not constructible
|
|
|
|
┌─ wgsl:3:25
|
|
|
|
│
|
|
|
|
3 │ var _ = atomic<i32>(0);
|
|
|
|
│ ^^^^^^ type is not constructible
|
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn type_not_inferrable() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn x() {
|
|
|
|
var _ = vec2();
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: type can't be inferred
|
|
|
|
┌─ wgsl:3:25
|
|
|
|
│
|
|
|
|
3 │ var _ = vec2();
|
|
|
|
│ ^^^^ type can't be inferred
|
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unexpected_constructor_parameters() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn x() {
|
|
|
|
var _ = i32(0, 1);
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: unexpected components
|
|
|
|
┌─ wgsl:3:31
|
|
|
|
│
|
|
|
|
3 │ var _ = i32(0, 1);
|
|
|
|
│ ^^ unexpected components
|
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn constructor_parameter_type_mismatch() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn x() {
|
|
|
|
var _ = mat2x2<f32>(array(0, 1), vec2(2, 3));
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: invalid type for constructor component at index [0]
|
|
|
|
┌─ wgsl:3:37
|
|
|
|
│
|
|
|
|
3 │ var _ = mat2x2<f32>(array(0, 1), vec2(2, 3));
|
|
|
|
│ ^^^^^^^^^^^ invalid component type
|
2021-07-04 03:12:22 +00:00
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn bad_texture_sample_type() {
|
|
|
|
check(
|
|
|
|
r#"
|
2022-01-19 15:33:06 +00:00
|
|
|
@group(0) @binding(0) var sampler1 : sampler;
|
|
|
|
@group(0) @binding(1) var texture : texture_2d<bool>;
|
2021-07-04 03:12:22 +00:00
|
|
|
|
2022-04-15 09:54:15 +00:00
|
|
|
@fragment
|
2022-01-19 15:33:06 +00:00
|
|
|
fn main() -> @location(0) vec4<f32> {
|
2021-11-24 13:28:23 +00:00
|
|
|
return textureSample(texture, sampler1, vec2<f32>(0.0));
|
2021-07-04 03:12:22 +00:00
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: texture sample type must be one of f32, i32 or u32, but found bool
|
2022-01-19 15:33:06 +00:00
|
|
|
┌─ wgsl:3:60
|
2021-07-04 03:12:22 +00:00
|
|
|
│
|
2022-01-19 15:33:06 +00:00
|
|
|
3 │ @group(0) @binding(1) var texture : texture_2d<bool>;
|
|
|
|
│ ^^^^ must be one of f32, i32 or u32
|
2021-07-04 03:12:22 +00:00
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-04 03:12:22 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn bad_for_initializer() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn x() {
|
|
|
|
for ({};;) {}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: for(;;) initializer is not an assignment or a function call: '{}'
|
|
|
|
┌─ wgsl:3:22
|
|
|
|
│
|
|
|
|
3 │ for ({};;) {}
|
|
|
|
│ ^^ not an assignment or function call
|
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unknown_storage_class() {
|
|
|
|
check(
|
|
|
|
r#"
|
2022-01-19 15:33:06 +00:00
|
|
|
@group(0) @binding(0) var<bad> texture: texture_2d<f32>;
|
2021-07-04 03:12:22 +00:00
|
|
|
"#,
|
2022-01-25 23:29:02 +00:00
|
|
|
r#"error: unknown address space: 'bad'
|
2022-01-19 15:33:06 +00:00
|
|
|
┌─ wgsl:2:39
|
2021-07-04 03:12:22 +00:00
|
|
|
│
|
2022-01-19 15:33:06 +00:00
|
|
|
2 │ @group(0) @binding(0) var<bad> texture: texture_2d<f32>;
|
2022-01-25 23:29:02 +00:00
|
|
|
│ ^^^ unknown address space
|
2021-07-04 03:12:22 +00:00
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unknown_attribute() {
|
|
|
|
check(
|
|
|
|
r#"
|
2022-01-19 15:33:06 +00:00
|
|
|
@a
|
2021-07-04 03:12:22 +00:00
|
|
|
fn x() {}
|
|
|
|
"#,
|
|
|
|
r#"error: unknown attribute: 'a'
|
2022-01-19 15:33:06 +00:00
|
|
|
┌─ wgsl:2:14
|
2021-07-04 03:12:22 +00:00
|
|
|
│
|
2022-01-19 15:33:06 +00:00
|
|
|
2 │ @a
|
|
|
|
│ ^ unknown attribute
|
2021-07-04 03:12:22 +00:00
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-04 03:12:22 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-07-05 03:01:15 +00:00
|
|
|
#[test]
|
|
|
|
fn unknown_built_in() {
|
|
|
|
check(
|
|
|
|
r#"
|
2022-01-19 15:33:06 +00:00
|
|
|
fn x(@builtin(unknown_built_in) y: u32) {}
|
2021-07-05 03:01:15 +00:00
|
|
|
"#,
|
|
|
|
r#"error: unknown builtin: 'unknown_built_in'
|
2022-01-19 15:33:06 +00:00
|
|
|
┌─ wgsl:2:27
|
2021-07-05 03:01:15 +00:00
|
|
|
│
|
2022-01-19 15:33:06 +00:00
|
|
|
2 │ fn x(@builtin(unknown_built_in) y: u32) {}
|
|
|
|
│ ^^^^^^^^^^^^^^^^ unknown builtin
|
2021-07-05 03:01:15 +00:00
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-05 03:01:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unknown_access() {
|
|
|
|
check(
|
|
|
|
r#"
|
2021-07-28 05:47:18 +00:00
|
|
|
var<storage,unknown_access> x: array<u32>;
|
2021-07-05 03:01:15 +00:00
|
|
|
"#,
|
|
|
|
r#"error: unknown access: 'unknown_access'
|
2021-07-28 05:47:18 +00:00
|
|
|
┌─ wgsl:2:25
|
2021-07-05 03:01:15 +00:00
|
|
|
│
|
2021-07-28 05:47:18 +00:00
|
|
|
2 │ var<storage,unknown_access> x: array<u32>;
|
|
|
|
│ ^^^^^^^^^^^^^^ unknown access
|
2021-07-05 03:01:15 +00:00
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-05 03:01:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unknown_ident() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn main() {
|
|
|
|
let a = b;
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: no definition in scope for identifier: 'b'
|
|
|
|
┌─ wgsl:3:25
|
|
|
|
│
|
|
|
|
3 │ let a = b;
|
|
|
|
│ ^ unknown identifier
|
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-05 03:01:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unknown_scalar_type() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
let a: vec2<something>;
|
|
|
|
"#,
|
|
|
|
r#"error: unknown scalar type: 'something'
|
|
|
|
┌─ wgsl:2:25
|
|
|
|
│
|
|
|
|
2 │ let a: vec2<something>;
|
|
|
|
│ ^^^^^^^^^ unknown scalar type
|
|
|
|
│
|
|
|
|
= note: Valid scalar types are f16, f32, f64, i8, i16, i32, i64, u8, u16, u32, u64, bool
|
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-05 03:01:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unknown_type() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
let a: Vec<f32>;
|
|
|
|
"#,
|
|
|
|
r#"error: unknown type: 'Vec'
|
|
|
|
┌─ wgsl:2:20
|
|
|
|
│
|
|
|
|
2 │ let a: Vec<f32>;
|
|
|
|
│ ^^^ unknown type
|
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-05 03:01:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unknown_storage_format() {
|
|
|
|
check(
|
|
|
|
r#"
|
2021-11-24 13:28:23 +00:00
|
|
|
let storage1: texture_storage_1d<rgba>;
|
2021-07-05 03:01:15 +00:00
|
|
|
"#,
|
|
|
|
r#"error: unknown storage format: 'rgba'
|
2021-11-24 13:28:23 +00:00
|
|
|
┌─ wgsl:2:46
|
2021-07-05 03:01:15 +00:00
|
|
|
│
|
2021-11-24 13:28:23 +00:00
|
|
|
2 │ let storage1: texture_storage_1d<rgba>;
|
|
|
|
│ ^^^^ unknown storage format
|
2021-07-05 03:01:15 +00:00
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-05 03:01:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unknown_conservative_depth() {
|
|
|
|
check(
|
|
|
|
r#"
|
2022-01-19 15:33:06 +00:00
|
|
|
@early_depth_test(abc) fn main() {}
|
2021-07-05 03:01:15 +00:00
|
|
|
"#,
|
|
|
|
r#"error: unknown conservative depth: 'abc'
|
2022-01-19 15:33:06 +00:00
|
|
|
┌─ wgsl:2:31
|
2021-07-05 03:01:15 +00:00
|
|
|
│
|
2022-01-19 15:33:06 +00:00
|
|
|
2 │ @early_depth_test(abc) fn main() {}
|
|
|
|
│ ^^^ unknown conservative depth
|
2021-07-05 03:01:15 +00:00
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-05 03:01:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn struct_member_zero_size() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
struct Bar {
|
2022-03-12 21:48:10 +00:00
|
|
|
@size(0) data: array<f32>
|
2022-03-27 05:35:08 +00:00
|
|
|
}
|
2021-07-05 03:01:15 +00:00
|
|
|
"#,
|
|
|
|
r#"error: struct member size or alignment must not be 0
|
2022-01-19 15:33:06 +00:00
|
|
|
┌─ wgsl:3:23
|
2021-07-05 03:01:15 +00:00
|
|
|
│
|
2022-03-12 21:48:10 +00:00
|
|
|
3 │ @size(0) data: array<f32>
|
2022-01-19 15:33:06 +00:00
|
|
|
│ ^ struct member size or alignment must not be 0
|
2021-07-05 03:01:15 +00:00
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-05 03:01:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn struct_member_zero_align() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
struct Bar {
|
2022-03-12 21:48:10 +00:00
|
|
|
@align(0) data: array<f32>
|
2022-03-27 05:35:08 +00:00
|
|
|
}
|
2021-07-05 03:01:15 +00:00
|
|
|
"#,
|
|
|
|
r#"error: struct member size or alignment must not be 0
|
2022-01-19 15:33:06 +00:00
|
|
|
┌─ wgsl:3:24
|
2021-07-05 03:01:15 +00:00
|
|
|
│
|
2022-03-12 21:48:10 +00:00
|
|
|
3 │ @align(0) data: array<f32>
|
2022-01-19 15:33:06 +00:00
|
|
|
│ ^ struct member size or alignment must not be 0
|
2021-07-05 03:01:15 +00:00
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-05 03:01:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn inconsistent_binding() {
|
|
|
|
check(
|
|
|
|
r#"
|
2022-01-19 15:33:06 +00:00
|
|
|
fn foo(@builtin(vertex_index) @location(0) x: u32) {}
|
2021-07-05 03:01:15 +00:00
|
|
|
"#,
|
|
|
|
r#"error: input/output binding is not consistent
|
|
|
|
┌─ wgsl:2:16
|
|
|
|
│
|
2022-01-19 15:33:06 +00:00
|
|
|
2 │ fn foo(@builtin(vertex_index) @location(0) x: u32) {}
|
|
|
|
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ input/output binding is not consistent
|
2021-07-05 03:01:15 +00:00
|
|
|
|
2021-07-05 20:06:30 +00:00
|
|
|
"#,
|
2021-07-05 03:01:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unknown_local_function() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn x() {
|
|
|
|
for (a();;) {}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: unknown local function `a`
|
|
|
|
┌─ wgsl:3:22
|
|
|
|
│
|
|
|
|
3 │ for (a();;) {}
|
|
|
|
│ ^ unknown local function
|
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn let_type_mismatch() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
let x: i32 = 1.0;
|
|
|
|
"#,
|
2022-01-10 13:04:59 +00:00
|
|
|
r#"error: the type of `x` is expected to be `f32`
|
2021-07-05 03:01:15 +00:00
|
|
|
┌─ wgsl:2:17
|
|
|
|
│
|
|
|
|
2 │ let x: i32 = 1.0;
|
|
|
|
│ ^ definition of `x`
|
|
|
|
|
2022-01-10 13:04:59 +00:00
|
|
|
"#,
|
|
|
|
);
|
|
|
|
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
let x: f32 = true;
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: the type of `x` is expected to be `bool`
|
|
|
|
┌─ wgsl:3:21
|
|
|
|
│
|
|
|
|
3 │ let x: f32 = true;
|
|
|
|
│ ^ definition of `x`
|
|
|
|
|
2021-07-05 03:01:15 +00:00
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-07-06 05:16:15 +00:00
|
|
|
#[test]
|
2022-01-10 13:04:59 +00:00
|
|
|
fn var_type_mismatch() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
let x: f32 = 1;
|
|
|
|
"#,
|
|
|
|
r#"error: the type of `x` is expected to be `i32`
|
|
|
|
┌─ wgsl:2:17
|
|
|
|
│
|
|
|
|
2 │ let x: f32 = 1;
|
|
|
|
│ ^ definition of `x`
|
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
|
2021-07-06 05:16:15 +00:00
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
2022-01-10 13:04:59 +00:00
|
|
|
var x: f32 = 1u32;
|
2021-07-06 05:16:15 +00:00
|
|
|
}
|
|
|
|
"#,
|
2022-01-10 13:04:59 +00:00
|
|
|
r#"error: the type of `x` is expected to be `u32`
|
2021-07-06 05:16:15 +00:00
|
|
|
┌─ wgsl:3:21
|
|
|
|
│
|
2022-01-10 13:04:59 +00:00
|
|
|
3 │ var x: f32 = 1u32;
|
2021-07-06 05:16:15 +00:00
|
|
|
│ ^ definition of `x`
|
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn local_var_missing_type() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
var x;
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: variable `x` needs a type
|
|
|
|
┌─ wgsl:3:21
|
|
|
|
│
|
|
|
|
3 │ var x;
|
|
|
|
│ ^ definition of `x`
|
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-15 02:59:59 +00:00
|
|
|
#[test]
|
|
|
|
fn postfix_pointers() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn main() {
|
|
|
|
var v: vec4<f32> = vec4<f32>(1.0, 1.0, 1.0, 1.0);
|
|
|
|
let pv = &v;
|
|
|
|
let a = *pv[3]; // Problematic line
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: the value indexed by a `[]` subscripting expression must not be a pointer
|
|
|
|
┌─ wgsl:5:26
|
|
|
|
│
|
|
|
|
5 │ let a = *pv[3]; // Problematic line
|
|
|
|
│ ^^ expression is a pointer
|
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
|
|
|
|
check(
|
|
|
|
r#"
|
2022-03-12 21:48:10 +00:00
|
|
|
struct S { m: i32 };
|
2021-09-15 02:59:59 +00:00
|
|
|
fn main() {
|
|
|
|
var s: S = S(42);
|
|
|
|
let ps = &s;
|
|
|
|
let a = *ps.m; // Problematic line
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"error: the value accessed by a `.member` expression must not be a pointer
|
|
|
|
┌─ wgsl:6:26
|
|
|
|
│
|
|
|
|
6 │ let a = *ps.m; // Problematic line
|
|
|
|
│ ^^ expression is a pointer
|
|
|
|
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-11-24 13:28:23 +00:00
|
|
|
#[test]
|
|
|
|
fn reserved_keyword() {
|
|
|
|
// global var
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
var bool: bool = true;
|
|
|
|
"#,
|
2021-11-24 22:36:57 +00:00
|
|
|
r###"error: name ` bool: bool = true;` is a reserved keyword
|
2021-11-24 13:28:23 +00:00
|
|
|
┌─ wgsl:2:16
|
|
|
|
│
|
|
|
|
2 │ var bool: bool = true;
|
|
|
|
│ ^^^^^^^^^^^^^^^^^^^ definition of ` bool: bool = true;`
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
|
|
|
|
// global constant
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
let break: bool = true;
|
|
|
|
fn foo() {
|
|
|
|
var foo = break;
|
|
|
|
}
|
|
|
|
"#,
|
2021-11-24 22:36:57 +00:00
|
|
|
r###"error: name `break` is a reserved keyword
|
2021-11-24 13:28:23 +00:00
|
|
|
┌─ wgsl:2:17
|
|
|
|
│
|
|
|
|
2 │ let break: bool = true;
|
|
|
|
│ ^^^^^ definition of `break`
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
|
|
|
|
// local let
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
let atomic: f32 = 1.0;
|
|
|
|
}
|
|
|
|
"#,
|
2021-11-24 22:36:57 +00:00
|
|
|
r###"error: name `atomic` is a reserved keyword
|
2021-11-24 13:28:23 +00:00
|
|
|
┌─ wgsl:3:21
|
|
|
|
│
|
|
|
|
3 │ let atomic: f32 = 1.0;
|
|
|
|
│ ^^^^^^ definition of `atomic`
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
|
|
|
|
// local var
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
var sampler: f32 = 1.0;
|
|
|
|
}
|
|
|
|
"#,
|
2021-11-24 22:36:57 +00:00
|
|
|
r###"error: name `sampler` is a reserved keyword
|
2021-11-24 13:28:23 +00:00
|
|
|
┌─ wgsl:3:21
|
|
|
|
│
|
|
|
|
3 │ var sampler: f32 = 1.0;
|
|
|
|
│ ^^^^^^^ definition of `sampler`
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
|
|
|
|
// fn name
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
fn break() {}
|
|
|
|
"#,
|
2021-11-24 22:36:57 +00:00
|
|
|
r###"error: name `break` is a reserved keyword
|
2021-11-24 13:28:23 +00:00
|
|
|
┌─ wgsl:2:16
|
|
|
|
│
|
|
|
|
2 │ fn break() {}
|
|
|
|
│ ^^^^^ definition of `break`
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
|
|
|
|
// struct
|
|
|
|
check(
|
|
|
|
r#"
|
2022-03-27 05:35:08 +00:00
|
|
|
struct array {}
|
2021-11-24 13:28:23 +00:00
|
|
|
"#,
|
2021-11-24 22:36:57 +00:00
|
|
|
r###"error: name `array` is a reserved keyword
|
2021-11-24 13:28:23 +00:00
|
|
|
┌─ wgsl:2:20
|
|
|
|
│
|
2022-03-27 05:35:08 +00:00
|
|
|
2 │ struct array {}
|
2021-11-24 13:28:23 +00:00
|
|
|
│ ^^^^^ definition of `array`
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
|
|
|
|
// struct member
|
|
|
|
check(
|
|
|
|
r#"
|
2022-03-27 05:35:08 +00:00
|
|
|
struct Foo { sampler: f32 }
|
2021-11-24 13:28:23 +00:00
|
|
|
"#,
|
2021-11-24 22:36:57 +00:00
|
|
|
r###"error: name `sampler` is a reserved keyword
|
2021-11-24 13:28:23 +00:00
|
|
|
┌─ wgsl:2:26
|
|
|
|
│
|
2022-03-27 05:35:08 +00:00
|
|
|
2 │ struct Foo { sampler: f32 }
|
2021-11-24 13:28:23 +00:00
|
|
|
│ ^^^^^^^ definition of `sampler`
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-11-24 22:36:57 +00:00
|
|
|
#[test]
|
|
|
|
fn module_scope_identifier_redefinition() {
|
|
|
|
// let
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
let foo: bool = true;
|
|
|
|
let foo: bool = true;
|
|
|
|
"#,
|
|
|
|
r###"error: redefinition of `foo`
|
|
|
|
┌─ wgsl:2:17
|
|
|
|
│
|
|
|
|
2 │ let foo: bool = true;
|
|
|
|
│ ^^^ previous definition of `foo`
|
|
|
|
3 │ let foo: bool = true;
|
|
|
|
│ ^^^ redefinition of `foo`
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
// var
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
var foo: bool = true;
|
|
|
|
var foo: bool = true;
|
|
|
|
"#,
|
|
|
|
r###"error: redefinition of ` foo: bool = true;`
|
|
|
|
┌─ wgsl:2:16
|
|
|
|
│
|
|
|
|
2 │ var foo: bool = true;
|
|
|
|
│ ^^^^^^^^^^^^^^^^^^ previous definition of ` foo: bool = true;`
|
|
|
|
3 │ var foo: bool = true;
|
|
|
|
│ ^^^^^^^^^^^^^^^^^^ redefinition of ` foo: bool = true;`
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
|
|
|
|
// let and var
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
var foo: bool = true;
|
|
|
|
let foo: bool = true;
|
|
|
|
"#,
|
|
|
|
r###"error: redefinition of `foo`
|
|
|
|
┌─ wgsl:2:16
|
|
|
|
│
|
|
|
|
2 │ var foo: bool = true;
|
|
|
|
│ ^^^^^^^^^^^^^^^^^^ previous definition of ` foo: bool = true;`
|
|
|
|
3 │ let foo: bool = true;
|
|
|
|
│ ^^^ redefinition of `foo`
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
|
|
|
|
// function
|
|
|
|
check(
|
|
|
|
r#"fn foo() {}
|
|
|
|
fn bar() {}
|
|
|
|
fn foo() {}"#,
|
|
|
|
r###"error: redefinition of `foo`
|
|
|
|
┌─ wgsl:1:4
|
|
|
|
│
|
|
|
|
1 │ fn foo() {}
|
|
|
|
│ ^^^ previous definition of `foo`
|
|
|
|
2 │ fn bar() {}
|
|
|
|
3 │ fn foo() {}
|
|
|
|
│ ^^^ redefinition of `foo`
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
|
|
|
|
// let and function
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
let foo: bool = true;
|
|
|
|
fn foo() {}
|
|
|
|
"#,
|
|
|
|
r###"error: redefinition of `foo`
|
|
|
|
┌─ wgsl:2:17
|
|
|
|
│
|
|
|
|
2 │ let foo: bool = true;
|
|
|
|
│ ^^^ previous definition of `foo`
|
|
|
|
3 │ fn foo() {}
|
|
|
|
│ ^^^ redefinition of `foo`
|
|
|
|
|
|
|
|
"###,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-05-13 17:29:03 +00:00
|
|
|
macro_rules! check_validation_error {
|
2021-05-26 16:11:18 +00:00
|
|
|
// We want to support an optional guard expression after the pattern, so
|
|
|
|
// that we can check values we can't match against, like strings.
|
|
|
|
// Unfortunately, we can't simply include `$( if $guard:expr )?` in the
|
|
|
|
// pattern, because Rust treats `?` as a repetition operator, and its count
|
|
|
|
// (0 or 1) will not necessarily match `$source`.
|
2021-05-13 17:29:03 +00:00
|
|
|
( $( $source:literal ),* : $pattern:pat ) => {
|
2021-05-26 16:11:18 +00:00
|
|
|
check_validation_error!( @full $( $source ),* : $pattern if true ; "");
|
|
|
|
};
|
|
|
|
|
|
|
|
( $( $source:literal ),* : $pattern:pat if $guard:expr ) => {
|
|
|
|
check_validation_error!( @full $( $source ),* : $pattern if $guard ; stringify!( $guard ) );
|
|
|
|
};
|
|
|
|
|
|
|
|
( @full $( $source:literal ),* : $pattern:pat if $guard:expr ; $guard_string:expr ) => {
|
2021-05-13 17:29:03 +00:00
|
|
|
$(
|
|
|
|
let error = validation_error($source);
|
2021-05-26 16:11:18 +00:00
|
|
|
if ! matches!(&error, $pattern if $guard) {
|
2021-05-13 17:29:03 +00:00
|
|
|
eprintln!("validation error does not match pattern:\n\
|
2021-05-27 21:01:40 +00:00
|
|
|
source code: {}\n\
|
|
|
|
\n\
|
|
|
|
actual result:\n\
|
2021-05-26 16:11:18 +00:00
|
|
|
{:#?}\n\
|
|
|
|
\n\
|
|
|
|
expected match for pattern:\n\
|
|
|
|
{}{}",
|
2021-05-27 21:01:40 +00:00
|
|
|
stringify!($source),
|
2021-05-26 16:11:18 +00:00
|
|
|
error,
|
|
|
|
stringify!($pattern),
|
|
|
|
$guard_string);
|
2021-05-13 17:29:03 +00:00
|
|
|
panic!("validation error does not match pattern");
|
|
|
|
}
|
|
|
|
)*
|
2021-05-26 16:11:18 +00:00
|
|
|
};
|
2021-05-13 17:29:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn validation_error(source: &str) -> Result<naga::valid::ModuleInfo, naga::valid::ValidationError> {
|
2021-05-27 22:02:38 +00:00
|
|
|
let module = match naga::front::wgsl::parse_str(source) {
|
|
|
|
Ok(module) => module,
|
|
|
|
Err(err) => {
|
|
|
|
eprintln!("WGSL parse failed:");
|
|
|
|
panic!("{}", err.emit_to_string(source));
|
|
|
|
}
|
|
|
|
};
|
2021-05-13 17:29:03 +00:00
|
|
|
naga::valid::Validator::new(
|
|
|
|
naga::valid::ValidationFlags::all(),
|
|
|
|
naga::valid::Capabilities::empty(),
|
|
|
|
)
|
|
|
|
.validate(&module)
|
2021-10-25 02:47:03 +00:00
|
|
|
.map_err(|e| e.into_inner()) // TODO: Add tests for spans, too?
|
2021-05-13 17:29:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn invalid_arrays() {
|
|
|
|
check_validation_error! {
|
|
|
|
"type Bad = array<array<f32>, 4>;",
|
|
|
|
"type Bad = array<sampler, 4>;",
|
|
|
|
"type Bad = array<texture_2d<f32>, 4>;":
|
|
|
|
Err(naga::valid::ValidationError::Type {
|
|
|
|
error: naga::valid::TypeError::InvalidArrayBaseType(_),
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
check_validation_error! {
|
|
|
|
"type Bad = array<f32, true>;",
|
|
|
|
r#"
|
|
|
|
let length: f32 = 2.718;
|
|
|
|
type Bad = array<f32, length>;
|
|
|
|
"#:
|
|
|
|
Err(naga::valid::ValidationError::Type {
|
|
|
|
error: naga::valid::TypeError::InvalidArraySizeConstant(_),
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
2021-06-16 21:42:20 +00:00
|
|
|
|
|
|
|
check_validation_error! {
|
|
|
|
"type Bad = array<f32, 0>;",
|
|
|
|
"type Bad = array<f32, -1>;":
|
|
|
|
Err(naga::valid::ValidationError::Type {
|
|
|
|
error: naga::valid::TypeError::NonPositiveArrayLength(_),
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
2021-05-13 17:29:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn invalid_structs() {
|
|
|
|
check_validation_error! {
|
2022-03-27 05:35:08 +00:00
|
|
|
"struct Bad { data: sampler }",
|
|
|
|
"struct Bad { data: texture_2d<f32> }":
|
2021-05-13 17:29:03 +00:00
|
|
|
Err(naga::valid::ValidationError::Type {
|
|
|
|
error: naga::valid::TypeError::InvalidData(_),
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
check_validation_error! {
|
2022-03-27 05:35:08 +00:00
|
|
|
"struct Bad { data: array<f32>, other: f32, }":
|
2021-05-13 17:29:03 +00:00
|
|
|
Err(naga::valid::ValidationError::Type {
|
|
|
|
error: naga::valid::TypeError::InvalidDynamicArray(_, _),
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
2022-04-14 16:36:53 +00:00
|
|
|
|
|
|
|
check_validation_error! {
|
|
|
|
"struct Empty {}":
|
|
|
|
Err(naga::valid::ValidationError::Type {
|
|
|
|
error: naga::valid::TypeError::EmptyStruct,
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
2021-05-13 17:29:03 +00:00
|
|
|
}
|
2021-05-21 20:11:35 +00:00
|
|
|
|
2021-05-26 16:11:18 +00:00
|
|
|
#[test]
|
|
|
|
fn invalid_functions() {
|
|
|
|
check_validation_error! {
|
2021-05-27 21:01:40 +00:00
|
|
|
"fn unacceptable_unsized(arg: array<f32>) { }",
|
|
|
|
"
|
2022-03-27 05:35:08 +00:00
|
|
|
struct Unsized { data: array<f32> }
|
2021-05-27 21:01:40 +00:00
|
|
|
fn unacceptable_unsized(arg: Unsized) { }
|
|
|
|
":
|
2021-05-26 16:11:18 +00:00
|
|
|
Err(naga::valid::ValidationError::Function {
|
|
|
|
name: function_name,
|
|
|
|
error: naga::valid::FunctionError::InvalidArgumentType {
|
|
|
|
index: 0,
|
|
|
|
name: argument_name,
|
|
|
|
},
|
|
|
|
..
|
|
|
|
})
|
2021-05-27 21:01:40 +00:00
|
|
|
if function_name == "unacceptable_unsized" && argument_name == "arg"
|
|
|
|
}
|
|
|
|
|
2022-01-25 23:29:02 +00:00
|
|
|
// Pointer's address space cannot hold unsized data.
|
2021-05-27 21:01:40 +00:00
|
|
|
check_validation_error! {
|
2021-11-11 01:32:40 +00:00
|
|
|
"fn unacceptable_unsized(arg: ptr<workgroup, array<f32>>) { }",
|
2021-05-27 21:01:40 +00:00
|
|
|
"
|
2022-03-27 05:35:08 +00:00
|
|
|
struct Unsized { data: array<f32> }
|
2021-11-11 01:32:40 +00:00
|
|
|
fn unacceptable_unsized(arg: ptr<workgroup, Unsized>) { }
|
2021-05-27 21:01:40 +00:00
|
|
|
":
|
2021-11-11 01:32:40 +00:00
|
|
|
Err(naga::valid::ValidationError::Type {
|
|
|
|
error: naga::valid::TypeError::InvalidPointerToUnsized {
|
|
|
|
base: _,
|
2022-01-25 23:29:02 +00:00
|
|
|
space: naga::AddressSpace::WorkGroup { .. },
|
2021-11-11 01:32:40 +00:00
|
|
|
},
|
|
|
|
..
|
|
|
|
})
|
2021-05-26 16:11:18 +00:00
|
|
|
}
|
2021-09-27 22:49:28 +00:00
|
|
|
|
2021-11-11 01:32:40 +00:00
|
|
|
// Pointers of these storage classes cannot be passed as arguments.
|
2021-09-27 22:49:28 +00:00
|
|
|
check_validation_error! {
|
2022-01-25 23:29:02 +00:00
|
|
|
"fn unacceptable_ptr_space(arg: ptr<storage, array<f32>>) { }":
|
2021-11-11 01:32:40 +00:00
|
|
|
Err(naga::valid::ValidationError::Function {
|
|
|
|
name: function_name,
|
2022-01-25 23:29:02 +00:00
|
|
|
error: naga::valid::FunctionError::InvalidArgumentPointerSpace {
|
2021-11-11 01:32:40 +00:00
|
|
|
index: 0,
|
|
|
|
name: argument_name,
|
2022-01-25 23:29:02 +00:00
|
|
|
space: naga::AddressSpace::Storage { .. },
|
2021-11-11 01:32:40 +00:00
|
|
|
},
|
|
|
|
..
|
|
|
|
})
|
2022-01-25 23:29:02 +00:00
|
|
|
if function_name == "unacceptable_ptr_space" && argument_name == "arg"
|
2021-11-11 01:32:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check_validation_error! {
|
2022-01-25 23:29:02 +00:00
|
|
|
"fn unacceptable_ptr_space(arg: ptr<uniform, f32>) { }":
|
2021-09-27 22:49:28 +00:00
|
|
|
Err(naga::valid::ValidationError::Function {
|
|
|
|
name: function_name,
|
2022-01-25 23:29:02 +00:00
|
|
|
error: naga::valid::FunctionError::InvalidArgumentPointerSpace {
|
2021-09-27 22:49:28 +00:00
|
|
|
index: 0,
|
|
|
|
name: argument_name,
|
2022-01-25 23:29:02 +00:00
|
|
|
space: naga::AddressSpace::Uniform,
|
2021-09-27 22:49:28 +00:00
|
|
|
},
|
|
|
|
..
|
|
|
|
})
|
2022-01-25 23:29:02 +00:00
|
|
|
if function_name == "unacceptable_ptr_space" && argument_name == "arg"
|
2021-09-27 22:49:28 +00:00
|
|
|
}
|
2021-05-26 16:11:18 +00:00
|
|
|
}
|
|
|
|
|
2021-09-16 21:42:13 +00:00
|
|
|
#[test]
|
|
|
|
fn pointer_type_equivalence() {
|
|
|
|
check_validation_error! {
|
|
|
|
r#"
|
|
|
|
fn f(pv: ptr<function, vec2<f32>>, pf: ptr<function, f32>) { }
|
|
|
|
|
|
|
|
fn g() {
|
|
|
|
var m: mat2x2<f32>;
|
|
|
|
let pv: ptr<function, vec2<f32>> = &m.x;
|
|
|
|
let pf: ptr<function, f32> = &m.x.x;
|
|
|
|
|
|
|
|
f(pv, pf);
|
|
|
|
}
|
|
|
|
"#:
|
|
|
|
Ok(_)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-21 20:11:35 +00:00
|
|
|
#[test]
|
|
|
|
fn missing_bindings() {
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
2022-04-15 09:54:15 +00:00
|
|
|
@vertex
|
2022-01-19 15:33:06 +00:00
|
|
|
fn vertex(input: vec4<f32>) -> @location(0) vec4<f32> {
|
2021-05-21 20:11:35 +00:00
|
|
|
return input;
|
|
|
|
}
|
|
|
|
":
|
|
|
|
Err(naga::valid::ValidationError::EntryPoint {
|
|
|
|
stage: naga::ShaderStage::Vertex,
|
|
|
|
error: naga::valid::EntryPointError::Argument(
|
|
|
|
0,
|
|
|
|
naga::valid::VaryingError::MissingBinding,
|
|
|
|
),
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
2022-04-15 09:54:15 +00:00
|
|
|
@vertex
|
2022-01-19 15:33:06 +00:00
|
|
|
fn vertex(@location(0) input: vec4<f32>, more_input: f32) -> @location(0) vec4<f32> {
|
2021-05-21 20:11:35 +00:00
|
|
|
return input + more_input;
|
|
|
|
}
|
|
|
|
":
|
|
|
|
Err(naga::valid::ValidationError::EntryPoint {
|
|
|
|
stage: naga::ShaderStage::Vertex,
|
|
|
|
error: naga::valid::EntryPointError::Argument(
|
|
|
|
1,
|
|
|
|
naga::valid::VaryingError::MissingBinding,
|
|
|
|
),
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
2022-04-15 09:54:15 +00:00
|
|
|
@vertex
|
2022-01-19 15:33:06 +00:00
|
|
|
fn vertex(@location(0) input: vec4<f32>) -> vec4<f32> {
|
2021-05-21 20:11:35 +00:00
|
|
|
return input;
|
|
|
|
}
|
|
|
|
":
|
|
|
|
Err(naga::valid::ValidationError::EntryPoint {
|
|
|
|
stage: naga::ShaderStage::Vertex,
|
|
|
|
error: naga::valid::EntryPointError::Result(
|
|
|
|
naga::valid::VaryingError::MissingBinding,
|
|
|
|
),
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
|
|
|
struct VertexIn {
|
2022-03-12 21:48:10 +00:00
|
|
|
@location(0) pos: vec4<f32>,
|
|
|
|
uv: vec2<f32>
|
2022-03-27 05:35:08 +00:00
|
|
|
}
|
2021-05-21 20:11:35 +00:00
|
|
|
|
2022-04-15 09:54:15 +00:00
|
|
|
@vertex
|
2022-01-19 15:33:06 +00:00
|
|
|
fn vertex(input: VertexIn) -> @location(0) vec4<f32> {
|
2021-05-21 20:11:35 +00:00
|
|
|
return input.pos;
|
|
|
|
}
|
|
|
|
":
|
|
|
|
Err(naga::valid::ValidationError::EntryPoint {
|
|
|
|
stage: naga::ShaderStage::Vertex,
|
|
|
|
error: naga::valid::EntryPointError::Argument(
|
|
|
|
0,
|
|
|
|
naga::valid::VaryingError::MemberMissingBinding(1),
|
|
|
|
),
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2021-06-04 16:57:20 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn invalid_access() {
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
|
|
|
fn array_by_value(a: array<i32, 5>, i: i32) -> i32 {
|
|
|
|
return a[i];
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn matrix_by_value(m: mat4x4<f32>, i: i32) -> vec4<f32> {
|
|
|
|
return m[i];
|
|
|
|
}
|
|
|
|
":
|
|
|
|
Err(naga::valid::ValidationError::Function {
|
|
|
|
error: naga::valid::FunctionError::Expression {
|
|
|
|
error: naga::valid::ExpressionError::IndexMustBeConstant(_),
|
|
|
|
..
|
|
|
|
},
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
2021-05-27 22:02:38 +00:00
|
|
|
|
|
|
|
check_validation_error! {
|
|
|
|
r#"
|
|
|
|
fn main() -> f32 {
|
|
|
|
let a = array<f32, 3>(0., 1., 2.);
|
|
|
|
return a[3];
|
|
|
|
}
|
|
|
|
"#:
|
|
|
|
Err(naga::valid::ValidationError::Function {
|
|
|
|
error: naga::valid::FunctionError::Expression {
|
|
|
|
error: naga::valid::ExpressionError::IndexOutOfBounds(_, _),
|
|
|
|
..
|
|
|
|
},
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
2021-06-04 16:57:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn valid_access() {
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
|
|
|
fn vector_by_value(v: vec4<i32>, i: i32) -> i32 {
|
|
|
|
return v[i];
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn matrix_dynamic(m: mat4x4<f32>, i: i32, j: i32) -> f32 {
|
|
|
|
var temp: mat4x4<f32> = m;
|
|
|
|
// Dynamically indexing the column vector applies
|
|
|
|
// `Access` to a `ValuePointer`.
|
|
|
|
return temp[i][j];
|
|
|
|
}
|
2021-09-15 02:59:59 +00:00
|
|
|
",
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
var v: vec4<f32> = vec4<f32>(1.0, 1.0, 1.0, 1.0);
|
|
|
|
let pv = &v;
|
|
|
|
let a = (*pv)[3];
|
|
|
|
}
|
2021-06-04 16:57:20 +00:00
|
|
|
":
|
|
|
|
Ok(_)
|
|
|
|
}
|
|
|
|
}
|
2021-05-27 21:01:40 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn invalid_local_vars() {
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
2022-03-27 05:35:08 +00:00
|
|
|
struct Unsized { data: array<f32> }
|
2021-05-27 21:01:40 +00:00
|
|
|
fn local_ptr_dynamic_array(okay: ptr<storage, Unsized>) {
|
2021-09-15 02:59:59 +00:00
|
|
|
var not_okay: ptr<storage, array<f32>> = &(*okay).data;
|
2021-05-27 21:01:40 +00:00
|
|
|
}
|
|
|
|
":
|
|
|
|
Err(naga::valid::ValidationError::Function {
|
|
|
|
error: naga::valid::FunctionError::LocalVariable {
|
|
|
|
name: local_var_name,
|
|
|
|
error: naga::valid::LocalVariableError::InvalidType(_),
|
|
|
|
..
|
|
|
|
},
|
|
|
|
..
|
|
|
|
})
|
|
|
|
if local_var_name == "not_okay"
|
|
|
|
}
|
|
|
|
}
|
2021-09-20 15:45:53 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn dead_code() {
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
|
|
|
fn dead_code_after_if(condition: bool) -> i32 {
|
|
|
|
if (condition) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
":
|
|
|
|
Ok(_)
|
|
|
|
}
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
|
|
|
fn dead_code_after_block() -> i32 {
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
":
|
|
|
|
Err(naga::valid::ValidationError::Function {
|
|
|
|
error: naga::valid::FunctionError::InstructionsAfterReturn,
|
|
|
|
..
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2021-10-01 13:40:18 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn invalid_runtime_sized_arrays() {
|
|
|
|
// You can't have structs whose last member is an unsized struct. An unsized
|
|
|
|
// array may only appear as the last member of a struct used directly as a
|
|
|
|
// variable's store type.
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
|
|
|
struct Unsized {
|
2022-03-12 21:48:10 +00:00
|
|
|
arr: array<f32>
|
2022-03-27 05:35:08 +00:00
|
|
|
}
|
2021-10-01 13:40:18 +00:00
|
|
|
|
|
|
|
struct Outer {
|
2022-03-12 21:48:10 +00:00
|
|
|
legit: i32,
|
|
|
|
unsized: Unsized
|
2022-03-27 05:35:08 +00:00
|
|
|
}
|
2021-10-01 13:40:18 +00:00
|
|
|
|
2022-01-19 15:33:06 +00:00
|
|
|
@group(0) @binding(0) var<storage> outer: Outer;
|
2021-10-01 13:40:18 +00:00
|
|
|
|
|
|
|
fn fetch(i: i32) -> f32 {
|
|
|
|
return outer.unsized.arr[i];
|
|
|
|
}
|
|
|
|
":
|
|
|
|
Err(naga::valid::ValidationError::Type {
|
|
|
|
name: struct_name,
|
|
|
|
error: naga::valid::TypeError::InvalidDynamicArray(member_name, _),
|
|
|
|
..
|
|
|
|
})
|
|
|
|
if struct_name == "Outer" && member_name == "unsized"
|
|
|
|
}
|
|
|
|
}
|
2021-10-01 16:47:39 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn select() {
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
|
|
|
fn select_pointers(which: bool) -> i32 {
|
|
|
|
var x: i32 = 1;
|
|
|
|
var y: i32 = 2;
|
|
|
|
let ptr = select(&x, &y, which);
|
|
|
|
return *ptr;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn select_arrays(which: bool) -> i32 {
|
|
|
|
var x: array<i32, 4>;
|
|
|
|
var y: array<i32, 4>;
|
|
|
|
let s = select(x, y, which);
|
|
|
|
return s[0];
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
2022-03-27 05:35:08 +00:00
|
|
|
struct S { member: i32 }
|
2021-10-01 16:47:39 +00:00
|
|
|
fn select_structs(which: bool) -> S {
|
|
|
|
var x: S = S(1);
|
|
|
|
var y: S = S(2);
|
|
|
|
let s = select(x, y, which);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
":
|
|
|
|
Err(
|
|
|
|
naga::valid::ValidationError::Function {
|
|
|
|
name,
|
|
|
|
error: naga::valid::FunctionError::Expression {
|
|
|
|
error: naga::valid::ExpressionError::InvalidSelectTypes,
|
|
|
|
..
|
|
|
|
},
|
|
|
|
..
|
|
|
|
},
|
|
|
|
)
|
|
|
|
if name.starts_with("select_")
|
|
|
|
}
|
|
|
|
}
|
2021-10-27 08:59:15 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn last_case_falltrough() {
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
|
|
|
fn test_falltrough() {
|
|
|
|
switch(0) {
|
2021-11-15 00:07:55 +00:00
|
|
|
default: {}
|
2021-10-27 08:59:15 +00:00
|
|
|
case 0: {
|
|
|
|
fallthrough;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
":
|
|
|
|
Err(
|
|
|
|
naga::valid::ValidationError::Function {
|
|
|
|
error: naga::valid::FunctionError::LastCaseFallTrough,
|
|
|
|
..
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2021-11-15 00:07:55 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn missing_default_case() {
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
|
|
|
fn test_missing_default_case() {
|
|
|
|
switch(0) {
|
|
|
|
case 0: {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
":
|
|
|
|
Err(
|
|
|
|
naga::valid::ValidationError::Function {
|
|
|
|
error: naga::valid::FunctionError::MissingDefaultCase,
|
|
|
|
..
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2021-11-16 06:46:00 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn wrong_access_mode() {
|
|
|
|
// The assignments to `global.i` should be forbidden, because they are in
|
|
|
|
// variables whose access mode is `read`, not `read_write`.
|
|
|
|
check_validation_error! {
|
|
|
|
"
|
|
|
|
struct Globals {
|
2022-03-12 21:48:10 +00:00
|
|
|
i: i32
|
2022-03-27 05:35:08 +00:00
|
|
|
}
|
2021-11-16 06:46:00 +00:00
|
|
|
|
2022-01-19 15:33:06 +00:00
|
|
|
@group(0) @binding(0)
|
2021-11-16 06:46:00 +00:00
|
|
|
var<storage> globals: Globals;
|
|
|
|
|
|
|
|
fn store(v: i32) {
|
|
|
|
globals.i = v;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
struct Globals {
|
2022-03-12 21:48:10 +00:00
|
|
|
i: i32
|
2022-03-27 05:35:08 +00:00
|
|
|
}
|
2021-11-16 06:46:00 +00:00
|
|
|
|
2022-01-19 15:33:06 +00:00
|
|
|
@group(0) @binding(0)
|
2021-11-16 06:46:00 +00:00
|
|
|
var<uniform> globals: Globals;
|
|
|
|
|
|
|
|
fn store(v: i32) {
|
|
|
|
globals.i = v;
|
|
|
|
}
|
|
|
|
":
|
|
|
|
Err(
|
|
|
|
naga::valid::ValidationError::Function {
|
|
|
|
name,
|
|
|
|
error: naga::valid::FunctionError::InvalidStorePointer(_),
|
|
|
|
..
|
|
|
|
},
|
|
|
|
)
|
|
|
|
if name == "store"
|
|
|
|
}
|
|
|
|
}
|