Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/spirv-headers
2 changes: 1 addition & 1 deletion external/spirv-tools
Submodule spirv-tools updated 52 files
+1 −1 .github/workflows/autoroll.yml
+4 −4 .github/workflows/bazel.yml
+2 −2 .github/workflows/ios.yml
+1 −1 .github/workflows/release.yml
+3 −3 .github/workflows/scorecard.yml
+1 −1 .github/workflows/wasm.yml
+3 −0 CHANGES
+3 −3 DEPS
+4 −0 source/diff/diff.cpp
+96 −35 source/opt/aggressive_dead_code_elim_pass.cpp
+10 −1 source/opt/cfg_cleanup_pass.cpp
+40 −23 source/opt/combine_access_chains.cpp
+6 −6 source/opt/combine_access_chains.h
+190 −4 source/opt/const_folding_rules.cpp
+25 −11 source/opt/copy_prop_arrays.cpp
+5 −3 source/opt/copy_prop_arrays.h
+8 −4 source/opt/debug_info_manager.cpp
+393 −66 source/opt/folding_rules.cpp
+16 −0 source/opt/ir_context.cpp
+3 −0 source/opt/ir_context.h
+13 −11 source/opt/mem_pass.cpp
+4 −4 source/opt/mem_pass.h
+18 −4 source/opt/pass.cpp
+7 −23 source/opt/value_number_table.cpp
+2 −1 source/util/small_vector.h
+10 −5 source/val/validate_atomics.cpp
+108 −93 source/val/validate_builtins.cpp
+2 −20 source/val/validate_decorations.cpp
+5 −2 source/val/validate_logical_pointers.cpp
+38 −7 source/val/validate_memory.cpp
+18 −4 source/val/validate_mesh_shading.cpp
+107 −60 source/val/validate_mode_setting.cpp
+11 −3 source/val/validate_type.cpp
+4 −0 source/val/validation_state.cpp
+292 −0 test/diff/diff_files/OpExtInst_in_variables_autogen.cpp
+40 −0 test/diff/diff_files/OpExtInst_in_variables_dst.spvasm
+41 −0 test/diff/diff_files/OpExtInst_in_variables_src.spvasm
+1 −0 test/diff/diff_files/diff_test_files_autogen.cmake
+99 −21 test/opt/aggressive_dead_code_elim_test.cpp
+1,373 −89 test/opt/fold_test.cpp
+64 −0 test/opt/strip_nonsemantic_info_test.cpp
+6 −4 test/val/val_arithmetics_test.cpp
+6 −4 test/val/val_atomics_test.cpp
+342 −6 test/val/val_builtins_test.cpp
+3 −2 test/val/val_conversion_test.cpp
+3 −3 test/val/val_decoration_test.cpp
+50 −12 test/val/val_id_test.cpp
+76 −0 test/val/val_logical_pointers_test.cpp
+3 −2 test/val/val_memory_test.cpp
+400 −0 test/val/val_mesh_shading_test.cpp
+55 −0 test/val/val_misc_test.cpp
+47 −1 test/val/val_modes_test.cpp
2 changes: 1 addition & 1 deletion external/spirv-tools-generated/build-version.inc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"v2025.5", "SPIRV-Tools v2025.5 v2025.5.rc1-0-g262bdab4"
"v2026.1-dev", "SPIRV-Tools v2026.1-dev v2025.5-36-g91ac969e"
Loading