This is an archive of the discontinued LLVM Phabricator instance.

[ARM] Generate [SU]HADD from ((a + b) >> 1)
ClosedPublic

Authored by PetreTudor on Jul 14 2020, 7:59 AM.

Details

Summary

Teach LLVM to recognize the above pattern, where the operands are
either signed or unsigned types.

Diff Detail

Event Timeline

PetreTudor created this revision.Jul 14 2020, 7:59 AM
efriedma added inline comments.Jul 14 2020, 12:18 PM
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
8875

While you're in the area, can you convert this to a TargetDAGCombine? All the types and operations involved here are legal, so there's no need to mix it up with legalization.

Converted tryLowerToHalvingAdd to a TargetDAGCombine.

PetreTudor marked an inline comment as done.Jul 16 2020, 2:46 AM
efriedma added inline comments.Jul 16 2020, 12:40 PM
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
8862

This should return SDValue();.

8867

This should return SDValue();.

11123

It's a little confusing to have an ADD called "Sub".

Addressed review comments.

PetreTudor marked 3 inline comments as done.Jul 17 2020, 6:37 AM
This revision is now accepted and ready to land.Jul 20 2020, 2:57 PM
This revision was automatically updated to reflect the committed changes.