blob: 5dd4376de7b7144ad889b04b06c9ffde6f056b8b [file] [log] [blame]
Nate Begeman4ebd8052005-09-01 23:24:04 +00001//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
Nate Begeman1d4d4142005-09-01 00:19:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begeman1d4d4142005-09-01 00:19:25 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass combines dag nodes to form fewer, simpler DAG nodes. It can be run
11// both before and after the DAG is legalized.
Scott Michelfdc40a02009-02-17 22:15:04 +000012//
Dan Gohman41287002009-04-25 17:09:45 +000013// This pass is not a substitute for the LLVM IR instcombine pass. This pass is
14// primarily intended to handle simplification opportunities that are implicit
15// in the LLVM IR and exposed by the various codegen lowering phases.
16//
Nate Begeman1d4d4142005-09-01 00:19:25 +000017//===----------------------------------------------------------------------===//
18
19#define DEBUG_TYPE "dagcombine"
Nate Begeman1d4d4142005-09-01 00:19:25 +000020#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000021#include "llvm/ADT/SmallPtrSet.h"
22#include "llvm/ADT/Statistic.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000023#include "llvm/Analysis/AliasAnalysis.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineFunction.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000026#include "llvm/IR/DataLayout.h"
27#include "llvm/IR/DerivedTypes.h"
28#include "llvm/IR/Function.h"
29#include "llvm/IR/LLVMContext.h"
Jim Laskeyd1aed7a2006-09-21 16:28:59 +000030#include "llvm/Support/CommandLine.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000031#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000032#include "llvm/Support/ErrorHandling.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000033#include "llvm/Support/MathExtras.h"
Chris Lattnerbbbfa992009-08-23 06:35:02 +000034#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000035#include "llvm/Target/TargetLowering.h"
36#include "llvm/Target/TargetMachine.h"
37#include "llvm/Target/TargetOptions.h"
Hal Finkel253acef2013-08-29 03:29:55 +000038#include "llvm/Target/TargetSubtargetInfo.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000039#include <algorithm>
Nate Begeman1d4d4142005-09-01 00:19:25 +000040using namespace llvm;
41
Chris Lattnercd3245a2006-12-19 22:41:21 +000042STATISTIC(NodesCombined , "Number of dag nodes combined");
43STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
44STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
Evan Cheng8b944d32009-05-28 00:35:15 +000045STATISTIC(OpsNarrowed , "Number of load/op/store narrowed");
Evan Cheng31959b12011-02-02 01:06:55 +000046STATISTIC(LdStFP2Int , "Number of fp load/store pairs transformed to int");
Chris Lattnercd3245a2006-12-19 22:41:21 +000047
Nate Begeman1d4d4142005-09-01 00:19:25 +000048namespace {
Jim Laskey71382342006-10-07 23:37:56 +000049 static cl::opt<bool>
Owen Anderson0dcc8142010-09-19 21:01:26 +000050 CombinerAA("combiner-alias-analysis", cl::Hidden,
Jim Laskey26f7fa72006-10-17 19:33:52 +000051 cl::desc("Turn on alias analysis during testing"));
Jim Laskey3ad175b2006-10-12 15:22:24 +000052
Jim Laskey07a27092006-10-18 19:08:31 +000053 static cl::opt<bool>
54 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
55 cl::desc("Include global information in alias analysis"));
56
Jim Laskeybc588b82006-10-05 15:07:25 +000057//------------------------------ DAGCombiner ---------------------------------//
58
Nick Lewycky6726b6d2009-10-25 06:33:48 +000059 class DAGCombiner {
Nate Begeman1d4d4142005-09-01 00:19:25 +000060 SelectionDAG &DAG;
Dan Gohman79ce2762009-01-15 19:20:50 +000061 const TargetLowering &TLI;
Duncan Sands25cf2272008-11-24 14:53:14 +000062 CombineLevel Level;
Bill Wendling98a366d2009-04-29 23:29:43 +000063 CodeGenOpt::Level OptLevel;
Duncan Sands25cf2272008-11-24 14:53:14 +000064 bool LegalOperations;
65 bool LegalTypes;
Nate Begeman1d4d4142005-09-01 00:19:25 +000066
67 // Worklist of all of the nodes that need to be simplified.
James Molloy6660c052012-02-16 09:17:04 +000068 //
69 // This has the semantics that when adding to the worklist,
70 // the item added must be next to be processed. It should
71 // also only appear once. The naive approach to this takes
72 // linear time.
73 //
74 // To reduce the insert/remove time to logarithmic, we use
75 // a set and a vector to maintain our worklist.
76 //
77 // The set contains the items on the worklist, but does not
78 // maintain the order they should be visited.
79 //
80 // The vector maintains the order nodes should be visited, but may
81 // contain duplicate or removed nodes. When choosing a node to
82 // visit, we pop off the order stack until we find an item that is
83 // also in the contents set. All operations are O(log N).
84 SmallPtrSet<SDNode*, 64> WorkListContents;
Benjamin Kramerd5f76902012-03-10 00:23:58 +000085 SmallVector<SDNode*, 64> WorkListOrder;
Nate Begeman1d4d4142005-09-01 00:19:25 +000086
Jim Laskeyc7c3f112006-10-16 20:52:31 +000087 // AA - Used for DAG load/store alias analysis.
88 AliasAnalysis &AA;
89
Nate Begeman1d4d4142005-09-01 00:19:25 +000090 /// AddUsersToWorkList - When an instruction is simplified, add all users of
91 /// the instruction to the work lists because they might get more simplified
92 /// now.
93 ///
94 void AddUsersToWorkList(SDNode *N) {
95 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000096 UI != UE; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +000097 AddToWorkList(*UI);
Nate Begeman1d4d4142005-09-01 00:19:25 +000098 }
99
Dan Gohman389079b2007-10-08 17:57:15 +0000100 /// visit - call the node-specific routine that knows how to fold each
101 /// particular type of node.
Dan Gohman475871a2008-07-27 21:46:04 +0000102 SDValue visit(SDNode *N);
Dan Gohman389079b2007-10-08 17:57:15 +0000103
Chris Lattner24664722006-03-01 04:53:38 +0000104 public:
James Molloy6afa3f72012-02-16 09:48:07 +0000105 /// AddToWorkList - Add to the work list making sure its instance is at the
James Molloy6660c052012-02-16 09:17:04 +0000106 /// back (next to be processed.)
Chris Lattner5750df92006-03-01 04:03:14 +0000107 void AddToWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000108 WorkListContents.insert(N);
109 WorkListOrder.push_back(N);
Chris Lattner5750df92006-03-01 04:03:14 +0000110 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000111
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000112 /// removeFromWorkList - remove all instances of N from the worklist.
113 ///
114 void removeFromWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000115 WorkListContents.erase(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000116 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000117
Dan Gohman475871a2008-07-27 21:46:04 +0000118 SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000119 bool AddTo = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000120
Dan Gohman475871a2008-07-27 21:46:04 +0000121 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) {
Jim Laskey274062c2006-10-13 23:32:28 +0000122 return CombineTo(N, &Res, 1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000123 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000124
Dan Gohman475871a2008-07-27 21:46:04 +0000125 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000126 bool AddTo = true) {
Dan Gohman475871a2008-07-27 21:46:04 +0000127 SDValue To[] = { Res0, Res1 };
Jim Laskey274062c2006-10-13 23:32:28 +0000128 return CombineTo(N, To, 2, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000129 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000130
131 void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO);
Scott Michelfdc40a02009-02-17 22:15:04 +0000132
133 private:
134
Chris Lattner012f2412006-02-17 21:58:01 +0000135 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000136 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000137 /// propagation. If so, return true.
Dan Gohman475871a2008-07-27 21:46:04 +0000138 bool SimplifyDemandedBits(SDValue Op) {
Dan Gohman87862e72009-12-11 21:31:27 +0000139 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
140 APInt Demanded = APInt::getAllOnesValue(BitWidth);
Dan Gohman7b8d4a92008-02-27 00:25:32 +0000141 return SimplifyDemandedBits(Op, Demanded);
142 }
143
Dan Gohman475871a2008-07-27 21:46:04 +0000144 bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded);
Chris Lattner87514ca2005-10-10 22:31:19 +0000145
Chris Lattner448f2192006-11-11 00:39:41 +0000146 bool CombineToPreIndexedLoadStore(SDNode *N);
147 bool CombineToPostIndexedLoadStore(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000148
Evan Cheng95c57ea2010-04-24 04:43:44 +0000149 void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad);
150 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
151 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
152 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000153 SDValue PromoteIntBinOp(SDValue Op);
Evan Cheng07c4e102010-04-22 20:19:46 +0000154 SDValue PromoteIntShiftOp(SDValue Op);
Evan Cheng4c26e932010-04-19 19:29:22 +0000155 SDValue PromoteExtend(SDValue Op);
156 bool PromoteLoad(SDValue Op);
Scott Michelfdc40a02009-02-17 22:15:04 +0000157
Craig Topper6c64fba2013-07-13 07:43:40 +0000158 void ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000159 SDValue Trunc, SDValue ExtLoad, SDLoc DL,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +0000160 ISD::NodeType ExtType);
161
Dan Gohman389079b2007-10-08 17:57:15 +0000162 /// combine - call the node-specific routine that knows how to fold each
163 /// particular type of node. If that doesn't do anything, try the
164 /// target-specific DAG combines.
Dan Gohman475871a2008-07-27 21:46:04 +0000165 SDValue combine(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000166
167 // Visitation implementation - Implement dag node combining for different
168 // node types. The semantics are as follows:
169 // Return Value:
Evan Cheng17a568b2008-08-29 22:21:44 +0000170 // SDValue.getNode() == 0 - No change was made
171 // SDValue.getNode() == N - N was replaced, is dead and has been handled.
172 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000173 //
Dan Gohman475871a2008-07-27 21:46:04 +0000174 SDValue visitTokenFactor(SDNode *N);
175 SDValue visitMERGE_VALUES(SDNode *N);
176 SDValue visitADD(SDNode *N);
177 SDValue visitSUB(SDNode *N);
178 SDValue visitADDC(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000179 SDValue visitSUBC(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000180 SDValue visitADDE(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000181 SDValue visitSUBE(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000182 SDValue visitMUL(SDNode *N);
183 SDValue visitSDIV(SDNode *N);
184 SDValue visitUDIV(SDNode *N);
185 SDValue visitSREM(SDNode *N);
186 SDValue visitUREM(SDNode *N);
187 SDValue visitMULHU(SDNode *N);
188 SDValue visitMULHS(SDNode *N);
189 SDValue visitSMUL_LOHI(SDNode *N);
190 SDValue visitUMUL_LOHI(SDNode *N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +0000191 SDValue visitSMULO(SDNode *N);
192 SDValue visitUMULO(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000193 SDValue visitSDIVREM(SDNode *N);
194 SDValue visitUDIVREM(SDNode *N);
195 SDValue visitAND(SDNode *N);
196 SDValue visitOR(SDNode *N);
197 SDValue visitXOR(SDNode *N);
198 SDValue SimplifyVBinOp(SDNode *N);
Craig Topperdd201ff2012-09-11 01:45:21 +0000199 SDValue SimplifyVUnaryOp(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000200 SDValue visitSHL(SDNode *N);
201 SDValue visitSRA(SDNode *N);
202 SDValue visitSRL(SDNode *N);
203 SDValue visitCTLZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000204 SDValue visitCTLZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000205 SDValue visitCTTZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000206 SDValue visitCTTZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000207 SDValue visitCTPOP(SDNode *N);
208 SDValue visitSELECT(SDNode *N);
Benjamin Kramer6242fda2013-04-26 09:19:19 +0000209 SDValue visitVSELECT(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000210 SDValue visitSELECT_CC(SDNode *N);
211 SDValue visitSETCC(SDNode *N);
212 SDValue visitSIGN_EXTEND(SDNode *N);
213 SDValue visitZERO_EXTEND(SDNode *N);
214 SDValue visitANY_EXTEND(SDNode *N);
215 SDValue visitSIGN_EXTEND_INREG(SDNode *N);
216 SDValue visitTRUNCATE(SDNode *N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000217 SDValue visitBITCAST(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000218 SDValue visitBUILD_PAIR(SDNode *N);
219 SDValue visitFADD(SDNode *N);
220 SDValue visitFSUB(SDNode *N);
221 SDValue visitFMUL(SDNode *N);
Owen Anderson062c0a52012-05-02 22:17:40 +0000222 SDValue visitFMA(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000223 SDValue visitFDIV(SDNode *N);
224 SDValue visitFREM(SDNode *N);
225 SDValue visitFCOPYSIGN(SDNode *N);
226 SDValue visitSINT_TO_FP(SDNode *N);
227 SDValue visitUINT_TO_FP(SDNode *N);
228 SDValue visitFP_TO_SINT(SDNode *N);
229 SDValue visitFP_TO_UINT(SDNode *N);
230 SDValue visitFP_ROUND(SDNode *N);
231 SDValue visitFP_ROUND_INREG(SDNode *N);
232 SDValue visitFP_EXTEND(SDNode *N);
233 SDValue visitFNEG(SDNode *N);
234 SDValue visitFABS(SDNode *N);
Owen Anderson7c626d32012-08-13 23:32:49 +0000235 SDValue visitFCEIL(SDNode *N);
236 SDValue visitFTRUNC(SDNode *N);
237 SDValue visitFFLOOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000238 SDValue visitBRCOND(SDNode *N);
239 SDValue visitBR_CC(SDNode *N);
240 SDValue visitLOAD(SDNode *N);
241 SDValue visitSTORE(SDNode *N);
242 SDValue visitINSERT_VECTOR_ELT(SDNode *N);
243 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
244 SDValue visitBUILD_VECTOR(SDNode *N);
245 SDValue visitCONCAT_VECTORS(SDNode *N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +0000246 SDValue visitEXTRACT_SUBVECTOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000247 SDValue visitVECTOR_SHUFFLE(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000248
Dan Gohman475871a2008-07-27 21:46:04 +0000249 SDValue XformToShuffleWithZero(SDNode *N);
Andrew Trickac6d9be2013-05-25 02:42:55 +0000250 SDValue ReassociateOps(unsigned Opc, SDLoc DL, SDValue LHS, SDValue RHS);
Scott Michelfdc40a02009-02-17 22:15:04 +0000251
Dan Gohman475871a2008-07-27 21:46:04 +0000252 SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
Chris Lattnere70da202007-12-06 07:33:36 +0000253
Dan Gohman475871a2008-07-27 21:46:04 +0000254 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
255 SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Andrew Trickac6d9be2013-05-25 02:42:55 +0000256 SDValue SimplifySelect(SDLoc DL, SDValue N0, SDValue N1, SDValue N2);
257 SDValue SimplifySelectCC(SDLoc DL, SDValue N0, SDValue N1, SDValue N2,
Scott Michelfdc40a02009-02-17 22:15:04 +0000258 SDValue N3, ISD::CondCode CC,
Bill Wendling836ca7d2009-01-30 23:59:18 +0000259 bool NotExtCompare = false);
Owen Andersone50ed302009-08-10 22:56:29 +0000260 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000261 SDLoc DL, bool foldBooleans = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000262 SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Chris Lattner5eee4272008-01-26 01:09:19 +0000263 unsigned HiOp);
Owen Andersone50ed302009-08-10 22:56:29 +0000264 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000265 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
Dan Gohman475871a2008-07-27 21:46:04 +0000266 SDValue BuildSDIV(SDNode *N);
267 SDValue BuildUDIV(SDNode *N);
Evan Cheng9568e5c2011-06-21 06:01:08 +0000268 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
269 bool DemandHighBits = true);
270 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
Andrew Trickac6d9be2013-05-25 02:42:55 +0000271 SDNode *MatchRotate(SDValue LHS, SDValue RHS, SDLoc DL);
Dan Gohman475871a2008-07-27 21:46:04 +0000272 SDValue ReduceLoadWidth(SDNode *N);
Evan Cheng8b944d32009-05-28 00:35:15 +0000273 SDValue ReduceLoadOpStoreWidth(SDNode *N);
Evan Cheng31959b12011-02-02 01:06:55 +0000274 SDValue TransformFPLoadStorePair(SDNode *N);
Michael Liaofac14ab2012-10-23 23:06:52 +0000275 SDValue reduceBuildVecExtToExtBuildVec(SDNode *N);
Michael Liao1a5cc712012-10-24 04:14:18 +0000276 SDValue reduceBuildVecConvertToConvertBuildVec(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000277
Dan Gohman475871a2008-07-27 21:46:04 +0000278 SDValue GetDemandedBits(SDValue V, const APInt &Mask);
Scott Michelfdc40a02009-02-17 22:15:04 +0000279
Jim Laskey6ff23e52006-10-04 16:53:27 +0000280 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
281 /// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000282 void GatherAllAliases(SDNode *N, SDValue OriginalChain,
Craig Toppera0ec3f92013-07-14 04:42:23 +0000283 SmallVectorImpl<SDValue> &Aliases);
Jim Laskey6ff23e52006-10-04 16:53:27 +0000284
Jim Laskey096c22e2006-10-18 12:29:57 +0000285 /// isAlias - Return true if there is any possibility that the two addresses
286 /// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +0000287 bool isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +0000288 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000289 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000290 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +0000291 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000292 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000293 unsigned SrcValueAlign2,
294 const MDNode *TBAAInfo2) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000295
Nadav Rotem90e11dc2012-11-29 00:00:08 +0000296 /// isAlias - Return true if there is any possibility that the two addresses
297 /// overlap.
298 bool isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1);
299
Jim Laskey7ca56af2006-10-11 13:47:09 +0000300 /// FindAliasInfo - Extracts the relevant alias information from the memory
301 /// node. Returns true if the operand was a load.
302 bool FindAliasInfo(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000303 SDValue &Ptr, int64_t &Size,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000304 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000305 unsigned &SrcValueAlignment,
306 const MDNode *&TBAAInfo) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000307
Jim Laskey279f0532006-09-25 16:29:54 +0000308 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000309 /// looking for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +0000310 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands92abc622009-01-31 15:50:11 +0000311
Nadav Rotemc653de62012-10-03 16:11:15 +0000312 /// Merge consecutive store operations into a wide store.
313 /// This optimization uses wide integers or vectors when possible.
314 /// \return True if some memory operations were changed.
315 bool MergeConsecutiveStores(StoreSDNode *N);
316
Chris Lattner2392ae72010-04-15 04:48:01 +0000317 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000318 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000319 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000320 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000321
Nate Begeman1d4d4142005-09-01 00:19:25 +0000322 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000323 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000324
Chris Lattner2392ae72010-04-15 04:48:01 +0000325 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000326
Chris Lattner2392ae72010-04-15 04:48:01 +0000327 /// getShiftAmountTy - Returns a type large enough to hold any valid
328 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000329 EVT getShiftAmountTy(EVT LHSTy) {
Elena Demikhovsky87070fe2013-06-26 10:55:03 +0000330 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
331 if (LHSTy.isVector())
332 return LHSTy;
333 return LegalTypes ? TLI.getScalarShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000334 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000335
Chris Lattner2392ae72010-04-15 04:48:01 +0000336 /// isTypeLegal - This method returns true if we are running before type
337 /// legalization or if the specified VT is legal.
338 bool isTypeLegal(const EVT &VT) {
339 if (!LegalTypes) return true;
340 return TLI.isTypeLegal(VT);
341 }
Matt Arsenault225ed702013-05-18 00:21:46 +0000342
343 /// getSetCCResultType - Convenience wrapper around
344 /// TargetLowering::getSetCCResultType
345 EVT getSetCCResultType(EVT VT) const {
346 return TLI.getSetCCResultType(*DAG.getContext(), VT);
347 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000348 };
349}
350
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000351
352namespace {
353/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
354/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000355class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000356 DAGCombiner &DC;
357public:
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000358 explicit WorkListRemover(DAGCombiner &dc)
359 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000360
Duncan Sandsedfcf592008-06-11 11:42:12 +0000361 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000362 DC.removeFromWorkList(N);
363 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000364};
365}
366
Chris Lattner24664722006-03-01 04:53:38 +0000367//===----------------------------------------------------------------------===//
368// TargetLowering::DAGCombinerInfo implementation
369//===----------------------------------------------------------------------===//
370
371void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
372 ((DAGCombiner*)DC)->AddToWorkList(N);
373}
374
Cameron Zwariched3caf92011-04-02 02:40:26 +0000375void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
376 ((DAGCombiner*)DC)->removeFromWorkList(N);
377}
378
Dan Gohman475871a2008-07-27 21:46:04 +0000379SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000380CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
381 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000382}
383
Dan Gohman475871a2008-07-27 21:46:04 +0000384SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000385CombineTo(SDNode *N, SDValue Res, bool AddTo) {
386 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000387}
388
389
Dan Gohman475871a2008-07-27 21:46:04 +0000390SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000391CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
392 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000393}
394
Dan Gohmane5af2d32009-01-29 01:59:02 +0000395void TargetLowering::DAGCombinerInfo::
396CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
397 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
398}
Chris Lattner24664722006-03-01 04:53:38 +0000399
Chris Lattner24664722006-03-01 04:53:38 +0000400//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000401// Helper Functions
402//===----------------------------------------------------------------------===//
403
404/// isNegatibleForFree - Return 1 if we can compute the negated form of the
405/// specified expression for the same cost as the expression itself, or 2 if we
406/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000407static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000408 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000409 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000410 unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000411 // fneg is removable even if it has multiple uses.
412 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000413
Chris Lattner29446522007-05-14 22:04:50 +0000414 // Don't allow anything with multiple uses.
415 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000416
Chris Lattner3adf9512007-05-25 02:19:06 +0000417 // Don't recurse exponentially.
418 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000419
Chris Lattner29446522007-05-14 22:04:50 +0000420 switch (Op.getOpcode()) {
421 default: return false;
422 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000423 // Don't invert constant FP values after legalize. The negated constant
424 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000425 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000426 case ISD::FADD:
427 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000428 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000429
Owen Andersonafd3d562012-03-06 00:29:31 +0000430 // After operation legalization, it might not be legal to create new FSUBs.
431 if (LegalOperations &&
432 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
433 return 0;
434
Craig Topper956342b2012-09-09 22:58:45 +0000435 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000436 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
437 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000438 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000439 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000440 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000441 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000442 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000443 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000444 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000445
Bill Wendlingd34470c2009-01-30 23:10:18 +0000446 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000447 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000448
Chris Lattner29446522007-05-14 22:04:50 +0000449 case ISD::FMUL:
450 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000451 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000452
Bill Wendlingd34470c2009-01-30 23:10:18 +0000453 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000454 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
455 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000456 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000457
Owen Andersonafd3d562012-03-06 00:29:31 +0000458 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000459 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000460
Chris Lattner29446522007-05-14 22:04:50 +0000461 case ISD::FP_EXTEND:
462 case ISD::FP_ROUND:
463 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000464 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000465 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000466 }
467}
468
469/// GetNegatedExpression - If isNegatibleForFree returns true, this function
470/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000471static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000472 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000473 // fneg is removable even if it has multiple uses.
474 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000475
Chris Lattner29446522007-05-14 22:04:50 +0000476 // Don't allow anything with multiple uses.
477 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000478
Chris Lattner3adf9512007-05-25 02:19:06 +0000479 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000480 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000481 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000482 case ISD::ConstantFP: {
483 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
484 V.changeSign();
485 return DAG.getConstantFP(V, Op.getValueType());
486 }
Chris Lattner29446522007-05-14 22:04:50 +0000487 case ISD::FADD:
488 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000489 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000490
Bill Wendlingd34470c2009-01-30 23:10:18 +0000491 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000492 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000493 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000494 &DAG.getTarget().Options, Depth+1))
Andrew Trickac6d9be2013-05-25 02:42:55 +0000495 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000496 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000497 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000498 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000499 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Andrew Trickac6d9be2013-05-25 02:42:55 +0000500 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000501 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000502 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000503 Op.getOperand(0));
504 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000505 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000506 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000507
Bill Wendlingd34470c2009-01-30 23:10:18 +0000508 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000509 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000510 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000511 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000512
Bill Wendlingd34470c2009-01-30 23:10:18 +0000513 // fold (fneg (fsub A, B)) -> (fsub B, A)
Andrew Trickac6d9be2013-05-25 02:42:55 +0000514 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
Bill Wendling35247c32009-01-30 00:45:56 +0000515 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000516
Chris Lattner29446522007-05-14 22:04:50 +0000517 case ISD::FMUL:
518 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000519 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000520
Bill Wendlingd34470c2009-01-30 23:10:18 +0000521 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000522 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000523 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000524 &DAG.getTarget().Options, Depth+1))
Andrew Trickac6d9be2013-05-25 02:42:55 +0000525 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000526 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000527 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000528 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000529
Bill Wendlingd34470c2009-01-30 23:10:18 +0000530 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Andrew Trickac6d9be2013-05-25 02:42:55 +0000531 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000532 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000533 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000534 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000535
Chris Lattner29446522007-05-14 22:04:50 +0000536 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000537 case ISD::FSIN:
Andrew Trickac6d9be2013-05-25 02:42:55 +0000538 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000539 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000540 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000541 case ISD::FP_ROUND:
Andrew Trickac6d9be2013-05-25 02:42:55 +0000542 return DAG.getNode(ISD::FP_ROUND, SDLoc(Op), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000543 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000544 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000545 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000546 }
547}
Chris Lattner24664722006-03-01 04:53:38 +0000548
549
Nate Begeman4ebd8052005-09-01 23:24:04 +0000550// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
551// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000552// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000553// nodes based on the type of node we are checking. This simplifies life a
554// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000555static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
556 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000557 if (N.getOpcode() == ISD::SETCC) {
558 LHS = N.getOperand(0);
559 RHS = N.getOperand(1);
560 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000561 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000562 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000563 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000564 N.getOperand(2).getOpcode() == ISD::Constant &&
565 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000566 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000567 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
568 LHS = N.getOperand(0);
569 RHS = N.getOperand(1);
570 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000571 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000572 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000573 return false;
574}
575
Nate Begeman99801192005-09-07 23:25:52 +0000576// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
577// one use. If this is true, it allows the users to invert the operation for
578// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000579static bool isOneUseSetCC(SDValue N) {
580 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000581 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000582 return true;
583 return false;
584}
585
Andrew Trickac6d9be2013-05-25 02:42:55 +0000586SDValue DAGCombiner::ReassociateOps(unsigned Opc, SDLoc DL,
Bill Wendling35247c32009-01-30 00:45:56 +0000587 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000588 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000589 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
590 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000591 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000592 SDValue OpNode =
593 DAG.FoldConstantArithmetic(Opc, VT,
594 cast<ConstantSDNode>(N0.getOperand(1)),
595 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000596 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000597 }
598 if (N0.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000599 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
Andrew Trickac6d9be2013-05-25 02:42:55 +0000600 SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000601 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000602 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000603 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000604 }
605 }
Bill Wendling35247c32009-01-30 00:45:56 +0000606
Nate Begemancd4d58c2006-02-03 06:46:56 +0000607 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
608 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000609 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000610 SDValue OpNode =
611 DAG.FoldConstantArithmetic(Opc, VT,
612 cast<ConstantSDNode>(N1.getOperand(1)),
613 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000614 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000615 }
616 if (N1.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000617 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Andrew Trickac6d9be2013-05-25 02:42:55 +0000618 SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000619 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000620 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000621 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000622 }
623 }
Bill Wendling35247c32009-01-30 00:45:56 +0000624
Dan Gohman475871a2008-07-27 21:46:04 +0000625 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000626}
627
Dan Gohman475871a2008-07-27 21:46:04 +0000628SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
629 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000630 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
631 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000632 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000633 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000634 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000635 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000636 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000637 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000638 assert((!To[i].getNode() ||
639 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000640 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000641 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000642 DAG.ReplaceAllUsesWith(N, To);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000643 if (AddTo) {
644 // Push the new nodes and any users onto the worklist
645 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000646 if (To[i].getNode()) {
647 AddToWorkList(To[i].getNode());
648 AddUsersToWorkList(To[i].getNode());
649 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000650 }
651 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000652
Dan Gohmandbe664a2009-01-19 21:44:21 +0000653 // Finally, if the node is now dead, remove it from the graph. The node
654 // may not be dead if the replacement process recursively simplified to
655 // something else needing this node.
656 if (N->use_empty()) {
657 // Nodes can be reintroduced into the worklist. Make sure we do not
658 // process a node that has been replaced.
659 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000660
Dan Gohmandbe664a2009-01-19 21:44:21 +0000661 // Finally, since the node is now dead, remove it from the graph.
662 DAG.DeleteNode(N);
663 }
Dan Gohman475871a2008-07-27 21:46:04 +0000664 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000665}
666
Evan Chenge5b51ac2010-04-17 06:13:15 +0000667void DAGCombiner::
668CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000669 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000670 // are deleted, make sure to remove them from our worklist.
671 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000672 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000673
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000674 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000675 AddToWorkList(TLO.New.getNode());
676 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000677
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000678 // Finally, if the node is now dead, remove it from the graph. The node
679 // may not be dead if the replacement process recursively simplified to
680 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000681 if (TLO.Old.getNode()->use_empty()) {
682 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000683
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000684 // If the operands of this node are only used by the node, they will now
685 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000686 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
687 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
688 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000689
Gabor Greifba36cb52008-08-28 21:40:38 +0000690 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000691 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000692}
693
694/// SimplifyDemandedBits - Check the specified integer node value to see if
695/// it can be simplified or if things it uses can be simplified by bit
696/// propagation. If so, return true.
697bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000698 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000699 APInt KnownZero, KnownOne;
700 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
701 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000702
Dan Gohmane5af2d32009-01-29 01:59:02 +0000703 // Revisit the node.
704 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000705
Dan Gohmane5af2d32009-01-29 01:59:02 +0000706 // Replace the old value with the new one.
707 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000708 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000709 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000710 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000711 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000712 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000713
Dan Gohmane5af2d32009-01-29 01:59:02 +0000714 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000715 return true;
716}
717
Evan Cheng95c57ea2010-04-24 04:43:44 +0000718void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
Andrew Trickac6d9be2013-05-25 02:42:55 +0000719 SDLoc dl(Load);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000720 EVT VT = Load->getValueType(0);
721 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000722
Evan Cheng95c57ea2010-04-24 04:43:44 +0000723 DEBUG(dbgs() << "\nReplacing.9 ";
724 Load->dump(&DAG);
725 dbgs() << "\nWith: ";
726 Trunc.getNode()->dump(&DAG);
727 dbgs() << '\n');
728 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000729 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
730 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
Evan Cheng95c57ea2010-04-24 04:43:44 +0000731 removeFromWorkList(Load);
732 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000733 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000734}
735
736SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
737 Replace = false;
Andrew Trickac6d9be2013-05-25 02:42:55 +0000738 SDLoc dl(Op);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000739 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000740 EVT MemVT = LD->getMemoryVT();
741 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000742 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000743 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000744 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000745 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000746 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000747 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000748 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000749 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000750 LD->isNonTemporal(), LD->getAlignment());
751 }
752
Evan Cheng4c26e932010-04-19 19:29:22 +0000753 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000754 switch (Opc) {
755 default: break;
756 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000757 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000758 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000759 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000760 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000761 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000762 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000763 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000764 case ISD::Constant: {
765 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000766 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000767 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000768 }
Evan Chengcaf77402010-04-23 19:10:30 +0000769 }
770
771 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000772 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000773 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000774}
775
Evan Cheng95c57ea2010-04-24 04:43:44 +0000776SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000777 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
778 return SDValue();
779 EVT OldVT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000780 SDLoc dl(Op);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000781 bool Replace = false;
782 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
783 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000784 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000785 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000786
787 if (Replace)
788 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
789 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000790 DAG.getValueType(OldVT));
791}
792
Evan Cheng95c57ea2010-04-24 04:43:44 +0000793SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000794 EVT OldVT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000795 SDLoc dl(Op);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000796 bool Replace = false;
797 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
798 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000799 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000800 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000801
802 if (Replace)
803 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
804 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000805}
806
Evan Cheng64b7bf72010-04-16 06:14:10 +0000807/// PromoteIntBinOp - Promote the specified integer binary operation if the
808/// target indicates it is beneficial. e.g. On x86, it's usually better to
809/// promote i16 operations to i32 since i16 instructions are longer.
810SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
811 if (!LegalOperations)
812 return SDValue();
813
814 EVT VT = Op.getValueType();
815 if (VT.isVector() || !VT.isInteger())
816 return SDValue();
817
Evan Chenge5b51ac2010-04-17 06:13:15 +0000818 // If operation type is 'undesirable', e.g. i16 on x86, consider
819 // promoting it.
820 unsigned Opc = Op.getOpcode();
821 if (TLI.isTypeDesirableForOp(Opc, VT))
822 return SDValue();
823
Evan Cheng64b7bf72010-04-16 06:14:10 +0000824 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000825 // Consult target whether it is a good idea to promote this operation and
826 // what's the right type to promote it to.
827 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000828 assert(PVT != VT && "Don't know what type to promote to!");
829
Evan Cheng95c57ea2010-04-24 04:43:44 +0000830 bool Replace0 = false;
831 SDValue N0 = Op.getOperand(0);
832 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
833 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000834 return SDValue();
835
Evan Cheng95c57ea2010-04-24 04:43:44 +0000836 bool Replace1 = false;
837 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000838 SDValue NN1;
839 if (N0 == N1)
840 NN1 = NN0;
841 else {
842 NN1 = PromoteOperand(N1, PVT, Replace1);
843 if (NN1.getNode() == 0)
844 return SDValue();
845 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000846
Evan Cheng95c57ea2010-04-24 04:43:44 +0000847 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000848 if (NN1.getNode())
849 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000850
851 if (Replace0)
852 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
853 if (Replace1)
854 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000855
Evan Chengac7eae52010-04-27 19:48:13 +0000856 DEBUG(dbgs() << "\nPromoting ";
857 Op.getNode()->dump(&DAG));
Andrew Trickac6d9be2013-05-25 02:42:55 +0000858 SDLoc dl(Op);
Evan Cheng07c4e102010-04-22 20:19:46 +0000859 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000860 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000861 }
862 return SDValue();
863}
864
865/// PromoteIntShiftOp - Promote the specified integer shift operation if the
866/// target indicates it is beneficial. e.g. On x86, it's usually better to
867/// promote i16 operations to i32 since i16 instructions are longer.
868SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
869 if (!LegalOperations)
870 return SDValue();
871
872 EVT VT = Op.getValueType();
873 if (VT.isVector() || !VT.isInteger())
874 return SDValue();
875
876 // If operation type is 'undesirable', e.g. i16 on x86, consider
877 // promoting it.
878 unsigned Opc = Op.getOpcode();
879 if (TLI.isTypeDesirableForOp(Opc, VT))
880 return SDValue();
881
882 EVT PVT = VT;
883 // Consult target whether it is a good idea to promote this operation and
884 // what's the right type to promote it to.
885 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
886 assert(PVT != VT && "Don't know what type to promote to!");
887
Evan Cheng95c57ea2010-04-24 04:43:44 +0000888 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000889 SDValue N0 = Op.getOperand(0);
890 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000891 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000892 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000893 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000894 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000895 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000896 if (N0.getNode() == 0)
897 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000898
Evan Chenge5b51ac2010-04-17 06:13:15 +0000899 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000900 if (Replace)
901 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000902
Evan Chengac7eae52010-04-27 19:48:13 +0000903 DEBUG(dbgs() << "\nPromoting ";
904 Op.getNode()->dump(&DAG));
Andrew Trickac6d9be2013-05-25 02:42:55 +0000905 SDLoc dl(Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000906 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000907 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000908 }
909 return SDValue();
910}
911
Evan Cheng4c26e932010-04-19 19:29:22 +0000912SDValue DAGCombiner::PromoteExtend(SDValue Op) {
913 if (!LegalOperations)
914 return SDValue();
915
916 EVT VT = Op.getValueType();
917 if (VT.isVector() || !VT.isInteger())
918 return SDValue();
919
920 // If operation type is 'undesirable', e.g. i16 on x86, consider
921 // promoting it.
922 unsigned Opc = Op.getOpcode();
923 if (TLI.isTypeDesirableForOp(Opc, VT))
924 return SDValue();
925
926 EVT PVT = VT;
927 // Consult target whether it is a good idea to promote this operation and
928 // what's the right type to promote it to.
929 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
930 assert(PVT != VT && "Don't know what type to promote to!");
931 // fold (aext (aext x)) -> (aext x)
932 // fold (aext (zext x)) -> (zext x)
933 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000934 DEBUG(dbgs() << "\nPromoting ";
935 Op.getNode()->dump(&DAG));
Andrew Trickac6d9be2013-05-25 02:42:55 +0000936 return DAG.getNode(Op.getOpcode(), SDLoc(Op), VT, Op.getOperand(0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000937 }
938 return SDValue();
939}
940
941bool DAGCombiner::PromoteLoad(SDValue Op) {
942 if (!LegalOperations)
943 return false;
944
945 EVT VT = Op.getValueType();
946 if (VT.isVector() || !VT.isInteger())
947 return false;
948
949 // If operation type is 'undesirable', e.g. i16 on x86, consider
950 // promoting it.
951 unsigned Opc = Op.getOpcode();
952 if (TLI.isTypeDesirableForOp(Opc, VT))
953 return false;
954
955 EVT PVT = VT;
956 // Consult target whether it is a good idea to promote this operation and
957 // what's the right type to promote it to.
958 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
959 assert(PVT != VT && "Don't know what type to promote to!");
960
Andrew Trickac6d9be2013-05-25 02:42:55 +0000961 SDLoc dl(Op);
Evan Cheng4c26e932010-04-19 19:29:22 +0000962 SDNode *N = Op.getNode();
963 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000964 EVT MemVT = LD->getMemoryVT();
965 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000966 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000967 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000968 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000969 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000970 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000971 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000972 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000973 LD->isNonTemporal(), LD->getAlignment());
974 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
975
Evan Cheng95c57ea2010-04-24 04:43:44 +0000976 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000977 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000978 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000979 Result.getNode()->dump(&DAG);
980 dbgs() << '\n');
981 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000982 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
983 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
Evan Cheng4c26e932010-04-19 19:29:22 +0000984 removeFromWorkList(N);
985 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000986 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000987 return true;
988 }
989 return false;
990}
991
Evan Chenge5b51ac2010-04-17 06:13:15 +0000992
Chris Lattner29446522007-05-14 22:04:50 +0000993//===----------------------------------------------------------------------===//
994// Main DAG Combiner implementation
995//===----------------------------------------------------------------------===//
996
Duncan Sands25cf2272008-11-24 14:53:14 +0000997void DAGCombiner::Run(CombineLevel AtLevel) {
998 // set the instance variables, so that the various visit routines may use it.
999 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +00001000 LegalOperations = Level >= AfterLegalizeVectorOps;
1001 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +00001002
Evan Cheng17a568b2008-08-29 22:21:44 +00001003 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +00001004 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
1005 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +00001006 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +00001007
Evan Cheng17a568b2008-08-29 22:21:44 +00001008 // Create a dummy node (which is not added to allnodes), that adds a reference
1009 // to the root node, preventing it from being deleted, and tracking any
1010 // changes of the root.
1011 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +00001012
Jim Laskey26f7fa72006-10-17 19:33:52 +00001013 // The root of the dag may dangle to deleted nodes until the dag combiner is
1014 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +00001015 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00001016
James Molloy6660c052012-02-16 09:17:04 +00001017 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +00001018 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +00001019 while (!WorkListContents.empty()) {
1020 SDNode *N;
1021 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1022 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1023 // worklist *should* contain, and check the node we want to visit is should
1024 // actually be visited.
1025 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001026 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001027 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001028
Evan Cheng17a568b2008-08-29 22:21:44 +00001029 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1030 // N is deleted from the DAG, since they too may now be dead or may have a
1031 // reduced number of uses, allowing other xforms.
1032 if (N->use_empty() && N != &Dummy) {
1033 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1034 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001035
Evan Cheng17a568b2008-08-29 22:21:44 +00001036 DAG.DeleteNode(N);
1037 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001038 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001039
Evan Cheng17a568b2008-08-29 22:21:44 +00001040 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001041
Evan Cheng17a568b2008-08-29 22:21:44 +00001042 if (RV.getNode() == 0)
1043 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001044
Evan Cheng17a568b2008-08-29 22:21:44 +00001045 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001046
Evan Cheng17a568b2008-08-29 22:21:44 +00001047 // If we get back the same node we passed in, rather than a new node or
1048 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001049 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001050 // mechanics for us, we have no work to do in this case.
1051 if (RV.getNode() == N)
1052 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001053
Evan Cheng17a568b2008-08-29 22:21:44 +00001054 assert(N->getOpcode() != ISD::DELETED_NODE &&
1055 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1056 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001057
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001058 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001059 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001060 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001061 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001062 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001063
Devang Patel9728ea22011-05-23 22:04:42 +00001064 // Transfer debug value.
1065 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001066 WorkListRemover DeadNodes(*this);
1067 if (N->getNumValues() == RV.getNode()->getNumValues())
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001068 DAG.ReplaceAllUsesWith(N, RV.getNode());
Evan Cheng17a568b2008-08-29 22:21:44 +00001069 else {
1070 assert(N->getValueType(0) == RV.getValueType() &&
1071 N->getNumValues() == 1 && "Type mismatch");
1072 SDValue OpV = RV;
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001073 DAG.ReplaceAllUsesWith(N, &OpV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001074 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001075
Evan Cheng17a568b2008-08-29 22:21:44 +00001076 // Push the new node and any users onto the worklist
1077 AddToWorkList(RV.getNode());
1078 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001079
Evan Cheng17a568b2008-08-29 22:21:44 +00001080 // Add any uses of the old node to the worklist in case this node is the
1081 // last one that uses them. They may become dead after this node is
1082 // deleted.
1083 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1084 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001085
Dan Gohmandbe664a2009-01-19 21:44:21 +00001086 // Finally, if the node is now dead, remove it from the graph. The node
1087 // may not be dead if the replacement process recursively simplified to
1088 // something else needing this node.
1089 if (N->use_empty()) {
1090 // Nodes can be reintroduced into the worklist. Make sure we do not
1091 // process a node that has been replaced.
1092 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001093
Dan Gohmandbe664a2009-01-19 21:44:21 +00001094 // Finally, since the node is now dead, remove it from the graph.
1095 DAG.DeleteNode(N);
1096 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001097 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001098
Chris Lattner95038592005-10-05 06:35:28 +00001099 // If the root changed (e.g. it was a dead load, update the root).
1100 DAG.setRoot(Dummy.getValue());
Hal Finkel31490ba2012-04-16 03:33:22 +00001101 DAG.RemoveDeadNodes();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001102}
1103
Dan Gohman475871a2008-07-27 21:46:04 +00001104SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001105 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001106 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001107 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001108 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001109 case ISD::ADD: return visitADD(N);
1110 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001111 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001112 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001113 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001114 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001115 case ISD::MUL: return visitMUL(N);
1116 case ISD::SDIV: return visitSDIV(N);
1117 case ISD::UDIV: return visitUDIV(N);
1118 case ISD::SREM: return visitSREM(N);
1119 case ISD::UREM: return visitUREM(N);
1120 case ISD::MULHU: return visitMULHU(N);
1121 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001122 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1123 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001124 case ISD::SMULO: return visitSMULO(N);
1125 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001126 case ISD::SDIVREM: return visitSDIVREM(N);
1127 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001128 case ISD::AND: return visitAND(N);
1129 case ISD::OR: return visitOR(N);
1130 case ISD::XOR: return visitXOR(N);
1131 case ISD::SHL: return visitSHL(N);
1132 case ISD::SRA: return visitSRA(N);
1133 case ISD::SRL: return visitSRL(N);
1134 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001135 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001136 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001137 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001138 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7be2005-09-16 00:54:12 +00001139 case ISD::SELECT: return visitSELECT(N);
Benjamin Kramer6242fda2013-04-26 09:19:19 +00001140 case ISD::VSELECT: return visitVSELECT(N);
Nate Begeman452d7be2005-09-16 00:54:12 +00001141 case ISD::SELECT_CC: return visitSELECT_CC(N);
1142 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001143 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1144 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001145 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001146 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1147 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001148 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001149 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001150 case ISD::FADD: return visitFADD(N);
1151 case ISD::FSUB: return visitFSUB(N);
1152 case ISD::FMUL: return visitFMUL(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00001153 case ISD::FMA: return visitFMA(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001154 case ISD::FDIV: return visitFDIV(N);
1155 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001156 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001157 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1158 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1159 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1160 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1161 case ISD::FP_ROUND: return visitFP_ROUND(N);
1162 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1163 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1164 case ISD::FNEG: return visitFNEG(N);
1165 case ISD::FABS: return visitFABS(N);
Owen Anderson7c626d32012-08-13 23:32:49 +00001166 case ISD::FFLOOR: return visitFFLOOR(N);
1167 case ISD::FCEIL: return visitFCEIL(N);
1168 case ISD::FTRUNC: return visitFTRUNC(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001169 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001170 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001171 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001172 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001173 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001174 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001175 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1176 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001177 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001178 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001179 }
Dan Gohman475871a2008-07-27 21:46:04 +00001180 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001181}
1182
Dan Gohman475871a2008-07-27 21:46:04 +00001183SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001184 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001185
1186 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001187 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001188 assert(N->getOpcode() != ISD::DELETED_NODE &&
1189 "Node was deleted but visit returned NULL!");
1190
1191 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1192 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1193
1194 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001195 TargetLowering::DAGCombinerInfo
Nadav Rotem444b4bf2012-12-27 06:47:41 +00001196 DagCombineInfo(DAG, Level, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001197
1198 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1199 }
1200 }
1201
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001202 // If nothing happened still, try promoting the operation.
1203 if (RV.getNode() == 0) {
1204 switch (N->getOpcode()) {
1205 default: break;
1206 case ISD::ADD:
1207 case ISD::SUB:
1208 case ISD::MUL:
1209 case ISD::AND:
1210 case ISD::OR:
1211 case ISD::XOR:
1212 RV = PromoteIntBinOp(SDValue(N, 0));
1213 break;
1214 case ISD::SHL:
1215 case ISD::SRA:
1216 case ISD::SRL:
1217 RV = PromoteIntShiftOp(SDValue(N, 0));
1218 break;
1219 case ISD::SIGN_EXTEND:
1220 case ISD::ZERO_EXTEND:
1221 case ISD::ANY_EXTEND:
1222 RV = PromoteExtend(SDValue(N, 0));
1223 break;
1224 case ISD::LOAD:
1225 if (PromoteLoad(SDValue(N, 0)))
1226 RV = SDValue(N, 0);
1227 break;
1228 }
1229 }
1230
Scott Michelfdc40a02009-02-17 22:15:04 +00001231 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001232 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001233 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001234 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1235 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001236 SDValue N0 = N->getOperand(0);
1237 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001238
Evan Cheng08b11732008-03-22 01:55:50 +00001239 // Constant operands are canonicalized to RHS.
1240 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001241 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001242 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1243 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001244 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001245 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001246 }
1247 }
1248
Dan Gohman389079b2007-10-08 17:57:15 +00001249 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001250}
Dan Gohman389079b2007-10-08 17:57:15 +00001251
Chris Lattner6270f682006-10-08 22:57:01 +00001252/// getInputChainForNode - Given a node, return its input chain if it has one,
1253/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001254static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001255 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001256 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001257 return N->getOperand(0);
Stephen Linb4940152013-07-09 00:44:49 +00001258 if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001259 return N->getOperand(NumOps-1);
1260 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001261 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001262 return N->getOperand(i);
1263 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001264 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001265}
1266
Dan Gohman475871a2008-07-27 21:46:04 +00001267SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001268 // If N has two operands, where one has an input chain equal to the other,
1269 // the 'other' chain is redundant.
1270 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001271 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001272 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001273 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001274 return N->getOperand(1);
1275 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001276
Chris Lattnerc76d4412007-05-16 06:37:59 +00001277 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001278 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001279 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001280 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001281
Jim Laskey6ff23e52006-10-04 16:53:27 +00001282 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001283 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001284
Jim Laskey71382342006-10-07 23:37:56 +00001285 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001286 // encountered.
1287 for (unsigned i = 0; i < TFs.size(); ++i) {
1288 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001289
Jim Laskey6ff23e52006-10-04 16:53:27 +00001290 // Check each of the operands.
1291 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001292 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001293
Jim Laskey6ff23e52006-10-04 16:53:27 +00001294 switch (Op.getOpcode()) {
1295 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001296 // Entry tokens don't need to be added to the list. They are
1297 // rededundant.
1298 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001299 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001300
Jim Laskey6ff23e52006-10-04 16:53:27 +00001301 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001302 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001303 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001304 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001305 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001306 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001307 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001308 Changed = true;
1309 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001310 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001311 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001312
Jim Laskey6ff23e52006-10-04 16:53:27 +00001313 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001314 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001315 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001316 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001317 else
1318 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001319 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001320 }
1321 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001322 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001323
Dan Gohman475871a2008-07-27 21:46:04 +00001324 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001325
1326 // If we've change things around then replace token factor.
1327 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001328 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001329 // The entry token is the only possible outcome.
1330 Result = DAG.getEntryNode();
1331 } else {
1332 // New and improved token factor.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001333 Result = DAG.getNode(ISD::TokenFactor, SDLoc(N),
Owen Anderson825b72b2009-08-11 20:47:22 +00001334 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001335 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001336
Jim Laskey274062c2006-10-13 23:32:28 +00001337 // Don't add users to work list.
1338 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001339 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001340
Jim Laskey6ff23e52006-10-04 16:53:27 +00001341 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001342}
1343
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001344/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001345SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001346 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001347 // Replacing results may cause a different MERGE_VALUES to suddenly
1348 // be CSE'd with N, and carry its uses with it. Iterate until no
1349 // uses remain, to ensure that the node can be safely deleted.
Pete Cooper3affd9e2012-06-20 19:35:43 +00001350 // First add the users of this node to the work list so that they
1351 // can be tried again once they have new operands.
1352 AddUsersToWorkList(N);
Dan Gohman00edf392009-08-10 23:43:19 +00001353 do {
1354 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001355 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
Dan Gohman00edf392009-08-10 23:43:19 +00001356 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001357 removeFromWorkList(N);
1358 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001359 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001360}
1361
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001362static
Andrew Trickac6d9be2013-05-25 02:42:55 +00001363SDValue combineShlAddConstant(SDLoc DL, SDValue N0, SDValue N1,
Bill Wendlingd69c3142009-01-30 02:23:43 +00001364 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001365 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001366 SDValue N00 = N0.getOperand(0);
1367 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001368 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001369
Gabor Greifba36cb52008-08-28 21:40:38 +00001370 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001371 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001372 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Andrew Trickac6d9be2013-05-25 02:42:55 +00001373 N0 = DAG.getNode(ISD::ADD, SDLoc(N0), VT,
1374 DAG.getNode(ISD::SHL, SDLoc(N00), VT,
Bill Wendlingd69c3142009-01-30 02:23:43 +00001375 N00.getOperand(0), N01),
Andrew Trickac6d9be2013-05-25 02:42:55 +00001376 DAG.getNode(ISD::SHL, SDLoc(N01), VT,
Bill Wendlingd69c3142009-01-30 02:23:43 +00001377 N00.getOperand(1), N01));
1378 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001379 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001380
Dan Gohman475871a2008-07-27 21:46:04 +00001381 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001382}
1383
Dan Gohman475871a2008-07-27 21:46:04 +00001384SDValue DAGCombiner::visitADD(SDNode *N) {
1385 SDValue N0 = N->getOperand(0);
1386 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001387 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1388 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001389 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001390
1391 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001392 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001393 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001394 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper48b509c2012-12-10 08:12:29 +00001395
1396 // fold (add x, 0) -> x, vector edition
1397 if (ISD::isBuildVectorAllZeros(N1.getNode()))
1398 return N0;
1399 if (ISD::isBuildVectorAllZeros(N0.getNode()))
1400 return N1;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001401 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001402
Dan Gohman613e0d82007-07-03 14:03:57 +00001403 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001404 if (N0.getOpcode() == ISD::UNDEF)
1405 return N0;
1406 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001407 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001408 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001409 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001410 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001411 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001412 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001413 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001414 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001415 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001416 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001417 // fold (add Sym, c) -> Sym+c
1418 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001419 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001420 GA->getOpcode() == ISD::GlobalAddress)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001421 return DAG.getGlobalAddress(GA->getGlobal(), SDLoc(N1C), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001422 GA->getOffset() +
1423 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001424 // fold ((c1-A)+c2) -> (c1+c2)-A
1425 if (N1C && N0.getOpcode() == ISD::SUB)
1426 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001427 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001428 DAG.getConstant(N1C->getAPIntValue()+
1429 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001430 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001431 // reassociate add
Andrew Trickac6d9be2013-05-25 02:42:55 +00001432 SDValue RADD = ReassociateOps(ISD::ADD, SDLoc(N), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001433 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001434 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001435 // fold ((0-A) + B) -> B-A
1436 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1437 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001438 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001439 // fold (A + (0-B)) -> A-B
1440 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1441 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001442 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001443 // fold (A+(B-A)) -> B
1444 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001445 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001446 // fold ((B-A)+A) -> B
1447 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1448 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001449 // fold (A+(B-(A+C))) to (B-C)
1450 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001451 N0 == N1.getOperand(1).getOperand(0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001452 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001453 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001454 // fold (A+(B-(C+A))) to (B-C)
1455 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001456 N0 == N1.getOperand(1).getOperand(1))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001457 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001458 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001459 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001460 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1461 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001462 N0 == N1.getOperand(0).getOperand(1))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001463 return DAG.getNode(N1.getOpcode(), SDLoc(N), VT,
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001464 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001465
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001466 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1467 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1468 SDValue N00 = N0.getOperand(0);
1469 SDValue N01 = N0.getOperand(1);
1470 SDValue N10 = N1.getOperand(0);
1471 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001472
1473 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001474 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
1475 DAG.getNode(ISD::ADD, SDLoc(N0), VT, N00, N10),
1476 DAG.getNode(ISD::ADD, SDLoc(N1), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001477 }
Chris Lattner947c2892006-03-13 06:51:27 +00001478
Dan Gohman475871a2008-07-27 21:46:04 +00001479 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1480 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001481
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001482 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001483 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001484 APInt LHSZero, LHSOne;
1485 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001486 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001487
Dan Gohman948d8ea2008-02-20 16:33:30 +00001488 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001489 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001490
Chris Lattner947c2892006-03-13 06:51:27 +00001491 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1492 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001493 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001494 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001495 }
1496 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001497
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001498 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001499 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001500 SDValue Result = combineShlAddConstant(SDLoc(N), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001501 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001502 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001503 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001504 SDValue Result = combineShlAddConstant(SDLoc(N), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001505 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001506 }
1507
Dan Gohmancd9e1552010-01-19 23:30:49 +00001508 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1509 if (N1.getOpcode() == ISD::SHL &&
1510 N1.getOperand(0).getOpcode() == ISD::SUB)
1511 if (ConstantSDNode *C =
1512 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1513 if (C->getAPIntValue() == 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001514 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N0,
1515 DAG.getNode(ISD::SHL, SDLoc(N), VT,
Dan Gohmancd9e1552010-01-19 23:30:49 +00001516 N1.getOperand(0).getOperand(1),
1517 N1.getOperand(1)));
1518 if (N0.getOpcode() == ISD::SHL &&
1519 N0.getOperand(0).getOpcode() == ISD::SUB)
1520 if (ConstantSDNode *C =
1521 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1522 if (C->getAPIntValue() == 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001523 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1,
1524 DAG.getNode(ISD::SHL, SDLoc(N), VT,
Dan Gohmancd9e1552010-01-19 23:30:49 +00001525 N0.getOperand(0).getOperand(1),
1526 N0.getOperand(1)));
1527
Owen Andersonbc146b02010-09-21 20:42:50 +00001528 if (N1.getOpcode() == ISD::AND) {
1529 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001530 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001531 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1532 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001533
Owen Andersonbc146b02010-09-21 20:42:50 +00001534 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1535 // and similar xforms where the inner op is either ~0 or 0.
1536 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001537 SDLoc DL(N);
Owen Andersonbc146b02010-09-21 20:42:50 +00001538 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1539 }
1540 }
1541
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001542 // add (sext i1), X -> sub X, (zext i1)
1543 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1544 N0.getOperand(0).getValueType() == MVT::i1 &&
1545 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001546 SDLoc DL(N);
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001547 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1548 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1549 }
1550
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001551 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001552}
1553
Dan Gohman475871a2008-07-27 21:46:04 +00001554SDValue DAGCombiner::visitADDC(SDNode *N) {
1555 SDValue N0 = N->getOperand(0);
1556 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001557 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1558 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001559 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001560
Chris Lattner91153682007-03-04 20:03:15 +00001561 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001562 if (!N->hasAnyUseOfValue(1))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001563 return CombineTo(N, DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001564 DAG.getNode(ISD::CARRY_FALSE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001565 SDLoc(N), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001566
Chris Lattner91153682007-03-04 20:03:15 +00001567 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001568 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001569 return DAG.getNode(ISD::ADDC, SDLoc(N), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001570
Chris Lattnerb6541762007-03-04 20:40:38 +00001571 // fold (addc x, 0) -> x + no carry out
1572 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001573 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001574 SDLoc(N), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001575
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001576 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001577 APInt LHSZero, LHSOne;
1578 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001579 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001580
Dan Gohman948d8ea2008-02-20 16:33:30 +00001581 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001582 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001583
Chris Lattnerb6541762007-03-04 20:40:38 +00001584 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1585 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001586 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001587 return CombineTo(N, DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001588 DAG.getNode(ISD::CARRY_FALSE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001589 SDLoc(N), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001590 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001591
Dan Gohman475871a2008-07-27 21:46:04 +00001592 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001593}
1594
Dan Gohman475871a2008-07-27 21:46:04 +00001595SDValue DAGCombiner::visitADDE(SDNode *N) {
1596 SDValue N0 = N->getOperand(0);
1597 SDValue N1 = N->getOperand(1);
1598 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001599 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1600 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001601
Chris Lattner91153682007-03-04 20:03:15 +00001602 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001603 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001604 return DAG.getNode(ISD::ADDE, SDLoc(N), N->getVTList(),
Bill Wendling14036c02009-01-30 02:38:00 +00001605 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001606
Chris Lattnerb6541762007-03-04 20:40:38 +00001607 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001608 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001609 return DAG.getNode(ISD::ADDC, SDLoc(N), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001610
Dan Gohman475871a2008-07-27 21:46:04 +00001611 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001612}
1613
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001614// Since it may not be valid to emit a fold to zero for vector initializers
1615// check if we can before folding.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001616static SDValue tryFoldToZero(SDLoc DL, const TargetLowering &TLI, EVT VT,
Hal Finkelbd6f1f62013-07-09 17:02:45 +00001617 SelectionDAG &DAG,
1618 bool LegalOperations, bool LegalTypes) {
Stephen Linb4940152013-07-09 00:44:49 +00001619 if (!VT.isVector())
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001620 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001621 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001622 // Produce a vector of zeros.
Hal Finkelbd6f1f62013-07-09 17:02:45 +00001623 EVT ElemTy = VT.getVectorElementType();
1624 if (LegalTypes && TLI.getTypeAction(*DAG.getContext(), ElemTy) ==
1625 TargetLowering::TypePromoteInteger)
1626 ElemTy = TLI.getTypeToTransformTo(*DAG.getContext(), ElemTy);
1627 assert((!LegalTypes || TLI.isTypeLegal(ElemTy)) &&
1628 "Type for zero vector elements is not legal");
1629 SDValue El = DAG.getConstant(0, ElemTy);
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001630 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1631 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1632 &Ops[0], Ops.size());
1633 }
1634 return SDValue();
1635}
1636
Dan Gohman475871a2008-07-27 21:46:04 +00001637SDValue DAGCombiner::visitSUB(SDNode *N) {
1638 SDValue N0 = N->getOperand(0);
1639 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001640 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1641 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001642 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1643 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001644 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001645
Dan Gohman7f321562007-06-25 16:23:39 +00001646 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001647 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001648 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001649 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper48b509c2012-12-10 08:12:29 +00001650
1651 // fold (sub x, 0) -> x, vector edition
1652 if (ISD::isBuildVectorAllZeros(N1.getNode()))
1653 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001654 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001655
Chris Lattner854077d2005-10-17 01:07:11 +00001656 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001657 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001658 if (N0 == N1)
Hal Finkelbd6f1f62013-07-09 17:02:45 +00001659 return tryFoldToZero(SDLoc(N), TLI, VT, DAG, LegalOperations, LegalTypes);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001660 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001661 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001662 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001663 // fold (sub x, c) -> (add x, -c)
1664 if (N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001665 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001666 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001667 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1668 if (N0C && N0C->isAllOnesValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001669 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001670 // fold A-(A-B) -> B
1671 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1672 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001673 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001674 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001675 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001676 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001677 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001678 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001679 // fold C2-(A+C1) -> (C2-C1)-A
1680 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00001681 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(),
1682 VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001683 return DAG.getNode(ISD::SUB, SDLoc(N), VT, NewC,
Bill Wendling96cb1122012-07-19 00:04:14 +00001684 N1.getOperand(0));
Eric Christopher7332e6e2011-07-14 01:12:15 +00001685 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001686 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001687 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001688 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1689 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001690 N0.getOperand(1).getOperand(0) == N1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001691 return DAG.getNode(N0.getOperand(1).getOpcode(), SDLoc(N), VT,
Bill Wendlingb0702e02009-01-30 02:42:10 +00001692 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001693 // fold ((A+(C+B))-B) -> A+C
1694 if (N0.getOpcode() == ISD::ADD &&
1695 N0.getOperand(1).getOpcode() == ISD::ADD &&
1696 N0.getOperand(1).getOperand(1) == N1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001697 return DAG.getNode(ISD::ADD, SDLoc(N), VT,
Bill Wendlingb0702e02009-01-30 02:42:10 +00001698 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001699 // fold ((A-(B-C))-C) -> A-B
1700 if (N0.getOpcode() == ISD::SUB &&
1701 N0.getOperand(1).getOpcode() == ISD::SUB &&
1702 N0.getOperand(1).getOperand(1) == N1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001703 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendlingb0702e02009-01-30 02:42:10 +00001704 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001705
Dan Gohman613e0d82007-07-03 14:03:57 +00001706 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001707 if (N0.getOpcode() == ISD::UNDEF)
1708 return N0;
1709 if (N1.getOpcode() == ISD::UNDEF)
1710 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001711
Dan Gohman6520e202008-10-18 02:06:02 +00001712 // If the relocation model supports it, consider symbol offsets.
1713 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001714 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001715 // fold (sub Sym, c) -> Sym-c
1716 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001717 return DAG.getGlobalAddress(GA->getGlobal(), SDLoc(N1C), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001718 GA->getOffset() -
1719 (uint64_t)N1C->getSExtValue());
1720 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1721 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1722 if (GA->getGlobal() == GB->getGlobal())
1723 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1724 VT);
1725 }
1726
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001727 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001728}
1729
Craig Toppercc274522012-01-07 09:06:39 +00001730SDValue DAGCombiner::visitSUBC(SDNode *N) {
1731 SDValue N0 = N->getOperand(0);
1732 SDValue N1 = N->getOperand(1);
1733 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1734 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1735 EVT VT = N0.getValueType();
1736
1737 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001738 if (!N->hasAnyUseOfValue(1))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001739 return CombineTo(N, DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, N1),
1740 DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
Craig Toppercc274522012-01-07 09:06:39 +00001741 MVT::Glue));
1742
1743 // fold (subc x, x) -> 0 + no borrow
1744 if (N0 == N1)
1745 return CombineTo(N, DAG.getConstant(0, VT),
Andrew Trickac6d9be2013-05-25 02:42:55 +00001746 DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
Craig Toppercc274522012-01-07 09:06:39 +00001747 MVT::Glue));
1748
1749 // fold (subc x, 0) -> x + no borrow
1750 if (N1C && N1C->isNullValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001751 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
Craig Toppercc274522012-01-07 09:06:39 +00001752 MVT::Glue));
1753
1754 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1755 if (N0C && N0C->isAllOnesValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001756 return CombineTo(N, DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0),
1757 DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
Craig Toppercc274522012-01-07 09:06:39 +00001758 MVT::Glue));
1759
1760 return SDValue();
1761}
1762
1763SDValue DAGCombiner::visitSUBE(SDNode *N) {
1764 SDValue N0 = N->getOperand(0);
1765 SDValue N1 = N->getOperand(1);
1766 SDValue CarryIn = N->getOperand(2);
1767
1768 // fold (sube x, y, false) -> (subc x, y)
1769 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001770 return DAG.getNode(ISD::SUBC, SDLoc(N), N->getVTList(), N0, N1);
Craig Toppercc274522012-01-07 09:06:39 +00001771
1772 return SDValue();
1773}
1774
Elena Demikhovskyd8026702013-06-26 12:15:53 +00001775/// isConstantSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
1776/// all the same constant or undefined.
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001777static bool isConstantSplatVector(SDNode *N, APInt& SplatValue) {
1778 BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(N);
1779 if (!C)
1780 return false;
1781
1782 APInt SplatUndef;
1783 unsigned SplatBitSize;
1784 bool HasAnyUndefs;
1785 EVT EltVT = N->getValueType(0).getVectorElementType();
1786 return (C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
1787 HasAnyUndefs) &&
1788 EltVT.getSizeInBits() >= SplatBitSize);
1789}
1790
Dan Gohman475871a2008-07-27 21:46:04 +00001791SDValue DAGCombiner::visitMUL(SDNode *N) {
1792 SDValue N0 = N->getOperand(0);
1793 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00001794 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001795
Dan Gohman613e0d82007-07-03 14:03:57 +00001796 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001797 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001798 return DAG.getConstant(0, VT);
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001799
1800 bool N0IsConst = false;
1801 bool N1IsConst = false;
1802 APInt ConstValue0, ConstValue1;
1803 // fold vector ops
1804 if (VT.isVector()) {
1805 SDValue FoldedVOp = SimplifyVBinOp(N);
1806 if (FoldedVOp.getNode()) return FoldedVOp;
1807
1808 N0IsConst = isConstantSplatVector(N0.getNode(), ConstValue0);
1809 N1IsConst = isConstantSplatVector(N1.getNode(), ConstValue1);
1810 } else {
1811 N0IsConst = dyn_cast<ConstantSDNode>(N0) != 0;
1812 ConstValue0 = N0IsConst? (dyn_cast<ConstantSDNode>(N0))->getAPIntValue() : APInt();
1813 N1IsConst = dyn_cast<ConstantSDNode>(N1) != 0;
1814 ConstValue1 = N1IsConst? (dyn_cast<ConstantSDNode>(N1))->getAPIntValue() : APInt();
1815 }
1816
Nate Begeman1d4d4142005-09-01 00:19:25 +00001817 // fold (mul c1, c2) -> c1*c2
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001818 if (N0IsConst && N1IsConst)
1819 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0.getNode(), N1.getNode());
1820
Nate Begeman99801192005-09-07 23:25:52 +00001821 // canonicalize constant to RHS
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001822 if (N0IsConst && !N1IsConst)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001823 return DAG.getNode(ISD::MUL, SDLoc(N), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001824 // fold (mul x, 0) -> 0
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001825 if (N1IsConst && ConstValue1 == 0)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001826 return N1;
Benjamin Kramer530d09a2013-09-19 13:28:20 +00001827 // We require a splat of the entire scalar bit width for non-contiguous
1828 // bit patterns.
1829 bool IsFullSplat =
1830 ConstValue1.getBitWidth() == VT.getScalarType().getSizeInBits();
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001831 // fold (mul x, 1) -> x
Benjamin Kramer530d09a2013-09-19 13:28:20 +00001832 if (N1IsConst && ConstValue1 == 1 && IsFullSplat)
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001833 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001834 // fold (mul x, -1) -> 0-x
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001835 if (N1IsConst && ConstValue1.isAllOnesValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001836 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001837 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001838 // fold (mul x, (1 << c)) -> x << c
Benjamin Kramer530d09a2013-09-19 13:28:20 +00001839 if (N1IsConst && ConstValue1.isPowerOf2() && IsFullSplat)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001840 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001841 DAG.getConstant(ConstValue1.logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001842 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001843 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Benjamin Kramer530d09a2013-09-19 13:28:20 +00001844 if (N1IsConst && (-ConstValue1).isPowerOf2() && IsFullSplat) {
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001845 unsigned Log2Val = (-ConstValue1).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001846 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001847 // single-use add), we should put the negate there.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001848 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001849 DAG.getConstant(0, VT),
Andrew Trickac6d9be2013-05-25 02:42:55 +00001850 DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001851 DAG.getConstant(Log2Val,
1852 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001853 }
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001854
1855 APInt Val;
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001856 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Stephen Lin155615d2013-07-08 00:37:03 +00001857 if (N1IsConst && N0.getOpcode() == ISD::SHL &&
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001858 (isConstantSplatVector(N0.getOperand(1).getNode(), Val) ||
1859 isa<ConstantSDNode>(N0.getOperand(1)))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001860 SDValue C3 = DAG.getNode(ISD::SHL, SDLoc(N), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001861 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001862 AddToWorkList(C3.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00001863 return DAG.getNode(ISD::MUL, SDLoc(N), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001864 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001865 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001866
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001867 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1868 // use.
1869 {
Dan Gohman475871a2008-07-27 21:46:04 +00001870 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001871 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
Stephen Lin155615d2013-07-08 00:37:03 +00001872 if (N0.getOpcode() == ISD::SHL &&
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001873 (isConstantSplatVector(N0.getOperand(1).getNode(), Val) ||
1874 isa<ConstantSDNode>(N0.getOperand(1))) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001875 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001876 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001877 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001878 isa<ConstantSDNode>(N1.getOperand(1)) &&
1879 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001880 Sh = N1; Y = N0;
1881 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001882
Gabor Greifba36cb52008-08-28 21:40:38 +00001883 if (Sh.getNode()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001884 SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001885 Sh.getOperand(0), Y);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001886 return DAG.getNode(ISD::SHL, SDLoc(N), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001887 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001888 }
1889 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001890
Chris Lattnera1deca32006-03-04 23:33:26 +00001891 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001892 if (N1IsConst && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
1893 (isConstantSplatVector(N0.getOperand(1).getNode(), Val) ||
1894 isa<ConstantSDNode>(N0.getOperand(1))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001895 return DAG.getNode(ISD::ADD, SDLoc(N), VT,
1896 DAG.getNode(ISD::MUL, SDLoc(N0), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001897 N0.getOperand(0), N1),
Andrew Trickac6d9be2013-05-25 02:42:55 +00001898 DAG.getNode(ISD::MUL, SDLoc(N1), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001899 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001900
Nate Begemancd4d58c2006-02-03 06:46:56 +00001901 // reassociate mul
Andrew Trickac6d9be2013-05-25 02:42:55 +00001902 SDValue RMUL = ReassociateOps(ISD::MUL, SDLoc(N), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001903 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001904 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001905
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001906 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001907}
1908
Dan Gohman475871a2008-07-27 21:46:04 +00001909SDValue DAGCombiner::visitSDIV(SDNode *N) {
1910 SDValue N0 = N->getOperand(0);
1911 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001912 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1913 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001914 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001915
Dan Gohman7f321562007-06-25 16:23:39 +00001916 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001917 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001918 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001919 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001920 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001921
Nate Begeman1d4d4142005-09-01 00:19:25 +00001922 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001923 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001924 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001925 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001926 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001927 return N0;
1928 // fold (sdiv X, -1) -> 0-X
1929 if (N1C && N1C->isAllOnesValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001930 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling944d34b2009-01-30 02:52:17 +00001931 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001932 // If we know the sign bits of both operands are zero, strength reduce to a
1933 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001934 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001935 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001936 return DAG.getNode(ISD::UDIV, SDLoc(N), N1.getValueType(),
Bill Wendling944d34b2009-01-30 02:52:17 +00001937 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001938 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001939 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001940 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001941 (N1C->getAPIntValue().isPowerOf2() ||
1942 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001943 // If dividing by powers of two is cheap, then don't perform the following
1944 // fold.
1945 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001946 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001947
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001948 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001949
Chris Lattner8f4880b2006-02-16 08:02:36 +00001950 // Splat the sign bit into the register
Andrew Trickac6d9be2013-05-25 02:42:55 +00001951 SDValue SGN = DAG.getNode(ISD::SRA, SDLoc(N), VT, N0,
Bill Wendling944d34b2009-01-30 02:52:17 +00001952 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001953 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001954 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001955
Chris Lattner8f4880b2006-02-16 08:02:36 +00001956 // Add (N0 < 0) ? abs2 - 1 : 0;
Andrew Trickac6d9be2013-05-25 02:42:55 +00001957 SDValue SRL = DAG.getNode(ISD::SRL, SDLoc(N), VT, SGN,
Bill Wendling944d34b2009-01-30 02:52:17 +00001958 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001959 getShiftAmountTy(SGN.getValueType())));
Andrew Trickac6d9be2013-05-25 02:42:55 +00001960 SDValue ADD = DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001961 AddToWorkList(SRL.getNode());
1962 AddToWorkList(ADD.getNode()); // Divide by pow2
Andrew Trickac6d9be2013-05-25 02:42:55 +00001963 SDValue SRA = DAG.getNode(ISD::SRA, SDLoc(N), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001964 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001965
Nate Begeman405e3ec2005-10-21 00:02:42 +00001966 // If we're dividing by a positive value, we're done. Otherwise, we must
1967 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001968 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001969 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001970
Gabor Greifba36cb52008-08-28 21:40:38 +00001971 AddToWorkList(SRA.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00001972 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling944d34b2009-01-30 02:52:17 +00001973 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001974 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001975
Nate Begeman69575232005-10-20 02:15:44 +00001976 // if integer divide is expensive and we satisfy the requirements, emit an
1977 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001978 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001979 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001980 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001981 }
Dan Gohman7f321562007-06-25 16:23:39 +00001982
Dan Gohman613e0d82007-07-03 14:03:57 +00001983 // undef / X -> 0
1984 if (N0.getOpcode() == ISD::UNDEF)
1985 return DAG.getConstant(0, VT);
1986 // X / undef -> undef
1987 if (N1.getOpcode() == ISD::UNDEF)
1988 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001989
Dan Gohman475871a2008-07-27 21:46:04 +00001990 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001991}
1992
Dan Gohman475871a2008-07-27 21:46:04 +00001993SDValue DAGCombiner::visitUDIV(SDNode *N) {
1994 SDValue N0 = N->getOperand(0);
1995 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001996 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1997 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001998 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001999
Dan Gohman7f321562007-06-25 16:23:39 +00002000 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002001 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002002 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002003 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002004 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002005
Nate Begeman1d4d4142005-09-01 00:19:25 +00002006 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002007 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002008 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002009 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00002010 if (N1C && N1C->getAPIntValue().isPowerOf2())
Andrew Trickac6d9be2013-05-25 02:42:55 +00002011 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002012 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00002013 getShiftAmountTy(N0.getValueType())));
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002014 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00002015 if (N1.getOpcode() == ISD::SHL) {
2016 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002017 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00002018 EVT ADDVT = N1.getOperand(1).getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00002019 SDValue Add = DAG.getNode(ISD::ADD, SDLoc(N), ADDVT,
Bill Wendling07d85142009-01-30 02:55:25 +00002020 N1.getOperand(1),
2021 DAG.getConstant(SHC->getAPIntValue()
2022 .logBase2(),
2023 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002024 AddToWorkList(Add.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002025 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00002026 }
2027 }
2028 }
Nate Begeman69575232005-10-20 02:15:44 +00002029 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00002030 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002031 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002032 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00002033 }
Dan Gohman7f321562007-06-25 16:23:39 +00002034
Dan Gohman613e0d82007-07-03 14:03:57 +00002035 // undef / X -> 0
2036 if (N0.getOpcode() == ISD::UNDEF)
2037 return DAG.getConstant(0, VT);
2038 // X / undef -> undef
2039 if (N1.getOpcode() == ISD::UNDEF)
2040 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002041
Dan Gohman475871a2008-07-27 21:46:04 +00002042 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002043}
2044
Dan Gohman475871a2008-07-27 21:46:04 +00002045SDValue DAGCombiner::visitSREM(SDNode *N) {
2046 SDValue N0 = N->getOperand(0);
2047 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002048 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2049 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002050 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002051
Nate Begeman1d4d4142005-09-01 00:19:25 +00002052 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002053 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002054 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002055 // If we know the sign bits of both operands are zero, strength reduce to a
2056 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00002057 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002058 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00002059 return DAG.getNode(ISD::UREM, SDLoc(N), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00002060 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002061
Dan Gohman77003042007-11-26 23:46:11 +00002062 // If X/C can be simplified by the division-by-constant logic, lower
2063 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002064 if (N1C && !N1C->isNullValue()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002065 SDValue Div = DAG.getNode(ISD::SDIV, SDLoc(N), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002066 AddToWorkList(Div.getNode());
2067 SDValue OptimizedDiv = combine(Div.getNode());
2068 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002069 SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT,
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002070 OptimizedDiv, N1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00002071 SDValue Sub = DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002072 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002073 return Sub;
2074 }
Chris Lattner26d29902006-10-12 20:58:32 +00002075 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002076
Dan Gohman613e0d82007-07-03 14:03:57 +00002077 // undef % X -> 0
2078 if (N0.getOpcode() == ISD::UNDEF)
2079 return DAG.getConstant(0, VT);
2080 // X % undef -> undef
2081 if (N1.getOpcode() == ISD::UNDEF)
2082 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002083
Dan Gohman475871a2008-07-27 21:46:04 +00002084 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002085}
2086
Dan Gohman475871a2008-07-27 21:46:04 +00002087SDValue DAGCombiner::visitUREM(SDNode *N) {
2088 SDValue N0 = N->getOperand(0);
2089 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002090 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2091 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002092 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002093
Nate Begeman1d4d4142005-09-01 00:19:25 +00002094 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002095 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002096 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002097 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002098 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Andrew Trickac6d9be2013-05-25 02:42:55 +00002099 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002100 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002101 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2102 if (N1.getOpcode() == ISD::SHL) {
2103 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002104 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002105 SDValue Add =
Andrew Trickac6d9be2013-05-25 02:42:55 +00002106 DAG.getNode(ISD::ADD, SDLoc(N), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002107 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002108 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002109 AddToWorkList(Add.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002110 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002111 }
2112 }
2113 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002114
Dan Gohman77003042007-11-26 23:46:11 +00002115 // If X/C can be simplified by the division-by-constant logic, lower
2116 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002117 if (N1C && !N1C->isNullValue()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002118 SDValue Div = DAG.getNode(ISD::UDIV, SDLoc(N), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002119 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002120 SDValue OptimizedDiv = combine(Div.getNode());
2121 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002122 SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT,
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002123 OptimizedDiv, N1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00002124 SDValue Sub = DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002125 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002126 return Sub;
2127 }
Chris Lattner26d29902006-10-12 20:58:32 +00002128 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002129
Dan Gohman613e0d82007-07-03 14:03:57 +00002130 // undef % X -> 0
2131 if (N0.getOpcode() == ISD::UNDEF)
2132 return DAG.getConstant(0, VT);
2133 // X % undef -> undef
2134 if (N1.getOpcode() == ISD::UNDEF)
2135 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002136
Dan Gohman475871a2008-07-27 21:46:04 +00002137 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002138}
2139
Dan Gohman475871a2008-07-27 21:46:04 +00002140SDValue DAGCombiner::visitMULHS(SDNode *N) {
2141 SDValue N0 = N->getOperand(0);
2142 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002143 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002144 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00002145 SDLoc DL(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00002146
Nate Begeman1d4d4142005-09-01 00:19:25 +00002147 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002148 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002149 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002150 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002151 if (N1C && N1C->getAPIntValue() == 1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00002152 return DAG.getNode(ISD::SRA, SDLoc(N), N0.getValueType(), N0,
Bill Wendling326411d2009-01-30 03:00:18 +00002153 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002154 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002155 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002156 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002157 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002158
Chris Lattnerde1c3602010-12-13 08:39:01 +00002159 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2160 // plus a shift.
2161 if (VT.isSimple() && !VT.isVector()) {
2162 MVT Simple = VT.getSimpleVT();
2163 unsigned SimpleSize = Simple.getSizeInBits();
2164 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2165 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2166 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2167 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2168 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002169 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002170 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002171 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2172 }
2173 }
Owen Anderson95771af2011-02-25 21:41:48 +00002174
Dan Gohman475871a2008-07-27 21:46:04 +00002175 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002176}
2177
Dan Gohman475871a2008-07-27 21:46:04 +00002178SDValue DAGCombiner::visitMULHU(SDNode *N) {
2179 SDValue N0 = N->getOperand(0);
2180 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002181 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002182 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00002183 SDLoc DL(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00002184
Nate Begeman1d4d4142005-09-01 00:19:25 +00002185 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002186 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002187 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002188 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002189 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002190 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002191 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002192 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002193 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002194
Chris Lattnerde1c3602010-12-13 08:39:01 +00002195 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2196 // plus a shift.
2197 if (VT.isSimple() && !VT.isVector()) {
2198 MVT Simple = VT.getSimpleVT();
2199 unsigned SimpleSize = Simple.getSizeInBits();
2200 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2201 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2202 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2203 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2204 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2205 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002206 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002207 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2208 }
2209 }
Owen Anderson95771af2011-02-25 21:41:48 +00002210
Dan Gohman475871a2008-07-27 21:46:04 +00002211 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002212}
2213
Dan Gohman389079b2007-10-08 17:57:15 +00002214/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2215/// compute two values. LoOp and HiOp give the opcodes for the two computations
2216/// that are being performed. Return true if a simplification was made.
2217///
Scott Michelfdc40a02009-02-17 22:15:04 +00002218SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002219 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002220 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002221 bool HiExists = N->hasAnyUseOfValue(1);
2222 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002223 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002224 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002225 SDValue Res = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0),
Bill Wendling826d1142009-01-30 03:08:40 +00002226 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002227 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002228 }
2229
2230 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002231 bool LoExists = N->hasAnyUseOfValue(0);
2232 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002233 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002234 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002235 SDValue Res = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1),
Bill Wendling826d1142009-01-30 03:08:40 +00002236 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002237 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002238 }
2239
Evan Cheng44711942007-11-08 09:25:29 +00002240 // If both halves are used, return as it is.
2241 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002242 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002243
2244 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002245 if (LoExists) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002246 SDValue Lo = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0),
Bill Wendling826d1142009-01-30 03:08:40 +00002247 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002248 AddToWorkList(Lo.getNode());
2249 SDValue LoOpt = combine(Lo.getNode());
2250 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002251 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002252 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002253 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002254 }
2255
Evan Cheng44711942007-11-08 09:25:29 +00002256 if (HiExists) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002257 SDValue Hi = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002258 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002259 AddToWorkList(Hi.getNode());
2260 SDValue HiOpt = combine(Hi.getNode());
2261 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002262 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002263 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002264 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002265 }
Bill Wendling826d1142009-01-30 03:08:40 +00002266
Dan Gohman475871a2008-07-27 21:46:04 +00002267 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002268}
2269
Dan Gohman475871a2008-07-27 21:46:04 +00002270SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2271 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002272 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002273
Chris Lattner33e77d32010-12-15 06:04:19 +00002274 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00002275 SDLoc DL(N);
Chris Lattner33e77d32010-12-15 06:04:19 +00002276
2277 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2278 // plus a shift.
2279 if (VT.isSimple() && !VT.isVector()) {
2280 MVT Simple = VT.getSimpleVT();
2281 unsigned SimpleSize = Simple.getSizeInBits();
2282 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2283 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2284 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2285 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2286 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2287 // Compute the high part as N1.
2288 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002289 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002290 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2291 // Compute the low part as N0.
2292 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2293 return CombineTo(N, Lo, Hi);
2294 }
2295 }
Owen Anderson95771af2011-02-25 21:41:48 +00002296
Dan Gohman475871a2008-07-27 21:46:04 +00002297 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002298}
2299
Dan Gohman475871a2008-07-27 21:46:04 +00002300SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2301 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002302 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002303
Chris Lattner33e77d32010-12-15 06:04:19 +00002304 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00002305 SDLoc DL(N);
Owen Anderson95771af2011-02-25 21:41:48 +00002306
Chris Lattner33e77d32010-12-15 06:04:19 +00002307 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2308 // plus a shift.
2309 if (VT.isSimple() && !VT.isVector()) {
2310 MVT Simple = VT.getSimpleVT();
2311 unsigned SimpleSize = Simple.getSizeInBits();
2312 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2313 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2314 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2315 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2316 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2317 // Compute the high part as N1.
2318 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002319 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002320 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2321 // Compute the low part as N0.
2322 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2323 return CombineTo(N, Lo, Hi);
2324 }
2325 }
Owen Anderson95771af2011-02-25 21:41:48 +00002326
Dan Gohman475871a2008-07-27 21:46:04 +00002327 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002328}
2329
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002330SDValue DAGCombiner::visitSMULO(SDNode *N) {
2331 // (smulo x, 2) -> (saddo x, x)
2332 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2333 if (C2->getAPIntValue() == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00002334 return DAG.getNode(ISD::SADDO, SDLoc(N), N->getVTList(),
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002335 N->getOperand(0), N->getOperand(0));
2336
2337 return SDValue();
2338}
2339
2340SDValue DAGCombiner::visitUMULO(SDNode *N) {
2341 // (umulo x, 2) -> (uaddo x, x)
2342 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2343 if (C2->getAPIntValue() == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00002344 return DAG.getNode(ISD::UADDO, SDLoc(N), N->getVTList(),
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002345 N->getOperand(0), N->getOperand(0));
2346
2347 return SDValue();
2348}
2349
Dan Gohman475871a2008-07-27 21:46:04 +00002350SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2351 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002352 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002353
Dan Gohman475871a2008-07-27 21:46:04 +00002354 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002355}
2356
Dan Gohman475871a2008-07-27 21:46:04 +00002357SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2358 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002359 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002360
Dan Gohman475871a2008-07-27 21:46:04 +00002361 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002362}
2363
Chris Lattner35e5c142006-05-05 05:51:50 +00002364/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2365/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002366SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2367 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002368 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002369 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002370
Dan Gohmanff00a552010-01-14 03:08:49 +00002371 // Bail early if none of these transforms apply.
2372 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2373
Chris Lattner540121f2006-05-05 06:31:05 +00002374 // For each of OP in AND/OR/XOR:
2375 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2376 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2377 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002378 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002379 //
2380 // do not sink logical op inside of a vector extend, since it may combine
2381 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002382 EVT Op0VT = N0.getOperand(0).getValueType();
2383 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002384 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002385 // Avoid infinite looping with PromoteIntBinOp.
2386 (N0.getOpcode() == ISD::ANY_EXTEND &&
2387 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002388 (N0.getOpcode() == ISD::TRUNCATE &&
2389 (!TLI.isZExtFree(VT, Op0VT) ||
2390 !TLI.isTruncateFree(Op0VT, VT)) &&
2391 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002392 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002393 Op0VT == N1.getOperand(0).getValueType() &&
2394 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002395 SDValue ORNode = DAG.getNode(N->getOpcode(), SDLoc(N0),
Bill Wendlingb74c8672009-01-30 19:25:47 +00002396 N0.getOperand(0).getValueType(),
2397 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002398 AddToWorkList(ORNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002399 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002400 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002401
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002402 // For each of OP in SHL/SRL/SRA/AND...
2403 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2404 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2405 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002406 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002407 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002408 N0.getOperand(1) == N1.getOperand(1)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002409 SDValue ORNode = DAG.getNode(N->getOpcode(), SDLoc(N0),
Bill Wendlingb74c8672009-01-30 19:25:47 +00002410 N0.getOperand(0).getValueType(),
2411 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002412 AddToWorkList(ORNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002413 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Bill Wendlingb74c8672009-01-30 19:25:47 +00002414 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002415 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002416
Nadav Rotem4ac90812012-04-01 19:31:22 +00002417 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2418 // Only perform this optimization after type legalization and before
2419 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2420 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2421 // we don't want to undo this promotion.
2422 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2423 // on scalars.
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002424 if ((N0.getOpcode() == ISD::BITCAST ||
2425 N0.getOpcode() == ISD::SCALAR_TO_VECTOR) &&
2426 Level == AfterLegalizeTypes) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002427 SDValue In0 = N0.getOperand(0);
2428 SDValue In1 = N1.getOperand(0);
2429 EVT In0Ty = In0.getValueType();
2430 EVT In1Ty = In1.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00002431 SDLoc DL(N);
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002432 // If both incoming values are integers, and the original types are the
2433 // same.
Nadav Rotem4ac90812012-04-01 19:31:22 +00002434 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002435 SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1);
2436 SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002437 AddToWorkList(Op.getNode());
2438 return BC;
2439 }
2440 }
2441
2442 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2443 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2444 // If both shuffles use the same mask, and both shuffle within a single
2445 // vector, then it is worthwhile to move the swizzle after the operation.
2446 // The type-legalizer generates this pattern when loading illegal
2447 // vector types from memory. In many cases this allows additional shuffle
2448 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002449 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2450 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2451 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002452 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2453 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002454
2455 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2456 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002457
2458 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002459
2460 // Check that both shuffles use the same mask. The masks are known to be of
2461 // the same length because the result vector type is the same.
2462 bool SameMask = true;
2463 for (unsigned i = 0; i != NumElts; ++i) {
2464 int Idx0 = SVN0->getMaskElt(i);
2465 int Idx1 = SVN1->getMaskElt(i);
2466 if (Idx0 != Idx1) {
2467 SameMask = false;
2468 break;
2469 }
2470 }
2471
Craig Topperf9204232012-04-09 07:19:09 +00002472 if (SameMask) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002473 SDValue Op = DAG.getNode(N->getOpcode(), SDLoc(N), VT,
Craig Topperf9204232012-04-09 07:19:09 +00002474 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002475 AddToWorkList(Op.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002476 return DAG.getVectorShuffle(VT, SDLoc(N), Op,
Craig Topperf9204232012-04-09 07:19:09 +00002477 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002478 }
2479 }
Craig Topperf9204232012-04-09 07:19:09 +00002480
Dan Gohman475871a2008-07-27 21:46:04 +00002481 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002482}
2483
Dan Gohman475871a2008-07-27 21:46:04 +00002484SDValue DAGCombiner::visitAND(SDNode *N) {
2485 SDValue N0 = N->getOperand(0);
2486 SDValue N1 = N->getOperand(1);
2487 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002488 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2489 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002490 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002491 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002492
Dan Gohman7f321562007-06-25 16:23:39 +00002493 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002494 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002495 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002496 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00002497
2498 // fold (and x, 0) -> 0, vector edition
2499 if (ISD::isBuildVectorAllZeros(N0.getNode()))
2500 return N0;
2501 if (ISD::isBuildVectorAllZeros(N1.getNode()))
2502 return N1;
2503
2504 // fold (and x, -1) -> x, vector edition
2505 if (ISD::isBuildVectorAllOnes(N0.getNode()))
2506 return N1;
2507 if (ISD::isBuildVectorAllOnes(N1.getNode()))
2508 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002509 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002510
Dan Gohman613e0d82007-07-03 14:03:57 +00002511 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002512 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002513 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002514 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002515 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002516 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002517 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002518 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00002519 return DAG.getNode(ISD::AND, SDLoc(N), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002520 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002521 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002522 return N0;
2523 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002524 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002525 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002526 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002527 // reassociate and
Andrew Trickac6d9be2013-05-25 02:42:55 +00002528 SDValue RAND = ReassociateOps(ISD::AND, SDLoc(N), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002529 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002530 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002531 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002532 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002533 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002534 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002535 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002536 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2537 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002538 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002539 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002540 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002541 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002542 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N),
Bill Wendling2627a882009-01-30 20:43:18 +00002543 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002544
Chris Lattner1ec05d12006-03-01 21:47:21 +00002545 // Replace uses of the AND with uses of the Zero extend node.
2546 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002547
Chris Lattner3603cd62006-02-02 07:17:31 +00002548 // We actually want to replace all uses of the any_extend with the
2549 // zero_extend, to avoid duplicating things. This will later cause this
2550 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002551 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002552 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002553 }
2554 }
Stephen Lin155615d2013-07-08 00:37:03 +00002555 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
James Molloy6259dcd2012-02-20 12:02:38 +00002556 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2557 // already be zero by virtue of the width of the base type of the load.
2558 //
2559 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2560 // more cases.
2561 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2562 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2563 N0.getOpcode() == ISD::LOAD) {
2564 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2565 N0 : N0.getOperand(0) );
2566
2567 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2568 // This can be a pure constant or a vector splat, in which case we treat the
2569 // vector as a scalar and use the splat value.
2570 APInt Constant = APInt::getNullValue(1);
2571 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2572 Constant = C->getAPIntValue();
2573 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2574 APInt SplatValue, SplatUndef;
2575 unsigned SplatBitSize;
2576 bool HasAnyUndefs;
2577 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2578 SplatBitSize, HasAnyUndefs);
2579 if (IsSplat) {
2580 // Undef bits can contribute to a possible optimisation if set, so
2581 // set them.
2582 SplatValue |= SplatUndef;
2583
2584 // The splat value may be something like "0x00FFFFFF", which means 0 for
2585 // the first vector value and FF for the rest, repeating. We need a mask
2586 // that will apply equally to all members of the vector, so AND all the
2587 // lanes of the constant together.
2588 EVT VT = Vector->getValueType(0);
2589 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002590
2591 // If the splat value has been compressed to a bitlength lower
2592 // than the size of the vector lane, we need to re-expand it to
2593 // the lane size.
2594 if (BitWidth > SplatBitSize)
2595 for (SplatValue = SplatValue.zextOrTrunc(BitWidth);
2596 SplatBitSize < BitWidth;
2597 SplatBitSize = SplatBitSize * 2)
2598 SplatValue |= SplatValue.shl(SplatBitSize);
2599
James Molloy6259dcd2012-02-20 12:02:38 +00002600 Constant = APInt::getAllOnesValue(BitWidth);
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002601 for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i)
James Molloy6259dcd2012-02-20 12:02:38 +00002602 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2603 }
2604 }
2605
2606 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2607 // actually legal and isn't going to get expanded, else this is a false
2608 // optimisation.
2609 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2610 Load->getMemoryVT());
2611
2612 // Resize the constant to the same size as the original memory access before
2613 // extension. If it is still the AllOnesValue then this AND is completely
2614 // unneeded.
2615 Constant =
2616 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2617
2618 bool B;
2619 switch (Load->getExtensionType()) {
2620 default: B = false; break;
2621 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2622 case ISD::ZEXTLOAD:
2623 case ISD::NON_EXTLOAD: B = true; break;
2624 }
2625
2626 if (B && Constant.isAllOnesValue()) {
2627 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2628 // preserve semantics once we get rid of the AND.
2629 SDValue NewLoad(Load, 0);
2630 if (Load->getExtensionType() == ISD::EXTLOAD) {
2631 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002632 Load->getValueType(0), SDLoc(Load),
James Molloy6259dcd2012-02-20 12:02:38 +00002633 Load->getChain(), Load->getBasePtr(),
2634 Load->getOffset(), Load->getMemoryVT(),
2635 Load->getMemOperand());
2636 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
Hal Finkeld65e4632012-06-20 15:42:48 +00002637 if (Load->getNumValues() == 3) {
2638 // PRE/POST_INC loads have 3 values.
2639 SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1),
2640 NewLoad.getValue(2) };
2641 CombineTo(Load, To, 3, true);
2642 } else {
2643 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2644 }
James Molloy6259dcd2012-02-20 12:02:38 +00002645 }
2646
2647 // Fold the AND away, taking care not to fold to the old load node if we
2648 // replaced it.
2649 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2650
2651 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2652 }
2653 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002654 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2655 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2656 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2657 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002658
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002659 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002660 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002661 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002662 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002663 SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(N0),
Bill Wendling2627a882009-01-30 20:43:18 +00002664 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002665 AddToWorkList(ORNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002666 return DAG.getSetCC(SDLoc(N), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002667 }
Bill Wendling2627a882009-01-30 20:43:18 +00002668 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002669 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002670 SDValue ANDNode = DAG.getNode(ISD::AND, SDLoc(N0),
Bill Wendling2627a882009-01-30 20:43:18 +00002671 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002672 AddToWorkList(ANDNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002673 return DAG.getSetCC(SDLoc(N), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002674 }
Bill Wendling2627a882009-01-30 20:43:18 +00002675 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002676 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002677 SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(N0),
Bill Wendling2627a882009-01-30 20:43:18 +00002678 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002679 AddToWorkList(ORNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002680 return DAG.getSetCC(SDLoc(N), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002681 }
2682 }
Jim Grosbach51a02802013-08-13 21:30:58 +00002683 // Simplify (and (setne X, 0), (setne X, -1)) -> (setuge (add X, 1), 2)
2684 if (LL == RL && isa<ConstantSDNode>(LR) && isa<ConstantSDNode>(RR) &&
2685 Op0 == Op1 && LL.getValueType().isInteger() &&
2686 Op0 == ISD::SETNE && ((cast<ConstantSDNode>(LR)->isNullValue() &&
2687 cast<ConstantSDNode>(RR)->isAllOnesValue()) ||
2688 (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
2689 cast<ConstantSDNode>(RR)->isNullValue()))) {
2690 SDValue ADDNode = DAG.getNode(ISD::ADD, SDLoc(N0), LL.getValueType(),
2691 LL, DAG.getConstant(1, LL.getValueType()));
2692 AddToWorkList(ADDNode.getNode());
2693 return DAG.getSetCC(SDLoc(N), VT, ADDNode,
2694 DAG.getConstant(2, LL.getValueType()), ISD::SETUGE);
2695 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002696 // canonicalize equivalent to ll == rl
2697 if (LL == RR && LR == RL) {
2698 Op1 = ISD::getSetCCSwappedOperands(Op1);
2699 std::swap(RL, RR);
2700 }
2701 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002702 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002703 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002704 if (Result != ISD::SETCC_INVALID &&
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00002705 (!LegalOperations ||
Owen Anderson39125d92013-02-14 09:07:33 +00002706 (TLI.isCondCodeLegal(Result, LL.getSimpleValueType()) &&
2707 TLI.isOperationLegal(ISD::SETCC,
Matt Arsenault225ed702013-05-18 00:21:46 +00002708 getSetCCResultType(N0.getSimpleValueType())))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00002709 return DAG.getSetCC(SDLoc(N), N0.getValueType(),
Bill Wendling2627a882009-01-30 20:43:18 +00002710 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002711 }
2712 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002713
Bill Wendling2627a882009-01-30 20:43:18 +00002714 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002715 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002716 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002717 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002718 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002719
Nate Begemande996292006-02-03 22:24:05 +00002720 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2721 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002722 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002723 SimplifyDemandedBits(SDValue(N, 0)))
2724 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002725
Nate Begemanded49632005-10-13 03:11:28 +00002726 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002727 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002728 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002729 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002730 // If we zero all the possible extended bits, then we can turn this into
2731 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002732 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002733 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002734 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002735 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002736 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002737 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002738 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002739 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002740 LN0->isVolatile(), LN0->isNonTemporal(),
2741 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002742 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002743 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002744 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002745 }
2746 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002747 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002748 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002749 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002750 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002751 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002752 // If we zero all the possible extended bits, then we can turn this into
2753 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002754 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002755 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002756 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002757 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002758 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002759 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002760 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002761 LN0->getBasePtr(), LN0->getPointerInfo(),
2762 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002763 LN0->isVolatile(), LN0->isNonTemporal(),
2764 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002765 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002766 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002767 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002768 }
2769 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002770
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002771 // fold (and (load x), 255) -> (zextload x, i8)
2772 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002773 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2774 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2775 (N0.getOpcode() == ISD::ANY_EXTEND &&
2776 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2777 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2778 LoadSDNode *LN0 = HasAnyExt
2779 ? cast<LoadSDNode>(N0.getOperand(0))
2780 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002781 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Tim Northover5bce67a2013-07-02 09:58:53 +00002782 LN0->isUnindexed() && N0.hasOneUse() && SDValue(LN0, 0).hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002783 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002784 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2785 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2786 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002787
Evan Chengd40d03e2010-01-06 19:38:29 +00002788 if (ExtVT == LoadedVT &&
2789 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002790 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002791
2792 SDValue NewLoad =
Andrew Trickac6d9be2013-05-25 02:42:55 +00002793 DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002794 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002795 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002796 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2797 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002798 AddToWorkList(N);
2799 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2800 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2801 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002802
Chris Lattneref7634c2010-01-07 21:53:27 +00002803 // Do not change the width of a volatile load.
2804 // Do not generate loads of non-round integer types since these can
2805 // be expensive (and would be wrong if the type is not byte sized).
2806 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2807 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2808 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002809
Chris Lattneref7634c2010-01-07 21:53:27 +00002810 unsigned Alignment = LN0->getAlignment();
2811 SDValue NewPtr = LN0->getBasePtr();
2812
2813 // For big endian targets, we need to add an offset to the pointer
2814 // to load the correct bytes. For little endian systems, we merely
2815 // need to read fewer bytes from the same pointer.
2816 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002817 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2818 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2819 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Andrew Trickac6d9be2013-05-25 02:42:55 +00002820 NewPtr = DAG.getNode(ISD::ADD, SDLoc(LN0), PtrType,
Chris Lattneref7634c2010-01-07 21:53:27 +00002821 NewPtr, DAG.getConstant(PtrOff, PtrType));
2822 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002823 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002824
2825 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002826
Chris Lattneref7634c2010-01-07 21:53:27 +00002827 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2828 SDValue Load =
Andrew Trickac6d9be2013-05-25 02:42:55 +00002829 DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002830 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002831 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002832 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2833 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002834 AddToWorkList(N);
2835 CombineTo(LN0, Load, Load.getValue(1));
2836 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002837 }
Evan Cheng466685d2006-10-09 20:57:25 +00002838 }
Chris Lattner15045b62006-02-28 06:35:35 +00002839 }
2840 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002841
Evan Chenga9e13ba2012-07-17 18:54:11 +00002842 if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
2843 VT.getSizeInBits() <= 64) {
2844 if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2845 APInt ADDC = ADDI->getAPIntValue();
2846 if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2847 // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal
2848 // immediate for an add, but it is legal if its top c2 bits are set,
2849 // transform the ADD so the immediate doesn't need to be materialized
2850 // in a register.
2851 if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
2852 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
2853 SRLI->getZExtValue());
2854 if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) {
2855 ADDC |= Mask;
2856 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2857 SDValue NewAdd =
Andrew Trickac6d9be2013-05-25 02:42:55 +00002858 DAG.getNode(ISD::ADD, SDLoc(N0), VT,
Evan Chenga9e13ba2012-07-17 18:54:11 +00002859 N0.getOperand(0), DAG.getConstant(ADDC, VT));
2860 CombineTo(N0.getNode(), NewAdd);
2861 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2862 }
2863 }
2864 }
2865 }
2866 }
2867 }
Evan Chenga9e13ba2012-07-17 18:54:11 +00002868
Tim Northover5d8c2e42013-08-27 13:46:45 +00002869 // fold (and (or (srl N, 8), (shl N, 8)), 0xffff) -> (srl (bswap N), const)
2870 if (N1C && N1C->getAPIntValue() == 0xffff && N0.getOpcode() == ISD::OR) {
2871 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
2872 N0.getOperand(1), false);
2873 if (BSwap.getNode())
2874 return BSwap;
2875 }
2876
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002877 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002878}
2879
Evan Cheng9568e5c2011-06-21 06:01:08 +00002880/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2881///
2882SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2883 bool DemandHighBits) {
2884 if (!LegalOperations)
2885 return SDValue();
2886
2887 EVT VT = N->getValueType(0);
2888 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2889 return SDValue();
2890 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2891 return SDValue();
2892
2893 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2894 bool LookPassAnd0 = false;
2895 bool LookPassAnd1 = false;
2896 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2897 std::swap(N0, N1);
2898 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2899 std::swap(N0, N1);
2900 if (N0.getOpcode() == ISD::AND) {
2901 if (!N0.getNode()->hasOneUse())
2902 return SDValue();
2903 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2904 if (!N01C || N01C->getZExtValue() != 0xFF00)
2905 return SDValue();
2906 N0 = N0.getOperand(0);
2907 LookPassAnd0 = true;
2908 }
2909
2910 if (N1.getOpcode() == ISD::AND) {
2911 if (!N1.getNode()->hasOneUse())
2912 return SDValue();
2913 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2914 if (!N11C || N11C->getZExtValue() != 0xFF)
2915 return SDValue();
2916 N1 = N1.getOperand(0);
2917 LookPassAnd1 = true;
2918 }
2919
2920 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2921 std::swap(N0, N1);
2922 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2923 return SDValue();
2924 if (!N0.getNode()->hasOneUse() ||
2925 !N1.getNode()->hasOneUse())
2926 return SDValue();
2927
2928 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2929 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2930 if (!N01C || !N11C)
2931 return SDValue();
2932 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2933 return SDValue();
2934
2935 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2936 SDValue N00 = N0->getOperand(0);
2937 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2938 if (!N00.getNode()->hasOneUse())
2939 return SDValue();
2940 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2941 if (!N001C || N001C->getZExtValue() != 0xFF)
2942 return SDValue();
2943 N00 = N00.getOperand(0);
2944 LookPassAnd0 = true;
2945 }
2946
2947 SDValue N10 = N1->getOperand(0);
2948 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2949 if (!N10.getNode()->hasOneUse())
2950 return SDValue();
2951 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2952 if (!N101C || N101C->getZExtValue() != 0xFF00)
2953 return SDValue();
2954 N10 = N10.getOperand(0);
2955 LookPassAnd1 = true;
2956 }
2957
2958 if (N00 != N10)
2959 return SDValue();
2960
Tim Northover5d8c2e42013-08-27 13:46:45 +00002961 // Make sure everything beyond the low halfword gets set to zero since the SRL
2962 // 16 will clear the top bits.
Evan Cheng9568e5c2011-06-21 06:01:08 +00002963 unsigned OpSizeInBits = VT.getSizeInBits();
Tim Northover5d8c2e42013-08-27 13:46:45 +00002964 if (DemandHighBits && OpSizeInBits > 16) {
2965 // If the left-shift isn't masked out then the only way this is a bswap is
2966 // if all bits beyond the low 8 are 0. In that case the entire pattern
2967 // reduces to a left shift anyway: leave it for other parts of the combiner.
2968 if (!LookPassAnd0)
2969 return SDValue();
2970
2971 // However, if the right shift isn't masked out then it might be because
2972 // it's not needed. See if we can spot that too.
2973 if (!LookPassAnd1 &&
2974 !DAG.MaskedValueIsZero(
2975 N10, APInt::getHighBitsSet(OpSizeInBits, OpSizeInBits - 16)))
2976 return SDValue();
2977 }
Eric Christopher7332e6e2011-07-14 01:12:15 +00002978
Andrew Trickac6d9be2013-05-25 02:42:55 +00002979 SDValue Res = DAG.getNode(ISD::BSWAP, SDLoc(N), VT, N00);
Evan Cheng9568e5c2011-06-21 06:01:08 +00002980 if (OpSizeInBits > 16)
Andrew Trickac6d9be2013-05-25 02:42:55 +00002981 Res = DAG.getNode(ISD::SRL, SDLoc(N), VT, Res,
Evan Cheng9568e5c2011-06-21 06:01:08 +00002982 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2983 return Res;
2984}
2985
2986/// isBSwapHWordElement - Return true if the specified node is an element
2987/// that makes up a 32-bit packed halfword byteswap. i.e.
2988/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
Craig Toppera0ec3f92013-07-14 04:42:23 +00002989static bool isBSwapHWordElement(SDValue N, SmallVectorImpl<SDNode *> &Parts) {
Evan Cheng9568e5c2011-06-21 06:01:08 +00002990 if (!N.getNode()->hasOneUse())
2991 return false;
2992
2993 unsigned Opc = N.getOpcode();
2994 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2995 return false;
2996
2997 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2998 if (!N1C)
2999 return false;
3000
3001 unsigned Num;
3002 switch (N1C->getZExtValue()) {
3003 default:
3004 return false;
3005 case 0xFF: Num = 0; break;
3006 case 0xFF00: Num = 1; break;
3007 case 0xFF0000: Num = 2; break;
3008 case 0xFF000000: Num = 3; break;
3009 }
3010
3011 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
3012 SDValue N0 = N.getOperand(0);
3013 if (Opc == ISD::AND) {
3014 if (Num == 0 || Num == 2) {
3015 // (x >> 8) & 0xff
3016 // (x >> 8) & 0xff0000
3017 if (N0.getOpcode() != ISD::SRL)
3018 return false;
3019 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3020 if (!C || C->getZExtValue() != 8)
3021 return false;
3022 } else {
3023 // (x << 8) & 0xff00
3024 // (x << 8) & 0xff000000
3025 if (N0.getOpcode() != ISD::SHL)
3026 return false;
3027 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3028 if (!C || C->getZExtValue() != 8)
3029 return false;
3030 }
3031 } else if (Opc == ISD::SHL) {
3032 // (x & 0xff) << 8
3033 // (x & 0xff0000) << 8
3034 if (Num != 0 && Num != 2)
3035 return false;
3036 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
3037 if (!C || C->getZExtValue() != 8)
3038 return false;
3039 } else { // Opc == ISD::SRL
3040 // (x & 0xff00) >> 8
3041 // (x & 0xff000000) >> 8
3042 if (Num != 1 && Num != 3)
3043 return false;
3044 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
3045 if (!C || C->getZExtValue() != 8)
3046 return false;
3047 }
3048
3049 if (Parts[Num])
3050 return false;
3051
3052 Parts[Num] = N0.getOperand(0).getNode();
3053 return true;
3054}
3055
3056/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
3057/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
3058/// => (rotl (bswap x), 16)
3059SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
3060 if (!LegalOperations)
3061 return SDValue();
3062
3063 EVT VT = N->getValueType(0);
3064 if (VT != MVT::i32)
3065 return SDValue();
3066 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
3067 return SDValue();
3068
3069 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
3070 // Look for either
3071 // (or (or (and), (and)), (or (and), (and)))
3072 // (or (or (or (and), (and)), (and)), (and))
3073 if (N0.getOpcode() != ISD::OR)
3074 return SDValue();
3075 SDValue N00 = N0.getOperand(0);
3076 SDValue N01 = N0.getOperand(1);
3077
Evan Cheng9a65a012012-12-13 01:34:32 +00003078 if (N1.getOpcode() == ISD::OR &&
3079 N00.getNumOperands() == 2 && N01.getNumOperands() == 2) {
Evan Cheng9568e5c2011-06-21 06:01:08 +00003080 // (or (or (and), (and)), (or (and), (and)))
3081 SDValue N000 = N00.getOperand(0);
3082 if (!isBSwapHWordElement(N000, Parts))
3083 return SDValue();
3084
3085 SDValue N001 = N00.getOperand(1);
3086 if (!isBSwapHWordElement(N001, Parts))
3087 return SDValue();
3088 SDValue N010 = N01.getOperand(0);
3089 if (!isBSwapHWordElement(N010, Parts))
3090 return SDValue();
3091 SDValue N011 = N01.getOperand(1);
3092 if (!isBSwapHWordElement(N011, Parts))
3093 return SDValue();
3094 } else {
3095 // (or (or (or (and), (and)), (and)), (and))
3096 if (!isBSwapHWordElement(N1, Parts))
3097 return SDValue();
3098 if (!isBSwapHWordElement(N01, Parts))
3099 return SDValue();
3100 if (N00.getOpcode() != ISD::OR)
3101 return SDValue();
3102 SDValue N000 = N00.getOperand(0);
3103 if (!isBSwapHWordElement(N000, Parts))
3104 return SDValue();
3105 SDValue N001 = N00.getOperand(1);
3106 if (!isBSwapHWordElement(N001, Parts))
3107 return SDValue();
3108 }
3109
3110 // Make sure the parts are all coming from the same node.
3111 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
3112 return SDValue();
3113
Andrew Trickac6d9be2013-05-25 02:42:55 +00003114 SDValue BSwap = DAG.getNode(ISD::BSWAP, SDLoc(N), VT,
Evan Cheng9568e5c2011-06-21 06:01:08 +00003115 SDValue(Parts[0],0));
3116
Kay Tiong Khoo670711e2013-09-23 18:43:51 +00003117 // Result of the bswap should be rotated by 16. If it's not legal, then
Evan Cheng9568e5c2011-06-21 06:01:08 +00003118 // do (x << 16) | (x >> 16).
3119 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
3120 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00003121 return DAG.getNode(ISD::ROTL, SDLoc(N), VT, BSwap, ShAmt);
Craig Topper0eb5dad2012-09-29 07:18:53 +00003122 if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00003123 return DAG.getNode(ISD::ROTR, SDLoc(N), VT, BSwap, ShAmt);
3124 return DAG.getNode(ISD::OR, SDLoc(N), VT,
3125 DAG.getNode(ISD::SHL, SDLoc(N), VT, BSwap, ShAmt),
3126 DAG.getNode(ISD::SRL, SDLoc(N), VT, BSwap, ShAmt));
Evan Cheng9568e5c2011-06-21 06:01:08 +00003127}
3128
Dan Gohman475871a2008-07-27 21:46:04 +00003129SDValue DAGCombiner::visitOR(SDNode *N) {
3130 SDValue N0 = N->getOperand(0);
3131 SDValue N1 = N->getOperand(1);
3132 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00003133 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3134 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003135 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003136
Dan Gohman7f321562007-06-25 16:23:39 +00003137 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003138 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003139 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003140 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00003141
3142 // fold (or x, 0) -> x, vector edition
3143 if (ISD::isBuildVectorAllZeros(N0.getNode()))
3144 return N1;
3145 if (ISD::isBuildVectorAllZeros(N1.getNode()))
3146 return N0;
3147
3148 // fold (or x, -1) -> -1, vector edition
3149 if (ISD::isBuildVectorAllOnes(N0.getNode()))
3150 return N0;
3151 if (ISD::isBuildVectorAllOnes(N1.getNode()))
3152 return N1;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003153 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003154
Dan Gohman613e0d82007-07-03 14:03:57 +00003155 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00003156 if (!LegalOperations &&
3157 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00003158 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
3159 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
3160 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003161 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003162 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003163 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003164 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003165 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003166 return DAG.getNode(ISD::OR, SDLoc(N), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003167 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003168 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003169 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003170 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003171 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003172 return N1;
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003173 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003174 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003175 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00003176
3177 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
3178 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
3179 if (BSwap.getNode() != 0)
3180 return BSwap;
3181 BSwap = MatchBSwapHWordLow(N, N0, N1);
3182 if (BSwap.getNode() != 0)
3183 return BSwap;
3184
Nate Begemancd4d58c2006-02-03 06:46:56 +00003185 // reassociate or
Andrew Trickac6d9be2013-05-25 02:42:55 +00003186 SDValue ROR = ReassociateOps(ISD::OR, SDLoc(N), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003187 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003188 return ROR;
3189 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003190 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003191 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003192 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003193 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003194 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003195 return DAG.getNode(ISD::AND, SDLoc(N), VT,
3196 DAG.getNode(ISD::OR, SDLoc(N0), VT,
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003197 N0.getOperand(0), N1),
3198 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003199 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003200 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3201 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3202 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3203 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003204
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003205 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003206 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003207 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3208 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003209 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003210 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003211 SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(LR),
Bill Wendling09025642009-01-30 20:59:34 +00003212 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003213 AddToWorkList(ORNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003214 return DAG.getSetCC(SDLoc(N), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003215 }
Bill Wendling09025642009-01-30 20:59:34 +00003216 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3217 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003218 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003219 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003220 SDValue ANDNode = DAG.getNode(ISD::AND, SDLoc(LR),
Bill Wendling09025642009-01-30 20:59:34 +00003221 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003222 AddToWorkList(ANDNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003223 return DAG.getSetCC(SDLoc(N), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003224 }
3225 }
3226 // canonicalize equivalent to ll == rl
3227 if (LL == RR && LR == RL) {
3228 Op1 = ISD::getSetCCSwappedOperands(Op1);
3229 std::swap(RL, RR);
3230 }
3231 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003232 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003233 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003234 if (Result != ISD::SETCC_INVALID &&
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00003235 (!LegalOperations ||
Owen Anderson39125d92013-02-14 09:07:33 +00003236 (TLI.isCondCodeLegal(Result, LL.getSimpleValueType()) &&
3237 TLI.isOperationLegal(ISD::SETCC,
Matt Arsenault225ed702013-05-18 00:21:46 +00003238 getSetCCResultType(N0.getValueType())))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00003239 return DAG.getSetCC(SDLoc(N), N0.getValueType(),
Bill Wendling09025642009-01-30 20:59:34 +00003240 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003241 }
3242 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003243
Bill Wendling09025642009-01-30 20:59:34 +00003244 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003245 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003246 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003247 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003248 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003249
Bill Wendling09025642009-01-30 20:59:34 +00003250 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003251 if (N0.getOpcode() == ISD::AND &&
3252 N1.getOpcode() == ISD::AND &&
3253 N0.getOperand(1).getOpcode() == ISD::Constant &&
3254 N1.getOperand(1).getOpcode() == ISD::Constant &&
3255 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003256 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003257 // We can only do this xform if we know that bits from X that are set in C2
3258 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003259 const APInt &LHSMask =
3260 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3261 const APInt &RHSMask =
3262 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003263
Dan Gohmanea859be2007-06-22 14:59:07 +00003264 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3265 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003266 SDValue X = DAG.getNode(ISD::OR, SDLoc(N0), VT,
Bill Wendling09025642009-01-30 20:59:34 +00003267 N0.getOperand(0), N1.getOperand(0));
Andrew Trickac6d9be2013-05-25 02:42:55 +00003268 return DAG.getNode(ISD::AND, SDLoc(N), VT, X,
Bill Wendling09025642009-01-30 20:59:34 +00003269 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003270 }
3271 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003272
Chris Lattner516b9622006-09-14 20:50:57 +00003273 // See if this is some rotate idiom.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003274 if (SDNode *Rot = MatchRotate(N0, N1, SDLoc(N)))
Dan Gohman475871a2008-07-27 21:46:04 +00003275 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003276
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003277 // Simplify the operands using demanded-bits information.
3278 if (!VT.isVector() &&
3279 SimplifyDemandedBits(SDValue(N, 0)))
3280 return SDValue(N, 0);
3281
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003282 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003283}
3284
Chris Lattner516b9622006-09-14 20:50:57 +00003285/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003286static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003287 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003288 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003289 Mask = Op.getOperand(1);
3290 Op = Op.getOperand(0);
3291 } else {
3292 return false;
3293 }
3294 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003295
Chris Lattner516b9622006-09-14 20:50:57 +00003296 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3297 Shift = Op;
3298 return true;
3299 }
Bill Wendling09025642009-01-30 20:59:34 +00003300
Scott Michelfdc40a02009-02-17 22:15:04 +00003301 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003302}
3303
Chris Lattner516b9622006-09-14 20:50:57 +00003304// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3305// idioms for rotate, and if the target supports rotation instructions, generate
3306// a rot[lr].
Andrew Trickac6d9be2013-05-25 02:42:55 +00003307SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, SDLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003308 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003309 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003310 if (!TLI.isTypeLegal(VT)) return 0;
3311
3312 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003313 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3314 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003315 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003316
Chris Lattner516b9622006-09-14 20:50:57 +00003317 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003318 SDValue LHSShift; // The shift.
3319 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003320 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3321 return 0; // Not part of a rotate.
3322
Dan Gohman475871a2008-07-27 21:46:04 +00003323 SDValue RHSShift; // The shift.
3324 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003325 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3326 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003327
Chris Lattner516b9622006-09-14 20:50:57 +00003328 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3329 return 0; // Not shifting the same value.
3330
3331 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3332 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003333
Chris Lattner516b9622006-09-14 20:50:57 +00003334 // Canonicalize shl to left side in a shl/srl pair.
3335 if (RHSShift.getOpcode() == ISD::SHL) {
3336 std::swap(LHS, RHS);
3337 std::swap(LHSShift, RHSShift);
3338 std::swap(LHSMask , RHSMask );
3339 }
3340
Duncan Sands83ec4b62008-06-06 12:08:01 +00003341 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003342 SDValue LHSShiftArg = LHSShift.getOperand(0);
3343 SDValue LHSShiftAmt = LHSShift.getOperand(1);
Kai Nackeceb3b462013-09-19 23:00:28 +00003344 SDValue RHSShiftArg = RHSShift.getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00003345 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003346
3347 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3348 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003349 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3350 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003351 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3352 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003353 if ((LShVal + RShVal) != OpSizeInBits)
3354 return 0;
3355
Craig Topper32b73432012-09-29 06:54:22 +00003356 SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3357 LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003358
Chris Lattner516b9622006-09-14 20:50:57 +00003359 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003360 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003361 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003362
Gabor Greifba36cb52008-08-28 21:40:38 +00003363 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003364 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3365 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003366 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003367 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003368 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3369 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003370 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003371
Bill Wendling317bd702009-01-30 21:14:50 +00003372 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003373 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003374
Gabor Greifba36cb52008-08-28 21:40:38 +00003375 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003376 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003377
Chris Lattner516b9622006-09-14 20:50:57 +00003378 // If there is a mask here, and we have a variable shift, we can't be sure
3379 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003380 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003381 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003382
Benjamin Kramercd216b22013-09-24 14:21:28 +00003383 // If the shift amount is sign/zext/any-extended just peel it off.
3384 SDValue LExtOp0 = LHSShiftAmt;
3385 SDValue RExtOp0 = RHSShiftAmt;
Craig Topper0eb5dad2012-09-29 07:18:53 +00003386 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3387 LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3388 LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3389 LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
3390 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3391 RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3392 RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3393 RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Benjamin Kramercd216b22013-09-24 14:21:28 +00003394 LExtOp0 = LHSShiftAmt.getOperand(0);
3395 RExtOp0 = RHSShiftAmt.getOperand(0);
3396 }
3397
3398 if (RExtOp0.getOpcode() == ISD::SUB && RExtOp0.getOperand(1) == LExtOp0) {
3399 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
3400 // (rotl x, y)
3401 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
3402 // (rotr x, (sub 32, y))
3403 if (ConstantSDNode *SUBC =
3404 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
3405 if (SUBC->getAPIntValue() == OpSizeInBits) {
3406 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, LHSShiftArg,
3407 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
3408 } else if (LHSShiftArg.getOpcode() == ISD::ZERO_EXTEND ||
Kai Nackeceb3b462013-09-19 23:00:28 +00003409 LHSShiftArg.getOpcode() == ISD::ANY_EXTEND) {
Benjamin Kramercd216b22013-09-24 14:21:28 +00003410 // fold (or (shl (*ext x), (*ext y)),
3411 // (srl (*ext x), (*ext (sub 32, y)))) ->
3412 // (*ext (rotl x, y))
3413 // fold (or (shl (*ext x), (*ext y)),
3414 // (srl (*ext x), (*ext (sub 32, y)))) ->
3415 // (*ext (rotr x, (sub 32, y)))
3416 SDValue LArgExtOp0 = LHSShiftArg.getOperand(0);
3417 EVT LArgVT = LArgExtOp0.getValueType();
Jin-Gu Kangb70a05a2013-10-03 15:58:48 +00003418 bool HasROTRWithLArg = TLI.isOperationLegalOrCustom(ISD::ROTR, LArgVT);
3419 bool HasROTLWithLArg = TLI.isOperationLegalOrCustom(ISD::ROTL, LArgVT);
3420 if (HasROTRWithLArg || HasROTLWithLArg) {
3421 if (LArgVT.getSizeInBits() == SUBC->getAPIntValue()) {
3422 SDValue V =
3423 DAG.getNode(HasROTLWithLArg ? ISD::ROTL : ISD::ROTR, DL, LArgVT,
3424 LArgExtOp0, HasROTL ? LHSShiftAmt : RHSShiftAmt);
3425 return DAG.getNode(LHSShiftArg.getOpcode(), DL, VT, V).getNode();
3426 }
3427 }
David Blaikiec2286722013-09-20 00:33:11 +00003428 }
Benjamin Kramercd216b22013-09-24 14:21:28 +00003429 }
3430 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3431 RExtOp0 == LExtOp0.getOperand(1)) {
3432 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
3433 // (rotr x, y)
3434 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
3435 // (rotl x, (sub 32, y))
3436 if (ConstantSDNode *SUBC =
3437 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
3438 if (SUBC->getAPIntValue() == OpSizeInBits) {
3439 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg,
3440 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
3441 } else if (RHSShiftArg.getOpcode() == ISD::ZERO_EXTEND ||
Kai Nackeceb3b462013-09-19 23:00:28 +00003442 RHSShiftArg.getOpcode() == ISD::ANY_EXTEND) {
Benjamin Kramercd216b22013-09-24 14:21:28 +00003443 // fold (or (shl (*ext x), (*ext (sub 32, y))),
3444 // (srl (*ext x), (*ext y))) ->
3445 // (*ext (rotl x, y))
3446 // fold (or (shl (*ext x), (*ext (sub 32, y))),
3447 // (srl (*ext x), (*ext y))) ->
3448 // (*ext (rotr x, (sub 32, y)))
3449 SDValue RArgExtOp0 = RHSShiftArg.getOperand(0);
3450 EVT RArgVT = RArgExtOp0.getValueType();
Jin-Gu Kangb70a05a2013-10-03 15:58:48 +00003451 bool HasROTRWithRArg = TLI.isOperationLegalOrCustom(ISD::ROTR, RArgVT);
3452 bool HasROTLWithRArg = TLI.isOperationLegalOrCustom(ISD::ROTL, RArgVT);
3453 if (HasROTRWithRArg || HasROTLWithRArg) {
3454 if (RArgVT.getSizeInBits() == SUBC->getAPIntValue()) {
3455 SDValue V =
3456 DAG.getNode(HasROTRWithRArg ? ISD::ROTR : ISD::ROTL, DL, RArgVT,
3457 RArgExtOp0, HasROTR ? RHSShiftAmt : LHSShiftAmt);
3458 return DAG.getNode(RHSShiftArg.getOpcode(), DL, VT, V).getNode();
3459 }
Kai Nackeceb3b462013-09-19 23:00:28 +00003460 }
David Blaikiec2286722013-09-20 00:33:11 +00003461 }
Chris Lattner516b9622006-09-14 20:50:57 +00003462 }
3463 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003464
Chris Lattner516b9622006-09-14 20:50:57 +00003465 return 0;
3466}
3467
Dan Gohman475871a2008-07-27 21:46:04 +00003468SDValue DAGCombiner::visitXOR(SDNode *N) {
3469 SDValue N0 = N->getOperand(0);
3470 SDValue N1 = N->getOperand(1);
3471 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003472 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3473 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003474 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003475
Dan Gohman7f321562007-06-25 16:23:39 +00003476 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003477 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003478 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003479 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00003480
3481 // fold (xor x, 0) -> x, vector edition
3482 if (ISD::isBuildVectorAllZeros(N0.getNode()))
3483 return N1;
3484 if (ISD::isBuildVectorAllZeros(N1.getNode()))
3485 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003486 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003487
Evan Cheng26471c42008-03-25 20:08:07 +00003488 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3489 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3490 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003491 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003492 if (N0.getOpcode() == ISD::UNDEF)
3493 return N0;
3494 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003495 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003496 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003497 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003498 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003499 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003500 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003501 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003502 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003503 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003504 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003505 // reassociate xor
Andrew Trickac6d9be2013-05-25 02:42:55 +00003506 SDValue RXOR = ReassociateOps(ISD::XOR, SDLoc(N), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003507 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003508 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003509
Nate Begeman1d4d4142005-09-01 00:19:25 +00003510 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003511 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003512 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003513 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3514 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003515
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00003516 if (!LegalOperations ||
3517 TLI.isCondCodeLegal(NotCC, LHS.getSimpleValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003518 switch (N0.getOpcode()) {
3519 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003520 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003521 case ISD::SETCC:
Andrew Trickac6d9be2013-05-25 02:42:55 +00003522 return DAG.getSetCC(SDLoc(N), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003523 case ISD::SELECT_CC:
Andrew Trickac6d9be2013-05-25 02:42:55 +00003524 return DAG.getSelectCC(SDLoc(N), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003525 N0.getOperand(3), NotCC);
3526 }
3527 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003528 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003529
Chris Lattner61c5ff42007-09-10 21:39:07 +00003530 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003531 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003532 N0.getNode()->hasOneUse() &&
3533 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003534 SDValue V = N0.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003535 V = DAG.getNode(ISD::XOR, SDLoc(N0), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003536 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003537 AddToWorkList(V.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003538 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003539 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003540
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003541 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003542 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003543 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003544 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003545 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3546 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Andrew Trickac6d9be2013-05-25 02:42:55 +00003547 LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS
3548 RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003549 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003550 return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003551 }
3552 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003553 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003554 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003555 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003556 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003557 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3558 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Andrew Trickac6d9be2013-05-25 02:42:55 +00003559 LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS
3560 RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003561 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003562 return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003563 }
3564 }
David Majnemer363160a2013-05-08 06:44:42 +00003565 // fold (xor (and x, y), y) -> (and (not x), y)
3566 if (N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
3567 N0->getOperand(1) == N1) {
3568 SDValue X = N0->getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003569 SDValue NotX = DAG.getNOT(SDLoc(X), X, VT);
David Majnemer363160a2013-05-08 06:44:42 +00003570 AddToWorkList(NotX.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003571 return DAG.getNode(ISD::AND, SDLoc(N), VT, NotX, N1);
David Majnemer363160a2013-05-08 06:44:42 +00003572 }
Bill Wendling317bd702009-01-30 21:14:50 +00003573 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003574 if (N1C && N0.getOpcode() == ISD::XOR) {
3575 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3576 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3577 if (N00C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003578 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N0.getOperand(1),
Bill Wendling317bd702009-01-30 21:14:50 +00003579 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003580 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003581 if (N01C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003582 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N0.getOperand(0),
Bill Wendling317bd702009-01-30 21:14:50 +00003583 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003584 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003585 }
3586 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003587 if (N0 == N1)
Hal Finkelbd6f1f62013-07-09 17:02:45 +00003588 return tryFoldToZero(SDLoc(N), TLI, VT, DAG, LegalOperations, LegalTypes);
Scott Michelfdc40a02009-02-17 22:15:04 +00003589
Chris Lattner35e5c142006-05-05 05:51:50 +00003590 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3591 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003592 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003593 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003594 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003595
Chris Lattner3e104b12006-04-08 04:15:24 +00003596 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003597 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003598 SimplifyDemandedBits(SDValue(N, 0)))
3599 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003600
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003601 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003602}
3603
Chris Lattnere70da202007-12-06 07:33:36 +00003604/// visitShiftByConstant - Handle transforms common to the three shifts, when
3605/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003606SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003607 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003608 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003609
Chris Lattnere70da202007-12-06 07:33:36 +00003610 // We want to pull some binops through shifts, so that we have (and (shift))
3611 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3612 // thing happens with address calculations, so it's important to canonicalize
3613 // it.
3614 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003615
Chris Lattnere70da202007-12-06 07:33:36 +00003616 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003617 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003618 case ISD::OR:
3619 case ISD::XOR:
3620 HighBitSet = false; // We can only transform sra if the high bit is clear.
3621 break;
3622 case ISD::AND:
3623 HighBitSet = true; // We can only transform sra if the high bit is set.
3624 break;
3625 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003626 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003627 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003628 HighBitSet = false; // We can only transform sra if the high bit is clear.
3629 break;
3630 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003631
Chris Lattnere70da202007-12-06 07:33:36 +00003632 // We require the RHS of the binop to be a constant as well.
3633 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003634 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003635
3636 // FIXME: disable this unless the input to the binop is a shift by a constant.
3637 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003638 //
Bill Wendling88103372009-01-30 21:37:17 +00003639 // void foo(int *X, int i) { X[i & 1235] = 1; }
3640 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003641 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003642 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003643 BinOpLHSVal->getOpcode() != ISD::SRA &&
3644 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3645 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003646 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003647
Owen Andersone50ed302009-08-10 22:56:29 +00003648 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003649
Bill Wendling88103372009-01-30 21:37:17 +00003650 // If this is a signed shift right, and the high bit is modified by the
3651 // logical operation, do not perform the transformation. The highBitSet
3652 // boolean indicates the value of the high bit of the constant which would
3653 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003654 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003655 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3656 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003657 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003658 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003659
Chris Lattnere70da202007-12-06 07:33:36 +00003660 // Fold the constants, shifting the binop RHS by the shift amount.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003661 SDValue NewRHS = DAG.getNode(N->getOpcode(), SDLoc(LHS->getOperand(1)),
Bill Wendling88103372009-01-30 21:37:17 +00003662 N->getValueType(0),
3663 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003664
3665 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003666 SDValue NewShift = DAG.getNode(N->getOpcode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00003667 SDLoc(LHS->getOperand(0)),
Bill Wendling88103372009-01-30 21:37:17 +00003668 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003669
3670 // Create the new binop.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003671 return DAG.getNode(LHS->getOpcode(), SDLoc(N), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003672}
3673
Dan Gohman475871a2008-07-27 21:46:04 +00003674SDValue DAGCombiner::visitSHL(SDNode *N) {
3675 SDValue N0 = N->getOperand(0);
3676 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003677 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3678 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003679 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003680 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003681
Nate Begeman1d4d4142005-09-01 00:19:25 +00003682 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003683 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003684 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003685 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003686 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003687 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003688 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003689 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003690 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003691 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003692 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003693 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003694 // fold (shl undef, x) -> 0
3695 if (N0.getOpcode() == ISD::UNDEF)
3696 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003697 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003698 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003699 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003700 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003701 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003702 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003703 N1.getOperand(0).getOpcode() == ISD::AND &&
3704 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003705 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003706 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003707 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003708 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003709 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003710 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003711 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
3712 DAG.getNode(ISD::AND, SDLoc(N), TruncVT,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003713 DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003714 SDLoc(N),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003715 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003716 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003717 }
3718 }
3719
Dan Gohman475871a2008-07-27 21:46:04 +00003720 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3721 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003722
3723 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003724 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003725 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003726 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3727 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003728 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003729 return DAG.getConstant(0, VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003730 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003731 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003732 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003733
3734 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3735 // For this to be valid, the second form must not preserve any of the bits
3736 // that are shifted out by the inner shift in the first form. This means
3737 // the outer shift size must be >= the number of bits added by the ext.
3738 // As a corollary, we don't care what kind of ext it is.
3739 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3740 N0.getOpcode() == ISD::ANY_EXTEND ||
3741 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3742 N0.getOperand(0).getOpcode() == ISD::SHL &&
3743 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003744 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003745 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3746 uint64_t c2 = N1C->getZExtValue();
3747 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3748 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3749 if (c2 >= OpSizeInBits - InnerShiftSize) {
3750 if (c1 + c2 >= OpSizeInBits)
3751 return DAG.getConstant(0, VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003752 return DAG.getNode(ISD::SHL, SDLoc(N0), VT,
3753 DAG.getNode(N0.getOpcode(), SDLoc(N0), VT,
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003754 N0.getOperand(0)->getOperand(0)),
3755 DAG.getConstant(c1 + c2, N1.getValueType()));
3756 }
3757 }
3758
Andrea Di Biagioa9f113d2013-09-27 11:37:05 +00003759 // fold (shl (zext (srl x, C)), C) -> (zext (shl (srl x, C), C))
3760 // Only fold this if the inner zext has no other uses to avoid increasing
3761 // the total number of instructions.
3762 if (N1C && N0.getOpcode() == ISD::ZERO_EXTEND && N0.hasOneUse() &&
3763 N0.getOperand(0).getOpcode() == ISD::SRL &&
3764 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
3765 uint64_t c1 =
3766 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3767 if (c1 < VT.getSizeInBits()) {
3768 uint64_t c2 = N1C->getZExtValue();
3769 if (c1 == c2) {
3770 SDValue NewOp0 = N0.getOperand(0);
3771 EVT CountVT = NewOp0.getOperand(1).getValueType();
3772 SDValue NewSHL = DAG.getNode(ISD::SHL, SDLoc(N), NewOp0.getValueType(),
3773 NewOp0, DAG.getConstant(c2, CountVT));
3774 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N0), VT, NewSHL);
3775 }
3776 }
3777 }
3778
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003779 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3780 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003781 // Only fold this if the inner shift has no other uses -- if it does, folding
3782 // this will increase the total number of instructions.
3783 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003784 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003785 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003786 if (c1 < VT.getSizeInBits()) {
3787 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003788 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3789 VT.getSizeInBits() - c1);
3790 SDValue Shift;
3791 if (c2 > c1) {
3792 Mask = Mask.shl(c2-c1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003793 Shift = DAG.getNode(ISD::SHL, SDLoc(N), VT, N0.getOperand(0),
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003794 DAG.getConstant(c2-c1, N1.getValueType()));
3795 } else {
3796 Mask = Mask.lshr(c1-c2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003797 Shift = DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0),
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003798 DAG.getConstant(c1-c2, N1.getValueType()));
3799 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00003800 return DAG.getNode(ISD::AND, SDLoc(N0), VT, Shift,
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003801 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003802 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003803 }
Bill Wendling88103372009-01-30 21:37:17 +00003804 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003805 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3806 SDValue HiBitsMask =
3807 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3808 VT.getSizeInBits() -
3809 N1C->getZExtValue()),
3810 VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003811 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003812 HiBitsMask);
3813 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003814
Evan Chenge5b51ac2010-04-17 06:13:15 +00003815 if (N1C) {
3816 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3817 if (NewSHL.getNode())
3818 return NewSHL;
3819 }
3820
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003821 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003822}
3823
Dan Gohman475871a2008-07-27 21:46:04 +00003824SDValue DAGCombiner::visitSRA(SDNode *N) {
3825 SDValue N0 = N->getOperand(0);
3826 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003827 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3828 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003829 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003830 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003831
Bill Wendling88103372009-01-30 21:37:17 +00003832 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003833 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003834 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003835 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003836 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003837 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003838 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003839 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003840 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003841 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003842 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003843 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003844 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003845 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003846 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003847 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3848 // sext_inreg.
3849 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003850 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003851 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3852 if (VT.isVector())
3853 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3854 ExtVT, VT.getVectorNumElements());
3855 if ((!LegalOperations ||
3856 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00003857 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003858 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003859 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003860
Bill Wendling88103372009-01-30 21:37:17 +00003861 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003862 if (N1C && N0.getOpcode() == ISD::SRA) {
3863 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003864 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003865 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Andrew Trickac6d9be2013-05-25 02:42:55 +00003866 return DAG.getNode(ISD::SRA, SDLoc(N), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003867 DAG.getConstant(Sum, N1C->getValueType(0)));
3868 }
3869 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003870
Bill Wendling88103372009-01-30 21:37:17 +00003871 // fold (sra (shl X, m), (sub result_size, n))
3872 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003873 // result_size - n != m.
3874 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003875 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003876 if (N0.getOpcode() == ISD::SHL) {
3877 // Get the two constanst of the shifts, CN0 = m, CN = n.
3878 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3879 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003880 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003881 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003882 EVT::getIntegerVT(*DAG.getContext(),
3883 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003884 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003885 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003886
Scott Michelfdc40a02009-02-17 22:15:04 +00003887 // If the shift is not a no-op (in which case this should be just a sign
3888 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003889 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003890 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003891 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003892 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3893 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003894 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003895
Owen Anderson95771af2011-02-25 21:41:48 +00003896 SDValue Amt = DAG.getConstant(ShiftAmt,
3897 getShiftAmountTy(N0.getOperand(0).getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00003898 SDValue Shift = DAG.getNode(ISD::SRL, SDLoc(N0), VT,
Bill Wendling88103372009-01-30 21:37:17 +00003899 N0.getOperand(0), Amt);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003900 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), TruncVT,
Bill Wendling88103372009-01-30 21:37:17 +00003901 Shift);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003902 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N),
Bill Wendling88103372009-01-30 21:37:17 +00003903 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003904 }
3905 }
3906 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003907
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003908 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003909 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003910 N1.getOperand(0).getOpcode() == ISD::AND &&
3911 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003912 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003913 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003914 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003915 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003916 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003917 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003918 return DAG.getNode(ISD::SRA, SDLoc(N), VT, N0,
3919 DAG.getNode(ISD::AND, SDLoc(N),
Bill Wendling88103372009-01-30 21:37:17 +00003920 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003921 DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003922 SDLoc(N),
Bill Wendling9729c5a2009-01-31 03:12:48 +00003923 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003924 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003925 }
3926 }
3927
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003928 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3929 // if c1 is equal to the number of bits the trunc removes
3930 if (N0.getOpcode() == ISD::TRUNCATE &&
3931 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3932 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3933 N0.getOperand(0).hasOneUse() &&
3934 N0.getOperand(0).getOperand(1).hasOneUse() &&
3935 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3936 EVT LargeVT = N0.getOperand(0).getValueType();
3937 ConstantSDNode *LargeShiftAmt =
3938 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3939
3940 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3941 LargeShiftAmt->getZExtValue()) {
3942 SDValue Amt =
3943 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003944 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00003945 SDValue SRA = DAG.getNode(ISD::SRA, SDLoc(N), LargeVT,
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003946 N0.getOperand(0).getOperand(0), Amt);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003947 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, SRA);
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003948 }
3949 }
3950
Scott Michelfdc40a02009-02-17 22:15:04 +00003951 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003952 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3953 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003954
3955
Nate Begeman1d4d4142005-09-01 00:19:25 +00003956 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003957 if (DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00003958 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003959
Evan Chenge5b51ac2010-04-17 06:13:15 +00003960 if (N1C) {
3961 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3962 if (NewSRA.getNode())
3963 return NewSRA;
3964 }
3965
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003966 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003967}
3968
Dan Gohman475871a2008-07-27 21:46:04 +00003969SDValue DAGCombiner::visitSRL(SDNode *N) {
3970 SDValue N0 = N->getOperand(0);
3971 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003972 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3973 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003974 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003975 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003976
Nate Begeman1d4d4142005-09-01 00:19:25 +00003977 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003978 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003979 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003980 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003981 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003982 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003983 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003984 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003985 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003986 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003987 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003988 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003989 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003990 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003991 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003992 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003993
Bill Wendling88103372009-01-30 21:37:17 +00003994 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003995 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003996 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003997 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3998 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003999 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00004000 return DAG.getConstant(0, VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004001 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00004002 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00004003 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004004
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00004005 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00004006 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
4007 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00004008 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00004009 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00004010 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
4011 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00004012 EVT InnerShiftVT = N0.getOperand(0).getValueType();
4013 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00004014 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00004015 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00004016 if (c1 + OpSizeInBits == InnerShiftSize) {
4017 if (c1 + c2 >= InnerShiftSize)
4018 return DAG.getConstant(0, VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004019 return DAG.getNode(ISD::TRUNCATE, SDLoc(N0), VT,
4020 DAG.getNode(ISD::SRL, SDLoc(N0), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00004021 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00004022 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00004023 }
4024 }
4025
Chris Lattnerefcddc32010-04-15 05:28:43 +00004026 // fold (srl (shl x, c), c) -> (and x, cst2)
4027 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
4028 N0.getValueSizeInBits() <= 64) {
4029 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004030 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0.getOperand(0),
Chris Lattnerefcddc32010-04-15 05:28:43 +00004031 DAG.getConstant(~0ULL >> ShAmt, VT));
4032 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004033
Michael Liao2da86392013-06-21 18:45:27 +00004034 // fold (srl (anyextend x), c) -> (and (anyextend (srl x, c)), mask)
Chris Lattner06afe072006-05-05 22:53:17 +00004035 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
4036 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00004037 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004038 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00004039 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00004040
Evan Chenge5b51ac2010-04-17 06:13:15 +00004041 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00004042 uint64_t ShiftAmt = N1C->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004043 SDValue SmallShift = DAG.getNode(ISD::SRL, SDLoc(N0), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00004044 N0.getOperand(0),
4045 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00004046 AddToWorkList(SmallShift.getNode());
Michael Liao2da86392013-06-21 18:45:27 +00004047 APInt Mask = APInt::getAllOnesValue(VT.getSizeInBits()).lshr(ShiftAmt);
4048 return DAG.getNode(ISD::AND, SDLoc(N), VT,
4049 DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, SmallShift),
4050 DAG.getConstant(Mask, VT));
Evan Chenge5b51ac2010-04-17 06:13:15 +00004051 }
Chris Lattner06afe072006-05-05 22:53:17 +00004052 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004053
Chris Lattner3657ffe2006-10-12 20:23:19 +00004054 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
4055 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00004056 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00004057 if (N0.getOpcode() == ISD::SRA)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004058 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00004059 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004060
Sylvestre Ledru94c22712012-09-27 10:14:43 +00004061 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00004062 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00004063 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00004064 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004065 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00004066
Chris Lattner350bec02006-04-02 06:11:11 +00004067 // If any of the input bits are KnownOne, then the input couldn't be all
4068 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00004069 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004070
Chris Lattner350bec02006-04-02 06:11:11 +00004071 // If all of the bits input the to ctlz node are known to be zero, then
4072 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004073 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00004074 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004075
Chris Lattner350bec02006-04-02 06:11:11 +00004076 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00004077 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00004078 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00004079 // could be set on input to the CTLZ node. If this bit is set, the SRL
4080 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
4081 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00004082 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00004083 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00004084
Chris Lattner350bec02006-04-02 06:11:11 +00004085 if (ShAmt) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004086 Op = DAG.getNode(ISD::SRL, SDLoc(N0), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00004087 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00004088 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00004089 }
Bill Wendling88103372009-01-30 21:37:17 +00004090
Andrew Trickac6d9be2013-05-25 02:42:55 +00004091 return DAG.getNode(ISD::XOR, SDLoc(N), VT,
Bill Wendling88103372009-01-30 21:37:17 +00004092 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00004093 }
4094 }
Evan Chengeb9f8922008-08-30 02:03:58 +00004095
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00004096 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00004097 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00004098 N1.getOperand(0).getOpcode() == ISD::AND &&
4099 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00004100 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00004101 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00004102 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00004103 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00004104 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004105 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004106 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0,
4107 DAG.getNode(ISD::AND, SDLoc(N),
Bill Wendling88103372009-01-30 21:37:17 +00004108 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00004109 DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004110 SDLoc(N),
Bill Wendling9729c5a2009-01-31 03:12:48 +00004111 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00004112 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00004113 }
4114 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004115
Chris Lattner61a4c072007-04-18 03:06:49 +00004116 // fold operands of srl based on knowledge that the low bits are not
4117 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00004118 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
4119 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004120
Evan Cheng9ab2b982009-12-18 21:31:31 +00004121 if (N1C) {
4122 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
4123 if (NewSRL.getNode())
4124 return NewSRL;
4125 }
4126
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004127 // Attempt to convert a srl of a load into a narrower zero-extending load.
4128 SDValue NarrowLoad = ReduceLoadWidth(N);
4129 if (NarrowLoad.getNode())
4130 return NarrowLoad;
4131
Evan Cheng9ab2b982009-12-18 21:31:31 +00004132 // Here is a common situation. We want to optimize:
4133 //
4134 // %a = ...
4135 // %b = and i32 %a, 2
4136 // %c = srl i32 %b, 1
4137 // brcond i32 %c ...
4138 //
4139 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004140 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00004141 // %a = ...
4142 // %b = and %a, 2
4143 // %c = setcc eq %b, 0
4144 // brcond %c ...
4145 //
4146 // However when after the source operand of SRL is optimized into AND, the SRL
4147 // itself may not be optimized further. Look for it and add the BRCOND into
4148 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00004149 if (N->hasOneUse()) {
4150 SDNode *Use = *N->use_begin();
4151 if (Use->getOpcode() == ISD::BRCOND)
4152 AddToWorkList(Use);
4153 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
4154 // Also look pass the truncate.
4155 Use = *Use->use_begin();
4156 if (Use->getOpcode() == ISD::BRCOND)
4157 AddToWorkList(Use);
4158 }
4159 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00004160
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004161 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00004162}
4163
Dan Gohman475871a2008-07-27 21:46:04 +00004164SDValue DAGCombiner::visitCTLZ(SDNode *N) {
4165 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004166 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004167
4168 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004169 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004170 return DAG.getNode(ISD::CTLZ, SDLoc(N), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004171 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004172}
4173
Chandler Carruth63974b22011-12-13 01:56:10 +00004174SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
4175 SDValue N0 = N->getOperand(0);
4176 EVT VT = N->getValueType(0);
4177
4178 // fold (ctlz_zero_undef c1) -> c2
4179 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004180 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, SDLoc(N), VT, N0);
Chandler Carruth63974b22011-12-13 01:56:10 +00004181 return SDValue();
4182}
4183
Dan Gohman475871a2008-07-27 21:46:04 +00004184SDValue DAGCombiner::visitCTTZ(SDNode *N) {
4185 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004186 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004187
Nate Begeman1d4d4142005-09-01 00:19:25 +00004188 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004189 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004190 return DAG.getNode(ISD::CTTZ, SDLoc(N), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004191 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004192}
4193
Chandler Carruth63974b22011-12-13 01:56:10 +00004194SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
4195 SDValue N0 = N->getOperand(0);
4196 EVT VT = N->getValueType(0);
4197
4198 // fold (cttz_zero_undef c1) -> c2
4199 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004200 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, SDLoc(N), VT, N0);
Chandler Carruth63974b22011-12-13 01:56:10 +00004201 return SDValue();
4202}
4203
Dan Gohman475871a2008-07-27 21:46:04 +00004204SDValue DAGCombiner::visitCTPOP(SDNode *N) {
4205 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004206 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004207
Nate Begeman1d4d4142005-09-01 00:19:25 +00004208 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004209 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004210 return DAG.getNode(ISD::CTPOP, SDLoc(N), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004211 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004212}
4213
Dan Gohman475871a2008-07-27 21:46:04 +00004214SDValue DAGCombiner::visitSELECT(SDNode *N) {
4215 SDValue N0 = N->getOperand(0);
4216 SDValue N1 = N->getOperand(1);
4217 SDValue N2 = N->getOperand(2);
Nate Begeman452d7be2005-09-16 00:54:12 +00004218 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4219 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4220 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00004221 EVT VT = N->getValueType(0);
4222 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00004223
Bill Wendling34584e62009-01-30 22:02:18 +00004224 // fold (select C, X, X) -> X
Nate Begeman452d7be2005-09-16 00:54:12 +00004225 if (N1 == N2)
4226 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004227 // fold (select true, X, Y) -> X
Nate Begeman452d7be2005-09-16 00:54:12 +00004228 if (N0C && !N0C->isNullValue())
4229 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004230 // fold (select false, X, Y) -> Y
Nate Begeman452d7be2005-09-16 00:54:12 +00004231 if (N0C && N0C->isNullValue())
4232 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004233 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004234 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004235 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N2);
Bill Wendling34584e62009-01-30 22:02:18 +00004236 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004237 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004238 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004239 (VT0.isInteger() &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00004240 TLI.getBooleanContents(false) ==
4241 TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004242 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004243 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004244 if (VT == VT0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004245 return DAG.getNode(ISD::XOR, SDLoc(N), VT0,
Bill Wendling34584e62009-01-30 22:02:18 +00004246 N0, DAG.getConstant(1, VT0));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004247 XORNode = DAG.getNode(ISD::XOR, SDLoc(N0), VT0,
Bill Wendling34584e62009-01-30 22:02:18 +00004248 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004249 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004250 if (VT.bitsGT(VT0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004251 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, XORNode);
4252 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004253 }
Bill Wendling34584e62009-01-30 22:02:18 +00004254 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004255 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004256 SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004257 AddToWorkList(NOTNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004258 return DAG.getNode(ISD::AND, SDLoc(N), VT, NOTNode, N2);
Nate Begeman452d7be2005-09-16 00:54:12 +00004259 }
Bill Wendling34584e62009-01-30 22:02:18 +00004260 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004261 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004262 SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004263 AddToWorkList(NOTNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004264 return DAG.getNode(ISD::OR, SDLoc(N), VT, NOTNode, N1);
Nate Begeman452d7be2005-09-16 00:54:12 +00004265 }
Bill Wendling34584e62009-01-30 22:02:18 +00004266 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004267 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00004268 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, N1);
Bill Wendling34584e62009-01-30 22:02:18 +00004269 // fold (select X, X, Y) -> (or X, Y)
4270 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004271 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004272 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N2);
Bill Wendling34584e62009-01-30 22:02:18 +00004273 // fold (select X, Y, X) -> (and X, Y)
4274 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004275 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004276 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004277
Chris Lattner40c62d52005-10-18 06:04:22 +00004278 // If we can fold this based on the true/false value, do so.
4279 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004280 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004281
Nate Begeman44728a72005-09-19 22:34:01 +00004282 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004283 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004284 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004285 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004286 // having to say they don't support SELECT_CC on every type the DAG knows
4287 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004288 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004289 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004290 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT,
Bill Wendling34584e62009-01-30 22:02:18 +00004291 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004292 N1, N2, N0.getOperand(2));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004293 return SimplifySelect(SDLoc(N), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004294 }
Bill Wendling34584e62009-01-30 22:02:18 +00004295
Dan Gohman475871a2008-07-27 21:46:04 +00004296 return SDValue();
Nate Begeman452d7be2005-09-16 00:54:12 +00004297}
4298
Benjamin Kramer6242fda2013-04-26 09:19:19 +00004299SDValue DAGCombiner::visitVSELECT(SDNode *N) {
4300 SDValue N0 = N->getOperand(0);
4301 SDValue N1 = N->getOperand(1);
4302 SDValue N2 = N->getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004303 SDLoc DL(N);
Benjamin Kramer6242fda2013-04-26 09:19:19 +00004304
4305 // Canonicalize integer abs.
4306 // vselect (setg[te] X, 0), X, -X ->
4307 // vselect (setgt X, -1), X, -X ->
4308 // vselect (setl[te] X, 0), -X, X ->
4309 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
4310 if (N0.getOpcode() == ISD::SETCC) {
4311 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
4312 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get();
4313 bool isAbs = false;
4314 bool RHSIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
4315
4316 if (((RHSIsAllZeros && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
4317 (ISD::isBuildVectorAllOnes(RHS.getNode()) && CC == ISD::SETGT)) &&
4318 N1 == LHS && N2.getOpcode() == ISD::SUB && N1 == N2.getOperand(1))
4319 isAbs = ISD::isBuildVectorAllZeros(N2.getOperand(0).getNode());
4320 else if ((RHSIsAllZeros && (CC == ISD::SETLT || CC == ISD::SETLE)) &&
4321 N2 == LHS && N1.getOpcode() == ISD::SUB && N2 == N1.getOperand(1))
4322 isAbs = ISD::isBuildVectorAllZeros(N1.getOperand(0).getNode());
4323
4324 if (isAbs) {
4325 EVT VT = LHS.getValueType();
4326 SDValue Shift = DAG.getNode(
4327 ISD::SRA, DL, VT, LHS,
4328 DAG.getConstant(VT.getScalarType().getSizeInBits() - 1, VT));
4329 SDValue Add = DAG.getNode(ISD::ADD, DL, VT, LHS, Shift);
4330 AddToWorkList(Shift.getNode());
4331 AddToWorkList(Add.getNode());
4332 return DAG.getNode(ISD::XOR, DL, VT, Add, Shift);
4333 }
4334 }
4335
4336 return SDValue();
4337}
4338
Dan Gohman475871a2008-07-27 21:46:04 +00004339SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4340 SDValue N0 = N->getOperand(0);
4341 SDValue N1 = N->getOperand(1);
4342 SDValue N2 = N->getOperand(2);
4343 SDValue N3 = N->getOperand(3);
4344 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004345 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004346
Nate Begeman44728a72005-09-19 22:34:01 +00004347 // fold select_cc lhs, rhs, x, x, cc -> x
4348 if (N2 == N3)
4349 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004350
Chris Lattner5f42a242006-09-20 06:19:26 +00004351 // Determine if the condition we're dealing with is constant
Matt Arsenault225ed702013-05-18 00:21:46 +00004352 SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004353 N0, N1, CC, SDLoc(N), false);
Stephen Lin7e6d6202013-06-15 04:03:33 +00004354 if (SCC.getNode()) {
4355 AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004356
Stephen Lin7e6d6202013-06-15 04:03:33 +00004357 if (ConstantSDNode *SCCC = dyn_cast<ConstantSDNode>(SCC.getNode())) {
4358 if (!SCCC->isNullValue())
4359 return N2; // cond always true -> true val
4360 else
4361 return N3; // cond always false -> false val
4362 }
4363
4364 // Fold to a simpler select_cc
4365 if (SCC.getOpcode() == ISD::SETCC)
4366 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), N2.getValueType(),
4367 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
4368 SCC.getOperand(2));
Chris Lattner5f42a242006-09-20 06:19:26 +00004369 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004370
Chris Lattner40c62d52005-10-18 06:04:22 +00004371 // If we can fold this based on the true/false value, do so.
4372 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004373 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004374
Nate Begeman44728a72005-09-19 22:34:01 +00004375 // fold select_cc into other things, such as min/max/abs
Andrew Trickac6d9be2013-05-25 02:42:55 +00004376 return SimplifySelectCC(SDLoc(N), N0, N1, N2, N3, CC);
Nate Begeman452d7be2005-09-16 00:54:12 +00004377}
4378
Dan Gohman475871a2008-07-27 21:46:04 +00004379SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7be2005-09-16 00:54:12 +00004380 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004381 cast<CondCodeSDNode>(N->getOperand(2))->get(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004382 SDLoc(N));
Nate Begeman452d7be2005-09-16 00:54:12 +00004383}
4384
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004385// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004386// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004387// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004388// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004389static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004390 unsigned ExtOpc,
Craig Toppera0ec3f92013-07-14 04:42:23 +00004391 SmallVectorImpl<SDNode *> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004392 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004393 bool HasCopyToRegUses = false;
4394 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004395 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4396 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004397 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004398 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004399 if (User == N)
4400 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004401 if (UI.getUse().getResNo() != N0.getResNo())
4402 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004403 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004404 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004405 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4406 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4407 // Sign bits will be lost after a zext.
4408 return false;
4409 bool Add = false;
4410 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004411 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004412 if (UseOp == N0)
4413 continue;
4414 if (!isa<ConstantSDNode>(UseOp))
4415 return false;
4416 Add = true;
4417 }
4418 if (Add)
4419 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004420 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004421 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004422 // If truncates aren't free and there are users we can't
4423 // extend, it isn't worthwhile.
4424 if (!isTruncFree)
4425 return false;
4426 // Remember if this value is live-out.
4427 if (User->getOpcode() == ISD::CopyToReg)
4428 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004429 }
4430
4431 if (HasCopyToRegUses) {
4432 bool BothLiveOut = false;
4433 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4434 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004435 SDUse &Use = UI.getUse();
4436 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4437 BothLiveOut = true;
4438 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004439 }
4440 }
4441 if (BothLiveOut)
4442 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004443 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004444 return ExtendNodes.size();
4445 }
4446 return true;
4447}
4448
Craig Topper6c64fba2013-07-13 07:43:40 +00004449void DAGCombiner::ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004450 SDValue Trunc, SDValue ExtLoad, SDLoc DL,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004451 ISD::NodeType ExtType) {
4452 // Extend SetCC uses if necessary.
4453 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4454 SDNode *SetCC = SetCCs[i];
4455 SmallVector<SDValue, 4> Ops;
4456
4457 for (unsigned j = 0; j != 2; ++j) {
4458 SDValue SOp = SetCC->getOperand(j);
4459 if (SOp == Trunc)
4460 Ops.push_back(ExtLoad);
4461 else
4462 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4463 }
4464
4465 Ops.push_back(SetCC->getOperand(2));
4466 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4467 &Ops[0], Ops.size()));
4468 }
4469}
4470
Dan Gohman475871a2008-07-27 21:46:04 +00004471SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4472 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004473 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004474
Nate Begeman1d4d4142005-09-01 00:19:25 +00004475 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004476 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004477 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004478
Nadav Rotem0c8607b2013-01-20 08:35:56 +00004479 // fold (sext (sext x)) -> (sext x)
4480 // fold (sext (aext x)) -> (sext x)
4481 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004482 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT,
Nadav Rotem0c8607b2013-01-20 08:35:56 +00004483 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004484
Chris Lattner22558872007-02-26 03:13:59 +00004485 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004486 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4487 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004488 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4489 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004490 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4491 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004492 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004493 // CombineTo deleted the truncate, if needed, but not what's under it.
4494 AddToWorkList(oye);
4495 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004496 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004497 }
Evan Chengc88138f2007-03-22 01:54:19 +00004498
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004499 // See if the value being truncated is already sign extended. If so, just
4500 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004501 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004502 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4503 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4504 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004505 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004506
Chris Lattner22558872007-02-26 03:13:59 +00004507 if (OpBits == DestBits) {
4508 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4509 // bits, it is already ready.
4510 if (NumSignBits > DestBits-MidBits)
4511 return Op;
4512 } else if (OpBits < DestBits) {
4513 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4514 // bits, just sext from i32.
4515 if (NumSignBits > OpBits-MidBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004516 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004517 } else {
4518 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4519 // bits, just truncate to i32.
4520 if (NumSignBits > OpBits-MidBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004521 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004522 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004523
Chris Lattner22558872007-02-26 03:13:59 +00004524 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004525 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4526 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004527 if (OpBits < DestBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004528 Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N0), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004529 else if (OpBits > DestBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004530 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), VT, Op);
4531 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004532 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004533 }
Chris Lattner6007b842006-09-21 06:00:20 +00004534 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004535
Evan Cheng110dec22005-12-14 02:19:23 +00004536 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004537 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004538 // on vectors in one instruction. We only perform this transformation on
4539 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004540 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004541 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004542 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004543 bool DoXform = true;
4544 SmallVector<SDNode*, 4> SetCCs;
4545 if (!N0.hasOneUse())
4546 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4547 if (DoXform) {
4548 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004549 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004550 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004551 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004552 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004553 LN0->isVolatile(), LN0->isNonTemporal(),
4554 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004555 CombineTo(N, ExtLoad);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004556 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004557 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004558 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004559 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004560 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004561 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004562 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004563 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004564
4565 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4566 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004567 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4568 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004569 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004570 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004571 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004572 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004573 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004574 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004575 LN0->getBasePtr(), LN0->getPointerInfo(),
4576 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004577 LN0->isVolatile(), LN0->isNonTemporal(),
4578 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004579 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004580 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004581 DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004582 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004583 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004584 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004585 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004586 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004587
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004588 // fold (sext (and/or/xor (load x), cst)) ->
4589 // (and/or/xor (sextload x), (sext cst))
4590 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4591 N0.getOpcode() == ISD::XOR) &&
4592 isa<LoadSDNode>(N0.getOperand(0)) &&
4593 N0.getOperand(1).getOpcode() == ISD::Constant &&
4594 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4595 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4596 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4597 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4598 bool DoXform = true;
4599 SmallVector<SDNode*, 4> SetCCs;
4600 if (!N0.hasOneUse())
4601 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4602 SetCCs, TLI);
4603 if (DoXform) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004604 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(LN0), VT,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004605 LN0->getChain(), LN0->getBasePtr(),
4606 LN0->getPointerInfo(),
4607 LN0->getMemoryVT(),
4608 LN0->isVolatile(),
4609 LN0->isNonTemporal(),
4610 LN0->getAlignment());
4611 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4612 Mask = Mask.sext(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004613 SDValue And = DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004614 ExtLoad, DAG.getConstant(Mask, VT));
4615 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004616 SDLoc(N0.getOperand(0)),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004617 N0.getOperand(0).getValueType(), ExtLoad);
4618 CombineTo(N, And);
4619 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004620 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004621 ISD::SIGN_EXTEND);
4622 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4623 }
4624 }
4625 }
4626
Chris Lattner20a35c32007-04-11 05:32:27 +00004627 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004628 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004629 // Only do this before legalize for now.
Owen Andersoned5707b2013-04-23 18:09:28 +00004630 if (VT.isVector() && !LegalOperations &&
Stephen Lin155615d2013-07-08 00:37:03 +00004631 TLI.getBooleanContents(true) ==
Owen Andersoned5707b2013-04-23 18:09:28 +00004632 TargetLowering::ZeroOrNegativeOneBooleanContent) {
Dan Gohman3ce89f42010-04-30 17:19:19 +00004633 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004634 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4635 // of the same size as the compared operands. Only optimize sext(setcc())
4636 // if this is the case.
Matt Arsenault225ed702013-05-18 00:21:46 +00004637 EVT SVT = getSetCCResultType(N0VT);
Nadav Rotem2e506192012-04-11 08:26:11 +00004638
4639 // We know that the # elements of the results is the same as the
4640 // # elements of the compare (and the # elements of the compare result
4641 // for that matter). Check to see that they are the same size. If so,
4642 // we know that the element size of the sext'd result matches the
4643 // element size of the compare operands.
4644 if (VT.getSizeInBits() == SVT.getSizeInBits())
Andrew Trickac6d9be2013-05-25 02:42:55 +00004645 return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004646 N0.getOperand(1),
4647 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Matt Arsenault9aa8fdf2013-05-17 21:43:43 +00004648
Dan Gohman3ce89f42010-04-30 17:19:19 +00004649 // If the desired elements are smaller or larger than the source
4650 // elements we can use a matching integer vector type and then
4651 // truncate/sign extend
Matt Arsenault9aa8fdf2013-05-17 21:43:43 +00004652 EVT MatchingVectorType = N0VT.changeVectorElementTypeToInteger();
Craig Topper0eb5dad2012-09-29 07:18:53 +00004653 if (SVT == MatchingVectorType) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004654 SDValue VsetCC = DAG.getSetCC(SDLoc(N), MatchingVectorType,
Craig Topper0eb5dad2012-09-29 07:18:53 +00004655 N0.getOperand(0), N0.getOperand(1),
4656 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004657 return DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT);
Dan Gohman3ce89f42010-04-30 17:19:19 +00004658 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004659 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004660
Chris Lattner2b7a2712009-07-08 00:31:33 +00004661 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004662 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004663 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004664 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004665 SDValue SCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00004666 SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004667 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004668 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004669 if (SCC.getNode()) return SCC;
Matt Arsenaultb05e4772013-06-14 22:04:37 +00004670 if (!VT.isVector() &&
4671 (!LegalOperations ||
4672 TLI.isOperationLegal(ISD::SETCC, getSetCCResultType(VT)))) {
4673 return DAG.getSelect(SDLoc(N), VT,
4674 DAG.getSetCC(SDLoc(N),
4675 getSetCCResultType(VT),
4676 N0.getOperand(0), N0.getOperand(1),
4677 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4678 NegOne, DAG.getConstant(0, VT));
4679 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004680 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004681
Dan Gohman8f0ad582008-04-28 16:58:24 +00004682 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004683 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004684 DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004685 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004686
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004687 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004688}
4689
Rafael Espindoladecbc432012-04-09 16:06:03 +00004690// isTruncateOf - If N is a truncate of some other value, return true, record
4691// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4692// This function computes KnownZero to avoid a duplicated call to
4693// ComputeMaskedBits in the caller.
4694static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4695 APInt &KnownZero) {
4696 APInt KnownOne;
4697 if (N->getOpcode() == ISD::TRUNCATE) {
4698 Op = N->getOperand(0);
4699 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4700 return true;
4701 }
4702
4703 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4704 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4705 return false;
4706
4707 SDValue Op0 = N->getOperand(0);
4708 SDValue Op1 = N->getOperand(1);
4709 assert(Op0.getValueType() == Op1.getValueType());
4710
4711 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4712 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004713 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004714 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004715 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004716 Op = Op0;
4717 else
4718 return false;
4719
4720 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4721
4722 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4723 return false;
4724
4725 return true;
4726}
4727
Dan Gohman475871a2008-07-27 21:46:04 +00004728SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4729 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004730 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004731
Nate Begeman1d4d4142005-09-01 00:19:25 +00004732 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004733 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004734 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004735 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004736 // fold (zext (aext x)) -> (zext x)
4737 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004738 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004739 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004740
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004741 // fold (zext (truncate x)) -> (zext x) or
4742 // (zext (truncate x)) -> (truncate x)
4743 // This is valid when the truncated bits of x are already zero.
4744 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004745 SDValue Op;
4746 APInt KnownZero;
4747 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4748 APInt TruncatedBits =
4749 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4750 APInt(Op.getValueSizeInBits(), 0) :
4751 APInt::getBitsSet(Op.getValueSizeInBits(),
4752 N0.getValueSizeInBits(),
4753 std::min(Op.getValueSizeInBits(),
4754 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004755 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004756 if (VT.bitsGT(Op.getValueType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004757 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, Op);
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004758 if (VT.bitsLT(Op.getValueType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004759 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004760
4761 return Op;
4762 }
4763 }
4764
Evan Chengc88138f2007-03-22 01:54:19 +00004765 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4766 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004767 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004768 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4769 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004770 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4771 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004772 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004773 // CombineTo deleted the truncate, if needed, but not what's under it.
4774 AddToWorkList(oye);
4775 }
Eli Friedmane545d382011-04-16 23:25:34 +00004776 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004777 }
Evan Chengc88138f2007-03-22 01:54:19 +00004778 }
4779
Chris Lattner6007b842006-09-21 06:00:20 +00004780 // fold (zext (truncate x)) -> (and x, mask)
4781 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004782 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004783
4784 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4785 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4786 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4787 if (NarrowLoad.getNode()) {
4788 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4789 if (NarrowLoad.getNode() != N0.getNode()) {
4790 CombineTo(N0.getNode(), NarrowLoad);
4791 // CombineTo deleted the truncate, if needed, but not what's under it.
4792 AddToWorkList(oye);
4793 }
4794 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4795 }
4796
Dan Gohman475871a2008-07-27 21:46:04 +00004797 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004798 if (Op.getValueType().bitsLT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004799 Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004800 AddToWorkList(Op.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004801 } else if (Op.getValueType().bitsGT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004802 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004803 AddToWorkList(Op.getNode());
Chris Lattner6007b842006-09-21 06:00:20 +00004804 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004805 return DAG.getZeroExtendInReg(Op, SDLoc(N),
Dan Gohman87862e72009-12-11 21:31:27 +00004806 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004807 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004808
Dan Gohman97121ba2009-04-08 00:15:30 +00004809 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4810 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004811 if (N0.getOpcode() == ISD::AND &&
4812 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004813 N0.getOperand(1).getOpcode() == ISD::Constant &&
4814 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4815 N0.getValueType()) ||
4816 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004817 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004818 if (X.getValueType().bitsLT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004819 X = DAG.getNode(ISD::ANY_EXTEND, SDLoc(X), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004820 } else if (X.getValueType().bitsGT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004821 X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004822 }
Dan Gohman220a8232008-03-03 23:51:38 +00004823 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004824 Mask = Mask.zext(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004825 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004826 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004827 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004828
Evan Cheng110dec22005-12-14 02:19:23 +00004829 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004830 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004831 // on vectors in one instruction. We only perform this transformation on
4832 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004833 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004834 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004835 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004836 bool DoXform = true;
4837 SmallVector<SDNode*, 4> SetCCs;
4838 if (!N0.hasOneUse())
4839 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4840 if (DoXform) {
4841 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004842 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004843 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004844 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004845 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004846 LN0->isVolatile(), LN0->isNonTemporal(),
4847 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004848 CombineTo(N, ExtLoad);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004849 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004850 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004851 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004852
Andrew Trickac6d9be2013-05-25 02:42:55 +00004853 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004854 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004855 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004856 }
Evan Cheng110dec22005-12-14 02:19:23 +00004857 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004858
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004859 // fold (zext (and/or/xor (load x), cst)) ->
4860 // (and/or/xor (zextload x), (zext cst))
4861 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4862 N0.getOpcode() == ISD::XOR) &&
4863 isa<LoadSDNode>(N0.getOperand(0)) &&
4864 N0.getOperand(1).getOpcode() == ISD::Constant &&
4865 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4866 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4867 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4868 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4869 bool DoXform = true;
4870 SmallVector<SDNode*, 4> SetCCs;
4871 if (!N0.hasOneUse())
4872 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4873 SetCCs, TLI);
4874 if (DoXform) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004875 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), VT,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004876 LN0->getChain(), LN0->getBasePtr(),
4877 LN0->getPointerInfo(),
4878 LN0->getMemoryVT(),
4879 LN0->isVolatile(),
4880 LN0->isNonTemporal(),
4881 LN0->getAlignment());
4882 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4883 Mask = Mask.zext(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004884 SDValue And = DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004885 ExtLoad, DAG.getConstant(Mask, VT));
4886 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004887 SDLoc(N0.getOperand(0)),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004888 N0.getOperand(0).getValueType(), ExtLoad);
4889 CombineTo(N, And);
4890 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004891 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004892 ISD::ZERO_EXTEND);
4893 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4894 }
4895 }
4896 }
4897
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004898 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4899 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004900 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4901 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004902 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004903 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004904 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004905 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004906 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004907 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004908 LN0->getBasePtr(), LN0->getPointerInfo(),
4909 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004910 LN0->isVolatile(), LN0->isNonTemporal(),
4911 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004912 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004913 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004914 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), N0.getValueType(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004915 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004916 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004917 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004918 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004919 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004920
Chris Lattner20a35c32007-04-11 05:32:27 +00004921 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004922 if (!LegalOperations && VT.isVector()) {
4923 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4924 // Only do this before legalize for now.
4925 EVT N0VT = N0.getOperand(0).getValueType();
4926 EVT EltVT = VT.getVectorElementType();
4927 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4928 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004929 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004930 // We know that the # elements of the results is the same as the
4931 // # elements of the compare (and the # elements of the compare result
4932 // for that matter). Check to see that they are the same size. If so,
4933 // we know that the element size of the sext'd result matches the
4934 // element size of the compare operands.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004935 return DAG.getNode(ISD::AND, SDLoc(N), VT,
4936 DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004937 N0.getOperand(1),
4938 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004939 DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT,
Evan Cheng0a942db2010-05-19 01:08:17 +00004940 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004941
4942 // If the desired elements are smaller or larger than the source
4943 // elements we can use a matching integer vector type and then
4944 // truncate/sign extend
4945 EVT MatchingElementType =
4946 EVT::getIntegerVT(*DAG.getContext(),
4947 N0VT.getScalarType().getSizeInBits());
4948 EVT MatchingVectorType =
4949 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4950 N0VT.getVectorNumElements());
4951 SDValue VsetCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00004952 DAG.getSetCC(SDLoc(N), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004953 N0.getOperand(1),
4954 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004955 return DAG.getNode(ISD::AND, SDLoc(N), VT,
4956 DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT),
4957 DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT,
Dan Gohman71dc7c92011-05-17 22:20:36 +00004958 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004959 }
4960
4961 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004962 SDValue SCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00004963 SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004964 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004965 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004966 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004967 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004968
Evan Cheng9818c042009-12-15 03:00:32 +00004969 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004970 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004971 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004972 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4973 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004974 SDValue ShAmt = N0.getOperand(1);
4975 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004976 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004977 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004978 // If the original shl may be shifting out bits, do not perform this
4979 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004980 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4981 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4982 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004983 return SDValue();
4984 }
Chris Lattnere0751182011-02-13 19:09:16 +00004985
Andrew Trickac6d9be2013-05-25 02:42:55 +00004986 SDLoc DL(N);
Owen Anderson95771af2011-02-25 21:41:48 +00004987
4988 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004989 if (VT.getSizeInBits() >= 256)
4990 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004991
Chris Lattnere0751182011-02-13 19:09:16 +00004992 return DAG.getNode(N0.getOpcode(), DL, VT,
4993 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4994 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004995 }
4996
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004997 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004998}
4999
Dan Gohman475871a2008-07-27 21:46:04 +00005000SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
5001 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005002 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005003
Chris Lattner5ffc0662006-05-05 05:58:59 +00005004 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005005 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005006 return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00005007 // fold (aext (aext x)) -> (aext x)
5008 // fold (aext (zext x)) -> (zext x)
5009 // fold (aext (sext x)) -> (sext x)
5010 if (N0.getOpcode() == ISD::ANY_EXTEND ||
5011 N0.getOpcode() == ISD::ZERO_EXTEND ||
5012 N0.getOpcode() == ISD::SIGN_EXTEND)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005013 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00005014
Evan Chengc88138f2007-03-22 01:54:19 +00005015 // fold (aext (truncate (load x))) -> (aext (smaller load x))
5016 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
5017 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005018 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
5019 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00005020 SDNode* oye = N0.getNode()->getOperand(0).getNode();
5021 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005022 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00005023 // CombineTo deleted the truncate, if needed, but not what's under it.
5024 AddToWorkList(oye);
5025 }
Eli Friedmane545d382011-04-16 23:25:34 +00005026 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00005027 }
Evan Chengc88138f2007-03-22 01:54:19 +00005028 }
5029
Chris Lattner84750582006-09-20 06:29:17 +00005030 // fold (aext (truncate x))
5031 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00005032 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00005033 if (TruncOp.getValueType() == VT)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005034 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00005035 if (TruncOp.getValueType().bitsGT(VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005036 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, TruncOp);
5037 return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00005038 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005039
Dan Gohman97121ba2009-04-08 00:15:30 +00005040 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
5041 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00005042 if (N0.getOpcode() == ISD::AND &&
5043 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00005044 N0.getOperand(1).getOpcode() == ISD::Constant &&
5045 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
5046 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00005047 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005048 if (X.getValueType().bitsLT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005049 X = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005050 } else if (X.getValueType().bitsGT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005051 X = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00005052 }
Dan Gohman220a8232008-03-03 23:51:38 +00005053 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00005054 Mask = Mask.zext(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005055 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Bill Wendling683c9572009-01-30 22:27:33 +00005056 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00005057 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005058
Chris Lattner5ffc0662006-05-05 05:58:59 +00005059 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005060 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00005061 // on vectors in one instruction. We only perform this transformation on
5062 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005063 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005064 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005065 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00005066 bool DoXform = true;
5067 SmallVector<SDNode*, 4> SetCCs;
5068 if (!N0.hasOneUse())
5069 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
5070 if (DoXform) {
5071 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005072 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00005073 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005074 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00005075 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00005076 LN0->isVolatile(), LN0->isNonTemporal(),
5077 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00005078 CombineTo(N, ExtLoad);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005079 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Dan Gohman57fc82d2009-04-09 03:51:29 +00005080 N0.getValueType(), ExtLoad);
5081 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005082 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00005083 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00005084 return SDValue(N, 0); // Return N so it doesn't get rechecked!
5085 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00005086 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005087
Chris Lattner5ffc0662006-05-05 05:58:59 +00005088 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
5089 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
5090 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00005091 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005092 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00005093 N0.hasOneUse()) {
5094 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005095 EVT MemVT = LN0->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005096 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), SDLoc(N),
Stuart Hastingsa9011292011-02-16 16:23:55 +00005097 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005098 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00005099 LN0->isVolatile(), LN0->isNonTemporal(),
5100 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00005101 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00005102 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00005103 DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling683c9572009-01-30 22:27:33 +00005104 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00005105 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005106 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00005107 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005108
Chris Lattner20a35c32007-04-11 05:32:27 +00005109 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00005110 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
5111 // Only do this before legalize for now.
5112 if (VT.isVector() && !LegalOperations) {
5113 EVT N0VT = N0.getOperand(0).getValueType();
5114 // We know that the # elements of the results is the same as the
5115 // # elements of the compare (and the # elements of the compare result
5116 // for that matter). Check to see that they are the same size. If so,
5117 // we know that the element size of the sext'd result matches the
5118 // element size of the compare operands.
5119 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Andrew Trickac6d9be2013-05-25 02:42:55 +00005120 return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00005121 N0.getOperand(1),
5122 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00005123 // If the desired elements are smaller or larger than the source
5124 // elements we can use a matching integer vector type and then
5125 // truncate/sign extend
5126 else {
Duncan Sands34727662010-07-12 08:16:59 +00005127 EVT MatchingElementType =
5128 EVT::getIntegerVT(*DAG.getContext(),
5129 N0VT.getScalarType().getSizeInBits());
5130 EVT MatchingVectorType =
5131 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
5132 N0VT.getVectorNumElements());
5133 SDValue VsetCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00005134 DAG.getSetCC(SDLoc(N), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00005135 N0.getOperand(1),
5136 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005137 return DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00005138 }
5139 }
5140
5141 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00005142 SDValue SCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00005143 SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00005144 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00005145 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00005146 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00005147 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00005148 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005149
Evan Chengb3a3d5e2010-04-28 07:10:39 +00005150 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00005151}
5152
Chris Lattner2b4c2792007-10-13 06:35:54 +00005153/// GetDemandedBits - See if the specified operand can be simplified with the
5154/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00005155/// simpler operand, otherwise return a null SDValue.
5156SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00005157 switch (V.getOpcode()) {
5158 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00005159 case ISD::Constant: {
5160 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
5161 assert(CV != 0 && "Const value should be ConstSDNode.");
5162 const APInt &CVal = CV->getAPIntValue();
5163 APInt NewVal = CVal & Mask;
Stephen Linb4940152013-07-09 00:44:49 +00005164 if (NewVal != CVal)
Lang Hames5207bf22011-11-08 18:56:23 +00005165 return DAG.getConstant(NewVal, V.getValueType());
Lang Hames5207bf22011-11-08 18:56:23 +00005166 break;
5167 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00005168 case ISD::OR:
5169 case ISD::XOR:
5170 // If the LHS or RHS don't contribute bits to the or, drop them.
5171 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
5172 return V.getOperand(1);
5173 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
5174 return V.getOperand(0);
5175 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00005176 case ISD::SRL:
5177 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005178 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00005179 break;
5180 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
5181 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005182 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00005183
Dan Gohmancc91d632009-01-03 19:22:06 +00005184 // Watch out for shift count overflow though.
5185 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005186 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00005187 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00005188 if (SimplifyLHS.getNode())
Andrew Trickac6d9be2013-05-25 02:42:55 +00005189 return DAG.getNode(ISD::SRL, SDLoc(V), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00005190 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00005191 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00005192 }
Dan Gohman475871a2008-07-27 21:46:04 +00005193 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00005194}
5195
Evan Chengc88138f2007-03-22 01:54:19 +00005196/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
5197/// bits and then truncated to a narrower type and where N is a multiple
5198/// of number of bits of the narrower type, transform it to a narrower load
5199/// from address + N / num of bits of new type. If the result is to be
5200/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00005201SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00005202 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005203
Evan Chengc88138f2007-03-22 01:54:19 +00005204 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00005205 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005206 EVT VT = N->getValueType(0);
5207 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00005208
Dan Gohman7f8613e2008-08-14 20:04:46 +00005209 // This transformation isn't valid for vector loads.
5210 if (VT.isVector())
5211 return SDValue();
5212
Dan Gohmand1996362010-01-09 02:13:55 +00005213 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00005214 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00005215 if (Opc == ISD::SIGN_EXTEND_INREG) {
5216 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00005217 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005218 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00005219 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005220 ExtType = ISD::ZEXTLOAD;
5221 N0 = SDValue(N, 0);
5222 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
5223 if (!N01) return SDValue();
5224 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
5225 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00005226 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00005227 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
5228 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005229
Owen Andersone50ed302009-08-10 22:56:29 +00005230 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00005231
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005232 // Do not generate loads of non-round integer types since these can
5233 // be expensive (and would be wrong if the type is not byte sized).
5234 if (!ExtVT.isRound())
5235 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005236
Evan Chengc88138f2007-03-22 01:54:19 +00005237 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005238 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00005239 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005240 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005241 // Is the shift amount a multiple of size of VT?
5242 if ((ShAmt & (EVTBits-1)) == 0) {
5243 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00005244 // Is the load width a multiple of size of VT?
5245 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005246 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005247 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005248
Chris Lattnercbf68df2010-12-22 08:02:57 +00005249 // At this point, we must have a load or else we can't do the transform.
5250 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005251
Chandler Carruth1c49fda2012-12-11 00:36:57 +00005252 // Because a SRL must be assumed to *need* to zero-extend the high bits
5253 // (as opposed to anyext the high bits), we can't combine the zextload
5254 // lowering of SRL and an sextload.
5255 if (cast<LoadSDNode>(N0)->getExtensionType() == ISD::SEXTLOAD)
5256 return SDValue();
5257
Chris Lattner2831a192010-10-01 05:36:09 +00005258 // If the shift amount is larger than the input type then we're not
5259 // accessing any of the loaded bytes. If the load was a zextload/extload
5260 // then the result of the shift+trunc is zero/undef (handled elsewhere).
Chris Lattnercbf68df2010-12-22 08:02:57 +00005261 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00005262 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005263 }
5264 }
5265
Dan Gohman394d6292010-11-03 01:47:46 +00005266 // If the load is shifted left (and the result isn't shifted back right),
5267 // we can fold the truncate through the shift.
5268 unsigned ShLeftAmt = 0;
5269 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00005270 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00005271 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5272 ShLeftAmt = N01->getZExtValue();
5273 N0 = N0.getOperand(0);
5274 }
5275 }
Owen Anderson95771af2011-02-25 21:41:48 +00005276
Chris Lattner4c32bc22010-12-22 07:36:50 +00005277 // If we haven't found a load, we can't narrow it. Don't transform one with
5278 // multiple uses, this would require adding a new load.
Bill Schmidt89e88e32013-01-14 22:04:38 +00005279 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse())
5280 return SDValue();
5281
5282 // Don't change the width of a volatile load.
5283 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5284 if (LN0->isVolatile())
Chris Lattner4c32bc22010-12-22 07:36:50 +00005285 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005286
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005287 // Verify that we are actually reducing a load width here.
Bill Schmidt89e88e32013-01-14 22:04:38 +00005288 if (LN0->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005289 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005290
Bill Schmidt89e88e32013-01-14 22:04:38 +00005291 // For the transform to be legal, the load must produce only two values
5292 // (the value loaded and the chain). Don't transform a pre-increment
Stephen Lin155615d2013-07-08 00:37:03 +00005293 // load, for example, which produces an extra value. Otherwise the
Bill Schmidt89e88e32013-01-14 22:04:38 +00005294 // transformation is not equivalent, and the downstream logic to replace
5295 // uses gets things wrong.
5296 if (LN0->getNumValues() > 2)
5297 return SDValue();
5298
Benjamin Kramerf4eeab42013-07-06 14:05:09 +00005299 // If the load that we're shrinking is an extload and we're not just
5300 // discarding the extension we can't simply shrink the load. Bail.
5301 // TODO: It would be possible to merge the extensions in some cases.
5302 if (LN0->getExtensionType() != ISD::NON_EXTLOAD &&
5303 LN0->getMemoryVT().getSizeInBits() < ExtVT.getSizeInBits() + ShAmt)
5304 return SDValue();
5305
Chris Lattner4c32bc22010-12-22 07:36:50 +00005306 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005307
Evan Cheng16436df2012-06-26 01:19:33 +00005308 if (PtrType == MVT::Untyped || PtrType.isExtended())
5309 // It's not possible to generate a constant of extended or untyped type.
5310 return SDValue();
5311
Chris Lattner4c32bc22010-12-22 07:36:50 +00005312 // For big endian targets, we need to adjust the offset to the pointer to
5313 // load the correct bytes.
5314 if (TLI.isBigEndian()) {
5315 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5316 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5317 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005318 }
5319
Chris Lattner4c32bc22010-12-22 07:36:50 +00005320 uint64_t PtrOff = ShAmt / 8;
5321 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005322 SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(LN0),
Chris Lattner4c32bc22010-12-22 07:36:50 +00005323 PtrType, LN0->getBasePtr(),
5324 DAG.getConstant(PtrOff, PtrType));
5325 AddToWorkList(NewPtr.getNode());
5326
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005327 SDValue Load;
5328 if (ExtType == ISD::NON_EXTLOAD)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005329 Load = DAG.getLoad(VT, SDLoc(N0), LN0->getChain(), NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005330 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005331 LN0->isVolatile(), LN0->isNonTemporal(),
5332 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005333 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00005334 Load = DAG.getExtLoad(ExtType, SDLoc(N0), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005335 LN0->getPointerInfo().getWithOffset(PtrOff),
5336 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5337 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005338
5339 // Replace the old load's chain with the new load's chain.
5340 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005341 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005342
5343 // Shift the result left, if we've swallowed a left shift.
5344 SDValue Result = Load;
5345 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005346 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005347 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5348 ShImmTy = VT;
Paul Redmond5c974502013-02-12 15:21:21 +00005349 // If the shift amount is as large as the result size (but, presumably,
5350 // no larger than the source) then the useful bits of the result are
5351 // zero; we can't simply return the shortened shift, because the result
5352 // of that operation is undefined.
5353 if (ShLeftAmt >= VT.getSizeInBits())
5354 Result = DAG.getConstant(0, VT);
5355 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00005356 Result = DAG.getNode(ISD::SHL, SDLoc(N0), VT,
Paul Redmond5c974502013-02-12 15:21:21 +00005357 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005358 }
5359
5360 // Return the new loaded value.
5361 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005362}
5363
Dan Gohman475871a2008-07-27 21:46:04 +00005364SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5365 SDValue N0 = N->getOperand(0);
5366 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005367 EVT VT = N->getValueType(0);
5368 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005369 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005370 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005371
Nate Begeman1d4d4142005-09-01 00:19:25 +00005372 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005373 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005374 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005375
Chris Lattner541a24f2006-05-06 22:43:44 +00005376 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005377 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005378 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005379
Nate Begeman646d7e22005-09-02 21:18:40 +00005380 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5381 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Stephen Linb4940152013-07-09 00:44:49 +00005382 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005383 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005384 N0.getOperand(0), N1);
Chris Lattner4b37e872006-05-08 21:18:59 +00005385
Dan Gohman75dcf082008-07-31 00:50:31 +00005386 // fold (sext_in_reg (sext x)) -> (sext x)
5387 // fold (sext_in_reg (aext x)) -> (sext x)
5388 // if x is small enough.
5389 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5390 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005391 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5392 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005393 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005394 }
5395
Chris Lattner95a5e052007-04-17 19:03:21 +00005396 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005397 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005398 return DAG.getZeroExtendInReg(N0, SDLoc(N), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005399
Chris Lattner95a5e052007-04-17 19:03:21 +00005400 // fold operands of sext_in_reg based on knowledge that the top bits are not
5401 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005402 if (SimplifyDemandedBits(SDValue(N, 0)))
5403 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005404
Evan Chengc88138f2007-03-22 01:54:19 +00005405 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5406 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005407 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005408 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005409 return NarrowLoad;
5410
Bill Wendling8509c902009-01-30 22:33:24 +00005411 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005412 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005413 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5414 if (N0.getOpcode() == ISD::SRL) {
5415 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005416 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005417 // We can turn this into an SRA iff the input to the SRL is already sign
Chris Lattner4b37e872006-05-08 21:18:59 +00005418 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005419 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005420 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005421 return DAG.getNode(ISD::SRA, SDLoc(N), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005422 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005423 }
5424 }
Evan Chengc88138f2007-03-22 01:54:19 +00005425
Nate Begemanded49632005-10-13 03:11:28 +00005426 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005427 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005428 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005429 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005430 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005431 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005432 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005433 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005434 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005435 LN0->getBasePtr(), LN0->getPointerInfo(),
5436 EVT,
David Greene1e559442010-02-15 17:00:31 +00005437 LN0->isVolatile(), LN0->isNonTemporal(),
5438 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005439 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005440 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Elena Demikhovsky4b977312012-12-19 07:50:20 +00005441 AddToWorkList(ExtLoad.getNode());
Dan Gohman475871a2008-07-27 21:46:04 +00005442 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005443 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005444 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005445 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005446 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005447 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005448 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005449 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005450 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005451 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005452 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005453 LN0->getBasePtr(), LN0->getPointerInfo(),
5454 EVT,
David Greene1e559442010-02-15 17:00:31 +00005455 LN0->isVolatile(), LN0->isNonTemporal(),
5456 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005457 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005458 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005459 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005460 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005461
5462 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5463 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5464 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5465 N0.getOperand(1), false);
5466 if (BSwap.getNode() != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005467 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
Evan Cheng9568e5c2011-06-21 06:01:08 +00005468 BSwap, N1);
5469 }
5470
Dan Gohman475871a2008-07-27 21:46:04 +00005471 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005472}
5473
Dan Gohman475871a2008-07-27 21:46:04 +00005474SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5475 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005476 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005477 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005478
5479 // noop truncate
5480 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005481 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005482 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005483 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005484 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005485 // fold (truncate (truncate x)) -> (truncate x)
5486 if (N0.getOpcode() == ISD::TRUNCATE)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005487 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005488 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005489 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5490 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005491 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005492 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005493 // if the source is smaller than the dest, we still need an extend
Andrew Trickac6d9be2013-05-25 02:42:55 +00005494 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005495 N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005496 if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005497 // if the source is larger than the dest, than we just need the truncate
Andrew Trickac6d9be2013-05-25 02:42:55 +00005498 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005499 // if the source and dest are the same type, we can drop both the extend
5500 // and the truncate.
5501 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005502 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005503
Nadav Rotemcc870a82012-02-05 11:39:23 +00005504 // Fold extract-and-trunc into a narrow extract. For example:
5505 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5506 // i32 y = TRUNCATE(i64 x)
5507 // -- becomes --
5508 // v16i8 b = BITCAST (v2i64 val)
5509 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5510 //
5511 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005512 // creates this pattern) and before operation legalization after which
5513 // we need to be more careful about the vector instructions that we generate.
5514 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5515 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5516
5517 EVT VecTy = N0.getOperand(0).getValueType();
5518 EVT ExTy = N0.getValueType();
5519 EVT TrTy = N->getValueType(0);
5520
5521 unsigned NumElem = VecTy.getVectorNumElements();
5522 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5523
5524 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5525 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5526
5527 SDValue EltNo = N0->getOperand(1);
5528 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5529 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Tom Stellard425b76c2013-08-05 22:22:01 +00005530 EVT IndexTy = TLI.getVectorIdxTy();
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005531 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5532
Andrew Trickac6d9be2013-05-25 02:42:55 +00005533 SDValue V = DAG.getNode(ISD::BITCAST, SDLoc(N),
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005534 NVT, N0.getOperand(0));
5535
5536 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005537 SDLoc(N), TrTy, V,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005538 DAG.getConstant(Index, IndexTy));
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005539 }
5540 }
5541
Arnold Schwaighoferc46e2df2013-02-20 21:33:32 +00005542 // Fold a series of buildvector, bitcast, and truncate if possible.
5543 // For example fold
5544 // (2xi32 trunc (bitcast ((4xi32)buildvector x, x, y, y) 2xi64)) to
5545 // (2xi32 (buildvector x, y)).
5546 if (Level == AfterLegalizeVectorOps && VT.isVector() &&
5547 N0.getOpcode() == ISD::BITCAST && N0.hasOneUse() &&
5548 N0.getOperand(0).getOpcode() == ISD::BUILD_VECTOR &&
5549 N0.getOperand(0).hasOneUse()) {
5550
5551 SDValue BuildVect = N0.getOperand(0);
5552 EVT BuildVectEltTy = BuildVect.getValueType().getVectorElementType();
5553 EVT TruncVecEltTy = VT.getVectorElementType();
5554
5555 // Check that the element types match.
5556 if (BuildVectEltTy == TruncVecEltTy) {
5557 // Now we only need to compute the offset of the truncated elements.
5558 unsigned BuildVecNumElts = BuildVect.getNumOperands();
5559 unsigned TruncVecNumElts = VT.getVectorNumElements();
5560 unsigned TruncEltOffset = BuildVecNumElts / TruncVecNumElts;
5561
5562 assert((BuildVecNumElts % TruncVecNumElts) == 0 &&
5563 "Invalid number of elements");
5564
5565 SmallVector<SDValue, 8> Opnds;
5566 for (unsigned i = 0, e = BuildVecNumElts; i != e; i += TruncEltOffset)
5567 Opnds.push_back(BuildVect.getOperand(i));
5568
Andrew Trickac6d9be2013-05-25 02:42:55 +00005569 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT, &Opnds[0],
Arnold Schwaighoferc46e2df2013-02-20 21:33:32 +00005570 Opnds.size());
5571 }
5572 }
5573
Chris Lattner2b4c2792007-10-13 06:35:54 +00005574 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005575 // only the low bits are being used.
5576 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005577 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005578 // may have different active low bits.
5579 if (!VT.isVector()) {
5580 SDValue Shorter =
5581 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5582 VT.getSizeInBits()));
5583 if (Shorter.getNode())
Andrew Trickac6d9be2013-05-25 02:42:55 +00005584 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Shorter);
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005585 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005586 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005587 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005588 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5589 SDValue Reduced = ReduceLoadWidth(N);
5590 if (Reduced.getNode())
5591 return Reduced;
5592 }
Michael Liao07edaf32012-10-17 23:45:54 +00005593 // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)),
5594 // where ... are all 'undef'.
5595 if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) {
5596 SmallVector<EVT, 8> VTs;
5597 SDValue V;
5598 unsigned Idx = 0;
5599 unsigned NumDefs = 0;
5600
5601 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
5602 SDValue X = N0.getOperand(i);
5603 if (X.getOpcode() != ISD::UNDEF) {
5604 V = X;
5605 Idx = i;
5606 NumDefs++;
5607 }
5608 // Stop if more than one members are non-undef.
5609 if (NumDefs > 1)
5610 break;
5611 VTs.push_back(EVT::getVectorVT(*DAG.getContext(),
5612 VT.getVectorElementType(),
5613 X.getValueType().getVectorNumElements()));
5614 }
5615
5616 if (NumDefs == 0)
5617 return DAG.getUNDEF(VT);
5618
5619 if (NumDefs == 1) {
5620 assert(V.getNode() && "The single defined operand is empty!");
5621 SmallVector<SDValue, 8> Opnds;
5622 for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
5623 if (i != Idx) {
5624 Opnds.push_back(DAG.getUNDEF(VTs[i]));
5625 continue;
5626 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00005627 SDValue NV = DAG.getNode(ISD::TRUNCATE, SDLoc(V), VTs[i], V);
Michael Liao07edaf32012-10-17 23:45:54 +00005628 AddToWorkList(NV.getNode());
5629 Opnds.push_back(NV);
5630 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00005631 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
Michael Liao07edaf32012-10-17 23:45:54 +00005632 &Opnds[0], Opnds.size());
5633 }
5634 }
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005635
5636 // Simplify the operands using demanded-bits information.
5637 if (!VT.isVector() &&
5638 SimplifyDemandedBits(SDValue(N, 0)))
5639 return SDValue(N, 0);
5640
Evan Chenge5b51ac2010-04-17 06:13:15 +00005641 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005642}
5643
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005644static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005645 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005646 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005647 return Elt.getNode();
5648 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005649}
5650
5651/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005652/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005653SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005654 assert(N->getOpcode() == ISD::BUILD_PAIR);
5655
Nate Begemanabc01992009-06-05 21:37:30 +00005656 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5657 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005658 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5659 LD1->getPointerInfo().getAddrSpace() !=
5660 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005661 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005662 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005663
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005664 if (ISD::isNON_EXTLoad(LD2) &&
5665 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005666 // If both are volatile this would reduce the number of volatile loads.
5667 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005668 !LD1->isVolatile() &&
5669 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005670 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005671 unsigned Align = LD1->getAlignment();
Micah Villmow3574eca2012-10-08 16:38:25 +00005672 unsigned NewAlign = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005673 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005674
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005675 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005676 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005677 return DAG.getLoad(VT, SDLoc(N), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005678 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005679 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005680 }
Bill Wendling67a67682009-01-30 22:44:24 +00005681
Dan Gohman475871a2008-07-27 21:46:04 +00005682 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005683}
5684
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005685SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005686 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005687 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005688
Dan Gohman7f321562007-06-25 16:23:39 +00005689 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5690 // Only do this before legalize, since afterward the target may be depending
5691 // on the bitconvert.
5692 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005693 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005694 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005695 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005696 bool isSimple = true;
5697 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5698 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5699 N0.getOperand(i).getOpcode() != ISD::Constant &&
5700 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005701 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005702 break;
5703 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005704
Owen Andersone50ed302009-08-10 22:56:29 +00005705 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005706 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005707 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005708 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005709 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005710 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005711
Dan Gohman3dd168d2008-09-05 01:58:21 +00005712 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005713 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005714 SDValue Res = DAG.getNode(ISD::BITCAST, SDLoc(N), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005715 if (Res.getNode() != N) {
5716 if (!LegalOperations ||
5717 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5718 return Res;
5719
5720 // Folding it resulted in an illegal node, and it's too late to
5721 // do that. Clean up the old node and forego the transformation.
5722 // Ideally this won't happen very often, because instcombine
5723 // and the earlier dagcombine runs (where illegal nodes are
5724 // permitted) should have folded most of them already.
5725 DAG.DeleteNode(Res.getNode());
5726 }
Chris Lattner94683772005-12-23 05:30:37 +00005727 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005728
Bill Wendling67a67682009-01-30 22:44:24 +00005729 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005730 if (N0.getOpcode() == ISD::BITCAST)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005731 return DAG.getNode(ISD::BITCAST, SDLoc(N), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005732 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005733
Chris Lattner57104102005-12-23 05:44:41 +00005734 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005735 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005736 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005737 // Do not change the width of a volatile load.
5738 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005739 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005740 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Micah Villmow3574eca2012-10-08 16:38:25 +00005741 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005742 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005743 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005744
Evan Cheng59d5b682007-05-07 21:27:48 +00005745 if (Align <= OrigAlign) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005746 SDValue Load = DAG.getLoad(VT, SDLoc(N), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005747 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005748 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005749 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005750 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005751 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00005752 DAG.getNode(ISD::BITCAST, SDLoc(N0),
Bill Wendling67a67682009-01-30 22:44:24 +00005753 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005754 Load.getValue(1));
5755 return Load;
5756 }
Chris Lattner57104102005-12-23 05:44:41 +00005757 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005758
Bill Wendling67a67682009-01-30 22:44:24 +00005759 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5760 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005761 // This often reduces constant pool loads.
Tom Stellard1f67c632013-07-23 23:55:03 +00005762 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(N0.getValueType())) ||
5763 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(N0.getValueType()))) &&
Nadav Rotem91a7e012012-09-13 14:54:28 +00005764 N0.getNode()->hasOneUse() && VT.isInteger() &&
5765 !VT.isVector() && !N0.getValueType().isVector()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005766 SDValue NewConv = DAG.getNode(ISD::BITCAST, SDLoc(N0), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005767 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005768 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005769
Duncan Sands83ec4b62008-06-06 12:08:01 +00005770 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005771 if (N0.getOpcode() == ISD::FNEG)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005772 return DAG.getNode(ISD::XOR, SDLoc(N), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005773 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005774 assert(N0.getOpcode() == ISD::FABS);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005775 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005776 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005777 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005778
Bill Wendling67a67682009-01-30 22:44:24 +00005779 // fold (bitconvert (fcopysign cst, x)) ->
5780 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5781 // Note that we don't handle (copysign x, cst) because this can always be
5782 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005783 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005784 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005785 VT.isInteger() && !VT.isVector()) {
5786 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005787 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005788 if (isTypeLegal(IntXVT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005789 SDValue X = DAG.getNode(ISD::BITCAST, SDLoc(N0),
Bill Wendling67a67682009-01-30 22:44:24 +00005790 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005791 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005792
Duncan Sands25cf2272008-11-24 14:53:14 +00005793 // If X has a different width than the result/lhs, sext it or truncate it.
5794 unsigned VTWidth = VT.getSizeInBits();
5795 if (OrigXWidth < VTWidth) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005796 X = DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005797 AddToWorkList(X.getNode());
5798 } else if (OrigXWidth > VTWidth) {
5799 // To get the sign bit in the right place, we have to shift it right
5800 // before truncating.
Andrew Trickac6d9be2013-05-25 02:42:55 +00005801 X = DAG.getNode(ISD::SRL, SDLoc(X),
Bill Wendling67a67682009-01-30 22:44:24 +00005802 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005803 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5804 AddToWorkList(X.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005805 X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005806 AddToWorkList(X.getNode());
5807 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005808
Duncan Sands25cf2272008-11-24 14:53:14 +00005809 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005810 X = DAG.getNode(ISD::AND, SDLoc(X), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005811 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005812 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005813
Andrew Trickac6d9be2013-05-25 02:42:55 +00005814 SDValue Cst = DAG.getNode(ISD::BITCAST, SDLoc(N0),
Bill Wendling67a67682009-01-30 22:44:24 +00005815 VT, N0.getOperand(0));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005816 Cst = DAG.getNode(ISD::AND, SDLoc(Cst), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005817 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005818 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005819
Andrew Trickac6d9be2013-05-25 02:42:55 +00005820 return DAG.getNode(ISD::OR, SDLoc(N), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005821 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005822 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005823
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005824 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005825 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005826 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5827 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005828 return CombineLD;
5829 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005830
Dan Gohman475871a2008-07-27 21:46:04 +00005831 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005832}
5833
Dan Gohman475871a2008-07-27 21:46:04 +00005834SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005835 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005836 return CombineConsecutiveLoads(N, VT);
5837}
5838
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005839/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005840/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005841/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005842SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005843ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005844 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005845
Chris Lattner6258fb22006-04-02 02:53:43 +00005846 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005847 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005848
Duncan Sands83ec4b62008-06-06 12:08:01 +00005849 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5850 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005851
Chris Lattner6258fb22006-04-02 02:53:43 +00005852 // If this is a conversion of N elements of one type to N elements of another
5853 // type, convert each element. This handles FP<->INT cases.
5854 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005855 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5856 BV->getValueType(0).getVectorNumElements());
5857
5858 // Due to the FP element handling below calling this routine recursively,
5859 // we can end up with a scalar-to-vector node here.
5860 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005861 return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(BV), VT,
5862 DAG.getNode(ISD::BITCAST, SDLoc(BV),
Nate Begemane0efc212010-07-27 18:02:18 +00005863 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005864
Dan Gohman475871a2008-07-27 21:46:04 +00005865 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005866 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005867 SDValue Op = BV->getOperand(i);
5868 // If the vector element type is not legal, the BUILD_VECTOR operands
5869 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005870 if (Op.getValueType() != SrcEltVT)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005871 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(BV), SrcEltVT, Op);
5872 Ops.push_back(DAG.getNode(ISD::BITCAST, SDLoc(BV),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005873 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005874 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005875 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00005876 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
Evan Chenga87008d2009-02-25 22:49:59 +00005877 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005878 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005879
Chris Lattner6258fb22006-04-02 02:53:43 +00005880 // Otherwise, we're growing or shrinking the elements. To avoid having to
5881 // handle annoying details of growing/shrinking FP values, we convert them to
5882 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005883 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005884 // Convert the input float vector to a int vector where the elements are the
5885 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005886 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005887 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005888 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005889 SrcEltVT = IntVT;
5890 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005891
Chris Lattner6258fb22006-04-02 02:53:43 +00005892 // Now we know the input is an integer vector. If the output is a FP type,
5893 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005894 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005895 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005896 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005897 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005898
Chris Lattner6258fb22006-04-02 02:53:43 +00005899 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005900 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005901 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005902
Chris Lattner6258fb22006-04-02 02:53:43 +00005903 // Okay, we know the src/dst types are both integers of differing types.
5904 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005905 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005906 if (SrcBitSize < DstBitSize) {
5907 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005908
Dan Gohman475871a2008-07-27 21:46:04 +00005909 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005910 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005911 i += NumInputsPerOutput) {
5912 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005913 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005914 bool EltIsUndef = true;
5915 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5916 // Shift the previously computed bits over.
5917 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005918 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005919 if (Op.getOpcode() == ISD::UNDEF) continue;
5920 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005921
Jay Foad40f8f622010-12-07 08:25:19 +00005922 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005923 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005924 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005925
Chris Lattner6258fb22006-04-02 02:53:43 +00005926 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005927 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005928 else
5929 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5930 }
5931
Owen Anderson23b9b192009-08-12 00:36:31 +00005932 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005933 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
Evan Chenga87008d2009-02-25 22:49:59 +00005934 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005935 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005936
Chris Lattner6258fb22006-04-02 02:53:43 +00005937 // Finally, this must be the case where we are shrinking elements: each input
5938 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005939 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005940 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005941 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5942 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005943 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005944
Dan Gohman7f321562007-06-25 16:23:39 +00005945 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005946 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5947 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005948 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005949 continue;
5950 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005951
Jay Foad40f8f622010-12-07 08:25:19 +00005952 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5953 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005954
Chris Lattner6258fb22006-04-02 02:53:43 +00005955 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005956 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005957 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005958 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005959 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Andrew Trickac6d9be2013-05-25 02:42:55 +00005960 return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(BV), VT,
Bill Wendlingb0162f52009-01-30 22:53:48 +00005961 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005962 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005963 }
5964
5965 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005966 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005967 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5968 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005969
Andrew Trickac6d9be2013-05-25 02:42:55 +00005970 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
Evan Chenga87008d2009-02-25 22:49:59 +00005971 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005972}
5973
Dan Gohman475871a2008-07-27 21:46:04 +00005974SDValue DAGCombiner::visitFADD(SDNode *N) {
5975 SDValue N0 = N->getOperand(0);
5976 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005977 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5978 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005979 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005980
Dan Gohman7f321562007-06-25 16:23:39 +00005981 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005982 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005983 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005984 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005985 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005986
Lang Hames01806942012-06-14 20:37:15 +00005987 // fold (fadd c1, c2) -> c1 + c2
Ulrich Weigande669c932012-10-29 18:35:49 +00005988 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005989 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005990 // canonicalize constant to RHS
5991 if (N0CFP && !N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005992 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N1, N0);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005993 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005994 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5995 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005996 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005997 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005998 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005999 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006000 return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00006001 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00006002 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00006003 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00006004 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006005 return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00006006 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00006007
Chris Lattnerddae4bd2007-01-08 23:04:05 +00006008 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006009 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6010 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
6011 isa<ConstantFPSDNode>(N0.getOperand(1)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006012 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0.getOperand(0),
6013 DAG.getNode(ISD::FADD, SDLoc(N), VT,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00006014 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006015
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006016 // No FP constant should be created after legalization as Instruction
6017 // Selection pass has hard time in dealing with FP constant.
6018 //
6019 // We don't need test this condition for transformation like following, as
6020 // the DAG being transformed implies it is legal to take FP constant as
6021 // operand.
Stephen Lin155615d2013-07-08 00:37:03 +00006022 //
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006023 // (fadd (fmul c, x), x) -> (fmul c+1, x)
Stephen Lin155615d2013-07-08 00:37:03 +00006024 //
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006025 bool AllowNewFpConst = (Level < AfterLegalizeDAG);
6026
Owen Anderson607ebde2012-11-01 02:00:53 +00006027 // If allow, fold (fadd (fneg x), x) -> 0.0
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006028 if (AllowNewFpConst && DAG.getTarget().Options.UnsafeFPMath &&
Stephen Linb4940152013-07-09 00:44:49 +00006029 N0.getOpcode() == ISD::FNEG && N0.getOperand(0) == N1)
Owen Anderson607ebde2012-11-01 02:00:53 +00006030 return DAG.getConstantFP(0.0, VT);
Owen Anderson607ebde2012-11-01 02:00:53 +00006031
6032 // If allow, fold (fadd x, (fneg x)) -> 0.0
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006033 if (AllowNewFpConst && DAG.getTarget().Options.UnsafeFPMath &&
Stephen Linb4940152013-07-09 00:44:49 +00006034 N1.getOpcode() == ISD::FNEG && N1.getOperand(0) == N0)
Owen Anderson607ebde2012-11-01 02:00:53 +00006035 return DAG.getConstantFP(0.0, VT);
Owen Anderson607ebde2012-11-01 02:00:53 +00006036
Owen Anderson43da6c72012-08-30 23:35:16 +00006037 // In unsafe math mode, we can fold chains of FADD's of the same value
6038 // into multiplications. This transform is not safe in general because
6039 // we are reducing the number of rounding steps.
6040 if (DAG.getTarget().Options.UnsafeFPMath &&
6041 TLI.isOperationLegalOrCustom(ISD::FMUL, VT) &&
6042 !N0CFP && !N1CFP) {
6043 if (N0.getOpcode() == ISD::FMUL) {
6044 ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
6045 ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
6046
Stephen Lin38103d12013-06-14 18:17:35 +00006047 // (fadd (fmul c, x), x) -> (fmul x, c+1)
Owen Anderson43da6c72012-08-30 23:35:16 +00006048 if (CFP00 && !CFP01 && N0.getOperand(1) == N1) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006049 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006050 SDValue(CFP00, 0),
6051 DAG.getConstantFP(1.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006052 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006053 N1, NewCFP);
6054 }
6055
Stephen Lin38103d12013-06-14 18:17:35 +00006056 // (fadd (fmul x, c), x) -> (fmul x, c+1)
Owen Anderson43da6c72012-08-30 23:35:16 +00006057 if (CFP01 && !CFP00 && N0.getOperand(0) == N1) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006058 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006059 SDValue(CFP01, 0),
6060 DAG.getConstantFP(1.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006061 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006062 N1, NewCFP);
6063 }
6064
Stephen Lin38103d12013-06-14 18:17:35 +00006065 // (fadd (fmul c, x), (fadd x, x)) -> (fmul x, c+2)
Owen Anderson43da6c72012-08-30 23:35:16 +00006066 if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD &&
6067 N1.getOperand(0) == N1.getOperand(1) &&
6068 N0.getOperand(1) == N1.getOperand(0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006069 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006070 SDValue(CFP00, 0),
6071 DAG.getConstantFP(2.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006072 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006073 N0.getOperand(1), NewCFP);
6074 }
6075
Stephen Lin38103d12013-06-14 18:17:35 +00006076 // (fadd (fmul x, c), (fadd x, x)) -> (fmul x, c+2)
Owen Anderson43da6c72012-08-30 23:35:16 +00006077 if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD &&
6078 N1.getOperand(0) == N1.getOperand(1) &&
6079 N0.getOperand(0) == N1.getOperand(0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006080 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006081 SDValue(CFP01, 0),
6082 DAG.getConstantFP(2.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006083 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006084 N0.getOperand(0), NewCFP);
6085 }
6086 }
6087
6088 if (N1.getOpcode() == ISD::FMUL) {
6089 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
6090 ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1));
6091
Stephen Lin38103d12013-06-14 18:17:35 +00006092 // (fadd x, (fmul c, x)) -> (fmul x, c+1)
Owen Anderson43da6c72012-08-30 23:35:16 +00006093 if (CFP10 && !CFP11 && N1.getOperand(1) == N0) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006094 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006095 SDValue(CFP10, 0),
6096 DAG.getConstantFP(1.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006097 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006098 N0, NewCFP);
6099 }
6100
Stephen Lin38103d12013-06-14 18:17:35 +00006101 // (fadd x, (fmul x, c)) -> (fmul x, c+1)
Owen Anderson43da6c72012-08-30 23:35:16 +00006102 if (CFP11 && !CFP10 && N1.getOperand(0) == N0) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006103 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006104 SDValue(CFP11, 0),
6105 DAG.getConstantFP(1.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006106 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006107 N0, NewCFP);
6108 }
6109
Owen Anderson43da6c72012-08-30 23:35:16 +00006110
Stephen Lin38103d12013-06-14 18:17:35 +00006111 // (fadd (fadd x, x), (fmul c, x)) -> (fmul x, c+2)
6112 if (CFP10 && !CFP11 && N0.getOpcode() == ISD::FADD &&
6113 N0.getOperand(0) == N0.getOperand(1) &&
6114 N1.getOperand(1) == N0.getOperand(0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006115 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006116 SDValue(CFP10, 0),
6117 DAG.getConstantFP(2.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006118 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Stephen Lin38103d12013-06-14 18:17:35 +00006119 N1.getOperand(1), NewCFP);
Owen Anderson43da6c72012-08-30 23:35:16 +00006120 }
6121
Stephen Lin38103d12013-06-14 18:17:35 +00006122 // (fadd (fadd x, x), (fmul x, c)) -> (fmul x, c+2)
6123 if (CFP11 && !CFP10 && N0.getOpcode() == ISD::FADD &&
6124 N0.getOperand(0) == N0.getOperand(1) &&
6125 N1.getOperand(0) == N0.getOperand(0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006126 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006127 SDValue(CFP11, 0),
6128 DAG.getConstantFP(2.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006129 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Stephen Lin38103d12013-06-14 18:17:35 +00006130 N1.getOperand(0), NewCFP);
Owen Anderson43da6c72012-08-30 23:35:16 +00006131 }
6132 }
6133
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006134 if (N0.getOpcode() == ISD::FADD && AllowNewFpConst) {
Shuxin Yang98b93e52013-02-02 00:22:03 +00006135 ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
Stephen Lina553bed2013-06-14 21:33:58 +00006136 // (fadd (fadd x, x), x) -> (fmul x, 3.0)
Shuxin Yang98b93e52013-02-02 00:22:03 +00006137 if (!CFP && N0.getOperand(0) == N0.getOperand(1) &&
Stephen Linb4940152013-07-09 00:44:49 +00006138 (N0.getOperand(0) == N1))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006139 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Shuxin Yang98b93e52013-02-02 00:22:03 +00006140 N1, DAG.getConstantFP(3.0, VT));
Shuxin Yang98b93e52013-02-02 00:22:03 +00006141 }
6142
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006143 if (N1.getOpcode() == ISD::FADD && AllowNewFpConst) {
Shuxin Yang98b93e52013-02-02 00:22:03 +00006144 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
Stephen Lina553bed2013-06-14 21:33:58 +00006145 // (fadd x, (fadd x, x)) -> (fmul x, 3.0)
Shuxin Yang98b93e52013-02-02 00:22:03 +00006146 if (!CFP10 && N1.getOperand(0) == N1.getOperand(1) &&
Stephen Linb4940152013-07-09 00:44:49 +00006147 N1.getOperand(0) == N0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006148 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Shuxin Yang98b93e52013-02-02 00:22:03 +00006149 N0, DAG.getConstantFP(3.0, VT));
Shuxin Yang98b93e52013-02-02 00:22:03 +00006150 }
6151
Stephen Lina553bed2013-06-14 21:33:58 +00006152 // (fadd (fadd x, x), (fadd x, x)) -> (fmul x, 4.0)
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006153 if (AllowNewFpConst &&
6154 N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD &&
Owen Anderson43da6c72012-08-30 23:35:16 +00006155 N0.getOperand(0) == N0.getOperand(1) &&
6156 N1.getOperand(0) == N1.getOperand(1) &&
Stephen Linb4940152013-07-09 00:44:49 +00006157 N0.getOperand(0) == N1.getOperand(0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006158 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006159 N0.getOperand(0),
6160 DAG.getConstantFP(4.0, VT));
Owen Anderson43da6c72012-08-30 23:35:16 +00006161 }
6162
Lang Hamesd693caf2012-06-19 22:51:23 +00006163 // FADD -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00006164 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00006165 DAG.getTarget().Options.UnsafeFPMath) &&
Stephen Line54885a2013-07-09 18:16:56 +00006166 DAG.getTarget().getTargetLowering()->isFMAFasterThanFMulAndFAdd(VT) &&
6167 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT))) {
Lang Hamesd693caf2012-06-19 22:51:23 +00006168
6169 // fold (fadd (fmul x, y), z) -> (fma x, y, z)
Stephen Linb4940152013-07-09 00:44:49 +00006170 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse())
Andrew Trickac6d9be2013-05-25 02:42:55 +00006171 return DAG.getNode(ISD::FMA, SDLoc(N), VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006172 N0.getOperand(0), N0.getOperand(1), N1);
Owen Anderson43da6c72012-08-30 23:35:16 +00006173
Michael Liaob79bff52012-09-01 04:09:16 +00006174 // fold (fadd x, (fmul y, z)) -> (fma y, z, x)
Lang Hamesd693caf2012-06-19 22:51:23 +00006175 // Note: Commutes FADD operands.
Stephen Linb4940152013-07-09 00:44:49 +00006176 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse())
Andrew Trickac6d9be2013-05-25 02:42:55 +00006177 return DAG.getNode(ISD::FMA, SDLoc(N), VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006178 N1.getOperand(0), N1.getOperand(1), N0);
Lang Hamesd693caf2012-06-19 22:51:23 +00006179 }
6180
Dan Gohman475871a2008-07-27 21:46:04 +00006181 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006182}
6183
Dan Gohman475871a2008-07-27 21:46:04 +00006184SDValue DAGCombiner::visitFSUB(SDNode *N) {
6185 SDValue N0 = N->getOperand(0);
6186 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00006187 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6188 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006189 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006190 SDLoc dl(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00006191
Dan Gohman7f321562007-06-25 16:23:39 +00006192 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006193 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006194 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006195 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006196 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006197
Nate Begemana0e221d2005-10-18 00:28:13 +00006198 // fold (fsub c1, c2) -> c1-c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006199 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006200 return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00006201 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006202 if (DAG.getTarget().Options.UnsafeFPMath &&
6203 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00006204 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00006205 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006206 if (DAG.getTarget().Options.UnsafeFPMath &&
6207 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006208 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006209 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00006210 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006211 return DAG.getNode(ISD::FNEG, dl, VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00006212 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00006213 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00006214 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006215 return DAG.getNode(ISD::FADD, dl, VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00006216 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00006217
Bill Wendling5a894342012-03-15 05:12:00 +00006218 // If 'unsafe math' is enabled, fold
Owen Anderson713e9532012-05-07 20:51:25 +00006219 // (fsub x, x) -> 0.0 &
Bill Wendling5a894342012-03-15 05:12:00 +00006220 // (fsub x, (fadd x, y)) -> (fneg y) &
6221 // (fsub x, (fadd y, x)) -> (fneg y)
6222 if (DAG.getTarget().Options.UnsafeFPMath) {
Owen Anderson713e9532012-05-07 20:51:25 +00006223 if (N0 == N1)
6224 return DAG.getConstantFP(0.0f, VT);
6225
Bill Wendling5a894342012-03-15 05:12:00 +00006226 if (N1.getOpcode() == ISD::FADD) {
6227 SDValue N10 = N1->getOperand(0);
6228 SDValue N11 = N1->getOperand(1);
6229
6230 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
6231 &DAG.getTarget().Options))
6232 return GetNegatedExpression(N11, DAG, LegalOperations);
Stephen Lin75d13062013-07-10 20:47:39 +00006233
Stephen Linb4940152013-07-09 00:44:49 +00006234 if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
6235 &DAG.getTarget().Options))
Bill Wendling5a894342012-03-15 05:12:00 +00006236 return GetNegatedExpression(N10, DAG, LegalOperations);
6237 }
6238 }
6239
Lang Hamesd693caf2012-06-19 22:51:23 +00006240 // FSUB -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00006241 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00006242 DAG.getTarget().Options.UnsafeFPMath) &&
Stephen Line54885a2013-07-09 18:16:56 +00006243 DAG.getTarget().getTargetLowering()->isFMAFasterThanFMulAndFAdd(VT) &&
6244 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT))) {
Lang Hamesd693caf2012-06-19 22:51:23 +00006245
6246 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z))
Stephen Linb4940152013-07-09 00:44:49 +00006247 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse())
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006248 return DAG.getNode(ISD::FMA, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006249 N0.getOperand(0), N0.getOperand(1),
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006250 DAG.getNode(ISD::FNEG, dl, VT, N1));
Lang Hamesd693caf2012-06-19 22:51:23 +00006251
6252 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x)
6253 // Note: Commutes FSUB operands.
Stephen Lin75d13062013-07-10 20:47:39 +00006254 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse())
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006255 return DAG.getNode(ISD::FMA, dl, VT,
6256 DAG.getNode(ISD::FNEG, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006257 N1.getOperand(0)),
6258 N1.getOperand(1), N0);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006259
Stephen Linb4940152013-07-09 00:44:49 +00006260 // fold (fsub (fneg (fmul, x, y)), z) -> (fma (fneg x), y, (fneg z))
Stephen Lin155615d2013-07-08 00:37:03 +00006261 if (N0.getOpcode() == ISD::FNEG &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006262 N0.getOperand(0).getOpcode() == ISD::FMUL &&
6263 N0->hasOneUse() && N0.getOperand(0).hasOneUse()) {
6264 SDValue N00 = N0.getOperand(0).getOperand(0);
6265 SDValue N01 = N0.getOperand(0).getOperand(1);
6266 return DAG.getNode(ISD::FMA, dl, VT,
6267 DAG.getNode(ISD::FNEG, dl, VT, N00), N01,
6268 DAG.getNode(ISD::FNEG, dl, VT, N1));
6269 }
Lang Hamesd693caf2012-06-19 22:51:23 +00006270 }
6271
Dan Gohman475871a2008-07-27 21:46:04 +00006272 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006273}
6274
Dan Gohman475871a2008-07-27 21:46:04 +00006275SDValue DAGCombiner::visitFMUL(SDNode *N) {
6276 SDValue N0 = N->getOperand(0);
6277 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00006278 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6279 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006280 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006281 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006282
Dan Gohman7f321562007-06-25 16:23:39 +00006283 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006284 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006285 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006286 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006287 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006288
Nate Begeman11af4ea2005-10-17 20:40:11 +00006289 // fold (fmul c1, c2) -> c1*c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006290 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006291 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00006292 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00006293 if (N0CFP && !N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006294 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N1, N0);
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006295 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006296 if (DAG.getTarget().Options.UnsafeFPMath &&
6297 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00006298 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00006299 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006300 if (DAG.getTarget().Options.UnsafeFPMath &&
6301 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00006302 return N1;
Owen Anderson363e4b92012-05-02 21:32:35 +00006303 // fold (fmul A, 1.0) -> A
6304 if (N1CFP && N1CFP->isExactlyValue(1.0))
6305 return N0;
Nate Begeman11af4ea2005-10-17 20:40:11 +00006306 // fold (fmul X, 2.0) -> (fadd X, X)
6307 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006308 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00006309 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00006310 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00006311 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006312 return DAG.getNode(ISD::FNEG, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006313
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006314 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006315 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006316 &DAG.getTarget().Options)) {
Stephen Lin155615d2013-07-08 00:37:03 +00006317 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006318 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006319 // Both can be negated for free, check to see if at least one is cheaper
6320 // negated.
6321 if (LHSNeg == 2 || RHSNeg == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006322 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006323 GetNegatedExpression(N0, DAG, LegalOperations),
6324 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006325 }
6326 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006327
Chris Lattnerddae4bd2007-01-08 23:04:05 +00006328 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006329 if (DAG.getTarget().Options.UnsafeFPMath &&
6330 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006331 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006332 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0.getOperand(0),
6333 DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Dale Johannesende064702009-02-06 21:50:26 +00006334 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006335
Dan Gohman475871a2008-07-27 21:46:04 +00006336 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006337}
6338
Owen Anderson062c0a52012-05-02 22:17:40 +00006339SDValue DAGCombiner::visitFMA(SDNode *N) {
6340 SDValue N0 = N->getOperand(0);
6341 SDValue N1 = N->getOperand(1);
6342 SDValue N2 = N->getOperand(2);
6343 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6344 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6345 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006346 SDLoc dl(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00006347
Owen Anderson607ebde2012-11-01 02:00:53 +00006348 if (DAG.getTarget().Options.UnsafeFPMath) {
6349 if (N0CFP && N0CFP->isZero())
6350 return N2;
6351 if (N1CFP && N1CFP->isZero())
6352 return N2;
6353 }
Owen Anderson062c0a52012-05-02 22:17:40 +00006354 if (N0CFP && N0CFP->isExactlyValue(1.0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006355 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N1, N2);
Owen Anderson062c0a52012-05-02 22:17:40 +00006356 if (N1CFP && N1CFP->isExactlyValue(1.0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006357 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N2);
Owen Anderson062c0a52012-05-02 22:17:40 +00006358
Owen Anderson85ef6f42012-05-30 18:50:39 +00006359 // Canonicalize (fma c, x, y) -> (fma x, c, y)
Owen Andersonf917d202012-05-30 18:54:50 +00006360 if (N0CFP && !N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006361 return DAG.getNode(ISD::FMA, SDLoc(N), VT, N1, N0, N2);
Owen Anderson85ef6f42012-05-30 18:50:39 +00006362
Owen Anderson58d57292012-09-01 06:04:27 +00006363 // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2)
6364 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6365 N2.getOpcode() == ISD::FMUL &&
6366 N0 == N2.getOperand(0) &&
6367 N2.getOperand(1).getOpcode() == ISD::ConstantFP) {
6368 return DAG.getNode(ISD::FMUL, dl, VT, N0,
6369 DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1)));
6370 }
6371
6372
6373 // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y)
6374 if (DAG.getTarget().Options.UnsafeFPMath &&
6375 N0.getOpcode() == ISD::FMUL && N1CFP &&
6376 N0.getOperand(1).getOpcode() == ISD::ConstantFP) {
6377 return DAG.getNode(ISD::FMA, dl, VT,
6378 N0.getOperand(0),
6379 DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)),
6380 N2);
6381 }
6382
6383 // (fma x, 1, y) -> (fadd x, y)
6384 // (fma x, -1, y) -> (fadd (fneg x), y)
6385 if (N1CFP) {
6386 if (N1CFP->isExactlyValue(1.0))
6387 return DAG.getNode(ISD::FADD, dl, VT, N0, N2);
6388
6389 if (N1CFP->isExactlyValue(-1.0) &&
6390 (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) {
6391 SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0);
6392 AddToWorkList(RHSNeg.getNode());
6393 return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg);
6394 }
6395 }
6396
6397 // (fma x, c, x) -> (fmul x, (c+1))
Stephen Linb4940152013-07-09 00:44:49 +00006398 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2)
6399 return DAG.getNode(ISD::FMUL, dl, VT, N0,
Owen Anderson58d57292012-09-01 06:04:27 +00006400 DAG.getNode(ISD::FADD, dl, VT,
6401 N1, DAG.getConstantFP(1.0, VT)));
Owen Anderson58d57292012-09-01 06:04:27 +00006402
6403 // (fma x, c, (fneg x)) -> (fmul x, (c-1))
6404 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
Stephen Linb4940152013-07-09 00:44:49 +00006405 N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0)
6406 return DAG.getNode(ISD::FMUL, dl, VT, N0,
Owen Anderson58d57292012-09-01 06:04:27 +00006407 DAG.getNode(ISD::FADD, dl, VT,
6408 N1, DAG.getConstantFP(-1.0, VT)));
Owen Anderson58d57292012-09-01 06:04:27 +00006409
6410
Owen Anderson062c0a52012-05-02 22:17:40 +00006411 return SDValue();
6412}
6413
Dan Gohman475871a2008-07-27 21:46:04 +00006414SDValue DAGCombiner::visitFDIV(SDNode *N) {
6415 SDValue N0 = N->getOperand(0);
6416 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006417 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6418 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006419 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006420 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006421
Dan Gohman7f321562007-06-25 16:23:39 +00006422 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006423 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006424 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006425 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006426 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006427
Nate Begemana148d982006-01-18 22:35:16 +00006428 // fold (fdiv c1, c2) -> c1/c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006429 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006430 return DAG.getNode(ISD::FDIV, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006431
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00006432 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
Ulrich Weigande669c932012-10-29 18:35:49 +00006433 if (N1CFP && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00006434 // Compute the reciprocal 1.0 / c2.
6435 APFloat N1APF = N1CFP->getValueAPF();
6436 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
6437 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00006438 // Only do the transform if the reciprocal is a legal fp immediate that
6439 // isn't too nasty (eg NaN, denormal, ...).
6440 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00006441 (!LegalOperations ||
6442 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
6443 // backend)... we should handle this gracefully after Legalize.
6444 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
6445 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
6446 TLI.isFPImmLegal(Recip, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006447 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0,
Duncan Sands961d6662012-04-07 20:04:00 +00006448 DAG.getConstantFP(Recip, VT));
6449 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006450
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006451 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006452 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006453 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006454 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006455 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006456 // Both can be negated for free, check to see if at least one is cheaper
6457 // negated.
6458 if (LHSNeg == 2 || RHSNeg == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006459 return DAG.getNode(ISD::FDIV, SDLoc(N), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006460 GetNegatedExpression(N0, DAG, LegalOperations),
6461 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006462 }
6463 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006464
Dan Gohman475871a2008-07-27 21:46:04 +00006465 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006466}
6467
Dan Gohman475871a2008-07-27 21:46:04 +00006468SDValue DAGCombiner::visitFREM(SDNode *N) {
6469 SDValue N0 = N->getOperand(0);
6470 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006471 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6472 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006473 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00006474
Nate Begemana148d982006-01-18 22:35:16 +00006475 // fold (frem c1, c2) -> fmod(c1,c2)
Ulrich Weigande669c932012-10-29 18:35:49 +00006476 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006477 return DAG.getNode(ISD::FREM, SDLoc(N), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00006478
Dan Gohman475871a2008-07-27 21:46:04 +00006479 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006480}
6481
Dan Gohman475871a2008-07-27 21:46:04 +00006482SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
6483 SDValue N0 = N->getOperand(0);
6484 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00006485 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6486 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006487 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00006488
Ulrich Weigande669c932012-10-29 18:35:49 +00006489 if (N0CFP && N1CFP) // Constant fold
Andrew Trickac6d9be2013-05-25 02:42:55 +00006490 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006491
Chris Lattner12d83032006-03-05 05:30:57 +00006492 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00006493 const APFloat& V = N1CFP->getValueAPF();
Sylvestre Ledru94c22712012-09-27 10:14:43 +00006494 // copysign(x, c1) -> fabs(x) iff ispos(c1)
6495 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00006496 if (!V.isNegative()) {
6497 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006498 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00006499 } else {
6500 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006501 return DAG.getNode(ISD::FNEG, SDLoc(N), VT,
6502 DAG.getNode(ISD::FABS, SDLoc(N0), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00006503 }
Chris Lattner12d83032006-03-05 05:30:57 +00006504 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006505
Chris Lattner12d83032006-03-05 05:30:57 +00006506 // copysign(fabs(x), y) -> copysign(x, y)
6507 // copysign(fneg(x), y) -> copysign(x, y)
6508 // copysign(copysign(x,z), y) -> copysign(x, y)
6509 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
6510 N0.getOpcode() == ISD::FCOPYSIGN)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006511 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006512 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00006513
6514 // copysign(x, abs(y)) -> abs(x)
6515 if (N1.getOpcode() == ISD::FABS)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006516 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006517
Chris Lattner12d83032006-03-05 05:30:57 +00006518 // copysign(x, copysign(y,z)) -> copysign(x, z)
6519 if (N1.getOpcode() == ISD::FCOPYSIGN)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006520 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006521 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006522
Chris Lattner12d83032006-03-05 05:30:57 +00006523 // copysign(x, fp_extend(y)) -> copysign(x, y)
6524 // copysign(x, fp_round(y)) -> copysign(x, y)
6525 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006526 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006527 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006528
Dan Gohman475871a2008-07-27 21:46:04 +00006529 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00006530}
6531
Dan Gohman475871a2008-07-27 21:46:04 +00006532SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
6533 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006534 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006535 EVT VT = N->getValueType(0);
6536 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00006537
Nate Begeman1d4d4142005-09-01 00:19:25 +00006538 // fold (sint_to_fp c1) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006539 if (N0C &&
Stuart Hastings7e334182011-03-02 19:36:30 +00006540 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006541 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006542 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006543 return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006544
Chris Lattnercda88752008-06-26 00:16:49 +00006545 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
6546 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006547 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
6548 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006549 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006550 if (DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006551 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006552 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006553
Nadav Rotemed1a3352012-07-23 07:59:50 +00006554 // The next optimizations are desireable only if SELECT_CC can be lowered.
6555 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6556 // having to say they don't support SELECT_CC on every type the DAG knows
6557 // about, since there is no way to mark an opcode illegal at all value types
6558 // (See also visitSELECT)
6559 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6560 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6561 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 &&
6562 !VT.isVector() &&
6563 (!LegalOperations ||
6564 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6565 SDValue Ops[] =
6566 { N0.getOperand(0), N0.getOperand(1),
6567 DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT),
6568 N0.getOperand(2) };
Andrew Trickac6d9be2013-05-25 02:42:55 +00006569 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
Nadav Rotemed1a3352012-07-23 07:59:50 +00006570 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006571
Nadav Rotemed1a3352012-07-23 07:59:50 +00006572 // fold (sint_to_fp (zext (setcc x, y, cc))) ->
6573 // (select_cc x, y, 1.0, 0.0,, cc)
6574 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
6575 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() &&
6576 (!LegalOperations ||
6577 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6578 SDValue Ops[] =
6579 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1),
6580 DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT),
6581 N0.getOperand(0).getOperand(2) };
Andrew Trickac6d9be2013-05-25 02:42:55 +00006582 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
Nadav Rotemed1a3352012-07-23 07:59:50 +00006583 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006584 }
6585
Dan Gohman475871a2008-07-27 21:46:04 +00006586 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006587}
6588
Dan Gohman475871a2008-07-27 21:46:04 +00006589SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
6590 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006591 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006592 EVT VT = N->getValueType(0);
6593 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00006594
Nate Begeman1d4d4142005-09-01 00:19:25 +00006595 // fold (uint_to_fp c1) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006596 if (N0C &&
Stuart Hastings7e334182011-03-02 19:36:30 +00006597 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006598 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006599 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006600 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006601
Chris Lattnercda88752008-06-26 00:16:49 +00006602 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6603 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006604 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6605 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006606 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006607 if (DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006608 return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006609 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006610
Nadav Rotemed1a3352012-07-23 07:59:50 +00006611 // The next optimizations are desireable only if SELECT_CC can be lowered.
6612 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6613 // having to say they don't support SELECT_CC on every type the DAG knows
6614 // about, since there is no way to mark an opcode illegal at all value types
6615 // (See also visitSELECT)
6616 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6617 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
Owen Andersond9bf71f2012-07-09 20:31:12 +00006618
Nadav Rotemed1a3352012-07-23 07:59:50 +00006619 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() &&
6620 (!LegalOperations ||
6621 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6622 SDValue Ops[] =
6623 { N0.getOperand(0), N0.getOperand(1),
6624 DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT),
6625 N0.getOperand(2) };
Andrew Trickac6d9be2013-05-25 02:42:55 +00006626 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
Nadav Rotemed1a3352012-07-23 07:59:50 +00006627 }
6628 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006629
Dan Gohman475871a2008-07-27 21:46:04 +00006630 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006631}
6632
Dan Gohman475871a2008-07-27 21:46:04 +00006633SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
6634 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006635 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006636 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006637
Nate Begeman1d4d4142005-09-01 00:19:25 +00006638 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00006639 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006640 return DAG.getNode(ISD::FP_TO_SINT, SDLoc(N), VT, N0);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006641
Dan Gohman475871a2008-07-27 21:46:04 +00006642 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006643}
6644
Dan Gohman475871a2008-07-27 21:46:04 +00006645SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
6646 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006647 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006648 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006649
Nate Begeman1d4d4142005-09-01 00:19:25 +00006650 // fold (fp_to_uint c1fp) -> c1
Ulrich Weigande669c932012-10-29 18:35:49 +00006651 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006652 return DAG.getNode(ISD::FP_TO_UINT, SDLoc(N), VT, N0);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006653
Dan Gohman475871a2008-07-27 21:46:04 +00006654 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006655}
6656
Dan Gohman475871a2008-07-27 21:46:04 +00006657SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
6658 SDValue N0 = N->getOperand(0);
6659 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006660 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006661 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006662
Nate Begeman1d4d4142005-09-01 00:19:25 +00006663 // fold (fp_round c1fp) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006664 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006665 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006666
Chris Lattner79dbea52006-03-13 06:26:26 +00006667 // fold (fp_round (fp_extend x)) -> x
6668 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
6669 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006670
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006671 // fold (fp_round (fp_round x)) -> (fp_round x)
6672 if (N0.getOpcode() == ISD::FP_ROUND) {
6673 // This is a value preserving truncation if both round's are.
6674 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006675 N0.getNode()->getConstantOperandVal(1) == 1;
Andrew Trickac6d9be2013-05-25 02:42:55 +00006676 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006677 DAG.getIntPtrConstant(IsTrunc));
6678 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006679
Chris Lattner79dbea52006-03-13 06:26:26 +00006680 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00006681 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006682 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, SDLoc(N0), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006683 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00006684 AddToWorkList(Tmp.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006685 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006686 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00006687 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006688
Dan Gohman475871a2008-07-27 21:46:04 +00006689 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006690}
6691
Dan Gohman475871a2008-07-27 21:46:04 +00006692SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6693 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006694 EVT VT = N->getValueType(0);
6695 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00006696 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006697
Nate Begeman1d4d4142005-09-01 00:19:25 +00006698 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00006699 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00006700 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006701 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006702 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006703
Dan Gohman475871a2008-07-27 21:46:04 +00006704 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006705}
6706
Dan Gohman475871a2008-07-27 21:46:04 +00006707SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6708 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006709 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006710 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006711
Chris Lattner5938bef2007-12-29 06:55:23 +00006712 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00006713 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00006714 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00006715 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006716
Nate Begeman1d4d4142005-09-01 00:19:25 +00006717 // fold (fp_extend c1fp) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006718 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006719 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006720
6721 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6722 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006723 if (N0.getOpcode() == ISD::FP_ROUND
6724 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006725 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006726 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006727 if (VT.bitsLT(In.getValueType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006728 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006729 In, N0.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006730 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006731 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006732
Chris Lattner0bd48932008-01-17 07:00:52 +00006733 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006734 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006735 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006736 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006737 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006738 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006739 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006740 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006741 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006742 LN0->isVolatile(), LN0->isNonTemporal(),
6743 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006744 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006745 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00006746 DAG.getNode(ISD::FP_ROUND, SDLoc(N0),
Bill Wendling0225a1d2009-01-30 23:15:49 +00006747 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006748 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006749 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006750 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006751
Dan Gohman475871a2008-07-27 21:46:04 +00006752 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006753}
6754
Dan Gohman475871a2008-07-27 21:46:04 +00006755SDValue DAGCombiner::visitFNEG(SDNode *N) {
6756 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006757 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006758
Craig Topperdd201ff2012-09-11 01:45:21 +00006759 if (VT.isVector()) {
6760 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6761 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper956342b2012-09-09 22:58:45 +00006762 }
6763
Owen Andersonafd3d562012-03-06 00:29:31 +00006764 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6765 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006766 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006767
Chris Lattner3bd39d42008-01-27 17:42:27 +00006768 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6769 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006770 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006771 !VT.isVector() &&
6772 N0.getNode()->hasOneUse() &&
6773 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006774 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006775 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006776 if (IntVT.isInteger() && !IntVT.isVector()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006777 Int = DAG.getNode(ISD::XOR, SDLoc(N0), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006778 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006779 AddToWorkList(Int.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006780 return DAG.getNode(ISD::BITCAST, SDLoc(N),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006781 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006782 }
6783 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006784
Owen Anderson58d57292012-09-01 06:04:27 +00006785 // (fneg (fmul c, x)) -> (fmul -c, x)
6786 if (N0.getOpcode() == ISD::FMUL) {
6787 ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
Stephen Linb4940152013-07-09 00:44:49 +00006788 if (CFP1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006789 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson58d57292012-09-01 06:04:27 +00006790 N0.getOperand(0),
Andrew Trickac6d9be2013-05-25 02:42:55 +00006791 DAG.getNode(ISD::FNEG, SDLoc(N), VT,
Owen Anderson58d57292012-09-01 06:04:27 +00006792 N0.getOperand(1)));
Owen Anderson58d57292012-09-01 06:04:27 +00006793 }
6794
Dan Gohman475871a2008-07-27 21:46:04 +00006795 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006796}
6797
Owen Anderson7c626d32012-08-13 23:32:49 +00006798SDValue DAGCombiner::visitFCEIL(SDNode *N) {
6799 SDValue N0 = N->getOperand(0);
6800 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6801 EVT VT = N->getValueType(0);
6802
6803 // fold (fceil c1) -> fceil(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006804 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006805 return DAG.getNode(ISD::FCEIL, SDLoc(N), VT, N0);
Owen Anderson7c626d32012-08-13 23:32:49 +00006806
6807 return SDValue();
6808}
6809
6810SDValue DAGCombiner::visitFTRUNC(SDNode *N) {
6811 SDValue N0 = N->getOperand(0);
6812 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6813 EVT VT = N->getValueType(0);
6814
6815 // fold (ftrunc c1) -> ftrunc(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006816 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006817 return DAG.getNode(ISD::FTRUNC, SDLoc(N), VT, N0);
Owen Anderson7c626d32012-08-13 23:32:49 +00006818
6819 return SDValue();
6820}
6821
6822SDValue DAGCombiner::visitFFLOOR(SDNode *N) {
6823 SDValue N0 = N->getOperand(0);
6824 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6825 EVT VT = N->getValueType(0);
6826
6827 // fold (ffloor c1) -> ffloor(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006828 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006829 return DAG.getNode(ISD::FFLOOR, SDLoc(N), VT, N0);
Owen Anderson7c626d32012-08-13 23:32:49 +00006830
6831 return SDValue();
6832}
6833
Dan Gohman475871a2008-07-27 21:46:04 +00006834SDValue DAGCombiner::visitFABS(SDNode *N) {
6835 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006836 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006837 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006838
Craig Topperdd201ff2012-09-11 01:45:21 +00006839 if (VT.isVector()) {
6840 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6841 if (FoldedVOp.getNode()) return FoldedVOp;
6842 }
6843
Nate Begeman1d4d4142005-09-01 00:19:25 +00006844 // fold (fabs c1) -> fabs(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006845 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006846 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006847 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006848 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006849 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006850 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006851 // fold (fabs (fcopysign x, y)) -> (fabs x)
6852 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006853 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006854
Chris Lattner3bd39d42008-01-27 17:42:27 +00006855 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6856 // constant pool values.
Stephen Lin155615d2013-07-08 00:37:03 +00006857 if (!TLI.isFAbsFree(VT) &&
Owen Anderson29f60f32012-04-02 22:10:29 +00006858 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006859 N0.getOperand(0).getValueType().isInteger() &&
6860 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006861 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006862 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006863 if (IntVT.isInteger() && !IntVT.isVector()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006864 Int = DAG.getNode(ISD::AND, SDLoc(N0), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006865 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006866 AddToWorkList(Int.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006867 return DAG.getNode(ISD::BITCAST, SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006868 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006869 }
6870 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006871
Dan Gohman475871a2008-07-27 21:46:04 +00006872 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006873}
6874
Dan Gohman475871a2008-07-27 21:46:04 +00006875SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6876 SDValue Chain = N->getOperand(0);
6877 SDValue N1 = N->getOperand(1);
6878 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006879
Dan Gohmane0f06c72009-11-17 00:47:23 +00006880 // If N is a constant we could fold this into a fallthrough or unconditional
6881 // branch. However that doesn't happen very often in normal code, because
6882 // Instcombine/SimplifyCFG should have handled the available opportunities.
6883 // If we did this folding here, it would be necessary to update the
6884 // MachineBasicBlock CFG, which is awkward.
6885
Nate Begeman750ac1b2006-02-01 07:19:44 +00006886 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6887 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006888 if (N1.getOpcode() == ISD::SETCC &&
Tom Stellard3ef53832013-03-08 15:36:57 +00006889 TLI.isOperationLegalOrCustom(ISD::BR_CC,
6890 N1.getOperand(0).getValueType())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006891 return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006892 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006893 N1.getOperand(0), N1.getOperand(1), N2);
6894 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006895
Evan Cheng2a135ae2010-10-04 22:41:01 +00006896 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6897 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6898 (N1.getOperand(0).hasOneUse() &&
6899 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6900 SDNode *Trunc = 0;
6901 if (N1.getOpcode() == ISD::TRUNCATE) {
6902 // Look pass the truncate.
6903 Trunc = N1.getNode();
6904 N1 = N1.getOperand(0);
6905 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006906
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006907 // Match this pattern so that we can generate simpler code:
6908 //
6909 // %a = ...
6910 // %b = and i32 %a, 2
6911 // %c = srl i32 %b, 1
6912 // brcond i32 %c ...
6913 //
6914 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006915 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006916 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006917 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006918 // %c = setcc eq %b, 0
6919 // brcond %c ...
6920 //
6921 // This applies only when the AND constant value has one bit set and the
6922 // SRL constant is equal to the log2 of the AND constant. The back-end is
6923 // smart enough to convert the result into a TEST/JMP sequence.
6924 SDValue Op0 = N1.getOperand(0);
6925 SDValue Op1 = N1.getOperand(1);
6926
6927 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006928 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006929 SDValue AndOp1 = Op0.getOperand(1);
6930
6931 if (AndOp1.getOpcode() == ISD::Constant) {
6932 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6933
6934 if (AndConst.isPowerOf2() &&
6935 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6936 SDValue SetCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00006937 DAG.getSetCC(SDLoc(N),
Matt Arsenault225ed702013-05-18 00:21:46 +00006938 getSetCCResultType(Op0.getValueType()),
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006939 Op0, DAG.getConstant(0, Op0.getValueType()),
6940 ISD::SETNE);
6941
Andrew Trickac6d9be2013-05-25 02:42:55 +00006942 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, SDLoc(N),
Evan Chengd40d03e2010-01-06 19:38:29 +00006943 MVT::Other, Chain, SetCC, N2);
6944 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6945 // will convert it back to (X & C1) >> C2.
6946 CombineTo(N, NewBRCond, false);
6947 // Truncate is dead.
6948 if (Trunc) {
6949 removeFromWorkList(Trunc);
6950 DAG.DeleteNode(Trunc);
6951 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006952 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006953 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006954 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006955 removeFromWorkList(N1.getNode());
6956 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006957 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006958 }
6959 }
6960 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006961
6962 if (Trunc)
6963 // Restore N1 if the above transformation doesn't match.
6964 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006965 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006966
Evan Cheng2c755ba2010-02-27 07:36:59 +00006967 // Transform br(xor(x, y)) -> br(x != y)
6968 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6969 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6970 SDNode *TheXor = N1.getNode();
6971 SDValue Op0 = TheXor->getOperand(0);
6972 SDValue Op1 = TheXor->getOperand(1);
6973 if (Op0.getOpcode() == Op1.getOpcode()) {
6974 // Avoid missing important xor optimizations.
6975 SDValue Tmp = visitXOR(TheXor);
Evan Cheng78ec0252013-01-09 20:56:40 +00006976 if (Tmp.getNode()) {
6977 if (Tmp.getNode() != TheXor) {
6978 DEBUG(dbgs() << "\nReplacing.8 ";
6979 TheXor->dump(&DAG);
6980 dbgs() << "\nWith: ";
6981 Tmp.getNode()->dump(&DAG);
6982 dbgs() << '\n');
6983 WorkListRemover DeadNodes(*this);
6984 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
6985 removeFromWorkList(TheXor);
6986 DAG.DeleteNode(TheXor);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006987 return DAG.getNode(ISD::BRCOND, SDLoc(N),
Evan Cheng78ec0252013-01-09 20:56:40 +00006988 MVT::Other, Chain, Tmp, N2);
6989 }
6990
Benjamin Kramer0b68b752013-03-30 21:28:18 +00006991 // visitXOR has changed XOR's operands or replaced the XOR completely,
6992 // bail out.
6993 return SDValue(N, 0);
Evan Cheng2c755ba2010-02-27 07:36:59 +00006994 }
6995 }
6996
6997 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6998 bool Equal = false;
6999 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
7000 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
7001 Op0.getOpcode() == ISD::XOR) {
7002 TheXor = Op0.getNode();
7003 Equal = true;
7004 }
7005
Evan Cheng2a135ae2010-10-04 22:41:01 +00007006 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00007007 if (LegalTypes)
Matt Arsenault225ed702013-05-18 00:21:46 +00007008 SetCCVT = getSetCCResultType(SetCCVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007009 SDValue SetCC = DAG.getSetCC(SDLoc(TheXor),
Evan Cheng2c755ba2010-02-27 07:36:59 +00007010 SetCCVT,
7011 Op0, Op1,
7012 Equal ? ISD::SETEQ : ISD::SETNE);
7013 // Replace the uses of XOR with SETCC
7014 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007015 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Cheng2a135ae2010-10-04 22:41:01 +00007016 removeFromWorkList(N1.getNode());
7017 DAG.DeleteNode(N1.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00007018 return DAG.getNode(ISD::BRCOND, SDLoc(N),
Evan Cheng2c755ba2010-02-27 07:36:59 +00007019 MVT::Other, Chain, SetCC, N2);
7020 }
7021 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00007022
Dan Gohman475871a2008-07-27 21:46:04 +00007023 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00007024}
7025
Chris Lattner3ea0b472005-10-05 06:47:48 +00007026// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
7027//
Dan Gohman475871a2008-07-27 21:46:04 +00007028SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00007029 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00007030 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00007031
Dan Gohmane0f06c72009-11-17 00:47:23 +00007032 // If N is a constant we could fold this into a fallthrough or unconditional
7033 // branch. However that doesn't happen very often in normal code, because
7034 // Instcombine/SimplifyCFG should have handled the available opportunities.
7035 // If we did this folding here, it would be necessary to update the
7036 // MachineBasicBlock CFG, which is awkward.
7037
Duncan Sands8eab8a22008-06-09 11:32:28 +00007038 // Use SimplifySetCC to simplify SETCC's.
Matt Arsenault225ed702013-05-18 00:21:46 +00007039 SDValue Simp = SimplifySetCC(getSetCCResultType(CondLHS.getValueType()),
Andrew Trickac6d9be2013-05-25 02:42:55 +00007040 CondLHS, CondRHS, CC->get(), SDLoc(N),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00007041 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00007042 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00007043
Nate Begemane17daeb2005-10-05 21:43:42 +00007044 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00007045 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Andrew Trickac6d9be2013-05-25 02:42:55 +00007046 return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00007047 N->getOperand(0), Simp.getOperand(2),
7048 Simp.getOperand(0), Simp.getOperand(1),
7049 N->getOperand(4));
7050
Dan Gohman475871a2008-07-27 21:46:04 +00007051 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00007052}
7053
Evan Chengc4b527a2012-01-13 01:37:24 +00007054/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
7055/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00007056/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00007057static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
7058 SelectionDAG &DAG,
7059 const TargetLowering &TLI) {
7060 EVT VT;
7061 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
7062 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
7063 return false;
7064 VT = Use->getValueType(0);
7065 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
7066 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
7067 return false;
7068 VT = ST->getValue().getValueType();
7069 } else
7070 return false;
7071
Chandler Carruth56d433d2013-01-07 15:14:13 +00007072 TargetLowering::AddrMode AM;
Evan Chengc4b527a2012-01-13 01:37:24 +00007073 if (N->getOpcode() == ISD::ADD) {
7074 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
7075 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00007076 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00007077 AM.BaseOffs = Offset->getSExtValue();
7078 else
Evan Cheng03be3622012-03-06 23:33:32 +00007079 // [reg +/- reg]
7080 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00007081 } else if (N->getOpcode() == ISD::SUB) {
7082 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
7083 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00007084 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00007085 AM.BaseOffs = -Offset->getSExtValue();
7086 else
Evan Cheng03be3622012-03-06 23:33:32 +00007087 // [reg +/- reg]
7088 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00007089 } else
7090 return false;
7091
7092 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
7093}
7094
Duncan Sandsec87aa82008-06-15 20:12:31 +00007095/// CombineToPreIndexedLoadStore - Try turning a load / store into a
7096/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00007097/// and it has other uses besides the load / store. After the
7098/// transformation, the new indexed load / store has effectively folded
7099/// the add / subtract in and all of its other uses are redirected to the
7100/// new load / store.
7101bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00007102 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00007103 return false;
7104
7105 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007106 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00007107 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00007108 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007109 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007110 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007111 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00007112 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00007113 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
7114 return false;
7115 Ptr = LD->getBasePtr();
7116 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007117 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007118 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007119 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00007120 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
7121 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
7122 return false;
7123 Ptr = ST->getBasePtr();
7124 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007125 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00007126 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007127 }
Chris Lattner448f2192006-11-11 00:39:41 +00007128
Chris Lattner9f1794e2006-11-11 00:56:29 +00007129 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
7130 // out. There is no reason to make this a preinc/predec.
7131 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00007132 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00007133 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00007134
Chris Lattner9f1794e2006-11-11 00:56:29 +00007135 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00007136 SDValue BasePtr;
7137 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007138 ISD::MemIndexedMode AM = ISD::UNINDEXED;
7139 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
7140 return false;
Hal Finkel089a5f82013-02-08 21:35:47 +00007141
7142 // Backends without true r+i pre-indexed forms may need to pass a
7143 // constant base with a variable offset so that constant coercion
7144 // will work with the patterns in canonical form.
7145 bool Swapped = false;
7146 if (isa<ConstantSDNode>(BasePtr)) {
7147 std::swap(BasePtr, Offset);
7148 Swapped = true;
7149 }
7150
Evan Chenga7d4a042007-05-03 23:52:19 +00007151 // Don't create a indexed load / store with zero offset.
7152 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00007153 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00007154 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007155
Chris Lattner41e53fd2006-11-11 01:00:15 +00007156 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00007157 // 1) The new base ptr is a frame index.
7158 // 2) If N is a store and the new base ptr is either the same as or is a
Chris Lattner9f1794e2006-11-11 00:56:29 +00007159 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00007160 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00007161 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00007162 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00007163
Chris Lattner41e53fd2006-11-11 01:00:15 +00007164 // Check #1. Preinc'ing a frame index would require copying the stack pointer
7165 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00007166 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00007167 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007168
Chris Lattner41e53fd2006-11-11 01:00:15 +00007169 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00007170 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00007171 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007172 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007173 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00007174 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007175
Hal Finkel089a5f82013-02-08 21:35:47 +00007176 // If the offset is a constant, there may be other adds of constants that
7177 // can be folded with this one. We should do this to avoid having to keep
7178 // a copy of the original base pointer.
7179 SmallVector<SDNode *, 16> OtherUses;
7180 if (isa<ConstantSDNode>(Offset))
7181 for (SDNode::use_iterator I = BasePtr.getNode()->use_begin(),
7182 E = BasePtr.getNode()->use_end(); I != E; ++I) {
7183 SDNode *Use = *I;
7184 if (Use == Ptr.getNode())
7185 continue;
7186
7187 if (Use->isPredecessorOf(N))
7188 continue;
7189
7190 if (Use->getOpcode() != ISD::ADD && Use->getOpcode() != ISD::SUB) {
7191 OtherUses.clear();
7192 break;
7193 }
7194
7195 SDValue Op0 = Use->getOperand(0), Op1 = Use->getOperand(1);
7196 if (Op1.getNode() == BasePtr.getNode())
7197 std::swap(Op0, Op1);
7198 assert(Op0.getNode() == BasePtr.getNode() &&
7199 "Use of ADD/SUB but not an operand");
7200
7201 if (!isa<ConstantSDNode>(Op1)) {
7202 OtherUses.clear();
7203 break;
7204 }
7205
7206 // FIXME: In some cases, we can be smarter about this.
7207 if (Op1.getValueType() != Offset.getValueType()) {
7208 OtherUses.clear();
7209 break;
7210 }
7211
7212 OtherUses.push_back(Use);
7213 }
7214
7215 if (Swapped)
7216 std::swap(BasePtr, Offset);
7217
Evan Chengc843abe2007-05-24 02:35:39 +00007218 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00007219 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00007220
7221 // Caches for hasPredecessorHelper
7222 SmallPtrSet<const SDNode *, 32> Visited;
7223 SmallVector<const SDNode *, 16> Worklist;
7224
Gabor Greifba36cb52008-08-28 21:40:38 +00007225 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7226 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00007227 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007228 if (Use == N)
7229 continue;
Lang Hames944520f2011-07-07 04:31:51 +00007230 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007231 return false;
7232
Evan Chengc4b527a2012-01-13 01:37:24 +00007233 // If Ptr may be folded in addressing mode of other use, then it's
7234 // not profitable to do this transformation.
7235 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007236 RealUse = true;
7237 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007238
Chris Lattner9f1794e2006-11-11 00:56:29 +00007239 if (!RealUse)
7240 return false;
7241
Dan Gohman475871a2008-07-27 21:46:04 +00007242 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007243 if (isLoad)
Andrew Trickac6d9be2013-05-25 02:42:55 +00007244 Result = DAG.getIndexedLoad(SDValue(N,0), SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00007245 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007246 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00007247 Result = DAG.getIndexedStore(SDValue(N,0), SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00007248 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007249 ++PreIndexedNodes;
7250 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00007251 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007252 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007253 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007254 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007255 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007256 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007257 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007258 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7259 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007260 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007261 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007262 }
7263
Chris Lattner9f1794e2006-11-11 00:56:29 +00007264 // Finally, since the node is now dead, remove it from the graph.
7265 DAG.DeleteNode(N);
7266
Hal Finkel089a5f82013-02-08 21:35:47 +00007267 if (Swapped)
7268 std::swap(BasePtr, Offset);
7269
7270 // Replace other uses of BasePtr that can be updated to use Ptr
7271 for (unsigned i = 0, e = OtherUses.size(); i != e; ++i) {
7272 unsigned OffsetIdx = 1;
7273 if (OtherUses[i]->getOperand(OffsetIdx).getNode() == BasePtr.getNode())
7274 OffsetIdx = 0;
7275 assert(OtherUses[i]->getOperand(!OffsetIdx).getNode() ==
7276 BasePtr.getNode() && "Expected BasePtr operand");
7277
Silviu Baranga730a5702013-04-26 15:52:24 +00007278 // We need to replace ptr0 in the following expression:
7279 // x0 * offset0 + y0 * ptr0 = t0
7280 // knowing that
7281 // x1 * offset1 + y1 * ptr0 = t1 (the indexed load/store)
Stephen Lin155615d2013-07-08 00:37:03 +00007282 //
Silviu Baranga730a5702013-04-26 15:52:24 +00007283 // where x0, x1, y0 and y1 in {-1, 1} are given by the types of the
7284 // indexed load/store and the expresion that needs to be re-written.
7285 //
7286 // Therefore, we have:
7287 // t0 = (x0 * offset0 - x1 * y0 * y1 *offset1) + (y0 * y1) * t1
Hal Finkel089a5f82013-02-08 21:35:47 +00007288
7289 ConstantSDNode *CN =
7290 cast<ConstantSDNode>(OtherUses[i]->getOperand(OffsetIdx));
Silviu Baranga730a5702013-04-26 15:52:24 +00007291 int X0, X1, Y0, Y1;
7292 APInt Offset0 = CN->getAPIntValue();
7293 APInt Offset1 = cast<ConstantSDNode>(Offset)->getAPIntValue();
Hal Finkel089a5f82013-02-08 21:35:47 +00007294
Silviu Baranga730a5702013-04-26 15:52:24 +00007295 X0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 1) ? -1 : 1;
7296 Y0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 0) ? -1 : 1;
7297 X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1;
7298 Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1;
Hal Finkel089a5f82013-02-08 21:35:47 +00007299
Silviu Baranga730a5702013-04-26 15:52:24 +00007300 unsigned Opcode = (Y0 * Y1 < 0) ? ISD::SUB : ISD::ADD;
7301
7302 APInt CNV = Offset0;
7303 if (X0 < 0) CNV = -CNV;
7304 if (X1 * Y0 * Y1 < 0) CNV = CNV + Offset1;
7305 else CNV = CNV - Offset1;
7306
7307 // We can now generate the new expression.
7308 SDValue NewOp1 = DAG.getConstant(CNV, CN->getValueType(0));
7309 SDValue NewOp2 = Result.getValue(isLoad ? 1 : 0);
7310
7311 SDValue NewUse = DAG.getNode(Opcode,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007312 SDLoc(OtherUses[i]),
Hal Finkel089a5f82013-02-08 21:35:47 +00007313 OtherUses[i]->getValueType(0), NewOp1, NewOp2);
7314 DAG.ReplaceAllUsesOfValueWith(SDValue(OtherUses[i], 0), NewUse);
7315 removeFromWorkList(OtherUses[i]);
7316 DAG.DeleteNode(OtherUses[i]);
7317 }
7318
Chris Lattner9f1794e2006-11-11 00:56:29 +00007319 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007320 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greifba36cb52008-08-28 21:40:38 +00007321 removeFromWorkList(Ptr.getNode());
7322 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00007323
7324 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00007325}
7326
Duncan Sandsec87aa82008-06-15 20:12:31 +00007327/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00007328/// add / sub of the base pointer node into a post-indexed load / store.
7329/// The transformation folded the add / subtract into the new indexed
7330/// load / store effectively and all of its uses are redirected to the
7331/// new load / store.
7332bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00007333 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00007334 return false;
7335
7336 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007337 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00007338 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00007339 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007340 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007341 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007342 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00007343 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
7344 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
7345 return false;
7346 Ptr = LD->getBasePtr();
7347 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007348 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007349 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007350 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00007351 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
7352 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
7353 return false;
7354 Ptr = ST->getBasePtr();
7355 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007356 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00007357 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007358 }
Chris Lattner448f2192006-11-11 00:39:41 +00007359
Gabor Greifba36cb52008-08-28 21:40:38 +00007360 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00007361 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007362
Gabor Greifba36cb52008-08-28 21:40:38 +00007363 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7364 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00007365 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007366 if (Op == N ||
7367 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
7368 continue;
7369
Dan Gohman475871a2008-07-27 21:46:04 +00007370 SDValue BasePtr;
7371 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007372 ISD::MemIndexedMode AM = ISD::UNINDEXED;
7373 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00007374 // Don't create a indexed load / store with zero offset.
7375 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00007376 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00007377 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00007378
Chris Lattner9f1794e2006-11-11 00:56:29 +00007379 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00007380 // 1) All uses are load / store ops that use it as base ptr (and
7381 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00007382 // 2) Op must be independent of N, i.e. Op is neither a predecessor
7383 // nor a successor of N. Otherwise, if Op is folded that would
7384 // create a cycle.
7385
Evan Chengcaab1292009-05-06 18:25:01 +00007386 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
7387 continue;
7388
Chris Lattner9f1794e2006-11-11 00:56:29 +00007389 // Check for #1.
7390 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00007391 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
7392 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00007393 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00007394 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00007395 continue;
7396
Chris Lattner9f1794e2006-11-11 00:56:29 +00007397 // If all the uses are load / store addresses, then don't do the
7398 // transformation.
7399 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
7400 bool RealUse = false;
7401 for (SDNode::use_iterator III = Use->use_begin(),
7402 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00007403 SDNode *UseUse = *III;
Stephen Lin155615d2013-07-08 00:37:03 +00007404 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007405 RealUse = true;
7406 }
Chris Lattner448f2192006-11-11 00:39:41 +00007407
Chris Lattner9f1794e2006-11-11 00:56:29 +00007408 if (!RealUse) {
7409 TryNext = true;
7410 break;
Chris Lattner448f2192006-11-11 00:39:41 +00007411 }
7412 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007413 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007414
Chris Lattner9f1794e2006-11-11 00:56:29 +00007415 if (TryNext)
7416 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00007417
Chris Lattner9f1794e2006-11-11 00:56:29 +00007418 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00007419 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00007420 SDValue Result = isLoad
Andrew Trickac6d9be2013-05-25 02:42:55 +00007421 ? DAG.getIndexedLoad(SDValue(N,0), SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00007422 BasePtr, Offset, AM)
Andrew Trickac6d9be2013-05-25 02:42:55 +00007423 : DAG.getIndexedStore(SDValue(N,0), SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00007424 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007425 ++PostIndexedNodes;
7426 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00007427 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007428 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007429 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007430 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007431 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007432 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007433 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007434 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7435 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007436 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007437 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner448f2192006-11-11 00:39:41 +00007438 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007439
Chris Lattner9f1794e2006-11-11 00:56:29 +00007440 // Finally, since the node is now dead, remove it from the graph.
7441 DAG.DeleteNode(N);
7442
7443 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00007444 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007445 Result.getValue(isLoad ? 1 : 0));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007446 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007447 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007448 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00007449 }
7450 }
7451 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007452
Chris Lattner448f2192006-11-11 00:39:41 +00007453 return false;
7454}
7455
Dan Gohman475871a2008-07-27 21:46:04 +00007456SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00007457 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007458 SDValue Chain = LD->getChain();
7459 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007460
Evan Cheng45a7ca92007-05-01 00:38:21 +00007461 // If load is not volatile and there are no uses of the loaded value (and
7462 // the updated indexed value in case of indexed loads), change uses of the
7463 // chain value into uses of the chain input (i.e. delete the dead load).
7464 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007465 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00007466 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00007467 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00007468 // It's not safe to use the two value CombineTo variant here. e.g.
7469 // v1, chain2 = load chain1, loc
7470 // v2, chain3 = load chain2, loc
7471 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00007472 // Now we replace use of chain2 with chain1. This makes the second load
7473 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00007474 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007475 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007476 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007477 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007478 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007479 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007480 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendlingc0debad2009-01-30 23:27:35 +00007481
Chris Lattner125991a2008-01-24 07:57:06 +00007482 if (N->use_empty()) {
7483 removeFromWorkList(N);
7484 DAG.DeleteNode(N);
7485 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007486
Dan Gohman475871a2008-07-27 21:46:04 +00007487 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00007488 }
Evan Cheng498f5592007-05-01 08:53:39 +00007489 } else {
7490 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00007491 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00007492 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007493 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00007494 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007495 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007496 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007497 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007498 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007499 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007500 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman475871a2008-07-27 21:46:04 +00007501 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007502 DAG.getUNDEF(N->getValueType(1)));
7503 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng02c42852008-01-16 23:11:54 +00007504 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00007505 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007506 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00007507 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00007508 }
7509 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007510
Chris Lattner01a22022005-10-10 22:04:48 +00007511 // If this load is directly stored, replace the load value with the stored
7512 // value.
7513 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007514 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00007515 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007516 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007517 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
7518 if (PrevST->getBasePtr() == Ptr &&
7519 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007520 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00007521 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007522 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007523
Evan Cheng255f20f2010-04-01 06:04:33 +00007524 // Try to infer better alignment information than the load already has.
7525 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007526 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
Owen Andersonb48783b2013-02-05 19:24:39 +00007527 if (Align > LD->getMemOperand()->getBaseAlignment()) {
7528 SDValue NewLoad =
Andrew Trickac6d9be2013-05-25 02:42:55 +00007529 DAG.getExtLoad(LD->getExtensionType(), SDLoc(N),
Evan Chenged1c0c72011-11-28 22:37:34 +00007530 LD->getValueType(0),
7531 Chain, Ptr, LD->getPointerInfo(),
7532 LD->getMemoryVT(),
7533 LD->isVolatile(), LD->isNonTemporal(), Align);
Owen Andersonb48783b2013-02-05 19:24:39 +00007534 return CombineTo(N, NewLoad, SDValue(NewLoad.getNode(), 1), true);
7535 }
Evan Cheng255f20f2010-04-01 06:04:33 +00007536 }
7537 }
7538
Hal Finkel253acef2013-08-29 03:29:55 +00007539 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA :
7540 TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
7541 if (UseAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007542 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007543 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007544
Jim Laskey6ff23e52006-10-04 16:53:27 +00007545 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007546 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007547 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007548
Jim Laskey279f0532006-09-25 16:29:54 +00007549 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007550 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007551 ReplLoad = DAG.getLoad(N->getValueType(0), SDLoc(LD),
Chris Lattnerfa459012010-09-21 16:08:50 +00007552 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007553 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007554 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007555 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007556 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD),
Stuart Hastingsa9011292011-02-16 16:23:55 +00007557 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00007558 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007559 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007560 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007561 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00007562 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007563 }
Jim Laskey279f0532006-09-25 16:29:54 +00007564
Jim Laskey6ff23e52006-10-04 16:53:27 +00007565 // Create token factor to keep old chain connected.
Andrew Trickac6d9be2013-05-25 02:42:55 +00007566 SDValue Token = DAG.getNode(ISD::TokenFactor, SDLoc(N),
Owen Anderson825b72b2009-08-11 20:47:22 +00007567 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007568
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007569 // Make sure the new and old chains are cleaned up.
7570 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007571
Jim Laskey274062c2006-10-13 23:32:28 +00007572 // Replace uses with load result and token factor. Don't add users
7573 // to work list.
7574 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007575 }
7576 }
7577
Evan Cheng7fc033a2006-11-03 03:06:21 +00007578 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007579 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007580 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00007581
Dan Gohman475871a2008-07-27 21:46:04 +00007582 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00007583}
7584
Chris Lattner2392ae72010-04-15 04:48:01 +00007585/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
7586/// load is having specific bytes cleared out. If so, return the byte size
7587/// being masked out and the shift amount.
7588static std::pair<unsigned, unsigned>
7589CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
7590 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007591
Chris Lattner2392ae72010-04-15 04:48:01 +00007592 // Check for the structure we're looking for.
7593 if (V->getOpcode() != ISD::AND ||
7594 !isa<ConstantSDNode>(V->getOperand(1)) ||
7595 !ISD::isNormalLoad(V->getOperand(0).getNode()))
7596 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007597
Chris Lattnere6987582010-04-15 06:10:49 +00007598 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00007599 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00007600 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007601
Chris Lattnere6987582010-04-15 06:10:49 +00007602 // The store should be chained directly to the load or be an operand of a
7603 // tokenfactor.
7604 if (LD == Chain.getNode())
7605 ; // ok.
7606 else if (Chain->getOpcode() != ISD::TokenFactor)
7607 return Result; // Fail.
7608 else {
7609 bool isOk = false;
7610 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
7611 if (Chain->getOperand(i).getNode() == LD) {
7612 isOk = true;
7613 break;
7614 }
7615 if (!isOk) return Result;
7616 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007617
Chris Lattner2392ae72010-04-15 04:48:01 +00007618 // This only handles simple types.
7619 if (V.getValueType() != MVT::i16 &&
7620 V.getValueType() != MVT::i32 &&
7621 V.getValueType() != MVT::i64)
7622 return Result;
7623
7624 // Check the constant mask. Invert it so that the bits being masked out are
7625 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
7626 // follow the sign bit for uniformity.
7627 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
Michael J. Spencerc6af2432013-05-24 22:23:49 +00007628 unsigned NotMaskLZ = countLeadingZeros(NotMask);
Chris Lattner2392ae72010-04-15 04:48:01 +00007629 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
Michael J. Spencerc6af2432013-05-24 22:23:49 +00007630 unsigned NotMaskTZ = countTrailingZeros(NotMask);
Chris Lattner2392ae72010-04-15 04:48:01 +00007631 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
7632 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007633
Chris Lattner2392ae72010-04-15 04:48:01 +00007634 // See if we have a continuous run of bits. If so, we have 0*1+0*
7635 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
7636 return Result;
7637
7638 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
7639 if (V.getValueType() != MVT::i64 && NotMaskLZ)
7640 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007641
Chris Lattner2392ae72010-04-15 04:48:01 +00007642 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
7643 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007644 case 1:
7645 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00007646 case 4: break;
7647 default: return Result; // All one mask, or 5-byte mask.
7648 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007649
Chris Lattner2392ae72010-04-15 04:48:01 +00007650 // Verify that the first bit starts at a multiple of mask so that the access
7651 // is aligned the same as the access width.
7652 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007653
Chris Lattner2392ae72010-04-15 04:48:01 +00007654 Result.first = MaskedBytes;
7655 Result.second = NotMaskTZ/8;
7656 return Result;
7657}
7658
7659
7660/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
7661/// provides a value as specified by MaskInfo. If so, replace the specified
7662/// store with a narrower store of truncated IVal.
7663static SDNode *
7664ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
7665 SDValue IVal, StoreSDNode *St,
7666 DAGCombiner *DC) {
7667 unsigned NumBytes = MaskInfo.first;
7668 unsigned ByteShift = MaskInfo.second;
7669 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007670
Chris Lattner2392ae72010-04-15 04:48:01 +00007671 // Check to see if IVal is all zeros in the part being masked in by the 'or'
7672 // that uses this. If not, this is not a replacement.
7673 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
7674 ByteShift*8, (ByteShift+NumBytes)*8);
7675 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007676
Chris Lattner2392ae72010-04-15 04:48:01 +00007677 // Check that it is legal on the target to do this. It is legal if the new
7678 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
7679 // legalization.
7680 MVT VT = MVT::getIntegerVT(NumBytes*8);
7681 if (!DC->isTypeLegal(VT))
7682 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007683
Chris Lattner2392ae72010-04-15 04:48:01 +00007684 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
7685 // shifted by ByteShift and truncated down to NumBytes.
7686 if (ByteShift)
Andrew Trickac6d9be2013-05-25 02:42:55 +00007687 IVal = DAG.getNode(ISD::SRL, SDLoc(IVal), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00007688 DAG.getConstant(ByteShift*8,
7689 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00007690
7691 // Figure out the offset for the store and the alignment of the access.
7692 unsigned StOffset;
7693 unsigned NewAlign = St->getAlignment();
7694
7695 if (DAG.getTargetLoweringInfo().isLittleEndian())
7696 StOffset = ByteShift;
7697 else
7698 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007699
Chris Lattner2392ae72010-04-15 04:48:01 +00007700 SDValue Ptr = St->getBasePtr();
7701 if (StOffset) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007702 Ptr = DAG.getNode(ISD::ADD, SDLoc(IVal), Ptr.getValueType(),
Chris Lattner2392ae72010-04-15 04:48:01 +00007703 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
7704 NewAlign = MinAlign(NewAlign, StOffset);
7705 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007706
Chris Lattner2392ae72010-04-15 04:48:01 +00007707 // Truncate down to the new size.
Andrew Trickac6d9be2013-05-25 02:42:55 +00007708 IVal = DAG.getNode(ISD::TRUNCATE, SDLoc(IVal), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007709
Chris Lattner2392ae72010-04-15 04:48:01 +00007710 ++OpsNarrowed;
Andrew Trickac6d9be2013-05-25 02:42:55 +00007711 return DAG.getStore(St->getChain(), SDLoc(St), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007712 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00007713 false, false, NewAlign).getNode();
7714}
7715
Evan Cheng8b944d32009-05-28 00:35:15 +00007716
7717/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
7718/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
7719/// of the loaded bits, try narrowing the load and store if it would end up
7720/// being a win for performance or code size.
7721SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
7722 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00007723 if (ST->isVolatile())
7724 return SDValue();
7725
Evan Cheng8b944d32009-05-28 00:35:15 +00007726 SDValue Chain = ST->getChain();
7727 SDValue Value = ST->getValue();
7728 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00007729 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00007730
7731 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00007732 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007733
7734 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007735
Chris Lattner2392ae72010-04-15 04:48:01 +00007736 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
7737 // is a byte mask indicating a consecutive number of bytes, check to see if
7738 // Y is known to provide just those bytes. If so, we try to replace the
7739 // load + replace + store sequence with a single (narrower) store, which makes
7740 // the load dead.
7741 if (Opc == ISD::OR) {
7742 std::pair<unsigned, unsigned> MaskedLoad;
7743 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
7744 if (MaskedLoad.first)
7745 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7746 Value.getOperand(1), ST,this))
7747 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007748
Chris Lattner2392ae72010-04-15 04:48:01 +00007749 // Or is commutative, so try swapping X and Y.
7750 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
7751 if (MaskedLoad.first)
7752 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7753 Value.getOperand(0), ST,this))
7754 return SDValue(NewST, 0);
7755 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007756
Evan Cheng8b944d32009-05-28 00:35:15 +00007757 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
7758 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00007759 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007760
7761 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00007762 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
7763 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00007764 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00007765 if (LD->getBasePtr() != Ptr ||
7766 LD->getPointerInfo().getAddrSpace() !=
7767 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00007768 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007769
7770 // Find the type to narrow it the load / op / store to.
7771 SDValue N1 = Value.getOperand(1);
7772 unsigned BitWidth = N1.getValueSizeInBits();
7773 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
7774 if (Opc == ISD::AND)
7775 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00007776 if (Imm == 0 || Imm.isAllOnesValue())
7777 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007778 unsigned ShAmt = Imm.countTrailingZeros();
7779 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
7780 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00007781 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007782 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00007783 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00007784 TLI.isNarrowingProfitable(VT, NewVT))) {
7785 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00007786 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007787 }
Evan Chengcdcecc02009-05-28 18:41:02 +00007788 if (NewBW >= BitWidth)
7789 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007790
7791 // If the lsb changed does not start at the type bitwidth boundary,
7792 // start at the previous one.
7793 if (ShAmt % NewBW)
7794 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
Manman Ren981b9632012-12-12 01:13:50 +00007795 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt,
7796 std::min(BitWidth, ShAmt + NewBW));
Evan Cheng8b944d32009-05-28 00:35:15 +00007797 if ((Imm & Mask) == Imm) {
7798 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
7799 if (Opc == ISD::AND)
7800 NewImm ^= APInt::getAllOnesValue(NewBW);
7801 uint64_t PtrOff = ShAmt / 8;
7802 // For big endian targets, we need to adjust the offset to the pointer to
7803 // load the correct bytes.
7804 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00007805 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00007806
7807 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007808 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007809 if (NewAlign < TLI.getDataLayout()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00007810 return SDValue();
7811
Andrew Trickac6d9be2013-05-25 02:42:55 +00007812 SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(LD),
Evan Cheng8b944d32009-05-28 00:35:15 +00007813 Ptr.getValueType(), Ptr,
7814 DAG.getConstant(PtrOff, Ptr.getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00007815 SDValue NewLD = DAG.getLoad(NewVT, SDLoc(N0),
Evan Cheng8b944d32009-05-28 00:35:15 +00007816 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007817 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007818 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007819 LD->isInvariant(), NewAlign);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007820 SDValue NewVal = DAG.getNode(Opc, SDLoc(Value), NewVT, NewLD,
Evan Cheng8b944d32009-05-28 00:35:15 +00007821 DAG.getConstant(NewImm, NewVT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00007822 SDValue NewST = DAG.getStore(Chain, SDLoc(N),
Evan Cheng8b944d32009-05-28 00:35:15 +00007823 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007824 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007825 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007826
7827 AddToWorkList(NewPtr.getNode());
7828 AddToWorkList(NewLD.getNode());
7829 AddToWorkList(NewVal.getNode());
7830 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007831 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Cheng8b944d32009-05-28 00:35:15 +00007832 ++OpsNarrowed;
7833 return NewST;
7834 }
7835 }
7836
Evan Chengcdcecc02009-05-28 18:41:02 +00007837 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007838}
7839
Evan Cheng31959b12011-02-02 01:06:55 +00007840/// TransformFPLoadStorePair - For a given floating point load / store pair,
7841/// if the load value isn't used by any other operations, then consider
7842/// transforming the pair to integer load / store operations if the target
7843/// deems the transformation profitable.
7844SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
7845 StoreSDNode *ST = cast<StoreSDNode>(N);
7846 SDValue Chain = ST->getChain();
7847 SDValue Value = ST->getValue();
7848 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
7849 Value.hasOneUse() &&
7850 Chain == SDValue(Value.getNode(), 1)) {
7851 LoadSDNode *LD = cast<LoadSDNode>(Value);
7852 EVT VT = LD->getMemoryVT();
7853 if (!VT.isFloatingPoint() ||
7854 VT != ST->getMemoryVT() ||
7855 LD->isNonTemporal() ||
7856 ST->isNonTemporal() ||
7857 LD->getPointerInfo().getAddrSpace() != 0 ||
7858 ST->getPointerInfo().getAddrSpace() != 0)
7859 return SDValue();
7860
7861 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
7862 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
7863 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
7864 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
7865 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
7866 return SDValue();
7867
7868 unsigned LDAlign = LD->getAlignment();
7869 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007870 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007871 unsigned ABIAlign = TLI.getDataLayout()->getABITypeAlignment(IntVTTy);
Evan Cheng31959b12011-02-02 01:06:55 +00007872 if (LDAlign < ABIAlign || STAlign < ABIAlign)
7873 return SDValue();
7874
Andrew Trickac6d9be2013-05-25 02:42:55 +00007875 SDValue NewLD = DAG.getLoad(IntVT, SDLoc(Value),
Evan Cheng31959b12011-02-02 01:06:55 +00007876 LD->getChain(), LD->getBasePtr(),
7877 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007878 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00007879
Andrew Trickac6d9be2013-05-25 02:42:55 +00007880 SDValue NewST = DAG.getStore(NewLD.getValue(1), SDLoc(N),
Evan Cheng31959b12011-02-02 01:06:55 +00007881 NewLD, ST->getBasePtr(),
7882 ST->getPointerInfo(),
7883 false, false, STAlign);
7884
7885 AddToWorkList(NewLD.getNode());
7886 AddToWorkList(NewST.getNode());
7887 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007888 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Cheng31959b12011-02-02 01:06:55 +00007889 ++LdStFP2Int;
7890 return NewST;
7891 }
7892
7893 return SDValue();
7894}
7895
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007896/// Helper struct to parse and store a memory address as base + index + offset.
7897/// We ignore sign extensions when it is safe to do so.
7898/// The following two expressions are not equivalent. To differentiate we need
7899/// to store whether there was a sign extension involved in the index
7900/// computation.
7901/// (load (i64 add (i64 copyfromreg %c)
7902/// (i64 signextend (add (i8 load %index)
7903/// (i8 1))))
7904/// vs
7905///
7906/// (load (i64 add (i64 copyfromreg %c)
7907/// (i64 signextend (i32 add (i32 signextend (i8 load %index))
7908/// (i32 1)))))
7909struct BaseIndexOffset {
7910 SDValue Base;
7911 SDValue Index;
7912 int64_t Offset;
7913 bool IsIndexSignExt;
7914
7915 BaseIndexOffset() : Offset(0), IsIndexSignExt(false) {}
7916
7917 BaseIndexOffset(SDValue Base, SDValue Index, int64_t Offset,
7918 bool IsIndexSignExt) :
7919 Base(Base), Index(Index), Offset(Offset), IsIndexSignExt(IsIndexSignExt) {}
7920
7921 bool equalBaseIndex(const BaseIndexOffset &Other) {
7922 return Other.Base == Base && Other.Index == Index &&
7923 Other.IsIndexSignExt == IsIndexSignExt;
Nadav Rotemc653de62012-10-03 16:11:15 +00007924 }
7925
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007926 /// Parses tree in Ptr for base, index, offset addresses.
7927 static BaseIndexOffset match(SDValue Ptr) {
7928 bool IsIndexSignExt = false;
7929
Juergen Ributzka915e9362013-08-21 21:53:38 +00007930 // We only can pattern match BASE + INDEX + OFFSET. If Ptr is not an ADD
7931 // instruction, then it could be just the BASE or everything else we don't
7932 // know how to handle. Just use Ptr as BASE and give up.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007933 if (Ptr->getOpcode() != ISD::ADD)
7934 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
7935
Juergen Ributzka915e9362013-08-21 21:53:38 +00007936 // We know that we have at least an ADD instruction. Try to pattern match
7937 // the simple case of BASE + OFFSET.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007938 if (isa<ConstantSDNode>(Ptr->getOperand(1))) {
7939 int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue();
7940 return BaseIndexOffset(Ptr->getOperand(0), SDValue(), Offset,
7941 IsIndexSignExt);
7942 }
7943
Juergen Ributzka915e9362013-08-21 21:53:38 +00007944 // Inside a loop the current BASE pointer is calculated using an ADD and a
Juergen Ributzka2b884bc2013-08-28 22:33:58 +00007945 // MUL instruction. In this case Ptr is the actual BASE pointer.
Juergen Ributzka915e9362013-08-21 21:53:38 +00007946 // (i64 add (i64 %array_ptr)
7947 // (i64 mul (i64 %induction_var)
7948 // (i64 %element_size)))
Juergen Ributzka2b884bc2013-08-28 22:33:58 +00007949 if (Ptr->getOperand(1)->getOpcode() == ISD::MUL)
Juergen Ributzka915e9362013-08-21 21:53:38 +00007950 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
Juergen Ributzka915e9362013-08-21 21:53:38 +00007951
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007952 // Look at Base + Index + Offset cases.
7953 SDValue Base = Ptr->getOperand(0);
7954 SDValue IndexOffset = Ptr->getOperand(1);
7955
7956 // Skip signextends.
7957 if (IndexOffset->getOpcode() == ISD::SIGN_EXTEND) {
7958 IndexOffset = IndexOffset->getOperand(0);
7959 IsIndexSignExt = true;
7960 }
7961
7962 // Either the case of Base + Index (no offset) or something else.
7963 if (IndexOffset->getOpcode() != ISD::ADD)
7964 return BaseIndexOffset(Base, IndexOffset, 0, IsIndexSignExt);
7965
7966 // Now we have the case of Base + Index + offset.
7967 SDValue Index = IndexOffset->getOperand(0);
7968 SDValue Offset = IndexOffset->getOperand(1);
7969
7970 if (!isa<ConstantSDNode>(Offset))
7971 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
7972
7973 // Ignore signextends.
7974 if (Index->getOpcode() == ISD::SIGN_EXTEND) {
7975 Index = Index->getOperand(0);
7976 IsIndexSignExt = true;
7977 } else IsIndexSignExt = false;
7978
7979 int64_t Off = cast<ConstantSDNode>(Offset)->getSExtValue();
7980 return BaseIndexOffset(Base, Index, Off, IsIndexSignExt);
7981 }
7982};
Nadav Rotemc653de62012-10-03 16:11:15 +00007983
7984/// Holds a pointer to an LSBaseSDNode as well as information on where it
7985/// is located in a sequence of memory operations connected by a chain.
7986struct MemOpLink {
7987 MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq):
7988 MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { }
7989 // Ptr to the mem node.
7990 LSBaseSDNode *MemNode;
7991 // Offset from the base ptr.
7992 int64_t OffsetFromBase;
7993 // What is the sequence number of this mem node.
7994 // Lowest mem operand in the DAG starts at zero.
7995 unsigned SequenceNum;
7996};
7997
7998/// Sorts store nodes in a link according to their offset from a shared
7999// base ptr.
8000struct ConsecutiveMemoryChainSorter {
8001 bool operator()(MemOpLink LHS, MemOpLink RHS) {
8002 return LHS.OffsetFromBase < RHS.OffsetFromBase;
8003 }
8004};
8005
8006bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) {
8007 EVT MemVT = St->getMemoryVT();
8008 int64_t ElementSizeBytes = MemVT.getSizeInBits()/8;
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008009 bool NoVectors = DAG.getMachineFunction().getFunction()->getAttributes().
8010 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nadav Rotemc653de62012-10-03 16:11:15 +00008011
8012 // Don't merge vectors into wider inputs.
8013 if (MemVT.isVector() || !MemVT.isSimple())
8014 return false;
8015
8016 // Perform an early exit check. Do not bother looking at stored values that
8017 // are not constants or loads.
8018 SDValue StoredVal = St->getValue();
8019 bool IsLoadSrc = isa<LoadSDNode>(StoredVal);
8020 if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) &&
8021 !IsLoadSrc)
8022 return false;
8023
8024 // Only look at ends of store sequences.
8025 SDValue Chain = SDValue(St, 1);
8026 if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE)
8027 return false;
8028
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008029 // This holds the base pointer, index, and the offset in bytes from the base
8030 // pointer.
8031 BaseIndexOffset BasePtr = BaseIndexOffset::match(St->getBasePtr());
Nadav Rotemc653de62012-10-03 16:11:15 +00008032
8033 // We must have a base and an offset.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008034 if (!BasePtr.Base.getNode())
Nadav Rotemc653de62012-10-03 16:11:15 +00008035 return false;
8036
8037 // Do not handle stores to undef base pointers.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008038 if (BasePtr.Base.getOpcode() == ISD::UNDEF)
Nadav Rotemc653de62012-10-03 16:11:15 +00008039 return false;
8040
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008041 // Save the LoadSDNodes that we find in the chain.
8042 // We need to make sure that these nodes do not interfere with
8043 // any of the store nodes.
8044 SmallVector<LSBaseSDNode*, 8> AliasLoadNodes;
8045
8046 // Save the StoreSDNodes that we find in the chain.
Nadav Rotemc653de62012-10-03 16:11:15 +00008047 SmallVector<MemOpLink, 8> StoreNodes;
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008048
Nadav Rotemc653de62012-10-03 16:11:15 +00008049 // Walk up the chain and look for nodes with offsets from the same
8050 // base pointer. Stop when reaching an instruction with a different kind
8051 // or instruction which has a different base pointer.
8052 unsigned Seq = 0;
8053 StoreSDNode *Index = St;
8054 while (Index) {
8055 // If the chain has more than one use, then we can't reorder the mem ops.
8056 if (Index != St && !SDValue(Index, 1)->hasOneUse())
8057 break;
8058
8059 // Find the base pointer and offset for this memory node.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008060 BaseIndexOffset Ptr = BaseIndexOffset::match(Index->getBasePtr());
Nadav Rotemc653de62012-10-03 16:11:15 +00008061
8062 // Check that the base pointer is the same as the original one.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008063 if (!Ptr.equalBaseIndex(BasePtr))
Nadav Rotemc653de62012-10-03 16:11:15 +00008064 break;
8065
8066 // Check that the alignment is the same.
8067 if (Index->getAlignment() != St->getAlignment())
8068 break;
8069
8070 // The memory operands must not be volatile.
8071 if (Index->isVolatile() || Index->isIndexed())
8072 break;
8073
8074 // No truncation.
8075 if (StoreSDNode *St = dyn_cast<StoreSDNode>(Index))
8076 if (St->isTruncatingStore())
8077 break;
8078
8079 // The stored memory type must be the same.
8080 if (Index->getMemoryVT() != MemVT)
8081 break;
8082
8083 // We do not allow unaligned stores because we want to prevent overriding
8084 // stores.
8085 if (Index->getAlignment()*8 != MemVT.getSizeInBits())
8086 break;
8087
8088 // We found a potential memory operand to merge.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008089 StoreNodes.push_back(MemOpLink(Index, Ptr.Offset, Seq++));
Nadav Rotemc653de62012-10-03 16:11:15 +00008090
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008091 // Find the next memory operand in the chain. If the next operand in the
8092 // chain is a store then move up and continue the scan with the next
8093 // memory operand. If the next operand is a load save it and use alias
8094 // information to check if it interferes with anything.
8095 SDNode *NextInChain = Index->getChain().getNode();
8096 while (1) {
Nadav Rotemdde785c2012-12-06 17:34:13 +00008097 if (StoreSDNode *STn = dyn_cast<StoreSDNode>(NextInChain)) {
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008098 // We found a store node. Use it for the next iteration.
Nadav Rotemdde785c2012-12-06 17:34:13 +00008099 Index = STn;
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008100 break;
8101 } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) {
8102 // Save the load node for later. Continue the scan.
8103 AliasLoadNodes.push_back(Ldn);
8104 NextInChain = Ldn->getChain().getNode();
8105 continue;
8106 } else {
8107 Index = NULL;
8108 break;
8109 }
8110 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008111 }
8112
8113 // Check if there is anything to merge.
8114 if (StoreNodes.size() < 2)
8115 return false;
8116
8117 // Sort the memory operands according to their distance from the base pointer.
8118 std::sort(StoreNodes.begin(), StoreNodes.end(),
8119 ConsecutiveMemoryChainSorter());
8120
8121 // Scan the memory operations on the chain and find the first non-consecutive
8122 // store memory address.
8123 unsigned LastConsecutiveStore = 0;
8124 int64_t StartAddress = StoreNodes[0].OffsetFromBase;
Nadav Rotemdde785c2012-12-06 17:34:13 +00008125 for (unsigned i = 0, e = StoreNodes.size(); i < e; ++i) {
8126
8127 // Check that the addresses are consecutive starting from the second
8128 // element in the list of stores.
8129 if (i > 0) {
8130 int64_t CurrAddress = StoreNodes[i].OffsetFromBase;
8131 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
8132 break;
8133 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008134
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008135 bool Alias = false;
8136 // Check if this store interferes with any of the loads that we found.
8137 for (unsigned ld = 0, lde = AliasLoadNodes.size(); ld < lde; ++ld)
8138 if (isAlias(AliasLoadNodes[ld], StoreNodes[i].MemNode)) {
8139 Alias = true;
8140 break;
8141 }
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008142 // We found a load that alias with this store. Stop the sequence.
8143 if (Alias)
8144 break;
8145
Nadav Rotemc653de62012-10-03 16:11:15 +00008146 // Mark this node as useful.
8147 LastConsecutiveStore = i;
8148 }
8149
8150 // The node with the lowest store address.
8151 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode;
8152
8153 // Store the constants into memory as one consecutive store.
8154 if (!IsLoadSrc) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008155 unsigned LastLegalType = 0;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008156 unsigned LastLegalVectorType = 0;
8157 bool NonZero = false;
Nadav Rotemc653de62012-10-03 16:11:15 +00008158 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
8159 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8160 SDValue StoredVal = St->getValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008161
8162 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00008163 NonZero |= !C->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008164 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00008165 NonZero |= !C->getConstantFPValue()->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008166 } else {
8167 // Non constant.
Nadav Rotemc653de62012-10-03 16:11:15 +00008168 break;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008169 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008170
Nadav Rotemc653de62012-10-03 16:11:15 +00008171 // Find a legal type for the constant store.
8172 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
8173 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8174 if (TLI.isTypeLegal(StoreTy))
8175 LastLegalType = i+1;
Arnold Schwaighofere7370182013-04-02 15:58:51 +00008176 // Or check whether a truncstore is legal.
8177 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) ==
8178 TargetLowering::TypePromoteInteger) {
8179 EVT LegalizedStoredValueTy =
8180 TLI.getTypeToTransformTo(*DAG.getContext(), StoredVal.getValueType());
8181 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy))
8182 LastLegalType = i+1;
8183 }
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008184
8185 // Find a legal type for the vector store.
8186 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
8187 if (TLI.isTypeLegal(Ty))
8188 LastLegalVectorType = i + 1;
Nadav Rotemc653de62012-10-03 16:11:15 +00008189 }
8190
Bob Wilson99d8e762012-12-20 01:36:20 +00008191 // We only use vectors if the constant is known to be zero and the
8192 // function is not marked with the noimplicitfloat attribute.
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008193 if (NonZero || NoVectors)
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008194 LastLegalVectorType = 0;
8195
Nadav Rotemc653de62012-10-03 16:11:15 +00008196 // Check if we found a legal integer type to store.
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008197 if (LastLegalType == 0 && LastLegalVectorType == 0)
Nadav Rotemc653de62012-10-03 16:11:15 +00008198 return false;
8199
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008200 bool UseVector = (LastLegalVectorType > LastLegalType) && !NoVectors;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008201 unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType;
8202
8203 // Make sure we have something to merge.
8204 if (NumElem < 2)
8205 return false;
Nadav Rotemc653de62012-10-03 16:11:15 +00008206
8207 unsigned EarliestNodeUsed = 0;
8208 for (unsigned i=0; i < NumElem; ++i) {
8209 // Find a chain for the new wide-store operand. Notice that some
8210 // of the store nodes that we found may not be selected for inclusion
8211 // in the wide store. The chain we use needs to be the chain of the
8212 // earliest store node which is *used* and replaced by the wide store.
8213 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
8214 EarliestNodeUsed = i;
8215 }
8216
8217 // The earliest Node in the DAG.
8218 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008219 SDLoc DL(StoreNodes[0].MemNode);
Nadav Rotemc653de62012-10-03 16:11:15 +00008220
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008221 SDValue StoredVal;
8222 if (UseVector) {
8223 // Find a legal type for the vector store.
8224 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
8225 assert(TLI.isTypeLegal(Ty) && "Illegal vector store");
8226 StoredVal = DAG.getConstant(0, Ty);
8227 } else {
8228 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
8229 APInt StoreInt(StoreBW, 0);
8230
8231 // Construct a single integer constant which is made of the smaller
8232 // constant inputs.
8233 bool IsLE = TLI.isLittleEndian();
8234 for (unsigned i = 0; i < NumElem ; ++i) {
8235 unsigned Idx = IsLE ?(NumElem - 1 - i) : i;
8236 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode);
8237 SDValue Val = St->getValue();
8238 StoreInt<<=ElementSizeBytes*8;
8239 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) {
8240 StoreInt|=C->getAPIntValue().zext(StoreBW);
8241 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) {
8242 StoreInt|= C->getValueAPF().bitcastToAPInt().zext(StoreBW);
8243 } else {
8244 assert(false && "Invalid constant element type");
8245 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008246 }
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008247
8248 // Create the new Load and Store operations.
8249 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8250 StoredVal = DAG.getConstant(StoreInt, StoreTy);
Nadav Rotemc653de62012-10-03 16:11:15 +00008251 }
8252
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008253 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), DL, StoredVal,
Nadav Rotemc653de62012-10-03 16:11:15 +00008254 FirstInChain->getBasePtr(),
8255 FirstInChain->getPointerInfo(),
8256 false, false,
8257 FirstInChain->getAlignment());
8258
8259 // Replace the first store with the new store
8260 CombineTo(EarliestOp, NewStore);
8261 // Erase all other stores.
8262 for (unsigned i = 0; i < NumElem ; ++i) {
8263 if (StoreNodes[i].MemNode == EarliestOp)
8264 continue;
8265 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
Rafael Espindola8e2b8ae2012-11-14 05:08:56 +00008266 // ReplaceAllUsesWith will replace all uses that existed when it was
8267 // called, but graph optimizations may cause new ones to appear. For
8268 // example, the case in pr14333 looks like
8269 //
8270 // St's chain -> St -> another store -> X
8271 //
8272 // And the only difference from St to the other store is the chain.
8273 // When we change it's chain to be St's chain they become identical,
8274 // get CSEed and the net result is that X is now a use of St.
8275 // Since we know that St is redundant, just iterate.
8276 while (!St->use_empty())
8277 DAG.ReplaceAllUsesWith(SDValue(St, 0), St->getChain());
Nadav Rotemc653de62012-10-03 16:11:15 +00008278 removeFromWorkList(St);
8279 DAG.DeleteNode(St);
8280 }
8281
8282 return true;
8283 }
8284
8285 // Below we handle the case of multiple consecutive stores that
8286 // come from multiple consecutive loads. We merge them into a single
8287 // wide load and a single wide store.
8288
8289 // Look for load nodes which are used by the stored values.
8290 SmallVector<MemOpLink, 8> LoadNodes;
8291
8292 // Find acceptable loads. Loads need to have the same chain (token factor),
8293 // must not be zext, volatile, indexed, and they must be consecutive.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008294 BaseIndexOffset LdBasePtr;
Nadav Rotemc653de62012-10-03 16:11:15 +00008295 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
8296 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8297 LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue());
8298 if (!Ld) break;
8299
8300 // Loads must only have one use.
8301 if (!Ld->hasNUsesOfValue(1, 0))
8302 break;
8303
8304 // Check that the alignment is the same as the stores.
8305 if (Ld->getAlignment() != St->getAlignment())
8306 break;
8307
8308 // The memory operands must not be volatile.
8309 if (Ld->isVolatile() || Ld->isIndexed())
8310 break;
8311
8312 // We do not accept ext loads.
8313 if (Ld->getExtensionType() != ISD::NON_EXTLOAD)
8314 break;
8315
8316 // The stored memory type must be the same.
8317 if (Ld->getMemoryVT() != MemVT)
8318 break;
8319
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008320 BaseIndexOffset LdPtr = BaseIndexOffset::match(Ld->getBasePtr());
Nadav Rotemc653de62012-10-03 16:11:15 +00008321 // If this is not the first ptr that we check.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008322 if (LdBasePtr.Base.getNode()) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008323 // The base ptr must be the same.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008324 if (!LdPtr.equalBaseIndex(LdBasePtr))
Nadav Rotemc653de62012-10-03 16:11:15 +00008325 break;
8326 } else {
8327 // Check that all other base pointers are the same as this one.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008328 LdBasePtr = LdPtr;
Nadav Rotemc653de62012-10-03 16:11:15 +00008329 }
8330
8331 // We found a potential memory operand to merge.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008332 LoadNodes.push_back(MemOpLink(Ld, LdPtr.Offset, 0));
Nadav Rotemc653de62012-10-03 16:11:15 +00008333 }
8334
8335 if (LoadNodes.size() < 2)
8336 return false;
8337
8338 // Scan the memory operations on the chain and find the first non-consecutive
8339 // load memory address. These variables hold the index in the store node
8340 // array.
8341 unsigned LastConsecutiveLoad = 0;
8342 // This variable refers to the size and not index in the array.
8343 unsigned LastLegalVectorType = 0;
8344 unsigned LastLegalIntegerType = 0;
8345 StartAddress = LoadNodes[0].OffsetFromBase;
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008346 SDValue FirstChain = LoadNodes[0].MemNode->getChain();
8347 for (unsigned i = 1; i < LoadNodes.size(); ++i) {
8348 // All loads much share the same chain.
8349 if (LoadNodes[i].MemNode->getChain() != FirstChain)
8350 break;
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008351
Nadav Rotemc653de62012-10-03 16:11:15 +00008352 int64_t CurrAddress = LoadNodes[i].OffsetFromBase;
8353 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
8354 break;
8355 LastConsecutiveLoad = i;
8356
8357 // Find a legal type for the vector store.
8358 EVT StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
8359 if (TLI.isTypeLegal(StoreTy))
8360 LastLegalVectorType = i + 1;
8361
8362 // Find a legal type for the integer store.
8363 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
8364 StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8365 if (TLI.isTypeLegal(StoreTy))
8366 LastLegalIntegerType = i + 1;
Arnold Schwaighofere7370182013-04-02 15:58:51 +00008367 // Or check whether a truncstore and extload is legal.
8368 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) ==
8369 TargetLowering::TypePromoteInteger) {
8370 EVT LegalizedStoredValueTy =
8371 TLI.getTypeToTransformTo(*DAG.getContext(), StoreTy);
8372 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy) &&
8373 TLI.isLoadExtLegal(ISD::ZEXTLOAD, StoreTy) &&
8374 TLI.isLoadExtLegal(ISD::SEXTLOAD, StoreTy) &&
8375 TLI.isLoadExtLegal(ISD::EXTLOAD, StoreTy))
8376 LastLegalIntegerType = i+1;
8377 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008378 }
8379
8380 // Only use vector types if the vector type is larger than the integer type.
8381 // If they are the same, use integers.
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008382 bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType && !NoVectors;
Nadav Rotemc653de62012-10-03 16:11:15 +00008383 unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType);
8384
8385 // We add +1 here because the LastXXX variables refer to location while
8386 // the NumElem refers to array/index size.
8387 unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1;
8388 NumElem = std::min(LastLegalType, NumElem);
8389
8390 if (NumElem < 2)
8391 return false;
8392
8393 // The earliest Node in the DAG.
8394 unsigned EarliestNodeUsed = 0;
8395 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
8396 for (unsigned i=1; i<NumElem; ++i) {
8397 // Find a chain for the new wide-store operand. Notice that some
8398 // of the store nodes that we found may not be selected for inclusion
8399 // in the wide store. The chain we use needs to be the chain of the
8400 // earliest store node which is *used* and replaced by the wide store.
8401 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
8402 EarliestNodeUsed = i;
8403 }
8404
8405 // Find if it is better to use vectors or integers to load and store
8406 // to memory.
8407 EVT JointMemOpVT;
8408 if (UseVectorTy) {
8409 JointMemOpVT = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
8410 } else {
8411 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
8412 JointMemOpVT = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8413 }
8414
Andrew Trickac6d9be2013-05-25 02:42:55 +00008415 SDLoc LoadDL(LoadNodes[0].MemNode);
8416 SDLoc StoreDL(StoreNodes[0].MemNode);
Nadav Rotemc653de62012-10-03 16:11:15 +00008417
8418 LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode);
8419 SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL,
8420 FirstLoad->getChain(),
8421 FirstLoad->getBasePtr(),
8422 FirstLoad->getPointerInfo(),
8423 false, false, false,
8424 FirstLoad->getAlignment());
8425
8426 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), StoreDL, NewLoad,
8427 FirstInChain->getBasePtr(),
8428 FirstInChain->getPointerInfo(), false, false,
8429 FirstInChain->getAlignment());
8430
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008431 // Replace one of the loads with the new load.
8432 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode);
8433 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1),
8434 SDValue(NewLoad.getNode(), 1));
8435
8436 // Remove the rest of the load chains.
8437 for (unsigned i = 1; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008438 // Replace all chain users of the old load nodes with the chain of the new
8439 // load node.
8440 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode);
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008441 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain());
8442 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008443
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008444 // Replace the first store with the new store.
8445 CombineTo(EarliestOp, NewStore);
8446 // Erase all other stores.
8447 for (unsigned i = 0; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008448 // Remove all Store nodes.
8449 if (StoreNodes[i].MemNode == EarliestOp)
8450 continue;
8451 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8452 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
8453 removeFromWorkList(St);
8454 DAG.DeleteNode(St);
8455 }
8456
8457 return true;
8458}
8459
Dan Gohman475871a2008-07-27 21:46:04 +00008460SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00008461 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00008462 SDValue Chain = ST->getChain();
8463 SDValue Value = ST->getValue();
8464 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00008465
Evan Cheng59d5b682007-05-07 21:27:48 +00008466 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00008467 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008468 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008469 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00008470 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008471 EVT SVT = Value.getOperand(0).getValueType();
Micah Villmow3574eca2012-10-08 16:38:25 +00008472 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00008473 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008474 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008475 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008476 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00008477 return DAG.getStore(Chain, SDLoc(N), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00008478 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008479 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00008480 }
Owen Andersona34d9362011-04-14 17:30:49 +00008481
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008482 // Turn 'store undef, Ptr' -> nothing.
8483 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
8484 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008485
Nate Begeman2cbba892006-12-11 02:23:46 +00008486 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00008487 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008488 // NOTE: If the original store is volatile, this transform must not increase
8489 // the number of stores. For example, on x86-32 an f64 can be stored in one
8490 // processor operation but an i64 (which is not legal) requires two. So the
8491 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00008492 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00008493 SDValue Tmp;
Craig Topper0ff11902013-08-15 02:44:19 +00008494 switch (CFP->getSimpleValueType(0).SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008495 default: llvm_unreachable("Unknown FP type");
Pete Cooper438c0402012-06-21 18:00:39 +00008496 case MVT::f16: // We don't do this for these yet.
8497 case MVT::f80:
Owen Anderson825b72b2009-08-11 20:47:22 +00008498 case MVT::f128:
8499 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00008500 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008501 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00008502 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00008503 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00008504 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00008505 bitcastToAPInt().getZExtValue(), MVT::i32);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008506 return DAG.getStore(Chain, SDLoc(N), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008507 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008508 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00008509 }
8510 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008511 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00008512 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008513 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00008514 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00008515 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00008516 getZExtValue(), MVT::i64);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008517 return DAG.getStore(Chain, SDLoc(N), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008518 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008519 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008520 }
Owen Andersona34d9362011-04-14 17:30:49 +00008521
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008522 if (!ST->isVolatile() &&
8523 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00008524 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00008525 // argument passing. Since this is so common, custom legalize the
8526 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00008527 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00008528 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
8529 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00008530 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00008531
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00008532 unsigned Alignment = ST->getAlignment();
8533 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00008534 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00008535
Andrew Trickac6d9be2013-05-25 02:42:55 +00008536 SDValue St0 = DAG.getStore(Chain, SDLoc(ST), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008537 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008538 isVolatile, isNonTemporal,
8539 ST->getAlignment());
Andrew Trickac6d9be2013-05-25 02:42:55 +00008540 Ptr = DAG.getNode(ISD::ADD, SDLoc(N), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00008541 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00008542 Alignment = MinAlign(Alignment, 4U);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008543 SDValue St1 = DAG.getStore(Chain, SDLoc(ST), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008544 Ptr, ST->getPointerInfo().getWithOffset(4),
8545 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00008546 Alignment);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008547 return DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00008548 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00008549 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008550
Chris Lattner62be1a72006-12-12 04:16:14 +00008551 break;
Evan Cheng25ece662006-12-11 17:25:19 +00008552 }
Nate Begeman2cbba892006-12-11 02:23:46 +00008553 }
Nate Begeman2cbba892006-12-11 02:23:46 +00008554 }
8555
Evan Cheng255f20f2010-04-01 06:04:33 +00008556 // Try to infer better alignment information than the store already has.
8557 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00008558 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
8559 if (Align > ST->getAlignment())
Andrew Trickac6d9be2013-05-25 02:42:55 +00008560 return DAG.getTruncStore(Chain, SDLoc(N), Value,
Evan Chenged1c0c72011-11-28 22:37:34 +00008561 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
8562 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00008563 }
8564 }
8565
Evan Cheng31959b12011-02-02 01:06:55 +00008566 // Try transforming a pair floating point load / store ops to integer
8567 // load / store ops.
8568 SDValue NewST = TransformFPLoadStorePair(N);
8569 if (NewST.getNode())
8570 return NewST;
8571
Hal Finkel253acef2013-08-29 03:29:55 +00008572 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA :
8573 TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
8574 if (UseAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00008575 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008576 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00008577
Jim Laskey6ff23e52006-10-04 16:53:27 +00008578 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00008579 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00008580 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008581
8582 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008583 if (ST->isTruncatingStore()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008584 ReplStore = DAG.getTruncStore(BetterChain, SDLoc(N), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008585 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008586 ST->getMemoryVT(), ST->isVolatile(),
8587 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008588 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008589 ReplStore = DAG.getStore(BetterChain, SDLoc(N), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008590 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008591 ST->isVolatile(), ST->isNonTemporal(),
8592 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008593 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008594
Jim Laskey279f0532006-09-25 16:29:54 +00008595 // Create token to keep both nodes around.
Andrew Trickac6d9be2013-05-25 02:42:55 +00008596 SDValue Token = DAG.getNode(ISD::TokenFactor, SDLoc(N),
Owen Anderson825b72b2009-08-11 20:47:22 +00008597 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00008598
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008599 // Make sure the new and old chains are cleaned up.
8600 AddToWorkList(Token.getNode());
8601
Jim Laskey274062c2006-10-13 23:32:28 +00008602 // Don't add users to work list.
8603 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00008604 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00008605 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008606
Evan Cheng33dbedc2006-11-05 09:31:14 +00008607 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00008608 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00008609 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00008610
Chris Lattner3c872852007-12-29 06:26:16 +00008611 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00008612 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00008613 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00008614 // See if we can simplify the input to this truncstore with knowledge that
8615 // only the low bits are being used. For example:
8616 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00008617 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00008618 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00008619 APInt::getLowBitsSet(
8620 Value.getValueType().getScalarType().getSizeInBits(),
8621 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00008622 AddToWorkList(Value.getNode());
8623 if (Shorter.getNode())
Andrew Trickac6d9be2013-05-25 02:42:55 +00008624 return DAG.getTruncStore(Chain, SDLoc(N), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008625 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008626 ST->isVolatile(), ST->isNonTemporal(),
8627 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00008628
Chris Lattnere33544c2007-10-13 06:58:48 +00008629 // Otherwise, see if we can simplify the operation with
8630 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00008631 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00008632 APInt::getLowBitsSet(
8633 Value.getValueType().getScalarType().getSizeInBits(),
8634 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00008635 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00008636 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008637
Chris Lattner3c872852007-12-29 06:26:16 +00008638 // If this is a load followed by a store to the same location, then the store
8639 // is dead/noop.
8640 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008641 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008642 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00008643 // There can't be any side effects between the load and store, such as
8644 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00008645 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00008646 // The store is dead, remove it.
8647 return Chain;
8648 }
8649 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008650
Chris Lattnerddf89562008-01-17 19:59:44 +00008651 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
8652 // truncating store. We can do this even if this is already a truncstore.
8653 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00008654 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008655 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008656 ST->getMemoryVT())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008657 return DAG.getTruncStore(Chain, SDLoc(N), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008658 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008659 ST->isVolatile(), ST->isNonTemporal(),
8660 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00008661 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008662
Nadav Rotemc653de62012-10-03 16:11:15 +00008663 // Only perform this optimization before the types are legal, because we
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008664 // don't want to perform this optimization on every DAGCombine invocation.
Nadav Rotema569a802012-12-02 17:14:09 +00008665 if (!LegalTypes) {
8666 bool EverChanged = false;
8667
8668 do {
8669 // There can be multiple store sequences on the same chain.
8670 // Keep trying to merge store sequences until we are unable to do so
8671 // or until we merge the last store on the chain.
8672 bool Changed = MergeConsecutiveStores(ST);
8673 EverChanged |= Changed;
8674 if (!Changed) break;
8675 } while (ST->getOpcode() != ISD::DELETED_NODE);
8676
8677 if (EverChanged)
8678 return SDValue(N, 0);
8679 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008680
Evan Cheng8b944d32009-05-28 00:35:15 +00008681 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00008682}
8683
Dan Gohman475871a2008-07-27 21:46:04 +00008684SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
8685 SDValue InVec = N->getOperand(0);
8686 SDValue InVal = N->getOperand(1);
8687 SDValue EltNo = N->getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008688 SDLoc dl(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00008689
Bob Wilson492fd452010-05-19 23:42:58 +00008690 // If the inserted element is an UNDEF, just use the input vector.
8691 if (InVal.getOpcode() == ISD::UNDEF)
8692 return InVec;
8693
Nadav Rotem609d54e2011-02-12 14:40:33 +00008694 EVT VT = InVec.getValueType();
8695
Owen Anderson95771af2011-02-25 21:41:48 +00008696 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00008697 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
8698 return SDValue();
8699
Eli Friedman9db817f2011-09-09 21:04:06 +00008700 // Check that we know which element is being inserted
8701 if (!isa<ConstantSDNode>(EltNo))
8702 return SDValue();
8703 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008704
Eli Friedman9db817f2011-09-09 21:04:06 +00008705 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
8706 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
8707 // vector elements.
8708 SmallVector<SDValue, 8> Ops;
Quentin Colombet75c94332013-07-30 00:24:09 +00008709 // Do not combine these two vectors if the output vector will not replace
8710 // the input vector.
8711 if (InVec.getOpcode() == ISD::BUILD_VECTOR && InVec.hasOneUse()) {
Eli Friedman9db817f2011-09-09 21:04:06 +00008712 Ops.append(InVec.getNode()->op_begin(),
8713 InVec.getNode()->op_end());
8714 } else if (InVec.getOpcode() == ISD::UNDEF) {
8715 unsigned NElts = VT.getVectorNumElements();
8716 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
8717 } else {
8718 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008719 }
Eli Friedman9db817f2011-09-09 21:04:06 +00008720
8721 // Insert the element
8722 if (Elt < Ops.size()) {
8723 // All the operands of BUILD_VECTOR must have the same type;
8724 // we enforce that here.
8725 EVT OpVT = Ops[0].getValueType();
8726 if (InVal.getValueType() != OpVT)
8727 InVal = OpVT.bitsGT(InVal.getValueType()) ?
8728 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
8729 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
8730 Ops[Elt] = InVal;
8731 }
8732
8733 // Return the new vector
8734 return DAG.getNode(ISD::BUILD_VECTOR, dl,
8735 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00008736}
8737
Dan Gohman475871a2008-07-27 21:46:04 +00008738SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008739 // (vextract (scalar_to_vector val, 0) -> val
8740 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00008741 EVT VT = InVec.getValueType();
8742 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008743
Duncan Sandsc356f332011-05-09 08:03:33 +00008744 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
8745 // Check if the result type doesn't match the inserted element type. A
8746 // SCALAR_TO_VECTOR may truncate the inserted element and the
8747 // EXTRACT_VECTOR_ELT may widen the extracted vector.
8748 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00008749 if (InOp.getValueType() != NVT) {
8750 assert(InOp.getValueType().isInteger() && NVT.isInteger());
Andrew Trickac6d9be2013-05-25 02:42:55 +00008751 return DAG.getSExtOrTrunc(InOp, SDLoc(InVec), NVT);
Duncan Sandsc356f332011-05-09 08:03:33 +00008752 }
8753 return InOp;
8754 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008755
Nadav Rotemba05c912012-01-17 21:44:01 +00008756 SDValue EltNo = N->getOperand(1);
8757 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
8758
8759 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
8760 // We only perform this optimization before the op legalization phase because
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008761 // we may introduce new vector instructions which are not backed by TD
8762 // patterns. For example on AVX, extracting elements from a wide vector
8763 // without using extract_subvector.
Nadav Rotemba05c912012-01-17 21:44:01 +00008764 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
8765 && ConstEltNo && !LegalOperations) {
8766 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
8767 int NumElem = VT.getVectorNumElements();
8768 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
8769 // Find the new index to extract from.
8770 int OrigElt = SVOp->getMaskElt(Elt);
8771
8772 // Extracting an undef index is undef.
8773 if (OrigElt == -1)
8774 return DAG.getUNDEF(NVT);
8775
8776 // Select the right vector half to extract from.
8777 if (OrigElt < NumElem) {
8778 InVec = InVec->getOperand(0);
8779 } else {
8780 InVec = InVec->getOperand(1);
8781 OrigElt -= NumElem;
8782 }
8783
Tom Stellard425b76c2013-08-05 22:22:01 +00008784 EVT IndexTy = TLI.getVectorIdxTy();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008785 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(N), NVT,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008786 InVec, DAG.getConstant(OrigElt, IndexTy));
Nadav Rotemba05c912012-01-17 21:44:01 +00008787 }
8788
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008789 // Perform only after legalization to ensure build_vector / vector_shuffle
8790 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00008791 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008792
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008793 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
8794 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
8795 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00008796
Nadav Rotemba05c912012-01-17 21:44:01 +00008797 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00008798 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00008799 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00008800 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00008801 EVT ExtVT = VT.getVectorElementType();
8802 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00008803
Evan Cheng84387ea2012-03-13 22:00:52 +00008804 // If the result of load has to be truncated, then it's not necessarily
8805 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00008806 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00008807 return SDValue();
8808
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008809 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008810 // Don't duplicate a load with other uses.
8811 if (!InVec.hasOneUse())
8812 return SDValue();
8813
Owen Andersone50ed302009-08-10 22:56:29 +00008814 EVT BCVT = InVec.getOperand(0).getValueType();
8815 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008816 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00008817 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
8818 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008819 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00008820 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008821 NewLoad = true;
8822 }
Evan Cheng513da432007-10-06 08:19:55 +00008823
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008824 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00008825 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00008826 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008827 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00008828 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00008829 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00008830 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008831 // Don't duplicate a load with other uses.
8832 if (!InVec.hasOneUse())
8833 return SDValue();
8834
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008835 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00008836 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008837 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
8838 // =>
8839 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00008840
Eli Friedmand6e25602011-12-26 22:49:32 +00008841 // Don't duplicate a load with other uses.
8842 if (!InVec.hasOneUse())
8843 return SDValue();
8844
Mon P Wanga60b5232008-12-11 00:26:16 +00008845 // If the bit convert changed the number of elements, it is unsafe
8846 // to examine the mask.
8847 if (BCNumEltsChanged)
8848 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00008849
8850 // Select the input vector, guarding against out of range extract vector.
8851 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00008852 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00008853 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
8854
Eli Friedmand6e25602011-12-26 22:49:32 +00008855 if (InVec.getOpcode() == ISD::BITCAST) {
8856 // Don't duplicate a load with other uses.
8857 if (!InVec.hasOneUse())
8858 return SDValue();
8859
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008860 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00008861 }
Gabor Greifba36cb52008-08-28 21:40:38 +00008862 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008863 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00008864 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00008865 }
8866 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008867
Eli Friedmand6e25602011-12-26 22:49:32 +00008868 // Make sure we found a non-volatile load and the extractelement is
8869 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00008870 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00008871 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008872
Eric Christopherd81f17a2010-11-03 20:44:42 +00008873 // If Idx was -1 above, Elt is going to be -1, so just return undef.
8874 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00008875 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00008876
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008877 unsigned Align = LN0->getAlignment();
8878 if (NewLoad) {
8879 // Check the resultant load doesn't need a higher alignment than the
8880 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00008881 unsigned NewAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00008882 TLI.getDataLayout()
Eric Christopher503a64d2010-12-09 04:48:06 +00008883 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00008884
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008885 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008886 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00008887
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008888 Align = NewAlign;
8889 }
8890
Dan Gohman475871a2008-07-27 21:46:04 +00008891 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00008892 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008893
Eric Christopherd81f17a2010-11-03 20:44:42 +00008894 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00008895 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00008896 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008897 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00008898 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008899 NewPtr = DAG.getNode(ISD::ADD, SDLoc(N), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008900 DAG.getConstant(PtrOff, PtrType));
8901 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008902
Eli Friedman4db4add2011-11-16 23:50:22 +00008903 // The replacement we need to do here is a little tricky: we need to
8904 // replace an extractelement of a load with a load.
8905 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00008906 // Note that this replacement assumes that the extractvalue is the only
8907 // use of the load; that's okay because we don't want to perform this
8908 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00008909 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00008910 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00008911 if (NVT.bitsGT(LVT)) {
8912 // If the result type of vextract is wider than the load, then issue an
8913 // extending load instead.
8914 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
8915 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008916 Load = DAG.getExtLoad(ExtType, SDLoc(N), NVT, LN0->getChain(),
Evan Cheng84387ea2012-03-13 22:00:52 +00008917 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
8918 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008919 Chain = Load.getValue(1);
8920 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008921 Load = DAG.getLoad(LVT, SDLoc(N), LN0->getChain(), NewPtr,
Evan Cheng84387ea2012-03-13 22:00:52 +00008922 LN0->getPointerInfo().getWithOffset(PtrOff),
Stephen Lin155615d2013-07-08 00:37:03 +00008923 LN0->isVolatile(), LN0->isNonTemporal(),
Evan Cheng84387ea2012-03-13 22:00:52 +00008924 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008925 Chain = Load.getValue(1);
8926 if (NVT.bitsLT(LVT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00008927 Load = DAG.getNode(ISD::TRUNCATE, SDLoc(N), NVT, Load);
Evan Chenga03d3662012-03-13 22:16:11 +00008928 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00008929 Load = DAG.getNode(ISD::BITCAST, SDLoc(N), NVT, Load);
Evan Chenga03d3662012-03-13 22:16:11 +00008930 }
Eli Friedman4db4add2011-11-16 23:50:22 +00008931 WorkListRemover DeadNodes(*this);
8932 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00008933 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00008934 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedman4db4add2011-11-16 23:50:22 +00008935 // Since we're explcitly calling ReplaceAllUses, add the new node to the
8936 // worklist explicitly as well.
8937 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00008938 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00008939 // Make sure to revisit this node to clean it up; it will usually be dead.
8940 AddToWorkList(N);
8941 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00008942 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008943
Dan Gohman475871a2008-07-27 21:46:04 +00008944 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00008945}
Evan Cheng513da432007-10-06 08:19:55 +00008946
Michael Liaofac14ab2012-10-23 23:06:52 +00008947// Simplify (build_vec (ext )) to (bitcast (build_vec ))
8948SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) {
8949 // We perform this optimization post type-legalization because
8950 // the type-legalizer often scalarizes integer-promoted vectors.
8951 // Performing this optimization before may create bit-casts which
8952 // will be type-legalized to complex code sequences.
8953 // We perform this optimization only before the operation legalizer because we
8954 // may introduce illegal operations.
8955 if (Level != AfterLegalizeVectorOps && Level != AfterLegalizeTypes)
8956 return SDValue();
8957
Dan Gohman7f321562007-06-25 16:23:39 +00008958 unsigned NumInScalars = N->getNumOperands();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008959 SDLoc dl(N);
Owen Andersone50ed302009-08-10 22:56:29 +00008960 EVT VT = N->getValueType(0);
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008961
Nadav Rotemb00418a2011-10-29 21:23:04 +00008962 // Check to see if this is a BUILD_VECTOR of a bunch of values
8963 // which come from any_extend or zero_extend nodes. If so, we can create
8964 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00008965 // optimizations. We do not handle sign-extend because we can't fill the sign
8966 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008967 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00008968 bool AllAnyExt = true;
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008969
Craig Topperd3b58892012-01-17 09:09:48 +00008970 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00008971 SDValue In = N->getOperand(i);
8972 // Ignore undef inputs.
8973 if (In.getOpcode() == ISD::UNDEF) continue;
8974
8975 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
8976 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
8977
Nadav Rotemf47368b2011-10-31 20:08:25 +00008978 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008979 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00008980 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008981 break;
8982 }
8983
8984 // The input is a ZeroExt or AnyExt. Check the original type.
8985 EVT InTy = In.getOperand(0).getValueType();
8986
8987 // Check that all of the widened source types are the same.
8988 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00008989 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008990 SourceType = InTy;
8991 else if (InTy != SourceType) {
8992 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00008993 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008994 break;
8995 }
8996
8997 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00008998 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008999 }
9000
Nadav Rotemf47368b2011-10-31 20:08:25 +00009001 // In order to have valid types, all of the inputs must be extended from the
9002 // same source type and all of the inputs must be any or zero extend.
9003 // Scalar sizes must be a power of two.
Michael Liaofac14ab2012-10-23 23:06:52 +00009004 EVT OutScalarTy = VT.getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009005 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00009006 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
9007 isPowerOf2_32(SourceType.getSizeInBits());
9008
Nadav Rotem6431ff92012-03-15 08:49:06 +00009009 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
9010 // turn into a single shuffle instruction.
Michael Liaofac14ab2012-10-23 23:06:52 +00009011 if (!ValidTypes)
9012 return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00009013
Michael Liaofac14ab2012-10-23 23:06:52 +00009014 bool isLE = TLI.isLittleEndian();
9015 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
9016 assert(ElemRatio > 1 && "Invalid element size ratio");
9017 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
9018 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00009019
Michael Liaofac14ab2012-10-23 23:06:52 +00009020 unsigned NewBVElems = ElemRatio * VT.getVectorNumElements();
9021 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00009022
Michael Liaofac14ab2012-10-23 23:06:52 +00009023 // Populate the new build_vector
Jakub Staszakadf38912012-10-24 00:38:25 +00009024 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Michael Liaofac14ab2012-10-23 23:06:52 +00009025 SDValue Cast = N->getOperand(i);
9026 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
9027 Cast.getOpcode() == ISD::ZERO_EXTEND ||
9028 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
9029 SDValue In;
9030 if (Cast.getOpcode() == ISD::UNDEF)
9031 In = DAG.getUNDEF(SourceType);
9032 else
9033 In = Cast->getOperand(0);
9034 unsigned Index = isLE ? (i * ElemRatio) :
9035 (i * ElemRatio + (ElemRatio - 1));
Nadav Rotemb00418a2011-10-29 21:23:04 +00009036
Michael Liaofac14ab2012-10-23 23:06:52 +00009037 assert(Index < Ops.size() && "Invalid index");
9038 Ops[Index] = In;
Nadav Rotemb00418a2011-10-29 21:23:04 +00009039 }
Chris Lattnerca242442006-03-19 01:27:56 +00009040
Michael Liaofac14ab2012-10-23 23:06:52 +00009041 // The type of the new BUILD_VECTOR node.
9042 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
9043 assert(VecVT.getSizeInBits() == VT.getSizeInBits() &&
9044 "Invalid vector size");
9045 // Check if the new vector type is legal.
9046 if (!isTypeLegal(VecVT)) return SDValue();
9047
9048 // Make the new BUILD_VECTOR.
9049 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, &Ops[0], Ops.size());
9050
9051 // The new BUILD_VECTOR node has the potential to be further optimized.
9052 AddToWorkList(BV.getNode());
9053 // Bitcast to the desired type.
9054 return DAG.getNode(ISD::BITCAST, dl, VT, BV);
9055}
9056
Michael Liao1a5cc712012-10-24 04:14:18 +00009057SDValue DAGCombiner::reduceBuildVecConvertToConvertBuildVec(SDNode *N) {
9058 EVT VT = N->getValueType(0);
9059
9060 unsigned NumInScalars = N->getNumOperands();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009061 SDLoc dl(N);
Michael Liao1a5cc712012-10-24 04:14:18 +00009062
9063 EVT SrcVT = MVT::Other;
9064 unsigned Opcode = ISD::DELETED_NODE;
9065 unsigned NumDefs = 0;
9066
9067 for (unsigned i = 0; i != NumInScalars; ++i) {
9068 SDValue In = N->getOperand(i);
9069 unsigned Opc = In.getOpcode();
9070
9071 if (Opc == ISD::UNDEF)
9072 continue;
9073
9074 // If all scalar values are floats and converted from integers.
9075 if (Opcode == ISD::DELETED_NODE &&
9076 (Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP)) {
9077 Opcode = Opc;
Michael Liao1a5cc712012-10-24 04:14:18 +00009078 }
Tom Stellardd40758b2013-01-02 22:13:01 +00009079
Michael Liao1a5cc712012-10-24 04:14:18 +00009080 if (Opc != Opcode)
9081 return SDValue();
9082
9083 EVT InVT = In.getOperand(0).getValueType();
9084
9085 // If all scalar values are typed differently, bail out. It's chosen to
9086 // simplify BUILD_VECTOR of integer types.
9087 if (SrcVT == MVT::Other)
9088 SrcVT = InVT;
9089 if (SrcVT != InVT)
9090 return SDValue();
9091 NumDefs++;
9092 }
9093
9094 // If the vector has just one element defined, it's not worth to fold it into
9095 // a vectorized one.
9096 if (NumDefs < 2)
9097 return SDValue();
9098
9099 assert((Opcode == ISD::UINT_TO_FP || Opcode == ISD::SINT_TO_FP)
9100 && "Should only handle conversion from integer to float.");
9101 assert(SrcVT != MVT::Other && "Cannot determine source type!");
9102
9103 EVT NVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumInScalars);
Tom Stellardd40758b2013-01-02 22:13:01 +00009104
9105 if (!TLI.isOperationLegalOrCustom(Opcode, NVT))
9106 return SDValue();
9107
Michael Liao1a5cc712012-10-24 04:14:18 +00009108 SmallVector<SDValue, 8> Opnds;
9109 for (unsigned i = 0; i != NumInScalars; ++i) {
9110 SDValue In = N->getOperand(i);
9111
9112 if (In.getOpcode() == ISD::UNDEF)
9113 Opnds.push_back(DAG.getUNDEF(SrcVT));
9114 else
9115 Opnds.push_back(In.getOperand(0));
9116 }
9117 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT,
9118 &Opnds[0], Opnds.size());
9119 AddToWorkList(BV.getNode());
9120
9121 return DAG.getNode(Opcode, dl, VT, BV);
9122}
9123
Michael Liaofac14ab2012-10-23 23:06:52 +00009124SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
9125 unsigned NumInScalars = N->getNumOperands();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009126 SDLoc dl(N);
Michael Liaofac14ab2012-10-23 23:06:52 +00009127 EVT VT = N->getValueType(0);
9128
9129 // A vector built entirely of undefs is undef.
9130 if (ISD::allOperandsUndef(N))
9131 return DAG.getUNDEF(VT);
9132
9133 SDValue V = reduceBuildVecExtToExtBuildVec(N);
9134 if (V.getNode())
9135 return V;
9136
Michael Liao1a5cc712012-10-24 04:14:18 +00009137 V = reduceBuildVecConvertToConvertBuildVec(N);
9138 if (V.getNode())
9139 return V;
9140
Dan Gohman7f321562007-06-25 16:23:39 +00009141 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
9142 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
9143 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00009144
9145 // May only combine to shuffle after legalize if shuffle is legal.
9146 if (LegalOperations &&
9147 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
9148 return SDValue();
9149
Dan Gohman475871a2008-07-27 21:46:04 +00009150 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00009151 for (unsigned i = 0; i != NumInScalars; ++i) {
9152 // Ignore undef inputs.
9153 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00009154
Dan Gohman7f321562007-06-25 16:23:39 +00009155 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00009156 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00009157 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00009158 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00009159 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009160 break;
9161 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009162
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009163 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00009164 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009165 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
9166 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00009167
Gabor Greifba36cb52008-08-28 21:40:38 +00009168 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00009169 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00009170 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00009171 VecIn2 = ExtractedFromVec;
9172 } else {
9173 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00009174 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009175 break;
9176 }
9177 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009178
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009179 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00009180 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00009181 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00009182 for (unsigned i = 0; i != NumInScalars; ++i) {
9183 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00009184 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009185 continue;
9186 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009187
Rafael Espindola15684b22009-04-24 12:40:33 +00009188 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00009189 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00009190 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009191 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00009192 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
9193 if (ExtIndex > VT.getVectorNumElements())
9194 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009195
Nate Begeman5a5ca152009-04-29 05:20:52 +00009196 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009197 continue;
9198 }
9199
9200 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00009201 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00009202 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009203 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009204
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009205 // We can't generate a shuffle node with mismatched input and output types.
9206 // Attempt to transform a single input vector to the correct type.
9207 if ((VT != VecIn1.getValueType())) {
9208 // We don't support shuffeling between TWO values of different types.
9209 if (VecIn2.getNode() != 0)
9210 return SDValue();
9211
9212 // We only support widening of vectors which are half the size of the
9213 // output registers. For example XMM->YMM widening on X86 with AVX.
9214 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
9215 return SDValue();
9216
James Molloy8cd08bf2012-09-10 14:01:21 +00009217 // If the input vector type has a different base type to the output
9218 // vector type, bail out.
9219 if (VecIn1.getValueType().getVectorElementType() !=
9220 VT.getVectorElementType())
9221 return SDValue();
9222
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00009223 // Widen the input vector by adding undef values.
Michael Liaofac14ab2012-10-23 23:06:52 +00009224 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00009225 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009226 }
9227
9228 // If VecIn2 is unused then change it to undef.
9229 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
9230
Nadav Rotem6dfabb62012-09-20 08:53:31 +00009231 // Check that we were able to transform all incoming values to the same
9232 // type.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00009233 if (VecIn2.getValueType() != VecIn1.getValueType() ||
9234 VecIn1.getValueType() != VT)
9235 return SDValue();
9236
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009237 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00009238 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00009239 return SDValue();
9240
Dan Gohman7f321562007-06-25 16:23:39 +00009241 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00009242 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00009243 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009244 Ops[1] = VecIn2;
Michael Liaofac14ab2012-10-23 23:06:52 +00009245 return DAG.getVectorShuffle(VT, dl, Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009246 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009247
Dan Gohman475871a2008-07-27 21:46:04 +00009248 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00009249}
9250
Dan Gohman475871a2008-07-27 21:46:04 +00009251SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00009252 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
9253 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
9254 // inputs come from at most two distinct vectors, turn this into a shuffle
9255 // node.
9256
9257 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00009258 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00009259 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00009260
Nadav Rotemb7e230d2012-07-14 21:30:27 +00009261 // Check if all of the operands are undefs.
Nadav Rotemb87bdac2012-07-15 08:38:23 +00009262 if (ISD::allOperandsUndef(N))
Nadav Rotemb7e230d2012-07-14 21:30:27 +00009263 return DAG.getUNDEF(N->getValueType(0));
9264
Nadav Rotemb2ed5fa2013-05-01 19:18:51 +00009265 // Type legalization of vectors and DAG canonicalization of SHUFFLE_VECTOR
9266 // nodes often generate nop CONCAT_VECTOR nodes.
9267 // Scan the CONCAT_VECTOR operands and look for a CONCAT operations that
9268 // place the incoming vectors at the exact same location.
9269 SDValue SingleSource = SDValue();
9270 unsigned PartNumElem = N->getOperand(0).getValueType().getVectorNumElements();
9271
9272 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
9273 SDValue Op = N->getOperand(i);
9274
9275 if (Op.getOpcode() == ISD::UNDEF)
9276 continue;
9277
9278 // Check if this is the identity extract:
9279 if (Op.getOpcode() != ISD::EXTRACT_SUBVECTOR)
9280 return SDValue();
9281
9282 // Find the single incoming vector for the extract_subvector.
9283 if (SingleSource.getNode()) {
9284 if (Op.getOperand(0) != SingleSource)
9285 return SDValue();
9286 } else {
9287 SingleSource = Op.getOperand(0);
Michael Kuperstein27202482013-05-06 08:06:13 +00009288
9289 // Check the source type is the same as the type of the result.
9290 // If not, this concat may extend the vector, so we can not
9291 // optimize it away.
9292 if (SingleSource.getValueType() != N->getValueType(0))
9293 return SDValue();
Nadav Rotemb2ed5fa2013-05-01 19:18:51 +00009294 }
9295
9296 unsigned IdentityIndex = i * PartNumElem;
9297 ConstantSDNode *CS = dyn_cast<ConstantSDNode>(Op.getOperand(1));
9298 // The extract index must be constant.
9299 if (!CS)
9300 return SDValue();
Stephen Lin155615d2013-07-08 00:37:03 +00009301
Nadav Rotemb2ed5fa2013-05-01 19:18:51 +00009302 // Check that we are reading from the identity index.
9303 if (CS->getZExtValue() != IdentityIndex)
9304 return SDValue();
9305 }
9306
9307 if (SingleSource.getNode())
9308 return SingleSource;
Stephen Lin155615d2013-07-08 00:37:03 +00009309
Dan Gohman475871a2008-07-27 21:46:04 +00009310 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00009311}
9312
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00009313SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
9314 EVT NVT = N->getValueType(0);
9315 SDValue V = N->getOperand(0);
9316
Michael Liao13429e22012-10-17 20:48:33 +00009317 if (V->getOpcode() == ISD::CONCAT_VECTORS) {
9318 // Combine:
9319 // (extract_subvec (concat V1, V2, ...), i)
9320 // Into:
9321 // Vi if possible
Michael Liao9aecdb52012-10-19 03:17:00 +00009322 // Only operand 0 is checked as 'concat' assumes all inputs of the same type.
9323 if (V->getOperand(0).getValueType() != NVT)
9324 return SDValue();
Michael Liao13429e22012-10-17 20:48:33 +00009325 unsigned Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
9326 unsigned NumElems = NVT.getVectorNumElements();
9327 assert((Idx % NumElems) == 0 &&
9328 "IDX in concat is not a multiple of the result vector length.");
9329 return V->getOperand(Idx / NumElems);
9330 }
9331
Michael Liaob4f98ea2013-03-25 23:47:35 +00009332 // Skip bitcasting
9333 if (V->getOpcode() == ISD::BITCAST)
9334 V = V.getOperand(0);
9335
9336 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009337 SDLoc dl(N);
Michael Liaob4f98ea2013-03-25 23:47:35 +00009338 // Handle only simple case where vector being inserted and vector
9339 // being extracted are of same type, and are half size of larger vectors.
9340 EVT BigVT = V->getOperand(0).getValueType();
9341 EVT SmallVT = V->getOperand(1).getValueType();
9342 if (!NVT.bitsEq(SmallVT) || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
9343 return SDValue();
9344
9345 // Only handle cases where both indexes are constants with the same type.
9346 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
9347 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
9348
9349 if (InsIdx && ExtIdx &&
9350 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
9351 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
9352 // Combine:
9353 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
9354 // Into:
9355 // indices are equal or bit offsets are equal => V1
9356 // otherwise => (extract_subvec V1, ExtIdx)
9357 if (InsIdx->getZExtValue() * SmallVT.getScalarType().getSizeInBits() ==
9358 ExtIdx->getZExtValue() * NVT.getScalarType().getSizeInBits())
9359 return DAG.getNode(ISD::BITCAST, dl, NVT, V->getOperand(1));
9360 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NVT,
9361 DAG.getNode(ISD::BITCAST, dl,
9362 N->getOperand(0).getValueType(),
9363 V->getOperand(0)), N->getOperand(1));
9364 }
9365 }
9366
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00009367 return SDValue();
9368}
9369
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009370// Tries to turn a shuffle of two CONCAT_VECTORS into a single concat.
9371static SDValue partitionShuffleOfConcats(SDNode *N, SelectionDAG &DAG) {
9372 EVT VT = N->getValueType(0);
9373 unsigned NumElts = VT.getVectorNumElements();
9374
9375 SDValue N0 = N->getOperand(0);
9376 SDValue N1 = N->getOperand(1);
9377 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
9378
9379 SmallVector<SDValue, 4> Ops;
9380 EVT ConcatVT = N0.getOperand(0).getValueType();
9381 unsigned NumElemsPerConcat = ConcatVT.getVectorNumElements();
9382 unsigned NumConcats = NumElts / NumElemsPerConcat;
9383
9384 // Look at every vector that's inserted. We're looking for exact
9385 // subvector-sized copies from a concatenated vector
9386 for (unsigned I = 0; I != NumConcats; ++I) {
9387 // Make sure we're dealing with a copy.
9388 unsigned Begin = I * NumElemsPerConcat;
Hao Liu3778c042013-05-13 02:07:05 +00009389 bool AllUndef = true, NoUndef = true;
9390 for (unsigned J = Begin; J != Begin + NumElemsPerConcat; ++J) {
9391 if (SVN->getMaskElt(J) >= 0)
9392 AllUndef = false;
9393 else
9394 NoUndef = false;
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009395 }
9396
Hao Liu3778c042013-05-13 02:07:05 +00009397 if (NoUndef) {
Hao Liu3778c042013-05-13 02:07:05 +00009398 if (SVN->getMaskElt(Begin) % NumElemsPerConcat != 0)
9399 return SDValue();
9400
9401 for (unsigned J = 1; J != NumElemsPerConcat; ++J)
9402 if (SVN->getMaskElt(Begin + J - 1) + 1 != SVN->getMaskElt(Begin + J))
9403 return SDValue();
9404
9405 unsigned FirstElt = SVN->getMaskElt(Begin) / NumElemsPerConcat;
9406 if (FirstElt < N0.getNumOperands())
9407 Ops.push_back(N0.getOperand(FirstElt));
9408 else
9409 Ops.push_back(N1.getOperand(FirstElt - N0.getNumOperands()));
9410
9411 } else if (AllUndef) {
9412 Ops.push_back(DAG.getUNDEF(N0.getOperand(0).getValueType()));
9413 } else { // Mixed with general masks and undefs, can't do optimization.
9414 return SDValue();
9415 }
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009416 }
9417
Andrew Trickac6d9be2013-05-25 02:42:55 +00009418 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, Ops.data(),
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009419 Ops.size());
9420}
9421
Dan Gohman475871a2008-07-27 21:46:04 +00009422SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00009423 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00009424 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00009425
Mon P Wangaeb06d22008-11-10 04:46:22 +00009426 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00009427 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00009428
Craig Topperae1bec52012-04-09 05:16:56 +00009429 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00009430
Craig Topper481b79c2012-01-04 08:07:43 +00009431 // Canonicalize shuffle undef, undef -> undef
9432 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
9433 return DAG.getUNDEF(VT);
9434
9435 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
9436
9437 // Canonicalize shuffle v, v -> v, undef
9438 if (N0 == N1) {
9439 SmallVector<int, 8> NewMask;
9440 for (unsigned i = 0; i != NumElts; ++i) {
9441 int Idx = SVN->getMaskElt(i);
9442 if (Idx >= (int)NumElts) Idx -= NumElts;
9443 NewMask.push_back(Idx);
9444 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00009445 return DAG.getVectorShuffle(VT, SDLoc(N), N0, DAG.getUNDEF(VT),
Craig Topper481b79c2012-01-04 08:07:43 +00009446 &NewMask[0]);
9447 }
9448
9449 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
9450 if (N0.getOpcode() == ISD::UNDEF) {
9451 SmallVector<int, 8> NewMask;
9452 for (unsigned i = 0; i != NumElts; ++i) {
9453 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00009454 if (Idx >= 0) {
Craig Topper01d22aa2013-08-08 07:38:55 +00009455 if (Idx >= (int)NumElts)
Craig Topper4b206bd2012-04-09 05:55:33 +00009456 Idx -= NumElts;
Craig Topper01d22aa2013-08-08 07:38:55 +00009457 else
9458 Idx = -1; // remove reference to lhs
Craig Topper4b206bd2012-04-09 05:55:33 +00009459 }
9460 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00009461 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00009462 return DAG.getVectorShuffle(VT, SDLoc(N), N1, DAG.getUNDEF(VT),
Craig Topper481b79c2012-01-04 08:07:43 +00009463 &NewMask[0]);
9464 }
9465
9466 // Remove references to rhs if it is undef
9467 if (N1.getOpcode() == ISD::UNDEF) {
9468 bool Changed = false;
9469 SmallVector<int, 8> NewMask;
9470 for (unsigned i = 0; i != NumElts; ++i) {
9471 int Idx = SVN->getMaskElt(i);
9472 if (Idx >= (int)NumElts) {
9473 Idx = -1;
9474 Changed = true;
9475 }
9476 NewMask.push_back(Idx);
9477 }
9478 if (Changed)
Andrew Trickac6d9be2013-05-25 02:42:55 +00009479 return DAG.getVectorShuffle(VT, SDLoc(N), N0, N1, &NewMask[0]);
Craig Topper481b79c2012-01-04 08:07:43 +00009480 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00009481
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009482 // If it is a splat, check if the argument vector is another splat or a
9483 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009484 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00009485 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00009486
Dan Gohman7f321562007-06-25 16:23:39 +00009487 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00009488 // not the number of vector elements, look through it. Be careful not to
9489 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009490 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00009491 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00009492 if (ConvInput.getValueType().isVector() &&
9493 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00009494 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00009495 }
9496
Dan Gohman7f321562007-06-25 16:23:39 +00009497 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009498 assert(V->getNumOperands() == NumElts &&
9499 "BUILD_VECTOR has wrong number of operands");
9500 SDValue Base;
9501 bool AllSame = true;
9502 for (unsigned i = 0; i != NumElts; ++i) {
9503 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
9504 Base = V->getOperand(i);
9505 break;
Evan Cheng917ec982006-07-21 08:25:53 +00009506 }
Evan Cheng917ec982006-07-21 08:25:53 +00009507 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009508 // Splat of <u, u, u, u>, return <u, u, u, u>
9509 if (!Base.getNode())
9510 return N0;
9511 for (unsigned i = 0; i != NumElts; ++i) {
9512 if (V->getOperand(i) != Base) {
9513 AllSame = false;
9514 break;
9515 }
9516 }
9517 // Splat of <x, x, x, x>, return <x, x, x, x>
9518 if (AllSame)
9519 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00009520 }
9521 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00009522
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009523 if (N0.getOpcode() == ISD::CONCAT_VECTORS &&
9524 Level < AfterLegalizeVectorOps &&
9525 (N1.getOpcode() == ISD::UNDEF ||
9526 (N1.getOpcode() == ISD::CONCAT_VECTORS &&
9527 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()))) {
9528 SDValue V = partitionShuffleOfConcats(N, DAG);
9529
9530 if (V.getNode())
9531 return V;
9532 }
9533
Nadav Rotem4ac90812012-04-01 19:31:22 +00009534 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009535 // and it reverses the swizzle of the previous shuffle then we can
9536 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00009537 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
9538 N1.getOpcode() == ISD::UNDEF) {
9539
Nadav Rotem4ac90812012-04-01 19:31:22 +00009540 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
9541
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009542 // Shuffle nodes can only reverse shuffles with a single non-undef value.
9543 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
9544 return SDValue();
9545
Craig Topperae1bec52012-04-09 05:16:56 +00009546 // The incoming shuffle must be of the same type as the result of the
9547 // current shuffle.
9548 assert(OtherSV->getOperand(0).getValueType() == VT &&
9549 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00009550
9551 for (unsigned i = 0; i != NumElts; ++i) {
9552 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00009553 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00009554 // Next, this index comes from the first value, which is the incoming
9555 // shuffle. Adopt the incoming index.
9556 if (Idx >= 0)
9557 Idx = OtherSV->getMaskElt(Idx);
9558
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009559 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00009560 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009561 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00009562 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009563
9564 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00009565 }
9566
Dan Gohman475871a2008-07-27 21:46:04 +00009567 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00009568}
9569
Evan Cheng44f1f092006-04-20 08:56:16 +00009570/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00009571/// an AND to a vector_shuffle with the destination vector and a zero vector.
9572/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00009573/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00009574SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00009575 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009576 SDLoc dl(N);
Dan Gohman475871a2008-07-27 21:46:04 +00009577 SDValue LHS = N->getOperand(0);
9578 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00009579 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009580 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00009581 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00009582 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00009583 SmallVector<int, 8> Indices;
9584 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00009585 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00009586 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00009587 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00009588 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00009589
9590 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00009591 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00009592 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00009593 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00009594 else
Dan Gohman475871a2008-07-27 21:46:04 +00009595 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009596 }
9597
9598 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00009599 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00009600 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00009601 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009602
Dan Gohman7f321562007-06-25 16:23:39 +00009603 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00009604 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00009605 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00009606 DAG.getConstant(0, EltVT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00009607 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Nate Begeman9008ca62009-04-27 18:41:29 +00009608 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009609 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00009610 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009611 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00009612 }
9613 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009614
Dan Gohman475871a2008-07-27 21:46:04 +00009615 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009616}
9617
Dan Gohman7f321562007-06-25 16:23:39 +00009618/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00009619SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Bob Wilsond7273432010-12-17 23:06:49 +00009620 assert(N->getValueType(0).isVector() &&
9621 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00009622
Dan Gohman475871a2008-07-27 21:46:04 +00009623 SDValue LHS = N->getOperand(0);
9624 SDValue RHS = N->getOperand(1);
9625 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00009626 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00009627
Dan Gohman7f321562007-06-25 16:23:39 +00009628 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00009629 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00009630 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00009631 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00009632 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00009633 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00009634 SDValue LHSOp = LHS.getOperand(i);
9635 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00009636 // If these two elements can't be folded, bail out.
9637 if ((LHSOp.getOpcode() != ISD::UNDEF &&
9638 LHSOp.getOpcode() != ISD::Constant &&
9639 LHSOp.getOpcode() != ISD::ConstantFP) ||
9640 (RHSOp.getOpcode() != ISD::UNDEF &&
9641 RHSOp.getOpcode() != ISD::Constant &&
9642 RHSOp.getOpcode() != ISD::ConstantFP))
9643 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00009644
Evan Cheng7b336a82006-05-31 06:08:35 +00009645 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00009646 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
9647 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00009648 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00009649 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00009650 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00009651 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00009652 break;
9653 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009654
Bob Wilsond7273432010-12-17 23:06:49 +00009655 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00009656 EVT RVT = RHSOp.getValueType();
9657 if (RVT != VT) {
9658 // Integer BUILD_VECTOR operands may have types larger than the element
9659 // size (e.g., when the element type is not legal). Prior to type
9660 // legalization, the types may not match between the two BUILD_VECTORS.
9661 // Truncate one of the operands to make them match.
9662 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009663 RHSOp = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, RHSOp);
Bob Wilsondb2b18f2011-10-18 17:34:47 +00009664 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009665 LHSOp = DAG.getNode(ISD::TRUNCATE, SDLoc(N), RVT, LHSOp);
Bob Wilsondb2b18f2011-10-18 17:34:47 +00009666 VT = RVT;
9667 }
9668 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00009669 SDValue FoldOp = DAG.getNode(N->getOpcode(), SDLoc(LHS), VT,
Evan Chenga0839882010-05-18 00:03:40 +00009670 LHSOp, RHSOp);
9671 if (FoldOp.getOpcode() != ISD::UNDEF &&
9672 FoldOp.getOpcode() != ISD::Constant &&
9673 FoldOp.getOpcode() != ISD::ConstantFP)
9674 break;
9675 Ops.push_back(FoldOp);
9676 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00009677 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009678
Bob Wilsond7273432010-12-17 23:06:49 +00009679 if (Ops.size() == LHS.getNumOperands())
Andrew Trickac6d9be2013-05-25 02:42:55 +00009680 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Bob Wilsond7273432010-12-17 23:06:49 +00009681 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00009682 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009683
Dan Gohman475871a2008-07-27 21:46:04 +00009684 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00009685}
9686
Craig Topperdd201ff2012-09-11 01:45:21 +00009687/// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG.
9688SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) {
Craig Topperdd201ff2012-09-11 01:45:21 +00009689 assert(N->getValueType(0).isVector() &&
9690 "SimplifyVUnaryOp only works on vectors!");
9691
9692 SDValue N0 = N->getOperand(0);
9693
9694 if (N0.getOpcode() != ISD::BUILD_VECTOR)
9695 return SDValue();
9696
9697 // Operand is a BUILD_VECTOR node, see if we can constant fold it.
9698 SmallVector<SDValue, 8> Ops;
9699 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
9700 SDValue Op = N0.getOperand(i);
9701 if (Op.getOpcode() != ISD::UNDEF &&
9702 Op.getOpcode() != ISD::ConstantFP)
9703 break;
9704 EVT EltVT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009705 SDValue FoldOp = DAG.getNode(N->getOpcode(), SDLoc(N0), EltVT, Op);
Craig Topperdd201ff2012-09-11 01:45:21 +00009706 if (FoldOp.getOpcode() != ISD::UNDEF &&
9707 FoldOp.getOpcode() != ISD::ConstantFP)
9708 break;
9709 Ops.push_back(FoldOp);
9710 AddToWorkList(FoldOp.getNode());
9711 }
9712
9713 if (Ops.size() != N0.getNumOperands())
9714 return SDValue();
9715
Andrew Trickac6d9be2013-05-25 02:42:55 +00009716 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Craig Topperdd201ff2012-09-11 01:45:21 +00009717 N0.getValueType(), &Ops[0], Ops.size());
9718}
9719
Andrew Trickac6d9be2013-05-25 02:42:55 +00009720SDValue DAGCombiner::SimplifySelect(SDLoc DL, SDValue N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00009721 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00009722 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00009723
Bill Wendling836ca7d2009-01-30 23:59:18 +00009724 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00009725 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009726
Nate Begemanf845b452005-10-08 00:29:44 +00009727 // If we got a simplified select_cc node back from SimplifySelectCC, then
9728 // break it down into a new SETCC node, and a new SELECT node, and then return
9729 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00009730 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009731 // Check to see if we got a select_cc back (to turn into setcc/select).
9732 // Otherwise, just return whatever node we got back, like fabs.
9733 if (SCC.getOpcode() == ISD::SELECT_CC) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009734 SDValue SETCC = DAG.getNode(ISD::SETCC, SDLoc(N0),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009735 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009736 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009737 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00009738 AddToWorkList(SETCC.getNode());
Matt Arsenaultb05e4772013-06-14 22:04:37 +00009739 return DAG.getSelect(SDLoc(SCC), SCC.getValueType(),
9740 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00009741 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009742
Nate Begemanf845b452005-10-08 00:29:44 +00009743 return SCC;
9744 }
Dan Gohman475871a2008-07-27 21:46:04 +00009745 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00009746}
9747
Chris Lattner40c62d52005-10-18 06:04:22 +00009748/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
9749/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00009750/// select. Callers of this should assume that TheSelect is deleted if this
9751/// returns true. As such, they should return the appropriate thing (e.g. the
9752/// node) back to the top-level of the DAG combiner loop to avoid it being
9753/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00009754bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00009755 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009756
Nadav Rotemf94fdb62011-02-11 19:57:47 +00009757 // Cannot simplify select with vector condition
9758 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
9759
Chris Lattner40c62d52005-10-18 06:04:22 +00009760 // If this is a select from two identical things, try to pull the operation
9761 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00009762 if (LHS.getOpcode() != RHS.getOpcode() ||
9763 !LHS.hasOneUse() || !RHS.hasOneUse())
9764 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009765
Chris Lattner18061612010-09-21 15:46:59 +00009766 // If this is a load and the token chain is identical, replace the select
9767 // of two loads with a load through a select of the address to load from.
9768 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
9769 // constants have been dropped into the constant pool.
9770 if (LHS.getOpcode() == ISD::LOAD) {
9771 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
9772 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009773
Chris Lattner18061612010-09-21 15:46:59 +00009774 // Token chains must be identical.
9775 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00009776 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00009777 LLD->isVolatile() || RLD->isVolatile() ||
9778 // If this is an EXTLOAD, the VT's must match.
9779 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00009780 // If this is an EXTLOAD, the kind of extension must match.
9781 (LLD->getExtensionType() != RLD->getExtensionType() &&
9782 // The only exception is if one of the extensions is anyext.
9783 LLD->getExtensionType() != ISD::EXTLOAD &&
9784 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00009785 // FIXME: this discards src value information. This is
9786 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00009787 // both potential memory locations. Since we are discarding
9788 // src value info, don't do the transformation if the memory
9789 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00009790 LLD->getPointerInfo().getAddrSpace() != 0 ||
Pete Cooperb0fde6d2013-02-12 03:14:50 +00009791 RLD->getPointerInfo().getAddrSpace() != 0 ||
9792 !TLI.isOperationLegalOrCustom(TheSelect->getOpcode(),
9793 LLD->getBasePtr().getValueType()))
Chris Lattner18061612010-09-21 15:46:59 +00009794 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009795
Chris Lattnerf1658062010-09-21 15:58:55 +00009796 // Check that the select condition doesn't reach either load. If so,
9797 // folding this will induce a cycle into the DAG. If not, this is safe to
9798 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00009799 SDValue Addr;
9800 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00009801 SDNode *CondNode = TheSelect->getOperand(0).getNode();
9802 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
9803 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
9804 return false;
Nadav Rotem1c5bf3f2012-10-18 18:06:48 +00009805 // The loads must not depend on one another.
9806 if (LLD->isPredecessorOf(RLD) ||
9807 RLD->isPredecessorOf(LLD))
9808 return false;
Matt Arsenaultb05e4772013-06-14 22:04:37 +00009809 Addr = DAG.getSelect(SDLoc(TheSelect),
9810 LLD->getBasePtr().getValueType(),
9811 TheSelect->getOperand(0), LLD->getBasePtr(),
9812 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00009813 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00009814 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
9815 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
9816
9817 if ((LLD->hasAnyUseOfValue(1) &&
9818 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00009819 (RLD->hasAnyUseOfValue(1) &&
9820 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00009821 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009822
Andrew Trickac6d9be2013-05-25 02:42:55 +00009823 Addr = DAG.getNode(ISD::SELECT_CC, SDLoc(TheSelect),
Chris Lattnerf1658062010-09-21 15:58:55 +00009824 LLD->getBasePtr().getValueType(),
9825 TheSelect->getOperand(0),
9826 TheSelect->getOperand(1),
9827 LLD->getBasePtr(), RLD->getBasePtr(),
9828 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00009829 }
9830
Chris Lattnerf1658062010-09-21 15:58:55 +00009831 SDValue Load;
9832 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
9833 Load = DAG.getLoad(TheSelect->getValueType(0),
Andrew Trickac6d9be2013-05-25 02:42:55 +00009834 SDLoc(TheSelect),
Chris Lattnerf1658062010-09-21 15:58:55 +00009835 // FIXME: Discards pointer info.
9836 LLD->getChain(), Addr, MachinePointerInfo(),
9837 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009838 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00009839 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00009840 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
9841 RLD->getExtensionType() : LLD->getExtensionType(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00009842 SDLoc(TheSelect),
Stuart Hastingsa9011292011-02-16 16:23:55 +00009843 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00009844 // FIXME: Discards pointer info.
9845 LLD->getChain(), Addr, MachinePointerInfo(),
9846 LLD->getMemoryVT(), LLD->isVolatile(),
9847 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00009848 }
Chris Lattnerf1658062010-09-21 15:58:55 +00009849
9850 // Users of the select now use the result of the load.
9851 CombineTo(TheSelect, Load);
9852
9853 // Users of the old loads now use the new load's chain. We know the
9854 // old-load value is dead now.
9855 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
9856 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
9857 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00009858 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009859
Chris Lattner40c62d52005-10-18 06:04:22 +00009860 return false;
9861}
9862
Chris Lattner600fec32009-03-11 05:08:08 +00009863/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
9864/// where 'cond' is the comparison specified by CC.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009865SDValue DAGCombiner::SimplifySelectCC(SDLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00009866 SDValue N2, SDValue N3,
9867 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00009868 // (x ? y : y) -> y.
9869 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009870
Owen Andersone50ed302009-08-10 22:56:29 +00009871 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00009872 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
9873 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
9874 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009875
9876 // Determine if the condition we're dealing with is constant
Matt Arsenault225ed702013-05-18 00:21:46 +00009877 SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009878 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00009879 if (SCC.getNode()) AddToWorkList(SCC.getNode());
9880 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009881
9882 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00009883 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009884 return N2;
9885 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00009886 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009887 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00009888
Nate Begemanf845b452005-10-08 00:29:44 +00009889 // Check to see if we can simplify the select into an fabs node
9890 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
9891 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00009892 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009893 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
9894 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
9895 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
9896 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009897 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009898
Nate Begemanf845b452005-10-08 00:29:44 +00009899 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
9900 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
9901 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
9902 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009903 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00009904 }
9905 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009906
Chris Lattner600fec32009-03-11 05:08:08 +00009907 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
9908 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
9909 // in it. This is a win when the constant is not otherwise available because
9910 // it replaces two constant pool loads with one. We only do this if the FP
9911 // type is known to be legal, because if it isn't, then we are before legalize
9912 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00009913 // messing with soft float) and if the ConstantFP is not legal, because if
9914 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00009915 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
9916 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
9917 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00009918 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
9919 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00009920 // If both constants have multiple uses, then we won't need to do an
9921 // extra load, they are likely around in registers for other users.
9922 (TV->hasOneUse() || FV->hasOneUse())) {
9923 Constant *Elts[] = {
9924 const_cast<ConstantFP*>(FV->getConstantFPValue()),
9925 const_cast<ConstantFP*>(TV->getConstantFPValue())
9926 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009927 Type *FPTy = Elts[0]->getType();
Micah Villmow3574eca2012-10-08 16:38:25 +00009928 const DataLayout &TD = *TLI.getDataLayout();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009929
Chris Lattner600fec32009-03-11 05:08:08 +00009930 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00009931 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00009932 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
9933 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00009934 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00009935
9936 // Get the offsets to the 0 and 1 element of the array so that we can
9937 // select between them.
9938 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00009939 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00009940 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009941
Chris Lattner600fec32009-03-11 05:08:08 +00009942 SDValue Cond = DAG.getSetCC(DL,
Matt Arsenault225ed702013-05-18 00:21:46 +00009943 getSetCCResultType(N0.getValueType()),
Chris Lattner600fec32009-03-11 05:08:08 +00009944 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00009945 AddToWorkList(Cond.getNode());
Matt Arsenaultb05e4772013-06-14 22:04:37 +00009946 SDValue CstOffset = DAG.getSelect(DL, Zero.getValueType(),
9947 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00009948 AddToWorkList(CstOffset.getNode());
Tom Stellardedd08f72013-08-26 15:06:10 +00009949 CPIdx = DAG.getNode(ISD::ADD, DL, CPIdx.getValueType(), CPIdx,
Chris Lattner600fec32009-03-11 05:08:08 +00009950 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00009951 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009952 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00009953 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00009954 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00009955
9956 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009957 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009958
Nate Begemanf845b452005-10-08 00:29:44 +00009959 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00009960 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00009961 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00009962 (N1C->isNullValue() || // (a < 0) ? b : 0
9963 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00009964 EVT XType = N0.getValueType();
9965 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00009966 if (XType.bitsGE(AType)) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00009967 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00009968 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00009969 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
9970 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00009971 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00009972 SDValue ShCt = DAG.getConstant(ShCtV,
9973 getShiftAmountTy(N0.getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00009974 SDValue Shift = DAG.getNode(ISD::SRL, SDLoc(N0),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009975 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00009976 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009977
Duncan Sands8e4eb092008-06-08 20:54:56 +00009978 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009979 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009980 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009981 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009982
9983 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009984 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009985
Andrew Trickac6d9be2013-05-25 02:42:55 +00009986 SDValue Shift = DAG.getNode(ISD::SRA, SDLoc(N0),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009987 XType, N0,
9988 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009989 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00009990 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009991
Duncan Sands8e4eb092008-06-08 20:54:56 +00009992 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009993 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009994 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009995 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009996
9997 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009998 }
9999 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010000
Owen Andersoned1088a2010-09-22 22:58:22 +000010001 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
10002 // where y is has a single bit set.
10003 // A plaintext description would be, we can turn the SELECT_CC into an AND
10004 // when the condition can be materialized as an all-ones register. Any
10005 // single bit-test can be materialized as an all-ones register with
10006 // shift-left and shift-right-arith.
10007 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
10008 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010009 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +000010010 N2C && N2C->isNullValue()) {
10011 SDValue AndLHS = N0->getOperand(0);
10012 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
10013 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
10014 // Shift the tested bit over the sign bit.
10015 APInt AndMask = ConstAndRHS->getAPIntValue();
10016 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +000010017 DAG.getConstant(AndMask.countLeadingZeros(),
10018 getShiftAmountTy(AndLHS.getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +000010019 SDValue Shl = DAG.getNode(ISD::SHL, SDLoc(N0), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010020
Owen Andersoned1088a2010-09-22 22:58:22 +000010021 // Now arithmetic right shift it all the way over, so the result is either
10022 // all-ones, or zero.
10023 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +000010024 DAG.getConstant(AndMask.getBitWidth()-1,
10025 getShiftAmountTy(Shl.getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +000010026 SDValue Shr = DAG.getNode(ISD::SRA, SDLoc(N0), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010027
Owen Andersoned1088a2010-09-22 22:58:22 +000010028 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
10029 }
10030 }
10031
Nate Begeman07ed4172005-10-10 21:26:48 +000010032 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +000010033 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +000010034 TLI.getBooleanContents(N0.getValueType().isVector()) ==
10035 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +000010036
Chris Lattner1eba01e2007-04-11 06:50:51 +000010037 // If the caller doesn't want us to simplify this into a zext of a compare,
10038 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +000010039 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +000010040 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010041
Nate Begeman07ed4172005-10-10 21:26:48 +000010042 // Get a SetCC of the condition
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010043 // NOTE: Don't create a SETCC if it's not legal on this target.
10044 if (!LegalOperations ||
10045 TLI.isOperationLegal(ISD::SETCC,
Matt Arsenault225ed702013-05-18 00:21:46 +000010046 LegalTypes ? getSetCCResultType(N0.getValueType()) : MVT::i1)) {
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010047 SDValue Temp, SCC;
10048 // cast from setcc result type to select result type
10049 if (LegalTypes) {
Matt Arsenault225ed702013-05-18 00:21:46 +000010050 SCC = DAG.getSetCC(DL, getSetCCResultType(N0.getValueType()),
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010051 N0, N1, CC);
10052 if (N2.getValueType().bitsLT(SCC.getValueType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +000010053 Temp = DAG.getZeroExtendInReg(SCC, SDLoc(N2),
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010054 N2.getValueType());
10055 else
Andrew Trickac6d9be2013-05-25 02:42:55 +000010056 Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2),
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010057 N2.getValueType(), SCC);
10058 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010059 SCC = DAG.getSetCC(SDLoc(N0), MVT::i1, N0, N1, CC);
10060 Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2),
Bill Wendling836ca7d2009-01-30 23:59:18 +000010061 N2.getValueType(), SCC);
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010062 }
10063
10064 AddToWorkList(SCC.getNode());
10065 AddToWorkList(Temp.getNode());
10066
10067 if (N2C->getAPIntValue() == 1)
10068 return Temp;
10069
10070 // shl setcc result by log2 n2c
10071 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
10072 DAG.getConstant(N2C->getAPIntValue().logBase2(),
10073 getShiftAmountTy(Temp.getValueType())));
Nate Begemanb0d04a72006-02-18 02:40:58 +000010074 }
Nate Begeman07ed4172005-10-10 21:26:48 +000010075 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010076
Nate Begemanf845b452005-10-08 00:29:44 +000010077 // Check to see if this is the equivalent of setcc
10078 // FIXME: Turn all of these into setcc if setcc if setcc is legal
10079 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +000010080 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +000010081 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +000010082 if (!LegalOperations ||
Matt Arsenault225ed702013-05-18 00:21:46 +000010083 TLI.isOperationLegal(ISD::SETCC, getSetCCResultType(XType))) {
10084 SDValue Res = DAG.getSetCC(DL, getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +000010085 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +000010086 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +000010087 return Res;
10088 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010089
Bill Wendling836ca7d2009-01-30 23:59:18 +000010090 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +000010091 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +000010092 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +000010093 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010094 SDValue Ctlz = DAG.getNode(ISD::CTLZ, SDLoc(N0), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +000010095 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +000010096 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +000010097 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +000010098 }
Bill Wendling836ca7d2009-01-30 23:59:18 +000010099 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +000010100 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010101 SDValue NegN0 = DAG.getNode(ISD::SUB, SDLoc(N0),
Bill Wendling836ca7d2009-01-30 23:59:18 +000010102 XType, DAG.getConstant(0, XType), N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010103 SDValue NotN0 = DAG.getNOT(SDLoc(N0), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +000010104 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +000010105 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +000010106 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +000010107 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +000010108 }
Bill Wendling836ca7d2009-01-30 23:59:18 +000010109 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +000010110 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010111 SDValue Sign = DAG.getNode(ISD::SRL, SDLoc(N0), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +000010112 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +000010113 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +000010114 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +000010115 }
10116 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010117
Benjamin Kramercde51102010-07-08 12:09:56 +000010118 // Check to see if this is an integer abs.
10119 // select_cc setg[te] X, 0, X, -X ->
10120 // select_cc setgt X, -1, X, -X ->
10121 // select_cc setl[te] X, 0, -X, X ->
10122 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +000010123 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +000010124 if (N1C) {
10125 ConstantSDNode *SubC = NULL;
10126 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
10127 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
10128 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
10129 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
10130 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
10131 (N1C->isOne() && CC == ISD::SETLT)) &&
10132 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
10133 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
10134
Owen Andersone50ed302009-08-10 22:56:29 +000010135 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +000010136 if (SubC && SubC->isNullValue() && XType.isInteger()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010137 SDValue Shift = DAG.getNode(ISD::SRA, SDLoc(N0), XType,
Benjamin Kramercde51102010-07-08 12:09:56 +000010138 N0,
10139 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +000010140 getShiftAmountTy(N0.getValueType())));
Andrew Trickac6d9be2013-05-25 02:42:55 +000010141 SDValue Add = DAG.getNode(ISD::ADD, SDLoc(N0),
Benjamin Kramercde51102010-07-08 12:09:56 +000010142 XType, N0, Shift);
10143 AddToWorkList(Shift.getNode());
10144 AddToWorkList(Add.getNode());
10145 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +000010146 }
10147 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010148
Dan Gohman475871a2008-07-27 21:46:04 +000010149 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +000010150}
10151
Evan Chengfa1eb272007-02-08 22:13:59 +000010152/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +000010153SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +000010154 SDValue N1, ISD::CondCode Cond,
Andrew Trickac6d9be2013-05-25 02:42:55 +000010155 SDLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +000010156 TargetLowering::DAGCombinerInfo
Nadav Rotem444b4bf2012-12-27 06:47:41 +000010157 DagCombineInfo(DAG, Level, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +000010158 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7be2005-09-16 00:54:12 +000010159}
10160
Nate Begeman69575232005-10-20 02:15:44 +000010161/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
10162/// return a DAG expression to select that will generate the same value by
10163/// multiplying by a magic number. See:
10164/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +000010165SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +000010166 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +000010167 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +000010168
Andrew Lenharth232c9102006-06-12 16:07:18 +000010169 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +000010170 ii != ee; ++ii)
10171 AddToWorkList(*ii);
10172 return S;
Nate Begeman69575232005-10-20 02:15:44 +000010173}
10174
10175/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
10176/// return a DAG expression to select that will generate the same value by
10177/// multiplying by a magic number. See:
10178/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +000010179SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +000010180 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +000010181 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +000010182
Andrew Lenharth232c9102006-06-12 16:07:18 +000010183 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +000010184 ii != ee; ++ii)
10185 AddToWorkList(*ii);
10186 return S;
Nate Begeman69575232005-10-20 02:15:44 +000010187}
10188
Nate Begemancc66cdd2009-09-25 06:05:26 +000010189/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +000010190// to alias with anything but itself. Provides base object and offset as
10191// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010192static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Roman Divacky2943e372012-09-05 22:15:49 +000010193 const GlobalValue *&GV, const void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +000010194 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010195 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000010196
Jim Laskey71382342006-10-07 23:37:56 +000010197 // If it's an adding a simple constant then integrate the offset.
10198 if (Base.getOpcode() == ISD::ADD) {
10199 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
10200 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000010201 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +000010202 }
10203 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010204
Nate Begemancc66cdd2009-09-25 06:05:26 +000010205 // Return the underlying GlobalValue, and update the Offset. Return false
10206 // for GlobalAddressSDNode since the same GlobalAddress may be represented
10207 // by multiple nodes with different offsets.
10208 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
10209 GV = G->getGlobal();
10210 Offset += G->getOffset();
10211 return false;
10212 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010213
Nate Begemancc66cdd2009-09-25 06:05:26 +000010214 // Return the underlying Constant value, and update the Offset. Return false
10215 // for ConstantSDNodes since the same constant pool entry may be represented
10216 // by multiple nodes with different offsets.
10217 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
Roman Divacky2943e372012-09-05 22:15:49 +000010218 CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal()
10219 : (const void *)C->getConstVal();
Nate Begemancc66cdd2009-09-25 06:05:26 +000010220 Offset += C->getOffset();
10221 return false;
10222 }
Jim Laskey71382342006-10-07 23:37:56 +000010223 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010224 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +000010225}
10226
10227/// isAlias - Return true if there is any possibility that the two addresses
10228/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +000010229bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +000010230 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010231 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010232 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +000010233 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010234 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010235 unsigned SrcValueAlign2,
10236 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +000010237 // If they are the same then they must be aliases.
10238 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +000010239
Jim Laskey71382342006-10-07 23:37:56 +000010240 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +000010241 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +000010242 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +000010243 const GlobalValue *GV1, *GV2;
Roman Divacky2943e372012-09-05 22:15:49 +000010244 const void *CV1, *CV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +000010245 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
10246 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010247
Nate Begemancc66cdd2009-09-25 06:05:26 +000010248 // If they have a same base address then check to see if they overlap.
10249 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +000010250 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010251
Owen Anderson4a9f1502010-09-20 20:39:59 +000010252 // It is possible for different frame indices to alias each other, mostly
10253 // when tail call optimization reuses return address slots for arguments.
10254 // To catch this case, look up the actual index of frame indices to compute
10255 // the real alias relationship.
10256 if (isFrameIndex1 && isFrameIndex2) {
10257 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10258 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
10259 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
10260 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
10261 }
10262
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010263 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +000010264 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010265 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
10266 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +000010267
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010268 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
10269 // compared to the size and offset of the access, we may be able to prove they
10270 // do not alias. This check is conservative for now to catch cases created by
10271 // splitting vector types.
10272 if ((SrcValueAlign1 == SrcValueAlign2) &&
10273 (SrcValueOffset1 != SrcValueOffset2) &&
10274 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
10275 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
10276 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010277
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010278 // There is no overlap between these relatively aligned accesses of similar
10279 // size, return no alias.
10280 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
10281 return false;
10282 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010283
Hal Finkel253acef2013-08-29 03:29:55 +000010284 bool UseAA = CombinerGlobalAA.getNumOccurrences() > 0 ? CombinerGlobalAA :
10285 TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
Hal Finkel77364b72013-09-15 02:19:49 +000010286 if (UseAA && SrcValue1 && SrcValue2) {
Jim Laskey07a27092006-10-18 19:08:31 +000010287 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +000010288 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
10289 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
10290 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +000010291 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010292 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
10293 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +000010294 if (AAResult == AliasAnalysis::NoAlias)
10295 return false;
10296 }
Jim Laskey096c22e2006-10-18 12:29:57 +000010297
10298 // Otherwise we have to assume they alias.
10299 return true;
Jim Laskey71382342006-10-07 23:37:56 +000010300}
10301
Nadav Rotem90e11dc2012-11-29 00:00:08 +000010302bool DAGCombiner::isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1) {
10303 SDValue Ptr0, Ptr1;
10304 int64_t Size0, Size1;
10305 const Value *SrcValue0, *SrcValue1;
10306 int SrcValueOffset0, SrcValueOffset1;
10307 unsigned SrcValueAlign0, SrcValueAlign1;
10308 const MDNode *SrcTBAAInfo0, *SrcTBAAInfo1;
10309 FindAliasInfo(Op0, Ptr0, Size0, SrcValue0, SrcValueOffset0,
10310 SrcValueAlign0, SrcTBAAInfo0);
10311 FindAliasInfo(Op1, Ptr1, Size1, SrcValue1, SrcValueOffset1,
10312 SrcValueAlign1, SrcTBAAInfo1);
10313 return isAlias(Ptr0, Size0, SrcValue0, SrcValueOffset0,
Nadav Rotemdde785c2012-12-06 17:34:13 +000010314 SrcValueAlign0, SrcTBAAInfo0,
10315 Ptr1, Size1, SrcValue1, SrcValueOffset1,
10316 SrcValueAlign1, SrcTBAAInfo1);
Nadav Rotem90e11dc2012-11-29 00:00:08 +000010317}
10318
Jim Laskey71382342006-10-07 23:37:56 +000010319/// FindAliasInfo - Extracts the relevant alias information from the memory
10320/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +000010321bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +000010322 SDValue &Ptr, int64_t &Size,
10323 const Value *&SrcValue,
10324 int &SrcValueOffset,
10325 unsigned &SrcValueAlign,
10326 const MDNode *&TBAAInfo) const {
10327 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
10328
10329 Ptr = LS->getBasePtr();
10330 Size = LS->getMemoryVT().getSizeInBits() >> 3;
10331 SrcValue = LS->getSrcValue();
10332 SrcValueOffset = LS->getSrcValueOffset();
10333 SrcValueAlign = LS->getOriginalAlignment();
10334 TBAAInfo = LS->getTBAAInfo();
10335 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +000010336}
10337
Jim Laskey6ff23e52006-10-04 16:53:27 +000010338/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
10339/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +000010340void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
Craig Toppera0ec3f92013-07-14 04:42:23 +000010341 SmallVectorImpl<SDValue> &Aliases) {
Dan Gohman475871a2008-07-27 21:46:04 +000010342 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010343 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +000010344
Jim Laskey279f0532006-09-25 16:29:54 +000010345 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +000010346 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010347 int64_t Size;
10348 const Value *SrcValue;
10349 int SrcValueOffset;
10350 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010351 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010352 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010353 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +000010354
Jim Laskey6ff23e52006-10-04 16:53:27 +000010355 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +000010356 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +000010357 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010358
Jim Laskeybc588b82006-10-05 15:07:25 +000010359 // Look at each chain and determine if it is an alias. If so, add it to the
10360 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +000010361 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +000010362 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +000010363 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +000010364 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010365
10366 // For TokenFactor nodes, look at each operand and only continue up the
10367 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +000010368 // find more and revert to original chain since the xform is unlikely to be
10369 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010370 //
10371 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +000010372 // chain we found before we hit a tokenfactor rather than the original
10373 // chain.
10374 if (Depth > 6 || Aliases.size() == 2) {
10375 Aliases.clear();
10376 Aliases.push_back(OriginalChain);
10377 break;
10378 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010379
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010380 // Don't bother if we've been before.
10381 if (!Visited.insert(Chain.getNode()))
10382 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +000010383
Jim Laskeybc588b82006-10-05 15:07:25 +000010384 switch (Chain.getOpcode()) {
10385 case ISD::EntryToken:
10386 // Entry token is ideal chain operand, but handled in FindBetterChain.
10387 break;
Scott Michelfdc40a02009-02-17 22:15:04 +000010388
Jim Laskeybc588b82006-10-05 15:07:25 +000010389 case ISD::LOAD:
10390 case ISD::STORE: {
10391 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +000010392 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010393 int64_t OpSize;
10394 const Value *OpSrcValue;
10395 int OpSrcValueOffset;
10396 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010397 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +000010398 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010399 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010400 OpSrcValueAlign,
10401 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +000010402
Jim Laskeybc588b82006-10-05 15:07:25 +000010403 // If chain is alias then stop here.
10404 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010405 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010406 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010407 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010408 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +000010409 Aliases.push_back(Chain);
10410 } else {
10411 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +000010412 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +000010413 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +000010414 }
Jim Laskeybc588b82006-10-05 15:07:25 +000010415 break;
10416 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010417
Jim Laskeybc588b82006-10-05 15:07:25 +000010418 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010419 // We have to check each of the operands of the token factor for "small"
10420 // token factors, so we queue them up. Adding the operands to the queue
10421 // (stack) in reverse order maintains the original order and increases the
10422 // likelihood that getNode will find a matching token factor (CSE.)
10423 if (Chain.getNumOperands() > 16) {
10424 Aliases.push_back(Chain);
10425 break;
10426 }
Jim Laskeybc588b82006-10-05 15:07:25 +000010427 for (unsigned n = Chain.getNumOperands(); n;)
10428 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +000010429 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +000010430 break;
Scott Michelfdc40a02009-02-17 22:15:04 +000010431
Jim Laskeybc588b82006-10-05 15:07:25 +000010432 default:
10433 // For all other instructions we will just have to take what we can get.
10434 Aliases.push_back(Chain);
10435 break;
Jim Laskey279f0532006-09-25 16:29:54 +000010436 }
10437 }
Jim Laskey6ff23e52006-10-04 16:53:27 +000010438}
10439
10440/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
10441/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +000010442SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
10443 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +000010444
Jim Laskey6ff23e52006-10-04 16:53:27 +000010445 // Accumulate all the aliases to this node.
10446 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +000010447
Dan Gohman71dc7c92011-05-17 22:20:36 +000010448 // If no operands then chain to entry token.
10449 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +000010450 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +000010451
10452 // If a single operand then chain to it. We don't need to revisit it.
10453 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +000010454 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010455
Jim Laskey6ff23e52006-10-04 16:53:27 +000010456 // Construct a custom tailored token factor.
Andrew Trickac6d9be2013-05-25 02:42:55 +000010457 return DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010458 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +000010459}
10460
Nate Begeman1d4d4142005-09-01 00:19:25 +000010461// SelectionDAG::Combine - This is the entry point for the file.
10462//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000010463void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +000010464 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +000010465 /// run - This is the main entry point to this class.
10466 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000010467 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +000010468}