From 9b4bf7de6c9a7c25f116c7a502384c20b5cfaea3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Tue, 4 Dec 2018 08:20:37 +0100 Subject: deps: update V8 to 7.1.302.28 PR-URL: https://github.com/nodejs/node/pull/23423 Reviewed-By: Colin Ihrig Reviewed-By: Gus Caplan Reviewed-By: Myles Borins --- deps/v8/src/snapshot/builtin-deserializer.h | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'deps/v8/src/snapshot/builtin-deserializer.h') diff --git a/deps/v8/src/snapshot/builtin-deserializer.h b/deps/v8/src/snapshot/builtin-deserializer.h index 1ae49686b8..e77598db68 100644 --- a/deps/v8/src/snapshot/builtin-deserializer.h +++ b/deps/v8/src/snapshot/builtin-deserializer.h @@ -7,7 +7,6 @@ #include "src/interpreter/interpreter.h" #include "src/snapshot/builtin-deserializer-allocator.h" -#include "src/snapshot/builtin-snapshot-utils.h" #include "src/snapshot/deserializer.h" namespace v8 { @@ -32,25 +31,17 @@ class BuiltinDeserializer final // // After this, the instruction cache must be flushed by the caller (we don't // do it ourselves since the startup serializer batch-flushes all code pages). - void DeserializeEagerBuiltinsAndHandlers(); + void DeserializeEagerBuiltins(); // Deserializes the single given builtin. This is used whenever a builtin is // lazily deserialized at runtime. Code* DeserializeBuiltin(int builtin_id); - // Deserializes the single given handler. This is used whenever a handler is - // lazily deserialized at runtime. - Code* DeserializeHandler(Bytecode bytecode, OperandScale operand_scale); - private: // Deserializes the single given builtin. Assumes that reservations have // already been allocated. Code* DeserializeBuiltinRaw(int builtin_id); - // Deserializes the single given bytecode handler. Assumes that reservations - // have already been allocated. - Code* DeserializeHandlerRaw(Bytecode bytecode, OperandScale operand_scale); - // Extracts the size builtin Code objects (baked into the snapshot). uint32_t ExtractCodeObjectSize(int builtin_id); -- cgit v1.2.1