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

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

Issue 1542963002: [runtime] Introduce dedicated JSBoundFunction to represent bound functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@FunctionConstructor
Patch Set: [arm64] Poke does not preserve flags with --debug-code. Created 4 years, 12 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
« no previous file with comments | « src/objects-printer.cc ('k') | src/profiler/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_PROFILER_HEAP_SNAPSHOT_GENERATOR_H_ 5 #ifndef V8_PROFILER_HEAP_SNAPSHOT_GENERATOR_H_
6 #define V8_PROFILER_HEAP_SNAPSHOT_GENERATOR_H_ 6 #define V8_PROFILER_HEAP_SNAPSHOT_GENERATOR_H_
7 7
8 #include "include/v8-profiler.h" 8 #include "include/v8-profiler.h"
9 #include "src/base/platform/time.h" 9 #include "src/base/platform/time.h"
10 #include "src/objects.h" 10 #include "src/objects.h"
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 void ExtractAccessorInfoReferences(int entry, AccessorInfo* accessor_info); 383 void ExtractAccessorInfoReferences(int entry, AccessorInfo* accessor_info);
384 void ExtractAccessorPairReferences(int entry, AccessorPair* accessors); 384 void ExtractAccessorPairReferences(int entry, AccessorPair* accessors);
385 void ExtractCodeCacheReferences(int entry, CodeCache* code_cache); 385 void ExtractCodeCacheReferences(int entry, CodeCache* code_cache);
386 void ExtractCodeReferences(int entry, Code* code); 386 void ExtractCodeReferences(int entry, Code* code);
387 void ExtractBoxReferences(int entry, Box* box); 387 void ExtractBoxReferences(int entry, Box* box);
388 void ExtractCellReferences(int entry, Cell* cell); 388 void ExtractCellReferences(int entry, Cell* cell);
389 void ExtractPropertyCellReferences(int entry, PropertyCell* cell); 389 void ExtractPropertyCellReferences(int entry, PropertyCell* cell);
390 void ExtractAllocationSiteReferences(int entry, AllocationSite* site); 390 void ExtractAllocationSiteReferences(int entry, AllocationSite* site);
391 void ExtractJSArrayBufferReferences(int entry, JSArrayBuffer* buffer); 391 void ExtractJSArrayBufferReferences(int entry, JSArrayBuffer* buffer);
392 void ExtractFixedArrayReferences(int entry, FixedArray* array); 392 void ExtractFixedArrayReferences(int entry, FixedArray* array);
393 void ExtractClosureReferences(JSObject* js_obj, int entry);
394 void ExtractPropertyReferences(JSObject* js_obj, int entry); 393 void ExtractPropertyReferences(JSObject* js_obj, int entry);
395 void ExtractAccessorPairProperty(JSObject* js_obj, int entry, Name* key, 394 void ExtractAccessorPairProperty(JSObject* js_obj, int entry, Name* key,
396 Object* callback_obj, int field_offset = -1); 395 Object* callback_obj, int field_offset = -1);
397 void ExtractElementReferences(JSObject* js_obj, int entry); 396 void ExtractElementReferences(JSObject* js_obj, int entry);
398 void ExtractInternalReferences(JSObject* js_obj, int entry); 397 void ExtractInternalReferences(JSObject* js_obj, int entry);
399 398
400 bool IsEssentialObject(Object* object); 399 bool IsEssentialObject(Object* object);
401 void SetContextReference(HeapObject* parent_obj, 400 void SetContextReference(HeapObject* parent_obj,
402 int parent, 401 int parent,
403 String* reference_name, 402 String* reference_name,
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 friend class HeapSnapshotJSONSerializerIterator; 619 friend class HeapSnapshotJSONSerializerIterator;
621 620
622 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer); 621 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer);
623 }; 622 };
624 623
625 624
626 } // namespace internal 625 } // namespace internal
627 } // namespace v8 626 } // namespace v8
628 627
629 #endif // V8_PROFILER_HEAP_SNAPSHOT_GENERATOR_H_ 628 #endif // V8_PROFILER_HEAP_SNAPSHOT_GENERATOR_H_
OLDNEW
« no previous file with comments | « src/objects-printer.cc ('k') | src/profiler/heap-snapshot-generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698