Searched refs:mutator_speed (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/heap/ |
D | heap-controller.cc | 50 double MemoryController::GrowingFactor(double gc_speed, double mutator_speed, in GrowingFactor() argument 54 if (gc_speed == 0 || mutator_speed == 0) return max_factor; in GrowingFactor() 56 const double speed_ratio = gc_speed / mutator_speed; in GrowingFactor() 95 size_t curr_size, size_t max_size, double gc_speed, double mutator_speed, in CalculateAllocationLimit() argument 98 double factor = GrowingFactor(gc_speed, mutator_speed, max_factor); in CalculateAllocationLimit() 105 gc_speed / mutator_speed, gc_speed, mutator_speed); in CalculateAllocationLimit()
|
D | heap-controller.h | 34 double gc_speed, double mutator_speed, 42 double GrowingFactor(double gc_speed, double mutator_speed,
|
D | heap.cc | 1780 double mutator_speed = in PerformGarbageCollection() local 1789 old_gen_size, max_old_generation_size_, gc_speed, mutator_speed, in PerformGarbageCollection() 1798 old_gen_size, max_old_generation_size_, gc_speed, mutator_speed, in PerformGarbageCollection() 3088 static double ComputeMutatorUtilization(double mutator_speed, double gc_speed) { in ComputeMutatorUtilization() argument 3091 if (mutator_speed == 0) return kMinMutatorUtilization; in ComputeMutatorUtilization() 3100 return gc_speed / (mutator_speed + gc_speed); in ComputeMutatorUtilization() 3105 double mutator_speed = static_cast<double>( in YoungGenerationMutatorUtilization() local 3109 double result = ComputeMutatorUtilization(mutator_speed, gc_speed); in YoungGenerationMutatorUtilization() 3114 result, mutator_speed, gc_speed); in YoungGenerationMutatorUtilization() 3121 double mutator_speed = static_cast<double>( in OldGenerationMutatorUtilization() local [all …]
|