blob: 67fad04cd5f803024d3ddf9f6094eca4148ffe41 [file] [log] [blame]
// Copyright (c) 2021, 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.apimodel;
import static com.android.tools.r8.apimodel.ApiModelingTestHelper.setMockApiLevelForClass;
import static com.android.tools.r8.apimodel.ApiModelingTestHelper.setMockApiLevelForDefaultInstanceInitializer;
import static com.android.tools.r8.apimodel.ApiModelingTestHelper.setMockApiLevelForMethod;
import static com.android.tools.r8.apimodel.ApiModelingTestHelper.verifyThat;
import static com.android.tools.r8.utils.codeinspector.CodeMatchers.invokesMethodWithName;
import static com.android.tools.r8.utils.codeinspector.Matchers.isPresent;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assume.assumeFalse;
import com.android.tools.r8.NeverInline;
import com.android.tools.r8.TestBase;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.TestParametersCollection;
import com.android.tools.r8.ToolHelper.DexVm.Version;
import com.android.tools.r8.testing.AndroidBuildVersion;
import com.android.tools.r8.utils.AndroidApiLevel;
import com.android.tools.r8.utils.codeinspector.FoundMethodSubject;
import com.android.tools.r8.utils.codeinspector.MethodSubject;
import java.lang.reflect.Method;
import java.util.Optional;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameter;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class)
public class ApiModelOutlineDuplicateMethodTest extends TestBase {
private final AndroidApiLevel classApiLevel = AndroidApiLevel.K;
private final AndroidApiLevel methodApiLevel = AndroidApiLevel.M;
@Parameter public TestParameters parameters;
@Parameters(name = "{0}")
public static TestParametersCollection data() {
return getTestParameters().withAllRuntimesAndApiLevels().build();
}
@Test
public void testR8() throws Exception {
// TODO(b/197078995): Make this work on 12+.
assumeFalse(
parameters.isDexRuntime()
&& parameters.getDexRuntimeVersion().isNewerThanOrEqual(Version.V12_0_0));
boolean isMethodApiLevel =
parameters.isDexRuntime()
&& parameters.getApiLevel().isGreaterThanOrEqualTo(methodApiLevel);
Method adeddOn23 = LibraryClass.class.getMethod("addedOn23");
testForR8(parameters.getBackend())
.addProgramClasses(Main.class, TestClass.class)
.addLibraryClasses(LibraryClass.class)
.addDefaultRuntimeLibrary(parameters)
.setMinApi(parameters.getApiLevel())
.addKeepMainRule(Main.class)
.addAndroidBuildVersion()
.apply(setMockApiLevelForClass(LibraryClass.class, classApiLevel))
.apply(setMockApiLevelForDefaultInstanceInitializer(LibraryClass.class, classApiLevel))
.apply(setMockApiLevelForMethod(adeddOn23, methodApiLevel))
.apply(ApiModelingTestHelper::enableOutliningOfMethods)
.apply(ApiModelingTestHelper::disableStubbingOfClasses)
.enableInliningAnnotations()
.compile()
.applyIf(
parameters.isDexRuntime()
&& parameters
.getRuntime()
.maxSupportedApiLevel()
.isGreaterThanOrEqualTo(classApiLevel),
b -> b.addBootClasspathClasses(LibraryClass.class))
.run(parameters.getRuntime(), Main.class)
.assertSuccessWithOutputLinesIf(!isMethodApiLevel, "Hello World")
.assertSuccessWithOutputLinesIf(
isMethodApiLevel, "LibraryClass::addedOn23", "LibraryClass::addedOn23", "Hello World")
.inspect(
inspector -> {
int classCount =
parameters.isDexRuntime() && parameters.getApiLevel().isLessThan(methodApiLevel)
? 4
: 3;
assertEquals(classCount, inspector.allClasses().size());
Method testMethod = TestClass.class.getDeclaredMethod("test");
verifyThat(inspector, parameters, adeddOn23)
.isOutlinedFromUntil(testMethod, methodApiLevel);
if (parameters.isDexRuntime()
&& parameters.getApiLevel().isLessThan(methodApiLevel)) {
// Verify that we invoke the synthesized outline, addedOn23, twice.
Optional<FoundMethodSubject> synthesizedAddedOn23 =
inspector.allClasses().stream()
.flatMap(clazz -> clazz.allMethods().stream())
.filter(
methodSubject ->
methodSubject.isSynthetic()
&& invokesMethodWithName("addedOn23").matches(methodSubject))
.findFirst();
assertTrue(synthesizedAddedOn23.isPresent());
MethodSubject testMethodSubject = inspector.method(testMethod);
assertThat(testMethodSubject, isPresent());
assertEquals(
2,
testMethodSubject
.streamInstructions()
.filter(
instructionSubject -> {
if (!instructionSubject.isInvoke()) {
return false;
}
return instructionSubject
.getMethod()
.asMethodReference()
.equals(synthesizedAddedOn23.get().asMethodReference());
})
.count());
}
});
}
// Only present from api level 19.
public static class LibraryClass {
public void addedOn23() {
System.out.println("LibraryClass::addedOn23");
}
}
public static class TestClass {
@NeverInline
public static void test() {
if (AndroidBuildVersion.VERSION >= 19) {
LibraryClass libraryClass = new LibraryClass();
if (AndroidBuildVersion.VERSION >= 23) {
libraryClass.addedOn23();
libraryClass.addedOn23();
}
}
System.out.println("Hello World");
}
}
public static class Main {
public static void main(String[] args) {
TestClass.test();
}
}
}