Searched refs:gc_speed (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/heap/ |
D | heap.cc | 1353 double gc_speed = tracer()->CombinedMarkCompactSpeedInBytesPerMillisecond(); in PerformGarbageCollection() local 1362 SetOldGenerationAllocationLimit(old_gen_size, gc_speed, mutator_speed); in PerformGarbageCollection() 1365 DampenOldGenerationAllocationLimit(old_gen_size, gc_speed, mutator_speed); in PerformGarbageCollection() 4020 static double ComputeMutatorUtilization(double mutator_speed, double gc_speed) { in ComputeMutatorUtilization() argument 4024 if (gc_speed == 0) gc_speed = kConservativeGcSpeedInBytesPerMillisecond; in ComputeMutatorUtilization() 4032 return gc_speed / (mutator_speed + gc_speed); in ComputeMutatorUtilization() 4039 double gc_speed = static_cast<double>( in YoungGenerationMutatorUtilization() local 4041 double result = ComputeMutatorUtilization(mutator_speed, gc_speed); in YoungGenerationMutatorUtilization() 4046 result, mutator_speed, gc_speed); in YoungGenerationMutatorUtilization() 4055 double gc_speed = static_cast<double>( in OldGenerationMutatorUtilization() local [all …]
|
D | heap.h | 782 static double HeapGrowingFactor(double gc_speed, double mutator_speed); 1922 double gc_speed, 1932 void SetOldGenerationAllocationLimit(intptr_t old_gen_size, double gc_speed,
|