OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_HEAP_SNAPSHOT_GENERATOR_H_ | 5 #ifndef V8_HEAP_SNAPSHOT_GENERATOR_H_ |
6 #define V8_HEAP_SNAPSHOT_GENERATOR_H_ | 6 #define V8_HEAP_SNAPSHOT_GENERATOR_H_ |
7 | 7 |
8 #include "src/profile-generator-inl.h" | 8 #include "src/profile-generator-inl.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 void ExtractStringReferences(int entry, String* obj); | 371 void ExtractStringReferences(int entry, String* obj); |
372 void ExtractSymbolReferences(int entry, Symbol* symbol); | 372 void ExtractSymbolReferences(int entry, Symbol* symbol); |
373 void ExtractJSCollectionReferences(int entry, JSCollection* collection); | 373 void ExtractJSCollectionReferences(int entry, JSCollection* collection); |
374 void ExtractJSWeakCollectionReferences(int entry, | 374 void ExtractJSWeakCollectionReferences(int entry, |
375 JSWeakCollection* collection); | 375 JSWeakCollection* collection); |
376 void ExtractContextReferences(int entry, Context* context); | 376 void ExtractContextReferences(int entry, Context* context); |
377 void ExtractMapReferences(int entry, Map* map); | 377 void ExtractMapReferences(int entry, Map* map); |
378 void ExtractSharedFunctionInfoReferences(int entry, | 378 void ExtractSharedFunctionInfoReferences(int entry, |
379 SharedFunctionInfo* shared); | 379 SharedFunctionInfo* shared); |
380 void ExtractScriptReferences(int entry, Script* script); | 380 void ExtractScriptReferences(int entry, Script* script); |
| 381 void ExtractAccessorInfoReferences(int entry, AccessorInfo* accessor_info); |
381 void ExtractAccessorPairReferences(int entry, AccessorPair* accessors); | 382 void ExtractAccessorPairReferences(int entry, AccessorPair* accessors); |
382 void ExtractCodeCacheReferences(int entry, CodeCache* code_cache); | 383 void ExtractCodeCacheReferences(int entry, CodeCache* code_cache); |
383 void ExtractCodeReferences(int entry, Code* code); | 384 void ExtractCodeReferences(int entry, Code* code); |
384 void ExtractBoxReferences(int entry, Box* box); | 385 void ExtractBoxReferences(int entry, Box* box); |
385 void ExtractCellReferences(int entry, Cell* cell); | 386 void ExtractCellReferences(int entry, Cell* cell); |
386 void ExtractPropertyCellReferences(int entry, PropertyCell* cell); | 387 void ExtractPropertyCellReferences(int entry, PropertyCell* cell); |
387 void ExtractAllocationSiteReferences(int entry, AllocationSite* site); | 388 void ExtractAllocationSiteReferences(int entry, AllocationSite* site); |
388 void ExtractJSArrayBufferReferences(int entry, JSArrayBuffer* buffer); | 389 void ExtractJSArrayBufferReferences(int entry, JSArrayBuffer* buffer); |
389 void ExtractFixedArrayReferences(int entry, FixedArray* array); | 390 void ExtractFixedArrayReferences(int entry, FixedArray* array); |
390 void ExtractClosureReferences(JSObject* js_obj, int entry); | 391 void ExtractClosureReferences(JSObject* js_obj, int entry); |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
617 friend class HeapSnapshotJSONSerializerEnumerator; | 618 friend class HeapSnapshotJSONSerializerEnumerator; |
618 friend class HeapSnapshotJSONSerializerIterator; | 619 friend class HeapSnapshotJSONSerializerIterator; |
619 | 620 |
620 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer); | 621 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer); |
621 }; | 622 }; |
622 | 623 |
623 | 624 |
624 } } // namespace v8::internal | 625 } } // namespace v8::internal |
625 | 626 |
626 #endif // V8_HEAP_SNAPSHOT_GENERATOR_H_ | 627 #endif // V8_HEAP_SNAPSHOT_GENERATOR_H_ |
OLD | NEW |