Home
last modified time | relevance | path

Searched refs:gc_speed (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/heap/
Dheap.cc1386 double gc_speed = tracer()->CombinedMarkCompactSpeedInBytesPerMillisecond(); in PerformGarbageCollection() local
1394 SetOldGenerationAllocationLimit(old_gen_size, gc_speed, mutator_speed); in PerformGarbageCollection()
1397 DampenOldGenerationAllocationLimit(old_gen_size, gc_speed, mutator_speed); in PerformGarbageCollection()
4102 static double ComputeMutatorUtilization(double mutator_speed, double gc_speed) { in ComputeMutatorUtilization() argument
4106 if (gc_speed == 0) gc_speed = kConservativeGcSpeedInBytesPerMillisecond; in ComputeMutatorUtilization()
4114 return gc_speed / (mutator_speed + gc_speed); in ComputeMutatorUtilization()
4121 double gc_speed = in YoungGenerationMutatorUtilization() local
4123 double result = ComputeMutatorUtilization(mutator_speed, gc_speed); in YoungGenerationMutatorUtilization()
4128 result, mutator_speed, gc_speed); in YoungGenerationMutatorUtilization()
4137 double gc_speed = static_cast<double>( in OldGenerationMutatorUtilization() local
[all …]
Dheap.h718 V8_EXPORT_PRIVATE static double HeapGrowingFactor(double gc_speed,
1883 void DampenOldGenerationAllocationLimit(size_t old_gen_size, double gc_speed,
1892 void SetOldGenerationAllocationLimit(size_t old_gen_size, double gc_speed,