summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common.gypi2
-rw-r--r--deps/v8/src/unwinding-info-win64.cc31
2 files changed, 32 insertions, 1 deletions
diff --git a/common.gypi b/common.gypi
index 82774d06e9..cc7bfd2c9a 100644
--- a/common.gypi
+++ b/common.gypi
@@ -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.7',
+ 'v8_embedder_string': '-node.8',
##### V8 defaults for Node.js #####
diff --git a/deps/v8/src/unwinding-info-win64.cc b/deps/v8/src/unwinding-info-win64.cc
index d551998b52..1f0ee427d2 100644
--- a/deps/v8/src/unwinding-info-win64.cc
+++ b/deps/v8/src/unwinding-info-win64.cc
@@ -10,6 +10,37 @@
#include "src/macro-assembler.h"
#include "src/x64/assembler-x64.h"
+// Forward declaration to keep this independent of Win8
+NTSYSAPI
+DWORD
+NTAPI
+RtlAddGrowableFunctionTable(
+ _Out_ PVOID* DynamicTable,
+ _In_reads_(MaximumEntryCount) PRUNTIME_FUNCTION FunctionTable,
+ _In_ DWORD EntryCount,
+ _In_ DWORD MaximumEntryCount,
+ _In_ ULONG_PTR RangeBase,
+ _In_ ULONG_PTR RangeEnd
+ );
+
+
+NTSYSAPI
+void
+NTAPI
+RtlGrowFunctionTable(
+ _Inout_ PVOID DynamicTable,
+ _In_ DWORD NewEntryCount
+ );
+
+
+NTSYSAPI
+void
+NTAPI
+RtlDeleteGrowableFunctionTable(
+ _In_ PVOID DynamicTable
+ );
+
+
namespace v8 {
namespace internal {
namespace win64_unwindinfo {