[PATCH] D27601: AMDGPU: Fix isTypeDesirableForOp for i16
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 9 04:00:06 PST 2016
arsenm created this revision.
arsenm added a subscriber: llvm-commits.
Herald added a reviewer: tstellarAMD.
Herald added subscribers: tony-tye, yaxunl, nhaehnle, wdng, kzhuravl.
This should do nothing for targets without i16.
https://reviews.llvm.org/D27601
Files:
lib/Target/AMDGPU/SIISelLowering.cpp
Index: lib/Target/AMDGPU/SIISelLowering.cpp
===================================================================
--- lib/Target/AMDGPU/SIISelLowering.cpp
+++ lib/Target/AMDGPU/SIISelLowering.cpp
@@ -658,10 +658,22 @@
}
bool SITargetLowering::isTypeDesirableForOp(unsigned Op, EVT VT) const {
-
- // i16 is not desirable unless it is a load or a store.
- if (VT == MVT::i16 && Op != ISD::LOAD && Op != ISD::STORE)
- return false;
+ if (Subtarget->has16BitInsts() && VT == MVT::i16) {
+ switch (Op) {
+ case ISD::LOAD:
+ case ISD::STORE:
+
+ // These operations are done with 32-bit instructions anyway.
+ case ISD::AND:
+ case ISD::OR:
+ case ISD::XOR:
+ case ISD::SELECT:
+ // TODO: Extensions?
+ return true;
+ default:
+ return false;
+ }
+ }
// SimplifySetCC uses this function to determine whether or not it should
// create setcc with i1 operands. We don't have instructions for i1 setcc.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D27601.80846.patch
Type: text/x-patch
Size: 958 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161209/bc4fc240/attachment.bin>
More information about the llvm-commits
mailing list