blob: a4f9a923746779e05951227055bf266f05a30820 [file] [log] [blame]
// Copyright (c) 2018, 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;
import static com.android.tools.r8.utils.codeinspector.Matchers.isPresent;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThat;
import static org.junit.Assume.assumeTrue;
import com.android.tools.r8.TestBase;
import com.android.tools.r8.TestRunResult;
import com.android.tools.r8.graph.DexMethod;
import com.android.tools.r8.utils.StringUtils;
import com.android.tools.r8.utils.codeinspector.ClassSubject;
import com.android.tools.r8.utils.codeinspector.CodeInspector;
import com.android.tools.r8.utils.codeinspector.MethodSubject;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Streams;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
class IdempotentFunctionMain {
public static void main(String[] args) {
// Primitive will be boxed automatically.
{
Map<String, Boolean> map = new HashMap<>();
// After canonicalization, only one 'true' and one 'false' conversions remain.
map.put("A", true);
map.put("B", true);
map.put("C", false);
map.put("D", true);
map.put("E", false);
map.put("F", true);
System.out.println(map.get("B"));
System.out.println(map.get("E"));
}
{
Map<String, Integer> map = new HashMap<>();
// After canonicalization, only one 8 and one 35 conversions remain.
map.put("A", 35);
map.put("B", 8);
map.put("C", 8);
map.put("D", 8);
map.put("E", 35);
System.out.println(map.get("B"));
System.out.println(map.get("E"));
}
{
List<Long> ll = new ArrayList<>();
// After canonicalization, 1, 2, 3, 4, 5, 6, and 9 conversions remain.
// 3.141592654
ll.add(3L);
ll.add(1L);
ll.add(4L);
ll.add(1L);
ll.add(5L);
ll.add(9L);
ll.add(2L);
ll.add(6L);
ll.add(5L);
ll.add(4L);
for (Long l : ll) {
System.out.print(l);
}
System.out.println();
}
}
}
@RunWith(Parameterized.class)
public class IdempotentFunctionCallCanonicalizationTest extends TestBase {
private static final Class<?> MAIN = IdempotentFunctionMain.class;
private static final List<Class<?>> CLASSES = ImmutableList.of(MAIN);
private static final String JAVA_OUTPUT = StringUtils.lines(
"true",
"false",
"8",
"35",
"3141592654"
);
private static final String BOOLEAN_DESCRIPTOR = "Ljava/lang/Boolean;";
private static final String INTEGER_DESCRIPTOR = "Ljava/lang/Integer;";
private static final String LONG_DESCRIPTOR = "Ljava/lang/Long;";
private final Backend backend;
@Parameterized.Parameters(name = "Backend: {0}")
public static Backend[] data() {
return Backend.values();
}
public IdempotentFunctionCallCanonicalizationTest(Backend backend) {
this.backend = backend;
}
@Test
public void testJVMoutput() throws Exception {
assumeTrue("Only run JVM reference once (for CF backend)", backend == Backend.CF);
testForJvm().addTestClasspath().run(MAIN).assertSuccessWithOutput(JAVA_OUTPUT);
}
private static boolean isValueOf(DexMethod method, String descriptor) {
return method.getHolder().toDescriptorString().equals(descriptor)
&& method.getArity() == 1
&& method.proto.returnType.toDescriptorString().equals(descriptor)
&& method.name.toString().equals("valueOf");
}
private long countValueOf(MethodSubject method, String descriptor) {
return Streams.stream(method.iterateInstructions(instructionSubject -> {
if (instructionSubject.isInvoke()) {
return isValueOf(instructionSubject.getMethod(), descriptor);
}
return false;
})).count();
}
private void test(
TestRunResult result,
int expectedBooleanValueOfCount,
int expectedIntValueOfCount,
int expectedLongValueOfCount) throws Exception {
CodeInspector codeInspector = result.inspector();
ClassSubject mainClass = codeInspector.clazz(MAIN);
MethodSubject mainMethod = mainClass.mainMethod();
assertThat(mainMethod, isPresent());
assertEquals(expectedBooleanValueOfCount, countValueOf(mainMethod, BOOLEAN_DESCRIPTOR));
assertEquals(expectedIntValueOfCount, countValueOf(mainMethod, INTEGER_DESCRIPTOR));
assertEquals(expectedLongValueOfCount, countValueOf(mainMethod, LONG_DESCRIPTOR));
}
@Test
public void testD8() throws Exception {
assumeTrue("Only run D8 for Dex backend", backend == Backend.DEX);
TestRunResult result = testForD8()
.debug()
.addProgramClasses(CLASSES)
.run(MAIN)
.assertSuccessWithOutput(JAVA_OUTPUT);
test(result, 2, 2, 7);
result = testForD8()
.release()
.addProgramClasses(CLASSES)
.run(MAIN)
.assertSuccessWithOutput(JAVA_OUTPUT);
test(result, 2, 2, 7);
}
@Test
public void testR8() throws Exception {
assumeTrue("Only applicable when constants are canonicalized", backend == Backend.DEX);
TestRunResult result = testForR8(backend)
.addProgramClasses(CLASSES)
.enableProguardTestOptions()
.enableInliningAnnotations()
.addKeepMainRule(MAIN)
.run(MAIN)
.assertSuccessWithOutput(JAVA_OUTPUT);
test(result, 2, 2, 7);
}
}