Lines Matching refs:GCTracer
24 GCTracer::Scope::Scope(GCTracer* tracer, ScopeId scope) in Scope()
30 GCTracer::Scope::~Scope() { in ~Scope()
37 GCTracer::AllocationEvent::AllocationEvent(double duration, in AllocationEvent()
44 GCTracer::ContextDisposalEvent::ContextDisposalEvent(double time) { in ContextDisposalEvent()
49 GCTracer::SurvivalEvent::SurvivalEvent(double promotion_ratio) { in SurvivalEvent()
54 GCTracer::Event::Event(Type type, const char* gc_reason, in Event()
83 const char* GCTracer::Event::TypeName(bool short_name) const { in TypeName()
109 GCTracer::GCTracer(Heap* heap) in GCTracer() function in v8::internal::GCTracer
135 void GCTracer::Start(GarbageCollector collector, const char* gc_reason, in Start()
188 void GCTracer::Stop(GarbageCollector collector) { in Stop()
287 void GCTracer::SampleAllocation(double current_ms, in SampleAllocation()
314 void GCTracer::AddAllocation(double current_ms) { in AddAllocation()
327 void GCTracer::AddContextDisposalTime(double time) { in AddContextDisposalTime()
332 void GCTracer::AddCompactionEvent(double duration, in AddCompactionEvent()
339 void GCTracer::AddSurvivalRatio(double promotion_ratio) { in AddSurvivalRatio()
344 void GCTracer::AddIncrementalMarkingStep(double duration, intptr_t bytes) { in AddIncrementalMarkingStep()
357 void GCTracer::AddIncrementalMarkingFinalizationStep(double duration) { in AddIncrementalMarkingFinalizationStep()
365 void GCTracer::Output(const char* format, ...) const { in Output()
385 void GCTracer::Print() const { in Print()
430 void GCTracer::PrintNVP() const { in PrintNVP()
636 double GCTracer::MeanDuration(const EventBuffer& events) const { in MeanDuration()
650 double GCTracer::MaxDuration(const EventBuffer& events) const { in MaxDuration()
664 double GCTracer::MeanIncrementalMarkingDuration() const { in MeanIncrementalMarkingDuration()
689 double GCTracer::MaxIncrementalMarkingDuration() const { in MaxIncrementalMarkingDuration()
704 intptr_t GCTracer::IncrementalMarkingSpeedInBytesPerMillisecond() const { in IncrementalMarkingSpeedInBytesPerMillisecond()
729 intptr_t GCTracer::ScavengeSpeedInBytesPerMillisecond( in ScavengeSpeedInBytesPerMillisecond()
747 intptr_t GCTracer::CompactionSpeedInBytesPerMillisecond() const { in CompactionSpeedInBytesPerMillisecond()
764 intptr_t GCTracer::MarkCompactSpeedInBytesPerMillisecond() const { in MarkCompactSpeedInBytesPerMillisecond()
780 intptr_t GCTracer::FinalIncrementalMarkCompactSpeedInBytesPerMillisecond() in FinalIncrementalMarkCompactSpeedInBytesPerMillisecond()
797 double GCTracer::CombinedMarkCompactSpeedInBytesPerMillisecond() { in CombinedMarkCompactSpeedInBytesPerMillisecond()
819 size_t GCTracer::NewSpaceAllocationThroughputInBytesPerMillisecond( in NewSpaceAllocationThroughputInBytesPerMillisecond()
839 size_t GCTracer::OldGenerationAllocationThroughputInBytesPerMillisecond( in OldGenerationAllocationThroughputInBytesPerMillisecond()
859 size_t GCTracer::AllocationThroughputInBytesPerMillisecond( in AllocationThroughputInBytesPerMillisecond()
866 size_t GCTracer::CurrentAllocationThroughputInBytesPerMillisecond() const { in CurrentAllocationThroughputInBytesPerMillisecond()
871 size_t GCTracer::CurrentOldGenerationAllocationThroughputInBytesPerMillisecond() in CurrentOldGenerationAllocationThroughputInBytesPerMillisecond()
878 double GCTracer::ContextDisposalRateInMilliseconds() const { in ContextDisposalRateInMilliseconds()
894 double GCTracer::AverageSurvivalRatio() const { in AverageSurvivalRatio()
908 bool GCTracer::SurvivalEventsRecorded() const { in SurvivalEventsRecorded()
913 void GCTracer::ResetSurvivalEvents() { survival_events_.reset(); } in ResetSurvivalEvents()