// Copyright 2016 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_SNAPSHOT_DESERIALIZER_H_ #define V8_SNAPSHOT_DESERIALIZER_H_ #include #include #include "src/base/macros.h" #include "src/base/optional.h" #include "src/common/globals.h" #include "src/execution/local-isolate.h" #include "src/objects/allocation-site.h" #include "src/objects/api-callbacks.h" #include "src/objects/backing-store.h" #include "src/objects/code.h" #include "src/objects/js-array.h" #include "src/objects/map.h" #include "src/objects/smi.h" #include "src/objects/string-table.h" #include "src/objects/string.h" #include "src/snapshot/serializer-deserializer.h" #include "src/snapshot/snapshot-source-sink.h" namespace v8 { namespace internal { class HeapObject; class Object; // Used for platforms with embedded constant pools to trigger deserialization // of objects found in code. #if defined(V8_TARGET_ARCH_MIPS) || defined(V8_TARGET_ARCH_MIPS64) || \ defined(V8_TARGET_ARCH_PPC) || defined(V8_TARGET_ARCH_S390) || \ defined(V8_TARGET_ARCH_PPC64) || defined(V8_TARGET_ARCH_RISCV64) || \ V8_EMBEDDED_CONSTANT_POOL #define V8_CODE_EMBEDS_OBJECT_POINTER 1 #else #define V8_CODE_EMBEDS_OBJECT_POINTER 0 #endif // A Deserializer reads a snapshot and reconstructs the Object graph it defines. template class Deserializer : public SerializerDeserializer { public: ~Deserializer() override; Deserializer(const Deserializer&) = delete; Deserializer& operator=(const Deserializer&) = delete; protected: // Create a deserializer from a snapshot byte source. Deserializer(IsolateT* isolate, base::Vector payload, uint32_t magic_number, bool deserializing_user_code, bool can_rehash); void DeserializeDeferredObjects(); // Create Log events for newly deserialized objects. void LogNewObjectEvents(); void LogScriptEvents(Script script); void LogNewMapEvents(); // Descriptor arrays are deserialized as "strong", so that there is no risk of // them getting trimmed during a partial deserialization. This method makes // them "weak" again after deserialization completes. void WeakenDescriptorArrays(); // This returns the address of an object that has been described in the // snapshot by object vector index. Handle GetBackReferencedObject(); // Add an object to back an attached reference. The order to add objects must // mirror the order they are added in the serializer. void AddAttachedObject(Handle attached_object) { attached_objects_.push_back(attached_object); } void CheckNoArrayBufferBackingStores() { CHECK_EQ(new_off_heap_array_buffers().size(), 0); } IsolateT* isolate() const { return isolate_; } Isolate* main_thread_isolate() const { return isolate_->AsIsolate(); } SnapshotByteSource* source() { return &source_; } const std::vector>& new_allocation_sites() const { return new_allocation_sites_; } const std::vector>& new_code_objects() const { return new_code_objects_; } const std::vector>& new_maps() const { return new_maps_; } const std::vector>& accessor_infos() const { return accessor_infos_; } const std::vector>& call_handler_infos() const { return call_handler_infos_; } const std::vector>& new_scripts() const { return new_scripts_; } const std::vector>& new_off_heap_array_buffers() const { return new_off_heap_array_buffers_; } const std::vector>& new_descriptor_arrays() const { return new_descriptor_arrays_; } std::shared_ptr backing_store(size_t i) { DCHECK_LT(i, backing_stores_.size()); return backing_stores_[i]; } bool deserializing_user_code() const { return deserializing_user_code_; } bool should_rehash() const { return should_rehash_; } void Rehash(); Handle ReadObject(); private: friend class DeserializerRelocInfoVisitor; // A circular queue of hot objects. This is added to in the same order as in // Serializer::HotObjectsList, but this stores the objects as a vector of // existing handles. This allows us to add Handles to the queue without having // to create new handles. Note that this depends on those Handles staying // valid as long as the HotObjectsList is alive. class HotObjectsList { public: HotObjectsList() = default; HotObjectsList(const HotObjectsList&) = delete; HotObjectsList& operator=(const HotObjectsList&) = delete; void Add(Handle object) { circular_queue_[index_] = object; index_ = (index_ + 1) & kSizeMask; } Handle Get(int index) { DCHECK(!circular_queue_[index].is_null()); return circular_queue_[index]; } private: static const int kSize = kHotObjectCount; static const int kSizeMask = kSize - 1; STATIC_ASSERT(base::bits::IsPowerOfTwo(kSize)); Handle circular_queue_[kSize]; int index_ = 0; }; void VisitRootPointers(Root root, const char* description, FullObjectSlot start, FullObjectSlot end) override; void Synchronize(VisitorSynchronization::SyncTag tag) override; template inline int WriteAddress(TSlot dest, Address value); template inline int WriteExternalPointer(TSlot dest, Address value, ExternalPointerTag tag); // Fills in a heap object's data from start to end (exclusive). Start and end // are slot indices within the object. void ReadData(Handle object, int start_slot_index, int end_slot_index); // Fills in a contiguous range of full object slots (e.g. root pointers) from // start to end (exclusive). void ReadData(FullMaybeObjectSlot start, FullMaybeObjectSlot end); // Helper for ReadData which reads the given bytecode and fills in some heap // data into the given slot. May fill in zero or multiple slots, so it returns // the number of slots filled. template int ReadSingleBytecodeData(byte data, SlotAccessor slot_accessor); // A helper function for ReadData for reading external references. inline Address ReadExternalReferenceCase(); // A helper function for reading external pointer tags. ExternalPointerTag ReadExternalPointerTag(); Handle ReadObject(SnapshotSpace space_number); Handle ReadMetaMap(); HeapObjectReferenceType GetAndResetNextReferenceType(); template int ReadRepeatedObject(SlotGetter slot_getter, int repeat_count); // Special handling for serialized code like hooking up internalized strings. void PostProcessNewObject(Handle map, Handle obj, SnapshotSpace space); void PostProcessNewJSReceiver(Map map, Handle obj, JSReceiver raw_obj, InstanceType instance_type, SnapshotSpace space); HeapObject Allocate(AllocationType allocation, int size, AllocationAlignment alignment); // Cached current isolate. IsolateT* isolate_; // Objects from the attached object descriptions in the serialized user code. std::vector> attached_objects_; SnapshotByteSource source_; uint32_t magic_number_; HotObjectsList hot_objects_; std::vector> new_maps_; std::vector> new_allocation_sites_; std::vector> new_code_objects_; std::vector> accessor_infos_; std::vector> call_handler_infos_; std::vector> new_scripts_; std::vector> new_off_heap_array_buffers_; std::vector> new_descriptor_arrays_; std::vector> backing_stores_; // Vector of allocated objects that can be accessed by a backref, by index. std::vector> back_refs_; // Unresolved forward references (registered with kRegisterPendingForwardRef) // are collected in order as (object, field offset) pairs. The subsequent // forward ref resolution (with kResolvePendingForwardRef) accesses this // vector by index. // // The vector is cleared when there are no more unresolved forward refs. struct UnresolvedForwardRef { UnresolvedForwardRef(Handle object, int offset, HeapObjectReferenceType ref_type) : object(object), offset(offset), ref_type(ref_type) {} Handle object; int offset; HeapObjectReferenceType ref_type; }; std::vector unresolved_forward_refs_; int num_unresolved_forward_refs_ = 0; const bool deserializing_user_code_; bool next_reference_is_weak_ = false; // TODO(6593): generalize rehashing, and remove this flag. const bool should_rehash_; std::vector> to_rehash_; #ifdef DEBUG uint32_t num_api_references_; // Record the previous object allocated for DCHECKs. Handle previous_allocation_obj_; int previous_allocation_size_ = 0; #endif // DEBUG }; extern template class EXPORT_TEMPLATE_DECLARE(V8_EXPORT_PRIVATE) Deserializer; extern template class EXPORT_TEMPLATE_DECLARE(V8_EXPORT_PRIVATE) Deserializer; enum class DeserializingUserCodeOption { kNotDeserializingUserCode, kIsDeserializingUserCode }; // Used to insert a deserialized internalized string into the string table. class StringTableInsertionKey final : public StringTableKey { public: explicit StringTableInsertionKey( Isolate* isolate, Handle string, DeserializingUserCodeOption deserializing_user_code); explicit StringTableInsertionKey( LocalIsolate* isolate, Handle string, DeserializingUserCodeOption deserializing_user_code); template bool IsMatch(IsolateT* isolate, String string); void PrepareForInsertion(Isolate* isolate) { // When sharing the string table, all string table lookups during snapshot // deserialization are hits. DCHECK(isolate->OwnsStringTable() || deserializing_user_code_ == DeserializingUserCodeOption::kIsDeserializingUserCode); } void PrepareForInsertion(LocalIsolate* isolate) {} V8_WARN_UNUSED_RESULT Handle GetHandleForInsertion() { return string_; } private: Handle string_; #ifdef DEBUG DeserializingUserCodeOption deserializing_user_code_; #endif DISALLOW_GARBAGE_COLLECTION(no_gc) }; } // namespace internal } // namespace v8 #endif // V8_SNAPSHOT_DESERIALIZER_H_