blob: 96ae273902ed604fb20a217220275148f68f5bbf [file] [log] [blame]
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00001// Copyright 2009-2010 the V8 project authors. All rights reserved.
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#ifndef V8_HEAP_PROFILER_H_
29#define V8_HEAP_PROFILER_H_
30
machenbach@chromium.orgc1789ee2013-07-05 07:09:57 +000031#include "heap-snapshot-generator-inl.h"
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000032#include "isolate.h"
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000033
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +000034namespace v8 {
35namespace internal {
36
whesse@chromium.org2c186ca2010-06-16 11:32:39 +000037class HeapSnapshot;
38class HeapSnapshotsCollection;
39
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000040#define HEAP_PROFILE(heap, call) \
41 do { \
42 v8::internal::HeapProfiler* profiler = heap->isolate()->heap_profiler(); \
43 if (profiler != NULL && profiler->is_profiling()) { \
44 profiler->call; \
45 } \
ricow@chromium.org4980dff2010-07-19 08:33:45 +000046 } while (false)
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +000047
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +000048class HeapProfiler {
49 public:
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000050 explicit HeapProfiler(Heap* heap);
51 ~HeapProfiler();
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +000052
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000053 size_t GetMemorySizeUsedByProfiler();
mmassi@chromium.org7028c052012-06-13 11:51:58 +000054
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000055 HeapSnapshot* TakeSnapshot(
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +000056 const char* name,
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +000057 v8::ActivityControl* control,
58 v8::HeapProfiler::ObjectNameResolver* resolver);
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000059 HeapSnapshot* TakeSnapshot(
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +000060 String* name,
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +000061 v8::ActivityControl* control,
62 v8::HeapProfiler::ObjectNameResolver* resolver);
jkummerow@chromium.org28faa982012-04-13 09:58:30 +000063
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000064 void StartHeapObjectsTracking();
65 void StopHeapObjectsTracking();
mstarzinger@chromium.orga2e1a402013-10-15 08:25:05 +000066
67 static void RecordObjectAllocationFromMasm(Isolate* isolate,
68 Address obj,
69 int size);
70
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000071 SnapshotObjectId PushHeapObjectsStats(OutputStream* stream);
72 int GetSnapshotsCount();
73 HeapSnapshot* GetSnapshot(int index);
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000074 SnapshotObjectId GetSnapshotObjectId(Handle<Object> obj);
75 void DeleteAllSnapshots();
whesse@chromium.org2c186ca2010-06-16 11:32:39 +000076
mstarzinger@chromium.orga2e1a402013-10-15 08:25:05 +000077 void ObjectMoveEvent(Address from, Address to, int size);
78
79 void NewObjectEvent(Address addr, int size);
80
81 void UpdateObjectSizeEvent(Address addr, int size);
ricow@chromium.org4980dff2010-07-19 08:33:45 +000082
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000083 void DefineWrapperClass(
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000084 uint16_t class_id, v8::HeapProfiler::WrapperInfoCallback callback);
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000085
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000086 v8::RetainedObjectInfo* ExecuteWrapperClassCallback(uint16_t class_id,
87 Object** wrapper);
88 INLINE(bool is_profiling()) {
89 return snapshots_->is_tracking_objects();
ricow@chromium.org4980dff2010-07-19 08:33:45 +000090 }
91
danno@chromium.orgca29dd82013-04-26 11:59:48 +000092 void SetRetainedObjectInfo(UniqueId id, RetainedObjectInfo* info);
93
mstarzinger@chromium.orga2e1a402013-10-15 08:25:05 +000094 bool is_tracking_allocations() {
95 return is_tracking_allocations_;
96 }
97
98 void StartHeapAllocationsRecording();
99 void StopHeapAllocationsRecording();
100
101 int FindUntrackedObjects() {
102 return snapshots_->FindUntrackedObjects();
103 }
104
105 void DropCompiledCode();
106
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +0000107 private:
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +0000108 Heap* heap() const { return snapshots_->heap(); }
109
whesse@chromium.org2c186ca2010-06-16 11:32:39 +0000110 HeapSnapshotsCollection* snapshots_;
111 unsigned next_snapshot_uid_;
whesse@chromium.orgb08986c2011-03-14 16:13:42 +0000112 List<v8::HeapProfiler::WrapperInfoCallback> wrapper_callbacks_;
mstarzinger@chromium.orga2e1a402013-10-15 08:25:05 +0000113 bool is_tracking_allocations_;
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +0000114};
115
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +0000116} } // namespace v8::internal
117
118#endif // V8_HEAP_PROFILER_H_