Home
last modified time | relevance | path

Searched refs:tracer_ (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/heap/
Dgc-tracer.h113 Scope(GCTracer* tracer, ScopeId scope) : tracer_(tracer), scope_(scope) { in Scope()
119 tracer_->current_.scopes[scope_] += in ~Scope()
124 GCTracer* tracer_;
Dheap.cc104 tracer_(this), in Heap()
5205 PrintF("total_marking_time=%.1f ", tracer_.cumulative_sweeping_duration()); in TearDown()
5206 PrintF("total_sweeping_time=%.1f ", tracer_.cumulative_sweeping_duration()); in TearDown()
5700 explicit MarkVisitor(PathTracer* tracer) : tracer_(tracer) {} in MarkVisitor()
5703 for (Object** p = start; !tracer_->found() && (p < end); p++) { in VisitPointers()
5704 if ((*p)->IsHeapObject()) tracer_->MarkRecursively(p, this); in VisitPointers()
5709 PathTracer* tracer_; member in v8::internal::PathTracer::MarkVisitor
5715 explicit UnmarkVisitor(PathTracer* tracer) : tracer_(tracer) {} in UnmarkVisitor()
5719 if ((*p)->IsHeapObject()) tracer_->UnmarkRecursively(p, this); in VisitPointers()
5724 PathTracer* tracer_; member in v8::internal::PathTracer::UnmarkVisitor
Dheap.h1166 GCTracer* tracer() { return &tracer_; } in tracer()
1884 GCTracer tracer_; variable
/external/v8/src/
Disolate.h1512 explicit Scope(CodeTracer* tracer) : tracer_(tracer) { tracer->OpenFile(); } in Scope()
1513 ~Scope() { tracer_->CloseFile(); } in ~Scope()
1515 FILE* file() const { return tracer_->file(); } in file()
1518 CodeTracer* tracer_;
Dhydrogen.h2836 tracer_ = tracer; in Tag()
2843 tracer_->indent_--; in ~Tag()
2844 tracer_->PrintIndent(); in ~Tag()
2845 tracer_->trace_.Add("end_%s\n", name_); in ~Tag()
2846 DCHECK(tracer_->indent_ >= 0); in ~Tag()
2847 tracer_->FlushToFile(); in ~Tag()
2851 HTracer* tracer_;