Skip to content

Commit

Permalink
[spirv] Update SPIRV-Tools and SPIRV-Headers (#4352)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaebaek authored Mar 25, 2022
1 parent c701ece commit 2dc067b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion external/SPIRV-Tools
Submodule SPIRV-Tools updated 52 files
+1 −0 Android.mk
+89 −77 BUILD.gn
+7 −0 include/spirv-tools/optimizer.hpp
+3 −3 source/assembly_grammar.cpp
+174 −170 source/diff/diff.cpp
+9 −5 source/operand.cpp
+2 −0 source/opt/CMakeLists.txt
+1 −0 source/opt/aggressive_dead_code_elim_pass.cpp
+1 −1 source/opt/dead_branch_elim_pass.cpp
+146 −0 source/opt/eliminate_dead_input_components_pass.cpp
+59 −0 source/opt/eliminate_dead_input_components_pass.h
+0 −7 source/opt/inst_bindless_check_pass.cpp
+0 −7 source/opt/interp_fixup_pass.cpp
+1 −0 source/opt/local_access_chain_convert_pass.cpp
+1 −0 source/opt/local_single_block_elim_pass.cpp
+1 −0 source/opt/local_single_store_elim_pass.cpp
+7 −0 source/opt/optimizer.cpp
+7 −0 source/opt/pass.h
+1 −0 source/opt/passes.h
+1 −1 source/opt/private_to_local_pass.cpp
+4 −0 source/opt/spread_volatile_semantics.cpp
+7 −0 source/opt/spread_volatile_semantics.h
+6 −0 source/opt/types.cpp
+1 −0 source/opt/types.h
+6 −5 source/text.cpp
+2 −2 source/val/validate_annotation.cpp
+1 −1 source/val/validate_atomics.cpp
+48 −35 source/val/validate_bitwise.cpp
+3 −8 source/val/validate_cfg.cpp
+25 −25 source/val/validate_decorations.cpp
+18 −19 source/val/validate_function.cpp
+129 −116 source/val/validate_image.cpp
+1 −2 source/val/validate_logicals.cpp
+54 −58 source/val/validate_memory.cpp
+5 −4 source/val/validate_type.cpp
+28 −7 source/val/validation_state.cpp
+2 −4 source/val/validation_state.h
+1 −0 test/opt/CMakeLists.txt
+404 −0 test/opt/eliminate_dead_input_components_test.cpp
+20 −0 test/opt/spread_volatile_semantics_test.cpp
+41 −0 test/text_to_binary.extension_test.cpp
+2 −0 test/val/val_annotation_test.cpp
+108 −9 test/val/val_bitwise_test.cpp
+2 −2 test/val/val_capability_test.cpp
+2 −2 test/val/val_conversion_test.cpp
+2 −0 test/val/val_data_test.cpp
+88 −58 test/val/val_decoration_test.cpp
+13 −5 test/val/val_fixtures.h
+98 −3 test/val/val_image_test.cpp
+4 −4 test/val/val_logicals_test.cpp
+280 −43 test/val/val_memory_test.cpp
+4 −0 tools/opt/opt.cpp

0 comments on commit 2dc067b

Please sign in to comment.