Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(694)

Side by Side Diff: src/heap-snapshot-generator.h

Issue 373183002: Support ES6 Map and Set in heap profiler (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fixed comment Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/heap-snapshot-generator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 363
364 template<V8HeapExplorer::ExtractReferencesMethod extractor> 364 template<V8HeapExplorer::ExtractReferencesMethod extractor>
365 bool IterateAndExtractSinglePass(); 365 bool IterateAndExtractSinglePass();
366 366
367 bool ExtractReferencesPass1(int entry, HeapObject* obj); 367 bool ExtractReferencesPass1(int entry, HeapObject* obj);
368 bool ExtractReferencesPass2(int entry, HeapObject* obj); 368 bool ExtractReferencesPass2(int entry, HeapObject* obj);
369 void ExtractJSGlobalProxyReferences(int entry, JSGlobalProxy* proxy); 369 void ExtractJSGlobalProxyReferences(int entry, JSGlobalProxy* proxy);
370 void ExtractJSObjectReferences(int entry, JSObject* js_obj); 370 void ExtractJSObjectReferences(int entry, JSObject* js_obj);
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 ExtractJSWeakCollectionReferences(int entry, 374 void ExtractJSWeakCollectionReferences(int entry,
374 JSWeakCollection* collection); 375 JSWeakCollection* collection);
375 void ExtractContextReferences(int entry, Context* context); 376 void ExtractContextReferences(int entry, Context* context);
376 void ExtractMapReferences(int entry, Map* map); 377 void ExtractMapReferences(int entry, Map* map);
377 void ExtractSharedFunctionInfoReferences(int entry, 378 void ExtractSharedFunctionInfoReferences(int entry,
378 SharedFunctionInfo* shared); 379 SharedFunctionInfo* shared);
379 void ExtractScriptReferences(int entry, Script* script); 380 void ExtractScriptReferences(int entry, Script* script);
380 void ExtractAccessorPairReferences(int entry, AccessorPair* accessors); 381 void ExtractAccessorPairReferences(int entry, AccessorPair* accessors);
381 void ExtractCodeCacheReferences(int entry, CodeCache* code_cache); 382 void ExtractCodeCacheReferences(int entry, CodeCache* code_cache);
382 void ExtractCodeReferences(int entry, Code* code); 383 void ExtractCodeReferences(int entry, Code* code);
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 friend class HeapSnapshotJSONSerializerEnumerator; 617 friend class HeapSnapshotJSONSerializerEnumerator;
617 friend class HeapSnapshotJSONSerializerIterator; 618 friend class HeapSnapshotJSONSerializerIterator;
618 619
619 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer); 620 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer);
620 }; 621 };
621 622
622 623
623 } } // namespace v8::internal 624 } } // namespace v8::internal
624 625
625 #endif // V8_HEAP_SNAPSHOT_GENERATOR_H_ 626 #endif // V8_HEAP_SNAPSHOT_GENERATOR_H_
OLDNEW
« no previous file with comments | « no previous file | src/heap-snapshot-generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698