Move everything under kotlin-native folder
I was forced to manually do update the following files, because otherwise they would be ignored according .gitignore settings. Probably they should be deleted from repo. Interop/.idea/compiler.xml Interop/.idea/gradle.xml Interop/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_runtime_1_0_3.xml Interop/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_0_3.xml Interop/.idea/modules.xml Interop/.idea/modules/Indexer/Indexer.iml Interop/.idea/modules/Runtime/Runtime.iml Interop/.idea/modules/StubGenerator/StubGenerator.iml backend.native/backend.native.iml backend.native/bc.frontend/bc.frontend.iml backend.native/cli.bc/cli.bc.iml backend.native/cli.bc/src/org/jetbrains/kotlin/cli/bc/K2Native.kt backend.native/cli.bc/src/org/jetbrains/kotlin/cli/bc/K2NativeCompilerArguments.kt backend.native/tests/link/lib/foo.kt backend.native/tests/link/lib/foo2.kt backend.native/tests/teamcity-test.property
This commit is contained in:
@@ -0,0 +1,173 @@
|
||||
package codegen.intrinsics.interop_convert
|
||||
|
||||
import kotlin.test.*
|
||||
import kotlinx.cinterop.*
|
||||
|
||||
fun convertIntToShortOrNull(i: Int, b: Boolean): Short? = if (b) i.convert() else null
|
||||
fun narrowIntToShortOrNull(i: Int, b: Boolean): Short? = if (b) i.narrow() else null
|
||||
fun signExtendShortToIntOrNull(i: Short, b: Boolean): Int? = if (b) i.signExtend() else null
|
||||
|
||||
@Test
|
||||
fun testNI() {
|
||||
assertNull(convertIntToShortOrNull(0, false))
|
||||
assertEquals(1, convertIntToShortOrNull(1, true))
|
||||
|
||||
assertNull(narrowIntToShortOrNull(2, false))
|
||||
assertEquals(3, narrowIntToShortOrNull(3, true))
|
||||
|
||||
assertNull(signExtendShortToIntOrNull(4, false))
|
||||
assertEquals(5, signExtendShortToIntOrNull(5, true))
|
||||
}
|
||||
|
||||
@Test
|
||||
fun testConvertSimple() {
|
||||
assertEquals(1, 257.convert<Byte>())
|
||||
assertEquals(255u, (-1).convert<UByte>())
|
||||
assertEquals(0, Long.MIN_VALUE.narrow<Int>())
|
||||
assertEquals(-1, Long.MAX_VALUE.narrow<Short>())
|
||||
assertEquals(-1L, (-1).signExtend<Long>())
|
||||
}
|
||||
|
||||
@Test
|
||||
fun convertAll() {
|
||||
val values = mutableListOf<Long>()
|
||||
for (value in listOf(
|
||||
0L,
|
||||
Byte.MIN_VALUE.toLong(), Byte.MAX_VALUE.toLong(), UByte.MAX_VALUE.toLong(),
|
||||
Short.MIN_VALUE.toLong(), Short.MAX_VALUE.toLong(), UShort.MAX_VALUE.toLong(),
|
||||
Int.MIN_VALUE.toLong(), Int.MAX_VALUE.toLong(), UInt.MAX_VALUE.toLong(),
|
||||
Long.MIN_VALUE.toLong(), Long.MAX_VALUE.toLong(), ULong.MAX_VALUE.toLong()
|
||||
)) {
|
||||
values.add(value - 1)
|
||||
values.add(value)
|
||||
values.add(value + 1)
|
||||
}
|
||||
|
||||
for (value in values) {
|
||||
testConvertAll(value.toByte())
|
||||
testConvertAll(value.toUByte())
|
||||
testConvertAll(value.toShort())
|
||||
testConvertAll(value.toUShort())
|
||||
testConvertAll(value.toInt())
|
||||
testConvertAll(value.toUInt())
|
||||
testConvertAll(value.toLong())
|
||||
testConvertAll(value.toULong())
|
||||
}
|
||||
}
|
||||
|
||||
fun testConvertAll(value: Byte) {
|
||||
assertEquals(value.toByte(), value.convert<Byte>())
|
||||
assertEquals(value.toUByte(), value.convert<UByte>())
|
||||
assertEquals(value.toShort(), value.convert<Short>())
|
||||
assertEquals(value.toUShort(), value.convert<UShort>())
|
||||
assertEquals(value.toInt(), value.convert<Int>())
|
||||
assertEquals(value.toUInt(), value.convert<UInt>())
|
||||
assertEquals(value.toLong(), value.convert<Long>())
|
||||
assertEquals(value.toULong(), value.convert<ULong>())
|
||||
|
||||
assertEquals(value.toByte(), value.narrow<Byte>())
|
||||
|
||||
assertEquals(value.toByte(), value.signExtend<Byte>())
|
||||
assertEquals(value.toShort(), value.signExtend<Short>())
|
||||
assertEquals(value.toInt(), value.signExtend<Int>())
|
||||
assertEquals(value.toLong(), value.signExtend<Long>())
|
||||
}
|
||||
|
||||
fun testConvertAll(value: Short) {
|
||||
assertEquals(value.toByte(), value.convert<Byte>())
|
||||
assertEquals(value.toUByte(), value.convert<UByte>())
|
||||
assertEquals(value.toShort(), value.convert<Short>())
|
||||
assertEquals(value.toUShort(), value.convert<UShort>())
|
||||
assertEquals(value.toInt(), value.convert<Int>())
|
||||
assertEquals(value.toUInt(), value.convert<UInt>())
|
||||
assertEquals(value.toLong(), value.convert<Long>())
|
||||
assertEquals(value.toULong(), value.convert<ULong>())
|
||||
|
||||
assertEquals(value.toByte(), value.narrow<Byte>())
|
||||
assertEquals(value.toShort(), value.narrow<Short>())
|
||||
|
||||
assertEquals(value.toShort(), value.signExtend<Short>())
|
||||
assertEquals(value.toInt(), value.signExtend<Int>())
|
||||
assertEquals(value.toLong(), value.signExtend<Long>())
|
||||
}
|
||||
|
||||
fun testConvertAll(value: Int) {
|
||||
assertEquals(value.toByte(), value.convert<Byte>())
|
||||
assertEquals(value.toUByte(), value.convert<UByte>())
|
||||
assertEquals(value.toShort(), value.convert<Short>())
|
||||
assertEquals(value.toUShort(), value.convert<UShort>())
|
||||
assertEquals(value.toInt(), value.convert<Int>())
|
||||
assertEquals(value.toUInt(), value.convert<UInt>())
|
||||
assertEquals(value.toLong(), value.convert<Long>())
|
||||
assertEquals(value.toULong(), value.convert<ULong>())
|
||||
|
||||
assertEquals(value.toByte(), value.narrow<Byte>())
|
||||
assertEquals(value.toShort(), value.narrow<Short>())
|
||||
assertEquals(value.toInt(), value.narrow<Int>())
|
||||
|
||||
assertEquals(value.toInt(), value.signExtend<Int>())
|
||||
assertEquals(value.toLong(), value.signExtend<Long>())
|
||||
}
|
||||
|
||||
fun testConvertAll(value: Long) {
|
||||
assertEquals(value.toByte(), value.convert<Byte>())
|
||||
assertEquals(value.toUByte(), value.convert<UByte>())
|
||||
assertEquals(value.toShort(), value.convert<Short>())
|
||||
assertEquals(value.toUShort(), value.convert<UShort>())
|
||||
assertEquals(value.toInt(), value.convert<Int>())
|
||||
assertEquals(value.toUInt(), value.convert<UInt>())
|
||||
assertEquals(value.toLong(), value.convert<Long>())
|
||||
assertEquals(value.toULong(), value.convert<ULong>())
|
||||
|
||||
assertEquals(value.toByte(), value.narrow<Byte>())
|
||||
assertEquals(value.toShort(), value.narrow<Short>())
|
||||
assertEquals(value.toInt(), value.narrow<Int>())
|
||||
assertEquals(value.toLong(), value.narrow<Long>())
|
||||
|
||||
assertEquals(value.toLong(), value.signExtend<Long>())
|
||||
}
|
||||
|
||||
|
||||
fun testConvertAll(value: UByte) {
|
||||
assertEquals(value.toByte(), value.convert<Byte>())
|
||||
assertEquals(value.toUByte(), value.convert<UByte>())
|
||||
assertEquals(value.toShort(), value.convert<Short>())
|
||||
assertEquals(value.toUShort(), value.convert<UShort>())
|
||||
assertEquals(value.toInt(), value.convert<Int>())
|
||||
assertEquals(value.toUInt(), value.convert<UInt>())
|
||||
assertEquals(value.toLong(), value.convert<Long>())
|
||||
assertEquals(value.toULong(), value.convert<ULong>())
|
||||
}
|
||||
|
||||
fun testConvertAll(value: UShort) {
|
||||
assertEquals(value.toByte(), value.convert<Byte>())
|
||||
assertEquals(value.toUByte(), value.convert<UByte>())
|
||||
assertEquals(value.toShort(), value.convert<Short>())
|
||||
assertEquals(value.toUShort(), value.convert<UShort>())
|
||||
assertEquals(value.toInt(), value.convert<Int>())
|
||||
assertEquals(value.toUInt(), value.convert<UInt>())
|
||||
assertEquals(value.toLong(), value.convert<Long>())
|
||||
assertEquals(value.toULong(), value.convert<ULong>())
|
||||
}
|
||||
|
||||
fun testConvertAll(value: UInt) {
|
||||
assertEquals(value.toByte(), value.convert<Byte>())
|
||||
assertEquals(value.toUByte(), value.convert<UByte>())
|
||||
assertEquals(value.toShort(), value.convert<Short>())
|
||||
assertEquals(value.toUShort(), value.convert<UShort>())
|
||||
assertEquals(value.toInt(), value.convert<Int>())
|
||||
assertEquals(value.toUInt(), value.convert<UInt>())
|
||||
assertEquals(value.toLong(), value.convert<Long>())
|
||||
assertEquals(value.toULong(), value.convert<ULong>())
|
||||
}
|
||||
|
||||
fun testConvertAll(value: ULong) {
|
||||
assertEquals(value.toByte(), value.convert<Byte>())
|
||||
assertEquals(value.toUByte(), value.convert<UByte>())
|
||||
assertEquals(value.toShort(), value.convert<Short>())
|
||||
assertEquals(value.toUShort(), value.convert<UShort>())
|
||||
assertEquals(value.toInt(), value.convert<Int>())
|
||||
assertEquals(value.toUInt(), value.convert<UInt>())
|
||||
assertEquals(value.toLong(), value.convert<Long>())
|
||||
assertEquals(value.toULong(), value.convert<ULong>())
|
||||
}
|
||||
Reference in New Issue
Block a user