Skip to content

Commit

Permalink
change binaryen commit and delete .dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
doehyunbaek committed Aug 20, 2024
1 parent 2a8040f commit a50383e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 19 deletions.
18 changes: 0 additions & 18 deletions .dockerignore

This file was deleted.

2 changes: 1 addition & 1 deletion third_party/binaryen
Submodule binaryen updated 85 files
+78 −3 .github/workflows/create_release.yml
+21 −3 CHANGELOG.md
+21 −4 CMakeLists.txt
+32 −1 README.md
+62 −102 scripts/fuzz_opt.py
+48 −136 scripts/fuzz_shell.js
+3 −2 scripts/gen-s-parser.py
+1 −0 scripts/test/shared.py
+646 −627 src/gen-s-parser.inc
+1 −0 src/ir/ReFinalize.cpp
+4 −0 src/ir/cost.h
+4 −0 src/ir/effects.h
+2 −0 src/ir/module-utils.cpp
+4 −0 src/ir/possible-contents.cpp
+65 −14 src/ir/subtype-exprs.h
+1 −1 src/js/binaryen.js-post.js
+1 −1 src/parser/context-decls.cpp
+747 −226 src/parser/contexts.h
+0 −255 src/parser/input-impl.h
+0 −81 src/parser/input.h
+150 −3 src/parser/lexer.cpp
+247 −40 src/parser/lexer.h
+819 −369 src/parser/parsers.h
+1 −2 src/parser/wat-parser.cpp
+92 −24 src/passes/DeNaN.cpp
+86 −0 src/passes/LegalizeJSInterface.cpp
+5 −0 src/passes/Print.cpp
+2 −1 src/passes/RemoveUnusedBrs.cpp
+1 −1 src/passes/SetGlobals.cpp
+82 −34 src/passes/StringLowering.cpp
+1 −0 src/passes/TypeGeneralizing.cpp
+16 −0 src/passes/Unsubtyping.cpp
+3 −0 src/passes/pass.cpp
+1 −0 src/passes/passes.h
+2 −2 src/support/json.cpp
+14 −0 src/support/small_vector.h
+121 −1 src/support/string.cpp
+3 −1 src/support/string.h
+3 −1 src/support/threads.cpp
+35 −11 src/tools/execution-results.h
+9 −0 src/tools/fuzzing/fuzzing.cpp
+0 −134 src/tools/js-wrapper.h
+0 −24 src/tools/wasm-opt.cpp
+4 −2 src/wasm-binary.h
+7 −0 src/wasm-builder.h
+7 −0 src/wasm-delegations-fields.def
+1 −0 src/wasm-delegations.def
+74 −13 src/wasm-interpreter.h
+8 −0 src/wasm-ir-builder.h
+1 −0 src/wasm-s-parser.h
+12 −0 src/wasm.h
+20 −0 src/wasm/wasm-binary.cpp
+34 −13 src/wasm/wasm-ir-builder.cpp
+14 −0 src/wasm/wasm-s-parser.cpp
+5 −0 src/wasm/wasm-stack.cpp
+2 −1 src/wasm/wasm-type.cpp
+82 −40 src/wasm/wasm-validator.cpp
+2 −0 src/wasm/wasm.cpp
+4 −0 src/wasm2js.h
+832 −1,433 test/gtest/wat-lexer.cpp
+69 −0 test/lit/basic/typed_continuations_contnew.wast
+104 −0 test/lit/exec/array.wast
+29 −0 test/lit/exec/i31.wast
+2 −2 test/lit/exec/no-compare-refs.wast
+31 −0 test/lit/exec/strings.wast
+3 −4 test/lit/help/wasm-opt.test
+3 −0 test/lit/help/wasm2js.test
+130 −0 test/lit/passes/denan-simd.wast
+34 −0 test/lit/passes/denan.wast
+212 −0 test/lit/passes/legalize-and-prune-js-interface.wast
+2 −2 test/lit/passes/string-gathering.wast
+128 −34 test/lit/passes/string-lowering-instructions.wast
+17 −0 test/lit/passes/string-lowering.js
+30 −4 test/lit/passes/string-lowering.wast
+103 −0 test/lit/passes/unsubtyping-casts.wast
+1 −1 test/lit/unicode-filenames.wast
+27 −0 test/lit/validation/array-init-data.wast
+25 −0 test/lit/validation/array-new-data.wast
+9 −0 test/lit/validation/imports.wast
+88 −10 test/lit/wat-kitchen-sink.wast
+0 −84 test/passes/emit-js-wrapper=a.js.txt
+0 −37 test/passes/emit-js-wrapper=a.js.wast
+0 −79 test/passes/emit-js-wrapper=a.js.wast.js
+2 −2 test/passes/fuzz-exec_all-features.txt
+2 −2 test/passes/simplify-globals_all-features_fuzz-exec.txt

0 comments on commit a50383e

Please sign in to comment.