Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated StarlingMonkey to latest commit "aa18177" 6 Nov 2024 #44

Merged
merged 2 commits into from
Nov 26, 2024
Merged
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 runtime/StarlingMonkey
Submodule StarlingMonkey updated 96 files
+16 −33 .github/workflows/main.yml
+9 −0 ADOPTERS.md
+15 −15 CMakeLists.txt
+59 −8 README.md
+2 −2 builtins/web/crypto/crypto-algorithm.h
+2 −2 builtins/web/crypto/crypto-key-ec-components.h
+2 −2 builtins/web/crypto/crypto-key-rsa-components.h
+2 −2 builtins/web/crypto/crypto-key.h
+2 −2 builtins/web/crypto/crypto.h
+2 −2 builtins/web/crypto/json-web-key.h
+2 −2 builtins/web/crypto/subtle-crypto.h
+2 −2 builtins/web/dom-exception.h
+7 −5 builtins/web/fetch/fetch-api.cpp
+1 −0 builtins/web/fetch/fetch-errors.h
+15 −84 builtins/web/fetch/fetch_event.cpp
+2 −2 builtins/web/fetch/fetch_event.h
+781 −443 builtins/web/fetch/headers.cpp
+85 −45 builtins/web/fetch/headers.h
+179 −140 builtins/web/fetch/request-response.cpp
+11 −13 builtins/web/fetch/request-response.h
+2 −2 builtins/web/performance.h
+2 −2 builtins/web/queue-microtask.h
+2 −2 builtins/web/streams/compression-stream.h
+2 −2 builtins/web/streams/decompression-stream.h
+2 −2 builtins/web/streams/native-stream-sink.h
+2 −2 builtins/web/streams/native-stream-source.h
+2 −2 builtins/web/streams/transform-stream-default-controller.h
+39 −19 builtins/web/streams/transform-stream.cpp
+2 −2 builtins/web/streams/transform-stream.h
+2 −2 builtins/web/structured-clone.h
+28 −92 builtins/web/url.cpp
+2 −2 builtins/web/url.h
+2 −2 builtins/web/worker-location.h
+1 −1 cmake/add_as_subproject.cmake
+10 −2 cmake/openssl.cmake
+1 −1 cmake/spidermonkey.cmake
+2 −2 cmake/weval.cmake
+43 −24 componentize.sh
+2 −0 crates/rust-url/rust-url.h
+2,240 −2,362 host-apis/wasi-0.2.0/bindings/bindings.c
+2,354 −2,400 host-apis/wasi-0.2.0/bindings/bindings.h
+ host-apis/wasi-0.2.0/bindings/bindings_component_type.o
+291 −322 host-apis/wasi-0.2.0/host_api.cpp
+3 −5 host-apis/wasi-0.2.0/include/exports.h
+ host-apis/wasi-0.2.0/preview1-adapter-debug/wasi_snapshot_preview1.wasm
+ host-apis/wasi-0.2.0/preview1-adapter-release/wasi_snapshot_preview1.wasm
+77 −5 include/builtin.h
+109 −0 include/config-parser.h
+31 −10 include/extension-api.h
+31 −30 include/host_api.h
+0 −10 runtime/builtin.cpp
+7 −1 runtime/decode.cpp
+1 −0 runtime/decode.h
+37 −0 runtime/encode.cpp
+4 −0 runtime/encode.h
+168 −85 runtime/engine.cpp
+0 −2 runtime/event_loop.cpp
+55 −31 runtime/js.cpp
+2 −1 runtime/script_loader.cpp
+21 −8 runtime/sequence.hpp
+0 −0 tests/assert.js
+13 −0 tests/e2e/eventloop-stall/eventloop-stall.js
+1 −0 tests/e2e/eventloop-stall/expect_serve_stderr.txt
+1 −0 tests/e2e/headers/expect_serve_body.txt
+8 −0 tests/e2e/headers/expect_serve_headers.txt
+0 −0 tests/e2e/headers/expect_serve_stderr.txt
+42 −0 tests/e2e/headers/headers.js
+1 −0 tests/e2e/multi-stream-forwarding/expect_serve_body.txt
+58 −0 tests/e2e/multi-stream-forwarding/multi-stream-forwarding.js
+1 −0 tests/e2e/runtime-err/expect_serve_status.txt
+10 −0 tests/e2e/runtime-err/expect_serve_stderr.txt
+9 −0 tests/e2e/runtime-err/runtime-err.js
+2 −1 tests/e2e/syntax-err/expect_wizer_stderr.txt
+2 −1 tests/e2e/tla-err/expect_wizer_stderr.txt
+1 −1 tests/integration/btoa/btoa.js
+1 −1 tests/integration/crypto/crypto.js
+1 −1 tests/integration/fetch/fetch.js
+1 −1 tests/integration/performance/performance.js
+1 −1 tests/integration/test-server.js
+0 −285 tests/integration/tests/performance.js
+1 −1 tests/integration/timers/timers.js
+27 −9 tests/test.sh
+17 −12 tests/tests.cmake
+1 −1 tests/wpt-harness/build-wpt-runtime.sh
+1 −1 tests/wpt-harness/expectations/fetch/api/basic/request-headers-nonascii.any.js.json
+17 −17 tests/wpt-harness/expectations/fetch/api/headers/header-setcookie.any.js.json
+9 −9 tests/wpt-harness/expectations/fetch/api/headers/headers-basic.any.js.json
+1 −1 tests/wpt-harness/expectations/fetch/api/headers/headers-combine.any.js.json
+3 −3 tests/wpt-harness/expectations/fetch/api/headers/headers-errors.any.js.json
+7 −7 tests/wpt-harness/expectations/fetch/api/headers/headers-record.any.js.json
+1 −1 tests/wpt-harness/expectations/fetch/api/request/request-headers.any.js.json
+1 −1 tests/wpt-harness/expectations/fetch/api/response/response-headers-guard.any.js.json
+5 −4 tests/wpt-harness/run-wpt.mjs
+5 −5 tests/wpt-harness/tests.json
+2 −2 tests/wpt-harness/wpt.cmake
+0 −1 tests/wpt-harness/wpt_builtins.cpp
4 changes: 2 additions & 2 deletions runtime/fastedge/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ HOST_API=$(realpath host-api) cmake -B $BUILD_PATH -DCMAKE_BUILD_TYPE=$BUILD_TYP
# cmake --build $BUILD_PATH --parallel 16
cmake --build $BUILD_PATH --parallel 8
# Copy the built WebAssembly module to the parent directory
mv $BUILD_PATH/starling.wasm/starling.wasm ../../lib/fastedge-runtime.wasm
mv $BUILD_PATH/starling.wasm/preview1-adapter.wasm ../../lib/preview1-adapter.wasm
mv $BUILD_PATH/starling-raw.wasm/starling-raw.wasm ../../lib/fastedge-runtime.wasm
mv $BUILD_PATH/starling-raw.wasm/preview1-adapter.wasm ../../lib/preview1-adapter.wasm
4,586 changes: 2,263 additions & 2,323 deletions runtime/fastedge/host-api/bindings/bindings.c

Large diffs are not rendered by default.

Loading
Loading