| 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_SERIALIZER_COMMON_H_ | 5 #ifndef V8_SNAPSHOT_SERIALIZER_COMMON_H_ |
| 6 #define V8_SNAPSHOT_SERIALIZER_COMMON_H_ | 6 #define V8_SNAPSHOT_SERIALIZER_COMMON_H_ |
| 7 | 7 |
| 8 #include "src/address-map.h" | 8 #include "src/address-map.h" |
| 9 #include "src/external-reference-table.h" | 9 #include "src/external-reference-table.h" |
| 10 #include "src/globals.h" | 10 #include "src/globals.h" |
| 11 | 11 |
| 12 namespace v8 { | 12 namespace v8 { |
| 13 namespace internal { | 13 namespace internal { |
| 14 | 14 |
| 15 class Isolate; | 15 class Isolate; |
| 16 | 16 |
| 17 class ExternalReferenceEncoder { | 17 class ExternalReferenceEncoder { |
| 18 public: | 18 public: |
| 19 explicit ExternalReferenceEncoder(Isolate* isolate); | 19 explicit ExternalReferenceEncoder(Isolate* isolate); |
| 20 | 20 |
| 21 uint32_t Encode(Address key) const; | 21 uint32_t Encode(Address key) const; |
| 22 | 22 |
| 23 const char* NameOfAddress(Isolate* isolate, Address address) const; | 23 const char* NameOfAddress(Isolate* isolate, Address address) const; |
| 24 | 24 |
| 25 private: | 25 private: |
| 26 AddressToIndexHashMap* map_; | 26 AddressToIndexHashMap* map_; |
| 27 #ifdef DEBUG |
| 28 ExternalReferenceTable* table_; |
| 29 #endif // DEBUG |
| 27 | 30 |
| 28 DISALLOW_COPY_AND_ASSIGN(ExternalReferenceEncoder); | 31 DISALLOW_COPY_AND_ASSIGN(ExternalReferenceEncoder); |
| 29 }; | 32 }; |
| 30 | 33 |
| 31 class HotObjectsList { | 34 class HotObjectsList { |
| 32 public: | 35 public: |
| 33 HotObjectsList() : index_(0) { | 36 HotObjectsList() : index_(0) { |
| 34 for (int i = 0; i < kSize; i++) circular_queue_[i] = NULL; | 37 for (int i = 0; i < kSize; i++) circular_queue_[i] = NULL; |
| 35 } | 38 } |
| 36 | 39 |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 | 278 |
| 276 byte* data_; | 279 byte* data_; |
| 277 int size_; | 280 int size_; |
| 278 bool owns_data_; | 281 bool owns_data_; |
| 279 }; | 282 }; |
| 280 | 283 |
| 281 } // namespace internal | 284 } // namespace internal |
| 282 } // namespace v8 | 285 } // namespace v8 |
| 283 | 286 |
| 284 #endif // V8_SNAPSHOT_SERIALIZER_COMMON_H_ | 287 #endif // V8_SNAPSHOT_SERIALIZER_COMMON_H_ |
| OLD | NEW |