//===- ConstantFoldingTest.cpp -------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "GISelMITest.h" #include "llvm/CodeGen/GlobalISel/CSEMIRBuilder.h" #include "llvm/CodeGen/GlobalISel/MachineIRBuilder.h" #include "llvm/CodeGen/GlobalISel/Utils.h" #include "llvm/CodeGen/MachineFunction.h" #include "gtest/gtest.h" using namespace llvm; namespace { TEST_F(AArch64GISelMITest, FoldWithBuilder) { setUp(); if (!TM) return; // Try to use the FoldableInstructionsBuilder to build binary ops. CSEMIRBuilder CFB(B.getState()); LLT s32 = LLT::scalar(32); int64_t Cst; auto MIBCAdd = CFB.buildAdd(s32, CFB.buildConstant(s32, 0), CFB.buildConstant(s32, 1)); // This should be a constant now. bool match = mi_match(MIBCAdd.getReg(0), *MRI, m_ICst(Cst)); EXPECT_TRUE(match); EXPECT_EQ(Cst, 1); auto MIBCAdd1 = CFB.buildInstr(TargetOpcode::G_ADD, {s32}, {CFB.buildConstant(s32, 0), CFB.buildConstant(s32, 1)}); // This should be a constant now. match = mi_match(MIBCAdd1.getReg(0), *MRI, m_ICst(Cst)); EXPECT_TRUE(match); EXPECT_EQ(Cst, 1); // Try one of the other constructors of MachineIRBuilder to make sure it's // compatible. CSEMIRBuilder CFB1(*MF); CFB1.setInsertPt(*EntryMBB, EntryMBB->end()); auto MIBCSub = CFB1.buildInstr(TargetOpcode::G_SUB, {s32}, {CFB1.buildConstant(s32, 1), CFB1.buildConstant(s32, 1)}); // This should be a constant now. match = mi_match(MIBCSub.getReg(0), *MRI, m_ICst(Cst)); EXPECT_TRUE(match); EXPECT_EQ(Cst, 0); auto MIBCSext1 = CFB1.buildInstr(TargetOpcode::G_SEXT_INREG, {s32}, {CFB1.buildConstant(s32, 0x01), uint64_t(8)}); // This should be a constant now. match = mi_match(MIBCSext1.getReg(0), *MRI, m_ICst(Cst)); EXPECT_TRUE(match); EXPECT_EQ(1, Cst); auto MIBCSext2 = CFB1.buildInstr(TargetOpcode::G_SEXT_INREG, {s32}, {CFB1.buildConstant(s32, 0x80), uint64_t(8)}); // This should be a constant now. match = mi_match(MIBCSext2.getReg(0), *MRI, m_ICst(Cst)); EXPECT_TRUE(match); EXPECT_EQ(-0x80, Cst); } TEST_F(AArch64GISelMITest, FoldBinOp) { setUp(); if (!TM) return; LLT s32{LLT::scalar(32)}; auto MIBCst1 = B.buildConstant(s32, 16); auto MIBCst2 = B.buildConstant(s32, 9); auto MIBFCst1 = B.buildFConstant(s32, 1.0000001); auto MIBFCst2 = B.buildFConstant(s32, 2.0); // Test G_ADD folding Integer + Mixed Int-Float cases Optional FoldGAddInt = ConstantFoldBinOp(TargetOpcode::G_ADD, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGAddInt.hasValue()); EXPECT_EQ(25ULL, FoldGAddInt.getValue().getLimitedValue()); Optional FoldGAddMix = ConstantFoldBinOp(TargetOpcode::G_ADD, MIBCst1.getReg(0), MIBFCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGAddMix.hasValue()); EXPECT_EQ(1073741840ULL, FoldGAddMix.getValue().getLimitedValue()); // Test G_AND folding Integer + Mixed Int-Float cases Optional FoldGAndInt = ConstantFoldBinOp(TargetOpcode::G_AND, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGAndInt.hasValue()); EXPECT_EQ(0ULL, FoldGAndInt.getValue().getLimitedValue()); Optional FoldGAndMix = ConstantFoldBinOp(TargetOpcode::G_AND, MIBCst2.getReg(0), MIBFCst1.getReg(0), *MRI); EXPECT_TRUE(FoldGAndMix.hasValue()); EXPECT_EQ(1ULL, FoldGAndMix.getValue().getLimitedValue()); // Test G_ASHR folding Integer + Mixed cases Optional FoldGAShrInt = ConstantFoldBinOp(TargetOpcode::G_ASHR, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGAShrInt.hasValue()); EXPECT_EQ(0ULL, FoldGAShrInt.getValue().getLimitedValue()); Optional FoldGAShrMix = ConstantFoldBinOp(TargetOpcode::G_ASHR, MIBFCst2.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGAShrMix.hasValue()); EXPECT_EQ(2097152ULL, FoldGAShrMix.getValue().getLimitedValue()); // Test G_LSHR folding Integer + Mixed Int-Float cases Optional FoldGLShrInt = ConstantFoldBinOp(TargetOpcode::G_LSHR, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGLShrInt.hasValue()); EXPECT_EQ(0ULL, FoldGLShrInt.getValue().getLimitedValue()); Optional FoldGLShrMix = ConstantFoldBinOp(TargetOpcode::G_LSHR, MIBFCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGLShrMix.hasValue()); EXPECT_EQ(2080768ULL, FoldGLShrMix.getValue().getLimitedValue()); // Test G_MUL folding Integer + Mixed Int-Float cases Optional FoldGMulInt = ConstantFoldBinOp(TargetOpcode::G_MUL, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGMulInt.hasValue()); EXPECT_EQ(144ULL, FoldGMulInt.getValue().getLimitedValue()); Optional FoldGMulMix = ConstantFoldBinOp(TargetOpcode::G_MUL, MIBCst1.getReg(0), MIBFCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGMulMix.hasValue()); EXPECT_EQ(0ULL, FoldGMulMix.getValue().getLimitedValue()); // Test G_OR folding Integer + Mixed Int-Float cases Optional FoldGOrInt = ConstantFoldBinOp(TargetOpcode::G_OR, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGOrInt.hasValue()); EXPECT_EQ(25ULL, FoldGOrInt.getValue().getLimitedValue()); Optional FoldGOrMix = ConstantFoldBinOp(TargetOpcode::G_OR, MIBCst1.getReg(0), MIBFCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGOrMix.hasValue()); EXPECT_EQ(1073741840ULL, FoldGOrMix.getValue().getLimitedValue()); // Test G_SHL folding Integer + Mixed Int-Float cases Optional FoldGShlInt = ConstantFoldBinOp(TargetOpcode::G_SHL, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGShlInt.hasValue()); EXPECT_EQ(8192ULL, FoldGShlInt.getValue().getLimitedValue()); Optional FoldGShlMix = ConstantFoldBinOp(TargetOpcode::G_SHL, MIBCst1.getReg(0), MIBFCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGShlMix.hasValue()); EXPECT_EQ(0ULL, FoldGShlMix.getValue().getLimitedValue()); // Test G_SUB folding Integer + Mixed Int-Float cases Optional FoldGSubInt = ConstantFoldBinOp(TargetOpcode::G_SUB, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGSubInt.hasValue()); EXPECT_EQ(7ULL, FoldGSubInt.getValue().getLimitedValue()); Optional FoldGSubMix = ConstantFoldBinOp(TargetOpcode::G_SUB, MIBCst1.getReg(0), MIBFCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGSubMix.hasValue()); EXPECT_EQ(3221225488ULL, FoldGSubMix.getValue().getLimitedValue()); // Test G_XOR folding Integer + Mixed Int-Float cases Optional FoldGXorInt = ConstantFoldBinOp(TargetOpcode::G_XOR, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGXorInt.hasValue()); EXPECT_EQ(25ULL, FoldGXorInt.getValue().getLimitedValue()); Optional FoldGXorMix = ConstantFoldBinOp(TargetOpcode::G_XOR, MIBCst1.getReg(0), MIBFCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGXorMix.hasValue()); EXPECT_EQ(1073741840ULL, FoldGXorMix.getValue().getLimitedValue()); // Test G_UDIV folding Integer + Mixed Int-Float cases Optional FoldGUdivInt = ConstantFoldBinOp(TargetOpcode::G_UDIV, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGUdivInt.hasValue()); EXPECT_EQ(1ULL, FoldGUdivInt.getValue().getLimitedValue()); Optional FoldGUdivMix = ConstantFoldBinOp(TargetOpcode::G_UDIV, MIBCst1.getReg(0), MIBFCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGUdivMix.hasValue()); EXPECT_EQ(0ULL, FoldGUdivMix.getValue().getLimitedValue()); // Test G_SDIV folding Integer + Mixed Int-Float cases Optional FoldGSdivInt = ConstantFoldBinOp(TargetOpcode::G_SDIV, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGSdivInt.hasValue()); EXPECT_EQ(1ULL, FoldGSdivInt.getValue().getLimitedValue()); Optional FoldGSdivMix = ConstantFoldBinOp(TargetOpcode::G_SDIV, MIBCst1.getReg(0), MIBFCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGSdivMix.hasValue()); EXPECT_EQ(0ULL, FoldGSdivMix.getValue().getLimitedValue()); // Test G_UREM folding Integer + Mixed Int-Float cases Optional FoldGUremInt = ConstantFoldBinOp(TargetOpcode::G_UDIV, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGUremInt.hasValue()); EXPECT_EQ(1ULL, FoldGUremInt.getValue().getLimitedValue()); Optional FoldGUremMix = ConstantFoldBinOp(TargetOpcode::G_UDIV, MIBCst1.getReg(0), MIBFCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGUremMix.hasValue()); EXPECT_EQ(0ULL, FoldGUremMix.getValue().getLimitedValue()); // Test G_SREM folding Integer + Mixed Int-Float cases Optional FoldGSremInt = ConstantFoldBinOp(TargetOpcode::G_SREM, MIBCst1.getReg(0), MIBCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGSremInt.hasValue()); EXPECT_EQ(7ULL, FoldGSremInt.getValue().getLimitedValue()); Optional FoldGSremMix = ConstantFoldBinOp(TargetOpcode::G_SREM, MIBCst1.getReg(0), MIBFCst2.getReg(0), *MRI); EXPECT_TRUE(FoldGSremMix.hasValue()); EXPECT_EQ(16ULL, FoldGSremMix.getValue().getLimitedValue()); } } // namespace