[llvm-dev] BSWAP matching in codegen

Jim Lewis via llvm-dev llvm-dev at lists.llvm.org
Thu Dec 8 10:01:21 PST 2016


I’m looking into problems with the function DAGCombiner::MatchBSwapHWord and had a couple questions on how to proceed (I’m new here, and to llvm). It looks like there was never any test coverage for this code, and it doesn’t match the patterns it claims to be looking for. I found a fix for this in our fork, but the fix is even worse in that it matches a whole bunch of invalid patterns as well as the canonical patterns. I have simple test cases that break both the existing code and our local fix.

I see equivalent matching code upstream in InstCombiner::MatchBSwap()  (InstCombineAndOrXor.cpp), but not an easy way to re-use it AFAICT. Questions:

--Is this functionality even worth fixing in DAGCombiner (ie, what is the probability that this complex pattern would re-emerge in codegen after the InstCombiner transform, weighed against the obviously error-prone nature of the matching code)?

--If so, I can patch up and test the existing logic, but since the original code is quite old I wanted to reach out for any modernization advice before embarking on that effort.

Thanks,
Jim

-- The information contained in this message is intended only for the recipient, and may be a confidential attorney-client communication or may otherwise be privileged and confidential and protected from disclosure. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, any dissemination or copying of this communication is strictly prohibited. If you have received this communication in error, please immediately notify us by replying to the message and then deleting it from your computer. Please note that KnuEdge, Inc. reserves the right to monitor and review the content of any electronic message or information sent to or from KnuEdge employee e-mail addresses without informing the sender or recipient of the message.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20161208/26ecf336/attachment.html>


More information about the llvm-dev mailing list