diff --git a/common.gypi b/common.gypi index c96c8ef5eb06df..074a6cdf8f6c19 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/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 dda848f0100452..f0cc7b9df78483 100644 --- a/deps/v8/src/objects/ordered-hash-table.cc +++ b/deps/v8/src/objects/ordered-hash-table.cc @@ -957,6 +957,7 @@ OrderedHashTableHandler::Allocate(Isolate* isolate, int capacity); +#if !defined(V8_OS_WIN) template bool OrderedHashTableHandler::Delete( Handle table, Handle key) { @@ -969,7 +970,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) { @@ -980,6 +983,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 4a4da9f755484b..f7e1e86b845ba5 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 {