summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
diff options
context:
space:
mode:
authorJustin Lebar <jlebar@google.com>2016-10-28 21:43:54 +0000
committerJustin Lebar <jlebar@google.com>2016-10-28 21:43:54 +0000
commit0ede5fb1bbdd2b19f1209d8e164633d56bbc2d6a (patch)
tree8e56519c9932f1b3751f256d4ce931f9617d6806 /llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
parent468bf732096c813a76fbad0ab204b0cf7269f82a (diff)
downloadbcm5719-llvm-0ede5fb1bbdd2b19f1209d8e164633d56bbc2d6a.tar.gz
bcm5719-llvm-0ede5fb1bbdd2b19f1209d8e164633d56bbc2d6a.zip
Don't leave unused divs/rems sitting around in BypassSlowDivision.
Summary: This "pass" eagerly creates div and rem instructions even when only one is needed -- it relies on a later pass (machine DCE?) to clean them up. This is problematic not just from a cleanliness perspective (this pass is running during CodeGenPrepare, so should leave the IR in a better state), but it also creates a problem for instruction selection. If we always have a div+rem, isel will always select a divrem instruction (if possible), even when a single div or rem would do. Specifically, in NVPTX, we want to compute rem from the output of div, if available. But if a div is not available, we want to leave the rem alone. This transformation is overeager if div is always available. Because this code runs as part of CodeGenPrepare, it's nontrivial to write a test for this change. But this will effectively be tested by a later patch which adds the aforementioned change to NVPTX isel. Reviewers: tra Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D26088 llvm-svn: 285460
Diffstat (limited to 'llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud