blob: e81f2f3bdd91b6018d28ac7a6f7b946b540729af [file] [log] [blame]
// Copyright (c) 2022, 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.ir.optimize.unusedarguments;
import static com.android.tools.r8.utils.codeinspector.Matchers.isPresent;
import static com.android.tools.r8.utils.codeinspector.Matchers.isPresentAndRenamed;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import com.android.tools.r8.NeverClassInline;
import com.android.tools.r8.NeverInline;
import com.android.tools.r8.NoMethodStaticizing;
import com.android.tools.r8.TestBase;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.TestParametersCollection;
import com.android.tools.r8.utils.codeinspector.ClassSubject;
import com.android.tools.r8.utils.codeinspector.MethodSubject;
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 ConstantArgumentWithUnusedArgumentUpdateGenericSignatureTest extends TestBase {
@Parameter() public TestParameters parameters;
@Parameters(name = "{0}")
public static TestParametersCollection data() {
return getTestParameters().withAllRuntimesAndApiLevels().build();
}
@Test
public void testR8() throws Exception {
testForR8Compat(parameters.getBackend())
.addInnerClasses(getClass())
.setMinApi(parameters)
.addKeepAttributeSignature()
.addKeepMainRule(Main.class)
.enableInliningAnnotations()
.enableNeverClassInliningAnnotations()
.enableNoMethodStaticizingAnnotations()
.run(parameters.getRuntime(), Main.class)
.assertSuccessWithOutputLines("Hello World", "0")
.inspect(
inspector -> {
ClassSubject classA = inspector.clazz(A.class);
assertThat(classA, isPresentAndRenamed());
MethodSubject foo =
classA.uniqueMethodThatMatches(method -> !method.isInstanceInitializer());
assertThat(foo, isPresent());
assertNull(foo.getFinalSignatureAttribute());
assertEquals("void a(int)", foo.getFinalSignature().toString());
});
}
@NeverClassInline
public static class A<T> {
@NeverInline
@NoMethodStaticizing
public void foo(T t, int count, T unused) {
System.out.println(t);
System.out.println(count);
}
}
public static class Main {
public static void main(String[] args) {
new A<String>().foo("Hello World", args.length, args.length > 0 ? args[0] : "Hello World");
}
}
}