deps: patch V8 to support compilation with MSVC

Co-Authored-By: Michaël Zasso <targos@protonmail.com>
PR-URL: https://github.com/nodejs/node/pull/58070
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
This commit is contained in:
StefanStojanovic 2024-04-21 11:15:04 +02:00 committed by Michaël Zasso
parent ffadf3561a
commit 0f98039268
No known key found for this signature in database
GPG key ID: 770F7A9A5AE15600
21 changed files with 147 additions and 60 deletions

View file

@ -38,7 +38,7 @@
# Reset this number to 0 on major V8 upgrades.
# Increment by one for each non-official patch applied to deps/v8.
'v8_embedder_string': '-node.8',
'v8_embedder_string': '-node.9',
##### V8 defaults for Node.js #####

View file

@ -57,13 +57,21 @@ void FPU::SetFlushDenormals(bool value) {
#elif defined(V8_HOST_ARCH_ARM64) || defined(V8_HOST_ARCH_ARM)
namespace {
#if defined(V8_HOST_ARCH_ARM64) && defined(_MSC_VER) && !defined(__clang__)
#include <intrin.h>
#endif
// Bit 24 is the flush-to-zero mode control bit. Setting it to 1 flushes
// denormals to 0.
constexpr int kFlushDenormToZeroBit = (1 << 24);
int GetStatusWord() {
int result;
#if defined(V8_HOST_ARCH_ARM64)
# if defined(_MSC_VER) && !defined(__clang__)
result = _ReadStatusReg(ARM64_FPCR);
# else
asm volatile("mrs %x[result], FPCR" : [result] "=r"(result));
# endif
#else
asm volatile("vmrs %[result], FPSCR" : [result] "=r"(result));
#endif
@ -72,7 +80,11 @@ int GetStatusWord() {
void SetStatusWord(int a) {
#if defined(V8_HOST_ARCH_ARM64)
# if defined(_MSC_VER) && !defined(__clang__)
_WriteStatusReg(ARM64_FPCR, a);
# else
asm volatile("msr FPCR, %x[src]" : : [src] "r"(a));
# endif
#else
asm volatile("vmsr FPSCR, %[src]" : : [src] "r"(a));
#endif

View file

@ -168,14 +168,10 @@ class AssemblerZone {
public:
explicit AssemblerZone(const MaybeAssemblerZone& zone)
// Create a fresh Zone unless one is already provided.
: maybe_local_zone_(
std::holds_alternative<Zone*>(zone)
? std::nullopt
: std::make_optional<Zone>(std::get<AccountingAllocator*>(zone),
ZONE_NAME)),
: maybe_local_zone_(),
zone_(std::holds_alternative<Zone*>(zone)
? std::get<Zone*>(zone)
: &maybe_local_zone_.value()) {}
: &maybe_local_zone_.emplace(std::get<AccountingAllocator*>(zone), ZONE_NAME)) {}
Zone* get() const { return zone_; }

View file

@ -879,7 +879,7 @@ ElementAccessFeedback const& JSHeapBroker::ProcessFeedbackMapsForElementAccess(
Tagged<Map> transition_target;
// Don't generate elements kind transitions from stable maps.
if (!map.is_stable()) {
if (!map.is_stable() && possible_transition_targets.begin() != possible_transition_targets.end()) {
// The lock is needed for UnusedPropertyFields (called deep inside
// FindElementsKindTransitionedMap).
MapUpdaterGuardIfNeeded mumd_scope(this);

View file

@ -1292,11 +1292,11 @@ class WasmFrame : public TypedFrame {
FrameSummaries Summarize() const override;
static WasmFrame* cast(StackFrame* frame) {
DCHECK(frame->is_wasm()
#ifdef V8_ENABLE_DRUMBRAKE
&& !frame->is_wasm_interpreter_entry()
DCHECK(frame->is_wasm() && !frame->is_wasm_interpreter_entry());
#else
DCHECK(frame->is_wasm());
#endif // V8_ENABLE_DRUMBRAKE
);
return static_cast<WasmFrame*>(frame);
}

View file

@ -574,10 +574,14 @@ using DebugObjectCache = std::vector<Handle<HeapObject>>;
#define THREAD_LOCAL_TOP_ADDRESS(type, name) \
inline type* name##_address() { return &thread_local_top()->name##_; }
#if defined(_MSC_VER)
extern thread_local Isolate* g_current_isolate_ V8_CONSTINIT;
#else
// Do not use this variable directly, use Isolate::Current() instead.
// Defined outside of Isolate because Isolate uses V8_EXPORT_PRIVATE.
__attribute__((tls_model(V8_TLS_MODEL))) extern thread_local Isolate*
g_current_isolate_ V8_CONSTINIT;
#endif // defined(_MSC_VER)
// HiddenFactory exists so Isolate can privately inherit from it without making
// Factory's members available to Isolate directly.

View file

@ -0,0 +1,32 @@
; 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.
; This file is exactly the same as push_registers_asm.cc, just formatted for
; the Microsoft Arm Assembler.
AREA |.text|, CODE, ALIGN=4, READONLY
EXPORT PushAllRegistersAndIterateStack
PushAllRegistersAndIterateStack
; x19-x29 are callee-saved
STP x19, x20, [sp, #-16]!
STP x21, x22, [sp, #-16]!
STP x23, x24, [sp, #-16]!
STP x25, x26, [sp, #-16]!
STP x27, x28, [sp, #-16]!
STP fp, lr, [sp, #-16]!
; Maintain frame pointer
MOV fp, sp
; Pass 1st parameter (x0) unchanged (Stack*).
; Pass 2nd parameter (x1) unchanged (StackVisitor*).
; Save 3rd parameter (x2; IterateStackCallback)
MOV x7, x2
; Pass 3rd parameter as sp (stack pointer)
MOV x2, sp
BLR x7
; Load return address
LDR lr, [sp, #8]
; Restore frame pointer and pop all callee-saved registers.
LDR fp, [sp], #96
RET
END

View file

@ -33,10 +33,14 @@ class MarkingBarrier;
class MutablePageMetadata;
class Safepoint;
#if defined(_MSC_VER)
extern thread_local LocalHeap* g_current_local_heap_ V8_CONSTINIT;
#else
// Do not use this variable directly, use LocalHeap::Current() instead.
// Defined outside of LocalHeap because LocalHeap uses V8_EXPORT_PRIVATE.
__attribute__((tls_model(V8_TLS_MODEL))) extern thread_local LocalHeap*
g_current_local_heap_ V8_CONSTINIT;
#endif // defined(_MSC_VER)
// LocalHeap is used by the GC to track all threads with heap access in order to
// stop them before performing a collection. LocalHeaps can be either Parked or

View file

@ -11003,13 +11003,19 @@ MaybeReduceResult MaglevGraphBuilder::TryReduceCallForNewClosure(
return BuildCallRuntime(Runtime::kThrowConstructorNonCallableError,
{target_node});
}
#ifdef V8_ENABLE_LEAPTIERING
RETURN_IF_DONE(TryBuildCallKnownJSFunction(
target_context, target_node,
GetRootConstant(RootIndex::kUndefinedValue),
#ifdef V8_ENABLE_LEAPTIERING
dispatch_handle,
#endif
shared, feedback_cell, args, feedback_source));
#else
RETURN_IF_DONE(TryBuildCallKnownJSFunction(
target_context, target_node,
GetRootConstant(RootIndex::kUndefinedValue),
shared, feedback_cell, args, feedback_source));
#endif
}
return BuildGenericCall(target_node, Call::TargetType::kJSFunction, args);
}

View file

@ -42,13 +42,13 @@ HEAP_OBJECT_TYPE_LIST(DECL_TYPE)
// Instance types which are associated with one unique map.
template <class type>
V8_INLINE consteval std::optional<RootIndex> UniqueMapOfInstanceTypeCheck() {
V8_INLINE constexpr std::optional<RootIndex> UniqueMapOfInstanceTypeCheck() {
return {};
}
#define INSTANCE_TYPE_MAP(V, rootIndexName, rootAccessorName, class_name) \
template <> \
V8_INLINE consteval std::optional<RootIndex> \
V8_INLINE constexpr std::optional<RootIndex> \
UniqueMapOfInstanceTypeCheck<InstanceTypeTraits::class_name>() { \
return {RootIndex::k##rootIndexName}; \
}

View file

@ -121,12 +121,10 @@ static_assert(sizeof(UnalignedDoubleMember) == sizeof(double));
#define FLEXIBLE_ARRAY_MEMBER(Type, name) \
using FlexibleDataReturnType = Type[0]; \
FlexibleDataReturnType& name() { \
static_assert(alignof(Type) <= alignof(decltype(*this))); \
using ReturnType = Type[0]; \
return reinterpret_cast<ReturnType&>(*(this + 1)); \
} \
const FlexibleDataReturnType& name() const { \
static_assert(alignof(Type) <= alignof(decltype(*this))); \
using ReturnType = Type[0]; \
return reinterpret_cast<const ReturnType&>(*(this + 1)); \
} \

View file

@ -1204,8 +1204,8 @@ RUNTIME_FUNCTION(Runtime_SetAllocationTimeout) {
namespace {
int FixedArrayLenFromSize(int size) {
return std::min({(size - OFFSET_OF_DATA_START(FixedArray)) / kTaggedSize,
FixedArray::kMaxRegularLength});
return std::min<int>((size - OFFSET_OF_DATA_START(FixedArray)) / kTaggedSize,
static_cast<int>(FixedArray::kMaxRegularLength));
}
void FillUpOneNewSpacePage(Isolate* isolate, Heap* heap,

View file

@ -3009,15 +3009,21 @@ DirectHandle<WasmExportedFunction> WasmExportedFunction::New(
DirectHandle<WasmFuncRef> func_ref,
DirectHandle<WasmInternalFunction> internal_function, int arity,
DirectHandle<Code> export_wrapper) {
#if V8_ENABLE_DRUMBRAKE
DCHECK(CodeKind::JS_TO_WASM_FUNCTION == export_wrapper->kind() ||
(export_wrapper->is_builtin() &&
(export_wrapper->builtin_id() == Builtin::kJSToWasmWrapper ||
#if V8_ENABLE_DRUMBRAKE
export_wrapper->builtin_id() ==
Builtin::kGenericJSToWasmInterpreterWrapper ||
#endif // V8_ENABLE_DRUMBRAKE
export_wrapper->builtin_id() == Builtin::kWasmPromising ||
export_wrapper->builtin_id() == Builtin::kWasmStressSwitch)));
#else
DCHECK(CodeKind::JS_TO_WASM_FUNCTION == export_wrapper->kind() ||
(export_wrapper->is_builtin() &&
(export_wrapper->builtin_id() == Builtin::kJSToWasmWrapper ||
export_wrapper->builtin_id() == Builtin::kWasmPromising ||
export_wrapper->builtin_id() == Builtin::kWasmStressSwitch)));
#endif // V8_ENABLE_DRUMBRAKE
int func_index = internal_function->function_index();
Factory* factory = isolate->factory();
DirectHandle<Map> rtt;

View file

@ -153,8 +153,13 @@ struct PlainHashReader {
/*
* Likely and unlikely macros.
*/
#if defined(_MSC_VER) && !defined(__clang__)
#define _likely_(x) (x)
#define _unlikely_(x) (x)
#else
#define _likely_(x) __builtin_expect(x, 1)
#define _unlikely_(x) __builtin_expect(x, 0)
#endif
/*
* Default seed.

View file

@ -0,0 +1,14 @@
{
'targets': [
{
'target_name': 'binding-export-default',
'sources': [ 'binding-export-default.cc' ],
'includes': ['../common.gypi'],
},
{
'target_name': 'binding-export-primitive',
'sources': [ 'binding-export-primitive.cc' ],
'includes': ['../common.gypi'],
},
]
}

View file

@ -0,0 +1,37 @@
/**
* This file is supposed to be loaded by `test-import.js` and `test-require.js`
* to verify that `import('*.node')` is working properly either been loaded with
* the ESM loader or the CJS loader.
*/
import { buildType } from '../../common/index.mjs';
import assert from 'node:assert';
import { createRequire } from 'node:module';
import { pathToFileURL } from 'node:url';
const require = createRequire(import.meta.url);
export async function run() {
// binding-export-default.node
{
const bindingPath = require.resolve(`./build/${buildType}/binding-export-default.node`);
// Test with order of require+import
const bindingRequire = require(bindingPath);
const ns = await import(pathToFileURL(bindingPath));
assert.strictEqual(ns.default, bindingRequire);
// As same as ESM-import-CJS, the default export is the value of `module.exports`.
assert.strictEqual(ns.default, ns['module.exports']);
assert.strictEqual(ns.default.default(), 'hello world');
}
// binding-export-primitive.node
{
const bindingPath = require.resolve(`./build/${buildType}/binding-export-primitive.node`);
const ns = await import(pathToFileURL(bindingPath));
// As same as ESM-import-CJS, the default export is the value of `module.exports`.
assert.strictEqual(ns.default, ns['module.exports']);
assert.strictEqual(ns.default, 'hello world');
}
}

View file

@ -0,0 +1,6 @@
// Flags: --experimental-addon-modules
'use strict';
const common = require('../../common');
require('./test-esm.mjs')
.run().then(common.mustCall());

View file

@ -1,6 +1,6 @@
{
'variables': {
'source_dir': '<!(<(python) -c "import os; print(os.getcwd())")',
'source_dir': '<!("<(python)" -c "import os; print(os.getcwd())")',
},
'targets': [
{
@ -8,16 +8,6 @@
'sources': [ 'binding.cc' ],
'includes': ['../common.gypi'],
},
{
'target_name': 'binding-export-default',
'sources': [ 'binding-export-default.cc' ],
'includes': ['../common.gypi'],
},
{
'target_name': 'binding-export-primitive',
'sources': [ 'binding-export-primitive.cc' ],
'includes': ['../common.gypi'],
},
{
'target_name': 'node_modules',
'type': 'none',

View file

@ -31,27 +31,4 @@ export async function run() {
assert.strictEqual(rebinding.hello(), 'world');
assert.strictEqual(binding.hello, rebinding.hello);
}
// binding-export-default.node
{
const bindingPath = require.resolve(`./build/${buildType}/binding-export-default.node`);
// Test with order of require+import
const bindingRequire = require(bindingPath);
const ns = await import(pathToFileURL(bindingPath));
assert.strictEqual(ns.default, bindingRequire);
// As same as ESM-import-CJS, the default export is the value of `module.exports`.
assert.strictEqual(ns.default, ns['module.exports']);
assert.strictEqual(ns.default.default(), 'hello world');
}
// binding-export-primitive.node
{
const bindingPath = require.resolve(`./build/${buildType}/binding-export-primitive.node`);
const ns = await import(pathToFileURL(bindingPath));
// As same as ESM-import-CJS, the default export is the value of `module.exports`.
assert.strictEqual(ns.default, ns['module.exports']);
assert.strictEqual(ns.default, 'hello world');
}
}