Skip to content

Commit 7eb0ac3

Browse files
targosnodejs-github-bot
authored andcommitted
deps: patch V8 to support compilation on win-arm64
PR-URL: #47251 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent a7c129f commit 7eb0ac3

File tree

4 files changed

+21
-14
lines changed

4 files changed

+21
-14
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.2',
39+
'v8_embedder_string': '-node.3',
4040

4141
##### V8 defaults for Node.js #####
4242

deps/v8/src/execution/arm64/simulator-arm64.cc

+5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@
3434
#include "src/trap-handler/trap-handler-simulator.h"
3535
#endif // V8_ENABLE_WEBASSEMBLY
3636

37+
#if defined(_MSC_VER)
38+
// define full memory barrier for msvc
39+
#define __sync_synchronize _ReadWriteBarrier
40+
#endif
41+
3742
namespace v8 {
3843
namespace internal {
3944

deps/v8/src/trap-handler/trap-handler-simulator.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,10 @@ uintptr_t ProbeMemory(uintptr_t address, uintptr_t pc)
3434
// "ProbeMemory", but we want something more expressive on stack traces.
3535
#if V8_OS_DARWIN
3636
asm("_v8_internal_simulator_ProbeMemory");
37-
#else
37+
#elif !defined(_MSC_VER)
3838
asm("v8_internal_simulator_ProbeMemory");
39+
#else // MSVC
40+
;
3941
#endif
4042

4143
} // namespace v8::internal::trap_handler

deps/v8/test/cctest/test-assembler-arm64.cc

+12-12
Original file line numberDiff line numberDiff line change
@@ -14771,12 +14771,12 @@ static void AtomicMemoryWHelper(AtomicMemoryLoadSignature* load_funcs,
1477114771
AtomicMemoryStoreSignature* store_funcs,
1477214772
uint64_t arg1, uint64_t arg2, uint64_t expected,
1477314773
uint64_t result_mask) {
14774-
uint64_t data0[] __attribute__((aligned(kXRegSize * 2))) = {arg2, 0};
14775-
uint64_t data1[] __attribute__((aligned(kXRegSize * 2))) = {arg2, 0};
14776-
uint64_t data2[] __attribute__((aligned(kXRegSize * 2))) = {arg2, 0};
14777-
uint64_t data3[] __attribute__((aligned(kXRegSize * 2))) = {arg2, 0};
14778-
uint64_t data4[] __attribute__((aligned(kXRegSize * 2))) = {arg2, 0};
14779-
uint64_t data5[] __attribute__((aligned(kXRegSize * 2))) = {arg2, 0};
14774+
uint64_t data0[2] = {arg2, 0};
14775+
uint64_t data1[2] = {arg2, 0};
14776+
uint64_t data2[2] = {arg2, 0};
14777+
uint64_t data3[2] = {arg2, 0};
14778+
uint64_t data4[2] = {arg2, 0};
14779+
uint64_t data5[2] = {arg2, 0};
1478014780

1478114781
SETUP();
1478214782
SETUP_FEATURE(LSE);
@@ -14838,12 +14838,12 @@ static void AtomicMemoryXHelper(AtomicMemoryLoadSignature* load_funcs,
1483814838
AtomicMemoryStoreSignature* store_funcs,
1483914839
uint64_t arg1, uint64_t arg2,
1484014840
uint64_t expected) {
14841-
uint64_t data0[] __attribute__((aligned(kXRegSize * 2))) = {arg2, 0};
14842-
uint64_t data1[] __attribute__((aligned(kXRegSize * 2))) = {arg2, 0};
14843-
uint64_t data2[] __attribute__((aligned(kXRegSize * 2))) = {arg2, 0};
14844-
uint64_t data3[] __attribute__((aligned(kXRegSize * 2))) = {arg2, 0};
14845-
uint64_t data4[] __attribute__((aligned(kXRegSize * 2))) = {arg2, 0};
14846-
uint64_t data5[] __attribute__((aligned(kXRegSize * 2))) = {arg2, 0};
14841+
uint64_t data0[2] = {arg2, 0};
14842+
uint64_t data1[2] = {arg2, 0};
14843+
uint64_t data2[2] = {arg2, 0};
14844+
uint64_t data3[2] = {arg2, 0};
14845+
uint64_t data4[2] = {arg2, 0};
14846+
uint64_t data5[2] = {arg2, 0};
1484714847

1484814848
SETUP();
1484914849
SETUP_FEATURE(LSE);

0 commit comments

Comments
 (0)