v8
v8-profiler.h
1 // Copyright 2010 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef V8_V8_PROFILER_H_
6 #define V8_V8_PROFILER_H_
7 
8 #include <vector>
9 #include "v8.h"
10 
14 namespace v8 {
15 
16 class HeapGraphNode;
17 struct HeapStatsUpdate;
18 
19 typedef uint32_t SnapshotObjectId;
20 
21 
23  int script_id;
24  size_t position;
25 };
26 
27 } // namespace v8
28 
29 #ifdef V8_OS_WIN
30 template class V8_EXPORT std::vector<v8::CpuProfileDeoptFrame>;
31 #endif
32 
33 namespace v8 {
34 
35 struct V8_EXPORT CpuProfileDeoptInfo {
37  const char* deopt_reason;
38  std::vector<CpuProfileDeoptFrame> stack;
39 };
40 
41 } // namespace v8
42 
43 #ifdef V8_OS_WIN
44 template class V8_EXPORT std::vector<v8::CpuProfileDeoptInfo>;
45 #endif
46 
47 namespace v8 {
48 
52 class V8_EXPORT CpuProfileNode {
53  public:
54  struct LineTick {
56  int line;
57 
59  unsigned int hit_count;
60  };
61 
63  Handle<String> GetFunctionName() const;
64 
66  int GetScriptId() const;
67 
69  Handle<String> GetScriptResourceName() const;
70 
75  int GetLineNumber() const;
76 
81  int GetColumnNumber() const;
82 
86  unsigned int GetHitLineCount() const;
87 
93  bool GetLineTicks(LineTick* entries, unsigned int length) const;
94 
98  const char* GetBailoutReason() const;
99 
103  unsigned GetHitCount() const;
104 
106  unsigned GetCallUid() const;
107 
109  unsigned GetNodeId() const;
110 
112  int GetChildrenCount() const;
113 
115  const CpuProfileNode* GetChild(int index) const;
116 
118  const std::vector<CpuProfileDeoptInfo>& GetDeoptInfos() const;
119 
120  static const int kNoLineNumberInfo = Message::kNoLineNumberInfo;
121  static const int kNoColumnNumberInfo = Message::kNoColumnInfo;
122 };
123 
124 
129 class V8_EXPORT CpuProfile {
130  public:
132  Handle<String> GetTitle() const;
133 
135  const CpuProfileNode* GetTopDownRoot() const;
136 
141  int GetSamplesCount() const;
142 
147  const CpuProfileNode* GetSample(int index) const;
148 
154  int64_t GetSampleTimestamp(int index) const;
155 
160  int64_t GetStartTime() const;
161 
167  int64_t GetEndTime() const;
168 
173  void Delete();
174 };
175 
176 
181 class V8_EXPORT CpuProfiler {
182  public:
188  void SetSamplingInterval(int us);
189 
201  void StartProfiling(Handle<String> title, bool record_samples = false);
202 
207  CpuProfile* StopProfiling(Handle<String> title);
208 
212  void SetIdle(bool is_idle);
213 
214  private:
215  CpuProfiler();
216  ~CpuProfiler();
217  CpuProfiler(const CpuProfiler&);
218  CpuProfiler& operator=(const CpuProfiler&);
219 };
220 
221 
226 class V8_EXPORT HeapGraphEdge {
227  public:
228  enum Type {
229  kContextVariable = 0, // A variable from a function context.
230  kElement = 1, // An element of an array.
231  kProperty = 2, // A named object property.
232  kInternal = 3, // A link that can't be accessed from JS,
233  // thus, its name isn't a real property name
234  // (e.g. parts of a ConsString).
235  kHidden = 4, // A link that is needed for proper sizes
236  // calculation, but may be hidden from user.
237  kShortcut = 5, // A link that must not be followed during
238  // sizes calculation.
239  kWeak = 6 // A weak reference (ignored by the GC).
240  };
241 
243  Type GetType() const;
244 
249  Handle<Value> GetName() const;
250 
252  const HeapGraphNode* GetFromNode() const;
253 
255  const HeapGraphNode* GetToNode() const;
256 };
257 
258 
262 class V8_EXPORT HeapGraphNode {
263  public:
264  enum Type {
265  kHidden = 0, // Hidden node, may be filtered when shown to user.
266  kArray = 1, // An array of elements.
267  kString = 2, // A string.
268  kObject = 3, // A JS object (except for arrays and strings).
269  kCode = 4, // Compiled code.
270  kClosure = 5, // Function closure.
271  kRegExp = 6, // RegExp.
272  kHeapNumber = 7, // Number stored in the heap.
273  kNative = 8, // Native object (not from V8 heap).
274  kSynthetic = 9, // Synthetic object, usualy used for grouping
275  // snapshot items together.
276  kConsString = 10, // Concatenated string. A pair of pointers to strings.
277  kSlicedString = 11, // Sliced string. A fragment of another string.
278  kSymbol = 12 // A Symbol (ES6).
279  };
280 
282  Type GetType() const;
283 
289  Handle<String> GetName() const;
290 
295  SnapshotObjectId GetId() const;
296 
298  size_t GetShallowSize() const;
299 
301  int GetChildrenCount() const;
302 
304  const HeapGraphEdge* GetChild(int index) const;
305 };
306 
307 
311 class V8_EXPORT OutputStream { // NOLINT
312  public:
313  enum WriteResult {
314  kContinue = 0,
315  kAbort = 1
316  };
317  virtual ~OutputStream() {}
319  virtual void EndOfStream() = 0;
321  virtual int GetChunkSize() { return 1024; }
327  virtual WriteResult WriteAsciiChunk(char* data, int size) = 0;
333  virtual WriteResult WriteHeapStatsChunk(HeapStatsUpdate* data, int count) {
334  return kAbort;
335  }
336 };
337 
338 
342 class V8_EXPORT HeapSnapshot {
343  public:
344  enum SerializationFormat {
345  kJSON = 0 // See format description near 'Serialize' method.
346  };
347 
349  const HeapGraphNode* GetRoot() const;
350 
352  const HeapGraphNode* GetNodeById(SnapshotObjectId id) const;
353 
355  int GetNodesCount() const;
356 
358  const HeapGraphNode* GetNode(int index) const;
359 
361  SnapshotObjectId GetMaxSnapshotJSObjectId() const;
362 
368  void Delete();
369 
396  void Serialize(OutputStream* stream,
397  SerializationFormat format = kJSON) const;
398 };
399 
400 
405 class V8_EXPORT ActivityControl { // NOLINT
406  public:
407  enum ControlOption {
408  kContinue = 0,
409  kAbort = 1
410  };
411  virtual ~ActivityControl() {}
416  virtual ControlOption ReportProgressValue(int done, int total) = 0;
417 };
418 
419 
424 class V8_EXPORT HeapProfiler {
425  public:
432  typedef RetainedObjectInfo* (*WrapperInfoCallback)
433  (uint16_t class_id, Handle<Value> wrapper);
434 
436  int GetSnapshotCount();
437 
439  const HeapSnapshot* GetHeapSnapshot(int index);
440 
445  SnapshotObjectId GetObjectId(Handle<Value> value);
446 
451  Handle<Value> FindObjectById(SnapshotObjectId id);
452 
458  void ClearObjectIds();
459 
465  static const SnapshotObjectId kUnknownObjectId = 0;
466 
471  public:
476  virtual const char* GetName(Handle<Object> object) = 0;
477  protected:
478  virtual ~ObjectNameResolver() {}
479  };
480 
484  const HeapSnapshot* TakeHeapSnapshot(
485  ActivityControl* control = NULL,
486  ObjectNameResolver* global_object_name_resolver = NULL);
487 
497  void StartTrackingHeapObjects(bool track_allocations = false);
498 
512  SnapshotObjectId GetHeapStats(OutputStream* stream,
513  int64_t* timestamp_us = NULL);
514 
520  void StopTrackingHeapObjects();
521 
526  void DeleteAllHeapSnapshots();
527 
529  void SetWrapperClassInfoProvider(
530  uint16_t class_id,
531  WrapperInfoCallback callback);
532 
538  static const uint16_t kPersistentHandleNoClassId = 0;
539 
541  size_t GetProfilerMemorySize();
542 
546  void SetRetainedObjectInfo(UniqueId id, RetainedObjectInfo* info);
547 
548  private:
549  HeapProfiler();
550  ~HeapProfiler();
551  HeapProfiler(const HeapProfiler&);
552  HeapProfiler& operator=(const HeapProfiler&);
553 };
554 
555 
580 class V8_EXPORT RetainedObjectInfo { // NOLINT
581  public:
583  virtual void Dispose() = 0;
584 
586  virtual bool IsEquivalent(RetainedObjectInfo* other) = 0;
587 
592  virtual intptr_t GetHash() = 0;
593 
598  virtual const char* GetLabel() = 0;
599 
609  virtual const char* GetGroupLabel() { return GetLabel(); }
610 
615  virtual intptr_t GetElementCount() { return -1; }
616 
618  virtual intptr_t GetSizeInBytes() { return -1; }
619 
620  protected:
621  RetainedObjectInfo() {}
622  virtual ~RetainedObjectInfo() {}
623 
624  private:
625  RetainedObjectInfo(const RetainedObjectInfo&);
626  RetainedObjectInfo& operator=(const RetainedObjectInfo&);
627 };
628 
629 
635  HeapStatsUpdate(uint32_t index, uint32_t count, uint32_t size)
636  : index(index), count(count), size(size) { }
637  uint32_t index; // Index of the time interval that was changed.
638  uint32_t count; // New value of count field for the interval with this index.
639  uint32_t size; // New value of size field for the interval with this index.
640 };
641 
642 
643 } // namespace v8
644 
645 
646 #endif // V8_V8_PROFILER_H_
virtual int GetChunkSize()
Definition: v8-profiler.h:321
virtual const char * GetGroupLabel()
Definition: v8-profiler.h:609
Definition: v8-profiler.h:580
Definition: v8-profiler.h:35
Definition: v8-profiler.h:405
unsigned int hit_count
Definition: v8-profiler.h:59
Definition: v8-profiler.h:342
Definition: v8-profiler.h:52
Definition: v8-profiler.h:311
Definition: v8-profiler.h:54
Definition: libplatform.h:10
Definition: v8-profiler.h:424
Definition: v8-profiler.h:226
Definition: v8-profiler.h:262
int line
Definition: v8-profiler.h:56
virtual intptr_t GetElementCount()
Definition: v8-profiler.h:615
const char * deopt_reason
Definition: v8-profiler.h:37
Definition: v8-profiler.h:634
Definition: v8.h:155
virtual intptr_t GetSizeInBytes()
Definition: v8-profiler.h:618
Definition: v8-profiler.h:470
Definition: v8.h:109
virtual WriteResult WriteHeapStatsChunk(HeapStatsUpdate *data, int count)
Definition: v8-profiler.h:333
Definition: v8-profiler.h:22
Definition: v8-profiler.h:181
Definition: v8-profiler.h:129