blob: 97441cc7d25c67163839ee9a5945ac5da046d02b [file] [log] [blame]
// Copyright (c) 2020, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.shaking;
import static org.junit.Assert.assertEquals;
import com.android.tools.r8.NeverClassInline;
import com.android.tools.r8.NeverInline;
import com.android.tools.r8.NeverMerge;
import com.android.tools.r8.TestBase;
import com.android.tools.r8.TestBuilder;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.TestParametersCollection;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class)
public class B149831282 extends TestBase {
private final TestParameters parameters;
@Parameters(name = "{0}")
public static TestParametersCollection data() {
return getTestParameters().withAllRuntimesAndApiLevels().build();
}
public B149831282(TestParameters parameters) {
this.parameters = parameters;
}
@Test
public void testRuntime() throws Exception {
testForRuntime(parameters)
.apply(this::addProgramInputs)
.run(parameters.getRuntime(), TestClass.class)
.assertSuccessWithOutputLines("In A.m()");
}
@Test
public void testR8() throws Exception {
testForR8(parameters.getBackend())
.apply(this::addProgramInputs)
.addKeepMainRule(TestClass.class)
.enableInliningAnnotations()
.enableMergeAnnotations()
.enableNeverClassInliningAnnotations()
.setMinApi(parameters.getApiLevel())
.compile()
.run(parameters.getRuntime(), TestClass.class)
.assertSuccessWithOutputLines("In A.m()");
}
private void addProgramInputs(TestBuilder<?, ?> builder) throws Exception {
builder
.addProgramClasses(A.class, B.class)
.addProgramClassFileData(
transformer(TestClass.class)
.transformTypeInsnInMethod(
"main",
(opcode, type, continuation) -> {
assertEquals(binaryName(C.class), type);
continuation.visitTypeInsn(opcode, "b149831282/C");
})
.transformMethodInsnInMethod(
"main",
(opcode, owner, name, descriptor, isInterface, continuation) -> {
assertEquals(binaryName(C.class), owner);
continuation.visitMethodInsn(
opcode, "b149831282/C", name, descriptor, isInterface);
})
.transform())
.addProgramClassFileData(
transformer(C.class).setClassDescriptor("Lb149831282/C;").transform());
}
static class TestClass {
public static void main(String[] args) {
new C().m();
}
}
@NeverMerge
static class A {
@NeverInline
protected void m() {
System.out.println("In A.m()");
}
}
@NeverMerge
public static class B extends A {}
@NeverClassInline
public static class /*b149831282.*/ C extends B {
@NeverInline
@Override
public void m() {
super.m();
}
}
}