allocation-tracker.cc 9.48 KB
Newer Older
1
// Copyright 2013 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4

5
#include "src/v8.h"
6

7 8
#include "src/allocation-tracker.h"
#include "src/frames-inl.h"
9
#include "src/heap-snapshot-generator.h"
10 11 12 13 14

namespace v8 {
namespace internal {

AllocationTraceNode::AllocationTraceNode(
15
    AllocationTraceTree* tree, unsigned function_info_index)
16
    : tree_(tree),
17
      function_info_index_(function_info_index),
18 19 20 21 22 23 24
      total_size_(0),
      allocation_count_(0),
      id_(tree->next_node_id()) {
}


AllocationTraceNode::~AllocationTraceNode() {
25
  for (int i = 0; i < children_.length(); i++) delete children_[i];
26 27 28
}


29 30
AllocationTraceNode* AllocationTraceNode::FindChild(
    unsigned function_info_index) {
31 32
  for (int i = 0; i < children_.length(); i++) {
    AllocationTraceNode* node = children_[i];
33
    if (node->function_info_index() == function_info_index) return node;
34 35 36 37 38
  }
  return NULL;
}


39 40 41
AllocationTraceNode* AllocationTraceNode::FindOrAddChild(
    unsigned function_info_index) {
  AllocationTraceNode* child = FindChild(function_info_index);
42
  if (child == NULL) {
43
    child = new AllocationTraceNode(tree_, function_info_index);
44 45 46 47 48 49 50 51 52 53 54 55 56
    children_.Add(child);
  }
  return child;
}


void AllocationTraceNode::AddAllocation(unsigned size) {
  total_size_ += size;
  ++allocation_count_;
}


void AllocationTraceNode::Print(int indent, AllocationTracker* tracker) {
57
  base::OS::Print("%10u %10u %*c", total_size_, allocation_count_, indent, ' ');
58
  if (tracker != NULL) {
59 60
    AllocationTracker::FunctionInfo* info =
        tracker->function_info_list()[function_info_index_];
61
    base::OS::Print("%s #%u", info->name, id_);
62
  } else {
63
    base::OS::Print("%u #%u", function_info_index_, id_);
64
  }
65
  base::OS::Print("\n");
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
  indent += 2;
  for (int i = 0; i < children_.length(); i++) {
    children_[i]->Print(indent, tracker);
  }
}


AllocationTraceTree::AllocationTraceTree()
    : next_node_id_(1),
      root_(this, 0) {
}


AllocationTraceTree::~AllocationTraceTree() {
}


AllocationTraceNode* AllocationTraceTree::AddPathFromEnd(
84
    const Vector<unsigned>& path) {
85
  AllocationTraceNode* node = root();
86
  for (unsigned* entry = path.start() + path.length() - 1;
87 88 89 90 91 92 93 94 95
       entry != path.start() - 1;
       --entry) {
    node = node->FindOrAddChild(*entry);
  }
  return node;
}


void AllocationTraceTree::Print(AllocationTracker* tracker) {
96 97
  base::OS::Print("[AllocationTraceTree:]\n");
  base::OS::Print("Total size | Allocation count | Function id | id\n");
98 99 100
  root()->Print(0, tracker);
}

101

102 103 104 105 106 107 108 109
void AllocationTracker::DeleteUnresolvedLocation(
    UnresolvedLocation** location) {
  delete *location;
}


AllocationTracker::FunctionInfo::FunctionInfo()
    : name(""),
110
      function_id(0),
111 112 113 114 115 116 117
      script_name(""),
      script_id(0),
      line(-1),
      column(-1) {
}


118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
void AddressToTraceMap::AddRange(Address start, int size,
                                 unsigned trace_node_id) {
  Address end = start + size;
  RemoveRange(start, end);

  RangeStack new_range(start, trace_node_id);
  ranges_.insert(RangeMap::value_type(end, new_range));
}


unsigned AddressToTraceMap::GetTraceNodeId(Address addr) {
  RangeMap::const_iterator it = ranges_.upper_bound(addr);
  if (it == ranges_.end()) return 0;
  if (it->second.start <= addr) {
    return it->second.trace_node_id;
  }
  return 0;
}


void AddressToTraceMap::MoveObject(Address from, Address to, int size) {
  unsigned trace_node_id = GetTraceNodeId(from);
  if (trace_node_id == 0) return;
  RemoveRange(from, from + size);
  AddRange(to, size, trace_node_id);
}


void AddressToTraceMap::Clear() {
  ranges_.clear();
}


void AddressToTraceMap::Print() {
152
  PrintF("[AddressToTraceMap (%" V8PRIuPTR "): \n", ranges_.size());
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
  for (RangeMap::iterator it = ranges_.begin(); it != ranges_.end(); ++it) {
    PrintF("[%p - %p] => %u\n", it->second.start, it->first,
        it->second.trace_node_id);
  }
  PrintF("]\n");
}


void AddressToTraceMap::RemoveRange(Address start, Address end) {
  RangeMap::iterator it = ranges_.upper_bound(start);
  if (it == ranges_.end()) return;

  RangeStack prev_range(0, 0);

  RangeMap::iterator to_remove_begin = it;
  if (it->second.start < start) {
    prev_range = it->second;
  }
  do {
    if (it->first > end) {
      if (it->second.start < end) {
        it->second.start = end;
      }
      break;
    }
    ++it;
  }
  while (it != ranges_.end());

  ranges_.erase(to_remove_begin, it);

  if (prev_range.start != 0) {
    ranges_.insert(RangeMap::value_type(start, prev_range));
  }
}


190 191 192 193 194
void AllocationTracker::DeleteFunctionInfo(FunctionInfo** info) {
    delete *info;
}


195 196 197 198
AllocationTracker::AllocationTracker(
    HeapObjectsMap* ids, StringsStorage* names)
    : ids_(ids),
      names_(names),
199
      id_to_function_info_index_(HashMap::PointersMatch),
200 201 202 203
      info_index_for_other_state_(0) {
  FunctionInfo* info = new FunctionInfo();
  info->name = "(root)";
  function_info_list_.Add(info);
204 205 206 207 208
}


AllocationTracker::~AllocationTracker() {
  unresolved_locations_.Iterate(DeleteUnresolvedLocation);
209
  function_info_list_.Iterate(&DeleteFunctionInfo);
210 211 212 213 214 215 216 217 218 219 220 221 222 223
}


void AllocationTracker::PrepareForSerialization() {
  List<UnresolvedLocation*> copy(unresolved_locations_.length());
  copy.AddAll(unresolved_locations_);
  unresolved_locations_.Clear();
  for (int i = 0; i < copy.length(); i++) {
    copy[i]->Resolve();
    delete copy[i];
  }
}


224
void AllocationTracker::AllocationEvent(Address addr, int size) {
225 226 227 228 229 230
  DisallowHeapAllocation no_allocation;
  Heap* heap = ids_->heap();

  // Mark the new block as FreeSpace to make sure the heap is iterable
  // while we are capturing stack trace.
  FreeListNode::FromAddress(addr)->set_size(heap, size);
231 232
  DCHECK_EQ(HeapObject::FromAddress(addr)->Size(), size);
  DCHECK(FreeListNode::IsFreeListNode(HeapObject::FromAddress(addr)));
233 234 235 236 237 238 239

  Isolate* isolate = heap->isolate();
  int length = 0;
  StackTraceFrameIterator it(isolate);
  while (!it.done() && length < kMaxAllocationTraceLength) {
    JavaScriptFrame* frame = it.frame();
    SharedFunctionInfo* shared = frame->function()->shared();
240 241
    SnapshotObjectId id = ids_->FindOrAddEntry(
        shared->address(), shared->Size(), false);
242
    allocation_trace_buffer_[length++] = AddFunctionInfo(shared, id);
243 244
    it.Advance();
  }
245 246 247 248 249 250
  if (length == 0) {
    unsigned index = functionInfoIndexForVMState(isolate->current_vm_state());
    if (index != 0) {
      allocation_trace_buffer_[length++] = index;
    }
  }
251
  AllocationTraceNode* top_node = trace_tree_.AddPathFromEnd(
252
      Vector<unsigned>(allocation_trace_buffer_, length));
253
  top_node->AddAllocation(size);
254 255

  address_to_trace_.AddRange(addr, size, top_node->id());
256 257 258 259 260 261 262 263 264
}


static uint32_t SnapshotObjectIdHash(SnapshotObjectId id) {
  return ComputeIntegerHash(static_cast<uint32_t>(id),
                            v8::internal::kZeroHashSeed);
}


265 266 267
unsigned AllocationTracker::AddFunctionInfo(SharedFunctionInfo* shared,
                                            SnapshotObjectId id) {
  HashMap::Entry* entry = id_to_function_info_index_.Lookup(
268 269 270 271
      reinterpret_cast<void*>(id), SnapshotObjectIdHash(id), true);
  if (entry->value == NULL) {
    FunctionInfo* info = new FunctionInfo();
    info->name = names_->GetFunctionName(shared->DebugName());
272
    info->function_id = id;
273 274 275 276 277 278 279 280 281 282 283 284 285 286
    if (shared->script()->IsScript()) {
      Script* script = Script::cast(shared->script());
      if (script->name()->IsName()) {
        Name* name = Name::cast(script->name());
        info->script_name = names_->GetName(name);
      }
      info->script_id = script->id()->value();
      // Converting start offset into line and column may cause heap
      // allocations so we postpone them until snapshot serialization.
      unresolved_locations_.Add(new UnresolvedLocation(
          script,
          shared->start_position(),
          info));
    }
287 288 289 290 291 292 293 294 295 296 297 298 299 300
    entry->value = reinterpret_cast<void*>(function_info_list_.length());
    function_info_list_.Add(info);
  }
  return static_cast<unsigned>(reinterpret_cast<intptr_t>((entry->value)));
}


unsigned AllocationTracker::functionInfoIndexForVMState(StateTag state) {
  if (state != OTHER) return 0;
  if (info_index_for_other_state_ == 0) {
    FunctionInfo* info = new FunctionInfo();
    info->name = "(V8 API)";
    info_index_for_other_state_ = function_info_list_.length();
    function_info_list_.Add(info);
301
  }
302
  return info_index_for_other_state_;
303 304 305 306 307 308 309 310 311
}


AllocationTracker::UnresolvedLocation::UnresolvedLocation(
    Script* script, int start, FunctionInfo* info)
    : start_position_(start),
      info_(info) {
  script_ = Handle<Script>::cast(
      script->GetIsolate()->global_handles()->Create(script));
312 313 314
  GlobalHandles::MakeWeak(reinterpret_cast<Object**>(script_.location()),
                          this,
                          &HandleWeakScript);
315 316 317 318 319
}


AllocationTracker::UnresolvedLocation::~UnresolvedLocation() {
  if (!script_.is_null()) {
320
    GlobalHandles::Destroy(reinterpret_cast<Object**>(script_.location()));
321 322 323 324 325 326
  }
}


void AllocationTracker::UnresolvedLocation::Resolve() {
  if (script_.is_null()) return;
327
  HandleScope scope(script_->GetIsolate());
328 329
  info_->line = Script::GetLineNumber(script_, start_position_);
  info_->column = Script::GetColumnNumber(script_, start_position_);
330 331 332 333
}


void AllocationTracker::UnresolvedLocation::HandleWeakScript(
334 335 336 337 338
    const v8::WeakCallbackData<v8::Value, void>& data) {
  UnresolvedLocation* loc =
      reinterpret_cast<UnresolvedLocation*>(data.GetParameter());
  GlobalHandles::Destroy(reinterpret_cast<Object**>(loc->script_.location()));
  loc->script_ = Handle<Script>::null();
339 340 341 342
}


} }  // namespace v8::internal