JVM_IR KT-48640 generate for-in-downTo as a counter loop
This commit is contained in:
committed by
TeamCityServer
parent
42e8017cc7
commit
2cc6b589f3
+6
@@ -31271,6 +31271,12 @@ public class FirBlackBoxCodegenTestGenerated extends AbstractFirBlackBoxCodegenT
|
|||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("forInDownToWithPossibleUnderflow.kt")
|
||||||
|
public void testForInDownToWithPossibleUnderflow() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forInDownToWithPossibleUnderflow.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("forIntInDownTo.kt")
|
@TestMetadata("forIntInDownTo.kt")
|
||||||
public void testForIntInDownTo() throws Exception {
|
public void testForIntInDownTo() throws Exception {
|
||||||
|
|||||||
+6
@@ -2366,6 +2366,12 @@ public class FirBytecodeTextTestGenerated extends AbstractFirBytecodeTextTest {
|
|||||||
runTest("compiler/testData/codegen/bytecodeText/forLoop/forInDownToIntMinValue.kt");
|
runTest("compiler/testData/codegen/bytecodeText/forLoop/forInDownToIntMinValue.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("forInDownToLongConstNoUnderflow.kt")
|
||||||
|
public void testForInDownToLongConstNoUnderflow() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/bytecodeText/forLoop/forInDownToLongConstNoUnderflow.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("forInDownToLongMinValue.kt")
|
@TestMetadata("forInDownToLongMinValue.kt")
|
||||||
public void testForInDownToLongMinValue() throws Exception {
|
public void testForInDownToLongMinValue() throws Exception {
|
||||||
|
|||||||
+78
-9
@@ -12,14 +12,19 @@ import org.jetbrains.kotlin.backend.common.lower.matchers.SimpleCalleeMatcher
|
|||||||
import org.jetbrains.kotlin.backend.common.lower.matchers.singleArgumentExtension
|
import org.jetbrains.kotlin.backend.common.lower.matchers.singleArgumentExtension
|
||||||
import org.jetbrains.kotlin.ir.builders.irInt
|
import org.jetbrains.kotlin.ir.builders.irInt
|
||||||
import org.jetbrains.kotlin.ir.expressions.IrCall
|
import org.jetbrains.kotlin.ir.expressions.IrCall
|
||||||
|
import org.jetbrains.kotlin.ir.expressions.IrConst
|
||||||
|
import org.jetbrains.kotlin.ir.expressions.IrConstKind
|
||||||
|
import org.jetbrains.kotlin.ir.expressions.IrExpression
|
||||||
|
import org.jetbrains.kotlin.ir.expressions.impl.IrConstImpl
|
||||||
import org.jetbrains.kotlin.ir.symbols.IrSymbol
|
import org.jetbrains.kotlin.ir.symbols.IrSymbol
|
||||||
import org.jetbrains.kotlin.ir.types.IrType
|
|
||||||
import org.jetbrains.kotlin.name.FqName
|
import org.jetbrains.kotlin.name.FqName
|
||||||
|
|
||||||
/** Builds a [HeaderInfo] for progressions built using the `downTo` extension function. */
|
/** Builds a [HeaderInfo] for progressions built using the `downTo` extension function. */
|
||||||
internal class DownToHandler(private val context: CommonBackendContext) :
|
internal class DownToHandler(private val context: CommonBackendContext) :
|
||||||
ProgressionHandler {
|
ProgressionHandler {
|
||||||
|
|
||||||
|
private val preferJavaLikeCounterLoop = context.preferJavaLikeCounterLoop
|
||||||
|
|
||||||
private val progressionElementTypes = context.ir.symbols.progressionElementTypes
|
private val progressionElementTypes = context.ir.symbols.progressionElementTypes
|
||||||
|
|
||||||
override val matcher = SimpleCalleeMatcher {
|
override val matcher = SimpleCalleeMatcher {
|
||||||
@@ -28,14 +33,78 @@ internal class DownToHandler(private val context: CommonBackendContext) :
|
|||||||
parameter(0) { it.type in progressionElementTypes }
|
parameter(0) { it.type in progressionElementTypes }
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun build(expression: IrCall, data: ProgressionType, scopeOwner: IrSymbol): HeaderInfo? =
|
override fun build(expression: IrCall, data: ProgressionType, scopeOwner: IrSymbol) =
|
||||||
with(context.createIrBuilder(scopeOwner, expression.startOffset, expression.endOffset)) {
|
with(context.createIrBuilder(scopeOwner, expression.startOffset, expression.endOffset)) {
|
||||||
ProgressionHeaderInfo(
|
val first = expression.extensionReceiver!!
|
||||||
data,
|
val last = expression.getValueArgument(0)!!
|
||||||
first = expression.extensionReceiver!!,
|
val step = irInt(-1)
|
||||||
last = expression.getValueArgument(0)!!,
|
val direction = ProgressionDirection.DECREASING
|
||||||
step = irInt(-1),
|
|
||||||
direction = ProgressionDirection.DECREASING
|
if (preferJavaLikeCounterLoop) {
|
||||||
)
|
// Convert range with inclusive lower bound to exclusive lower bound if possible.
|
||||||
|
// This affects loop code performance on JVM.
|
||||||
|
val lastExclusive = last.convertToExclusiveLowerBound(data)
|
||||||
|
if (lastExclusive != null) {
|
||||||
|
return@with ProgressionHeaderInfo(
|
||||||
|
data,
|
||||||
|
first = first,
|
||||||
|
last = lastExclusive,
|
||||||
|
step = step,
|
||||||
|
direction = direction,
|
||||||
|
isLastInclusive = false,
|
||||||
|
canOverflow = false,
|
||||||
|
originalLastInclusive = last
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ProgressionHeaderInfo(data, first = first, last = last, step = step, direction = direction)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun IrExpression.convertToExclusiveLowerBound(progressionType: ProgressionType): IrExpression? {
|
||||||
|
if (progressionType is UnsignedProgressionType) {
|
||||||
|
if (this.constLongValue == 0L) return null
|
||||||
|
}
|
||||||
|
|
||||||
|
val irConst = this as? IrConst<*> ?: return null
|
||||||
|
return when (irConst.kind) {
|
||||||
|
IrConstKind.Char -> {
|
||||||
|
val charValue = IrConstKind.Char.valueOf(irConst)
|
||||||
|
if (charValue != Char.MIN_VALUE)
|
||||||
|
IrConstImpl.char(startOffset, endOffset, type, charValue.dec())
|
||||||
|
else
|
||||||
|
null
|
||||||
|
}
|
||||||
|
IrConstKind.Byte -> {
|
||||||
|
val byteValue = IrConstKind.Byte.valueOf(irConst)
|
||||||
|
if (byteValue != Byte.MIN_VALUE)
|
||||||
|
IrConstImpl.byte(startOffset, endOffset, type, byteValue.dec())
|
||||||
|
else
|
||||||
|
null
|
||||||
|
}
|
||||||
|
IrConstKind.Short -> {
|
||||||
|
val shortValue = IrConstKind.Short.valueOf(irConst)
|
||||||
|
if (shortValue != Short.MIN_VALUE)
|
||||||
|
IrConstImpl.short(startOffset, endOffset, type, shortValue.dec())
|
||||||
|
else
|
||||||
|
null
|
||||||
|
}
|
||||||
|
IrConstKind.Int -> {
|
||||||
|
val intValue = IrConstKind.Int.valueOf(irConst)
|
||||||
|
if (intValue != Int.MIN_VALUE)
|
||||||
|
IrConstImpl.int(startOffset, endOffset, type, intValue.dec())
|
||||||
|
else
|
||||||
|
null
|
||||||
|
}
|
||||||
|
IrConstKind.Long -> {
|
||||||
|
val longValue = IrConstKind.Long.valueOf(irConst)
|
||||||
|
if (longValue != Long.MIN_VALUE)
|
||||||
|
IrConstImpl.long(startOffset, endOffset, type, longValue.dec())
|
||||||
|
else
|
||||||
|
null
|
||||||
|
}
|
||||||
|
else ->
|
||||||
|
null
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
+13
-21
@@ -35,45 +35,37 @@ internal class RangeToHandler(private val context: CommonBackendContext) :
|
|||||||
|
|
||||||
override fun build(expression: IrCall, data: ProgressionType, scopeOwner: IrSymbol) =
|
override fun build(expression: IrCall, data: ProgressionType, scopeOwner: IrSymbol) =
|
||||||
with(context.createIrBuilder(scopeOwner, expression.startOffset, expression.endOffset)) {
|
with(context.createIrBuilder(scopeOwner, expression.startOffset, expression.endOffset)) {
|
||||||
|
val first = expression.dispatchReceiver!!
|
||||||
val last = expression.getValueArgument(0)!!
|
val last = expression.getValueArgument(0)!!
|
||||||
|
val step = irInt(1)
|
||||||
|
val direction = ProgressionDirection.INCREASING
|
||||||
|
|
||||||
if (preferJavaLikeCounterLoop && canUseExclusiveUpperBound(last, data)) {
|
if (preferJavaLikeCounterLoop) {
|
||||||
// Convert range with inclusive upper bound to exclusive upper bound if possible.
|
// Convert range with inclusive upper bound to exclusive upper bound if possible.
|
||||||
// This affects loop code performance on JVM.
|
// This affects loop code performance on JVM.
|
||||||
val lastExclusive = last.convertToExclusiveUpperBound()
|
val lastExclusive = last.convertToExclusiveUpperBound(data)
|
||||||
if (lastExclusive != null) {
|
if (lastExclusive != null) {
|
||||||
return@with ProgressionHeaderInfo(
|
return@with ProgressionHeaderInfo(
|
||||||
data,
|
data,
|
||||||
first = expression.dispatchReceiver!!,
|
first = first,
|
||||||
last = lastExclusive,
|
last = lastExclusive,
|
||||||
step = irInt(1),
|
step = step,
|
||||||
direction = ProgressionDirection.INCREASING,
|
direction = direction,
|
||||||
isLastInclusive = false,
|
isLastInclusive = false,
|
||||||
|
canOverflow = false,
|
||||||
originalLastInclusive = last
|
originalLastInclusive = last
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ProgressionHeaderInfo(
|
ProgressionHeaderInfo(data, first = first, last = last, step = step, direction = direction)
|
||||||
data,
|
|
||||||
first = expression.dispatchReceiver!!,
|
|
||||||
last = last,
|
|
||||||
step = irInt(1),
|
|
||||||
direction = ProgressionDirection.INCREASING
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun canUseExclusiveUpperBound(last: IrExpression, progressionType: ProgressionType): Boolean {
|
private fun IrExpression.convertToExclusiveUpperBound(progressionType: ProgressionType): IrExpression? {
|
||||||
val lastLongValue = last.constLongValue
|
if (progressionType is UnsignedProgressionType) {
|
||||||
?: return false
|
if (this.constLongValue == -1L) return null
|
||||||
return if (progressionType is UnsignedProgressionType) {
|
|
||||||
lastLongValue != -1L
|
|
||||||
} else {
|
|
||||||
lastLongValue != progressionType.maxValueAsLong
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private fun IrExpression.convertToExclusiveUpperBound(): IrConstImpl<out Any>? {
|
|
||||||
val irConst = this as? IrConst<*> ?: return null
|
val irConst = this as? IrConst<*> ?: return null
|
||||||
return when (irConst.kind) {
|
return when (irConst.kind) {
|
||||||
IrConstKind.Char -> {
|
IrConstKind.Char -> {
|
||||||
|
|||||||
+72
@@ -0,0 +1,72 @@
|
|||||||
|
// WITH_RUNTIME
|
||||||
|
|
||||||
|
const val MB = Byte.MIN_VALUE
|
||||||
|
const val MS = Short.MIN_VALUE
|
||||||
|
const val MI = Int.MIN_VALUE
|
||||||
|
const val ML = Long.MIN_VALUE
|
||||||
|
const val MC = Char.MIN_VALUE
|
||||||
|
|
||||||
|
fun testByte() {
|
||||||
|
var s = ""
|
||||||
|
var t = 0
|
||||||
|
for (i in MB + 1 downTo MB) {
|
||||||
|
++t
|
||||||
|
s += i
|
||||||
|
if (t > 2) throw Exception("too many iterations: $t")
|
||||||
|
}
|
||||||
|
if (s != "-127-128") throw Exception(s)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun testShort() {
|
||||||
|
var s = ""
|
||||||
|
var t = 0
|
||||||
|
for (i in MS + 1 downTo MS) {
|
||||||
|
++t
|
||||||
|
s += i
|
||||||
|
if (t > 2) throw Exception("too many iterations: $t")
|
||||||
|
}
|
||||||
|
if (s != "-32767-32768") throw Exception(s)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun testInt() {
|
||||||
|
var s = ""
|
||||||
|
var t = 0
|
||||||
|
for (i in MI + 1 downTo MI) {
|
||||||
|
++t
|
||||||
|
s += i
|
||||||
|
if (t > 2) throw Exception("too many iterations: $t")
|
||||||
|
}
|
||||||
|
if (s != "-2147483647-2147483648") throw Exception(s)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun testLong() {
|
||||||
|
var s = ""
|
||||||
|
var t = 0
|
||||||
|
for (i in ML + 1L downTo ML) {
|
||||||
|
++t
|
||||||
|
s += i
|
||||||
|
if (t > 2) throw Exception("too many iterations: $t")
|
||||||
|
}
|
||||||
|
if (s != "-9223372036854775807-9223372036854775808") throw Exception(s)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun testChar() {
|
||||||
|
var s = ""
|
||||||
|
var t = 0
|
||||||
|
for (i in (MC.toInt() + 1).toChar() downTo MC) {
|
||||||
|
++t
|
||||||
|
s += i.toInt()
|
||||||
|
if (t > 2) throw Exception("too many iterations: $t")
|
||||||
|
}
|
||||||
|
if (s != "10") throw Exception(s)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun box(): String {
|
||||||
|
testByte()
|
||||||
|
testShort()
|
||||||
|
testInt()
|
||||||
|
testLong()
|
||||||
|
testChar()
|
||||||
|
|
||||||
|
return "OK"
|
||||||
|
}
|
||||||
+36
@@ -0,0 +1,36 @@
|
|||||||
|
// IGNORE_BACKEND_FIR: JVM_IR
|
||||||
|
|
||||||
|
// IMPORTANT!
|
||||||
|
// Please, when your changes cause failures in bytecodeText tests for 'for' loops,
|
||||||
|
// examine the resulting bytecode shape carefully.
|
||||||
|
// Range and progression-based loops generated with Kotlin compiler should be
|
||||||
|
// as close as possible to Java counter loops ('for (int i = a; i < b; ++i) { ... }').
|
||||||
|
// Otherwise it may result in performance regression due to missing HotSpot optimizations.
|
||||||
|
// Run Kotlin compiler benchmarks (https://github.com/Kotlin/kotlin-benchmarks)
|
||||||
|
// with compiler built from your changes if you are not sure.
|
||||||
|
|
||||||
|
const val M = 1L
|
||||||
|
|
||||||
|
fun f(a: Long): Int {
|
||||||
|
var n = 0
|
||||||
|
for (i in a downTo M) {
|
||||||
|
n++
|
||||||
|
}
|
||||||
|
return n
|
||||||
|
}
|
||||||
|
|
||||||
|
// 0 iterator
|
||||||
|
// 0 getStart
|
||||||
|
// 0 getEnd
|
||||||
|
// 0 getFirst
|
||||||
|
// 0 getLast
|
||||||
|
// 0 getStep
|
||||||
|
// 1 LCMP
|
||||||
|
// 1 IF
|
||||||
|
|
||||||
|
// JVM_IR_TEMPLATES
|
||||||
|
// 1 ILOAD
|
||||||
|
// 1 ISTORE
|
||||||
|
// 0 IADD
|
||||||
|
// 0 ISUB
|
||||||
|
// 1 IINC
|
||||||
@@ -24,8 +24,8 @@ fun test(): Int {
|
|||||||
// 1 IF
|
// 1 IF
|
||||||
|
|
||||||
// JVM_IR_TEMPLATES
|
// JVM_IR_TEMPLATES
|
||||||
// 5 ILOAD
|
// 4 ILOAD
|
||||||
// 4 ISTORE
|
// 3 ISTORE
|
||||||
// 1 IADD
|
// 1 IADD
|
||||||
// 0 ISUB
|
// 0 ISUB
|
||||||
// 1 IINC
|
// 1 IINC
|
||||||
+6
@@ -31145,6 +31145,12 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
|
|||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("forInDownToWithPossibleUnderflow.kt")
|
||||||
|
public void testForInDownToWithPossibleUnderflow() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forInDownToWithPossibleUnderflow.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("forIntInDownTo.kt")
|
@TestMetadata("forIntInDownTo.kt")
|
||||||
public void testForIntInDownTo() throws Exception {
|
public void testForIntInDownTo() throws Exception {
|
||||||
|
|||||||
+6
@@ -2342,6 +2342,12 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
|
|||||||
runTest("compiler/testData/codegen/bytecodeText/forLoop/forInDownToIntMinValue.kt");
|
runTest("compiler/testData/codegen/bytecodeText/forLoop/forInDownToIntMinValue.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("forInDownToLongConstNoUnderflow.kt")
|
||||||
|
public void testForInDownToLongConstNoUnderflow() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/bytecodeText/forLoop/forInDownToLongConstNoUnderflow.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("forInDownToLongMinValue.kt")
|
@TestMetadata("forInDownToLongMinValue.kt")
|
||||||
public void testForInDownToLongMinValue() throws Exception {
|
public void testForInDownToLongMinValue() throws Exception {
|
||||||
|
|||||||
+6
@@ -31271,6 +31271,12 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes
|
|||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("forInDownToWithPossibleUnderflow.kt")
|
||||||
|
public void testForInDownToWithPossibleUnderflow() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forInDownToWithPossibleUnderflow.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("forIntInDownTo.kt")
|
@TestMetadata("forIntInDownTo.kt")
|
||||||
public void testForIntInDownTo() throws Exception {
|
public void testForIntInDownTo() throws Exception {
|
||||||
|
|||||||
+6
@@ -2366,6 +2366,12 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest {
|
|||||||
runTest("compiler/testData/codegen/bytecodeText/forLoop/forInDownToIntMinValue.kt");
|
runTest("compiler/testData/codegen/bytecodeText/forLoop/forInDownToIntMinValue.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("forInDownToLongConstNoUnderflow.kt")
|
||||||
|
public void testForInDownToLongConstNoUnderflow() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/bytecodeText/forLoop/forInDownToLongConstNoUnderflow.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("forInDownToLongMinValue.kt")
|
@TestMetadata("forInDownToLongMinValue.kt")
|
||||||
public void testForInDownToLongMinValue() throws Exception {
|
public void testForInDownToLongMinValue() throws Exception {
|
||||||
|
|||||||
+5
@@ -26517,6 +26517,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
|||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("forInDownToWithPossibleUnderflow.kt")
|
||||||
|
public void testForInDownToWithPossibleUnderflow() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forInDownToWithPossibleUnderflow.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("forIntInDownTo.kt")
|
@TestMetadata("forIntInDownTo.kt")
|
||||||
public void testForIntInDownTo() throws Exception {
|
public void testForIntInDownTo() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forIntInDownTo.kt");
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forIntInDownTo.kt");
|
||||||
|
|||||||
js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/es6/semantics/IrJsCodegenBoxES6TestGenerated.java
Generated
+5
@@ -21161,6 +21161,11 @@ public class IrJsCodegenBoxES6TestGenerated extends AbstractIrJsCodegenBoxES6Tes
|
|||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR_ES6, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR_ES6, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("forInDownToWithPossibleUnderflow.kt")
|
||||||
|
public void testForInDownToWithPossibleUnderflow() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forInDownToWithPossibleUnderflow.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("forIntInDownTo.kt")
|
@TestMetadata("forIntInDownTo.kt")
|
||||||
public void testForIntInDownTo() throws Exception {
|
public void testForIntInDownTo() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forIntInDownTo.kt");
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forIntInDownTo.kt");
|
||||||
|
|||||||
Generated
+5
@@ -20567,6 +20567,11 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
|||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("forInDownToWithPossibleUnderflow.kt")
|
||||||
|
public void testForInDownToWithPossibleUnderflow() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forInDownToWithPossibleUnderflow.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("forIntInDownTo.kt")
|
@TestMetadata("forIntInDownTo.kt")
|
||||||
public void testForIntInDownTo() throws Exception {
|
public void testForIntInDownTo() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forIntInDownTo.kt");
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forIntInDownTo.kt");
|
||||||
|
|||||||
Generated
+5
@@ -20582,6 +20582,11 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
|||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("forInDownToWithPossibleUnderflow.kt")
|
||||||
|
public void testForInDownToWithPossibleUnderflow() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forInDownToWithPossibleUnderflow.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("forIntInDownTo.kt")
|
@TestMetadata("forIntInDownTo.kt")
|
||||||
public void testForIntInDownTo() throws Exception {
|
public void testForIntInDownTo() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forIntInDownTo.kt");
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forIntInDownTo.kt");
|
||||||
|
|||||||
js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/wasm/semantics/IrCodegenBoxWasmTestGenerated.java
Generated
+5
@@ -13952,6 +13952,11 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
|||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^([^_](.+))\\.kt$"), null, TargetBackend.WASM, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/forInDownTo"), Pattern.compile("^([^_](.+))\\.kt$"), null, TargetBackend.WASM, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("forInDownToWithPossibleUnderflow.kt")
|
||||||
|
public void testForInDownToWithPossibleUnderflow() throws Exception {
|
||||||
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forInDownToWithPossibleUnderflow.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("forIntInDownTo.kt")
|
@TestMetadata("forIntInDownTo.kt")
|
||||||
public void testForIntInDownTo() throws Exception {
|
public void testForIntInDownTo() throws Exception {
|
||||||
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forIntInDownTo.kt");
|
runTest("compiler/testData/codegen/box/ranges/forInDownTo/forIntInDownTo.kt");
|
||||||
|
|||||||
Reference in New Issue
Block a user