[IR] For loop lowering for CharacterSequence.indices.
This commit is contained in:
+2
-1
@@ -212,7 +212,8 @@ internal class HeaderInfoBuilder(context: CommonBackendContext, private val scop
|
|||||||
)
|
)
|
||||||
|
|
||||||
private val progressionHandlers = listOf(
|
private val progressionHandlers = listOf(
|
||||||
IndicesHandler(context),
|
ArrayIndicesHandler(context),
|
||||||
|
CharSequenceIndicesHandler(context),
|
||||||
UntilHandler(context, progressionElementTypes),
|
UntilHandler(context, progressionElementTypes),
|
||||||
DownToHandler(context, progressionElementTypes),
|
DownToHandler(context, progressionElementTypes),
|
||||||
RangeToHandler(context, progressionElementTypes)
|
RangeToHandler(context, progressionElementTypes)
|
||||||
|
|||||||
+29
-11
@@ -219,22 +219,17 @@ internal class UntilHandler(private val context: CommonBackendContext, private v
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Builds a [HeaderInfo] for progressions built using the `indices` extension property. */
|
/** Builds a [HeaderInfo] for progressions built using the `indices` extension property. */
|
||||||
internal class IndicesHandler(private val context: CommonBackendContext) : ProgressionHandler {
|
internal abstract class IndicesHandler(private val context: CommonBackendContext) : ProgressionHandler {
|
||||||
|
|
||||||
override val matcher = SimpleCalleeMatcher {
|
// TODO: Handle Collection<*>.indices
|
||||||
// TODO: Handle Collection<*>.indices
|
|
||||||
// TODO: Handle CharSequence.indices
|
|
||||||
extensionReceiver { it != null && it.type.run { isArray() || isPrimitiveArray() } }
|
|
||||||
fqName { it == FqName("kotlin.collections.<get-indices>") }
|
|
||||||
parameterCount { it == 0 }
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun build(expression: IrCall, data: ProgressionType, scopeOwner: IrSymbol): HeaderInfo? =
|
override fun build(expression: IrCall, data: ProgressionType, scopeOwner: IrSymbol): HeaderInfo? =
|
||||||
with(context.createIrBuilder(scopeOwner, expression.startOffset, expression.endOffset)) {
|
with(context.createIrBuilder(scopeOwner, expression.startOffset, expression.endOffset)) {
|
||||||
// `last = array.size - 1` (last is inclusive) for the loop `for (i in array.indices)`.
|
// `last = array.size - 1` (last is inclusive) for the loop `for (i in array.indices)`.
|
||||||
val arraySizeProperty = expression.extensionReceiver!!.type.getClass()!!.properties.first { it.name.asString() == "size" }
|
val receiver = expression.extensionReceiver!!
|
||||||
val last = irCall(arraySizeProperty.getter!!).apply {
|
val sizeProperty = receiver.type.getClass()!!.properties.first { it.name.asString() == sizePropertyName() }
|
||||||
dispatchReceiver = expression.extensionReceiver
|
val last = irCall(sizeProperty.getter!!).apply {
|
||||||
|
dispatchReceiver = receiver
|
||||||
}.decrement()
|
}.decrement()
|
||||||
|
|
||||||
ProgressionHeaderInfo(
|
ProgressionHeaderInfo(
|
||||||
@@ -246,6 +241,29 @@ internal class IndicesHandler(private val context: CommonBackendContext) : Progr
|
|||||||
direction = ProgressionDirection.INCREASING
|
direction = ProgressionDirection.INCREASING
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal abstract fun sizePropertyName() : String
|
||||||
|
}
|
||||||
|
|
||||||
|
internal class ArrayIndicesHandler(context: CommonBackendContext) : IndicesHandler(context) {
|
||||||
|
override val matcher = SimpleCalleeMatcher {
|
||||||
|
extensionReceiver { it != null && it.type.run { isArray() || isPrimitiveArray() } }
|
||||||
|
fqName { it == FqName("kotlin.collections.<get-indices>") }
|
||||||
|
parameterCount { it == 0 }
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun sizePropertyName(): String = "size"
|
||||||
|
}
|
||||||
|
|
||||||
|
internal class CharSequenceIndicesHandler(context: CommonBackendContext) : IndicesHandler(context) {
|
||||||
|
|
||||||
|
override val matcher = SimpleCalleeMatcher {
|
||||||
|
extensionReceiver { it != null && it.type.run { isSubtypeOfClass(context.ir.symbols.charSequence)} }
|
||||||
|
fqName { it == FqName("kotlin.text.<get-indices>") }
|
||||||
|
parameterCount { it == 0 }
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun sizePropertyName(): String = "length"
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Builds a [HeaderInfo] for calls to reverse an iterable. */
|
/** Builds a [HeaderInfo] for calls to reverse an iterable. */
|
||||||
|
|||||||
+10
-1
@@ -1,4 +1,3 @@
|
|||||||
// IGNORE_BACKEND: JVM_IR
|
|
||||||
fun test(s: CharSequence): Int {
|
fun test(s: CharSequence): Int {
|
||||||
var result = 0
|
var result = 0
|
||||||
for (i in s.indices) {
|
for (i in s.indices) {
|
||||||
@@ -7,12 +6,22 @@ fun test(s: CharSequence): Int {
|
|||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// JVM non-IR uses while.
|
||||||
|
// JVM IR uses if + do-while.
|
||||||
|
|
||||||
// 0 iterator
|
// 0 iterator
|
||||||
// 0 getStart
|
// 0 getStart
|
||||||
// 0 getEnd
|
// 0 getEnd
|
||||||
// 0 getFirst
|
// 0 getFirst
|
||||||
// 0 getLast
|
// 0 getLast
|
||||||
|
|
||||||
|
// JVM_TEMPLATES
|
||||||
// 0 IF_ICMPGT
|
// 0 IF_ICMPGT
|
||||||
// 0 IF_ICMPEQ
|
// 0 IF_ICMPEQ
|
||||||
// 1 IF_ICMPGE
|
// 1 IF_ICMPGE
|
||||||
|
// 1 IF
|
||||||
|
|
||||||
|
// JVM_IR_TEMPLATES
|
||||||
|
// 1 IF_ICMPGT
|
||||||
|
// 1 IF_ICMPLE
|
||||||
|
// 2 IF
|
||||||
|
|||||||
Vendored
+12
-4
@@ -1,5 +1,3 @@
|
|||||||
// IGNORE_BACKEND: JVM_IR
|
|
||||||
// NOTE: Enable once CharSequence.indices is handled
|
|
||||||
import kotlin.test.*
|
import kotlin.test.*
|
||||||
|
|
||||||
fun box(): String {
|
fun box(): String {
|
||||||
@@ -13,6 +11,9 @@ fun box(): String {
|
|||||||
return "OK"
|
return "OK"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// JVM non-IR uses while.
|
||||||
|
// JVM IR uses if + do-while.
|
||||||
|
|
||||||
// 0 reversed
|
// 0 reversed
|
||||||
// 0 iterator
|
// 0 iterator
|
||||||
// 0 getStart
|
// 0 getStart
|
||||||
@@ -20,5 +21,12 @@ fun box(): String {
|
|||||||
// 0 getFirst
|
// 0 getFirst
|
||||||
// 0 getLast
|
// 0 getLast
|
||||||
// 0 getStep
|
// 0 getStep
|
||||||
// 1 IF(_ICMPG|L)T
|
|
||||||
// 1 IF
|
// JVM_TEMPLATES
|
||||||
|
// 1 IFLT
|
||||||
|
// 1 IF
|
||||||
|
|
||||||
|
// JVM_IR_TEMPLATES
|
||||||
|
// 1 IF_ICMPGT
|
||||||
|
// 1 IF_ICMPLE
|
||||||
|
// 2 IF
|
||||||
|
|||||||
Reference in New Issue
Block a user