package org.graalvm.compiler.core.aarch64.test;
import org.graalvm.compiler.lir.LIRInstruction;
import org.graalvm.compiler.lir.aarch64.AArch64ArithmeticOp.BinaryConstOp;
import org.junit.Test;
import java.util.function.Predicate;
public class AArch64ElideL2ITest extends AArch64MatchRuleTest {
private static final Predicate<LIRInstruction> predicate = op -> {
if (op instanceof BinaryConstOp && op.name().toUpperCase().equals("AND")) {
return true;
}
return false;
};
public int addWithSingleL2I(long m) {
return (int) m + 100;
}
@Test
public void testAddWithSingleL2I() {
test("addWithSingleL2I", 5L);
checkLIR("addWithSingleL2I", predicate, 0);
}
public int addWithTwoL2I(long m, long n) {
return (int) m + (int) n;
}
@Test
public void testAddWithTwoL2I() {
test("addWithTwoL2I", 5L, 0x1FFFFFFFFL);
checkLIR("addWithTwoL2I", predicate, 0);
}
public int addWithTwoNarrow(long m, long n) {
return (int) m + (short) n;
}
@Test
public void testAddWithTwoNarrow() {
test("addWithTwoNarrow", 0x80000000L, 6L);
checkLIR("addWithTwoNarrow", predicate, 1);
}
public int subSingleL2I(int m, long n) {
return m - (int) n;
}
@Test
public void testSubSingleL2I() {
test("subSingleL2I", 13, 40L);
checkLIR("subSingleL2I", predicate, 0);
}
public int shiftWithSingleL2I(long m) {
return ((int) m) >> 5;
}
@Test
public void testShiftWithSingleL2I() {
test("shiftWithSingleL2I", 234L);
checkLIR("shiftWithSingleL2I", predicate, 0);
}
public int shiftWithTwoL2I(long m, long n) {
return (int) m << (int) n;
}
@Test
public void testShiftWithTwoL2I() {
test("shiftWithTwoL2I", 234L, 3L);
checkLIR("shiftWithTwoL2I", predicate, 0);
}
public long shiftLongWithL2I(long a, int m) {
return a + ((m & 0xFFFFFFFFL) << (int) a);
}
@Test
public void testShiftLongWithL2I() {
test("shiftLongWithL2I", 0xFFFFFFFFL, 123);
checkLIR("shiftLongWithL2I", predicate, 1);
}
public int logicWithTwoL2I(long m, long n) {
return (int) m | (int) n;
}
@Test
public void testLogicWithTwoL2I() {
test("logicWithTwoL2I", 234L, 3L);
checkLIR("logicWithTwoL2I", predicate, 0);
}