mirror of
https://github.com/openai/codex.git
synced 2026-05-13 15:52:40 +00:00
## Status This is the Bazel PR-CI cross-compilation follow-up to #20485. It is intentionally split from the Cargo/cargo-xwin release-build PoC so #20485 can stay as the historical release-build exploration. The unrelated async-utils test cleanup has been moved to #20686, so this PR is focused on the Windows Bazel CI path. The intended tradeoff is now explicit in `.github/workflows/bazel.yml`: pull requests get the fast Windows cross-compiled Bazel test leg, while post-merge pushes to `main` run both that fast cross leg and a fully native Windows Bazel test leg. The native main-only job keeps full V8/code-mode coverage and gets a 40-minute timeout because it is less latency-sensitive than PR CI. All other Bazel jobs remain at 30 minutes. ## Why Windows Bazel PR CI currently does the expensive part of the build on Windows. A native Windows Bazel test job on `main` completed in about 28m12s, leaving very little headroom under the 30-minute job timeout and making Windows the slowest PR signal. #20485 showed that Windows cross-compilation can be materially faster for Cargo release builds, but PR CI needs Bazel because Bazel owns our test sharding, flaky-test retries, and integration-test layout. This PR applies the same high-level shape we already use for macOS Bazel CI: compile with remote Linux execution, then run platform-specific tests on the platform runner. The compromise is deliberately signal-aware: code-mode/V8 changes are rare enough that PR CI can accept losing the direct V8/code-mode smoke-test signal temporarily, while `main` still runs the native Windows job post-merge to catch that class of regression. A follow-up PR should investigate making the cross-built Windows gnullvm V8 archive pass the direct V8/code-mode tests so this tradeoff can eventually go away. ## What Changed - Adds a `ci-windows-cross` Bazel config that targets `x86_64-pc-windows-gnullvm`, uses Linux RBE for build actions, and keeps `TestRunner` actions local on the Windows runner. - Adds explicit Windows platform definitions for `windows_x86_64_gnullvm`, `windows_x86_64_msvc`, and a bridge toolchain that lets gnullvm test targets execute under the Windows MSVC host platform. - Updates the Windows Bazel PR test leg to opt into the cross-compile path via `--windows-cross-compile` and `--remote-download-toplevel`. - Adds a `test-windows-native-main` job that runs only for `push` events on `refs/heads/main`, uses the native Windows Bazel path, includes V8/code-mode smoke tests, and has `timeout-minutes: 40`. - Keeps fork/community PRs without `BUILDBUDDY_API_KEY` on the previous local Windows MSVC-host fallback, including `--host_platform=//:local_windows_msvc` and `--jobs=8`. - Preserves the existing integration-test shape on non-gnullvm platforms, while generating Windows-cross wrapper targets only for `windows_gnullvm`. - Resolves `CARGO_BIN_EXE_*` values from runfiles at test runtime, avoiding hard-coded Cargo paths and duplicate test runfiles. - Extends the V8 Bazel patches enough for the `x86_64-pc-windows-gnullvm` target and Linux remote execution path. - Makes the Windows sandbox test cwd derive from `INSTA_WORKSPACE_ROOT` at runtime when Bazel provides it, because cross-compiled binaries may contain Linux compile-time paths. - Keeps the direct V8/code-mode unit smoke tests out of the Windows cross PR path for now while native Windows CI continues to cover them post-merge. ## Command Shape The fast Windows PR test leg invokes the normal Bazel CI wrapper like this: ```shell ./.github/scripts/run-bazel-ci.sh \ --print-failed-action-summary \ --print-failed-test-logs \ --windows-cross-compile \ --remote-download-toplevel \ -- \ test \ --test_tag_filters=-argument-comment-lint \ --test_verbose_timeout_warnings \ --build_metadata=COMMIT_SHA=${GITHUB_SHA} \ -- \ //... \ -//third_party/v8:all \ -//codex-rs/code-mode:code-mode-unit-tests \ -//codex-rs/v8-poc:v8-poc-unit-tests ``` With the BuildBuddy secret available on Windows, the wrapper selects `--config=ci-windows-cross` and appends the important Windows-cross overrides after rc expansion: ```shell --host_platform=//:rbe --shell_executable=/bin/bash --action_env=PATH=/usr/bin:/bin --host_action_env=PATH=/usr/bin:/bin --test_env=PATH=${CODEX_BAZEL_WINDOWS_PATH} ``` The native post-merge Windows job intentionally omits `--windows-cross-compile` and does not exclude the V8/code-mode unit targets: ```shell ./.github/scripts/run-bazel-ci.sh \ --print-failed-action-summary \ --print-failed-test-logs \ -- \ test \ --test_tag_filters=-argument-comment-lint \ --test_verbose_timeout_warnings \ --build_metadata=COMMIT_SHA=${GITHUB_SHA} \ --build_metadata=TAG_windows_native_main=true \ -- \ //... \ -//third_party/v8:all ``` ## Research Notes The existing macOS Bazel CI config already uses the model we want here: build actions run remotely with `--strategy=remote`, but `TestRunner` actions execute on the macOS runner. This PR mirrors that pattern for Windows with `--strategy=TestRunner=local`. The important Bazel detail is that `rules_rs` is already targeting `x86_64-pc-windows-gnullvm` for Windows Bazel PR tests. This PR changes where the build actions execute; it does not switch the Bazel PR test target to Cargo, `cargo-nextest`, or the MSVC release target. Cargo release builds differ from this Bazel path for V8: the normal Windows Cargo release target is MSVC, and `rusty_v8` publishes prebuilt Windows MSVC `.lib.gz` archives. The Bazel PR path targets `windows-gnullvm`; `rusty_v8` does not publish a prebuilt Windows GNU/gnullvm archive, so this PR builds that archive in-tree. That Linux-RBE-built gnullvm archive currently crashes in direct V8/code-mode smoke tests, which is why the workflow keeps native Windows coverage on `main`. The less obvious Bazel detail is test wrapper selection. Bazel chooses the Windows test wrapper (`tw.exe`) from the test action execution platform, not merely from the Rust target triple. The outer `workspace_root_test` therefore declares the default test toolchain and uses the bridge toolchain above so the test action executes on Windows while its inner Rust binary is built for gnullvm. The V8 investigation exposed a Windows-client gotcha: even when an action execution platform is Linux RBE, Bazel can still derive the genrule shell path from the Windows client. That produced remote commands trying to run `C:\Program Files\Git\usr\bin\bash.exe` on Linux workers. The wrapper now passes `--shell_executable=/bin/bash` with `--host_platform=//:rbe` for the Windows cross path. The same Windows-client/Linux-RBE boundary also affected `third_party/v8:binding_cc`: a multiline genrule command can carry CRLF line endings into Linux remote bash, which failed as `$'\r'`. That genrule now keeps the `sed` command on one physical shell line while using an explicit Starlark join so the shell arguments stay readable. ## Verification Local checks included: ```shell bash -n .github/scripts/run-bazel-ci.sh bash -n workspace_root_test_launcher.sh.tpl ruby -e "require %q{yaml}; YAML.load_file(%q{.github/workflows/bazel.yml}); puts %q{ok}" RUNNER_OS=Linux ./scripts/list-bazel-clippy-targets.sh RUNNER_OS=Windows ./scripts/list-bazel-clippy-targets.sh RUNNER_OS=Linux ./tools/argument-comment-lint/list-bazel-targets.sh RUNNER_OS=Windows ./tools/argument-comment-lint/list-bazel-targets.sh ``` The Linux clippy and argument-comment target lists contain zero `*-windows-cross-bin` labels, while the Windows lists still include 47 Windows-cross internal test binaries. CI evidence: - Baseline native Windows Bazel test on `main`: success in about 28m12s, https://github.com/openai/codex/actions/runs/25206257208/job/73907325959 - Green Windows-cross Bazel run on the split PR before adding the main-only native leg: Windows test 9m16s, Windows release verify 5m10s, Windows clippy 4m43s, https://github.com/openai/codex/actions/runs/25231890068 - The latest SHA adds the explicit PR-vs-main tradeoff in `bazel.yml`; CI is rerunning on that focused diff. ## Follow-Up A subsequent PR should investigate making a cross-built Windows binary work with V8/code-mode enabled. Likely options are either making the Linux-RBE-built `windows-gnullvm` V8 archive correct at runtime, or evaluating whether a Bazel MSVC target/toolchain can reuse the same prebuilt MSVC `rusty_v8` archive shape that Cargo release builds already use.
340 lines
12 KiB
Diff
340 lines
12 KiB
Diff
# What: make upstream V8 sources build cleanly in this hermetic toolchain setup.
|
|
# Scope: minimal source-level portability fixes only, such as libexecinfo guards,
|
|
# weak glibc symbol handling, and warning annotations; no dependency
|
|
# include-path rewrites or intentional V8 feature changes.
|
|
diff --git a/orig/v8-14.6.202.11/src/base/bits.h b/mod/v8-14.6.202.11/src/base/bits.h
|
|
index 179a10f..4791e96 100644
|
|
--- a/orig/v8-14.6.202.11/src/base/bits.h
|
|
+++ b/mod/v8-14.6.202.11/src/base/bits.h
|
|
@@ -270,11 +270,17 @@ inline constexpr uint32_t RoundDownToPowerOfTwo32(uint32_t value) {
|
|
}
|
|
|
|
// Precondition: 0 <= shift < 32
|
|
+#ifdef RotateRight32
|
|
+#undef RotateRight32
|
|
+#endif
|
|
inline constexpr uint32_t RotateRight32(uint32_t value, uint32_t shift) {
|
|
return (value >> shift) | (value << ((32 - shift) & 31));
|
|
}
|
|
|
|
// Precondition: 0 <= shift < 32
|
|
+#ifdef RotateLeft32
|
|
+#undef RotateLeft32
|
|
+#endif
|
|
inline constexpr uint32_t RotateLeft32(uint32_t value, uint32_t shift) {
|
|
return (value << shift) | (value >> ((32 - shift) & 31));
|
|
}
|
|
diff --git a/orig/v8-14.6.202.11/src/base/debug/stack_trace_posix.cc b/mod/v8-14.6.202.11/src/base/debug/stack_trace_posix.cc
|
|
index 6176ed4..a02043d 100644
|
|
--- a/orig/v8-14.6.202.11/src/base/debug/stack_trace_posix.cc
|
|
+++ b/mod/v8-14.6.202.11/src/base/debug/stack_trace_posix.cc
|
|
@@ -64,6 +64,7 @@ namespace {
|
|
volatile sig_atomic_t in_signal_handler = 0;
|
|
bool dump_stack_in_signal_handler = true;
|
|
|
|
+#if HAVE_EXECINFO_H
|
|
// The prefix used for mangled symbols, per the Itanium C++ ABI:
|
|
// http://www.codesourcery.com/cxx-abi/abi.html#mangling
|
|
const char kMangledSymbolPrefix[] = "_Z";
|
|
@@ -73,7 +74,6 @@ const char kMangledSymbolPrefix[] = "_Z";
|
|
const char kSymbolCharacters[] =
|
|
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_";
|
|
|
|
-#if HAVE_EXECINFO_H
|
|
// Demangles C++ symbols in the given text. Example:
|
|
//
|
|
// "out/Debug/base_unittests(_ZN10StackTraceC1Ev+0x20) [0x817778c]"
|
|
diff --git a/orig/v8-14.6.202.11/src/base/export-template.h b/mod/v8-14.6.202.11/src/base/export-template.h
|
|
index 861cfe4..1e73954 100644
|
|
--- a/orig/v8-14.6.202.11/src/base/export-template.h
|
|
+++ b/mod/v8-14.6.202.11/src/base/export-template.h
|
|
@@ -153,8 +153,10 @@
|
|
|
|
EXPORT_TEMPLATE_TEST(DEFAULT, );
|
|
EXPORT_TEMPLATE_TEST(DEFAULT, __attribute__((visibility("default"))));
|
|
+#if defined(_MSC_VER)
|
|
EXPORT_TEMPLATE_TEST(MSVC_HACK, __declspec(dllexport));
|
|
EXPORT_TEMPLATE_TEST(DEFAULT, __declspec(dllimport));
|
|
+#endif
|
|
|
|
#undef EXPORT_TEMPLATE_TEST
|
|
#undef EXPORT_TEMPLATE_TEST_DEFAULT_DEFAULT
|
|
diff --git a/orig/v8-14.6.202.11/src/base/platform/platform-posix.cc b/mod/v8-14.6.202.11/src/base/platform/platform-posix.cc
|
|
index 420df0b..6f47969 100644
|
|
--- a/orig/v8-14.6.202.11/src/base/platform/platform-posix.cc
|
|
+++ b/mod/v8-14.6.202.11/src/base/platform/platform-posix.cc
|
|
@@ -95,7 +95,7 @@ extern int madvise(caddr_t, size_t, int);
|
|
#endif
|
|
|
|
#if defined(V8_LIBC_GLIBC)
|
|
-extern "C" void* __libc_stack_end;
|
|
+extern "C" void* __libc_stack_end V8_WEAK;
|
|
#endif
|
|
|
|
namespace v8 {
|
|
@@ -1476,7 +1476,8 @@ Stack::StackSlot Stack::ObtainCurrentThreadStackStart() {
|
|
// __libc_stack_end is process global and thus is only valid for
|
|
// the main thread. Check whether this is the main thread by checking
|
|
// __libc_stack_end is within the thread's stack.
|
|
- if ((base <= __libc_stack_end) && (__libc_stack_end <= stack_start)) {
|
|
+ if (__libc_stack_end != nullptr &&
|
|
+ (base <= __libc_stack_end) && (__libc_stack_end <= stack_start)) {
|
|
DCHECK(MainThreadIsCurrentThread());
|
|
return __libc_stack_end;
|
|
}
|
|
diff --git a/orig/v8-14.6.202.11/src/base/platform/platform-win32.cc b/mod/v8-14.6.202.11/src/base/platform/platform-win32.cc
|
|
index f5d9ddc..1c08b0f 100644
|
|
--- a/orig/v8-14.6.202.11/src/base/platform/platform-win32.cc
|
|
+++ b/mod/v8-14.6.202.11/src/base/platform/platform-win32.cc
|
|
@@ -20,7 +20,11 @@
|
|
#include <windows.h>
|
|
|
|
// This has to come after windows.h.
|
|
+#ifdef __MINGW32__
|
|
+#include <versionhelpers.h>
|
|
+#else
|
|
#include <VersionHelpers.h>
|
|
+#endif
|
|
#include <dbghelp.h> // For SymLoadModule64 and al.
|
|
#include <malloc.h> // For _msize()
|
|
#include <mmsystem.h> // For timeGetTime().
|
|
@@ -69,9 +69,7 @@ static_assert(offsetof(V8_CRITICAL_SECTION, SpinCount) ==
|
|
// Extra functions for MinGW. Most of these are the _s functions which are in
|
|
// the Microsoft Visual Studio C++ CRT.
|
|
#ifdef __MINGW32__
|
|
-
|
|
-
|
|
-#ifndef __MINGW64_VERSION_MAJOR
|
|
+#if !defined(__MINGW64_VERSION_MAJOR)
|
|
|
|
#define _TRUNCATE 0
|
|
#define STRUNCATE 80
|
|
@@ -81,9 +79,6 @@ inline void MemoryFence() {
|
|
__asm__ __volatile__("xchgl %%eax,%0 ":"=r" (barrier));
|
|
}
|
|
|
|
-#endif // __MINGW64_VERSION_MAJOR
|
|
-
|
|
-
|
|
int localtime_s(tm* out_tm, const time_t* time) {
|
|
tm* posix_local_time_struct = localtime_r(time, out_tm);
|
|
if (posix_local_time_struct == nullptr) return 1;
|
|
@@ -134,6 +129,8 @@ int strncpy_s(char* dest, size_t dest_size, const char* source, size_t count) {
|
|
return 0;
|
|
}
|
|
|
|
+#endif // !defined(__MINGW64_VERSION_MAJOR)
|
|
+
|
|
#endif // __MINGW32__
|
|
|
|
namespace v8 {
|
|
@@ -743,8 +740,10 @@ void OS::StrNCpy(char* dest, int length, const char* src, size_t n) {
|
|
}
|
|
|
|
|
|
+#if defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR)
|
|
#undef _TRUNCATE
|
|
#undef STRUNCATE
|
|
+#endif
|
|
|
|
DEFINE_LAZY_LEAKY_OBJECT_GETTER(RandomNumberGenerator,
|
|
GetPlatformRandomNumberGenerator)
|
|
@@ -1894,3 +1893,4 @@ Stack::StackSlot Stack::GetCurrentStackPosition() {
|
|
|
|
} // namespace base
|
|
} // namespace v8
|
|
+
|
|
diff --git a/orig/v8-14.6.202.11/src/base/platform/time.cc b/mod/v8-14.6.202.11/src/base/platform/time.cc
|
|
index 8390288..cba6cd5 100644
|
|
--- a/orig/v8-14.6.202.11/src/base/platform/time.cc
|
|
+++ b/mod/v8-14.6.202.11/src/base/platform/time.cc
|
|
@@ -782,12 +782,12 @@ bool ThreadTicks::IsSupported() {
|
|
#elif defined(__PASE__)
|
|
// Thread CPU time accounting is unavailable in PASE
|
|
return false;
|
|
+#elif defined(V8_OS_WIN)
|
|
+ return IsSupportedWin();
|
|
#elif (defined(_POSIX_THREAD_CPUTIME) && (_POSIX_THREAD_CPUTIME >= 0)) || \
|
|
defined(V8_OS_DARWIN) || defined(V8_OS_ANDROID) || \
|
|
defined(V8_OS_SOLARIS) || defined(V8_OS_ZOS)
|
|
return true;
|
|
-#elif defined(V8_OS_WIN)
|
|
- return IsSupportedWin();
|
|
#else
|
|
return false;
|
|
#endif
|
|
@@ -804,13 +804,13 @@ ThreadTicks ThreadTicks::Now() {
|
|
return ThreadTicks(ComputeThreadTicks());
|
|
#elif V8_OS_FUCHSIA
|
|
return ThreadTicks(GetFuchsiaThreadTicks());
|
|
+#elif V8_OS_WIN
|
|
+ return ThreadTicks::GetForThread(::GetCurrentThread());
|
|
#elif (defined(_POSIX_THREAD_CPUTIME) && (_POSIX_THREAD_CPUTIME >= 0)) || \
|
|
defined(V8_OS_ANDROID) || defined(V8_OS_ZOS)
|
|
return ThreadTicks(ClockNow(CLOCK_THREAD_CPUTIME_ID));
|
|
#elif V8_OS_SOLARIS
|
|
return ThreadTicks(gethrvtime() / Time::kNanosecondsPerMicrosecond);
|
|
-#elif V8_OS_WIN
|
|
- return ThreadTicks::GetForThread(::GetCurrentThread());
|
|
#else
|
|
UNREACHABLE();
|
|
#endif
|
|
diff --git a/orig/v8-14.6.202.11/src/heap/base/asm/x64/push_registers_masm.asm b/mod/v8-14.6.202.11/src/heap/base/asm/x64/push_registers_masm.asm
|
|
index d0d0563..72e230b 100644
|
|
--- a/orig/v8-14.6.202.11/src/heap/base/asm/x64/push_registers_masm.asm
|
|
+++ b/mod/v8-14.6.202.11/src/heap/base/asm/x64/push_registers_masm.asm
|
|
@@ -1,70 +1,47 @@
|
|
-;; Copyright 2020 the V8 project authors. All rights reserved.
|
|
-;; Use of this source code is governed by a BSD-style license that can be
|
|
-;; found in the LICENSE file.
|
|
-
|
|
-;; MASM syntax
|
|
-;; https://docs.microsoft.com/en-us/cpp/assembler/masm/microsoft-macro-assembler-reference?view=vs-2019
|
|
-
|
|
-public PushAllRegistersAndIterateStack
|
|
-
|
|
-.code
|
|
-PushAllRegistersAndIterateStack proc frame
|
|
- ;; Push all callee-saved registers to get them on the stack for conservative
|
|
- ;; stack scanning.
|
|
- ;;
|
|
- ;; We maintain 16-byte alignment at calls. There is an 8-byte return address
|
|
- ;; on the stack and we push 232 bytes which maintains 16-byte stack
|
|
- ;; alignment at the call.
|
|
- ;; Source: https://docs.microsoft.com/en-us/cpp/build/x64-calling-convention
|
|
- ;;
|
|
- ;; rbp is callee-saved. Maintain proper frame pointer for debugging.
|
|
- push rbp
|
|
- .pushreg rbp
|
|
- mov rbp, rsp
|
|
- .setframe rbp, 0
|
|
- push 0CDCDCDh ;; Dummy for alignment.
|
|
- .allocstack 8
|
|
- push rsi
|
|
- .pushreg rsi
|
|
- push rdi
|
|
- .pushreg rdi
|
|
- push rbx
|
|
- .pushreg rbx
|
|
- push r12
|
|
- .pushreg r12
|
|
- push r13
|
|
- .pushreg r13
|
|
- push r14
|
|
- .pushreg r14
|
|
- push r15
|
|
- .pushreg r15
|
|
- sub rsp, 160
|
|
- .allocstack 160
|
|
- .endprolog
|
|
- ;; Use aligned instrs as we are certain that the stack is properly aligned.
|
|
- movdqa xmmword ptr [rsp + 144], xmm6
|
|
- movdqa xmmword ptr [rsp + 128], xmm7
|
|
- movdqa xmmword ptr [rsp + 112], xmm8
|
|
- movdqa xmmword ptr [rsp + 96], xmm9
|
|
- movdqa xmmword ptr [rsp + 80], xmm10
|
|
- movdqa xmmword ptr [rsp + 64], xmm11
|
|
- movdqa xmmword ptr [rsp + 48], xmm12
|
|
- movdqa xmmword ptr [rsp + 32], xmm13
|
|
- movdqa xmmword ptr [rsp + 16], xmm14
|
|
- movdqa xmmword ptr [rsp], xmm15
|
|
- ;; Pass 1st parameter (rcx) unchanged (Stack*).
|
|
- ;; Pass 2nd parameter (rdx) unchanged (StackVisitor*).
|
|
- ;; Save 3rd parameter (r8; IterateStackCallback)
|
|
- mov r9, r8
|
|
- ;; Pass 3rd parameter as rsp (stack pointer).
|
|
- mov r8, rsp
|
|
- ;; Call the callback.
|
|
- call r9
|
|
- ;; Pop the callee-saved registers.
|
|
- add rsp, 224
|
|
- ;; Restore rbp as it was used as frame pointer.
|
|
- pop rbp
|
|
- ret
|
|
- PushAllRegistersAndIterateStack endp
|
|
-
|
|
-end
|
|
+.text
|
|
+.globl PushAllRegistersAndIterateStack
|
|
+.seh_proc PushAllRegistersAndIterateStack
|
|
+PushAllRegistersAndIterateStack:
|
|
+ push %rbp
|
|
+ .seh_pushreg %rbp
|
|
+ mov %rsp, %rbp
|
|
+ .seh_setframe %rbp, 0
|
|
+ push $0xCDCDCD
|
|
+ .seh_stackalloc 8
|
|
+ push %rsi
|
|
+ .seh_pushreg %rsi
|
|
+ push %rdi
|
|
+ .seh_pushreg %rdi
|
|
+ push %rbx
|
|
+ .seh_pushreg %rbx
|
|
+ push %r12
|
|
+ .seh_pushreg %r12
|
|
+ push %r13
|
|
+ .seh_pushreg %r13
|
|
+ push %r14
|
|
+ .seh_pushreg %r14
|
|
+ push %r15
|
|
+ .seh_pushreg %r15
|
|
+ sub $160, %rsp
|
|
+ .seh_stackalloc 160
|
|
+ # Preserve Windows unwind metadata even though this is now GNU syntax.
|
|
+ # Without the .seh_* directives, SEH and stack walking can mis-handle
|
|
+ # unwinding across this callback frame.
|
|
+ .seh_endprologue
|
|
+ movdqa %xmm6, 144(%rsp)
|
|
+ movdqa %xmm7, 128(%rsp)
|
|
+ movdqa %xmm8, 112(%rsp)
|
|
+ movdqa %xmm9, 96(%rsp)
|
|
+ movdqa %xmm10, 80(%rsp)
|
|
+ movdqa %xmm11, 64(%rsp)
|
|
+ movdqa %xmm12, 48(%rsp)
|
|
+ movdqa %xmm13, 32(%rsp)
|
|
+ movdqa %xmm14, 16(%rsp)
|
|
+ movdqa %xmm15, 0(%rsp)
|
|
+ mov %r8, %r9
|
|
+ mov %rsp, %r8
|
|
+ call *%r9
|
|
+ add $224, %rsp
|
|
+ pop %rbp
|
|
+ ret
|
|
+.seh_endproc
|
|
diff --git a/orig/v8-14.6.202.11/src/libplatform/default-thread-isolated-allocator.cc b/mod/v8-14.6.202.11/src/libplatform/default-thread-isolated-allocator.cc
|
|
index bda0e43..b44f1d9 100644
|
|
--- a/orig/v8-14.6.202.11/src/libplatform/default-thread-isolated-allocator.cc
|
|
+++ b/mod/v8-14.6.202.11/src/libplatform/default-thread-isolated-allocator.cc
|
|
@@ -23,7 +23,7 @@ extern int pkey_free(int pkey) V8_WEAK;
|
|
|
|
namespace {
|
|
|
|
-bool KernelHasPkruFix() {
|
|
+[[maybe_unused]] bool KernelHasPkruFix() {
|
|
// PKU was broken on Linux kernels before 5.13 (see
|
|
// https://lore.kernel.org/all/20210623121456.399107624@linutronix.de/).
|
|
// A fix is also included in the 5.4.182 and 5.10.103 versions ("x86/fpu:
|
|
diff --git a/orig/v8-14.6.202.11/src/profiler/heap-snapshot-generator.cc b/mod/v8-14.6.202.11/src/profiler/heap-snapshot-generator.cc
|
|
index 27e748f..cbf886c 100644
|
|
--- a/orig/v8-14.6.202.11/src/profiler/heap-snapshot-generator.cc
|
|
+++ b/mod/v8-14.6.202.11/src/profiler/heap-snapshot-generator.cc
|
|
@@ -429,11 +429,11 @@ HeapSnapshot::HeapSnapshot(HeapProfiler* profiler,
|
|
static_assert(kSystemPointerSize != 4 || sizeof(HeapGraphEdge) == 12);
|
|
static_assert(kSystemPointerSize != 8 || sizeof(HeapGraphEdge) == 24);
|
|
static_assert(kSystemPointerSize != 4 || sizeof(HeapEntry) == 32);
|
|
-#if V8_CC_MSVC
|
|
+#if V8_CC_MSVC || V8_OS_WIN
|
|
static_assert(kSystemPointerSize != 8 || sizeof(HeapEntry) == 48);
|
|
#else // !V8_CC_MSVC
|
|
static_assert(kSystemPointerSize != 8 || sizeof(HeapEntry) == 40);
|
|
-#endif // !V8_CC_MSVC
|
|
+#endif // !V8_CC_MSVC || V8_OS_WIN
|
|
memset(&gc_subroot_entries_, 0, sizeof(gc_subroot_entries_));
|
|
}
|
|
|
|
@@ -3878,3 +3878,4 @@ void HeapSnapshotJSONSerializer::SerializeLocations() {
|
|
}
|
|
|
|
} // namespace v8::internal
|
|
+
|