This is an archive of the discontinued LLVM Phabricator instance.

[CodeGenPrepare] Match complex multiply pattern (WIP).
Needs ReviewPublic

Authored by fhahn on Nov 12 2020, 7:07 AM.
Tokens
"Like" token, awarded by dnsampaio.
This revision needs review, but there are no reviewers specified.

Details

Reviewers
None
Summary

Crude matching of complex multiply pattern.

Event Timeline

fhahn created this revision.Nov 12 2020, 7:07 AM
Herald added a project: Restricted Project. · View Herald TranscriptNov 12 2020, 7:07 AM
fhahn requested review of this revision.Nov 12 2020, 7:07 AM
simoll added a subscriber: simoll.Nov 25 2020, 1:14 AM
fhahn updated this revision to Diff 376842.Oct 4 2021, 3:08 AM

rebase, still WIP

Matt added a subscriber: Matt.Oct 5 2021, 1:05 PM
Herald added a project: Restricted Project. · View Herald TranscriptJul 27 2023, 5:55 AM
nlopes added inline comments.Jul 27 2023, 9:07 AM
llvm/lib/CodeGen/CodeGenPrepare.cpp
7440

please use poison instead of undef as placeholder whenever possible.
We are trying to get rid of undef. Thank you!