blob: 4f6fdb1122d8c916e9d4f54b1ba96eadd994fe33 [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#include "v8.h"
29
30#include "heap-profiler.h"
ulan@chromium.org2e04b582013-02-21 14:06:02 +000031#include "heap-snapshot-generator-inl.h"
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +000032
33namespace v8 {
34namespace internal {
35
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +000036HeapProfiler::HeapProfiler(Heap* heap)
37 : snapshots_(new HeapSnapshotsCollection(heap)),
whesse@chromium.org2c186ca2010-06-16 11:32:39 +000038 next_snapshot_uid_(1) {
39}
40
41
42HeapProfiler::~HeapProfiler() {
43 delete snapshots_;
44}
45
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000046
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000047void HeapProfiler::DeleteAllSnapshots() {
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +000048 Heap* the_heap = heap();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000049 delete snapshots_;
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +000050 snapshots_ = new HeapSnapshotsCollection(the_heap);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000051}
52
53
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000054void HeapProfiler::DefineWrapperClass(
55 uint16_t class_id, v8::HeapProfiler::WrapperInfoCallback callback) {
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000056 ASSERT(class_id != v8::HeapProfiler::kPersistentHandleNoClassId);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000057 if (wrapper_callbacks_.length() <= class_id) {
58 wrapper_callbacks_.AddBlock(
59 NULL, class_id - wrapper_callbacks_.length() + 1);
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000060 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000061 wrapper_callbacks_[class_id] = callback;
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000062}
63
64
65v8::RetainedObjectInfo* HeapProfiler::ExecuteWrapperClassCallback(
66 uint16_t class_id, Object** wrapper) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000067 if (wrapper_callbacks_.length() <= class_id) return NULL;
68 return wrapper_callbacks_[class_id](
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000069 class_id, Utils::ToLocal(Handle<Object>(wrapper)));
70}
71
72
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000073HeapSnapshot* HeapProfiler::TakeSnapshot(
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +000074 const char* name,
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +000075 v8::ActivityControl* control,
76 v8::HeapProfiler::ObjectNameResolver* resolver) {
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000077 HeapSnapshot* result = snapshots_->NewSnapshot(name, next_snapshot_uid_++);
78 {
79 HeapSnapshotGenerator generator(result, control, resolver, heap());
80 if (!generator.GenerateSnapshot()) {
81 delete result;
82 result = NULL;
erik.corry@gmail.com145eff52010-08-23 11:36:18 +000083 }
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000084 }
85 snapshots_->SnapshotGenerationFinished(result);
whesse@chromium.org2c186ca2010-06-16 11:32:39 +000086 return result;
87}
88
89
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000090HeapSnapshot* HeapProfiler::TakeSnapshot(
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +000091 String* name,
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +000092 v8::ActivityControl* control,
93 v8::HeapProfiler::ObjectNameResolver* resolver) {
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000094 return TakeSnapshot(snapshots_->names()->GetName(name), control, resolver);
whesse@chromium.org2c186ca2010-06-16 11:32:39 +000095}
96
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +000097void HeapProfiler::StartHeapObjectsTracking() {
jkummerow@chromium.org28faa982012-04-13 09:58:30 +000098 snapshots_->StartHeapObjectsTracking();
99}
100
101
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +0000102SnapshotObjectId HeapProfiler::PushHeapObjectsStats(OutputStream* stream) {
rossberg@chromium.org400388e2012-06-06 09:29:22 +0000103 return snapshots_->PushHeapObjectsStats(stream);
jkummerow@chromium.org28faa982012-04-13 09:58:30 +0000104}
105
106
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +0000107void HeapProfiler::StopHeapObjectsTracking() {
jkummerow@chromium.org28faa982012-04-13 09:58:30 +0000108 snapshots_->StopHeapObjectsTracking();
109}
110
whesse@chromium.org2c186ca2010-06-16 11:32:39 +0000111
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000112size_t HeapProfiler::GetMemorySizeUsedByProfiler() {
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +0000113 return snapshots_->GetUsedMemorySize();
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000114}
115
116
whesse@chromium.org2c186ca2010-06-16 11:32:39 +0000117int HeapProfiler::GetSnapshotsCount() {
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +0000118 return snapshots_->snapshots()->length();
whesse@chromium.org2c186ca2010-06-16 11:32:39 +0000119}
120
121
122HeapSnapshot* HeapProfiler::GetSnapshot(int index) {
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +0000123 return snapshots_->snapshots()->at(index);
whesse@chromium.org2c186ca2010-06-16 11:32:39 +0000124}
125
126
127HeapSnapshot* HeapProfiler::FindSnapshot(unsigned uid) {
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +0000128 return snapshots_->GetSnapshot(uid);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000129}
130
131
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000132SnapshotObjectId HeapProfiler::GetSnapshotObjectId(Handle<Object> obj) {
133 if (!obj->IsHeapObject())
134 return v8::HeapProfiler::kUnknownObjectId;
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +0000135 return snapshots_->FindObjectId(HeapObject::cast(*obj)->address());
whesse@chromium.org2c186ca2010-06-16 11:32:39 +0000136}
137
138
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000139void HeapProfiler::ObjectMoveEvent(Address from, Address to) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000140 snapshots_->ObjectMoveEvent(from, to);
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000141}
142
danno@chromium.orgca29dd82013-04-26 11:59:48 +0000143void HeapProfiler::SetRetainedObjectInfo(UniqueId id,
144 RetainedObjectInfo* info) {
145 // TODO(yurus, marja): Don't route this information through GlobalHandles.
146 heap()->isolate()->global_handles()->SetRetainedObjectInfo(id, info);
147}
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +0000148
149} } // namespace v8::internal