-
Notifications
You must be signed in to change notification settings - Fork 953
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace pointer-access.spv snapshot test with WGSL source. (#1450)
The original pointer access test used SPIR-V for its input because WGSL didn't have a working pointer indirection operator at the time. Now that it does, we can just write this test in WGSL directly. Fixes #1432.
- Loading branch information
Showing
7 changed files
with
80 additions
and
28 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
( | ||
index_bounds_check_policy: ReadZeroSkipWrite, | ||
spv: ( | ||
version: (1, 2), | ||
debug: true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,71 @@ | ||
; SPIR-V | ||
; Version: 1.2 | ||
; Generator: rspirv | ||
; Bound: 16 | ||
; Bound: 42 | ||
OpCapability Shader | ||
OpCapability Linkage | ||
%1 = OpExtInstImport "GLSL.std.450" | ||
OpMemoryModel Logical GLSL450 | ||
OpSource GLSL 450 | ||
OpName %6 "v" | ||
OpName %9 "f" | ||
OpMemberName %8 0 "array" | ||
OpName %8 "DynamicArray" | ||
OpName %10 "v" | ||
OpName %13 "f" | ||
OpName %23 "index_dynamic_array" | ||
OpDecorate %7 ArrayStride 4 | ||
OpDecorate %8 Block | ||
OpMemberDecorate %8 0 Offset 0 | ||
%2 = OpTypeVoid | ||
%4 = OpTypeInt 32 1 | ||
%3 = OpConstant %4 10 | ||
%5 = OpTypeVector %4 2 | ||
%7 = OpTypePointer Function %5 | ||
%10 = OpTypeFunction %2 | ||
%12 = OpTypePointer Function %4 | ||
%14 = OpTypeInt 32 0 | ||
%13 = OpConstant %14 0 | ||
%9 = OpFunction %2 None %10 | ||
%8 = OpLabel | ||
%6 = OpVariable %7 Function | ||
OpBranch %11 | ||
%11 = OpLabel | ||
%15 = OpAccessChain %12 %6 %13 | ||
OpStore %15 %3 | ||
%6 = OpTypeInt 32 0 | ||
%7 = OpTypeRuntimeArray %6 | ||
%8 = OpTypeStruct %7 | ||
%9 = OpTypePointer Workgroup %8 | ||
%11 = OpTypePointer Function %5 | ||
%14 = OpTypeFunction %2 | ||
%16 = OpTypePointer Function %4 | ||
%17 = OpConstant %6 0 | ||
%24 = OpTypeFunction %6 %9 %4 %6 | ||
%26 = OpTypePointer Workgroup %7 | ||
%27 = OpTypePointer Workgroup %6 | ||
%30 = OpTypeBool | ||
%32 = OpConstantNull %6 | ||
%13 = OpFunction %2 None %14 | ||
%12 = OpLabel | ||
%10 = OpVariable %11 Function | ||
OpBranch %15 | ||
%15 = OpLabel | ||
%18 = OpAccessChain %16 %10 %17 | ||
OpStore %18 %3 | ||
OpReturn | ||
OpFunctionEnd | ||
%23 = OpFunction %6 None %24 | ||
%20 = OpFunctionParameter %9 | ||
%21 = OpFunctionParameter %4 | ||
%22 = OpFunctionParameter %6 | ||
%19 = OpLabel | ||
OpBranch %25 | ||
%25 = OpLabel | ||
%28 = OpArrayLength %6 %20 0 | ||
%29 = OpULessThan %30 %21 %28 | ||
OpSelectionMerge %33 None | ||
OpBranchConditional %29 %34 %33 | ||
%34 = OpLabel | ||
%31 = OpAccessChain %27 %20 %17 %21 | ||
%35 = OpLoad %6 %31 | ||
OpBranch %33 | ||
%33 = OpLabel | ||
%36 = OpPhi %6 %32 %25 %35 %34 | ||
%37 = OpArrayLength %6 %20 0 | ||
%38 = OpULessThan %30 %21 %37 | ||
OpSelectionMerge %40 None | ||
OpBranchConditional %38 %41 %40 | ||
%41 = OpLabel | ||
%39 = OpAccessChain %27 %20 %17 %21 | ||
OpStore %39 %22 | ||
OpBranch %40 | ||
%40 = OpLabel | ||
OpReturnValue %36 | ||
OpFunctionEnd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters