| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_SNAPSHOT_STARTUP_SERIALIZER_H_ | 5 #ifndef V8_SNAPSHOT_STARTUP_SERIALIZER_H_ |
| 6 #define V8_SNAPSHOT_STARTUP_SERIALIZER_H_ | 6 #define V8_SNAPSHOT_STARTUP_SERIALIZER_H_ |
| 7 | 7 |
| 8 #include <bitset> | 8 #include <bitset> |
| 9 #include "include/v8.h" | 9 #include "include/v8.h" |
| 10 #include "src/snapshot/serializer.h" | 10 #include "src/snapshot/serializer.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 // 1) Immortal immovable roots | 23 // 1) Immortal immovable roots |
| 24 // 2) Remaining strong references. | 24 // 2) Remaining strong references. |
| 25 // 3) Partial snapshot cache. | 25 // 3) Partial snapshot cache. |
| 26 // 4) Weak references (e.g. the string table). | 26 // 4) Weak references (e.g. the string table). |
| 27 void SerializeStrongReferences(); | 27 void SerializeStrongReferences(); |
| 28 void SerializeWeakReferencesAndDeferred(); | 28 void SerializeWeakReferencesAndDeferred(); |
| 29 | 29 |
| 30 int PartialSnapshotCacheIndex(HeapObject* o); | 30 int PartialSnapshotCacheIndex(HeapObject* o); |
| 31 | 31 |
| 32 private: | 32 private: |
| 33 class PartialCacheIndexMap : public AddressMapBase { | 33 class PartialCacheIndexMap { |
| 34 public: | 34 public: |
| 35 PartialCacheIndexMap() : map_(), next_index_(0) {} | 35 PartialCacheIndexMap() : map_(), next_index_(0) {} |
| 36 | 36 |
| 37 // Lookup object in the map. Return its index if found, or create | 37 // Lookup object in the map. Return its index if found, or create |
| 38 // a new entry with new_index as value, and return kInvalidIndex. | 38 // a new entry with new_index as value, and return kInvalidIndex. |
| 39 bool LookupOrInsert(HeapObject* obj, int* index_out) { | 39 bool LookupOrInsert(HeapObject* obj, int* index_out) { |
| 40 base::HashMap::Entry* entry = LookupEntry(&map_, obj, false); | 40 if (map_.Has(obj)) { |
| 41 if (entry != NULL) { | 41 *index_out = map_.Get(obj); |
| 42 *index_out = GetValue(entry); | |
| 43 return true; | 42 return true; |
| 44 } | 43 } |
| 45 *index_out = next_index_; | 44 *index_out = next_index_; |
| 46 SetValue(LookupEntry(&map_, obj, true), next_index_++); | 45 map_.Set(obj, next_index_++); |
| 47 return false; | 46 return false; |
| 48 } | 47 } |
| 49 | 48 |
| 50 private: | 49 private: |
| 51 base::HashMap map_; | 50 DisallowHeapAllocation no_allocation_; |
| 51 HeapObjectToIndexHashMap map_; |
| 52 int next_index_; | 52 int next_index_; |
| 53 | 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(PartialCacheIndexMap); | 54 DISALLOW_COPY_AND_ASSIGN(PartialCacheIndexMap); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 // The StartupSerializer has to serialize the root array, which is slightly | 57 // The StartupSerializer has to serialize the root array, which is slightly |
| 58 // different. | 58 // different. |
| 59 void VisitPointers(Object** start, Object** end) override; | 59 void VisitPointers(Object** start, Object** end) override; |
| 60 void SerializeObject(HeapObject* o, HowToCode how_to_code, | 60 void SerializeObject(HeapObject* o, HowToCode how_to_code, |
| 61 WhereToPoint where_to_point, int skip) override; | 61 WhereToPoint where_to_point, int skip) override; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 72 bool serializing_immortal_immovables_roots_; | 72 bool serializing_immortal_immovables_roots_; |
| 73 std::bitset<Heap::kStrongRootListLength> root_has_been_serialized_; | 73 std::bitset<Heap::kStrongRootListLength> root_has_been_serialized_; |
| 74 PartialCacheIndexMap partial_cache_index_map_; | 74 PartialCacheIndexMap partial_cache_index_map_; |
| 75 DISALLOW_COPY_AND_ASSIGN(StartupSerializer); | 75 DISALLOW_COPY_AND_ASSIGN(StartupSerializer); |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 } // namespace internal | 78 } // namespace internal |
| 79 } // namespace v8 | 79 } // namespace v8 |
| 80 | 80 |
| 81 #endif // V8_SNAPSHOT_STARTUP_SERIALIZER_H_ | 81 #endif // V8_SNAPSHOT_STARTUP_SERIALIZER_H_ |
| OLD | NEW |