Searched refs:initTlabSize (Results 1 - 3 of 3) sorted by relevance
/arkcompiler/runtime_core/static_core/libpandabase/mem/ |
H A D | weighted_adaptive_tlab_average.h | 26 explicit WeightedAdaptiveTlabAverage(float initTlabSize, float upperSumBorder, float maxGrowRatio, float weight, in WeightedAdaptiveTlabAverage() argument 29 lowerSumBorder_(initTlabSize), in WeightedAdaptiveTlabAverage() 31 lastCountedSum_(initTlabSize), in WeightedAdaptiveTlabAverage()
|
/arkcompiler/runtime_core/static_core/runtime/mem/ |
H A D | allocator.cpp | 487 size_t initTlabSize = Runtime::GetOptions().GetInitTlabSize(); in ObjectAllocatorGen() local 490 ASSERT(initTlabSize != 0); in ObjectAllocatorGen() 496 maxTlabsCountInYoungGen = (youngSpaceSize - youngSharedSpaceSize) / initTlabSize; in ObjectAllocatorGen() 497 ASSERT(((youngSpaceSize - youngSharedSpaceSize) % initTlabSize) == 0); in ObjectAllocatorGen() 499 ASSERT(maxTlabsCountInYoungGen * initTlabSize <= youngSpaceSize); in ObjectAllocatorGen()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | thread.cpp | 243 size_t initTlabSize = Runtime::GetOptions().GetInitTlabSize(); in ManagedThread() local 245 if (initTlabSize < 4_KB) { in ManagedThread() 248 if (initTlabSize > maxTlabSize) { in ManagedThread() 252 initTlabSize, maxTlabSize, MAX_GROW_RATIO, WEIGHT, DESIRED_FILL_FRACTION); in ManagedThread()
|
Completed in 4 milliseconds