blob: 9de3a8c856a6ff91afe53f1dca54e5ae5fde0bc1 [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.cf.varhandle;
import com.android.tools.r8.examples.jdk9.VarHandle;
import com.android.tools.r8.utils.StringUtils;
import com.google.common.collect.ImmutableList;
import java.util.List;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
@RunWith(Parameterized.class)
public class VarHandleDesugaringInstanceIntFieldTest extends VarHandleDesugaringTestBase {
private static final String TEST_GET_EXPECTED_OUTPUT =
StringUtils.lines("1", "1", "1", "1", "1.0", "1.0").trim();
private static final String TEST_SET_EXPECTED_OUTPUT =
StringUtils.lines("0", "1", "2", "3", "4", "48", "49", "5", "6", "6", "6", "6", "6", "6", "6")
.trim();
private static final String TEST_COMPAREANDSET_EXPECTED_OUTPUT =
StringUtils.lines(
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "48", "49", "50", "51", "52",
"53", "53", "53", "53", "53", "53", "53", "53", "53", "53", "53", "53", "53", "53",
"53")
.trim();
private static final String EXPECTED_OUTPUT =
StringUtils.lines(
"testGet",
TEST_GET_EXPECTED_OUTPUT,
"testGetVolatile",
TEST_GET_EXPECTED_OUTPUT,
"testSet",
TEST_SET_EXPECTED_OUTPUT,
"testSetVolatile",
TEST_SET_EXPECTED_OUTPUT,
"testSetRelease",
TEST_SET_EXPECTED_OUTPUT,
"testCompareAndSet",
TEST_COMPAREANDSET_EXPECTED_OUTPUT,
"testWeakCompareAndSet",
TEST_COMPAREANDSET_EXPECTED_OUTPUT);
private static final String MAIN_CLASS = VarHandle.InstanceIntField.typeName();
private static final String JAR_ENTRY = "varhandle/InstanceIntField.class";
@Override
protected String getMainClass() {
return MAIN_CLASS;
}
@Override
protected List<String> getKeepRules() {
return ImmutableList.of("-keep class " + getMainClass() + "{ <fields>; }");
}
@Override
protected List<String> getJarEntries() {
return ImmutableList.of(JAR_ENTRY);
}
@Override
protected String getExpectedOutputForReferenceImplementation() {
return EXPECTED_OUTPUT;
}
}