Skip to content

Commit 0f14123

Browse files
addaleaxBethGriggs
authored andcommitted
deps: V8: stub backport fast API call changes
This brings ABI compatibility for several changes related to the fast API calls implementation in V8. PR-URL: #32885 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Ujjwal Sharma <[email protected]> Reviewed-By: Gerhard Stöbich <[email protected]> Reviewed-By: Beth Griggs <[email protected]>
1 parent bf412ed commit 0f14123

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
# Reset this number to 0 on major V8 upgrades.
3737
# Increment by one for each non-official patch applied to deps/v8.
38-
'v8_embedder_string': '-node.29',
38+
'v8_embedder_string': '-node.30',
3939

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

deps/v8/include/v8.h

+13-3
Original file line numberDiff line numberDiff line change
@@ -6279,6 +6279,7 @@ typedef bool (*AccessCheckCallback)(Local<Context> accessing_context,
62796279
Local<Object> accessed_object,
62806280
Local<Value> data);
62816281

6282+
class CFunction;
62826283
/**
62836284
* A FunctionTemplate is used to create functions at runtime. There
62846285
* can only be one function created from a FunctionTemplate in a
@@ -6387,7 +6388,8 @@ class V8_EXPORT FunctionTemplate : public Template {
63876388
Local<Value> data = Local<Value>(),
63886389
Local<Signature> signature = Local<Signature>(), int length = 0,
63896390
ConstructorBehavior behavior = ConstructorBehavior::kAllow,
6390-
SideEffectType side_effect_type = SideEffectType::kHasSideEffect);
6391+
SideEffectType side_effect_type = SideEffectType::kHasSideEffect,
6392+
const CFunction* not_available_in_node_v14_yet = nullptr);
63916393

63926394
/**
63936395
* Creates a function template backed/cached by a private property.
@@ -6418,7 +6420,8 @@ class V8_EXPORT FunctionTemplate : public Template {
64186420
*/
64196421
void SetCallHandler(
64206422
FunctionCallback callback, Local<Value> data = Local<Value>(),
6421-
SideEffectType side_effect_type = SideEffectType::kHasSideEffect);
6423+
SideEffectType side_effect_type = SideEffectType::kHasSideEffect,
6424+
const CFunction* not_available_in_node_v14_yet = nullptr);
64226425

64236426
/** Set the predefined length property for the FunctionTemplate. */
64246427
void SetLength(int length);
@@ -8110,7 +8113,10 @@ class V8_EXPORT Isolate {
81108113
array_buffer_allocator_shared(),
81118114
external_references(nullptr),
81128115
allow_atomics_wait(true),
8113-
only_terminate_in_safe_scope(false) {}
8116+
only_terminate_in_safe_scope(false),
8117+
embedder_wrapper_type_index(-1),
8118+
embedder_wrapper_object_index(-1) {}
8119+
81148120

81158121
/**
81168122
* Allows the host application to provide the address of a function that is
@@ -8174,6 +8180,10 @@ class V8_EXPORT Isolate {
81748180
* Termination is postponed when there is no active SafeForTerminationScope.
81758181
*/
81768182
bool only_terminate_in_safe_scope;
8183+
8184+
// Not available in Node v14 yet.
8185+
int embedder_wrapper_type_index;
8186+
int embedder_wrapper_object_index;
81778187
};
81788188

81798189

deps/v8/src/api/api.cc

+3-2
Original file line numberDiff line numberDiff line change
@@ -1499,7 +1499,7 @@ static Local<FunctionTemplate> FunctionTemplateNew(
14991499
Local<FunctionTemplate> FunctionTemplate::New(
15001500
Isolate* isolate, FunctionCallback callback, v8::Local<Value> data,
15011501
v8::Local<Signature> signature, int length, ConstructorBehavior behavior,
1502-
SideEffectType side_effect_type) {
1502+
SideEffectType side_effect_type, const CFunction*) {
15031503
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
15041504
// Changes to the environment cannot be captured in the snapshot. Expect no
15051505
// function templates when the isolate is created for serialization.
@@ -1540,7 +1540,8 @@ Local<AccessorSignature> AccessorSignature::New(
15401540

15411541
void FunctionTemplate::SetCallHandler(FunctionCallback callback,
15421542
v8::Local<Value> data,
1543-
SideEffectType side_effect_type) {
1543+
SideEffectType side_effect_type,
1544+
const CFunction*) {
15441545
auto info = Utils::OpenHandle(this);
15451546
EnsureNotInstantiated(info, "v8::FunctionTemplate::SetCallHandler");
15461547
i::Isolate* isolate = info->GetIsolate();

0 commit comments

Comments
 (0)