KotlinCoroutineFilter.java
/*******************************************************************************
* Copyright (c) 2009, 2026 Mountainminds GmbH & Co. KG and Contributors
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Evgeny Mandrikov - initial API and implementation
*
*******************************************************************************/
package org.jacoco.core.internal.analysis.filter;
import java.util.ArrayList;
import java.util.List;
import org.objectweb.asm.Opcodes;
import org.objectweb.asm.tree.AbstractInsnNode;
import org.objectweb.asm.tree.JumpInsnNode;
import org.objectweb.asm.tree.LdcInsnNode;
import org.objectweb.asm.tree.MethodInsnNode;
import org.objectweb.asm.tree.MethodNode;
import org.objectweb.asm.tree.TableSwitchInsnNode;
/**
* Filters branches that Kotlin compiler generates for coroutines.
*/
final class KotlinCoroutineFilter implements IFilter {
public void filter(final MethodNode methodNode,
final IFilterContext context, final IFilterOutput output) {
new Matcher().match(methodNode, output);
new Matcher().matchOptimizedTailCall(methodNode, output);
new Matcher().matchSuspendCoroutineUninterceptedOrReturn(methodNode,
output);
}
private static class Matcher extends AbstractMatcher {
/**
* Filters <a href=
* "https://github.com/JetBrains/kotlin/blob/v2.1.20/compiler/backend/src/org/jetbrains/kotlin/codegen/coroutines/coroutineCodegenUtil.kt#L89-L132">
* bytecode generated</a> for inlined invocations of <a href=
* "https://kotlinlang.org/api/core/kotlin-stdlib/kotlin.coroutines.intrinsics/suspend-coroutine-unintercepted-or-return.html">
* kotlin.coroutines.intrinsics/suspendCoroutineUninterceptedOrReturn</a>
*/
private void matchSuspendCoroutineUninterceptedOrReturn(
final MethodNode methodNode, final IFilterOutput output) {
for (final AbstractInsnNode i : methodNode.instructions) {
cursor = i;
nextIs(Opcodes.DUP);
nextIsInvoke(Opcodes.INVOKESTATIC,
"kotlin/coroutines/intrinsics/IntrinsicsKt",
"getCOROUTINE_SUSPENDED", "()Ljava/lang/Object;");
nextIs(Opcodes.IF_ACMPNE);
final JumpInsnNode jumpInstruction = (JumpInsnNode) cursor;
nextIs(Opcodes.ALOAD);
if (cursor != null
&& cursor.getNext().getOpcode() == Opcodes.CHECKCAST) {
nextIsType(Opcodes.CHECKCAST,
"kotlin/coroutines/Continuation");
}
nextIsInvoke(Opcodes.INVOKESTATIC,
"kotlin/coroutines/jvm/internal/DebugProbesKt",
"probeCoroutineSuspended",
"(Lkotlin/coroutines/Continuation;)V");
if (cursor != null
&& jumpInstruction.label == cursor.getNext()) {
output.ignore(jumpInstruction, cursor);
}
}
}
private void matchOptimizedTailCall(final MethodNode methodNode,
final IFilterOutput output) {
for (final AbstractInsnNode i : methodNode.instructions) {
cursor = i;
nextIs(Opcodes.DUP);
nextIsInvoke(Opcodes.INVOKESTATIC,
"kotlin/coroutines/intrinsics/IntrinsicsKt",
"getCOROUTINE_SUSPENDED", "()Ljava/lang/Object;");
nextIs(Opcodes.IF_ACMPNE);
nextIs(Opcodes.ARETURN);
nextIs(Opcodes.POP);
if (cursor != null) {
output.ignore(i.getNext(), cursor);
}
}
}
private void match(final MethodNode methodNode,
final IFilterOutput output) {
for (cursor = methodNode.instructions
.getFirst(); cursor != null; cursor = cursor.getNext()) {
if (cursor.getOpcode() == Opcodes.INVOKESTATIC) {
final MethodInsnNode m = (MethodInsnNode) cursor;
if ("kotlin/coroutines/intrinsics/IntrinsicsKt".equals(
m.owner) && "getCOROUTINE_SUSPENDED".equals(m.name)
&& "()Ljava/lang/Object;".equals(m.desc)) {
break;
}
}
}
if (cursor == null) {
return;
}
final TableSwitchInsnNode s;
if (Opcodes.POP == skipNonOpcodes(cursor.getNext()).getOpcode()) {
// suspending lambda without suspension points
nextIs(Opcodes.POP);
s = nextIsStateSwitch();
if (s == null || s.labels.size() != 1) {
return;
}
} else {
nextIsVar(Opcodes.ASTORE, "COROUTINE_SUSPENDED");
s = nextIsStateSwitch();
if (s == null) {
return;
}
}
final List<AbstractInsnNode> ignore = new ArrayList<AbstractInsnNode>(
s.labels.size() * 2);
nextIs(Opcodes.ALOAD);
nextIsThrowOnFailure();
if (cursor == null) {
return;
}
ignore.add(methodNode.instructions.getFirst());
ignore.add(cursor);
int suspensionPoint = 1;
for (AbstractInsnNode i = cursor; i != null
&& suspensionPoint < s.labels.size(); i = i.getNext()) {
cursor = i;
nextIsVar(Opcodes.ALOAD, "COROUTINE_SUSPENDED");
nextIs(Opcodes.IF_ACMPNE);
final JumpInsnNode jumpToContinuationAfterLoadedResult = (JumpInsnNode) cursor;
nextIsVar(Opcodes.ALOAD, "COROUTINE_SUSPENDED");
nextIs(Opcodes.ARETURN);
if (cursor == null
|| skipNonOpcodes(cursor.getNext()) != skipNonOpcodes(
s.labels.get(suspensionPoint))) {
continue;
}
ignore.add(i);
ignore.add(jumpToContinuationAfterLoadedResult.label
.getPrevious());
suspensionPoint++;
}
cursor = s.dflt;
nextIsType(Opcodes.NEW, "java/lang/IllegalStateException");
nextIs(Opcodes.DUP);
nextIs(Opcodes.LDC);
if (cursor == null) {
return;
}
if (!((LdcInsnNode) cursor).cst.equals(
"call to 'resume' before 'invoke' with coroutine")) {
return;
}
nextIsInvoke(Opcodes.INVOKESPECIAL,
"java/lang/IllegalStateException", "<init>",
"(Ljava/lang/String;)V");
nextIs(Opcodes.ATHROW);
if (cursor == null) {
return;
}
output.ignore(s.dflt, cursor);
for (int i = 0; i < ignore.size(); i += 2) {
output.ignore(ignore.get(i), ignore.get(i + 1));
}
}
private TableSwitchInsnNode nextIsStateSwitch() {
nextIsVar(Opcodes.ALOAD, "this");
nextIs(Opcodes.GETFIELD);
nextIs(Opcodes.TABLESWITCH);
if (cursor == null) {
return null;
}
return (TableSwitchInsnNode) cursor;
}
private void nextIsThrowOnFailure() {
final AbstractInsnNode c = cursor;
nextIsInvoke(Opcodes.INVOKESTATIC, "kotlin/ResultKt",
"throwOnFailure", "(Ljava/lang/Object;)V");
if (cursor == null) {
cursor = c;
// Before resolution of
// https://youtrack.jetbrains.com/issue/KT-28015 in
// Kotlin 1.3.30
nextIs(Opcodes.DUP);
nextIsType(Opcodes.INSTANCEOF, "kotlin/Result$Failure");
nextIs(Opcodes.IFEQ);
nextIsType(Opcodes.CHECKCAST, "kotlin/Result$Failure");
nextIs(Opcodes.GETFIELD);
nextIs(Opcodes.ATHROW);
nextIs(Opcodes.POP);
}
}
}
}