[K/N] Make stress_gc_allocations tests more useful ^KT-61914

This commit is contained in:
Alexander Shabalin
2023-09-14 11:46:47 +02:00
committed by Space Cloud
parent bb195749c8
commit 2a41b80373
2 changed files with 103 additions and 58 deletions
@@ -3089,11 +3089,14 @@ standaloneTest("stress_gc_allocations") {
(project.testTarget != "watchos_x86") && (project.testTarget != "watchos_x86") &&
(project.testTarget != "watchos_x64") && (project.testTarget != "watchos_x64") &&
(project.testTarget != "watchos_simulator_arm64") && (project.testTarget != "watchos_simulator_arm64") &&
!isNoopGC && !isNoopGC && // Requires some GC.
!isAggressiveGC && // TODO: Investigate why too slow !isAggressiveGC && // No need to check with aggressive GC at all
!runtimeAssertionsPanic // New allocator with assertions makes this test very slow !runtimeAssertionsPanic // New allocator with assertions makes this test very slow.
source = "runtime/memory/stress_gc_allocations.kt" source = "runtime/memory/stress_gc_allocations.kt"
flags = ['-tr', '-opt-in=kotlin.native.internal.InternalForKotlinNative'] flags = [
'-opt-in=kotlin.native.internal.InternalForKotlinNative', // MemoryUsageInfo is internal
'-Xdisable-phases=EscapeAnalysis', // The test checks GC, we need to allocate everything on the heap.
]
} }
standaloneTest("array_out_of_memory") { standaloneTest("array_out_of_memory") {
@@ -2,85 +2,127 @@
* Copyright 2010-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license * Copyright 2010-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the LICENSE file. * that can be found in the LICENSE file.
*/ */
@file:OptIn(kotlin.experimental.ExperimentalNativeApi::class, kotlin.native.runtime.NativeRuntimeApi::class) @file:OptIn(kotlin.experimental.ExperimentalNativeApi::class, kotlin.native.runtime.NativeRuntimeApi::class, kotlin.native.concurrent.ObsoleteWorkersApi::class)
import kotlin.test.*
import kotlin.concurrent.AtomicInt import kotlin.concurrent.AtomicInt
import kotlin.concurrent.Volatile
import kotlin.native.concurrent.* import kotlin.native.concurrent.*
import kotlin.native.identityHashCode
import kotlin.native.internal.MemoryUsageInfo import kotlin.native.internal.MemoryUsageInfo
import kotlin.native.ref.createCleaner
import kotlin.random.Random
// Copying what's done in kotlinx.benchmark
// TODO: Could we benefit, if this was in stdlib, and the compiler just new about it?
object Blackhole { object Blackhole {
// On MIPS `AtomicLong` does not support `addAndGet`. TODO: Fix it. @Volatile
private val hole = AtomicInt(0) var i0: Int = Random.nextInt()
var i1 = i0 + 1
fun consume(value: Any) { fun consume(value: Any?) {
hole.addAndGet(value.hashCode().toInt()) consume(value.identityHashCode())
} }
fun discharge() { fun consume(i: Int) {
println(hole.value) if ((i0 == i) && (i1 == i)) {
i0 = i
}
} }
} }
// Keep a class to ensure we allocate in heap. class ArrayOfBytes(bytes: Int) {
// TODO: Protect it from escape analysis. val data = ByteArray(bytes)
class MemoryHog(val size: Int, val value: Byte, val stride: Int) {
val data = ByteArray(size)
init { init {
for (i in 0 until size step stride) { // Write into every OS page.
data[i] = value for (i in 0 until data.size step 4096) {
data[i] = 42
} }
Blackhole.consume(data) Blackhole.consume(data)
} }
} }
val peakRssBytes: Long class ArrayOfBytesWithFinalizer(bytes: Int) {
get() { val impl = ArrayOfBytes(bytes)
val value = MemoryUsageInfo.peakResidentSetSizeBytes val cleaner = createCleaner(impl) {
if (value == 0L) { Blackhole.consume(it)
fail("Error trying to obtain peak RSS. Check if current platform is supported") }
}
fun allocateGarbage() {
// Total amount of objects here:
// - 1 big object with finalizer
// - 9 big objects
// - 9990 small objects with finalizers
// - 90000 small objects without finalizers
// And total size is ~50MiB
for (i in 0..100_000) {
val obj: Any = when {
i == 50_000 -> ArrayOfBytesWithFinalizer(1_000_000) // ~1MiB
i % 10_000 == 0 -> ArrayOfBytes(1_000_000) // ~1MiB
i % 10 == 0 -> ArrayOfBytesWithFinalizer(((i / 100) % 10) * 80) // ~1-100 pointers
else -> ArrayOfBytes(((i / 100) % 10) * 80) // ~1-100 pointers
} }
return value Blackhole.consume(obj)
}
@Test
fun test() {
// One item is ~10MiB.
val size = 10_000_000
// Total amount is ~1TiB.
val count = 100_000
val value: Byte = 42
// Try to make sure each page is written
val stride = 4096
// Limit memory usage at ~700MiB. This limit was exercised by -Xallocator=mimalloc and legacy MM.
val rssDiffLimit: Long = 700_000_000
// Trigger GC after ~100MiB are allocated
val retainLimit: Long = 100_000_000
val progressReportsCount = 100
if (Platform.memoryModel == MemoryModel.EXPERIMENTAL) {
kotlin.native.runtime.GC.autotune = false
kotlin.native.runtime.GC.targetHeapBytes = retainLimit
kotlin.native.runtime.GC.pauseOnTargetHeapOverflow = true
} }
}
class PeakRSSChecker(private val rssDiffLimitBytes: Long) {
// On Linux, the child process might immediately commit the same amount of memory as the parent. // On Linux, the child process might immediately commit the same amount of memory as the parent.
// So, measure difference between peak RSS measurements. // So, measure difference between peak RSS measurements.
val initialPeakRss = peakRssBytes private val initialBytes = MemoryUsageInfo.peakResidentSetSizeBytes.also {
check(it != 0L) { "Error trying to obtain peak RSS. Check if current platform is supported" }
}
for (i in 0..count) { fun check(): Long {
if (i % (count / progressReportsCount) == 0) { val diffBytes = MemoryUsageInfo.peakResidentSetSizeBytes - initialBytes
println("Allocating iteration ${i + 1} of $count") check(diffBytes <= rssDiffLimitBytes) { "Increased peak RSS by $diffBytes bytes which is more than $rssDiffLimitBytes" }
} return diffBytes
MemoryHog(size, value, stride) }
val diffPeakRss = peakRssBytes - initialPeakRss }
if (diffPeakRss > rssDiffLimit) {
// If GC does not exist, this should eventually fail. fun main() {
fail("Increased peak RSS by $diffPeakRss which is more than $rssDiffLimit") // allocateGarbage allocates ~50MiB. Make total amount per mutator ~5GiB.
val count = 100
// Total amount overall is ~20GiB
val threadCount = 4
val progressReportsCount = 10
// Setting the initial boundary to ~50MiB. The scheduler will adapt this value
// dynamically with no upper limit.
kotlin.native.runtime.GC.targetHeapBytes = 50_000_000
kotlin.native.runtime.GC.minHeapBytes = 50_000_000
// Limit memory usage at ~200MiB. 4 times the initial boundary yet still
// way less than total expected allocated amount.
val peakRSSChecker = PeakRSSChecker(200_000_000L)
val workers = Array(threadCount) { Worker.start() }
val globalCount = AtomicInt(0)
val finalGlobalCount = count * workers.size
workers.forEach {
it.executeAfter(0L) {
for (i in 0 until count) {
allocateGarbage()
peakRSSChecker.check()
globalCount.getAndAdd(1)
}
} }
} }
// Make sure `Blackhole` does not get optimized out. val reportStep = finalGlobalCount / progressReportsCount
Blackhole.discharge() var lastReportCount = -reportStep
while (true) {
val diffPeakRss = peakRSSChecker.check()
val currentCount = globalCount.value
if (currentCount >= finalGlobalCount) {
break
}
if (lastReportCount + reportStep <= currentCount) {
println("Allocating iteration $currentCount of $finalGlobalCount with peak RSS increase: $diffPeakRss bytes")
lastReportCount = currentCount
}
}
workers.forEach {
it.requestTermination().result
}
peakRSSChecker.check()
} }