-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[GISel] Lower scalar G_SELECT in LegalizerHelper #79342
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3431,6 +3431,47 @@ TEST_F(AArch64GISelMITest, LowerUDIVREM) { | |
EXPECT_TRUE(CheckMachineFunction(*MF, CheckStr)) << *MF; | ||
} | ||
|
||
// Test G_SELECT lowering. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It might be good to add a comment to say we don't expect to legalize scalar selects on aarch64 like this, but it is useful for testing. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point, added a comment. |
||
// Note: This is for testing the legalizer, aarch64 does not lower scalar | ||
// selects like this. | ||
TEST_F(AArch64GISelMITest, LowerSelect) { | ||
setUp(); | ||
if (!TM) | ||
GTEST_SKIP(); | ||
|
||
// Declare your legalization info | ||
DefineLegalizerInfo(A, { getActionDefinitionsBuilder(G_SELECT).lower(); }); | ||
|
||
LLT S1 = LLT::scalar(1); | ||
LLT S32 = LLT::scalar(32); | ||
auto Tst = B.buildTrunc(S1, Copies[0]); | ||
auto SrcA = B.buildTrunc(S32, Copies[1]); | ||
auto SrcB = B.buildTrunc(S32, Copies[2]); | ||
auto SELECT = B.buildInstr(TargetOpcode::G_SELECT, {S32}, {Tst, SrcA, SrcB}); | ||
|
||
AInfo Info(MF->getSubtarget()); | ||
DummyGISelObserver Observer; | ||
LegalizerHelper Helper(*MF, Info, Observer, B); | ||
// Perform Legalization | ||
EXPECT_EQ(LegalizerHelper::LegalizeResult::Legalized, | ||
Helper.lower(*SELECT, 0, S32)); | ||
|
||
auto CheckStr = R"( | ||
CHECK: [[TST:%[0-9]+]]:_(s1) = G_TRUNC | ||
CHECK: [[TRUE:%[0-9]+]]:_(s32) = G_TRUNC | ||
CHECK: [[FALSE:%[0-9]+]]:_(s32) = G_TRUNC | ||
CHECK: [[MSK:%[0-9]+]]:_(s32) = G_SEXT [[TST]] | ||
CHECK: [[M:%[0-9]+]]:_(s32) = G_CONSTANT i32 -1 | ||
CHECK: [[NEGMSK:%[0-9]+]]:_(s32) = G_XOR [[MSK]]:_, [[M]]:_ | ||
CHECK: [[TVAL:%[0-9]+]]:_(s32) = G_AND [[TRUE]]:_, [[MSK]]:_ | ||
CHECK: [[FVAL:%[0-9]+]]:_(s32) = G_AND [[FALSE]]:_, [[NEGMSK]]:_ | ||
CHECK: [[RES:%[0-9]+]]:_(s32) = G_OR [[TVAL]]:_, [[FVAL]]:_ | ||
)"; | ||
|
||
// Check | ||
EXPECT_TRUE(CheckMachineFunction(*MF, CheckStr)) << *MF; | ||
} | ||
|
||
// Test widening of G_UNMERGE_VALUES | ||
TEST_F(AArch64GISelMITest, WidenUnmerge) { | ||
setUp(); | ||
|
Uh oh!
There was an error while loading. Please reload this page.