96 lines
2.6 KiB
Kotlin
Vendored
96 lines
2.6 KiB
Kotlin
Vendored
// TODO(KT-65977): reenable these tests with caches
|
|
//IGNORE_NATIVE: cacheMode=STATIC_EVERYWHERE
|
|
//IGNORE_NATIVE: cacheMode=STATIC_PER_FILE_EVERYWHERE
|
|
import kotlinx.atomicfu.*
|
|
import kotlin.test.*
|
|
|
|
class ExtensionLoopTest {
|
|
private val a = atomic(0)
|
|
private val b = atomic(true)
|
|
private val l = atomic(5000000000)
|
|
private val r = atomic<A>(A("aaaa"))
|
|
private val rs = atomic<String>("bbbb")
|
|
|
|
class A(val s: String)
|
|
|
|
private inline fun casLoop(to: Int): Int {
|
|
a.loop { cur ->
|
|
if (a.compareAndSet(cur, to)) return a.value
|
|
return 777
|
|
}
|
|
}
|
|
|
|
private inline fun casLoopExpression(to: Int): Int = a.loop { cur ->
|
|
if (a.compareAndSet(cur, to)) return a.value
|
|
return 777
|
|
}
|
|
|
|
private inline fun AtomicInt.extensionLoop(to: Int): Int {
|
|
loop { cur ->
|
|
if (compareAndSet(cur, to)) return value
|
|
return 777
|
|
}
|
|
}
|
|
|
|
private inline fun AtomicInt.extensionLoopExpression(to: Int): Int = loop { cur ->
|
|
lazySet(cur + 10)
|
|
return if (compareAndSet(cur, to)) value + 1 else incrementAndGet()
|
|
}
|
|
|
|
private inline fun AtomicInt.extensionLoopRecursive(to: Int): Int {
|
|
loop { cur ->
|
|
compareAndSet(cur, to)
|
|
extensionLoop(5)
|
|
return value
|
|
}
|
|
}
|
|
|
|
private inline fun AtomicInt.foo(to: Int): Int {
|
|
loop { cur ->
|
|
if (compareAndSet(cur, to)) return 777
|
|
else return value
|
|
}
|
|
}
|
|
|
|
private inline fun AtomicInt.bar(delta: Int): Int {
|
|
return foo(value + delta)
|
|
}
|
|
|
|
private inline fun AtomicInt.extensionEmbeddedLoops(to: Int): Int =
|
|
loop { cur1 ->
|
|
compareAndSet(value, to)
|
|
loop { cur2 ->
|
|
return cur2
|
|
}
|
|
}
|
|
|
|
fun testIntExtensionLoops() {
|
|
assertEquals(5, casLoop(5))
|
|
assertEquals(45, a.extensionEmbeddedLoops(45))
|
|
assertEquals(6, casLoopExpression(6))
|
|
assertEquals(17, a.extensionLoopExpression(777))
|
|
assertEquals(66, a.extensionLoop(66))
|
|
assertEquals(5, a.extensionLoopRecursive(100))
|
|
assertEquals(777, a.bar(100))
|
|
}
|
|
}
|
|
|
|
|
|
private val ref = atomic<String>("aaa")
|
|
|
|
private inline fun AtomicRef<String>.topLevelExtensionLoop(to: String): String = loop { cur ->
|
|
lazySet(cur + to)
|
|
return value
|
|
}
|
|
|
|
fun testTopLevelExtensionLoop() {
|
|
assertEquals("aaattt", ref.topLevelExtensionLoop("ttt"))
|
|
}
|
|
|
|
@Test
|
|
fun testExtensionLoop() {
|
|
val testClass = ExtensionLoopTest()
|
|
testClass.testIntExtensionLoops()
|
|
testTopLevelExtensionLoop()
|
|
}
|