Home | History | Annotate | Download | only in heap

Lines Matching refs:GCTracer

25 GCTracer::Scope::Scope(GCTracer* tracer, ScopeId scope)
39 GCTracer::Scope::~Scope() {
49 const char* GCTracer::Scope::Name(ScopeId id) {
62 GCTracer::Event::Event(Type type, GarbageCollectionReason gc_reason,
85 const char* GCTracer::Event::TypeName(bool short_name) const {
100 GCTracer::GCTracer(Heap* heap)
119 void GCTracer::ResetForTesting() {
143 void GCTracer::Start(GarbageCollector collector,
207 void GCTracer::ResetIncrementalMarkingCounters() {
215 void GCTracer::Stop(GarbageCollector collector) {
308 void GCTracer::SampleAllocation(double current_ms,
335 void GCTracer::AddAllocation(double current_ms) {
351 void GCTracer::AddContextDisposalTime(double time) {
355 void GCTracer::AddCompactionEvent(double duration,
362 void GCTracer::AddSurvivalRatio(double promotion_ratio) {
366 void GCTracer::AddIncrementalMarkingStep(double duration, size_t bytes) {
373 void GCTracer::Output(const char* format, ...) const {
392 void GCTracer::Print() const {
428 void GCTracer::PrintNVP() const {
493 current_.incremental_marking_scopes[GCTracer::Scope::MC_INCREMENTAL]
689 double GCTracer::AverageSpeed(const base::RingBuffer<BytesAndDuration>& buffer,
708 double GCTracer::AverageSpeed(
713 void GCTracer::RecordIncrementalMarkingSpeed(size_t bytes, double duration) {
724 double GCTracer::IncrementalMarkingSpeedInBytesPerMillisecond() const {
735 double GCTracer::ScavengeSpeedInBytesPerMillisecond(
744 double GCTracer::CompactionSpeedInBytesPerMillisecond() const {
748 double GCTracer::MarkCompactSpeedInBytesPerMillisecond() const {
752 double GCTracer::FinalIncrementalMarkCompactSpeedInBytesPerMillisecond() const {
756 double GCTracer::CombinedMarkCompactSpeedInBytesPerMillisecond() {
775 double GCTracer::NewSpaceAllocationThroughputInBytesPerMillisecond(
783 double GCTracer::OldGenerationAllocationThroughputInBytesPerMillisecond(
791 double GCTracer::AllocationThroughputInBytesPerMillisecond(
797 double GCTracer::CurrentAllocationThroughputInBytesPerMillisecond() const {
801 double GCTracer::CurrentOldGenerationAllocationThroughputInBytesPerMillisecond()
807 double GCTracer::ContextDisposalRateInMilliseconds() const {
817 double GCTracer::AverageSurvivalRatio() const {
824 bool GCTracer::SurvivalEventsRecorded() const {
828 void GCTracer::ResetSurvivalEvents() { recorded_survival_ratios_.Reset(); }
830 void GCTracer::NotifyIncrementalMarkingStart() {