Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c08d94b

Browse filesBrowse files
refacktargos
authored andcommitted
deps: V8: forward declaration of Rtl*FunctionTable
This should be semver-patch since actual invocation is version conditional. Backport-PR-URL: #28005 PR-URL: #27375 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent 445bb81 commit c08d94b
Copy full SHA for c08d94b

File tree

Expand file treeCollapse file tree

2 files changed

+32
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

2 files changed

+32
-1
lines changed
Open diff view settings
Collapse file

‎common.gypi‎

Copy file name to clipboardExpand all lines: common.gypi
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
# Reset this number to 0 on major V8 upgrades.
4040
# Increment by one for each non-official patch applied to deps/v8.
41-
'v8_embedder_string': '-node.7',
41+
'v8_embedder_string': '-node.8',
4242

4343
##### V8 defaults for Node.js #####
4444

Collapse file

‎deps/v8/src/unwinding-info-win64.cc‎

Copy file name to clipboardExpand all lines: deps/v8/src/unwinding-info-win64.cc
+31Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,37 @@
1010
#include "src/macro-assembler.h"
1111
#include "src/x64/assembler-x64.h"
1212

13+
// Forward declaration to keep this independent of Win8
14+
NTSYSAPI
15+
DWORD
16+
NTAPI
17+
RtlAddGrowableFunctionTable(
18+
_Out_ PVOID* DynamicTable,
19+
_In_reads_(MaximumEntryCount) PRUNTIME_FUNCTION FunctionTable,
20+
_In_ DWORD EntryCount,
21+
_In_ DWORD MaximumEntryCount,
22+
_In_ ULONG_PTR RangeBase,
23+
_In_ ULONG_PTR RangeEnd
24+
);
25+
26+
27+
NTSYSAPI
28+
void
29+
NTAPI
30+
RtlGrowFunctionTable(
31+
_Inout_ PVOID DynamicTable,
32+
_In_ DWORD NewEntryCount
33+
);
34+
35+
36+
NTSYSAPI
37+
void
38+
NTAPI
39+
RtlDeleteGrowableFunctionTable(
40+
_In_ PVOID DynamicTable
41+
);
42+
43+
1344
namespace v8 {
1445
namespace internal {
1546
namespace win64_unwindinfo {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.