diff --git a/common.gypi b/common.gypi index 074a6cdf8f6c19..d90daf84abaa22 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.8', + 'v8_embedder_string': '-node.9', ##### V8 defaults for Node.js ##### diff --git a/deps/v8/src/init/setup-isolate-deserialize.cc b/deps/v8/src/init/setup-isolate-deserialize.cc index ff0268d3c84f91..8a73ff0c8ac9d5 100644 --- a/deps/v8/src/init/setup-isolate-deserialize.cc +++ b/deps/v8/src/init/setup-isolate-deserialize.cc @@ -7,6 +7,7 @@ #include "src/base/logging.h" #include "src/execution/isolate.h" #include "src/interpreter/interpreter.h" +#include "src/objects/objects-inl.h" #include "src/utils/ostreams.h" namespace v8 { diff --git a/deps/v8/src/objects/ordered-hash-table.cc b/deps/v8/src/objects/ordered-hash-table.cc index 3d628cc4062828..c4e64d2d6abd94 100644 --- a/deps/v8/src/objects/ordered-hash-table.cc +++ b/deps/v8/src/objects/ordered-hash-table.cc @@ -930,6 +930,7 @@ OrderedHashTableHandler::Allocate(Isolate* isolate, int capacity); +#if !defined(V8_OS_WIN) template bool OrderedHashTableHandler::Delete( Handle table, Handle key) { @@ -942,7 +943,9 @@ bool OrderedHashTableHandler::Delete( // down to a smaller hash table. return LargeTable::Delete(Handle::cast(table), key); } +#endif +#if !defined(V8_OS_WIN) template bool OrderedHashTableHandler::HasKey( Isolate* isolate, Handle table, Handle key) { @@ -953,6 +956,7 @@ bool OrderedHashTableHandler::HasKey( DCHECK(LargeTable::Is(table)); return LargeTable::HasKey(isolate, LargeTable::cast(*table), *key); } +#endif template bool OrderedHashTableHandler::HasKey( diff --git a/deps/v8/src/snapshot/snapshot.h b/deps/v8/src/snapshot/snapshot.h index a9995b2d3e120d..ef933ef83a350b 100644 --- a/deps/v8/src/snapshot/snapshot.h +++ b/deps/v8/src/snapshot/snapshot.h @@ -8,6 +8,7 @@ #include "src/snapshot/partial-serializer.h" #include "src/snapshot/startup-serializer.h" +#include "src/objects/objects-inl.h" #include "src/utils/utils.h" namespace v8 {