blob: 0eecd39d247303e902d8c1cf973e535eb8a1c84f [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
3117 // Result of the bswap should be rotated by 16. If it's not legal, than
3118 // 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);
3344 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003345
3346 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3347 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003348 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3349 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003350 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3351 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003352 if ((LShVal + RShVal) != OpSizeInBits)
3353 return 0;
3354
Craig Topper32b73432012-09-29 06:54:22 +00003355 SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3356 LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003357
Chris Lattner516b9622006-09-14 20:50:57 +00003358 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003359 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003360 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003361
Gabor Greifba36cb52008-08-28 21:40:38 +00003362 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003363 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3364 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003365 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003366 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003367 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3368 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003369 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003370
Bill Wendling317bd702009-01-30 21:14:50 +00003371 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003372 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003373
Gabor Greifba36cb52008-08-28 21:40:38 +00003374 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003375 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003376
Chris Lattner516b9622006-09-14 20:50:57 +00003377 // If there is a mask here, and we have a variable shift, we can't be sure
3378 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003379 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003380 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003381
Chris Lattner516b9622006-09-14 20:50:57 +00003382 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3383 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003384 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3385 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003386 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003387 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Stephen Linb4940152013-07-09 00:44:49 +00003388 if (SUBC->getAPIntValue() == OpSizeInBits)
Craig Topper32b73432012-09-29 06:54:22 +00003389 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, LHSShiftArg,
3390 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003391 }
3392 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003393
Chris Lattner516b9622006-09-14 20:50:57 +00003394 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3395 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003396 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
Stephen Linb4940152013-07-09 00:44:49 +00003397 RHSShiftAmt == LHSShiftAmt.getOperand(1))
Scott Michelfdc40a02009-02-17 22:15:04 +00003398 if (ConstantSDNode *SUBC =
Stephen Linb4940152013-07-09 00:44:49 +00003399 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0)))
3400 if (SUBC->getAPIntValue() == OpSizeInBits)
Craig Topper32b73432012-09-29 06:54:22 +00003401 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg,
3402 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003403
Dan Gohman74feef22008-10-17 01:23:35 +00003404 // Look for sign/zext/any-extended or truncate cases:
Craig Topper0eb5dad2012-09-29 07:18:53 +00003405 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3406 LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3407 LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3408 LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
3409 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3410 RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3411 RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3412 RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003413 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3414 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003415 if (RExtOp0.getOpcode() == ISD::SUB &&
3416 RExtOp0.getOperand(1) == LExtOp0) {
3417 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003418 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003419 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003420 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003421 if (ConstantSDNode *SUBC =
Stephen Linb4940152013-07-09 00:44:49 +00003422 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0)))
3423 if (SUBC->getAPIntValue() == OpSizeInBits)
Bill Wendling317bd702009-01-30 21:14:50 +00003424 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3425 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003426 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003427 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3428 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003429 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003430 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003431 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003432 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003433 if (ConstantSDNode *SUBC =
Stephen Linb4940152013-07-09 00:44:49 +00003434 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0)))
3435 if (SUBC->getAPIntValue() == OpSizeInBits)
Bill Wendling317bd702009-01-30 21:14:50 +00003436 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3437 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003438 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003439 }
3440 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003441
Chris Lattner516b9622006-09-14 20:50:57 +00003442 return 0;
3443}
3444
Dan Gohman475871a2008-07-27 21:46:04 +00003445SDValue DAGCombiner::visitXOR(SDNode *N) {
3446 SDValue N0 = N->getOperand(0);
3447 SDValue N1 = N->getOperand(1);
3448 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003449 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3450 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003451 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003452
Dan Gohman7f321562007-06-25 16:23:39 +00003453 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003454 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003455 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003456 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00003457
3458 // fold (xor x, 0) -> x, vector edition
3459 if (ISD::isBuildVectorAllZeros(N0.getNode()))
3460 return N1;
3461 if (ISD::isBuildVectorAllZeros(N1.getNode()))
3462 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003463 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003464
Evan Cheng26471c42008-03-25 20:08:07 +00003465 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3466 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3467 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003468 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003469 if (N0.getOpcode() == ISD::UNDEF)
3470 return N0;
3471 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003472 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003473 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003474 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003475 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003476 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003477 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003478 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003479 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003480 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003481 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003482 // reassociate xor
Andrew Trickac6d9be2013-05-25 02:42:55 +00003483 SDValue RXOR = ReassociateOps(ISD::XOR, SDLoc(N), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003484 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003485 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003486
Nate Begeman1d4d4142005-09-01 00:19:25 +00003487 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003488 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003489 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003490 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3491 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003492
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00003493 if (!LegalOperations ||
3494 TLI.isCondCodeLegal(NotCC, LHS.getSimpleValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003495 switch (N0.getOpcode()) {
3496 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003497 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003498 case ISD::SETCC:
Andrew Trickac6d9be2013-05-25 02:42:55 +00003499 return DAG.getSetCC(SDLoc(N), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003500 case ISD::SELECT_CC:
Andrew Trickac6d9be2013-05-25 02:42:55 +00003501 return DAG.getSelectCC(SDLoc(N), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003502 N0.getOperand(3), NotCC);
3503 }
3504 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003505 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003506
Chris Lattner61c5ff42007-09-10 21:39:07 +00003507 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003508 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003509 N0.getNode()->hasOneUse() &&
3510 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003511 SDValue V = N0.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003512 V = DAG.getNode(ISD::XOR, SDLoc(N0), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003513 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003514 AddToWorkList(V.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003515 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003516 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003517
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003518 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003519 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003520 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003521 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003522 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3523 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Andrew Trickac6d9be2013-05-25 02:42:55 +00003524 LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS
3525 RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003526 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003527 return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003528 }
3529 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003530 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003531 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003532 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003533 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003534 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3535 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Andrew Trickac6d9be2013-05-25 02:42:55 +00003536 LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS
3537 RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003538 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003539 return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003540 }
3541 }
David Majnemer363160a2013-05-08 06:44:42 +00003542 // fold (xor (and x, y), y) -> (and (not x), y)
3543 if (N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
3544 N0->getOperand(1) == N1) {
3545 SDValue X = N0->getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003546 SDValue NotX = DAG.getNOT(SDLoc(X), X, VT);
David Majnemer363160a2013-05-08 06:44:42 +00003547 AddToWorkList(NotX.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003548 return DAG.getNode(ISD::AND, SDLoc(N), VT, NotX, N1);
David Majnemer363160a2013-05-08 06:44:42 +00003549 }
Bill Wendling317bd702009-01-30 21:14:50 +00003550 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003551 if (N1C && N0.getOpcode() == ISD::XOR) {
3552 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3553 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3554 if (N00C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003555 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N0.getOperand(1),
Bill Wendling317bd702009-01-30 21:14:50 +00003556 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003557 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003558 if (N01C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003559 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N0.getOperand(0),
Bill Wendling317bd702009-01-30 21:14:50 +00003560 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003561 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003562 }
3563 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003564 if (N0 == N1)
Hal Finkelbd6f1f62013-07-09 17:02:45 +00003565 return tryFoldToZero(SDLoc(N), TLI, VT, DAG, LegalOperations, LegalTypes);
Scott Michelfdc40a02009-02-17 22:15:04 +00003566
Chris Lattner35e5c142006-05-05 05:51:50 +00003567 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3568 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003569 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003570 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003571 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003572
Chris Lattner3e104b12006-04-08 04:15:24 +00003573 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003574 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003575 SimplifyDemandedBits(SDValue(N, 0)))
3576 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003577
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003578 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003579}
3580
Chris Lattnere70da202007-12-06 07:33:36 +00003581/// visitShiftByConstant - Handle transforms common to the three shifts, when
3582/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003583SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003584 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003585 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003586
Chris Lattnere70da202007-12-06 07:33:36 +00003587 // We want to pull some binops through shifts, so that we have (and (shift))
3588 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3589 // thing happens with address calculations, so it's important to canonicalize
3590 // it.
3591 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003592
Chris Lattnere70da202007-12-06 07:33:36 +00003593 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003594 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003595 case ISD::OR:
3596 case ISD::XOR:
3597 HighBitSet = false; // We can only transform sra if the high bit is clear.
3598 break;
3599 case ISD::AND:
3600 HighBitSet = true; // We can only transform sra if the high bit is set.
3601 break;
3602 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003603 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003604 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003605 HighBitSet = false; // We can only transform sra if the high bit is clear.
3606 break;
3607 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003608
Chris Lattnere70da202007-12-06 07:33:36 +00003609 // We require the RHS of the binop to be a constant as well.
3610 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003611 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003612
3613 // FIXME: disable this unless the input to the binop is a shift by a constant.
3614 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003615 //
Bill Wendling88103372009-01-30 21:37:17 +00003616 // void foo(int *X, int i) { X[i & 1235] = 1; }
3617 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003618 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003619 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003620 BinOpLHSVal->getOpcode() != ISD::SRA &&
3621 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3622 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003623 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003624
Owen Andersone50ed302009-08-10 22:56:29 +00003625 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003626
Bill Wendling88103372009-01-30 21:37:17 +00003627 // If this is a signed shift right, and the high bit is modified by the
3628 // logical operation, do not perform the transformation. The highBitSet
3629 // boolean indicates the value of the high bit of the constant which would
3630 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003631 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003632 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3633 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003634 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003635 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003636
Chris Lattnere70da202007-12-06 07:33:36 +00003637 // Fold the constants, shifting the binop RHS by the shift amount.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003638 SDValue NewRHS = DAG.getNode(N->getOpcode(), SDLoc(LHS->getOperand(1)),
Bill Wendling88103372009-01-30 21:37:17 +00003639 N->getValueType(0),
3640 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003641
3642 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003643 SDValue NewShift = DAG.getNode(N->getOpcode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00003644 SDLoc(LHS->getOperand(0)),
Bill Wendling88103372009-01-30 21:37:17 +00003645 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003646
3647 // Create the new binop.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003648 return DAG.getNode(LHS->getOpcode(), SDLoc(N), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003649}
3650
Dan Gohman475871a2008-07-27 21:46:04 +00003651SDValue DAGCombiner::visitSHL(SDNode *N) {
3652 SDValue N0 = N->getOperand(0);
3653 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003654 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3655 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003656 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003657 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003658
Nate Begeman1d4d4142005-09-01 00:19:25 +00003659 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003660 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003661 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003662 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003663 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003664 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003665 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003666 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003667 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003668 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003669 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003670 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003671 // fold (shl undef, x) -> 0
3672 if (N0.getOpcode() == ISD::UNDEF)
3673 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003674 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003675 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003676 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003677 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003678 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003679 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003680 N1.getOperand(0).getOpcode() == ISD::AND &&
3681 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003682 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003683 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003684 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003685 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003686 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003687 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003688 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
3689 DAG.getNode(ISD::AND, SDLoc(N), TruncVT,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003690 DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003691 SDLoc(N),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003692 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003693 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003694 }
3695 }
3696
Dan Gohman475871a2008-07-27 21:46:04 +00003697 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3698 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003699
3700 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003701 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003702 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003703 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3704 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003705 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003706 return DAG.getConstant(0, VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003707 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003708 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003709 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003710
3711 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3712 // For this to be valid, the second form must not preserve any of the bits
3713 // that are shifted out by the inner shift in the first form. This means
3714 // the outer shift size must be >= the number of bits added by the ext.
3715 // As a corollary, we don't care what kind of ext it is.
3716 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3717 N0.getOpcode() == ISD::ANY_EXTEND ||
3718 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3719 N0.getOperand(0).getOpcode() == ISD::SHL &&
3720 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003721 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003722 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3723 uint64_t c2 = N1C->getZExtValue();
3724 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3725 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3726 if (c2 >= OpSizeInBits - InnerShiftSize) {
3727 if (c1 + c2 >= OpSizeInBits)
3728 return DAG.getConstant(0, VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003729 return DAG.getNode(ISD::SHL, SDLoc(N0), VT,
3730 DAG.getNode(N0.getOpcode(), SDLoc(N0), VT,
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003731 N0.getOperand(0)->getOperand(0)),
3732 DAG.getConstant(c1 + c2, N1.getValueType()));
3733 }
3734 }
3735
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003736 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3737 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003738 // Only fold this if the inner shift has no other uses -- if it does, folding
3739 // this will increase the total number of instructions.
3740 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003741 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003742 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003743 if (c1 < VT.getSizeInBits()) {
3744 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003745 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3746 VT.getSizeInBits() - c1);
3747 SDValue Shift;
3748 if (c2 > c1) {
3749 Mask = Mask.shl(c2-c1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003750 Shift = DAG.getNode(ISD::SHL, SDLoc(N), VT, N0.getOperand(0),
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003751 DAG.getConstant(c2-c1, N1.getValueType()));
3752 } else {
3753 Mask = Mask.lshr(c1-c2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003754 Shift = DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0),
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003755 DAG.getConstant(c1-c2, N1.getValueType()));
3756 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00003757 return DAG.getNode(ISD::AND, SDLoc(N0), VT, Shift,
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003758 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003759 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003760 }
Bill Wendling88103372009-01-30 21:37:17 +00003761 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003762 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3763 SDValue HiBitsMask =
3764 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3765 VT.getSizeInBits() -
3766 N1C->getZExtValue()),
3767 VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003768 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003769 HiBitsMask);
3770 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003771
Evan Chenge5b51ac2010-04-17 06:13:15 +00003772 if (N1C) {
3773 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3774 if (NewSHL.getNode())
3775 return NewSHL;
3776 }
3777
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003778 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003779}
3780
Dan Gohman475871a2008-07-27 21:46:04 +00003781SDValue DAGCombiner::visitSRA(SDNode *N) {
3782 SDValue N0 = N->getOperand(0);
3783 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003784 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3785 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003786 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003787 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003788
Bill Wendling88103372009-01-30 21:37:17 +00003789 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003790 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003791 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003792 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003793 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003794 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003795 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003796 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003797 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003798 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003799 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003800 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003801 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003802 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003803 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003804 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3805 // sext_inreg.
3806 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003807 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003808 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3809 if (VT.isVector())
3810 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3811 ExtVT, VT.getVectorNumElements());
3812 if ((!LegalOperations ||
3813 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00003814 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003815 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003816 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003817
Bill Wendling88103372009-01-30 21:37:17 +00003818 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003819 if (N1C && N0.getOpcode() == ISD::SRA) {
3820 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003821 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003822 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Andrew Trickac6d9be2013-05-25 02:42:55 +00003823 return DAG.getNode(ISD::SRA, SDLoc(N), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003824 DAG.getConstant(Sum, N1C->getValueType(0)));
3825 }
3826 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003827
Bill Wendling88103372009-01-30 21:37:17 +00003828 // fold (sra (shl X, m), (sub result_size, n))
3829 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003830 // result_size - n != m.
3831 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003832 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003833 if (N0.getOpcode() == ISD::SHL) {
3834 // Get the two constanst of the shifts, CN0 = m, CN = n.
3835 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3836 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003837 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003838 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003839 EVT::getIntegerVT(*DAG.getContext(),
3840 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003841 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003842 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003843
Scott Michelfdc40a02009-02-17 22:15:04 +00003844 // If the shift is not a no-op (in which case this should be just a sign
3845 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003846 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003847 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003848 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003849 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3850 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003851 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003852
Owen Anderson95771af2011-02-25 21:41:48 +00003853 SDValue Amt = DAG.getConstant(ShiftAmt,
3854 getShiftAmountTy(N0.getOperand(0).getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00003855 SDValue Shift = DAG.getNode(ISD::SRL, SDLoc(N0), VT,
Bill Wendling88103372009-01-30 21:37:17 +00003856 N0.getOperand(0), Amt);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003857 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), TruncVT,
Bill Wendling88103372009-01-30 21:37:17 +00003858 Shift);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003859 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N),
Bill Wendling88103372009-01-30 21:37:17 +00003860 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003861 }
3862 }
3863 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003864
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003865 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003866 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003867 N1.getOperand(0).getOpcode() == ISD::AND &&
3868 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003869 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003870 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003871 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003872 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003873 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003874 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003875 return DAG.getNode(ISD::SRA, SDLoc(N), VT, N0,
3876 DAG.getNode(ISD::AND, SDLoc(N),
Bill Wendling88103372009-01-30 21:37:17 +00003877 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003878 DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003879 SDLoc(N),
Bill Wendling9729c5a2009-01-31 03:12:48 +00003880 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003881 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003882 }
3883 }
3884
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003885 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3886 // if c1 is equal to the number of bits the trunc removes
3887 if (N0.getOpcode() == ISD::TRUNCATE &&
3888 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3889 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3890 N0.getOperand(0).hasOneUse() &&
3891 N0.getOperand(0).getOperand(1).hasOneUse() &&
3892 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3893 EVT LargeVT = N0.getOperand(0).getValueType();
3894 ConstantSDNode *LargeShiftAmt =
3895 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3896
3897 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3898 LargeShiftAmt->getZExtValue()) {
3899 SDValue Amt =
3900 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003901 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00003902 SDValue SRA = DAG.getNode(ISD::SRA, SDLoc(N), LargeVT,
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003903 N0.getOperand(0).getOperand(0), Amt);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003904 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, SRA);
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003905 }
3906 }
3907
Scott Michelfdc40a02009-02-17 22:15:04 +00003908 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003909 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3910 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003911
3912
Nate Begeman1d4d4142005-09-01 00:19:25 +00003913 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003914 if (DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00003915 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003916
Evan Chenge5b51ac2010-04-17 06:13:15 +00003917 if (N1C) {
3918 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3919 if (NewSRA.getNode())
3920 return NewSRA;
3921 }
3922
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003923 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003924}
3925
Dan Gohman475871a2008-07-27 21:46:04 +00003926SDValue DAGCombiner::visitSRL(SDNode *N) {
3927 SDValue N0 = N->getOperand(0);
3928 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003929 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3930 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003931 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003932 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003933
Nate Begeman1d4d4142005-09-01 00:19:25 +00003934 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003935 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003936 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003937 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003938 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003939 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003940 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003941 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003942 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003943 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003944 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003945 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003946 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003947 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003948 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003949 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003950
Bill Wendling88103372009-01-30 21:37:17 +00003951 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003952 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003953 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003954 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3955 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003956 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003957 return DAG.getConstant(0, VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003958 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003959 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003960 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003961
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003962 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003963 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3964 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003965 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003966 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003967 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3968 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003969 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3970 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003971 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003972 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003973 if (c1 + OpSizeInBits == InnerShiftSize) {
3974 if (c1 + c2 >= InnerShiftSize)
3975 return DAG.getConstant(0, VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003976 return DAG.getNode(ISD::TRUNCATE, SDLoc(N0), VT,
3977 DAG.getNode(ISD::SRL, SDLoc(N0), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003978 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003979 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003980 }
3981 }
3982
Chris Lattnerefcddc32010-04-15 05:28:43 +00003983 // fold (srl (shl x, c), c) -> (and x, cst2)
3984 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3985 N0.getValueSizeInBits() <= 64) {
3986 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00003987 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0.getOperand(0),
Chris Lattnerefcddc32010-04-15 05:28:43 +00003988 DAG.getConstant(~0ULL >> ShAmt, VT));
3989 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003990
Michael Liao2da86392013-06-21 18:45:27 +00003991 // fold (srl (anyextend x), c) -> (and (anyextend (srl x, c)), mask)
Chris Lattner06afe072006-05-05 22:53:17 +00003992 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3993 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003994 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003995 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003996 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003997
Evan Chenge5b51ac2010-04-17 06:13:15 +00003998 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003999 uint64_t ShiftAmt = N1C->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004000 SDValue SmallShift = DAG.getNode(ISD::SRL, SDLoc(N0), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00004001 N0.getOperand(0),
4002 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00004003 AddToWorkList(SmallShift.getNode());
Michael Liao2da86392013-06-21 18:45:27 +00004004 APInt Mask = APInt::getAllOnesValue(VT.getSizeInBits()).lshr(ShiftAmt);
4005 return DAG.getNode(ISD::AND, SDLoc(N), VT,
4006 DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, SmallShift),
4007 DAG.getConstant(Mask, VT));
Evan Chenge5b51ac2010-04-17 06:13:15 +00004008 }
Chris Lattner06afe072006-05-05 22:53:17 +00004009 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004010
Chris Lattner3657ffe2006-10-12 20:23:19 +00004011 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
4012 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00004013 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00004014 if (N0.getOpcode() == ISD::SRA)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004015 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00004016 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004017
Sylvestre Ledru94c22712012-09-27 10:14:43 +00004018 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00004019 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00004020 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00004021 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004022 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00004023
Chris Lattner350bec02006-04-02 06:11:11 +00004024 // If any of the input bits are KnownOne, then the input couldn't be all
4025 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00004026 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004027
Chris Lattner350bec02006-04-02 06:11:11 +00004028 // If all of the bits input the to ctlz node are known to be zero, then
4029 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004030 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00004031 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004032
Chris Lattner350bec02006-04-02 06:11:11 +00004033 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00004034 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00004035 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00004036 // could be set on input to the CTLZ node. If this bit is set, the SRL
4037 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
4038 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00004039 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00004040 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00004041
Chris Lattner350bec02006-04-02 06:11:11 +00004042 if (ShAmt) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004043 Op = DAG.getNode(ISD::SRL, SDLoc(N0), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00004044 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00004045 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00004046 }
Bill Wendling88103372009-01-30 21:37:17 +00004047
Andrew Trickac6d9be2013-05-25 02:42:55 +00004048 return DAG.getNode(ISD::XOR, SDLoc(N), VT,
Bill Wendling88103372009-01-30 21:37:17 +00004049 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00004050 }
4051 }
Evan Chengeb9f8922008-08-30 02:03:58 +00004052
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00004053 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00004054 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00004055 N1.getOperand(0).getOpcode() == ISD::AND &&
4056 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00004057 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00004058 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00004059 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00004060 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00004061 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004062 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004063 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0,
4064 DAG.getNode(ISD::AND, SDLoc(N),
Bill Wendling88103372009-01-30 21:37:17 +00004065 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00004066 DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004067 SDLoc(N),
Bill Wendling9729c5a2009-01-31 03:12:48 +00004068 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00004069 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00004070 }
4071 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004072
Chris Lattner61a4c072007-04-18 03:06:49 +00004073 // fold operands of srl based on knowledge that the low bits are not
4074 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00004075 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
4076 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004077
Evan Cheng9ab2b982009-12-18 21:31:31 +00004078 if (N1C) {
4079 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
4080 if (NewSRL.getNode())
4081 return NewSRL;
4082 }
4083
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004084 // Attempt to convert a srl of a load into a narrower zero-extending load.
4085 SDValue NarrowLoad = ReduceLoadWidth(N);
4086 if (NarrowLoad.getNode())
4087 return NarrowLoad;
4088
Evan Cheng9ab2b982009-12-18 21:31:31 +00004089 // Here is a common situation. We want to optimize:
4090 //
4091 // %a = ...
4092 // %b = and i32 %a, 2
4093 // %c = srl i32 %b, 1
4094 // brcond i32 %c ...
4095 //
4096 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004097 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00004098 // %a = ...
4099 // %b = and %a, 2
4100 // %c = setcc eq %b, 0
4101 // brcond %c ...
4102 //
4103 // However when after the source operand of SRL is optimized into AND, the SRL
4104 // itself may not be optimized further. Look for it and add the BRCOND into
4105 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00004106 if (N->hasOneUse()) {
4107 SDNode *Use = *N->use_begin();
4108 if (Use->getOpcode() == ISD::BRCOND)
4109 AddToWorkList(Use);
4110 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
4111 // Also look pass the truncate.
4112 Use = *Use->use_begin();
4113 if (Use->getOpcode() == ISD::BRCOND)
4114 AddToWorkList(Use);
4115 }
4116 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00004117
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004118 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00004119}
4120
Dan Gohman475871a2008-07-27 21:46:04 +00004121SDValue DAGCombiner::visitCTLZ(SDNode *N) {
4122 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004123 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004124
4125 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004126 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004127 return DAG.getNode(ISD::CTLZ, SDLoc(N), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004128 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004129}
4130
Chandler Carruth63974b22011-12-13 01:56:10 +00004131SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
4132 SDValue N0 = N->getOperand(0);
4133 EVT VT = N->getValueType(0);
4134
4135 // fold (ctlz_zero_undef c1) -> c2
4136 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004137 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, SDLoc(N), VT, N0);
Chandler Carruth63974b22011-12-13 01:56:10 +00004138 return SDValue();
4139}
4140
Dan Gohman475871a2008-07-27 21:46:04 +00004141SDValue DAGCombiner::visitCTTZ(SDNode *N) {
4142 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004143 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004144
Nate Begeman1d4d4142005-09-01 00:19:25 +00004145 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004146 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004147 return DAG.getNode(ISD::CTTZ, SDLoc(N), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004148 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004149}
4150
Chandler Carruth63974b22011-12-13 01:56:10 +00004151SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
4152 SDValue N0 = N->getOperand(0);
4153 EVT VT = N->getValueType(0);
4154
4155 // fold (cttz_zero_undef c1) -> c2
4156 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004157 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, SDLoc(N), VT, N0);
Chandler Carruth63974b22011-12-13 01:56:10 +00004158 return SDValue();
4159}
4160
Dan Gohman475871a2008-07-27 21:46:04 +00004161SDValue DAGCombiner::visitCTPOP(SDNode *N) {
4162 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004163 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004164
Nate Begeman1d4d4142005-09-01 00:19:25 +00004165 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004166 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004167 return DAG.getNode(ISD::CTPOP, SDLoc(N), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004168 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004169}
4170
Dan Gohman475871a2008-07-27 21:46:04 +00004171SDValue DAGCombiner::visitSELECT(SDNode *N) {
4172 SDValue N0 = N->getOperand(0);
4173 SDValue N1 = N->getOperand(1);
4174 SDValue N2 = N->getOperand(2);
Nate Begeman452d7be2005-09-16 00:54:12 +00004175 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4176 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4177 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00004178 EVT VT = N->getValueType(0);
4179 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00004180
Bill Wendling34584e62009-01-30 22:02:18 +00004181 // fold (select C, X, X) -> X
Nate Begeman452d7be2005-09-16 00:54:12 +00004182 if (N1 == N2)
4183 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004184 // fold (select true, X, Y) -> X
Nate Begeman452d7be2005-09-16 00:54:12 +00004185 if (N0C && !N0C->isNullValue())
4186 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004187 // fold (select false, X, Y) -> Y
Nate Begeman452d7be2005-09-16 00:54:12 +00004188 if (N0C && N0C->isNullValue())
4189 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004190 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004191 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004192 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N2);
Bill Wendling34584e62009-01-30 22:02:18 +00004193 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004194 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004195 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004196 (VT0.isInteger() &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00004197 TLI.getBooleanContents(false) ==
4198 TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004199 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004200 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004201 if (VT == VT0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004202 return DAG.getNode(ISD::XOR, SDLoc(N), VT0,
Bill Wendling34584e62009-01-30 22:02:18 +00004203 N0, DAG.getConstant(1, VT0));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004204 XORNode = DAG.getNode(ISD::XOR, SDLoc(N0), VT0,
Bill Wendling34584e62009-01-30 22:02:18 +00004205 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004206 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004207 if (VT.bitsGT(VT0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004208 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, XORNode);
4209 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004210 }
Bill Wendling34584e62009-01-30 22:02:18 +00004211 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004212 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004213 SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004214 AddToWorkList(NOTNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004215 return DAG.getNode(ISD::AND, SDLoc(N), VT, NOTNode, N2);
Nate Begeman452d7be2005-09-16 00:54:12 +00004216 }
Bill Wendling34584e62009-01-30 22:02:18 +00004217 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004218 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004219 SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004220 AddToWorkList(NOTNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004221 return DAG.getNode(ISD::OR, SDLoc(N), VT, NOTNode, N1);
Nate Begeman452d7be2005-09-16 00:54:12 +00004222 }
Bill Wendling34584e62009-01-30 22:02:18 +00004223 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004224 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00004225 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, N1);
Bill Wendling34584e62009-01-30 22:02:18 +00004226 // fold (select X, X, Y) -> (or X, Y)
4227 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004228 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004229 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N2);
Bill Wendling34584e62009-01-30 22:02:18 +00004230 // fold (select X, Y, X) -> (and X, Y)
4231 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004232 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004233 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004234
Chris Lattner40c62d52005-10-18 06:04:22 +00004235 // If we can fold this based on the true/false value, do so.
4236 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004237 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004238
Nate Begeman44728a72005-09-19 22:34:01 +00004239 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004240 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004241 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004242 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004243 // having to say they don't support SELECT_CC on every type the DAG knows
4244 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004245 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004246 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004247 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT,
Bill Wendling34584e62009-01-30 22:02:18 +00004248 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004249 N1, N2, N0.getOperand(2));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004250 return SimplifySelect(SDLoc(N), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004251 }
Bill Wendling34584e62009-01-30 22:02:18 +00004252
Dan Gohman475871a2008-07-27 21:46:04 +00004253 return SDValue();
Nate Begeman452d7be2005-09-16 00:54:12 +00004254}
4255
Benjamin Kramer6242fda2013-04-26 09:19:19 +00004256SDValue DAGCombiner::visitVSELECT(SDNode *N) {
4257 SDValue N0 = N->getOperand(0);
4258 SDValue N1 = N->getOperand(1);
4259 SDValue N2 = N->getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004260 SDLoc DL(N);
Benjamin Kramer6242fda2013-04-26 09:19:19 +00004261
4262 // Canonicalize integer abs.
4263 // vselect (setg[te] X, 0), X, -X ->
4264 // vselect (setgt X, -1), X, -X ->
4265 // vselect (setl[te] X, 0), -X, X ->
4266 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
4267 if (N0.getOpcode() == ISD::SETCC) {
4268 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
4269 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get();
4270 bool isAbs = false;
4271 bool RHSIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
4272
4273 if (((RHSIsAllZeros && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
4274 (ISD::isBuildVectorAllOnes(RHS.getNode()) && CC == ISD::SETGT)) &&
4275 N1 == LHS && N2.getOpcode() == ISD::SUB && N1 == N2.getOperand(1))
4276 isAbs = ISD::isBuildVectorAllZeros(N2.getOperand(0).getNode());
4277 else if ((RHSIsAllZeros && (CC == ISD::SETLT || CC == ISD::SETLE)) &&
4278 N2 == LHS && N1.getOpcode() == ISD::SUB && N2 == N1.getOperand(1))
4279 isAbs = ISD::isBuildVectorAllZeros(N1.getOperand(0).getNode());
4280
4281 if (isAbs) {
4282 EVT VT = LHS.getValueType();
4283 SDValue Shift = DAG.getNode(
4284 ISD::SRA, DL, VT, LHS,
4285 DAG.getConstant(VT.getScalarType().getSizeInBits() - 1, VT));
4286 SDValue Add = DAG.getNode(ISD::ADD, DL, VT, LHS, Shift);
4287 AddToWorkList(Shift.getNode());
4288 AddToWorkList(Add.getNode());
4289 return DAG.getNode(ISD::XOR, DL, VT, Add, Shift);
4290 }
4291 }
4292
4293 return SDValue();
4294}
4295
Dan Gohman475871a2008-07-27 21:46:04 +00004296SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4297 SDValue N0 = N->getOperand(0);
4298 SDValue N1 = N->getOperand(1);
4299 SDValue N2 = N->getOperand(2);
4300 SDValue N3 = N->getOperand(3);
4301 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004302 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004303
Nate Begeman44728a72005-09-19 22:34:01 +00004304 // fold select_cc lhs, rhs, x, x, cc -> x
4305 if (N2 == N3)
4306 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004307
Chris Lattner5f42a242006-09-20 06:19:26 +00004308 // Determine if the condition we're dealing with is constant
Matt Arsenault225ed702013-05-18 00:21:46 +00004309 SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004310 N0, N1, CC, SDLoc(N), false);
Stephen Lin7e6d6202013-06-15 04:03:33 +00004311 if (SCC.getNode()) {
4312 AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004313
Stephen Lin7e6d6202013-06-15 04:03:33 +00004314 if (ConstantSDNode *SCCC = dyn_cast<ConstantSDNode>(SCC.getNode())) {
4315 if (!SCCC->isNullValue())
4316 return N2; // cond always true -> true val
4317 else
4318 return N3; // cond always false -> false val
4319 }
4320
4321 // Fold to a simpler select_cc
4322 if (SCC.getOpcode() == ISD::SETCC)
4323 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), N2.getValueType(),
4324 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
4325 SCC.getOperand(2));
Chris Lattner5f42a242006-09-20 06:19:26 +00004326 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004327
Chris Lattner40c62d52005-10-18 06:04:22 +00004328 // If we can fold this based on the true/false value, do so.
4329 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004330 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004331
Nate Begeman44728a72005-09-19 22:34:01 +00004332 // fold select_cc into other things, such as min/max/abs
Andrew Trickac6d9be2013-05-25 02:42:55 +00004333 return SimplifySelectCC(SDLoc(N), N0, N1, N2, N3, CC);
Nate Begeman452d7be2005-09-16 00:54:12 +00004334}
4335
Dan Gohman475871a2008-07-27 21:46:04 +00004336SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7be2005-09-16 00:54:12 +00004337 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004338 cast<CondCodeSDNode>(N->getOperand(2))->get(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004339 SDLoc(N));
Nate Begeman452d7be2005-09-16 00:54:12 +00004340}
4341
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004342// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004343// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004344// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004345// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004346static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004347 unsigned ExtOpc,
Craig Toppera0ec3f92013-07-14 04:42:23 +00004348 SmallVectorImpl<SDNode *> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004349 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004350 bool HasCopyToRegUses = false;
4351 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004352 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4353 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004354 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004355 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004356 if (User == N)
4357 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004358 if (UI.getUse().getResNo() != N0.getResNo())
4359 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004360 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004361 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004362 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4363 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4364 // Sign bits will be lost after a zext.
4365 return false;
4366 bool Add = false;
4367 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004368 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004369 if (UseOp == N0)
4370 continue;
4371 if (!isa<ConstantSDNode>(UseOp))
4372 return false;
4373 Add = true;
4374 }
4375 if (Add)
4376 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004377 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004378 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004379 // If truncates aren't free and there are users we can't
4380 // extend, it isn't worthwhile.
4381 if (!isTruncFree)
4382 return false;
4383 // Remember if this value is live-out.
4384 if (User->getOpcode() == ISD::CopyToReg)
4385 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004386 }
4387
4388 if (HasCopyToRegUses) {
4389 bool BothLiveOut = false;
4390 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4391 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004392 SDUse &Use = UI.getUse();
4393 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4394 BothLiveOut = true;
4395 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004396 }
4397 }
4398 if (BothLiveOut)
4399 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004400 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004401 return ExtendNodes.size();
4402 }
4403 return true;
4404}
4405
Craig Topper6c64fba2013-07-13 07:43:40 +00004406void DAGCombiner::ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004407 SDValue Trunc, SDValue ExtLoad, SDLoc DL,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004408 ISD::NodeType ExtType) {
4409 // Extend SetCC uses if necessary.
4410 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4411 SDNode *SetCC = SetCCs[i];
4412 SmallVector<SDValue, 4> Ops;
4413
4414 for (unsigned j = 0; j != 2; ++j) {
4415 SDValue SOp = SetCC->getOperand(j);
4416 if (SOp == Trunc)
4417 Ops.push_back(ExtLoad);
4418 else
4419 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4420 }
4421
4422 Ops.push_back(SetCC->getOperand(2));
4423 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4424 &Ops[0], Ops.size()));
4425 }
4426}
4427
Dan Gohman475871a2008-07-27 21:46:04 +00004428SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4429 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004430 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004431
Nate Begeman1d4d4142005-09-01 00:19:25 +00004432 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004433 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004434 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004435
Nadav Rotem0c8607b2013-01-20 08:35:56 +00004436 // fold (sext (sext x)) -> (sext x)
4437 // fold (sext (aext x)) -> (sext x)
4438 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004439 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT,
Nadav Rotem0c8607b2013-01-20 08:35:56 +00004440 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004441
Chris Lattner22558872007-02-26 03:13:59 +00004442 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004443 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4444 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004445 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4446 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004447 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4448 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004449 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004450 // CombineTo deleted the truncate, if needed, but not what's under it.
4451 AddToWorkList(oye);
4452 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004453 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004454 }
Evan Chengc88138f2007-03-22 01:54:19 +00004455
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004456 // See if the value being truncated is already sign extended. If so, just
4457 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004458 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004459 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4460 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4461 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004462 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004463
Chris Lattner22558872007-02-26 03:13:59 +00004464 if (OpBits == DestBits) {
4465 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4466 // bits, it is already ready.
4467 if (NumSignBits > DestBits-MidBits)
4468 return Op;
4469 } else if (OpBits < DestBits) {
4470 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4471 // bits, just sext from i32.
4472 if (NumSignBits > OpBits-MidBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004473 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004474 } else {
4475 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4476 // bits, just truncate to i32.
4477 if (NumSignBits > OpBits-MidBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004478 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004479 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004480
Chris Lattner22558872007-02-26 03:13:59 +00004481 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004482 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4483 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004484 if (OpBits < DestBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004485 Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N0), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004486 else if (OpBits > DestBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004487 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), VT, Op);
4488 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004489 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004490 }
Chris Lattner6007b842006-09-21 06:00:20 +00004491 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004492
Evan Cheng110dec22005-12-14 02:19:23 +00004493 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004494 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004495 // on vectors in one instruction. We only perform this transformation on
4496 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004497 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004498 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004499 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004500 bool DoXform = true;
4501 SmallVector<SDNode*, 4> SetCCs;
4502 if (!N0.hasOneUse())
4503 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4504 if (DoXform) {
4505 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004506 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004507 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004508 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004509 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004510 LN0->isVolatile(), LN0->isNonTemporal(),
4511 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004512 CombineTo(N, ExtLoad);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004513 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004514 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004515 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004516 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004517 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004518 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004519 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004520 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004521
4522 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4523 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004524 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4525 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004526 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004527 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004528 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004529 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004530 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004531 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004532 LN0->getBasePtr(), LN0->getPointerInfo(),
4533 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004534 LN0->isVolatile(), LN0->isNonTemporal(),
4535 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004536 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004537 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004538 DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004539 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004540 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004541 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004542 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004543 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004544
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004545 // fold (sext (and/or/xor (load x), cst)) ->
4546 // (and/or/xor (sextload x), (sext cst))
4547 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4548 N0.getOpcode() == ISD::XOR) &&
4549 isa<LoadSDNode>(N0.getOperand(0)) &&
4550 N0.getOperand(1).getOpcode() == ISD::Constant &&
4551 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4552 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4553 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4554 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4555 bool DoXform = true;
4556 SmallVector<SDNode*, 4> SetCCs;
4557 if (!N0.hasOneUse())
4558 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4559 SetCCs, TLI);
4560 if (DoXform) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004561 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(LN0), VT,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004562 LN0->getChain(), LN0->getBasePtr(),
4563 LN0->getPointerInfo(),
4564 LN0->getMemoryVT(),
4565 LN0->isVolatile(),
4566 LN0->isNonTemporal(),
4567 LN0->getAlignment());
4568 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4569 Mask = Mask.sext(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004570 SDValue And = DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004571 ExtLoad, DAG.getConstant(Mask, VT));
4572 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004573 SDLoc(N0.getOperand(0)),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004574 N0.getOperand(0).getValueType(), ExtLoad);
4575 CombineTo(N, And);
4576 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004577 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004578 ISD::SIGN_EXTEND);
4579 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4580 }
4581 }
4582 }
4583
Chris Lattner20a35c32007-04-11 05:32:27 +00004584 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004585 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004586 // Only do this before legalize for now.
Owen Andersoned5707b2013-04-23 18:09:28 +00004587 if (VT.isVector() && !LegalOperations &&
Stephen Lin155615d2013-07-08 00:37:03 +00004588 TLI.getBooleanContents(true) ==
Owen Andersoned5707b2013-04-23 18:09:28 +00004589 TargetLowering::ZeroOrNegativeOneBooleanContent) {
Dan Gohman3ce89f42010-04-30 17:19:19 +00004590 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004591 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4592 // of the same size as the compared operands. Only optimize sext(setcc())
4593 // if this is the case.
Matt Arsenault225ed702013-05-18 00:21:46 +00004594 EVT SVT = getSetCCResultType(N0VT);
Nadav Rotem2e506192012-04-11 08:26:11 +00004595
4596 // We know that the # elements of the results is the same as the
4597 // # elements of the compare (and the # elements of the compare result
4598 // for that matter). Check to see that they are the same size. If so,
4599 // we know that the element size of the sext'd result matches the
4600 // element size of the compare operands.
4601 if (VT.getSizeInBits() == SVT.getSizeInBits())
Andrew Trickac6d9be2013-05-25 02:42:55 +00004602 return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004603 N0.getOperand(1),
4604 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Matt Arsenault9aa8fdf2013-05-17 21:43:43 +00004605
Dan Gohman3ce89f42010-04-30 17:19:19 +00004606 // If the desired elements are smaller or larger than the source
4607 // elements we can use a matching integer vector type and then
4608 // truncate/sign extend
Matt Arsenault9aa8fdf2013-05-17 21:43:43 +00004609 EVT MatchingVectorType = N0VT.changeVectorElementTypeToInteger();
Craig Topper0eb5dad2012-09-29 07:18:53 +00004610 if (SVT == MatchingVectorType) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004611 SDValue VsetCC = DAG.getSetCC(SDLoc(N), MatchingVectorType,
Craig Topper0eb5dad2012-09-29 07:18:53 +00004612 N0.getOperand(0), N0.getOperand(1),
4613 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004614 return DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT);
Dan Gohman3ce89f42010-04-30 17:19:19 +00004615 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004616 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004617
Chris Lattner2b7a2712009-07-08 00:31:33 +00004618 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004619 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004620 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004621 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004622 SDValue SCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00004623 SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004624 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004625 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004626 if (SCC.getNode()) return SCC;
Matt Arsenaultb05e4772013-06-14 22:04:37 +00004627 if (!VT.isVector() &&
4628 (!LegalOperations ||
4629 TLI.isOperationLegal(ISD::SETCC, getSetCCResultType(VT)))) {
4630 return DAG.getSelect(SDLoc(N), VT,
4631 DAG.getSetCC(SDLoc(N),
4632 getSetCCResultType(VT),
4633 N0.getOperand(0), N0.getOperand(1),
4634 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4635 NegOne, DAG.getConstant(0, VT));
4636 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004637 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004638
Dan Gohman8f0ad582008-04-28 16:58:24 +00004639 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004640 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004641 DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004642 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004643
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004644 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004645}
4646
Rafael Espindoladecbc432012-04-09 16:06:03 +00004647// isTruncateOf - If N is a truncate of some other value, return true, record
4648// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4649// This function computes KnownZero to avoid a duplicated call to
4650// ComputeMaskedBits in the caller.
4651static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4652 APInt &KnownZero) {
4653 APInt KnownOne;
4654 if (N->getOpcode() == ISD::TRUNCATE) {
4655 Op = N->getOperand(0);
4656 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4657 return true;
4658 }
4659
4660 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4661 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4662 return false;
4663
4664 SDValue Op0 = N->getOperand(0);
4665 SDValue Op1 = N->getOperand(1);
4666 assert(Op0.getValueType() == Op1.getValueType());
4667
4668 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4669 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004670 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004671 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004672 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004673 Op = Op0;
4674 else
4675 return false;
4676
4677 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4678
4679 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4680 return false;
4681
4682 return true;
4683}
4684
Dan Gohman475871a2008-07-27 21:46:04 +00004685SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4686 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004687 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004688
Nate Begeman1d4d4142005-09-01 00:19:25 +00004689 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004690 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004691 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004692 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004693 // fold (zext (aext x)) -> (zext x)
4694 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004695 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004696 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004697
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004698 // fold (zext (truncate x)) -> (zext x) or
4699 // (zext (truncate x)) -> (truncate x)
4700 // This is valid when the truncated bits of x are already zero.
4701 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004702 SDValue Op;
4703 APInt KnownZero;
4704 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4705 APInt TruncatedBits =
4706 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4707 APInt(Op.getValueSizeInBits(), 0) :
4708 APInt::getBitsSet(Op.getValueSizeInBits(),
4709 N0.getValueSizeInBits(),
4710 std::min(Op.getValueSizeInBits(),
4711 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004712 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004713 if (VT.bitsGT(Op.getValueType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004714 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, Op);
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004715 if (VT.bitsLT(Op.getValueType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004716 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004717
4718 return Op;
4719 }
4720 }
4721
Evan Chengc88138f2007-03-22 01:54:19 +00004722 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4723 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004724 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004725 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4726 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004727 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4728 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004729 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004730 // CombineTo deleted the truncate, if needed, but not what's under it.
4731 AddToWorkList(oye);
4732 }
Eli Friedmane545d382011-04-16 23:25:34 +00004733 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004734 }
Evan Chengc88138f2007-03-22 01:54:19 +00004735 }
4736
Chris Lattner6007b842006-09-21 06:00:20 +00004737 // fold (zext (truncate x)) -> (and x, mask)
4738 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004739 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004740
4741 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4742 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4743 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4744 if (NarrowLoad.getNode()) {
4745 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4746 if (NarrowLoad.getNode() != N0.getNode()) {
4747 CombineTo(N0.getNode(), NarrowLoad);
4748 // CombineTo deleted the truncate, if needed, but not what's under it.
4749 AddToWorkList(oye);
4750 }
4751 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4752 }
4753
Dan Gohman475871a2008-07-27 21:46:04 +00004754 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004755 if (Op.getValueType().bitsLT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004756 Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004757 AddToWorkList(Op.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004758 } else if (Op.getValueType().bitsGT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004759 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004760 AddToWorkList(Op.getNode());
Chris Lattner6007b842006-09-21 06:00:20 +00004761 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004762 return DAG.getZeroExtendInReg(Op, SDLoc(N),
Dan Gohman87862e72009-12-11 21:31:27 +00004763 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004764 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004765
Dan Gohman97121ba2009-04-08 00:15:30 +00004766 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4767 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004768 if (N0.getOpcode() == ISD::AND &&
4769 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004770 N0.getOperand(1).getOpcode() == ISD::Constant &&
4771 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4772 N0.getValueType()) ||
4773 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004774 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004775 if (X.getValueType().bitsLT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004776 X = DAG.getNode(ISD::ANY_EXTEND, SDLoc(X), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004777 } else if (X.getValueType().bitsGT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004778 X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004779 }
Dan Gohman220a8232008-03-03 23:51:38 +00004780 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004781 Mask = Mask.zext(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004782 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004783 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004784 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004785
Evan Cheng110dec22005-12-14 02:19:23 +00004786 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004787 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004788 // on vectors in one instruction. We only perform this transformation on
4789 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004790 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004791 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004792 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004793 bool DoXform = true;
4794 SmallVector<SDNode*, 4> SetCCs;
4795 if (!N0.hasOneUse())
4796 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4797 if (DoXform) {
4798 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004799 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004800 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004801 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004802 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004803 LN0->isVolatile(), LN0->isNonTemporal(),
4804 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004805 CombineTo(N, ExtLoad);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004806 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004807 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004808 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004809
Andrew Trickac6d9be2013-05-25 02:42:55 +00004810 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004811 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004812 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004813 }
Evan Cheng110dec22005-12-14 02:19:23 +00004814 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004815
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004816 // fold (zext (and/or/xor (load x), cst)) ->
4817 // (and/or/xor (zextload x), (zext cst))
4818 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4819 N0.getOpcode() == ISD::XOR) &&
4820 isa<LoadSDNode>(N0.getOperand(0)) &&
4821 N0.getOperand(1).getOpcode() == ISD::Constant &&
4822 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4823 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4824 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4825 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4826 bool DoXform = true;
4827 SmallVector<SDNode*, 4> SetCCs;
4828 if (!N0.hasOneUse())
4829 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4830 SetCCs, TLI);
4831 if (DoXform) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004832 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), VT,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004833 LN0->getChain(), LN0->getBasePtr(),
4834 LN0->getPointerInfo(),
4835 LN0->getMemoryVT(),
4836 LN0->isVolatile(),
4837 LN0->isNonTemporal(),
4838 LN0->getAlignment());
4839 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4840 Mask = Mask.zext(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004841 SDValue And = DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004842 ExtLoad, DAG.getConstant(Mask, VT));
4843 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004844 SDLoc(N0.getOperand(0)),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004845 N0.getOperand(0).getValueType(), ExtLoad);
4846 CombineTo(N, And);
4847 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004848 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004849 ISD::ZERO_EXTEND);
4850 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4851 }
4852 }
4853 }
4854
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004855 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4856 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004857 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4858 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004859 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004860 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004861 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004862 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004863 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004864 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004865 LN0->getBasePtr(), LN0->getPointerInfo(),
4866 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004867 LN0->isVolatile(), LN0->isNonTemporal(),
4868 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004869 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004870 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004871 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), N0.getValueType(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004872 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004873 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004874 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004875 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004876 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004877
Chris Lattner20a35c32007-04-11 05:32:27 +00004878 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004879 if (!LegalOperations && VT.isVector()) {
4880 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4881 // Only do this before legalize for now.
4882 EVT N0VT = N0.getOperand(0).getValueType();
4883 EVT EltVT = VT.getVectorElementType();
4884 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4885 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004886 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004887 // We know that the # elements of the results is the same as the
4888 // # elements of the compare (and the # elements of the compare result
4889 // for that matter). Check to see that they are the same size. If so,
4890 // we know that the element size of the sext'd result matches the
4891 // element size of the compare operands.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004892 return DAG.getNode(ISD::AND, SDLoc(N), VT,
4893 DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004894 N0.getOperand(1),
4895 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004896 DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT,
Evan Cheng0a942db2010-05-19 01:08:17 +00004897 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004898
4899 // If the desired elements are smaller or larger than the source
4900 // elements we can use a matching integer vector type and then
4901 // truncate/sign extend
4902 EVT MatchingElementType =
4903 EVT::getIntegerVT(*DAG.getContext(),
4904 N0VT.getScalarType().getSizeInBits());
4905 EVT MatchingVectorType =
4906 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4907 N0VT.getVectorNumElements());
4908 SDValue VsetCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00004909 DAG.getSetCC(SDLoc(N), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004910 N0.getOperand(1),
4911 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004912 return DAG.getNode(ISD::AND, SDLoc(N), VT,
4913 DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT),
4914 DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT,
Dan Gohman71dc7c92011-05-17 22:20:36 +00004915 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004916 }
4917
4918 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004919 SDValue SCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00004920 SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004921 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004922 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004923 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004924 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004925
Evan Cheng9818c042009-12-15 03:00:32 +00004926 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004927 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004928 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004929 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4930 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004931 SDValue ShAmt = N0.getOperand(1);
4932 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004933 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004934 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004935 // If the original shl may be shifting out bits, do not perform this
4936 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004937 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4938 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4939 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004940 return SDValue();
4941 }
Chris Lattnere0751182011-02-13 19:09:16 +00004942
Andrew Trickac6d9be2013-05-25 02:42:55 +00004943 SDLoc DL(N);
Owen Anderson95771af2011-02-25 21:41:48 +00004944
4945 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004946 if (VT.getSizeInBits() >= 256)
4947 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004948
Chris Lattnere0751182011-02-13 19:09:16 +00004949 return DAG.getNode(N0.getOpcode(), DL, VT,
4950 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4951 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004952 }
4953
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004954 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004955}
4956
Dan Gohman475871a2008-07-27 21:46:04 +00004957SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4958 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004959 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004960
Chris Lattner5ffc0662006-05-05 05:58:59 +00004961 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004962 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004963 return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004964 // fold (aext (aext x)) -> (aext x)
4965 // fold (aext (zext x)) -> (zext x)
4966 // fold (aext (sext x)) -> (sext x)
4967 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4968 N0.getOpcode() == ISD::ZERO_EXTEND ||
4969 N0.getOpcode() == ISD::SIGN_EXTEND)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004970 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004971
Evan Chengc88138f2007-03-22 01:54:19 +00004972 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4973 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4974 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004975 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4976 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004977 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4978 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004979 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004980 // CombineTo deleted the truncate, if needed, but not what's under it.
4981 AddToWorkList(oye);
4982 }
Eli Friedmane545d382011-04-16 23:25:34 +00004983 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004984 }
Evan Chengc88138f2007-03-22 01:54:19 +00004985 }
4986
Chris Lattner84750582006-09-20 06:29:17 +00004987 // fold (aext (truncate x))
4988 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004989 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004990 if (TruncOp.getValueType() == VT)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00004991 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004992 if (TruncOp.getValueType().bitsGT(VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004993 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, TruncOp);
4994 return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004995 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004996
Dan Gohman97121ba2009-04-08 00:15:30 +00004997 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4998 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004999 if (N0.getOpcode() == ISD::AND &&
5000 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00005001 N0.getOperand(1).getOpcode() == ISD::Constant &&
5002 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
5003 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00005004 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005005 if (X.getValueType().bitsLT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005006 X = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005007 } else if (X.getValueType().bitsGT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005008 X = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00005009 }
Dan Gohman220a8232008-03-03 23:51:38 +00005010 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00005011 Mask = Mask.zext(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005012 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Bill Wendling683c9572009-01-30 22:27:33 +00005013 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00005014 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005015
Chris Lattner5ffc0662006-05-05 05:58:59 +00005016 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005017 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00005018 // on vectors in one instruction. We only perform this transformation on
5019 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005020 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005021 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005022 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00005023 bool DoXform = true;
5024 SmallVector<SDNode*, 4> SetCCs;
5025 if (!N0.hasOneUse())
5026 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
5027 if (DoXform) {
5028 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005029 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00005030 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005031 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00005032 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00005033 LN0->isVolatile(), LN0->isNonTemporal(),
5034 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00005035 CombineTo(N, ExtLoad);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005036 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Dan Gohman57fc82d2009-04-09 03:51:29 +00005037 N0.getValueType(), ExtLoad);
5038 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005039 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00005040 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00005041 return SDValue(N, 0); // Return N so it doesn't get rechecked!
5042 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00005043 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005044
Chris Lattner5ffc0662006-05-05 05:58:59 +00005045 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
5046 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
5047 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00005048 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005049 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00005050 N0.hasOneUse()) {
5051 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005052 EVT MemVT = LN0->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005053 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), SDLoc(N),
Stuart Hastingsa9011292011-02-16 16:23:55 +00005054 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005055 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00005056 LN0->isVolatile(), LN0->isNonTemporal(),
5057 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00005058 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00005059 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00005060 DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling683c9572009-01-30 22:27:33 +00005061 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00005062 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005063 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00005064 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005065
Chris Lattner20a35c32007-04-11 05:32:27 +00005066 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00005067 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
5068 // Only do this before legalize for now.
5069 if (VT.isVector() && !LegalOperations) {
5070 EVT N0VT = N0.getOperand(0).getValueType();
5071 // We know that the # elements of the results is the same as the
5072 // # elements of the compare (and the # elements of the compare result
5073 // for that matter). Check to see that they are the same size. If so,
5074 // we know that the element size of the sext'd result matches the
5075 // element size of the compare operands.
5076 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Andrew Trickac6d9be2013-05-25 02:42:55 +00005077 return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00005078 N0.getOperand(1),
5079 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00005080 // If the desired elements are smaller or larger than the source
5081 // elements we can use a matching integer vector type and then
5082 // truncate/sign extend
5083 else {
Duncan Sands34727662010-07-12 08:16:59 +00005084 EVT MatchingElementType =
5085 EVT::getIntegerVT(*DAG.getContext(),
5086 N0VT.getScalarType().getSizeInBits());
5087 EVT MatchingVectorType =
5088 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
5089 N0VT.getVectorNumElements());
5090 SDValue VsetCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00005091 DAG.getSetCC(SDLoc(N), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00005092 N0.getOperand(1),
5093 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005094 return DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00005095 }
5096 }
5097
5098 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00005099 SDValue SCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00005100 SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00005101 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00005102 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00005103 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00005104 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00005105 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005106
Evan Chengb3a3d5e2010-04-28 07:10:39 +00005107 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00005108}
5109
Chris Lattner2b4c2792007-10-13 06:35:54 +00005110/// GetDemandedBits - See if the specified operand can be simplified with the
5111/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00005112/// simpler operand, otherwise return a null SDValue.
5113SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00005114 switch (V.getOpcode()) {
5115 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00005116 case ISD::Constant: {
5117 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
5118 assert(CV != 0 && "Const value should be ConstSDNode.");
5119 const APInt &CVal = CV->getAPIntValue();
5120 APInt NewVal = CVal & Mask;
Stephen Linb4940152013-07-09 00:44:49 +00005121 if (NewVal != CVal)
Lang Hames5207bf22011-11-08 18:56:23 +00005122 return DAG.getConstant(NewVal, V.getValueType());
Lang Hames5207bf22011-11-08 18:56:23 +00005123 break;
5124 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00005125 case ISD::OR:
5126 case ISD::XOR:
5127 // If the LHS or RHS don't contribute bits to the or, drop them.
5128 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
5129 return V.getOperand(1);
5130 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
5131 return V.getOperand(0);
5132 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00005133 case ISD::SRL:
5134 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005135 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00005136 break;
5137 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
5138 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005139 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00005140
Dan Gohmancc91d632009-01-03 19:22:06 +00005141 // Watch out for shift count overflow though.
5142 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005143 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00005144 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00005145 if (SimplifyLHS.getNode())
Andrew Trickac6d9be2013-05-25 02:42:55 +00005146 return DAG.getNode(ISD::SRL, SDLoc(V), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00005147 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00005148 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00005149 }
Dan Gohman475871a2008-07-27 21:46:04 +00005150 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00005151}
5152
Evan Chengc88138f2007-03-22 01:54:19 +00005153/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
5154/// bits and then truncated to a narrower type and where N is a multiple
5155/// of number of bits of the narrower type, transform it to a narrower load
5156/// from address + N / num of bits of new type. If the result is to be
5157/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00005158SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00005159 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005160
Evan Chengc88138f2007-03-22 01:54:19 +00005161 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00005162 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005163 EVT VT = N->getValueType(0);
5164 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00005165
Dan Gohman7f8613e2008-08-14 20:04:46 +00005166 // This transformation isn't valid for vector loads.
5167 if (VT.isVector())
5168 return SDValue();
5169
Dan Gohmand1996362010-01-09 02:13:55 +00005170 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00005171 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00005172 if (Opc == ISD::SIGN_EXTEND_INREG) {
5173 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00005174 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005175 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00005176 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005177 ExtType = ISD::ZEXTLOAD;
5178 N0 = SDValue(N, 0);
5179 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
5180 if (!N01) return SDValue();
5181 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
5182 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00005183 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00005184 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
5185 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005186
Owen Andersone50ed302009-08-10 22:56:29 +00005187 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00005188
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005189 // Do not generate loads of non-round integer types since these can
5190 // be expensive (and would be wrong if the type is not byte sized).
5191 if (!ExtVT.isRound())
5192 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005193
Evan Chengc88138f2007-03-22 01:54:19 +00005194 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005195 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00005196 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005197 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005198 // Is the shift amount a multiple of size of VT?
5199 if ((ShAmt & (EVTBits-1)) == 0) {
5200 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00005201 // Is the load width a multiple of size of VT?
5202 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005203 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005204 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005205
Chris Lattnercbf68df2010-12-22 08:02:57 +00005206 // At this point, we must have a load or else we can't do the transform.
5207 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005208
Chandler Carruth1c49fda2012-12-11 00:36:57 +00005209 // Because a SRL must be assumed to *need* to zero-extend the high bits
5210 // (as opposed to anyext the high bits), we can't combine the zextload
5211 // lowering of SRL and an sextload.
5212 if (cast<LoadSDNode>(N0)->getExtensionType() == ISD::SEXTLOAD)
5213 return SDValue();
5214
Chris Lattner2831a192010-10-01 05:36:09 +00005215 // If the shift amount is larger than the input type then we're not
5216 // accessing any of the loaded bytes. If the load was a zextload/extload
5217 // then the result of the shift+trunc is zero/undef (handled elsewhere).
Chris Lattnercbf68df2010-12-22 08:02:57 +00005218 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00005219 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005220 }
5221 }
5222
Dan Gohman394d6292010-11-03 01:47:46 +00005223 // If the load is shifted left (and the result isn't shifted back right),
5224 // we can fold the truncate through the shift.
5225 unsigned ShLeftAmt = 0;
5226 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00005227 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00005228 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5229 ShLeftAmt = N01->getZExtValue();
5230 N0 = N0.getOperand(0);
5231 }
5232 }
Owen Anderson95771af2011-02-25 21:41:48 +00005233
Chris Lattner4c32bc22010-12-22 07:36:50 +00005234 // If we haven't found a load, we can't narrow it. Don't transform one with
5235 // multiple uses, this would require adding a new load.
Bill Schmidt89e88e32013-01-14 22:04:38 +00005236 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse())
5237 return SDValue();
5238
5239 // Don't change the width of a volatile load.
5240 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5241 if (LN0->isVolatile())
Chris Lattner4c32bc22010-12-22 07:36:50 +00005242 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005243
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005244 // Verify that we are actually reducing a load width here.
Bill Schmidt89e88e32013-01-14 22:04:38 +00005245 if (LN0->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005246 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005247
Bill Schmidt89e88e32013-01-14 22:04:38 +00005248 // For the transform to be legal, the load must produce only two values
5249 // (the value loaded and the chain). Don't transform a pre-increment
Stephen Lin155615d2013-07-08 00:37:03 +00005250 // load, for example, which produces an extra value. Otherwise the
Bill Schmidt89e88e32013-01-14 22:04:38 +00005251 // transformation is not equivalent, and the downstream logic to replace
5252 // uses gets things wrong.
5253 if (LN0->getNumValues() > 2)
5254 return SDValue();
5255
Benjamin Kramerf4eeab42013-07-06 14:05:09 +00005256 // If the load that we're shrinking is an extload and we're not just
5257 // discarding the extension we can't simply shrink the load. Bail.
5258 // TODO: It would be possible to merge the extensions in some cases.
5259 if (LN0->getExtensionType() != ISD::NON_EXTLOAD &&
5260 LN0->getMemoryVT().getSizeInBits() < ExtVT.getSizeInBits() + ShAmt)
5261 return SDValue();
5262
Chris Lattner4c32bc22010-12-22 07:36:50 +00005263 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005264
Evan Cheng16436df2012-06-26 01:19:33 +00005265 if (PtrType == MVT::Untyped || PtrType.isExtended())
5266 // It's not possible to generate a constant of extended or untyped type.
5267 return SDValue();
5268
Chris Lattner4c32bc22010-12-22 07:36:50 +00005269 // For big endian targets, we need to adjust the offset to the pointer to
5270 // load the correct bytes.
5271 if (TLI.isBigEndian()) {
5272 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5273 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5274 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005275 }
5276
Chris Lattner4c32bc22010-12-22 07:36:50 +00005277 uint64_t PtrOff = ShAmt / 8;
5278 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005279 SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(LN0),
Chris Lattner4c32bc22010-12-22 07:36:50 +00005280 PtrType, LN0->getBasePtr(),
5281 DAG.getConstant(PtrOff, PtrType));
5282 AddToWorkList(NewPtr.getNode());
5283
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005284 SDValue Load;
5285 if (ExtType == ISD::NON_EXTLOAD)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005286 Load = DAG.getLoad(VT, SDLoc(N0), LN0->getChain(), NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005287 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005288 LN0->isVolatile(), LN0->isNonTemporal(),
5289 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005290 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00005291 Load = DAG.getExtLoad(ExtType, SDLoc(N0), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005292 LN0->getPointerInfo().getWithOffset(PtrOff),
5293 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5294 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005295
5296 // Replace the old load's chain with the new load's chain.
5297 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005298 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005299
5300 // Shift the result left, if we've swallowed a left shift.
5301 SDValue Result = Load;
5302 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005303 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005304 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5305 ShImmTy = VT;
Paul Redmond5c974502013-02-12 15:21:21 +00005306 // If the shift amount is as large as the result size (but, presumably,
5307 // no larger than the source) then the useful bits of the result are
5308 // zero; we can't simply return the shortened shift, because the result
5309 // of that operation is undefined.
5310 if (ShLeftAmt >= VT.getSizeInBits())
5311 Result = DAG.getConstant(0, VT);
5312 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00005313 Result = DAG.getNode(ISD::SHL, SDLoc(N0), VT,
Paul Redmond5c974502013-02-12 15:21:21 +00005314 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005315 }
5316
5317 // Return the new loaded value.
5318 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005319}
5320
Dan Gohman475871a2008-07-27 21:46:04 +00005321SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5322 SDValue N0 = N->getOperand(0);
5323 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005324 EVT VT = N->getValueType(0);
5325 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005326 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005327 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005328
Nate Begeman1d4d4142005-09-01 00:19:25 +00005329 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005330 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005331 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005332
Chris Lattner541a24f2006-05-06 22:43:44 +00005333 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005334 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005335 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005336
Nate Begeman646d7e22005-09-02 21:18:40 +00005337 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5338 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Stephen Linb4940152013-07-09 00:44:49 +00005339 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005340 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005341 N0.getOperand(0), N1);
Chris Lattner4b37e872006-05-08 21:18:59 +00005342
Dan Gohman75dcf082008-07-31 00:50:31 +00005343 // fold (sext_in_reg (sext x)) -> (sext x)
5344 // fold (sext_in_reg (aext x)) -> (sext x)
5345 // if x is small enough.
5346 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5347 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005348 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5349 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005350 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005351 }
5352
Chris Lattner95a5e052007-04-17 19:03:21 +00005353 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005354 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005355 return DAG.getZeroExtendInReg(N0, SDLoc(N), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005356
Chris Lattner95a5e052007-04-17 19:03:21 +00005357 // fold operands of sext_in_reg based on knowledge that the top bits are not
5358 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005359 if (SimplifyDemandedBits(SDValue(N, 0)))
5360 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005361
Evan Chengc88138f2007-03-22 01:54:19 +00005362 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5363 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005364 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005365 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005366 return NarrowLoad;
5367
Bill Wendling8509c902009-01-30 22:33:24 +00005368 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005369 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005370 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5371 if (N0.getOpcode() == ISD::SRL) {
5372 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005373 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005374 // We can turn this into an SRA iff the input to the SRL is already sign
Chris Lattner4b37e872006-05-08 21:18:59 +00005375 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005376 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005377 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005378 return DAG.getNode(ISD::SRA, SDLoc(N), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005379 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005380 }
5381 }
Evan Chengc88138f2007-03-22 01:54:19 +00005382
Nate Begemanded49632005-10-13 03:11:28 +00005383 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005384 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005385 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005386 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005387 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005388 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005389 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005390 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005391 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005392 LN0->getBasePtr(), LN0->getPointerInfo(),
5393 EVT,
David Greene1e559442010-02-15 17:00:31 +00005394 LN0->isVolatile(), LN0->isNonTemporal(),
5395 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005396 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005397 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Elena Demikhovsky4b977312012-12-19 07:50:20 +00005398 AddToWorkList(ExtLoad.getNode());
Dan Gohman475871a2008-07-27 21:46:04 +00005399 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005400 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005401 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005402 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005403 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005404 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005405 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005406 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005407 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005408 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005409 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005410 LN0->getBasePtr(), LN0->getPointerInfo(),
5411 EVT,
David Greene1e559442010-02-15 17:00:31 +00005412 LN0->isVolatile(), LN0->isNonTemporal(),
5413 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005414 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005415 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005416 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005417 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005418
5419 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5420 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5421 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5422 N0.getOperand(1), false);
5423 if (BSwap.getNode() != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005424 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
Evan Cheng9568e5c2011-06-21 06:01:08 +00005425 BSwap, N1);
5426 }
5427
Dan Gohman475871a2008-07-27 21:46:04 +00005428 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005429}
5430
Dan Gohman475871a2008-07-27 21:46:04 +00005431SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5432 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005433 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005434 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005435
5436 // noop truncate
5437 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005438 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005439 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005440 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005441 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005442 // fold (truncate (truncate x)) -> (truncate x)
5443 if (N0.getOpcode() == ISD::TRUNCATE)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005444 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005445 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005446 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5447 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005448 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005449 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005450 // if the source is smaller than the dest, we still need an extend
Andrew Trickac6d9be2013-05-25 02:42:55 +00005451 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005452 N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005453 if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005454 // if the source is larger than the dest, than we just need the truncate
Andrew Trickac6d9be2013-05-25 02:42:55 +00005455 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005456 // if the source and dest are the same type, we can drop both the extend
5457 // and the truncate.
5458 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005459 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005460
Nadav Rotemcc870a82012-02-05 11:39:23 +00005461 // Fold extract-and-trunc into a narrow extract. For example:
5462 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5463 // i32 y = TRUNCATE(i64 x)
5464 // -- becomes --
5465 // v16i8 b = BITCAST (v2i64 val)
5466 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5467 //
5468 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005469 // creates this pattern) and before operation legalization after which
5470 // we need to be more careful about the vector instructions that we generate.
5471 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5472 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5473
5474 EVT VecTy = N0.getOperand(0).getValueType();
5475 EVT ExTy = N0.getValueType();
5476 EVT TrTy = N->getValueType(0);
5477
5478 unsigned NumElem = VecTy.getVectorNumElements();
5479 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5480
5481 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5482 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5483
5484 SDValue EltNo = N0->getOperand(1);
5485 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5486 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Tom Stellard425b76c2013-08-05 22:22:01 +00005487 EVT IndexTy = TLI.getVectorIdxTy();
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005488 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5489
Andrew Trickac6d9be2013-05-25 02:42:55 +00005490 SDValue V = DAG.getNode(ISD::BITCAST, SDLoc(N),
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005491 NVT, N0.getOperand(0));
5492
5493 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005494 SDLoc(N), TrTy, V,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005495 DAG.getConstant(Index, IndexTy));
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005496 }
5497 }
5498
Arnold Schwaighoferc46e2df2013-02-20 21:33:32 +00005499 // Fold a series of buildvector, bitcast, and truncate if possible.
5500 // For example fold
5501 // (2xi32 trunc (bitcast ((4xi32)buildvector x, x, y, y) 2xi64)) to
5502 // (2xi32 (buildvector x, y)).
5503 if (Level == AfterLegalizeVectorOps && VT.isVector() &&
5504 N0.getOpcode() == ISD::BITCAST && N0.hasOneUse() &&
5505 N0.getOperand(0).getOpcode() == ISD::BUILD_VECTOR &&
5506 N0.getOperand(0).hasOneUse()) {
5507
5508 SDValue BuildVect = N0.getOperand(0);
5509 EVT BuildVectEltTy = BuildVect.getValueType().getVectorElementType();
5510 EVT TruncVecEltTy = VT.getVectorElementType();
5511
5512 // Check that the element types match.
5513 if (BuildVectEltTy == TruncVecEltTy) {
5514 // Now we only need to compute the offset of the truncated elements.
5515 unsigned BuildVecNumElts = BuildVect.getNumOperands();
5516 unsigned TruncVecNumElts = VT.getVectorNumElements();
5517 unsigned TruncEltOffset = BuildVecNumElts / TruncVecNumElts;
5518
5519 assert((BuildVecNumElts % TruncVecNumElts) == 0 &&
5520 "Invalid number of elements");
5521
5522 SmallVector<SDValue, 8> Opnds;
5523 for (unsigned i = 0, e = BuildVecNumElts; i != e; i += TruncEltOffset)
5524 Opnds.push_back(BuildVect.getOperand(i));
5525
Andrew Trickac6d9be2013-05-25 02:42:55 +00005526 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT, &Opnds[0],
Arnold Schwaighoferc46e2df2013-02-20 21:33:32 +00005527 Opnds.size());
5528 }
5529 }
5530
Chris Lattner2b4c2792007-10-13 06:35:54 +00005531 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005532 // only the low bits are being used.
5533 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005534 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005535 // may have different active low bits.
5536 if (!VT.isVector()) {
5537 SDValue Shorter =
5538 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5539 VT.getSizeInBits()));
5540 if (Shorter.getNode())
Andrew Trickac6d9be2013-05-25 02:42:55 +00005541 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Shorter);
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005542 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005543 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005544 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005545 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5546 SDValue Reduced = ReduceLoadWidth(N);
5547 if (Reduced.getNode())
5548 return Reduced;
5549 }
Michael Liao07edaf32012-10-17 23:45:54 +00005550 // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)),
5551 // where ... are all 'undef'.
5552 if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) {
5553 SmallVector<EVT, 8> VTs;
5554 SDValue V;
5555 unsigned Idx = 0;
5556 unsigned NumDefs = 0;
5557
5558 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
5559 SDValue X = N0.getOperand(i);
5560 if (X.getOpcode() != ISD::UNDEF) {
5561 V = X;
5562 Idx = i;
5563 NumDefs++;
5564 }
5565 // Stop if more than one members are non-undef.
5566 if (NumDefs > 1)
5567 break;
5568 VTs.push_back(EVT::getVectorVT(*DAG.getContext(),
5569 VT.getVectorElementType(),
5570 X.getValueType().getVectorNumElements()));
5571 }
5572
5573 if (NumDefs == 0)
5574 return DAG.getUNDEF(VT);
5575
5576 if (NumDefs == 1) {
5577 assert(V.getNode() && "The single defined operand is empty!");
5578 SmallVector<SDValue, 8> Opnds;
5579 for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
5580 if (i != Idx) {
5581 Opnds.push_back(DAG.getUNDEF(VTs[i]));
5582 continue;
5583 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00005584 SDValue NV = DAG.getNode(ISD::TRUNCATE, SDLoc(V), VTs[i], V);
Michael Liao07edaf32012-10-17 23:45:54 +00005585 AddToWorkList(NV.getNode());
5586 Opnds.push_back(NV);
5587 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00005588 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
Michael Liao07edaf32012-10-17 23:45:54 +00005589 &Opnds[0], Opnds.size());
5590 }
5591 }
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005592
5593 // Simplify the operands using demanded-bits information.
5594 if (!VT.isVector() &&
5595 SimplifyDemandedBits(SDValue(N, 0)))
5596 return SDValue(N, 0);
5597
Evan Chenge5b51ac2010-04-17 06:13:15 +00005598 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005599}
5600
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005601static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005602 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005603 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005604 return Elt.getNode();
5605 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005606}
5607
5608/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005609/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005610SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005611 assert(N->getOpcode() == ISD::BUILD_PAIR);
5612
Nate Begemanabc01992009-06-05 21:37:30 +00005613 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5614 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005615 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5616 LD1->getPointerInfo().getAddrSpace() !=
5617 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005618 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005619 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005620
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005621 if (ISD::isNON_EXTLoad(LD2) &&
5622 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005623 // If both are volatile this would reduce the number of volatile loads.
5624 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005625 !LD1->isVolatile() &&
5626 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005627 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005628 unsigned Align = LD1->getAlignment();
Micah Villmow3574eca2012-10-08 16:38:25 +00005629 unsigned NewAlign = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005630 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005631
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005632 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005633 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005634 return DAG.getLoad(VT, SDLoc(N), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005635 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005636 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005637 }
Bill Wendling67a67682009-01-30 22:44:24 +00005638
Dan Gohman475871a2008-07-27 21:46:04 +00005639 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005640}
5641
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005642SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005643 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005644 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005645
Dan Gohman7f321562007-06-25 16:23:39 +00005646 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5647 // Only do this before legalize, since afterward the target may be depending
5648 // on the bitconvert.
5649 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005650 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005651 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005652 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005653 bool isSimple = true;
5654 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5655 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5656 N0.getOperand(i).getOpcode() != ISD::Constant &&
5657 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005658 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005659 break;
5660 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005661
Owen Andersone50ed302009-08-10 22:56:29 +00005662 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005663 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005664 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005665 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005666 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005667 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005668
Dan Gohman3dd168d2008-09-05 01:58:21 +00005669 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005670 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005671 SDValue Res = DAG.getNode(ISD::BITCAST, SDLoc(N), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005672 if (Res.getNode() != N) {
5673 if (!LegalOperations ||
5674 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5675 return Res;
5676
5677 // Folding it resulted in an illegal node, and it's too late to
5678 // do that. Clean up the old node and forego the transformation.
5679 // Ideally this won't happen very often, because instcombine
5680 // and the earlier dagcombine runs (where illegal nodes are
5681 // permitted) should have folded most of them already.
5682 DAG.DeleteNode(Res.getNode());
5683 }
Chris Lattner94683772005-12-23 05:30:37 +00005684 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005685
Bill Wendling67a67682009-01-30 22:44:24 +00005686 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005687 if (N0.getOpcode() == ISD::BITCAST)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005688 return DAG.getNode(ISD::BITCAST, SDLoc(N), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005689 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005690
Chris Lattner57104102005-12-23 05:44:41 +00005691 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005692 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005693 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005694 // Do not change the width of a volatile load.
5695 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005696 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005697 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Micah Villmow3574eca2012-10-08 16:38:25 +00005698 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005699 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005700 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005701
Evan Cheng59d5b682007-05-07 21:27:48 +00005702 if (Align <= OrigAlign) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005703 SDValue Load = DAG.getLoad(VT, SDLoc(N), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005704 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005705 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005706 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005707 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005708 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00005709 DAG.getNode(ISD::BITCAST, SDLoc(N0),
Bill Wendling67a67682009-01-30 22:44:24 +00005710 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005711 Load.getValue(1));
5712 return Load;
5713 }
Chris Lattner57104102005-12-23 05:44:41 +00005714 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005715
Bill Wendling67a67682009-01-30 22:44:24 +00005716 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5717 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005718 // This often reduces constant pool loads.
Tom Stellard1f67c632013-07-23 23:55:03 +00005719 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(N0.getValueType())) ||
5720 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(N0.getValueType()))) &&
Nadav Rotem91a7e012012-09-13 14:54:28 +00005721 N0.getNode()->hasOneUse() && VT.isInteger() &&
5722 !VT.isVector() && !N0.getValueType().isVector()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005723 SDValue NewConv = DAG.getNode(ISD::BITCAST, SDLoc(N0), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005724 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005725 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005726
Duncan Sands83ec4b62008-06-06 12:08:01 +00005727 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005728 if (N0.getOpcode() == ISD::FNEG)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005729 return DAG.getNode(ISD::XOR, SDLoc(N), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005730 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005731 assert(N0.getOpcode() == ISD::FABS);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005732 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005733 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005734 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005735
Bill Wendling67a67682009-01-30 22:44:24 +00005736 // fold (bitconvert (fcopysign cst, x)) ->
5737 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5738 // Note that we don't handle (copysign x, cst) because this can always be
5739 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005740 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005741 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005742 VT.isInteger() && !VT.isVector()) {
5743 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005744 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005745 if (isTypeLegal(IntXVT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005746 SDValue X = DAG.getNode(ISD::BITCAST, SDLoc(N0),
Bill Wendling67a67682009-01-30 22:44:24 +00005747 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005748 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005749
Duncan Sands25cf2272008-11-24 14:53:14 +00005750 // If X has a different width than the result/lhs, sext it or truncate it.
5751 unsigned VTWidth = VT.getSizeInBits();
5752 if (OrigXWidth < VTWidth) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005753 X = DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005754 AddToWorkList(X.getNode());
5755 } else if (OrigXWidth > VTWidth) {
5756 // To get the sign bit in the right place, we have to shift it right
5757 // before truncating.
Andrew Trickac6d9be2013-05-25 02:42:55 +00005758 X = DAG.getNode(ISD::SRL, SDLoc(X),
Bill Wendling67a67682009-01-30 22:44:24 +00005759 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005760 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5761 AddToWorkList(X.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005762 X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005763 AddToWorkList(X.getNode());
5764 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005765
Duncan Sands25cf2272008-11-24 14:53:14 +00005766 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005767 X = DAG.getNode(ISD::AND, SDLoc(X), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005768 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005769 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005770
Andrew Trickac6d9be2013-05-25 02:42:55 +00005771 SDValue Cst = DAG.getNode(ISD::BITCAST, SDLoc(N0),
Bill Wendling67a67682009-01-30 22:44:24 +00005772 VT, N0.getOperand(0));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005773 Cst = DAG.getNode(ISD::AND, SDLoc(Cst), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005774 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005775 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005776
Andrew Trickac6d9be2013-05-25 02:42:55 +00005777 return DAG.getNode(ISD::OR, SDLoc(N), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005778 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005779 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005780
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005781 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005782 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005783 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5784 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005785 return CombineLD;
5786 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005787
Dan Gohman475871a2008-07-27 21:46:04 +00005788 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005789}
5790
Dan Gohman475871a2008-07-27 21:46:04 +00005791SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005792 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005793 return CombineConsecutiveLoads(N, VT);
5794}
5795
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005796/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005797/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005798/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005799SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005800ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005801 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005802
Chris Lattner6258fb22006-04-02 02:53:43 +00005803 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005804 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005805
Duncan Sands83ec4b62008-06-06 12:08:01 +00005806 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5807 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005808
Chris Lattner6258fb22006-04-02 02:53:43 +00005809 // If this is a conversion of N elements of one type to N elements of another
5810 // type, convert each element. This handles FP<->INT cases.
5811 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005812 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5813 BV->getValueType(0).getVectorNumElements());
5814
5815 // Due to the FP element handling below calling this routine recursively,
5816 // we can end up with a scalar-to-vector node here.
5817 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005818 return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(BV), VT,
5819 DAG.getNode(ISD::BITCAST, SDLoc(BV),
Nate Begemane0efc212010-07-27 18:02:18 +00005820 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005821
Dan Gohman475871a2008-07-27 21:46:04 +00005822 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005823 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005824 SDValue Op = BV->getOperand(i);
5825 // If the vector element type is not legal, the BUILD_VECTOR operands
5826 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005827 if (Op.getValueType() != SrcEltVT)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005828 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(BV), SrcEltVT, Op);
5829 Ops.push_back(DAG.getNode(ISD::BITCAST, SDLoc(BV),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005830 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005831 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005832 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00005833 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
Evan Chenga87008d2009-02-25 22:49:59 +00005834 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005835 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005836
Chris Lattner6258fb22006-04-02 02:53:43 +00005837 // Otherwise, we're growing or shrinking the elements. To avoid having to
5838 // handle annoying details of growing/shrinking FP values, we convert them to
5839 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005840 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005841 // Convert the input float vector to a int vector where the elements are the
5842 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005843 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005844 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005845 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005846 SrcEltVT = IntVT;
5847 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005848
Chris Lattner6258fb22006-04-02 02:53:43 +00005849 // Now we know the input is an integer vector. If the output is a FP type,
5850 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005851 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005852 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005853 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005854 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005855
Chris Lattner6258fb22006-04-02 02:53:43 +00005856 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005857 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005858 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005859
Chris Lattner6258fb22006-04-02 02:53:43 +00005860 // Okay, we know the src/dst types are both integers of differing types.
5861 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005862 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005863 if (SrcBitSize < DstBitSize) {
5864 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005865
Dan Gohman475871a2008-07-27 21:46:04 +00005866 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005867 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005868 i += NumInputsPerOutput) {
5869 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005870 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005871 bool EltIsUndef = true;
5872 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5873 // Shift the previously computed bits over.
5874 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005875 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005876 if (Op.getOpcode() == ISD::UNDEF) continue;
5877 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005878
Jay Foad40f8f622010-12-07 08:25:19 +00005879 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005880 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005881 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005882
Chris Lattner6258fb22006-04-02 02:53:43 +00005883 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005884 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005885 else
5886 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5887 }
5888
Owen Anderson23b9b192009-08-12 00:36:31 +00005889 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005890 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
Evan Chenga87008d2009-02-25 22:49:59 +00005891 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005892 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005893
Chris Lattner6258fb22006-04-02 02:53:43 +00005894 // Finally, this must be the case where we are shrinking elements: each input
5895 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005896 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005897 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005898 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5899 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005900 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005901
Dan Gohman7f321562007-06-25 16:23:39 +00005902 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005903 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5904 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005905 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005906 continue;
5907 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005908
Jay Foad40f8f622010-12-07 08:25:19 +00005909 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5910 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005911
Chris Lattner6258fb22006-04-02 02:53:43 +00005912 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005913 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005914 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005915 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005916 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Andrew Trickac6d9be2013-05-25 02:42:55 +00005917 return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(BV), VT,
Bill Wendlingb0162f52009-01-30 22:53:48 +00005918 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005919 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005920 }
5921
5922 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005923 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005924 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5925 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005926
Andrew Trickac6d9be2013-05-25 02:42:55 +00005927 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
Evan Chenga87008d2009-02-25 22:49:59 +00005928 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005929}
5930
Dan Gohman475871a2008-07-27 21:46:04 +00005931SDValue DAGCombiner::visitFADD(SDNode *N) {
5932 SDValue N0 = N->getOperand(0);
5933 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005934 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5935 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005936 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005937
Dan Gohman7f321562007-06-25 16:23:39 +00005938 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005939 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005940 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005941 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005942 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005943
Lang Hames01806942012-06-14 20:37:15 +00005944 // fold (fadd c1, c2) -> c1 + c2
Ulrich Weigande669c932012-10-29 18:35:49 +00005945 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005946 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005947 // canonicalize constant to RHS
5948 if (N0CFP && !N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005949 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N1, N0);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005950 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005951 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5952 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005953 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005954 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005955 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005956 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005957 return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005958 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005959 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005960 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005961 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005962 return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005963 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005964
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005965 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005966 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5967 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5968 isa<ConstantFPSDNode>(N0.getOperand(1)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005969 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0.getOperand(0),
5970 DAG.getNode(ISD::FADD, SDLoc(N), VT,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005971 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005972
Shuxin Yang1cd1d022013-03-25 22:52:29 +00005973 // No FP constant should be created after legalization as Instruction
5974 // Selection pass has hard time in dealing with FP constant.
5975 //
5976 // We don't need test this condition for transformation like following, as
5977 // the DAG being transformed implies it is legal to take FP constant as
5978 // operand.
Stephen Lin155615d2013-07-08 00:37:03 +00005979 //
Shuxin Yang1cd1d022013-03-25 22:52:29 +00005980 // (fadd (fmul c, x), x) -> (fmul c+1, x)
Stephen Lin155615d2013-07-08 00:37:03 +00005981 //
Shuxin Yang1cd1d022013-03-25 22:52:29 +00005982 bool AllowNewFpConst = (Level < AfterLegalizeDAG);
5983
Owen Anderson607ebde2012-11-01 02:00:53 +00005984 // If allow, fold (fadd (fneg x), x) -> 0.0
Shuxin Yang1cd1d022013-03-25 22:52:29 +00005985 if (AllowNewFpConst && DAG.getTarget().Options.UnsafeFPMath &&
Stephen Linb4940152013-07-09 00:44:49 +00005986 N0.getOpcode() == ISD::FNEG && N0.getOperand(0) == N1)
Owen Anderson607ebde2012-11-01 02:00:53 +00005987 return DAG.getConstantFP(0.0, VT);
Owen Anderson607ebde2012-11-01 02:00:53 +00005988
5989 // If allow, fold (fadd x, (fneg x)) -> 0.0
Shuxin Yang1cd1d022013-03-25 22:52:29 +00005990 if (AllowNewFpConst && DAG.getTarget().Options.UnsafeFPMath &&
Stephen Linb4940152013-07-09 00:44:49 +00005991 N1.getOpcode() == ISD::FNEG && N1.getOperand(0) == N0)
Owen Anderson607ebde2012-11-01 02:00:53 +00005992 return DAG.getConstantFP(0.0, VT);
Owen Anderson607ebde2012-11-01 02:00:53 +00005993
Owen Anderson43da6c72012-08-30 23:35:16 +00005994 // In unsafe math mode, we can fold chains of FADD's of the same value
5995 // into multiplications. This transform is not safe in general because
5996 // we are reducing the number of rounding steps.
5997 if (DAG.getTarget().Options.UnsafeFPMath &&
5998 TLI.isOperationLegalOrCustom(ISD::FMUL, VT) &&
5999 !N0CFP && !N1CFP) {
6000 if (N0.getOpcode() == ISD::FMUL) {
6001 ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
6002 ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
6003
Stephen Lin38103d12013-06-14 18:17:35 +00006004 // (fadd (fmul c, x), x) -> (fmul x, c+1)
Owen Anderson43da6c72012-08-30 23:35:16 +00006005 if (CFP00 && !CFP01 && N0.getOperand(1) == N1) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006006 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006007 SDValue(CFP00, 0),
6008 DAG.getConstantFP(1.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006009 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006010 N1, NewCFP);
6011 }
6012
Stephen Lin38103d12013-06-14 18:17:35 +00006013 // (fadd (fmul x, c), x) -> (fmul x, c+1)
Owen Anderson43da6c72012-08-30 23:35:16 +00006014 if (CFP01 && !CFP00 && N0.getOperand(0) == N1) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006015 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006016 SDValue(CFP01, 0),
6017 DAG.getConstantFP(1.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006018 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006019 N1, NewCFP);
6020 }
6021
Stephen Lin38103d12013-06-14 18:17:35 +00006022 // (fadd (fmul c, x), (fadd x, x)) -> (fmul x, c+2)
Owen Anderson43da6c72012-08-30 23:35:16 +00006023 if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD &&
6024 N1.getOperand(0) == N1.getOperand(1) &&
6025 N0.getOperand(1) == N1.getOperand(0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006026 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006027 SDValue(CFP00, 0),
6028 DAG.getConstantFP(2.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006029 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006030 N0.getOperand(1), NewCFP);
6031 }
6032
Stephen Lin38103d12013-06-14 18:17:35 +00006033 // (fadd (fmul x, c), (fadd x, x)) -> (fmul x, c+2)
Owen Anderson43da6c72012-08-30 23:35:16 +00006034 if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD &&
6035 N1.getOperand(0) == N1.getOperand(1) &&
6036 N0.getOperand(0) == N1.getOperand(0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006037 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006038 SDValue(CFP01, 0),
6039 DAG.getConstantFP(2.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006040 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006041 N0.getOperand(0), NewCFP);
6042 }
6043 }
6044
6045 if (N1.getOpcode() == ISD::FMUL) {
6046 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
6047 ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1));
6048
Stephen Lin38103d12013-06-14 18:17:35 +00006049 // (fadd x, (fmul c, x)) -> (fmul x, c+1)
Owen Anderson43da6c72012-08-30 23:35:16 +00006050 if (CFP10 && !CFP11 && N1.getOperand(1) == N0) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006051 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006052 SDValue(CFP10, 0),
6053 DAG.getConstantFP(1.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006054 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006055 N0, NewCFP);
6056 }
6057
Stephen Lin38103d12013-06-14 18:17:35 +00006058 // (fadd x, (fmul x, c)) -> (fmul x, c+1)
Owen Anderson43da6c72012-08-30 23:35:16 +00006059 if (CFP11 && !CFP10 && N1.getOperand(0) == N0) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006060 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006061 SDValue(CFP11, 0),
6062 DAG.getConstantFP(1.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006063 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006064 N0, NewCFP);
6065 }
6066
Owen Anderson43da6c72012-08-30 23:35:16 +00006067
Stephen Lin38103d12013-06-14 18:17:35 +00006068 // (fadd (fadd x, x), (fmul c, x)) -> (fmul x, c+2)
6069 if (CFP10 && !CFP11 && N0.getOpcode() == ISD::FADD &&
6070 N0.getOperand(0) == N0.getOperand(1) &&
6071 N1.getOperand(1) == N0.getOperand(0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006072 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006073 SDValue(CFP10, 0),
6074 DAG.getConstantFP(2.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006075 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Stephen Lin38103d12013-06-14 18:17:35 +00006076 N1.getOperand(1), NewCFP);
Owen Anderson43da6c72012-08-30 23:35:16 +00006077 }
6078
Stephen Lin38103d12013-06-14 18:17:35 +00006079 // (fadd (fadd x, x), (fmul x, c)) -> (fmul x, c+2)
6080 if (CFP11 && !CFP10 && N0.getOpcode() == ISD::FADD &&
6081 N0.getOperand(0) == N0.getOperand(1) &&
6082 N1.getOperand(0) == N0.getOperand(0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006083 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006084 SDValue(CFP11, 0),
6085 DAG.getConstantFP(2.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006086 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Stephen Lin38103d12013-06-14 18:17:35 +00006087 N1.getOperand(0), NewCFP);
Owen Anderson43da6c72012-08-30 23:35:16 +00006088 }
6089 }
6090
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006091 if (N0.getOpcode() == ISD::FADD && AllowNewFpConst) {
Shuxin Yang98b93e52013-02-02 00:22:03 +00006092 ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
Stephen Lina553bed2013-06-14 21:33:58 +00006093 // (fadd (fadd x, x), x) -> (fmul x, 3.0)
Shuxin Yang98b93e52013-02-02 00:22:03 +00006094 if (!CFP && N0.getOperand(0) == N0.getOperand(1) &&
Stephen Linb4940152013-07-09 00:44:49 +00006095 (N0.getOperand(0) == N1))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006096 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Shuxin Yang98b93e52013-02-02 00:22:03 +00006097 N1, DAG.getConstantFP(3.0, VT));
Shuxin Yang98b93e52013-02-02 00:22:03 +00006098 }
6099
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006100 if (N1.getOpcode() == ISD::FADD && AllowNewFpConst) {
Shuxin Yang98b93e52013-02-02 00:22:03 +00006101 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
Stephen Lina553bed2013-06-14 21:33:58 +00006102 // (fadd x, (fadd x, x)) -> (fmul x, 3.0)
Shuxin Yang98b93e52013-02-02 00:22:03 +00006103 if (!CFP10 && N1.getOperand(0) == N1.getOperand(1) &&
Stephen Linb4940152013-07-09 00:44:49 +00006104 N1.getOperand(0) == N0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006105 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Shuxin Yang98b93e52013-02-02 00:22:03 +00006106 N0, DAG.getConstantFP(3.0, VT));
Shuxin Yang98b93e52013-02-02 00:22:03 +00006107 }
6108
Stephen Lina553bed2013-06-14 21:33:58 +00006109 // (fadd (fadd x, x), (fadd x, x)) -> (fmul x, 4.0)
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006110 if (AllowNewFpConst &&
6111 N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD &&
Owen Anderson43da6c72012-08-30 23:35:16 +00006112 N0.getOperand(0) == N0.getOperand(1) &&
6113 N1.getOperand(0) == N1.getOperand(1) &&
Stephen Linb4940152013-07-09 00:44:49 +00006114 N0.getOperand(0) == N1.getOperand(0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006115 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006116 N0.getOperand(0),
6117 DAG.getConstantFP(4.0, VT));
Owen Anderson43da6c72012-08-30 23:35:16 +00006118 }
6119
Lang Hamesd693caf2012-06-19 22:51:23 +00006120 // FADD -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00006121 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00006122 DAG.getTarget().Options.UnsafeFPMath) &&
Stephen Line54885a2013-07-09 18:16:56 +00006123 DAG.getTarget().getTargetLowering()->isFMAFasterThanFMulAndFAdd(VT) &&
6124 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT))) {
Lang Hamesd693caf2012-06-19 22:51:23 +00006125
6126 // fold (fadd (fmul x, y), z) -> (fma x, y, z)
Stephen Linb4940152013-07-09 00:44:49 +00006127 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse())
Andrew Trickac6d9be2013-05-25 02:42:55 +00006128 return DAG.getNode(ISD::FMA, SDLoc(N), VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006129 N0.getOperand(0), N0.getOperand(1), N1);
Owen Anderson43da6c72012-08-30 23:35:16 +00006130
Michael Liaob79bff52012-09-01 04:09:16 +00006131 // fold (fadd x, (fmul y, z)) -> (fma y, z, x)
Lang Hamesd693caf2012-06-19 22:51:23 +00006132 // Note: Commutes FADD operands.
Stephen Linb4940152013-07-09 00:44:49 +00006133 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse())
Andrew Trickac6d9be2013-05-25 02:42:55 +00006134 return DAG.getNode(ISD::FMA, SDLoc(N), VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006135 N1.getOperand(0), N1.getOperand(1), N0);
Lang Hamesd693caf2012-06-19 22:51:23 +00006136 }
6137
Dan Gohman475871a2008-07-27 21:46:04 +00006138 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006139}
6140
Dan Gohman475871a2008-07-27 21:46:04 +00006141SDValue DAGCombiner::visitFSUB(SDNode *N) {
6142 SDValue N0 = N->getOperand(0);
6143 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00006144 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6145 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006146 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006147 SDLoc dl(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00006148
Dan Gohman7f321562007-06-25 16:23:39 +00006149 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006150 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006151 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006152 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006153 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006154
Nate Begemana0e221d2005-10-18 00:28:13 +00006155 // fold (fsub c1, c2) -> c1-c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006156 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006157 return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00006158 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006159 if (DAG.getTarget().Options.UnsafeFPMath &&
6160 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00006161 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00006162 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006163 if (DAG.getTarget().Options.UnsafeFPMath &&
6164 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006165 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006166 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00006167 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006168 return DAG.getNode(ISD::FNEG, dl, VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00006169 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00006170 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00006171 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006172 return DAG.getNode(ISD::FADD, dl, VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00006173 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00006174
Bill Wendling5a894342012-03-15 05:12:00 +00006175 // If 'unsafe math' is enabled, fold
Owen Anderson713e9532012-05-07 20:51:25 +00006176 // (fsub x, x) -> 0.0 &
Bill Wendling5a894342012-03-15 05:12:00 +00006177 // (fsub x, (fadd x, y)) -> (fneg y) &
6178 // (fsub x, (fadd y, x)) -> (fneg y)
6179 if (DAG.getTarget().Options.UnsafeFPMath) {
Owen Anderson713e9532012-05-07 20:51:25 +00006180 if (N0 == N1)
6181 return DAG.getConstantFP(0.0f, VT);
6182
Bill Wendling5a894342012-03-15 05:12:00 +00006183 if (N1.getOpcode() == ISD::FADD) {
6184 SDValue N10 = N1->getOperand(0);
6185 SDValue N11 = N1->getOperand(1);
6186
6187 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
6188 &DAG.getTarget().Options))
6189 return GetNegatedExpression(N11, DAG, LegalOperations);
Stephen Lin75d13062013-07-10 20:47:39 +00006190
Stephen Linb4940152013-07-09 00:44:49 +00006191 if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
6192 &DAG.getTarget().Options))
Bill Wendling5a894342012-03-15 05:12:00 +00006193 return GetNegatedExpression(N10, DAG, LegalOperations);
6194 }
6195 }
6196
Lang Hamesd693caf2012-06-19 22:51:23 +00006197 // FSUB -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00006198 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00006199 DAG.getTarget().Options.UnsafeFPMath) &&
Stephen Line54885a2013-07-09 18:16:56 +00006200 DAG.getTarget().getTargetLowering()->isFMAFasterThanFMulAndFAdd(VT) &&
6201 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT))) {
Lang Hamesd693caf2012-06-19 22:51:23 +00006202
6203 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z))
Stephen Linb4940152013-07-09 00:44:49 +00006204 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse())
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006205 return DAG.getNode(ISD::FMA, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006206 N0.getOperand(0), N0.getOperand(1),
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006207 DAG.getNode(ISD::FNEG, dl, VT, N1));
Lang Hamesd693caf2012-06-19 22:51:23 +00006208
6209 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x)
6210 // Note: Commutes FSUB operands.
Stephen Lin75d13062013-07-10 20:47:39 +00006211 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse())
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006212 return DAG.getNode(ISD::FMA, dl, VT,
6213 DAG.getNode(ISD::FNEG, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006214 N1.getOperand(0)),
6215 N1.getOperand(1), N0);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006216
Stephen Linb4940152013-07-09 00:44:49 +00006217 // fold (fsub (fneg (fmul, x, y)), z) -> (fma (fneg x), y, (fneg z))
Stephen Lin155615d2013-07-08 00:37:03 +00006218 if (N0.getOpcode() == ISD::FNEG &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006219 N0.getOperand(0).getOpcode() == ISD::FMUL &&
6220 N0->hasOneUse() && N0.getOperand(0).hasOneUse()) {
6221 SDValue N00 = N0.getOperand(0).getOperand(0);
6222 SDValue N01 = N0.getOperand(0).getOperand(1);
6223 return DAG.getNode(ISD::FMA, dl, VT,
6224 DAG.getNode(ISD::FNEG, dl, VT, N00), N01,
6225 DAG.getNode(ISD::FNEG, dl, VT, N1));
6226 }
Lang Hamesd693caf2012-06-19 22:51:23 +00006227 }
6228
Dan Gohman475871a2008-07-27 21:46:04 +00006229 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006230}
6231
Dan Gohman475871a2008-07-27 21:46:04 +00006232SDValue DAGCombiner::visitFMUL(SDNode *N) {
6233 SDValue N0 = N->getOperand(0);
6234 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00006235 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6236 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006237 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006238 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006239
Dan Gohman7f321562007-06-25 16:23:39 +00006240 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006241 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006242 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006243 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006244 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006245
Nate Begeman11af4ea2005-10-17 20:40:11 +00006246 // fold (fmul c1, c2) -> c1*c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006247 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006248 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00006249 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00006250 if (N0CFP && !N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006251 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N1, N0);
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006252 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006253 if (DAG.getTarget().Options.UnsafeFPMath &&
6254 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00006255 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00006256 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006257 if (DAG.getTarget().Options.UnsafeFPMath &&
6258 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00006259 return N1;
Owen Anderson363e4b92012-05-02 21:32:35 +00006260 // fold (fmul A, 1.0) -> A
6261 if (N1CFP && N1CFP->isExactlyValue(1.0))
6262 return N0;
Nate Begeman11af4ea2005-10-17 20:40:11 +00006263 // fold (fmul X, 2.0) -> (fadd X, X)
6264 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006265 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00006266 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00006267 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00006268 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006269 return DAG.getNode(ISD::FNEG, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006270
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006271 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006272 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006273 &DAG.getTarget().Options)) {
Stephen Lin155615d2013-07-08 00:37:03 +00006274 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006275 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006276 // Both can be negated for free, check to see if at least one is cheaper
6277 // negated.
6278 if (LHSNeg == 2 || RHSNeg == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006279 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006280 GetNegatedExpression(N0, DAG, LegalOperations),
6281 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006282 }
6283 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006284
Chris Lattnerddae4bd2007-01-08 23:04:05 +00006285 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006286 if (DAG.getTarget().Options.UnsafeFPMath &&
6287 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006288 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006289 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0.getOperand(0),
6290 DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Dale Johannesende064702009-02-06 21:50:26 +00006291 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006292
Dan Gohman475871a2008-07-27 21:46:04 +00006293 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006294}
6295
Owen Anderson062c0a52012-05-02 22:17:40 +00006296SDValue DAGCombiner::visitFMA(SDNode *N) {
6297 SDValue N0 = N->getOperand(0);
6298 SDValue N1 = N->getOperand(1);
6299 SDValue N2 = N->getOperand(2);
6300 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6301 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6302 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006303 SDLoc dl(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00006304
Owen Anderson607ebde2012-11-01 02:00:53 +00006305 if (DAG.getTarget().Options.UnsafeFPMath) {
6306 if (N0CFP && N0CFP->isZero())
6307 return N2;
6308 if (N1CFP && N1CFP->isZero())
6309 return N2;
6310 }
Owen Anderson062c0a52012-05-02 22:17:40 +00006311 if (N0CFP && N0CFP->isExactlyValue(1.0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006312 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N1, N2);
Owen Anderson062c0a52012-05-02 22:17:40 +00006313 if (N1CFP && N1CFP->isExactlyValue(1.0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006314 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N2);
Owen Anderson062c0a52012-05-02 22:17:40 +00006315
Owen Anderson85ef6f42012-05-30 18:50:39 +00006316 // Canonicalize (fma c, x, y) -> (fma x, c, y)
Owen Andersonf917d202012-05-30 18:54:50 +00006317 if (N0CFP && !N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006318 return DAG.getNode(ISD::FMA, SDLoc(N), VT, N1, N0, N2);
Owen Anderson85ef6f42012-05-30 18:50:39 +00006319
Owen Anderson58d57292012-09-01 06:04:27 +00006320 // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2)
6321 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6322 N2.getOpcode() == ISD::FMUL &&
6323 N0 == N2.getOperand(0) &&
6324 N2.getOperand(1).getOpcode() == ISD::ConstantFP) {
6325 return DAG.getNode(ISD::FMUL, dl, VT, N0,
6326 DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1)));
6327 }
6328
6329
6330 // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y)
6331 if (DAG.getTarget().Options.UnsafeFPMath &&
6332 N0.getOpcode() == ISD::FMUL && N1CFP &&
6333 N0.getOperand(1).getOpcode() == ISD::ConstantFP) {
6334 return DAG.getNode(ISD::FMA, dl, VT,
6335 N0.getOperand(0),
6336 DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)),
6337 N2);
6338 }
6339
6340 // (fma x, 1, y) -> (fadd x, y)
6341 // (fma x, -1, y) -> (fadd (fneg x), y)
6342 if (N1CFP) {
6343 if (N1CFP->isExactlyValue(1.0))
6344 return DAG.getNode(ISD::FADD, dl, VT, N0, N2);
6345
6346 if (N1CFP->isExactlyValue(-1.0) &&
6347 (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) {
6348 SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0);
6349 AddToWorkList(RHSNeg.getNode());
6350 return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg);
6351 }
6352 }
6353
6354 // (fma x, c, x) -> (fmul x, (c+1))
Stephen Linb4940152013-07-09 00:44:49 +00006355 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2)
6356 return DAG.getNode(ISD::FMUL, dl, VT, N0,
Owen Anderson58d57292012-09-01 06:04:27 +00006357 DAG.getNode(ISD::FADD, dl, VT,
6358 N1, DAG.getConstantFP(1.0, VT)));
Owen Anderson58d57292012-09-01 06:04:27 +00006359
6360 // (fma x, c, (fneg x)) -> (fmul x, (c-1))
6361 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
Stephen Linb4940152013-07-09 00:44:49 +00006362 N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0)
6363 return DAG.getNode(ISD::FMUL, dl, VT, N0,
Owen Anderson58d57292012-09-01 06:04:27 +00006364 DAG.getNode(ISD::FADD, dl, VT,
6365 N1, DAG.getConstantFP(-1.0, VT)));
Owen Anderson58d57292012-09-01 06:04:27 +00006366
6367
Owen Anderson062c0a52012-05-02 22:17:40 +00006368 return SDValue();
6369}
6370
Dan Gohman475871a2008-07-27 21:46:04 +00006371SDValue DAGCombiner::visitFDIV(SDNode *N) {
6372 SDValue N0 = N->getOperand(0);
6373 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006374 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6375 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006376 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006377 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006378
Dan Gohman7f321562007-06-25 16:23:39 +00006379 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006380 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006381 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006382 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006383 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006384
Nate Begemana148d982006-01-18 22:35:16 +00006385 // fold (fdiv c1, c2) -> c1/c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006386 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006387 return DAG.getNode(ISD::FDIV, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006388
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00006389 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
Ulrich Weigande669c932012-10-29 18:35:49 +00006390 if (N1CFP && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00006391 // Compute the reciprocal 1.0 / c2.
6392 APFloat N1APF = N1CFP->getValueAPF();
6393 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
6394 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00006395 // Only do the transform if the reciprocal is a legal fp immediate that
6396 // isn't too nasty (eg NaN, denormal, ...).
6397 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00006398 (!LegalOperations ||
6399 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
6400 // backend)... we should handle this gracefully after Legalize.
6401 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
6402 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
6403 TLI.isFPImmLegal(Recip, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006404 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0,
Duncan Sands961d6662012-04-07 20:04:00 +00006405 DAG.getConstantFP(Recip, VT));
6406 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006407
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006408 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006409 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006410 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006411 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006412 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006413 // Both can be negated for free, check to see if at least one is cheaper
6414 // negated.
6415 if (LHSNeg == 2 || RHSNeg == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006416 return DAG.getNode(ISD::FDIV, SDLoc(N), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006417 GetNegatedExpression(N0, DAG, LegalOperations),
6418 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006419 }
6420 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006421
Dan Gohman475871a2008-07-27 21:46:04 +00006422 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006423}
6424
Dan Gohman475871a2008-07-27 21:46:04 +00006425SDValue DAGCombiner::visitFREM(SDNode *N) {
6426 SDValue N0 = N->getOperand(0);
6427 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006428 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6429 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006430 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00006431
Nate Begemana148d982006-01-18 22:35:16 +00006432 // fold (frem c1, c2) -> fmod(c1,c2)
Ulrich Weigande669c932012-10-29 18:35:49 +00006433 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006434 return DAG.getNode(ISD::FREM, SDLoc(N), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00006435
Dan Gohman475871a2008-07-27 21:46:04 +00006436 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006437}
6438
Dan Gohman475871a2008-07-27 21:46:04 +00006439SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
6440 SDValue N0 = N->getOperand(0);
6441 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00006442 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6443 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006444 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00006445
Ulrich Weigande669c932012-10-29 18:35:49 +00006446 if (N0CFP && N1CFP) // Constant fold
Andrew Trickac6d9be2013-05-25 02:42:55 +00006447 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006448
Chris Lattner12d83032006-03-05 05:30:57 +00006449 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00006450 const APFloat& V = N1CFP->getValueAPF();
Sylvestre Ledru94c22712012-09-27 10:14:43 +00006451 // copysign(x, c1) -> fabs(x) iff ispos(c1)
6452 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00006453 if (!V.isNegative()) {
6454 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006455 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00006456 } else {
6457 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006458 return DAG.getNode(ISD::FNEG, SDLoc(N), VT,
6459 DAG.getNode(ISD::FABS, SDLoc(N0), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00006460 }
Chris Lattner12d83032006-03-05 05:30:57 +00006461 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006462
Chris Lattner12d83032006-03-05 05:30:57 +00006463 // copysign(fabs(x), y) -> copysign(x, y)
6464 // copysign(fneg(x), y) -> copysign(x, y)
6465 // copysign(copysign(x,z), y) -> copysign(x, y)
6466 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
6467 N0.getOpcode() == ISD::FCOPYSIGN)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006468 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006469 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00006470
6471 // copysign(x, abs(y)) -> abs(x)
6472 if (N1.getOpcode() == ISD::FABS)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006473 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006474
Chris Lattner12d83032006-03-05 05:30:57 +00006475 // copysign(x, copysign(y,z)) -> copysign(x, z)
6476 if (N1.getOpcode() == ISD::FCOPYSIGN)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006477 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006478 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006479
Chris Lattner12d83032006-03-05 05:30:57 +00006480 // copysign(x, fp_extend(y)) -> copysign(x, y)
6481 // copysign(x, fp_round(y)) -> copysign(x, y)
6482 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006483 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006484 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006485
Dan Gohman475871a2008-07-27 21:46:04 +00006486 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00006487}
6488
Dan Gohman475871a2008-07-27 21:46:04 +00006489SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
6490 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006491 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006492 EVT VT = N->getValueType(0);
6493 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00006494
Nate Begeman1d4d4142005-09-01 00:19:25 +00006495 // fold (sint_to_fp c1) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006496 if (N0C &&
Stuart Hastings7e334182011-03-02 19:36:30 +00006497 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006498 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006499 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006500 return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006501
Chris Lattnercda88752008-06-26 00:16:49 +00006502 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
6503 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006504 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
6505 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006506 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006507 if (DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006508 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006509 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006510
Nadav Rotemed1a3352012-07-23 07:59:50 +00006511 // The next optimizations are desireable only if SELECT_CC can be lowered.
6512 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6513 // having to say they don't support SELECT_CC on every type the DAG knows
6514 // about, since there is no way to mark an opcode illegal at all value types
6515 // (See also visitSELECT)
6516 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6517 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6518 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 &&
6519 !VT.isVector() &&
6520 (!LegalOperations ||
6521 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6522 SDValue Ops[] =
6523 { N0.getOperand(0), N0.getOperand(1),
6524 DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT),
6525 N0.getOperand(2) };
Andrew Trickac6d9be2013-05-25 02:42:55 +00006526 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
Nadav Rotemed1a3352012-07-23 07:59:50 +00006527 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006528
Nadav Rotemed1a3352012-07-23 07:59:50 +00006529 // fold (sint_to_fp (zext (setcc x, y, cc))) ->
6530 // (select_cc x, y, 1.0, 0.0,, cc)
6531 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
6532 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() &&
6533 (!LegalOperations ||
6534 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6535 SDValue Ops[] =
6536 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1),
6537 DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT),
6538 N0.getOperand(0).getOperand(2) };
Andrew Trickac6d9be2013-05-25 02:42:55 +00006539 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
Nadav Rotemed1a3352012-07-23 07:59:50 +00006540 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006541 }
6542
Dan Gohman475871a2008-07-27 21:46:04 +00006543 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006544}
6545
Dan Gohman475871a2008-07-27 21:46:04 +00006546SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
6547 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006548 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006549 EVT VT = N->getValueType(0);
6550 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00006551
Nate Begeman1d4d4142005-09-01 00:19:25 +00006552 // fold (uint_to_fp c1) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006553 if (N0C &&
Stuart Hastings7e334182011-03-02 19:36:30 +00006554 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006555 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006556 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006557 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006558
Chris Lattnercda88752008-06-26 00:16:49 +00006559 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6560 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006561 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6562 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006563 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006564 if (DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006565 return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006566 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006567
Nadav Rotemed1a3352012-07-23 07:59:50 +00006568 // The next optimizations are desireable only if SELECT_CC can be lowered.
6569 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6570 // having to say they don't support SELECT_CC on every type the DAG knows
6571 // about, since there is no way to mark an opcode illegal at all value types
6572 // (See also visitSELECT)
6573 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6574 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
Owen Andersond9bf71f2012-07-09 20:31:12 +00006575
Nadav Rotemed1a3352012-07-23 07:59:50 +00006576 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() &&
6577 (!LegalOperations ||
6578 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6579 SDValue Ops[] =
6580 { N0.getOperand(0), N0.getOperand(1),
6581 DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT),
6582 N0.getOperand(2) };
Andrew Trickac6d9be2013-05-25 02:42:55 +00006583 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
Nadav Rotemed1a3352012-07-23 07:59:50 +00006584 }
6585 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006586
Dan Gohman475871a2008-07-27 21:46:04 +00006587 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006588}
6589
Dan Gohman475871a2008-07-27 21:46:04 +00006590SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
6591 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006592 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006593 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006594
Nate Begeman1d4d4142005-09-01 00:19:25 +00006595 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00006596 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006597 return DAG.getNode(ISD::FP_TO_SINT, SDLoc(N), VT, N0);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006598
Dan Gohman475871a2008-07-27 21:46:04 +00006599 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006600}
6601
Dan Gohman475871a2008-07-27 21:46:04 +00006602SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
6603 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006604 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006605 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006606
Nate Begeman1d4d4142005-09-01 00:19:25 +00006607 // fold (fp_to_uint c1fp) -> c1
Ulrich Weigande669c932012-10-29 18:35:49 +00006608 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006609 return DAG.getNode(ISD::FP_TO_UINT, SDLoc(N), VT, N0);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006610
Dan Gohman475871a2008-07-27 21:46:04 +00006611 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006612}
6613
Dan Gohman475871a2008-07-27 21:46:04 +00006614SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
6615 SDValue N0 = N->getOperand(0);
6616 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006617 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006618 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006619
Nate Begeman1d4d4142005-09-01 00:19:25 +00006620 // fold (fp_round c1fp) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006621 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006622 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006623
Chris Lattner79dbea52006-03-13 06:26:26 +00006624 // fold (fp_round (fp_extend x)) -> x
6625 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
6626 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006627
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006628 // fold (fp_round (fp_round x)) -> (fp_round x)
6629 if (N0.getOpcode() == ISD::FP_ROUND) {
6630 // This is a value preserving truncation if both round's are.
6631 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006632 N0.getNode()->getConstantOperandVal(1) == 1;
Andrew Trickac6d9be2013-05-25 02:42:55 +00006633 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006634 DAG.getIntPtrConstant(IsTrunc));
6635 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006636
Chris Lattner79dbea52006-03-13 06:26:26 +00006637 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00006638 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006639 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, SDLoc(N0), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006640 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00006641 AddToWorkList(Tmp.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006642 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006643 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00006644 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006645
Dan Gohman475871a2008-07-27 21:46:04 +00006646 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006647}
6648
Dan Gohman475871a2008-07-27 21:46:04 +00006649SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6650 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006651 EVT VT = N->getValueType(0);
6652 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00006653 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006654
Nate Begeman1d4d4142005-09-01 00:19:25 +00006655 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00006656 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00006657 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006658 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006659 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006660
Dan Gohman475871a2008-07-27 21:46:04 +00006661 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006662}
6663
Dan Gohman475871a2008-07-27 21:46:04 +00006664SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6665 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006666 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006667 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006668
Chris Lattner5938bef2007-12-29 06:55:23 +00006669 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00006670 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00006671 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00006672 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006673
Nate Begeman1d4d4142005-09-01 00:19:25 +00006674 // fold (fp_extend c1fp) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006675 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006676 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006677
6678 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6679 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006680 if (N0.getOpcode() == ISD::FP_ROUND
6681 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006682 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006683 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006684 if (VT.bitsLT(In.getValueType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006685 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006686 In, N0.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006687 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006688 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006689
Chris Lattner0bd48932008-01-17 07:00:52 +00006690 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006691 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006692 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006693 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006694 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006695 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006696 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006697 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006698 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006699 LN0->isVolatile(), LN0->isNonTemporal(),
6700 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006701 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006702 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00006703 DAG.getNode(ISD::FP_ROUND, SDLoc(N0),
Bill Wendling0225a1d2009-01-30 23:15:49 +00006704 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006705 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006706 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006707 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006708
Dan Gohman475871a2008-07-27 21:46:04 +00006709 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006710}
6711
Dan Gohman475871a2008-07-27 21:46:04 +00006712SDValue DAGCombiner::visitFNEG(SDNode *N) {
6713 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006714 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006715
Craig Topperdd201ff2012-09-11 01:45:21 +00006716 if (VT.isVector()) {
6717 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6718 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper956342b2012-09-09 22:58:45 +00006719 }
6720
Owen Andersonafd3d562012-03-06 00:29:31 +00006721 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6722 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006723 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006724
Chris Lattner3bd39d42008-01-27 17:42:27 +00006725 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6726 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006727 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006728 !VT.isVector() &&
6729 N0.getNode()->hasOneUse() &&
6730 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006731 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006732 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006733 if (IntVT.isInteger() && !IntVT.isVector()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006734 Int = DAG.getNode(ISD::XOR, SDLoc(N0), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006735 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006736 AddToWorkList(Int.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006737 return DAG.getNode(ISD::BITCAST, SDLoc(N),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006738 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006739 }
6740 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006741
Owen Anderson58d57292012-09-01 06:04:27 +00006742 // (fneg (fmul c, x)) -> (fmul -c, x)
6743 if (N0.getOpcode() == ISD::FMUL) {
6744 ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
Stephen Linb4940152013-07-09 00:44:49 +00006745 if (CFP1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006746 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson58d57292012-09-01 06:04:27 +00006747 N0.getOperand(0),
Andrew Trickac6d9be2013-05-25 02:42:55 +00006748 DAG.getNode(ISD::FNEG, SDLoc(N), VT,
Owen Anderson58d57292012-09-01 06:04:27 +00006749 N0.getOperand(1)));
Owen Anderson58d57292012-09-01 06:04:27 +00006750 }
6751
Dan Gohman475871a2008-07-27 21:46:04 +00006752 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006753}
6754
Owen Anderson7c626d32012-08-13 23:32:49 +00006755SDValue DAGCombiner::visitFCEIL(SDNode *N) {
6756 SDValue N0 = N->getOperand(0);
6757 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6758 EVT VT = N->getValueType(0);
6759
6760 // fold (fceil c1) -> fceil(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006761 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006762 return DAG.getNode(ISD::FCEIL, SDLoc(N), VT, N0);
Owen Anderson7c626d32012-08-13 23:32:49 +00006763
6764 return SDValue();
6765}
6766
6767SDValue DAGCombiner::visitFTRUNC(SDNode *N) {
6768 SDValue N0 = N->getOperand(0);
6769 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6770 EVT VT = N->getValueType(0);
6771
6772 // fold (ftrunc c1) -> ftrunc(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006773 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006774 return DAG.getNode(ISD::FTRUNC, SDLoc(N), VT, N0);
Owen Anderson7c626d32012-08-13 23:32:49 +00006775
6776 return SDValue();
6777}
6778
6779SDValue DAGCombiner::visitFFLOOR(SDNode *N) {
6780 SDValue N0 = N->getOperand(0);
6781 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6782 EVT VT = N->getValueType(0);
6783
6784 // fold (ffloor c1) -> ffloor(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006785 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006786 return DAG.getNode(ISD::FFLOOR, SDLoc(N), VT, N0);
Owen Anderson7c626d32012-08-13 23:32:49 +00006787
6788 return SDValue();
6789}
6790
Dan Gohman475871a2008-07-27 21:46:04 +00006791SDValue DAGCombiner::visitFABS(SDNode *N) {
6792 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006793 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006794 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006795
Craig Topperdd201ff2012-09-11 01:45:21 +00006796 if (VT.isVector()) {
6797 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6798 if (FoldedVOp.getNode()) return FoldedVOp;
6799 }
6800
Nate Begeman1d4d4142005-09-01 00:19:25 +00006801 // fold (fabs c1) -> fabs(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006802 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006803 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006804 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006805 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006806 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006807 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006808 // fold (fabs (fcopysign x, y)) -> (fabs x)
6809 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006810 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006811
Chris Lattner3bd39d42008-01-27 17:42:27 +00006812 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6813 // constant pool values.
Stephen Lin155615d2013-07-08 00:37:03 +00006814 if (!TLI.isFAbsFree(VT) &&
Owen Anderson29f60f32012-04-02 22:10:29 +00006815 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006816 N0.getOperand(0).getValueType().isInteger() &&
6817 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006818 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006819 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006820 if (IntVT.isInteger() && !IntVT.isVector()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006821 Int = DAG.getNode(ISD::AND, SDLoc(N0), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006822 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006823 AddToWorkList(Int.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006824 return DAG.getNode(ISD::BITCAST, SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006825 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006826 }
6827 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006828
Dan Gohman475871a2008-07-27 21:46:04 +00006829 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006830}
6831
Dan Gohman475871a2008-07-27 21:46:04 +00006832SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6833 SDValue Chain = N->getOperand(0);
6834 SDValue N1 = N->getOperand(1);
6835 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006836
Dan Gohmane0f06c72009-11-17 00:47:23 +00006837 // If N is a constant we could fold this into a fallthrough or unconditional
6838 // branch. However that doesn't happen very often in normal code, because
6839 // Instcombine/SimplifyCFG should have handled the available opportunities.
6840 // If we did this folding here, it would be necessary to update the
6841 // MachineBasicBlock CFG, which is awkward.
6842
Nate Begeman750ac1b2006-02-01 07:19:44 +00006843 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6844 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006845 if (N1.getOpcode() == ISD::SETCC &&
Tom Stellard3ef53832013-03-08 15:36:57 +00006846 TLI.isOperationLegalOrCustom(ISD::BR_CC,
6847 N1.getOperand(0).getValueType())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006848 return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006849 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006850 N1.getOperand(0), N1.getOperand(1), N2);
6851 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006852
Evan Cheng2a135ae2010-10-04 22:41:01 +00006853 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6854 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6855 (N1.getOperand(0).hasOneUse() &&
6856 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6857 SDNode *Trunc = 0;
6858 if (N1.getOpcode() == ISD::TRUNCATE) {
6859 // Look pass the truncate.
6860 Trunc = N1.getNode();
6861 N1 = N1.getOperand(0);
6862 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006863
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006864 // Match this pattern so that we can generate simpler code:
6865 //
6866 // %a = ...
6867 // %b = and i32 %a, 2
6868 // %c = srl i32 %b, 1
6869 // brcond i32 %c ...
6870 //
6871 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006872 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006873 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006874 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006875 // %c = setcc eq %b, 0
6876 // brcond %c ...
6877 //
6878 // This applies only when the AND constant value has one bit set and the
6879 // SRL constant is equal to the log2 of the AND constant. The back-end is
6880 // smart enough to convert the result into a TEST/JMP sequence.
6881 SDValue Op0 = N1.getOperand(0);
6882 SDValue Op1 = N1.getOperand(1);
6883
6884 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006885 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006886 SDValue AndOp1 = Op0.getOperand(1);
6887
6888 if (AndOp1.getOpcode() == ISD::Constant) {
6889 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6890
6891 if (AndConst.isPowerOf2() &&
6892 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6893 SDValue SetCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00006894 DAG.getSetCC(SDLoc(N),
Matt Arsenault225ed702013-05-18 00:21:46 +00006895 getSetCCResultType(Op0.getValueType()),
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006896 Op0, DAG.getConstant(0, Op0.getValueType()),
6897 ISD::SETNE);
6898
Andrew Trickac6d9be2013-05-25 02:42:55 +00006899 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, SDLoc(N),
Evan Chengd40d03e2010-01-06 19:38:29 +00006900 MVT::Other, Chain, SetCC, N2);
6901 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6902 // will convert it back to (X & C1) >> C2.
6903 CombineTo(N, NewBRCond, false);
6904 // Truncate is dead.
6905 if (Trunc) {
6906 removeFromWorkList(Trunc);
6907 DAG.DeleteNode(Trunc);
6908 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006909 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006910 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006911 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006912 removeFromWorkList(N1.getNode());
6913 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006914 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006915 }
6916 }
6917 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006918
6919 if (Trunc)
6920 // Restore N1 if the above transformation doesn't match.
6921 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006922 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006923
Evan Cheng2c755ba2010-02-27 07:36:59 +00006924 // Transform br(xor(x, y)) -> br(x != y)
6925 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6926 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6927 SDNode *TheXor = N1.getNode();
6928 SDValue Op0 = TheXor->getOperand(0);
6929 SDValue Op1 = TheXor->getOperand(1);
6930 if (Op0.getOpcode() == Op1.getOpcode()) {
6931 // Avoid missing important xor optimizations.
6932 SDValue Tmp = visitXOR(TheXor);
Evan Cheng78ec0252013-01-09 20:56:40 +00006933 if (Tmp.getNode()) {
6934 if (Tmp.getNode() != TheXor) {
6935 DEBUG(dbgs() << "\nReplacing.8 ";
6936 TheXor->dump(&DAG);
6937 dbgs() << "\nWith: ";
6938 Tmp.getNode()->dump(&DAG);
6939 dbgs() << '\n');
6940 WorkListRemover DeadNodes(*this);
6941 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
6942 removeFromWorkList(TheXor);
6943 DAG.DeleteNode(TheXor);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006944 return DAG.getNode(ISD::BRCOND, SDLoc(N),
Evan Cheng78ec0252013-01-09 20:56:40 +00006945 MVT::Other, Chain, Tmp, N2);
6946 }
6947
Benjamin Kramer0b68b752013-03-30 21:28:18 +00006948 // visitXOR has changed XOR's operands or replaced the XOR completely,
6949 // bail out.
6950 return SDValue(N, 0);
Evan Cheng2c755ba2010-02-27 07:36:59 +00006951 }
6952 }
6953
6954 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6955 bool Equal = false;
6956 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6957 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6958 Op0.getOpcode() == ISD::XOR) {
6959 TheXor = Op0.getNode();
6960 Equal = true;
6961 }
6962
Evan Cheng2a135ae2010-10-04 22:41:01 +00006963 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006964 if (LegalTypes)
Matt Arsenault225ed702013-05-18 00:21:46 +00006965 SetCCVT = getSetCCResultType(SetCCVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006966 SDValue SetCC = DAG.getSetCC(SDLoc(TheXor),
Evan Cheng2c755ba2010-02-27 07:36:59 +00006967 SetCCVT,
6968 Op0, Op1,
6969 Equal ? ISD::SETEQ : ISD::SETNE);
6970 // Replace the uses of XOR with SETCC
6971 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006972 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006973 removeFromWorkList(N1.getNode());
6974 DAG.DeleteNode(N1.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006975 return DAG.getNode(ISD::BRCOND, SDLoc(N),
Evan Cheng2c755ba2010-02-27 07:36:59 +00006976 MVT::Other, Chain, SetCC, N2);
6977 }
6978 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006979
Dan Gohman475871a2008-07-27 21:46:04 +00006980 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006981}
6982
Chris Lattner3ea0b472005-10-05 06:47:48 +00006983// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6984//
Dan Gohman475871a2008-07-27 21:46:04 +00006985SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006986 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006987 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006988
Dan Gohmane0f06c72009-11-17 00:47:23 +00006989 // If N is a constant we could fold this into a fallthrough or unconditional
6990 // branch. However that doesn't happen very often in normal code, because
6991 // Instcombine/SimplifyCFG should have handled the available opportunities.
6992 // If we did this folding here, it would be necessary to update the
6993 // MachineBasicBlock CFG, which is awkward.
6994
Duncan Sands8eab8a22008-06-09 11:32:28 +00006995 // Use SimplifySetCC to simplify SETCC's.
Matt Arsenault225ed702013-05-18 00:21:46 +00006996 SDValue Simp = SimplifySetCC(getSetCCResultType(CondLHS.getValueType()),
Andrew Trickac6d9be2013-05-25 02:42:55 +00006997 CondLHS, CondRHS, CC->get(), SDLoc(N),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006998 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006999 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00007000
Nate Begemane17daeb2005-10-05 21:43:42 +00007001 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00007002 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Andrew Trickac6d9be2013-05-25 02:42:55 +00007003 return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00007004 N->getOperand(0), Simp.getOperand(2),
7005 Simp.getOperand(0), Simp.getOperand(1),
7006 N->getOperand(4));
7007
Dan Gohman475871a2008-07-27 21:46:04 +00007008 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00007009}
7010
Evan Chengc4b527a2012-01-13 01:37:24 +00007011/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
7012/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00007013/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00007014static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
7015 SelectionDAG &DAG,
7016 const TargetLowering &TLI) {
7017 EVT VT;
7018 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
7019 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
7020 return false;
7021 VT = Use->getValueType(0);
7022 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
7023 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
7024 return false;
7025 VT = ST->getValue().getValueType();
7026 } else
7027 return false;
7028
Chandler Carruth56d433d2013-01-07 15:14:13 +00007029 TargetLowering::AddrMode AM;
Evan Chengc4b527a2012-01-13 01:37:24 +00007030 if (N->getOpcode() == ISD::ADD) {
7031 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
7032 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00007033 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00007034 AM.BaseOffs = Offset->getSExtValue();
7035 else
Evan Cheng03be3622012-03-06 23:33:32 +00007036 // [reg +/- reg]
7037 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00007038 } else if (N->getOpcode() == ISD::SUB) {
7039 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
7040 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00007041 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00007042 AM.BaseOffs = -Offset->getSExtValue();
7043 else
Evan Cheng03be3622012-03-06 23:33:32 +00007044 // [reg +/- reg]
7045 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00007046 } else
7047 return false;
7048
7049 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
7050}
7051
Duncan Sandsec87aa82008-06-15 20:12:31 +00007052/// CombineToPreIndexedLoadStore - Try turning a load / store into a
7053/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00007054/// and it has other uses besides the load / store. After the
7055/// transformation, the new indexed load / store has effectively folded
7056/// the add / subtract in and all of its other uses are redirected to the
7057/// new load / store.
7058bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00007059 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00007060 return false;
7061
7062 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007063 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00007064 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00007065 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007066 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007067 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007068 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00007069 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00007070 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
7071 return false;
7072 Ptr = LD->getBasePtr();
7073 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007074 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007075 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007076 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00007077 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
7078 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
7079 return false;
7080 Ptr = ST->getBasePtr();
7081 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007082 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00007083 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007084 }
Chris Lattner448f2192006-11-11 00:39:41 +00007085
Chris Lattner9f1794e2006-11-11 00:56:29 +00007086 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
7087 // out. There is no reason to make this a preinc/predec.
7088 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00007089 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00007090 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00007091
Chris Lattner9f1794e2006-11-11 00:56:29 +00007092 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00007093 SDValue BasePtr;
7094 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007095 ISD::MemIndexedMode AM = ISD::UNINDEXED;
7096 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
7097 return false;
Hal Finkel089a5f82013-02-08 21:35:47 +00007098
7099 // Backends without true r+i pre-indexed forms may need to pass a
7100 // constant base with a variable offset so that constant coercion
7101 // will work with the patterns in canonical form.
7102 bool Swapped = false;
7103 if (isa<ConstantSDNode>(BasePtr)) {
7104 std::swap(BasePtr, Offset);
7105 Swapped = true;
7106 }
7107
Evan Chenga7d4a042007-05-03 23:52:19 +00007108 // Don't create a indexed load / store with zero offset.
7109 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00007110 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00007111 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007112
Chris Lattner41e53fd2006-11-11 01:00:15 +00007113 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00007114 // 1) The new base ptr is a frame index.
7115 // 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 +00007116 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00007117 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00007118 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00007119 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00007120
Chris Lattner41e53fd2006-11-11 01:00:15 +00007121 // Check #1. Preinc'ing a frame index would require copying the stack pointer
7122 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00007123 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00007124 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007125
Chris Lattner41e53fd2006-11-11 01:00:15 +00007126 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00007127 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00007128 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007129 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007130 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00007131 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007132
Hal Finkel089a5f82013-02-08 21:35:47 +00007133 // If the offset is a constant, there may be other adds of constants that
7134 // can be folded with this one. We should do this to avoid having to keep
7135 // a copy of the original base pointer.
7136 SmallVector<SDNode *, 16> OtherUses;
7137 if (isa<ConstantSDNode>(Offset))
7138 for (SDNode::use_iterator I = BasePtr.getNode()->use_begin(),
7139 E = BasePtr.getNode()->use_end(); I != E; ++I) {
7140 SDNode *Use = *I;
7141 if (Use == Ptr.getNode())
7142 continue;
7143
7144 if (Use->isPredecessorOf(N))
7145 continue;
7146
7147 if (Use->getOpcode() != ISD::ADD && Use->getOpcode() != ISD::SUB) {
7148 OtherUses.clear();
7149 break;
7150 }
7151
7152 SDValue Op0 = Use->getOperand(0), Op1 = Use->getOperand(1);
7153 if (Op1.getNode() == BasePtr.getNode())
7154 std::swap(Op0, Op1);
7155 assert(Op0.getNode() == BasePtr.getNode() &&
7156 "Use of ADD/SUB but not an operand");
7157
7158 if (!isa<ConstantSDNode>(Op1)) {
7159 OtherUses.clear();
7160 break;
7161 }
7162
7163 // FIXME: In some cases, we can be smarter about this.
7164 if (Op1.getValueType() != Offset.getValueType()) {
7165 OtherUses.clear();
7166 break;
7167 }
7168
7169 OtherUses.push_back(Use);
7170 }
7171
7172 if (Swapped)
7173 std::swap(BasePtr, Offset);
7174
Evan Chengc843abe2007-05-24 02:35:39 +00007175 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00007176 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00007177
7178 // Caches for hasPredecessorHelper
7179 SmallPtrSet<const SDNode *, 32> Visited;
7180 SmallVector<const SDNode *, 16> Worklist;
7181
Gabor Greifba36cb52008-08-28 21:40:38 +00007182 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7183 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00007184 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007185 if (Use == N)
7186 continue;
Lang Hames944520f2011-07-07 04:31:51 +00007187 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007188 return false;
7189
Evan Chengc4b527a2012-01-13 01:37:24 +00007190 // If Ptr may be folded in addressing mode of other use, then it's
7191 // not profitable to do this transformation.
7192 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007193 RealUse = true;
7194 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007195
Chris Lattner9f1794e2006-11-11 00:56:29 +00007196 if (!RealUse)
7197 return false;
7198
Dan Gohman475871a2008-07-27 21:46:04 +00007199 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007200 if (isLoad)
Andrew Trickac6d9be2013-05-25 02:42:55 +00007201 Result = DAG.getIndexedLoad(SDValue(N,0), SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00007202 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007203 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00007204 Result = DAG.getIndexedStore(SDValue(N,0), SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00007205 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007206 ++PreIndexedNodes;
7207 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00007208 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007209 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007210 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007211 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007212 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007213 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007214 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007215 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7216 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007217 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007218 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007219 }
7220
Chris Lattner9f1794e2006-11-11 00:56:29 +00007221 // Finally, since the node is now dead, remove it from the graph.
7222 DAG.DeleteNode(N);
7223
Hal Finkel089a5f82013-02-08 21:35:47 +00007224 if (Swapped)
7225 std::swap(BasePtr, Offset);
7226
7227 // Replace other uses of BasePtr that can be updated to use Ptr
7228 for (unsigned i = 0, e = OtherUses.size(); i != e; ++i) {
7229 unsigned OffsetIdx = 1;
7230 if (OtherUses[i]->getOperand(OffsetIdx).getNode() == BasePtr.getNode())
7231 OffsetIdx = 0;
7232 assert(OtherUses[i]->getOperand(!OffsetIdx).getNode() ==
7233 BasePtr.getNode() && "Expected BasePtr operand");
7234
Silviu Baranga730a5702013-04-26 15:52:24 +00007235 // We need to replace ptr0 in the following expression:
7236 // x0 * offset0 + y0 * ptr0 = t0
7237 // knowing that
7238 // x1 * offset1 + y1 * ptr0 = t1 (the indexed load/store)
Stephen Lin155615d2013-07-08 00:37:03 +00007239 //
Silviu Baranga730a5702013-04-26 15:52:24 +00007240 // where x0, x1, y0 and y1 in {-1, 1} are given by the types of the
7241 // indexed load/store and the expresion that needs to be re-written.
7242 //
7243 // Therefore, we have:
7244 // t0 = (x0 * offset0 - x1 * y0 * y1 *offset1) + (y0 * y1) * t1
Hal Finkel089a5f82013-02-08 21:35:47 +00007245
7246 ConstantSDNode *CN =
7247 cast<ConstantSDNode>(OtherUses[i]->getOperand(OffsetIdx));
Silviu Baranga730a5702013-04-26 15:52:24 +00007248 int X0, X1, Y0, Y1;
7249 APInt Offset0 = CN->getAPIntValue();
7250 APInt Offset1 = cast<ConstantSDNode>(Offset)->getAPIntValue();
Hal Finkel089a5f82013-02-08 21:35:47 +00007251
Silviu Baranga730a5702013-04-26 15:52:24 +00007252 X0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 1) ? -1 : 1;
7253 Y0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 0) ? -1 : 1;
7254 X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1;
7255 Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1;
Hal Finkel089a5f82013-02-08 21:35:47 +00007256
Silviu Baranga730a5702013-04-26 15:52:24 +00007257 unsigned Opcode = (Y0 * Y1 < 0) ? ISD::SUB : ISD::ADD;
7258
7259 APInt CNV = Offset0;
7260 if (X0 < 0) CNV = -CNV;
7261 if (X1 * Y0 * Y1 < 0) CNV = CNV + Offset1;
7262 else CNV = CNV - Offset1;
7263
7264 // We can now generate the new expression.
7265 SDValue NewOp1 = DAG.getConstant(CNV, CN->getValueType(0));
7266 SDValue NewOp2 = Result.getValue(isLoad ? 1 : 0);
7267
7268 SDValue NewUse = DAG.getNode(Opcode,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007269 SDLoc(OtherUses[i]),
Hal Finkel089a5f82013-02-08 21:35:47 +00007270 OtherUses[i]->getValueType(0), NewOp1, NewOp2);
7271 DAG.ReplaceAllUsesOfValueWith(SDValue(OtherUses[i], 0), NewUse);
7272 removeFromWorkList(OtherUses[i]);
7273 DAG.DeleteNode(OtherUses[i]);
7274 }
7275
Chris Lattner9f1794e2006-11-11 00:56:29 +00007276 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007277 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greifba36cb52008-08-28 21:40:38 +00007278 removeFromWorkList(Ptr.getNode());
7279 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00007280
7281 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00007282}
7283
Duncan Sandsec87aa82008-06-15 20:12:31 +00007284/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00007285/// add / sub of the base pointer node into a post-indexed load / store.
7286/// The transformation folded the add / subtract into the new indexed
7287/// load / store effectively and all of its uses are redirected to the
7288/// new load / store.
7289bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00007290 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00007291 return false;
7292
7293 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007294 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00007295 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00007296 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007297 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007298 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007299 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00007300 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
7301 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
7302 return false;
7303 Ptr = LD->getBasePtr();
7304 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007305 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007306 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007307 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00007308 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
7309 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
7310 return false;
7311 Ptr = ST->getBasePtr();
7312 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007313 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00007314 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007315 }
Chris Lattner448f2192006-11-11 00:39:41 +00007316
Gabor Greifba36cb52008-08-28 21:40:38 +00007317 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00007318 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007319
Gabor Greifba36cb52008-08-28 21:40:38 +00007320 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7321 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00007322 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007323 if (Op == N ||
7324 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
7325 continue;
7326
Dan Gohman475871a2008-07-27 21:46:04 +00007327 SDValue BasePtr;
7328 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007329 ISD::MemIndexedMode AM = ISD::UNINDEXED;
7330 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00007331 // Don't create a indexed load / store with zero offset.
7332 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00007333 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00007334 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00007335
Chris Lattner9f1794e2006-11-11 00:56:29 +00007336 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00007337 // 1) All uses are load / store ops that use it as base ptr (and
7338 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00007339 // 2) Op must be independent of N, i.e. Op is neither a predecessor
7340 // nor a successor of N. Otherwise, if Op is folded that would
7341 // create a cycle.
7342
Evan Chengcaab1292009-05-06 18:25:01 +00007343 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
7344 continue;
7345
Chris Lattner9f1794e2006-11-11 00:56:29 +00007346 // Check for #1.
7347 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00007348 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
7349 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00007350 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00007351 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00007352 continue;
7353
Chris Lattner9f1794e2006-11-11 00:56:29 +00007354 // If all the uses are load / store addresses, then don't do the
7355 // transformation.
7356 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
7357 bool RealUse = false;
7358 for (SDNode::use_iterator III = Use->use_begin(),
7359 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00007360 SDNode *UseUse = *III;
Stephen Lin155615d2013-07-08 00:37:03 +00007361 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007362 RealUse = true;
7363 }
Chris Lattner448f2192006-11-11 00:39:41 +00007364
Chris Lattner9f1794e2006-11-11 00:56:29 +00007365 if (!RealUse) {
7366 TryNext = true;
7367 break;
Chris Lattner448f2192006-11-11 00:39:41 +00007368 }
7369 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007370 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007371
Chris Lattner9f1794e2006-11-11 00:56:29 +00007372 if (TryNext)
7373 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00007374
Chris Lattner9f1794e2006-11-11 00:56:29 +00007375 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00007376 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00007377 SDValue Result = isLoad
Andrew Trickac6d9be2013-05-25 02:42:55 +00007378 ? DAG.getIndexedLoad(SDValue(N,0), SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00007379 BasePtr, Offset, AM)
Andrew Trickac6d9be2013-05-25 02:42:55 +00007380 : DAG.getIndexedStore(SDValue(N,0), SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00007381 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007382 ++PostIndexedNodes;
7383 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00007384 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007385 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007386 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007387 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007388 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007389 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007390 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007391 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7392 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007393 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007394 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner448f2192006-11-11 00:39:41 +00007395 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007396
Chris Lattner9f1794e2006-11-11 00:56:29 +00007397 // Finally, since the node is now dead, remove it from the graph.
7398 DAG.DeleteNode(N);
7399
7400 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00007401 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007402 Result.getValue(isLoad ? 1 : 0));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007403 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007404 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007405 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00007406 }
7407 }
7408 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007409
Chris Lattner448f2192006-11-11 00:39:41 +00007410 return false;
7411}
7412
Dan Gohman475871a2008-07-27 21:46:04 +00007413SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00007414 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007415 SDValue Chain = LD->getChain();
7416 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007417
Evan Cheng45a7ca92007-05-01 00:38:21 +00007418 // If load is not volatile and there are no uses of the loaded value (and
7419 // the updated indexed value in case of indexed loads), change uses of the
7420 // chain value into uses of the chain input (i.e. delete the dead load).
7421 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007422 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00007423 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00007424 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00007425 // It's not safe to use the two value CombineTo variant here. e.g.
7426 // v1, chain2 = load chain1, loc
7427 // v2, chain3 = load chain2, loc
7428 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00007429 // Now we replace use of chain2 with chain1. This makes the second load
7430 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00007431 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007432 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007433 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007434 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007435 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007436 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007437 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendlingc0debad2009-01-30 23:27:35 +00007438
Chris Lattner125991a2008-01-24 07:57:06 +00007439 if (N->use_empty()) {
7440 removeFromWorkList(N);
7441 DAG.DeleteNode(N);
7442 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007443
Dan Gohman475871a2008-07-27 21:46:04 +00007444 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00007445 }
Evan Cheng498f5592007-05-01 08:53:39 +00007446 } else {
7447 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00007448 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00007449 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007450 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00007451 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007452 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007453 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007454 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007455 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007456 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007457 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman475871a2008-07-27 21:46:04 +00007458 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007459 DAG.getUNDEF(N->getValueType(1)));
7460 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng02c42852008-01-16 23:11:54 +00007461 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00007462 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007463 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00007464 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00007465 }
7466 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007467
Chris Lattner01a22022005-10-10 22:04:48 +00007468 // If this load is directly stored, replace the load value with the stored
7469 // value.
7470 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007471 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00007472 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007473 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007474 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
7475 if (PrevST->getBasePtr() == Ptr &&
7476 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007477 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00007478 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007479 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007480
Evan Cheng255f20f2010-04-01 06:04:33 +00007481 // Try to infer better alignment information than the load already has.
7482 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007483 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
Owen Andersonb48783b2013-02-05 19:24:39 +00007484 if (Align > LD->getMemOperand()->getBaseAlignment()) {
7485 SDValue NewLoad =
Andrew Trickac6d9be2013-05-25 02:42:55 +00007486 DAG.getExtLoad(LD->getExtensionType(), SDLoc(N),
Evan Chenged1c0c72011-11-28 22:37:34 +00007487 LD->getValueType(0),
7488 Chain, Ptr, LD->getPointerInfo(),
7489 LD->getMemoryVT(),
7490 LD->isVolatile(), LD->isNonTemporal(), Align);
Owen Andersonb48783b2013-02-05 19:24:39 +00007491 return CombineTo(N, NewLoad, SDValue(NewLoad.getNode(), 1), true);
7492 }
Evan Cheng255f20f2010-04-01 06:04:33 +00007493 }
7494 }
7495
Hal Finkel253acef2013-08-29 03:29:55 +00007496 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA :
7497 TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
7498 if (UseAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007499 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007500 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007501
Jim Laskey6ff23e52006-10-04 16:53:27 +00007502 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007503 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007504 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007505
Jim Laskey279f0532006-09-25 16:29:54 +00007506 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007507 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007508 ReplLoad = DAG.getLoad(N->getValueType(0), SDLoc(LD),
Chris Lattnerfa459012010-09-21 16:08:50 +00007509 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007510 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007511 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007512 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007513 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD),
Stuart Hastingsa9011292011-02-16 16:23:55 +00007514 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00007515 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007516 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007517 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007518 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00007519 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007520 }
Jim Laskey279f0532006-09-25 16:29:54 +00007521
Jim Laskey6ff23e52006-10-04 16:53:27 +00007522 // Create token factor to keep old chain connected.
Andrew Trickac6d9be2013-05-25 02:42:55 +00007523 SDValue Token = DAG.getNode(ISD::TokenFactor, SDLoc(N),
Owen Anderson825b72b2009-08-11 20:47:22 +00007524 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007525
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007526 // Make sure the new and old chains are cleaned up.
7527 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007528
Jim Laskey274062c2006-10-13 23:32:28 +00007529 // Replace uses with load result and token factor. Don't add users
7530 // to work list.
7531 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007532 }
7533 }
7534
Evan Cheng7fc033a2006-11-03 03:06:21 +00007535 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007536 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007537 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00007538
Dan Gohman475871a2008-07-27 21:46:04 +00007539 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00007540}
7541
Chris Lattner2392ae72010-04-15 04:48:01 +00007542/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
7543/// load is having specific bytes cleared out. If so, return the byte size
7544/// being masked out and the shift amount.
7545static std::pair<unsigned, unsigned>
7546CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
7547 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007548
Chris Lattner2392ae72010-04-15 04:48:01 +00007549 // Check for the structure we're looking for.
7550 if (V->getOpcode() != ISD::AND ||
7551 !isa<ConstantSDNode>(V->getOperand(1)) ||
7552 !ISD::isNormalLoad(V->getOperand(0).getNode()))
7553 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007554
Chris Lattnere6987582010-04-15 06:10:49 +00007555 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00007556 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00007557 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007558
Chris Lattnere6987582010-04-15 06:10:49 +00007559 // The store should be chained directly to the load or be an operand of a
7560 // tokenfactor.
7561 if (LD == Chain.getNode())
7562 ; // ok.
7563 else if (Chain->getOpcode() != ISD::TokenFactor)
7564 return Result; // Fail.
7565 else {
7566 bool isOk = false;
7567 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
7568 if (Chain->getOperand(i).getNode() == LD) {
7569 isOk = true;
7570 break;
7571 }
7572 if (!isOk) return Result;
7573 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007574
Chris Lattner2392ae72010-04-15 04:48:01 +00007575 // This only handles simple types.
7576 if (V.getValueType() != MVT::i16 &&
7577 V.getValueType() != MVT::i32 &&
7578 V.getValueType() != MVT::i64)
7579 return Result;
7580
7581 // Check the constant mask. Invert it so that the bits being masked out are
7582 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
7583 // follow the sign bit for uniformity.
7584 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
Michael J. Spencerc6af2432013-05-24 22:23:49 +00007585 unsigned NotMaskLZ = countLeadingZeros(NotMask);
Chris Lattner2392ae72010-04-15 04:48:01 +00007586 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
Michael J. Spencerc6af2432013-05-24 22:23:49 +00007587 unsigned NotMaskTZ = countTrailingZeros(NotMask);
Chris Lattner2392ae72010-04-15 04:48:01 +00007588 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
7589 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007590
Chris Lattner2392ae72010-04-15 04:48:01 +00007591 // See if we have a continuous run of bits. If so, we have 0*1+0*
7592 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
7593 return Result;
7594
7595 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
7596 if (V.getValueType() != MVT::i64 && NotMaskLZ)
7597 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007598
Chris Lattner2392ae72010-04-15 04:48:01 +00007599 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
7600 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007601 case 1:
7602 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00007603 case 4: break;
7604 default: return Result; // All one mask, or 5-byte mask.
7605 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007606
Chris Lattner2392ae72010-04-15 04:48:01 +00007607 // Verify that the first bit starts at a multiple of mask so that the access
7608 // is aligned the same as the access width.
7609 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007610
Chris Lattner2392ae72010-04-15 04:48:01 +00007611 Result.first = MaskedBytes;
7612 Result.second = NotMaskTZ/8;
7613 return Result;
7614}
7615
7616
7617/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
7618/// provides a value as specified by MaskInfo. If so, replace the specified
7619/// store with a narrower store of truncated IVal.
7620static SDNode *
7621ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
7622 SDValue IVal, StoreSDNode *St,
7623 DAGCombiner *DC) {
7624 unsigned NumBytes = MaskInfo.first;
7625 unsigned ByteShift = MaskInfo.second;
7626 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007627
Chris Lattner2392ae72010-04-15 04:48:01 +00007628 // Check to see if IVal is all zeros in the part being masked in by the 'or'
7629 // that uses this. If not, this is not a replacement.
7630 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
7631 ByteShift*8, (ByteShift+NumBytes)*8);
7632 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007633
Chris Lattner2392ae72010-04-15 04:48:01 +00007634 // Check that it is legal on the target to do this. It is legal if the new
7635 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
7636 // legalization.
7637 MVT VT = MVT::getIntegerVT(NumBytes*8);
7638 if (!DC->isTypeLegal(VT))
7639 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007640
Chris Lattner2392ae72010-04-15 04:48:01 +00007641 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
7642 // shifted by ByteShift and truncated down to NumBytes.
7643 if (ByteShift)
Andrew Trickac6d9be2013-05-25 02:42:55 +00007644 IVal = DAG.getNode(ISD::SRL, SDLoc(IVal), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00007645 DAG.getConstant(ByteShift*8,
7646 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00007647
7648 // Figure out the offset for the store and the alignment of the access.
7649 unsigned StOffset;
7650 unsigned NewAlign = St->getAlignment();
7651
7652 if (DAG.getTargetLoweringInfo().isLittleEndian())
7653 StOffset = ByteShift;
7654 else
7655 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007656
Chris Lattner2392ae72010-04-15 04:48:01 +00007657 SDValue Ptr = St->getBasePtr();
7658 if (StOffset) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007659 Ptr = DAG.getNode(ISD::ADD, SDLoc(IVal), Ptr.getValueType(),
Chris Lattner2392ae72010-04-15 04:48:01 +00007660 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
7661 NewAlign = MinAlign(NewAlign, StOffset);
7662 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007663
Chris Lattner2392ae72010-04-15 04:48:01 +00007664 // Truncate down to the new size.
Andrew Trickac6d9be2013-05-25 02:42:55 +00007665 IVal = DAG.getNode(ISD::TRUNCATE, SDLoc(IVal), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007666
Chris Lattner2392ae72010-04-15 04:48:01 +00007667 ++OpsNarrowed;
Andrew Trickac6d9be2013-05-25 02:42:55 +00007668 return DAG.getStore(St->getChain(), SDLoc(St), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007669 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00007670 false, false, NewAlign).getNode();
7671}
7672
Evan Cheng8b944d32009-05-28 00:35:15 +00007673
7674/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
7675/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
7676/// of the loaded bits, try narrowing the load and store if it would end up
7677/// being a win for performance or code size.
7678SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
7679 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00007680 if (ST->isVolatile())
7681 return SDValue();
7682
Evan Cheng8b944d32009-05-28 00:35:15 +00007683 SDValue Chain = ST->getChain();
7684 SDValue Value = ST->getValue();
7685 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00007686 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00007687
7688 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00007689 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007690
7691 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007692
Chris Lattner2392ae72010-04-15 04:48:01 +00007693 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
7694 // is a byte mask indicating a consecutive number of bytes, check to see if
7695 // Y is known to provide just those bytes. If so, we try to replace the
7696 // load + replace + store sequence with a single (narrower) store, which makes
7697 // the load dead.
7698 if (Opc == ISD::OR) {
7699 std::pair<unsigned, unsigned> MaskedLoad;
7700 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
7701 if (MaskedLoad.first)
7702 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7703 Value.getOperand(1), ST,this))
7704 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007705
Chris Lattner2392ae72010-04-15 04:48:01 +00007706 // Or is commutative, so try swapping X and Y.
7707 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
7708 if (MaskedLoad.first)
7709 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7710 Value.getOperand(0), ST,this))
7711 return SDValue(NewST, 0);
7712 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007713
Evan Cheng8b944d32009-05-28 00:35:15 +00007714 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
7715 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00007716 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007717
7718 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00007719 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
7720 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00007721 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00007722 if (LD->getBasePtr() != Ptr ||
7723 LD->getPointerInfo().getAddrSpace() !=
7724 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00007725 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007726
7727 // Find the type to narrow it the load / op / store to.
7728 SDValue N1 = Value.getOperand(1);
7729 unsigned BitWidth = N1.getValueSizeInBits();
7730 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
7731 if (Opc == ISD::AND)
7732 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00007733 if (Imm == 0 || Imm.isAllOnesValue())
7734 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007735 unsigned ShAmt = Imm.countTrailingZeros();
7736 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
7737 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00007738 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007739 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00007740 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00007741 TLI.isNarrowingProfitable(VT, NewVT))) {
7742 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00007743 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007744 }
Evan Chengcdcecc02009-05-28 18:41:02 +00007745 if (NewBW >= BitWidth)
7746 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007747
7748 // If the lsb changed does not start at the type bitwidth boundary,
7749 // start at the previous one.
7750 if (ShAmt % NewBW)
7751 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
Manman Ren981b9632012-12-12 01:13:50 +00007752 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt,
7753 std::min(BitWidth, ShAmt + NewBW));
Evan Cheng8b944d32009-05-28 00:35:15 +00007754 if ((Imm & Mask) == Imm) {
7755 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
7756 if (Opc == ISD::AND)
7757 NewImm ^= APInt::getAllOnesValue(NewBW);
7758 uint64_t PtrOff = ShAmt / 8;
7759 // For big endian targets, we need to adjust the offset to the pointer to
7760 // load the correct bytes.
7761 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00007762 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00007763
7764 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007765 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007766 if (NewAlign < TLI.getDataLayout()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00007767 return SDValue();
7768
Andrew Trickac6d9be2013-05-25 02:42:55 +00007769 SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(LD),
Evan Cheng8b944d32009-05-28 00:35:15 +00007770 Ptr.getValueType(), Ptr,
7771 DAG.getConstant(PtrOff, Ptr.getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00007772 SDValue NewLD = DAG.getLoad(NewVT, SDLoc(N0),
Evan Cheng8b944d32009-05-28 00:35:15 +00007773 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007774 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007775 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007776 LD->isInvariant(), NewAlign);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007777 SDValue NewVal = DAG.getNode(Opc, SDLoc(Value), NewVT, NewLD,
Evan Cheng8b944d32009-05-28 00:35:15 +00007778 DAG.getConstant(NewImm, NewVT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00007779 SDValue NewST = DAG.getStore(Chain, SDLoc(N),
Evan Cheng8b944d32009-05-28 00:35:15 +00007780 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007781 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007782 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007783
7784 AddToWorkList(NewPtr.getNode());
7785 AddToWorkList(NewLD.getNode());
7786 AddToWorkList(NewVal.getNode());
7787 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007788 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Cheng8b944d32009-05-28 00:35:15 +00007789 ++OpsNarrowed;
7790 return NewST;
7791 }
7792 }
7793
Evan Chengcdcecc02009-05-28 18:41:02 +00007794 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007795}
7796
Evan Cheng31959b12011-02-02 01:06:55 +00007797/// TransformFPLoadStorePair - For a given floating point load / store pair,
7798/// if the load value isn't used by any other operations, then consider
7799/// transforming the pair to integer load / store operations if the target
7800/// deems the transformation profitable.
7801SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
7802 StoreSDNode *ST = cast<StoreSDNode>(N);
7803 SDValue Chain = ST->getChain();
7804 SDValue Value = ST->getValue();
7805 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
7806 Value.hasOneUse() &&
7807 Chain == SDValue(Value.getNode(), 1)) {
7808 LoadSDNode *LD = cast<LoadSDNode>(Value);
7809 EVT VT = LD->getMemoryVT();
7810 if (!VT.isFloatingPoint() ||
7811 VT != ST->getMemoryVT() ||
7812 LD->isNonTemporal() ||
7813 ST->isNonTemporal() ||
7814 LD->getPointerInfo().getAddrSpace() != 0 ||
7815 ST->getPointerInfo().getAddrSpace() != 0)
7816 return SDValue();
7817
7818 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
7819 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
7820 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
7821 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
7822 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
7823 return SDValue();
7824
7825 unsigned LDAlign = LD->getAlignment();
7826 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007827 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007828 unsigned ABIAlign = TLI.getDataLayout()->getABITypeAlignment(IntVTTy);
Evan Cheng31959b12011-02-02 01:06:55 +00007829 if (LDAlign < ABIAlign || STAlign < ABIAlign)
7830 return SDValue();
7831
Andrew Trickac6d9be2013-05-25 02:42:55 +00007832 SDValue NewLD = DAG.getLoad(IntVT, SDLoc(Value),
Evan Cheng31959b12011-02-02 01:06:55 +00007833 LD->getChain(), LD->getBasePtr(),
7834 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007835 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00007836
Andrew Trickac6d9be2013-05-25 02:42:55 +00007837 SDValue NewST = DAG.getStore(NewLD.getValue(1), SDLoc(N),
Evan Cheng31959b12011-02-02 01:06:55 +00007838 NewLD, ST->getBasePtr(),
7839 ST->getPointerInfo(),
7840 false, false, STAlign);
7841
7842 AddToWorkList(NewLD.getNode());
7843 AddToWorkList(NewST.getNode());
7844 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007845 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Cheng31959b12011-02-02 01:06:55 +00007846 ++LdStFP2Int;
7847 return NewST;
7848 }
7849
7850 return SDValue();
7851}
7852
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007853/// Helper struct to parse and store a memory address as base + index + offset.
7854/// We ignore sign extensions when it is safe to do so.
7855/// The following two expressions are not equivalent. To differentiate we need
7856/// to store whether there was a sign extension involved in the index
7857/// computation.
7858/// (load (i64 add (i64 copyfromreg %c)
7859/// (i64 signextend (add (i8 load %index)
7860/// (i8 1))))
7861/// vs
7862///
7863/// (load (i64 add (i64 copyfromreg %c)
7864/// (i64 signextend (i32 add (i32 signextend (i8 load %index))
7865/// (i32 1)))))
7866struct BaseIndexOffset {
7867 SDValue Base;
7868 SDValue Index;
7869 int64_t Offset;
7870 bool IsIndexSignExt;
7871
7872 BaseIndexOffset() : Offset(0), IsIndexSignExt(false) {}
7873
7874 BaseIndexOffset(SDValue Base, SDValue Index, int64_t Offset,
7875 bool IsIndexSignExt) :
7876 Base(Base), Index(Index), Offset(Offset), IsIndexSignExt(IsIndexSignExt) {}
7877
7878 bool equalBaseIndex(const BaseIndexOffset &Other) {
7879 return Other.Base == Base && Other.Index == Index &&
7880 Other.IsIndexSignExt == IsIndexSignExt;
Nadav Rotemc653de62012-10-03 16:11:15 +00007881 }
7882
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007883 /// Parses tree in Ptr for base, index, offset addresses.
7884 static BaseIndexOffset match(SDValue Ptr) {
7885 bool IsIndexSignExt = false;
7886
Juergen Ributzka915e9362013-08-21 21:53:38 +00007887 // We only can pattern match BASE + INDEX + OFFSET. If Ptr is not an ADD
7888 // instruction, then it could be just the BASE or everything else we don't
7889 // know how to handle. Just use Ptr as BASE and give up.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007890 if (Ptr->getOpcode() != ISD::ADD)
7891 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
7892
Juergen Ributzka915e9362013-08-21 21:53:38 +00007893 // We know that we have at least an ADD instruction. Try to pattern match
7894 // the simple case of BASE + OFFSET.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007895 if (isa<ConstantSDNode>(Ptr->getOperand(1))) {
7896 int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue();
7897 return BaseIndexOffset(Ptr->getOperand(0), SDValue(), Offset,
7898 IsIndexSignExt);
7899 }
7900
Juergen Ributzka915e9362013-08-21 21:53:38 +00007901 // Inside a loop the current BASE pointer is calculated using an ADD and a
Juergen Ributzka2b884bc2013-08-28 22:33:58 +00007902 // MUL instruction. In this case Ptr is the actual BASE pointer.
Juergen Ributzka915e9362013-08-21 21:53:38 +00007903 // (i64 add (i64 %array_ptr)
7904 // (i64 mul (i64 %induction_var)
7905 // (i64 %element_size)))
Juergen Ributzka2b884bc2013-08-28 22:33:58 +00007906 if (Ptr->getOperand(1)->getOpcode() == ISD::MUL)
Juergen Ributzka915e9362013-08-21 21:53:38 +00007907 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
Juergen Ributzka915e9362013-08-21 21:53:38 +00007908
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007909 // Look at Base + Index + Offset cases.
7910 SDValue Base = Ptr->getOperand(0);
7911 SDValue IndexOffset = Ptr->getOperand(1);
7912
7913 // Skip signextends.
7914 if (IndexOffset->getOpcode() == ISD::SIGN_EXTEND) {
7915 IndexOffset = IndexOffset->getOperand(0);
7916 IsIndexSignExt = true;
7917 }
7918
7919 // Either the case of Base + Index (no offset) or something else.
7920 if (IndexOffset->getOpcode() != ISD::ADD)
7921 return BaseIndexOffset(Base, IndexOffset, 0, IsIndexSignExt);
7922
7923 // Now we have the case of Base + Index + offset.
7924 SDValue Index = IndexOffset->getOperand(0);
7925 SDValue Offset = IndexOffset->getOperand(1);
7926
7927 if (!isa<ConstantSDNode>(Offset))
7928 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
7929
7930 // Ignore signextends.
7931 if (Index->getOpcode() == ISD::SIGN_EXTEND) {
7932 Index = Index->getOperand(0);
7933 IsIndexSignExt = true;
7934 } else IsIndexSignExt = false;
7935
7936 int64_t Off = cast<ConstantSDNode>(Offset)->getSExtValue();
7937 return BaseIndexOffset(Base, Index, Off, IsIndexSignExt);
7938 }
7939};
Nadav Rotemc653de62012-10-03 16:11:15 +00007940
7941/// Holds a pointer to an LSBaseSDNode as well as information on where it
7942/// is located in a sequence of memory operations connected by a chain.
7943struct MemOpLink {
7944 MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq):
7945 MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { }
7946 // Ptr to the mem node.
7947 LSBaseSDNode *MemNode;
7948 // Offset from the base ptr.
7949 int64_t OffsetFromBase;
7950 // What is the sequence number of this mem node.
7951 // Lowest mem operand in the DAG starts at zero.
7952 unsigned SequenceNum;
7953};
7954
7955/// Sorts store nodes in a link according to their offset from a shared
7956// base ptr.
7957struct ConsecutiveMemoryChainSorter {
7958 bool operator()(MemOpLink LHS, MemOpLink RHS) {
7959 return LHS.OffsetFromBase < RHS.OffsetFromBase;
7960 }
7961};
7962
7963bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) {
7964 EVT MemVT = St->getMemoryVT();
7965 int64_t ElementSizeBytes = MemVT.getSizeInBits()/8;
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00007966 bool NoVectors = DAG.getMachineFunction().getFunction()->getAttributes().
7967 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nadav Rotemc653de62012-10-03 16:11:15 +00007968
7969 // Don't merge vectors into wider inputs.
7970 if (MemVT.isVector() || !MemVT.isSimple())
7971 return false;
7972
7973 // Perform an early exit check. Do not bother looking at stored values that
7974 // are not constants or loads.
7975 SDValue StoredVal = St->getValue();
7976 bool IsLoadSrc = isa<LoadSDNode>(StoredVal);
7977 if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) &&
7978 !IsLoadSrc)
7979 return false;
7980
7981 // Only look at ends of store sequences.
7982 SDValue Chain = SDValue(St, 1);
7983 if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE)
7984 return false;
7985
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007986 // This holds the base pointer, index, and the offset in bytes from the base
7987 // pointer.
7988 BaseIndexOffset BasePtr = BaseIndexOffset::match(St->getBasePtr());
Nadav Rotemc653de62012-10-03 16:11:15 +00007989
7990 // We must have a base and an offset.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007991 if (!BasePtr.Base.getNode())
Nadav Rotemc653de62012-10-03 16:11:15 +00007992 return false;
7993
7994 // Do not handle stores to undef base pointers.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007995 if (BasePtr.Base.getOpcode() == ISD::UNDEF)
Nadav Rotemc653de62012-10-03 16:11:15 +00007996 return false;
7997
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007998 // Save the LoadSDNodes that we find in the chain.
7999 // We need to make sure that these nodes do not interfere with
8000 // any of the store nodes.
8001 SmallVector<LSBaseSDNode*, 8> AliasLoadNodes;
8002
8003 // Save the StoreSDNodes that we find in the chain.
Nadav Rotemc653de62012-10-03 16:11:15 +00008004 SmallVector<MemOpLink, 8> StoreNodes;
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008005
Nadav Rotemc653de62012-10-03 16:11:15 +00008006 // Walk up the chain and look for nodes with offsets from the same
8007 // base pointer. Stop when reaching an instruction with a different kind
8008 // or instruction which has a different base pointer.
8009 unsigned Seq = 0;
8010 StoreSDNode *Index = St;
8011 while (Index) {
8012 // If the chain has more than one use, then we can't reorder the mem ops.
8013 if (Index != St && !SDValue(Index, 1)->hasOneUse())
8014 break;
8015
8016 // Find the base pointer and offset for this memory node.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008017 BaseIndexOffset Ptr = BaseIndexOffset::match(Index->getBasePtr());
Nadav Rotemc653de62012-10-03 16:11:15 +00008018
8019 // Check that the base pointer is the same as the original one.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008020 if (!Ptr.equalBaseIndex(BasePtr))
Nadav Rotemc653de62012-10-03 16:11:15 +00008021 break;
8022
8023 // Check that the alignment is the same.
8024 if (Index->getAlignment() != St->getAlignment())
8025 break;
8026
8027 // The memory operands must not be volatile.
8028 if (Index->isVolatile() || Index->isIndexed())
8029 break;
8030
8031 // No truncation.
8032 if (StoreSDNode *St = dyn_cast<StoreSDNode>(Index))
8033 if (St->isTruncatingStore())
8034 break;
8035
8036 // The stored memory type must be the same.
8037 if (Index->getMemoryVT() != MemVT)
8038 break;
8039
8040 // We do not allow unaligned stores because we want to prevent overriding
8041 // stores.
8042 if (Index->getAlignment()*8 != MemVT.getSizeInBits())
8043 break;
8044
8045 // We found a potential memory operand to merge.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008046 StoreNodes.push_back(MemOpLink(Index, Ptr.Offset, Seq++));
Nadav Rotemc653de62012-10-03 16:11:15 +00008047
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008048 // Find the next memory operand in the chain. If the next operand in the
8049 // chain is a store then move up and continue the scan with the next
8050 // memory operand. If the next operand is a load save it and use alias
8051 // information to check if it interferes with anything.
8052 SDNode *NextInChain = Index->getChain().getNode();
8053 while (1) {
Nadav Rotemdde785c2012-12-06 17:34:13 +00008054 if (StoreSDNode *STn = dyn_cast<StoreSDNode>(NextInChain)) {
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008055 // We found a store node. Use it for the next iteration.
Nadav Rotemdde785c2012-12-06 17:34:13 +00008056 Index = STn;
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008057 break;
8058 } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) {
8059 // Save the load node for later. Continue the scan.
8060 AliasLoadNodes.push_back(Ldn);
8061 NextInChain = Ldn->getChain().getNode();
8062 continue;
8063 } else {
8064 Index = NULL;
8065 break;
8066 }
8067 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008068 }
8069
8070 // Check if there is anything to merge.
8071 if (StoreNodes.size() < 2)
8072 return false;
8073
8074 // Sort the memory operands according to their distance from the base pointer.
8075 std::sort(StoreNodes.begin(), StoreNodes.end(),
8076 ConsecutiveMemoryChainSorter());
8077
8078 // Scan the memory operations on the chain and find the first non-consecutive
8079 // store memory address.
8080 unsigned LastConsecutiveStore = 0;
8081 int64_t StartAddress = StoreNodes[0].OffsetFromBase;
Nadav Rotemdde785c2012-12-06 17:34:13 +00008082 for (unsigned i = 0, e = StoreNodes.size(); i < e; ++i) {
8083
8084 // Check that the addresses are consecutive starting from the second
8085 // element in the list of stores.
8086 if (i > 0) {
8087 int64_t CurrAddress = StoreNodes[i].OffsetFromBase;
8088 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
8089 break;
8090 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008091
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008092 bool Alias = false;
8093 // Check if this store interferes with any of the loads that we found.
8094 for (unsigned ld = 0, lde = AliasLoadNodes.size(); ld < lde; ++ld)
8095 if (isAlias(AliasLoadNodes[ld], StoreNodes[i].MemNode)) {
8096 Alias = true;
8097 break;
8098 }
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008099 // We found a load that alias with this store. Stop the sequence.
8100 if (Alias)
8101 break;
8102
Nadav Rotemc653de62012-10-03 16:11:15 +00008103 // Mark this node as useful.
8104 LastConsecutiveStore = i;
8105 }
8106
8107 // The node with the lowest store address.
8108 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode;
8109
8110 // Store the constants into memory as one consecutive store.
8111 if (!IsLoadSrc) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008112 unsigned LastLegalType = 0;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008113 unsigned LastLegalVectorType = 0;
8114 bool NonZero = false;
Nadav Rotemc653de62012-10-03 16:11:15 +00008115 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
8116 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8117 SDValue StoredVal = St->getValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008118
8119 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00008120 NonZero |= !C->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008121 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00008122 NonZero |= !C->getConstantFPValue()->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008123 } else {
8124 // Non constant.
Nadav Rotemc653de62012-10-03 16:11:15 +00008125 break;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008126 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008127
Nadav Rotemc653de62012-10-03 16:11:15 +00008128 // Find a legal type for the constant store.
8129 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
8130 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8131 if (TLI.isTypeLegal(StoreTy))
8132 LastLegalType = i+1;
Arnold Schwaighofere7370182013-04-02 15:58:51 +00008133 // Or check whether a truncstore is legal.
8134 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) ==
8135 TargetLowering::TypePromoteInteger) {
8136 EVT LegalizedStoredValueTy =
8137 TLI.getTypeToTransformTo(*DAG.getContext(), StoredVal.getValueType());
8138 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy))
8139 LastLegalType = i+1;
8140 }
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008141
8142 // Find a legal type for the vector store.
8143 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
8144 if (TLI.isTypeLegal(Ty))
8145 LastLegalVectorType = i + 1;
Nadav Rotemc653de62012-10-03 16:11:15 +00008146 }
8147
Bob Wilson99d8e762012-12-20 01:36:20 +00008148 // We only use vectors if the constant is known to be zero and the
8149 // function is not marked with the noimplicitfloat attribute.
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008150 if (NonZero || NoVectors)
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008151 LastLegalVectorType = 0;
8152
Nadav Rotemc653de62012-10-03 16:11:15 +00008153 // Check if we found a legal integer type to store.
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008154 if (LastLegalType == 0 && LastLegalVectorType == 0)
Nadav Rotemc653de62012-10-03 16:11:15 +00008155 return false;
8156
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008157 bool UseVector = (LastLegalVectorType > LastLegalType) && !NoVectors;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008158 unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType;
8159
8160 // Make sure we have something to merge.
8161 if (NumElem < 2)
8162 return false;
Nadav Rotemc653de62012-10-03 16:11:15 +00008163
8164 unsigned EarliestNodeUsed = 0;
8165 for (unsigned i=0; i < NumElem; ++i) {
8166 // Find a chain for the new wide-store operand. Notice that some
8167 // of the store nodes that we found may not be selected for inclusion
8168 // in the wide store. The chain we use needs to be the chain of the
8169 // earliest store node which is *used* and replaced by the wide store.
8170 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
8171 EarliestNodeUsed = i;
8172 }
8173
8174 // The earliest Node in the DAG.
8175 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008176 SDLoc DL(StoreNodes[0].MemNode);
Nadav Rotemc653de62012-10-03 16:11:15 +00008177
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008178 SDValue StoredVal;
8179 if (UseVector) {
8180 // Find a legal type for the vector store.
8181 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
8182 assert(TLI.isTypeLegal(Ty) && "Illegal vector store");
8183 StoredVal = DAG.getConstant(0, Ty);
8184 } else {
8185 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
8186 APInt StoreInt(StoreBW, 0);
8187
8188 // Construct a single integer constant which is made of the smaller
8189 // constant inputs.
8190 bool IsLE = TLI.isLittleEndian();
8191 for (unsigned i = 0; i < NumElem ; ++i) {
8192 unsigned Idx = IsLE ?(NumElem - 1 - i) : i;
8193 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode);
8194 SDValue Val = St->getValue();
8195 StoreInt<<=ElementSizeBytes*8;
8196 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) {
8197 StoreInt|=C->getAPIntValue().zext(StoreBW);
8198 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) {
8199 StoreInt|= C->getValueAPF().bitcastToAPInt().zext(StoreBW);
8200 } else {
8201 assert(false && "Invalid constant element type");
8202 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008203 }
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008204
8205 // Create the new Load and Store operations.
8206 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8207 StoredVal = DAG.getConstant(StoreInt, StoreTy);
Nadav Rotemc653de62012-10-03 16:11:15 +00008208 }
8209
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008210 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), DL, StoredVal,
Nadav Rotemc653de62012-10-03 16:11:15 +00008211 FirstInChain->getBasePtr(),
8212 FirstInChain->getPointerInfo(),
8213 false, false,
8214 FirstInChain->getAlignment());
8215
8216 // Replace the first store with the new store
8217 CombineTo(EarliestOp, NewStore);
8218 // Erase all other stores.
8219 for (unsigned i = 0; i < NumElem ; ++i) {
8220 if (StoreNodes[i].MemNode == EarliestOp)
8221 continue;
8222 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
Rafael Espindola8e2b8ae2012-11-14 05:08:56 +00008223 // ReplaceAllUsesWith will replace all uses that existed when it was
8224 // called, but graph optimizations may cause new ones to appear. For
8225 // example, the case in pr14333 looks like
8226 //
8227 // St's chain -> St -> another store -> X
8228 //
8229 // And the only difference from St to the other store is the chain.
8230 // When we change it's chain to be St's chain they become identical,
8231 // get CSEed and the net result is that X is now a use of St.
8232 // Since we know that St is redundant, just iterate.
8233 while (!St->use_empty())
8234 DAG.ReplaceAllUsesWith(SDValue(St, 0), St->getChain());
Nadav Rotemc653de62012-10-03 16:11:15 +00008235 removeFromWorkList(St);
8236 DAG.DeleteNode(St);
8237 }
8238
8239 return true;
8240 }
8241
8242 // Below we handle the case of multiple consecutive stores that
8243 // come from multiple consecutive loads. We merge them into a single
8244 // wide load and a single wide store.
8245
8246 // Look for load nodes which are used by the stored values.
8247 SmallVector<MemOpLink, 8> LoadNodes;
8248
8249 // Find acceptable loads. Loads need to have the same chain (token factor),
8250 // must not be zext, volatile, indexed, and they must be consecutive.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008251 BaseIndexOffset LdBasePtr;
Nadav Rotemc653de62012-10-03 16:11:15 +00008252 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
8253 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8254 LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue());
8255 if (!Ld) break;
8256
8257 // Loads must only have one use.
8258 if (!Ld->hasNUsesOfValue(1, 0))
8259 break;
8260
8261 // Check that the alignment is the same as the stores.
8262 if (Ld->getAlignment() != St->getAlignment())
8263 break;
8264
8265 // The memory operands must not be volatile.
8266 if (Ld->isVolatile() || Ld->isIndexed())
8267 break;
8268
8269 // We do not accept ext loads.
8270 if (Ld->getExtensionType() != ISD::NON_EXTLOAD)
8271 break;
8272
8273 // The stored memory type must be the same.
8274 if (Ld->getMemoryVT() != MemVT)
8275 break;
8276
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008277 BaseIndexOffset LdPtr = BaseIndexOffset::match(Ld->getBasePtr());
Nadav Rotemc653de62012-10-03 16:11:15 +00008278 // If this is not the first ptr that we check.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008279 if (LdBasePtr.Base.getNode()) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008280 // The base ptr must be the same.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008281 if (!LdPtr.equalBaseIndex(LdBasePtr))
Nadav Rotemc653de62012-10-03 16:11:15 +00008282 break;
8283 } else {
8284 // Check that all other base pointers are the same as this one.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008285 LdBasePtr = LdPtr;
Nadav Rotemc653de62012-10-03 16:11:15 +00008286 }
8287
8288 // We found a potential memory operand to merge.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008289 LoadNodes.push_back(MemOpLink(Ld, LdPtr.Offset, 0));
Nadav Rotemc653de62012-10-03 16:11:15 +00008290 }
8291
8292 if (LoadNodes.size() < 2)
8293 return false;
8294
8295 // Scan the memory operations on the chain and find the first non-consecutive
8296 // load memory address. These variables hold the index in the store node
8297 // array.
8298 unsigned LastConsecutiveLoad = 0;
8299 // This variable refers to the size and not index in the array.
8300 unsigned LastLegalVectorType = 0;
8301 unsigned LastLegalIntegerType = 0;
8302 StartAddress = LoadNodes[0].OffsetFromBase;
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008303 SDValue FirstChain = LoadNodes[0].MemNode->getChain();
8304 for (unsigned i = 1; i < LoadNodes.size(); ++i) {
8305 // All loads much share the same chain.
8306 if (LoadNodes[i].MemNode->getChain() != FirstChain)
8307 break;
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008308
Nadav Rotemc653de62012-10-03 16:11:15 +00008309 int64_t CurrAddress = LoadNodes[i].OffsetFromBase;
8310 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
8311 break;
8312 LastConsecutiveLoad = i;
8313
8314 // Find a legal type for the vector store.
8315 EVT StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
8316 if (TLI.isTypeLegal(StoreTy))
8317 LastLegalVectorType = i + 1;
8318
8319 // Find a legal type for the integer store.
8320 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
8321 StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8322 if (TLI.isTypeLegal(StoreTy))
8323 LastLegalIntegerType = i + 1;
Arnold Schwaighofere7370182013-04-02 15:58:51 +00008324 // Or check whether a truncstore and extload is legal.
8325 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) ==
8326 TargetLowering::TypePromoteInteger) {
8327 EVT LegalizedStoredValueTy =
8328 TLI.getTypeToTransformTo(*DAG.getContext(), StoreTy);
8329 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy) &&
8330 TLI.isLoadExtLegal(ISD::ZEXTLOAD, StoreTy) &&
8331 TLI.isLoadExtLegal(ISD::SEXTLOAD, StoreTy) &&
8332 TLI.isLoadExtLegal(ISD::EXTLOAD, StoreTy))
8333 LastLegalIntegerType = i+1;
8334 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008335 }
8336
8337 // Only use vector types if the vector type is larger than the integer type.
8338 // If they are the same, use integers.
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008339 bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType && !NoVectors;
Nadav Rotemc653de62012-10-03 16:11:15 +00008340 unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType);
8341
8342 // We add +1 here because the LastXXX variables refer to location while
8343 // the NumElem refers to array/index size.
8344 unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1;
8345 NumElem = std::min(LastLegalType, NumElem);
8346
8347 if (NumElem < 2)
8348 return false;
8349
8350 // The earliest Node in the DAG.
8351 unsigned EarliestNodeUsed = 0;
8352 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
8353 for (unsigned i=1; i<NumElem; ++i) {
8354 // Find a chain for the new wide-store operand. Notice that some
8355 // of the store nodes that we found may not be selected for inclusion
8356 // in the wide store. The chain we use needs to be the chain of the
8357 // earliest store node which is *used* and replaced by the wide store.
8358 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
8359 EarliestNodeUsed = i;
8360 }
8361
8362 // Find if it is better to use vectors or integers to load and store
8363 // to memory.
8364 EVT JointMemOpVT;
8365 if (UseVectorTy) {
8366 JointMemOpVT = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
8367 } else {
8368 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
8369 JointMemOpVT = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8370 }
8371
Andrew Trickac6d9be2013-05-25 02:42:55 +00008372 SDLoc LoadDL(LoadNodes[0].MemNode);
8373 SDLoc StoreDL(StoreNodes[0].MemNode);
Nadav Rotemc653de62012-10-03 16:11:15 +00008374
8375 LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode);
8376 SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL,
8377 FirstLoad->getChain(),
8378 FirstLoad->getBasePtr(),
8379 FirstLoad->getPointerInfo(),
8380 false, false, false,
8381 FirstLoad->getAlignment());
8382
8383 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), StoreDL, NewLoad,
8384 FirstInChain->getBasePtr(),
8385 FirstInChain->getPointerInfo(), false, false,
8386 FirstInChain->getAlignment());
8387
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008388 // Replace one of the loads with the new load.
8389 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode);
8390 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1),
8391 SDValue(NewLoad.getNode(), 1));
8392
8393 // Remove the rest of the load chains.
8394 for (unsigned i = 1; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008395 // Replace all chain users of the old load nodes with the chain of the new
8396 // load node.
8397 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode);
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008398 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain());
8399 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008400
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008401 // Replace the first store with the new store.
8402 CombineTo(EarliestOp, NewStore);
8403 // Erase all other stores.
8404 for (unsigned i = 0; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008405 // Remove all Store nodes.
8406 if (StoreNodes[i].MemNode == EarliestOp)
8407 continue;
8408 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8409 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
8410 removeFromWorkList(St);
8411 DAG.DeleteNode(St);
8412 }
8413
8414 return true;
8415}
8416
Dan Gohman475871a2008-07-27 21:46:04 +00008417SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00008418 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00008419 SDValue Chain = ST->getChain();
8420 SDValue Value = ST->getValue();
8421 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00008422
Evan Cheng59d5b682007-05-07 21:27:48 +00008423 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00008424 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008425 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008426 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00008427 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008428 EVT SVT = Value.getOperand(0).getValueType();
Micah Villmow3574eca2012-10-08 16:38:25 +00008429 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00008430 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008431 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008432 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008433 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00008434 return DAG.getStore(Chain, SDLoc(N), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00008435 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008436 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00008437 }
Owen Andersona34d9362011-04-14 17:30:49 +00008438
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008439 // Turn 'store undef, Ptr' -> nothing.
8440 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
8441 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008442
Nate Begeman2cbba892006-12-11 02:23:46 +00008443 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00008444 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008445 // NOTE: If the original store is volatile, this transform must not increase
8446 // the number of stores. For example, on x86-32 an f64 can be stored in one
8447 // processor operation but an i64 (which is not legal) requires two. So the
8448 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00008449 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00008450 SDValue Tmp;
Craig Topper0ff11902013-08-15 02:44:19 +00008451 switch (CFP->getSimpleValueType(0).SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008452 default: llvm_unreachable("Unknown FP type");
Pete Cooper438c0402012-06-21 18:00:39 +00008453 case MVT::f16: // We don't do this for these yet.
8454 case MVT::f80:
Owen Anderson825b72b2009-08-11 20:47:22 +00008455 case MVT::f128:
8456 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00008457 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008458 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00008459 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00008460 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00008461 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00008462 bitcastToAPInt().getZExtValue(), MVT::i32);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008463 return DAG.getStore(Chain, SDLoc(N), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008464 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008465 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00008466 }
8467 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008468 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00008469 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008470 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00008471 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00008472 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00008473 getZExtValue(), MVT::i64);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008474 return DAG.getStore(Chain, SDLoc(N), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008475 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008476 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008477 }
Owen Andersona34d9362011-04-14 17:30:49 +00008478
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008479 if (!ST->isVolatile() &&
8480 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00008481 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00008482 // argument passing. Since this is so common, custom legalize the
8483 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00008484 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00008485 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
8486 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00008487 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00008488
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00008489 unsigned Alignment = ST->getAlignment();
8490 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00008491 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00008492
Andrew Trickac6d9be2013-05-25 02:42:55 +00008493 SDValue St0 = DAG.getStore(Chain, SDLoc(ST), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008494 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008495 isVolatile, isNonTemporal,
8496 ST->getAlignment());
Andrew Trickac6d9be2013-05-25 02:42:55 +00008497 Ptr = DAG.getNode(ISD::ADD, SDLoc(N), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00008498 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00008499 Alignment = MinAlign(Alignment, 4U);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008500 SDValue St1 = DAG.getStore(Chain, SDLoc(ST), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008501 Ptr, ST->getPointerInfo().getWithOffset(4),
8502 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00008503 Alignment);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008504 return DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00008505 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00008506 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008507
Chris Lattner62be1a72006-12-12 04:16:14 +00008508 break;
Evan Cheng25ece662006-12-11 17:25:19 +00008509 }
Nate Begeman2cbba892006-12-11 02:23:46 +00008510 }
Nate Begeman2cbba892006-12-11 02:23:46 +00008511 }
8512
Evan Cheng255f20f2010-04-01 06:04:33 +00008513 // Try to infer better alignment information than the store already has.
8514 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00008515 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
8516 if (Align > ST->getAlignment())
Andrew Trickac6d9be2013-05-25 02:42:55 +00008517 return DAG.getTruncStore(Chain, SDLoc(N), Value,
Evan Chenged1c0c72011-11-28 22:37:34 +00008518 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
8519 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00008520 }
8521 }
8522
Evan Cheng31959b12011-02-02 01:06:55 +00008523 // Try transforming a pair floating point load / store ops to integer
8524 // load / store ops.
8525 SDValue NewST = TransformFPLoadStorePair(N);
8526 if (NewST.getNode())
8527 return NewST;
8528
Hal Finkel253acef2013-08-29 03:29:55 +00008529 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA :
8530 TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
8531 if (UseAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00008532 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008533 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00008534
Jim Laskey6ff23e52006-10-04 16:53:27 +00008535 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00008536 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00008537 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008538
8539 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008540 if (ST->isTruncatingStore()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008541 ReplStore = DAG.getTruncStore(BetterChain, SDLoc(N), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008542 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008543 ST->getMemoryVT(), ST->isVolatile(),
8544 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008545 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008546 ReplStore = DAG.getStore(BetterChain, SDLoc(N), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008547 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008548 ST->isVolatile(), ST->isNonTemporal(),
8549 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008550 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008551
Jim Laskey279f0532006-09-25 16:29:54 +00008552 // Create token to keep both nodes around.
Andrew Trickac6d9be2013-05-25 02:42:55 +00008553 SDValue Token = DAG.getNode(ISD::TokenFactor, SDLoc(N),
Owen Anderson825b72b2009-08-11 20:47:22 +00008554 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00008555
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008556 // Make sure the new and old chains are cleaned up.
8557 AddToWorkList(Token.getNode());
8558
Jim Laskey274062c2006-10-13 23:32:28 +00008559 // Don't add users to work list.
8560 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00008561 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00008562 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008563
Evan Cheng33dbedc2006-11-05 09:31:14 +00008564 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00008565 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00008566 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00008567
Chris Lattner3c872852007-12-29 06:26:16 +00008568 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00008569 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00008570 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00008571 // See if we can simplify the input to this truncstore with knowledge that
8572 // only the low bits are being used. For example:
8573 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00008574 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00008575 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00008576 APInt::getLowBitsSet(
8577 Value.getValueType().getScalarType().getSizeInBits(),
8578 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00008579 AddToWorkList(Value.getNode());
8580 if (Shorter.getNode())
Andrew Trickac6d9be2013-05-25 02:42:55 +00008581 return DAG.getTruncStore(Chain, SDLoc(N), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008582 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008583 ST->isVolatile(), ST->isNonTemporal(),
8584 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00008585
Chris Lattnere33544c2007-10-13 06:58:48 +00008586 // Otherwise, see if we can simplify the operation with
8587 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00008588 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00008589 APInt::getLowBitsSet(
8590 Value.getValueType().getScalarType().getSizeInBits(),
8591 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00008592 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00008593 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008594
Chris Lattner3c872852007-12-29 06:26:16 +00008595 // If this is a load followed by a store to the same location, then the store
8596 // is dead/noop.
8597 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008598 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008599 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00008600 // There can't be any side effects between the load and store, such as
8601 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00008602 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00008603 // The store is dead, remove it.
8604 return Chain;
8605 }
8606 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008607
Chris Lattnerddf89562008-01-17 19:59:44 +00008608 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
8609 // truncating store. We can do this even if this is already a truncstore.
8610 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00008611 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008612 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008613 ST->getMemoryVT())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008614 return DAG.getTruncStore(Chain, SDLoc(N), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008615 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008616 ST->isVolatile(), ST->isNonTemporal(),
8617 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00008618 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008619
Nadav Rotemc653de62012-10-03 16:11:15 +00008620 // Only perform this optimization before the types are legal, because we
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008621 // don't want to perform this optimization on every DAGCombine invocation.
Nadav Rotema569a802012-12-02 17:14:09 +00008622 if (!LegalTypes) {
8623 bool EverChanged = false;
8624
8625 do {
8626 // There can be multiple store sequences on the same chain.
8627 // Keep trying to merge store sequences until we are unable to do so
8628 // or until we merge the last store on the chain.
8629 bool Changed = MergeConsecutiveStores(ST);
8630 EverChanged |= Changed;
8631 if (!Changed) break;
8632 } while (ST->getOpcode() != ISD::DELETED_NODE);
8633
8634 if (EverChanged)
8635 return SDValue(N, 0);
8636 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008637
Evan Cheng8b944d32009-05-28 00:35:15 +00008638 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00008639}
8640
Dan Gohman475871a2008-07-27 21:46:04 +00008641SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
8642 SDValue InVec = N->getOperand(0);
8643 SDValue InVal = N->getOperand(1);
8644 SDValue EltNo = N->getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008645 SDLoc dl(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00008646
Bob Wilson492fd452010-05-19 23:42:58 +00008647 // If the inserted element is an UNDEF, just use the input vector.
8648 if (InVal.getOpcode() == ISD::UNDEF)
8649 return InVec;
8650
Nadav Rotem609d54e2011-02-12 14:40:33 +00008651 EVT VT = InVec.getValueType();
8652
Owen Anderson95771af2011-02-25 21:41:48 +00008653 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00008654 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
8655 return SDValue();
8656
Eli Friedman9db817f2011-09-09 21:04:06 +00008657 // Check that we know which element is being inserted
8658 if (!isa<ConstantSDNode>(EltNo))
8659 return SDValue();
8660 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008661
Eli Friedman9db817f2011-09-09 21:04:06 +00008662 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
8663 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
8664 // vector elements.
8665 SmallVector<SDValue, 8> Ops;
Quentin Colombet75c94332013-07-30 00:24:09 +00008666 // Do not combine these two vectors if the output vector will not replace
8667 // the input vector.
8668 if (InVec.getOpcode() == ISD::BUILD_VECTOR && InVec.hasOneUse()) {
Eli Friedman9db817f2011-09-09 21:04:06 +00008669 Ops.append(InVec.getNode()->op_begin(),
8670 InVec.getNode()->op_end());
8671 } else if (InVec.getOpcode() == ISD::UNDEF) {
8672 unsigned NElts = VT.getVectorNumElements();
8673 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
8674 } else {
8675 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008676 }
Eli Friedman9db817f2011-09-09 21:04:06 +00008677
8678 // Insert the element
8679 if (Elt < Ops.size()) {
8680 // All the operands of BUILD_VECTOR must have the same type;
8681 // we enforce that here.
8682 EVT OpVT = Ops[0].getValueType();
8683 if (InVal.getValueType() != OpVT)
8684 InVal = OpVT.bitsGT(InVal.getValueType()) ?
8685 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
8686 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
8687 Ops[Elt] = InVal;
8688 }
8689
8690 // Return the new vector
8691 return DAG.getNode(ISD::BUILD_VECTOR, dl,
8692 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00008693}
8694
Dan Gohman475871a2008-07-27 21:46:04 +00008695SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008696 // (vextract (scalar_to_vector val, 0) -> val
8697 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00008698 EVT VT = InVec.getValueType();
8699 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008700
Duncan Sandsc356f332011-05-09 08:03:33 +00008701 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
8702 // Check if the result type doesn't match the inserted element type. A
8703 // SCALAR_TO_VECTOR may truncate the inserted element and the
8704 // EXTRACT_VECTOR_ELT may widen the extracted vector.
8705 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00008706 if (InOp.getValueType() != NVT) {
8707 assert(InOp.getValueType().isInteger() && NVT.isInteger());
Andrew Trickac6d9be2013-05-25 02:42:55 +00008708 return DAG.getSExtOrTrunc(InOp, SDLoc(InVec), NVT);
Duncan Sandsc356f332011-05-09 08:03:33 +00008709 }
8710 return InOp;
8711 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008712
Nadav Rotemba05c912012-01-17 21:44:01 +00008713 SDValue EltNo = N->getOperand(1);
8714 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
8715
8716 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
8717 // We only perform this optimization before the op legalization phase because
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008718 // we may introduce new vector instructions which are not backed by TD
8719 // patterns. For example on AVX, extracting elements from a wide vector
8720 // without using extract_subvector.
Nadav Rotemba05c912012-01-17 21:44:01 +00008721 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
8722 && ConstEltNo && !LegalOperations) {
8723 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
8724 int NumElem = VT.getVectorNumElements();
8725 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
8726 // Find the new index to extract from.
8727 int OrigElt = SVOp->getMaskElt(Elt);
8728
8729 // Extracting an undef index is undef.
8730 if (OrigElt == -1)
8731 return DAG.getUNDEF(NVT);
8732
8733 // Select the right vector half to extract from.
8734 if (OrigElt < NumElem) {
8735 InVec = InVec->getOperand(0);
8736 } else {
8737 InVec = InVec->getOperand(1);
8738 OrigElt -= NumElem;
8739 }
8740
Tom Stellard425b76c2013-08-05 22:22:01 +00008741 EVT IndexTy = TLI.getVectorIdxTy();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008742 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(N), NVT,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008743 InVec, DAG.getConstant(OrigElt, IndexTy));
Nadav Rotemba05c912012-01-17 21:44:01 +00008744 }
8745
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008746 // Perform only after legalization to ensure build_vector / vector_shuffle
8747 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00008748 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008749
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008750 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
8751 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
8752 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00008753
Nadav Rotemba05c912012-01-17 21:44:01 +00008754 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00008755 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00008756 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00008757 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00008758 EVT ExtVT = VT.getVectorElementType();
8759 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00008760
Evan Cheng84387ea2012-03-13 22:00:52 +00008761 // If the result of load has to be truncated, then it's not necessarily
8762 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00008763 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00008764 return SDValue();
8765
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008766 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008767 // Don't duplicate a load with other uses.
8768 if (!InVec.hasOneUse())
8769 return SDValue();
8770
Owen Andersone50ed302009-08-10 22:56:29 +00008771 EVT BCVT = InVec.getOperand(0).getValueType();
8772 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008773 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00008774 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
8775 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008776 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00008777 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008778 NewLoad = true;
8779 }
Evan Cheng513da432007-10-06 08:19:55 +00008780
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008781 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00008782 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00008783 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008784 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00008785 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00008786 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00008787 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008788 // Don't duplicate a load with other uses.
8789 if (!InVec.hasOneUse())
8790 return SDValue();
8791
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008792 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00008793 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008794 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
8795 // =>
8796 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00008797
Eli Friedmand6e25602011-12-26 22:49:32 +00008798 // Don't duplicate a load with other uses.
8799 if (!InVec.hasOneUse())
8800 return SDValue();
8801
Mon P Wanga60b5232008-12-11 00:26:16 +00008802 // If the bit convert changed the number of elements, it is unsafe
8803 // to examine the mask.
8804 if (BCNumEltsChanged)
8805 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00008806
8807 // Select the input vector, guarding against out of range extract vector.
8808 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00008809 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00008810 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
8811
Eli Friedmand6e25602011-12-26 22:49:32 +00008812 if (InVec.getOpcode() == ISD::BITCAST) {
8813 // Don't duplicate a load with other uses.
8814 if (!InVec.hasOneUse())
8815 return SDValue();
8816
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008817 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00008818 }
Gabor Greifba36cb52008-08-28 21:40:38 +00008819 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008820 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00008821 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00008822 }
8823 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008824
Eli Friedmand6e25602011-12-26 22:49:32 +00008825 // Make sure we found a non-volatile load and the extractelement is
8826 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00008827 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00008828 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008829
Eric Christopherd81f17a2010-11-03 20:44:42 +00008830 // If Idx was -1 above, Elt is going to be -1, so just return undef.
8831 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00008832 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00008833
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008834 unsigned Align = LN0->getAlignment();
8835 if (NewLoad) {
8836 // Check the resultant load doesn't need a higher alignment than the
8837 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00008838 unsigned NewAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00008839 TLI.getDataLayout()
Eric Christopher503a64d2010-12-09 04:48:06 +00008840 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00008841
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008842 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008843 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00008844
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008845 Align = NewAlign;
8846 }
8847
Dan Gohman475871a2008-07-27 21:46:04 +00008848 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00008849 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008850
Eric Christopherd81f17a2010-11-03 20:44:42 +00008851 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00008852 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00008853 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008854 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00008855 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008856 NewPtr = DAG.getNode(ISD::ADD, SDLoc(N), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008857 DAG.getConstant(PtrOff, PtrType));
8858 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008859
Eli Friedman4db4add2011-11-16 23:50:22 +00008860 // The replacement we need to do here is a little tricky: we need to
8861 // replace an extractelement of a load with a load.
8862 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00008863 // Note that this replacement assumes that the extractvalue is the only
8864 // use of the load; that's okay because we don't want to perform this
8865 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00008866 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00008867 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00008868 if (NVT.bitsGT(LVT)) {
8869 // If the result type of vextract is wider than the load, then issue an
8870 // extending load instead.
8871 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
8872 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008873 Load = DAG.getExtLoad(ExtType, SDLoc(N), NVT, LN0->getChain(),
Evan Cheng84387ea2012-03-13 22:00:52 +00008874 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
8875 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008876 Chain = Load.getValue(1);
8877 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008878 Load = DAG.getLoad(LVT, SDLoc(N), LN0->getChain(), NewPtr,
Evan Cheng84387ea2012-03-13 22:00:52 +00008879 LN0->getPointerInfo().getWithOffset(PtrOff),
Stephen Lin155615d2013-07-08 00:37:03 +00008880 LN0->isVolatile(), LN0->isNonTemporal(),
Evan Cheng84387ea2012-03-13 22:00:52 +00008881 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008882 Chain = Load.getValue(1);
8883 if (NVT.bitsLT(LVT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00008884 Load = DAG.getNode(ISD::TRUNCATE, SDLoc(N), NVT, Load);
Evan Chenga03d3662012-03-13 22:16:11 +00008885 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00008886 Load = DAG.getNode(ISD::BITCAST, SDLoc(N), NVT, Load);
Evan Chenga03d3662012-03-13 22:16:11 +00008887 }
Eli Friedman4db4add2011-11-16 23:50:22 +00008888 WorkListRemover DeadNodes(*this);
8889 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00008890 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00008891 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedman4db4add2011-11-16 23:50:22 +00008892 // Since we're explcitly calling ReplaceAllUses, add the new node to the
8893 // worklist explicitly as well.
8894 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00008895 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00008896 // Make sure to revisit this node to clean it up; it will usually be dead.
8897 AddToWorkList(N);
8898 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00008899 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008900
Dan Gohman475871a2008-07-27 21:46:04 +00008901 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00008902}
Evan Cheng513da432007-10-06 08:19:55 +00008903
Michael Liaofac14ab2012-10-23 23:06:52 +00008904// Simplify (build_vec (ext )) to (bitcast (build_vec ))
8905SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) {
8906 // We perform this optimization post type-legalization because
8907 // the type-legalizer often scalarizes integer-promoted vectors.
8908 // Performing this optimization before may create bit-casts which
8909 // will be type-legalized to complex code sequences.
8910 // We perform this optimization only before the operation legalizer because we
8911 // may introduce illegal operations.
8912 if (Level != AfterLegalizeVectorOps && Level != AfterLegalizeTypes)
8913 return SDValue();
8914
Dan Gohman7f321562007-06-25 16:23:39 +00008915 unsigned NumInScalars = N->getNumOperands();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008916 SDLoc dl(N);
Owen Andersone50ed302009-08-10 22:56:29 +00008917 EVT VT = N->getValueType(0);
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008918
Nadav Rotemb00418a2011-10-29 21:23:04 +00008919 // Check to see if this is a BUILD_VECTOR of a bunch of values
8920 // which come from any_extend or zero_extend nodes. If so, we can create
8921 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00008922 // optimizations. We do not handle sign-extend because we can't fill the sign
8923 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008924 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00008925 bool AllAnyExt = true;
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008926
Craig Topperd3b58892012-01-17 09:09:48 +00008927 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00008928 SDValue In = N->getOperand(i);
8929 // Ignore undef inputs.
8930 if (In.getOpcode() == ISD::UNDEF) continue;
8931
8932 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
8933 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
8934
Nadav Rotemf47368b2011-10-31 20:08:25 +00008935 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008936 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00008937 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008938 break;
8939 }
8940
8941 // The input is a ZeroExt or AnyExt. Check the original type.
8942 EVT InTy = In.getOperand(0).getValueType();
8943
8944 // Check that all of the widened source types are the same.
8945 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00008946 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008947 SourceType = InTy;
8948 else if (InTy != SourceType) {
8949 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00008950 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008951 break;
8952 }
8953
8954 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00008955 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008956 }
8957
Nadav Rotemf47368b2011-10-31 20:08:25 +00008958 // In order to have valid types, all of the inputs must be extended from the
8959 // same source type and all of the inputs must be any or zero extend.
8960 // Scalar sizes must be a power of two.
Michael Liaofac14ab2012-10-23 23:06:52 +00008961 EVT OutScalarTy = VT.getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008962 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00008963 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
8964 isPowerOf2_32(SourceType.getSizeInBits());
8965
Nadav Rotem6431ff92012-03-15 08:49:06 +00008966 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
8967 // turn into a single shuffle instruction.
Michael Liaofac14ab2012-10-23 23:06:52 +00008968 if (!ValidTypes)
8969 return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008970
Michael Liaofac14ab2012-10-23 23:06:52 +00008971 bool isLE = TLI.isLittleEndian();
8972 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
8973 assert(ElemRatio > 1 && "Invalid element size ratio");
8974 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
8975 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008976
Michael Liaofac14ab2012-10-23 23:06:52 +00008977 unsigned NewBVElems = ElemRatio * VT.getVectorNumElements();
8978 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008979
Michael Liaofac14ab2012-10-23 23:06:52 +00008980 // Populate the new build_vector
Jakub Staszakadf38912012-10-24 00:38:25 +00008981 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Michael Liaofac14ab2012-10-23 23:06:52 +00008982 SDValue Cast = N->getOperand(i);
8983 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
8984 Cast.getOpcode() == ISD::ZERO_EXTEND ||
8985 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
8986 SDValue In;
8987 if (Cast.getOpcode() == ISD::UNDEF)
8988 In = DAG.getUNDEF(SourceType);
8989 else
8990 In = Cast->getOperand(0);
8991 unsigned Index = isLE ? (i * ElemRatio) :
8992 (i * ElemRatio + (ElemRatio - 1));
Nadav Rotemb00418a2011-10-29 21:23:04 +00008993
Michael Liaofac14ab2012-10-23 23:06:52 +00008994 assert(Index < Ops.size() && "Invalid index");
8995 Ops[Index] = In;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008996 }
Chris Lattnerca242442006-03-19 01:27:56 +00008997
Michael Liaofac14ab2012-10-23 23:06:52 +00008998 // The type of the new BUILD_VECTOR node.
8999 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
9000 assert(VecVT.getSizeInBits() == VT.getSizeInBits() &&
9001 "Invalid vector size");
9002 // Check if the new vector type is legal.
9003 if (!isTypeLegal(VecVT)) return SDValue();
9004
9005 // Make the new BUILD_VECTOR.
9006 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, &Ops[0], Ops.size());
9007
9008 // The new BUILD_VECTOR node has the potential to be further optimized.
9009 AddToWorkList(BV.getNode());
9010 // Bitcast to the desired type.
9011 return DAG.getNode(ISD::BITCAST, dl, VT, BV);
9012}
9013
Michael Liao1a5cc712012-10-24 04:14:18 +00009014SDValue DAGCombiner::reduceBuildVecConvertToConvertBuildVec(SDNode *N) {
9015 EVT VT = N->getValueType(0);
9016
9017 unsigned NumInScalars = N->getNumOperands();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009018 SDLoc dl(N);
Michael Liao1a5cc712012-10-24 04:14:18 +00009019
9020 EVT SrcVT = MVT::Other;
9021 unsigned Opcode = ISD::DELETED_NODE;
9022 unsigned NumDefs = 0;
9023
9024 for (unsigned i = 0; i != NumInScalars; ++i) {
9025 SDValue In = N->getOperand(i);
9026 unsigned Opc = In.getOpcode();
9027
9028 if (Opc == ISD::UNDEF)
9029 continue;
9030
9031 // If all scalar values are floats and converted from integers.
9032 if (Opcode == ISD::DELETED_NODE &&
9033 (Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP)) {
9034 Opcode = Opc;
Michael Liao1a5cc712012-10-24 04:14:18 +00009035 }
Tom Stellardd40758b2013-01-02 22:13:01 +00009036
Michael Liao1a5cc712012-10-24 04:14:18 +00009037 if (Opc != Opcode)
9038 return SDValue();
9039
9040 EVT InVT = In.getOperand(0).getValueType();
9041
9042 // If all scalar values are typed differently, bail out. It's chosen to
9043 // simplify BUILD_VECTOR of integer types.
9044 if (SrcVT == MVT::Other)
9045 SrcVT = InVT;
9046 if (SrcVT != InVT)
9047 return SDValue();
9048 NumDefs++;
9049 }
9050
9051 // If the vector has just one element defined, it's not worth to fold it into
9052 // a vectorized one.
9053 if (NumDefs < 2)
9054 return SDValue();
9055
9056 assert((Opcode == ISD::UINT_TO_FP || Opcode == ISD::SINT_TO_FP)
9057 && "Should only handle conversion from integer to float.");
9058 assert(SrcVT != MVT::Other && "Cannot determine source type!");
9059
9060 EVT NVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumInScalars);
Tom Stellardd40758b2013-01-02 22:13:01 +00009061
9062 if (!TLI.isOperationLegalOrCustom(Opcode, NVT))
9063 return SDValue();
9064
Michael Liao1a5cc712012-10-24 04:14:18 +00009065 SmallVector<SDValue, 8> Opnds;
9066 for (unsigned i = 0; i != NumInScalars; ++i) {
9067 SDValue In = N->getOperand(i);
9068
9069 if (In.getOpcode() == ISD::UNDEF)
9070 Opnds.push_back(DAG.getUNDEF(SrcVT));
9071 else
9072 Opnds.push_back(In.getOperand(0));
9073 }
9074 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT,
9075 &Opnds[0], Opnds.size());
9076 AddToWorkList(BV.getNode());
9077
9078 return DAG.getNode(Opcode, dl, VT, BV);
9079}
9080
Michael Liaofac14ab2012-10-23 23:06:52 +00009081SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
9082 unsigned NumInScalars = N->getNumOperands();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009083 SDLoc dl(N);
Michael Liaofac14ab2012-10-23 23:06:52 +00009084 EVT VT = N->getValueType(0);
9085
9086 // A vector built entirely of undefs is undef.
9087 if (ISD::allOperandsUndef(N))
9088 return DAG.getUNDEF(VT);
9089
9090 SDValue V = reduceBuildVecExtToExtBuildVec(N);
9091 if (V.getNode())
9092 return V;
9093
Michael Liao1a5cc712012-10-24 04:14:18 +00009094 V = reduceBuildVecConvertToConvertBuildVec(N);
9095 if (V.getNode())
9096 return V;
9097
Dan Gohman7f321562007-06-25 16:23:39 +00009098 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
9099 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
9100 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00009101
9102 // May only combine to shuffle after legalize if shuffle is legal.
9103 if (LegalOperations &&
9104 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
9105 return SDValue();
9106
Dan Gohman475871a2008-07-27 21:46:04 +00009107 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00009108 for (unsigned i = 0; i != NumInScalars; ++i) {
9109 // Ignore undef inputs.
9110 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00009111
Dan Gohman7f321562007-06-25 16:23:39 +00009112 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00009113 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00009114 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00009115 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00009116 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009117 break;
9118 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009119
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009120 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00009121 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009122 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
9123 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00009124
Gabor Greifba36cb52008-08-28 21:40:38 +00009125 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00009126 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00009127 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00009128 VecIn2 = ExtractedFromVec;
9129 } else {
9130 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00009131 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009132 break;
9133 }
9134 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009135
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009136 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00009137 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00009138 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00009139 for (unsigned i = 0; i != NumInScalars; ++i) {
9140 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00009141 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009142 continue;
9143 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009144
Rafael Espindola15684b22009-04-24 12:40:33 +00009145 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00009146 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00009147 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009148 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00009149 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
9150 if (ExtIndex > VT.getVectorNumElements())
9151 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009152
Nate Begeman5a5ca152009-04-29 05:20:52 +00009153 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009154 continue;
9155 }
9156
9157 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00009158 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00009159 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009160 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009161
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009162 // We can't generate a shuffle node with mismatched input and output types.
9163 // Attempt to transform a single input vector to the correct type.
9164 if ((VT != VecIn1.getValueType())) {
9165 // We don't support shuffeling between TWO values of different types.
9166 if (VecIn2.getNode() != 0)
9167 return SDValue();
9168
9169 // We only support widening of vectors which are half the size of the
9170 // output registers. For example XMM->YMM widening on X86 with AVX.
9171 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
9172 return SDValue();
9173
James Molloy8cd08bf2012-09-10 14:01:21 +00009174 // If the input vector type has a different base type to the output
9175 // vector type, bail out.
9176 if (VecIn1.getValueType().getVectorElementType() !=
9177 VT.getVectorElementType())
9178 return SDValue();
9179
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00009180 // Widen the input vector by adding undef values.
Michael Liaofac14ab2012-10-23 23:06:52 +00009181 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00009182 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009183 }
9184
9185 // If VecIn2 is unused then change it to undef.
9186 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
9187
Nadav Rotem6dfabb62012-09-20 08:53:31 +00009188 // Check that we were able to transform all incoming values to the same
9189 // type.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00009190 if (VecIn2.getValueType() != VecIn1.getValueType() ||
9191 VecIn1.getValueType() != VT)
9192 return SDValue();
9193
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009194 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00009195 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00009196 return SDValue();
9197
Dan Gohman7f321562007-06-25 16:23:39 +00009198 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00009199 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00009200 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009201 Ops[1] = VecIn2;
Michael Liaofac14ab2012-10-23 23:06:52 +00009202 return DAG.getVectorShuffle(VT, dl, Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009203 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009204
Dan Gohman475871a2008-07-27 21:46:04 +00009205 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00009206}
9207
Dan Gohman475871a2008-07-27 21:46:04 +00009208SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00009209 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
9210 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
9211 // inputs come from at most two distinct vectors, turn this into a shuffle
9212 // node.
9213
9214 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00009215 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00009216 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00009217
Nadav Rotemb7e230d2012-07-14 21:30:27 +00009218 // Check if all of the operands are undefs.
Nadav Rotemb87bdac2012-07-15 08:38:23 +00009219 if (ISD::allOperandsUndef(N))
Nadav Rotemb7e230d2012-07-14 21:30:27 +00009220 return DAG.getUNDEF(N->getValueType(0));
9221
Nadav Rotemb2ed5fa2013-05-01 19:18:51 +00009222 // Type legalization of vectors and DAG canonicalization of SHUFFLE_VECTOR
9223 // nodes often generate nop CONCAT_VECTOR nodes.
9224 // Scan the CONCAT_VECTOR operands and look for a CONCAT operations that
9225 // place the incoming vectors at the exact same location.
9226 SDValue SingleSource = SDValue();
9227 unsigned PartNumElem = N->getOperand(0).getValueType().getVectorNumElements();
9228
9229 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
9230 SDValue Op = N->getOperand(i);
9231
9232 if (Op.getOpcode() == ISD::UNDEF)
9233 continue;
9234
9235 // Check if this is the identity extract:
9236 if (Op.getOpcode() != ISD::EXTRACT_SUBVECTOR)
9237 return SDValue();
9238
9239 // Find the single incoming vector for the extract_subvector.
9240 if (SingleSource.getNode()) {
9241 if (Op.getOperand(0) != SingleSource)
9242 return SDValue();
9243 } else {
9244 SingleSource = Op.getOperand(0);
Michael Kuperstein27202482013-05-06 08:06:13 +00009245
9246 // Check the source type is the same as the type of the result.
9247 // If not, this concat may extend the vector, so we can not
9248 // optimize it away.
9249 if (SingleSource.getValueType() != N->getValueType(0))
9250 return SDValue();
Nadav Rotemb2ed5fa2013-05-01 19:18:51 +00009251 }
9252
9253 unsigned IdentityIndex = i * PartNumElem;
9254 ConstantSDNode *CS = dyn_cast<ConstantSDNode>(Op.getOperand(1));
9255 // The extract index must be constant.
9256 if (!CS)
9257 return SDValue();
Stephen Lin155615d2013-07-08 00:37:03 +00009258
Nadav Rotemb2ed5fa2013-05-01 19:18:51 +00009259 // Check that we are reading from the identity index.
9260 if (CS->getZExtValue() != IdentityIndex)
9261 return SDValue();
9262 }
9263
9264 if (SingleSource.getNode())
9265 return SingleSource;
Stephen Lin155615d2013-07-08 00:37:03 +00009266
Dan Gohman475871a2008-07-27 21:46:04 +00009267 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00009268}
9269
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00009270SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
9271 EVT NVT = N->getValueType(0);
9272 SDValue V = N->getOperand(0);
9273
Michael Liao13429e22012-10-17 20:48:33 +00009274 if (V->getOpcode() == ISD::CONCAT_VECTORS) {
9275 // Combine:
9276 // (extract_subvec (concat V1, V2, ...), i)
9277 // Into:
9278 // Vi if possible
Michael Liao9aecdb52012-10-19 03:17:00 +00009279 // Only operand 0 is checked as 'concat' assumes all inputs of the same type.
9280 if (V->getOperand(0).getValueType() != NVT)
9281 return SDValue();
Michael Liao13429e22012-10-17 20:48:33 +00009282 unsigned Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
9283 unsigned NumElems = NVT.getVectorNumElements();
9284 assert((Idx % NumElems) == 0 &&
9285 "IDX in concat is not a multiple of the result vector length.");
9286 return V->getOperand(Idx / NumElems);
9287 }
9288
Michael Liaob4f98ea2013-03-25 23:47:35 +00009289 // Skip bitcasting
9290 if (V->getOpcode() == ISD::BITCAST)
9291 V = V.getOperand(0);
9292
9293 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009294 SDLoc dl(N);
Michael Liaob4f98ea2013-03-25 23:47:35 +00009295 // Handle only simple case where vector being inserted and vector
9296 // being extracted are of same type, and are half size of larger vectors.
9297 EVT BigVT = V->getOperand(0).getValueType();
9298 EVT SmallVT = V->getOperand(1).getValueType();
9299 if (!NVT.bitsEq(SmallVT) || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
9300 return SDValue();
9301
9302 // Only handle cases where both indexes are constants with the same type.
9303 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
9304 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
9305
9306 if (InsIdx && ExtIdx &&
9307 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
9308 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
9309 // Combine:
9310 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
9311 // Into:
9312 // indices are equal or bit offsets are equal => V1
9313 // otherwise => (extract_subvec V1, ExtIdx)
9314 if (InsIdx->getZExtValue() * SmallVT.getScalarType().getSizeInBits() ==
9315 ExtIdx->getZExtValue() * NVT.getScalarType().getSizeInBits())
9316 return DAG.getNode(ISD::BITCAST, dl, NVT, V->getOperand(1));
9317 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NVT,
9318 DAG.getNode(ISD::BITCAST, dl,
9319 N->getOperand(0).getValueType(),
9320 V->getOperand(0)), N->getOperand(1));
9321 }
9322 }
9323
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00009324 return SDValue();
9325}
9326
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009327// Tries to turn a shuffle of two CONCAT_VECTORS into a single concat.
9328static SDValue partitionShuffleOfConcats(SDNode *N, SelectionDAG &DAG) {
9329 EVT VT = N->getValueType(0);
9330 unsigned NumElts = VT.getVectorNumElements();
9331
9332 SDValue N0 = N->getOperand(0);
9333 SDValue N1 = N->getOperand(1);
9334 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
9335
9336 SmallVector<SDValue, 4> Ops;
9337 EVT ConcatVT = N0.getOperand(0).getValueType();
9338 unsigned NumElemsPerConcat = ConcatVT.getVectorNumElements();
9339 unsigned NumConcats = NumElts / NumElemsPerConcat;
9340
9341 // Look at every vector that's inserted. We're looking for exact
9342 // subvector-sized copies from a concatenated vector
9343 for (unsigned I = 0; I != NumConcats; ++I) {
9344 // Make sure we're dealing with a copy.
9345 unsigned Begin = I * NumElemsPerConcat;
Hao Liu3778c042013-05-13 02:07:05 +00009346 bool AllUndef = true, NoUndef = true;
9347 for (unsigned J = Begin; J != Begin + NumElemsPerConcat; ++J) {
9348 if (SVN->getMaskElt(J) >= 0)
9349 AllUndef = false;
9350 else
9351 NoUndef = false;
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009352 }
9353
Hao Liu3778c042013-05-13 02:07:05 +00009354 if (NoUndef) {
Hao Liu3778c042013-05-13 02:07:05 +00009355 if (SVN->getMaskElt(Begin) % NumElemsPerConcat != 0)
9356 return SDValue();
9357
9358 for (unsigned J = 1; J != NumElemsPerConcat; ++J)
9359 if (SVN->getMaskElt(Begin + J - 1) + 1 != SVN->getMaskElt(Begin + J))
9360 return SDValue();
9361
9362 unsigned FirstElt = SVN->getMaskElt(Begin) / NumElemsPerConcat;
9363 if (FirstElt < N0.getNumOperands())
9364 Ops.push_back(N0.getOperand(FirstElt));
9365 else
9366 Ops.push_back(N1.getOperand(FirstElt - N0.getNumOperands()));
9367
9368 } else if (AllUndef) {
9369 Ops.push_back(DAG.getUNDEF(N0.getOperand(0).getValueType()));
9370 } else { // Mixed with general masks and undefs, can't do optimization.
9371 return SDValue();
9372 }
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009373 }
9374
Andrew Trickac6d9be2013-05-25 02:42:55 +00009375 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, Ops.data(),
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009376 Ops.size());
9377}
9378
Dan Gohman475871a2008-07-27 21:46:04 +00009379SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00009380 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00009381 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00009382
Mon P Wangaeb06d22008-11-10 04:46:22 +00009383 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00009384 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00009385
Craig Topperae1bec52012-04-09 05:16:56 +00009386 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00009387
Craig Topper481b79c2012-01-04 08:07:43 +00009388 // Canonicalize shuffle undef, undef -> undef
9389 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
9390 return DAG.getUNDEF(VT);
9391
9392 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
9393
9394 // Canonicalize shuffle v, v -> v, undef
9395 if (N0 == N1) {
9396 SmallVector<int, 8> NewMask;
9397 for (unsigned i = 0; i != NumElts; ++i) {
9398 int Idx = SVN->getMaskElt(i);
9399 if (Idx >= (int)NumElts) Idx -= NumElts;
9400 NewMask.push_back(Idx);
9401 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00009402 return DAG.getVectorShuffle(VT, SDLoc(N), N0, DAG.getUNDEF(VT),
Craig Topper481b79c2012-01-04 08:07:43 +00009403 &NewMask[0]);
9404 }
9405
9406 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
9407 if (N0.getOpcode() == ISD::UNDEF) {
9408 SmallVector<int, 8> NewMask;
9409 for (unsigned i = 0; i != NumElts; ++i) {
9410 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00009411 if (Idx >= 0) {
Craig Topper01d22aa2013-08-08 07:38:55 +00009412 if (Idx >= (int)NumElts)
Craig Topper4b206bd2012-04-09 05:55:33 +00009413 Idx -= NumElts;
Craig Topper01d22aa2013-08-08 07:38:55 +00009414 else
9415 Idx = -1; // remove reference to lhs
Craig Topper4b206bd2012-04-09 05:55:33 +00009416 }
9417 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00009418 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00009419 return DAG.getVectorShuffle(VT, SDLoc(N), N1, DAG.getUNDEF(VT),
Craig Topper481b79c2012-01-04 08:07:43 +00009420 &NewMask[0]);
9421 }
9422
9423 // Remove references to rhs if it is undef
9424 if (N1.getOpcode() == ISD::UNDEF) {
9425 bool Changed = false;
9426 SmallVector<int, 8> NewMask;
9427 for (unsigned i = 0; i != NumElts; ++i) {
9428 int Idx = SVN->getMaskElt(i);
9429 if (Idx >= (int)NumElts) {
9430 Idx = -1;
9431 Changed = true;
9432 }
9433 NewMask.push_back(Idx);
9434 }
9435 if (Changed)
Andrew Trickac6d9be2013-05-25 02:42:55 +00009436 return DAG.getVectorShuffle(VT, SDLoc(N), N0, N1, &NewMask[0]);
Craig Topper481b79c2012-01-04 08:07:43 +00009437 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00009438
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009439 // If it is a splat, check if the argument vector is another splat or a
9440 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009441 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00009442 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00009443
Dan Gohman7f321562007-06-25 16:23:39 +00009444 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00009445 // not the number of vector elements, look through it. Be careful not to
9446 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009447 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00009448 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00009449 if (ConvInput.getValueType().isVector() &&
9450 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00009451 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00009452 }
9453
Dan Gohman7f321562007-06-25 16:23:39 +00009454 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009455 assert(V->getNumOperands() == NumElts &&
9456 "BUILD_VECTOR has wrong number of operands");
9457 SDValue Base;
9458 bool AllSame = true;
9459 for (unsigned i = 0; i != NumElts; ++i) {
9460 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
9461 Base = V->getOperand(i);
9462 break;
Evan Cheng917ec982006-07-21 08:25:53 +00009463 }
Evan Cheng917ec982006-07-21 08:25:53 +00009464 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009465 // Splat of <u, u, u, u>, return <u, u, u, u>
9466 if (!Base.getNode())
9467 return N0;
9468 for (unsigned i = 0; i != NumElts; ++i) {
9469 if (V->getOperand(i) != Base) {
9470 AllSame = false;
9471 break;
9472 }
9473 }
9474 // Splat of <x, x, x, x>, return <x, x, x, x>
9475 if (AllSame)
9476 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00009477 }
9478 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00009479
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009480 if (N0.getOpcode() == ISD::CONCAT_VECTORS &&
9481 Level < AfterLegalizeVectorOps &&
9482 (N1.getOpcode() == ISD::UNDEF ||
9483 (N1.getOpcode() == ISD::CONCAT_VECTORS &&
9484 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()))) {
9485 SDValue V = partitionShuffleOfConcats(N, DAG);
9486
9487 if (V.getNode())
9488 return V;
9489 }
9490
Nadav Rotem4ac90812012-04-01 19:31:22 +00009491 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009492 // and it reverses the swizzle of the previous shuffle then we can
9493 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00009494 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
9495 N1.getOpcode() == ISD::UNDEF) {
9496
Nadav Rotem4ac90812012-04-01 19:31:22 +00009497 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
9498
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009499 // Shuffle nodes can only reverse shuffles with a single non-undef value.
9500 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
9501 return SDValue();
9502
Craig Topperae1bec52012-04-09 05:16:56 +00009503 // The incoming shuffle must be of the same type as the result of the
9504 // current shuffle.
9505 assert(OtherSV->getOperand(0).getValueType() == VT &&
9506 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00009507
9508 for (unsigned i = 0; i != NumElts; ++i) {
9509 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00009510 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00009511 // Next, this index comes from the first value, which is the incoming
9512 // shuffle. Adopt the incoming index.
9513 if (Idx >= 0)
9514 Idx = OtherSV->getMaskElt(Idx);
9515
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009516 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00009517 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009518 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00009519 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009520
9521 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00009522 }
9523
Dan Gohman475871a2008-07-27 21:46:04 +00009524 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00009525}
9526
Evan Cheng44f1f092006-04-20 08:56:16 +00009527/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00009528/// an AND to a vector_shuffle with the destination vector and a zero vector.
9529/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00009530/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00009531SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00009532 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009533 SDLoc dl(N);
Dan Gohman475871a2008-07-27 21:46:04 +00009534 SDValue LHS = N->getOperand(0);
9535 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00009536 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009537 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00009538 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00009539 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00009540 SmallVector<int, 8> Indices;
9541 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00009542 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00009543 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00009544 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00009545 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00009546
9547 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00009548 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00009549 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00009550 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00009551 else
Dan Gohman475871a2008-07-27 21:46:04 +00009552 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009553 }
9554
9555 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00009556 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00009557 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00009558 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009559
Dan Gohman7f321562007-06-25 16:23:39 +00009560 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00009561 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00009562 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00009563 DAG.getConstant(0, EltVT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00009564 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Nate Begeman9008ca62009-04-27 18:41:29 +00009565 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009566 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00009567 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009568 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00009569 }
9570 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009571
Dan Gohman475871a2008-07-27 21:46:04 +00009572 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009573}
9574
Dan Gohman7f321562007-06-25 16:23:39 +00009575/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00009576SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Bob Wilsond7273432010-12-17 23:06:49 +00009577 assert(N->getValueType(0).isVector() &&
9578 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00009579
Dan Gohman475871a2008-07-27 21:46:04 +00009580 SDValue LHS = N->getOperand(0);
9581 SDValue RHS = N->getOperand(1);
9582 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00009583 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00009584
Dan Gohman7f321562007-06-25 16:23:39 +00009585 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00009586 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00009587 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00009588 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00009589 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00009590 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00009591 SDValue LHSOp = LHS.getOperand(i);
9592 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00009593 // If these two elements can't be folded, bail out.
9594 if ((LHSOp.getOpcode() != ISD::UNDEF &&
9595 LHSOp.getOpcode() != ISD::Constant &&
9596 LHSOp.getOpcode() != ISD::ConstantFP) ||
9597 (RHSOp.getOpcode() != ISD::UNDEF &&
9598 RHSOp.getOpcode() != ISD::Constant &&
9599 RHSOp.getOpcode() != ISD::ConstantFP))
9600 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00009601
Evan Cheng7b336a82006-05-31 06:08:35 +00009602 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00009603 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
9604 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00009605 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00009606 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00009607 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00009608 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00009609 break;
9610 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009611
Bob Wilsond7273432010-12-17 23:06:49 +00009612 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00009613 EVT RVT = RHSOp.getValueType();
9614 if (RVT != VT) {
9615 // Integer BUILD_VECTOR operands may have types larger than the element
9616 // size (e.g., when the element type is not legal). Prior to type
9617 // legalization, the types may not match between the two BUILD_VECTORS.
9618 // Truncate one of the operands to make them match.
9619 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009620 RHSOp = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, RHSOp);
Bob Wilsondb2b18f2011-10-18 17:34:47 +00009621 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009622 LHSOp = DAG.getNode(ISD::TRUNCATE, SDLoc(N), RVT, LHSOp);
Bob Wilsondb2b18f2011-10-18 17:34:47 +00009623 VT = RVT;
9624 }
9625 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00009626 SDValue FoldOp = DAG.getNode(N->getOpcode(), SDLoc(LHS), VT,
Evan Chenga0839882010-05-18 00:03:40 +00009627 LHSOp, RHSOp);
9628 if (FoldOp.getOpcode() != ISD::UNDEF &&
9629 FoldOp.getOpcode() != ISD::Constant &&
9630 FoldOp.getOpcode() != ISD::ConstantFP)
9631 break;
9632 Ops.push_back(FoldOp);
9633 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00009634 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009635
Bob Wilsond7273432010-12-17 23:06:49 +00009636 if (Ops.size() == LHS.getNumOperands())
Andrew Trickac6d9be2013-05-25 02:42:55 +00009637 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Bob Wilsond7273432010-12-17 23:06:49 +00009638 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00009639 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009640
Dan Gohman475871a2008-07-27 21:46:04 +00009641 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00009642}
9643
Craig Topperdd201ff2012-09-11 01:45:21 +00009644/// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG.
9645SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) {
Craig Topperdd201ff2012-09-11 01:45:21 +00009646 assert(N->getValueType(0).isVector() &&
9647 "SimplifyVUnaryOp only works on vectors!");
9648
9649 SDValue N0 = N->getOperand(0);
9650
9651 if (N0.getOpcode() != ISD::BUILD_VECTOR)
9652 return SDValue();
9653
9654 // Operand is a BUILD_VECTOR node, see if we can constant fold it.
9655 SmallVector<SDValue, 8> Ops;
9656 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
9657 SDValue Op = N0.getOperand(i);
9658 if (Op.getOpcode() != ISD::UNDEF &&
9659 Op.getOpcode() != ISD::ConstantFP)
9660 break;
9661 EVT EltVT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009662 SDValue FoldOp = DAG.getNode(N->getOpcode(), SDLoc(N0), EltVT, Op);
Craig Topperdd201ff2012-09-11 01:45:21 +00009663 if (FoldOp.getOpcode() != ISD::UNDEF &&
9664 FoldOp.getOpcode() != ISD::ConstantFP)
9665 break;
9666 Ops.push_back(FoldOp);
9667 AddToWorkList(FoldOp.getNode());
9668 }
9669
9670 if (Ops.size() != N0.getNumOperands())
9671 return SDValue();
9672
Andrew Trickac6d9be2013-05-25 02:42:55 +00009673 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Craig Topperdd201ff2012-09-11 01:45:21 +00009674 N0.getValueType(), &Ops[0], Ops.size());
9675}
9676
Andrew Trickac6d9be2013-05-25 02:42:55 +00009677SDValue DAGCombiner::SimplifySelect(SDLoc DL, SDValue N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00009678 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00009679 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00009680
Bill Wendling836ca7d2009-01-30 23:59:18 +00009681 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00009682 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009683
Nate Begemanf845b452005-10-08 00:29:44 +00009684 // If we got a simplified select_cc node back from SimplifySelectCC, then
9685 // break it down into a new SETCC node, and a new SELECT node, and then return
9686 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00009687 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009688 // Check to see if we got a select_cc back (to turn into setcc/select).
9689 // Otherwise, just return whatever node we got back, like fabs.
9690 if (SCC.getOpcode() == ISD::SELECT_CC) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009691 SDValue SETCC = DAG.getNode(ISD::SETCC, SDLoc(N0),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009692 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009693 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009694 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00009695 AddToWorkList(SETCC.getNode());
Matt Arsenaultb05e4772013-06-14 22:04:37 +00009696 return DAG.getSelect(SDLoc(SCC), SCC.getValueType(),
9697 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00009698 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009699
Nate Begemanf845b452005-10-08 00:29:44 +00009700 return SCC;
9701 }
Dan Gohman475871a2008-07-27 21:46:04 +00009702 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00009703}
9704
Chris Lattner40c62d52005-10-18 06:04:22 +00009705/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
9706/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00009707/// select. Callers of this should assume that TheSelect is deleted if this
9708/// returns true. As such, they should return the appropriate thing (e.g. the
9709/// node) back to the top-level of the DAG combiner loop to avoid it being
9710/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00009711bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00009712 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009713
Nadav Rotemf94fdb62011-02-11 19:57:47 +00009714 // Cannot simplify select with vector condition
9715 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
9716
Chris Lattner40c62d52005-10-18 06:04:22 +00009717 // If this is a select from two identical things, try to pull the operation
9718 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00009719 if (LHS.getOpcode() != RHS.getOpcode() ||
9720 !LHS.hasOneUse() || !RHS.hasOneUse())
9721 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009722
Chris Lattner18061612010-09-21 15:46:59 +00009723 // If this is a load and the token chain is identical, replace the select
9724 // of two loads with a load through a select of the address to load from.
9725 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
9726 // constants have been dropped into the constant pool.
9727 if (LHS.getOpcode() == ISD::LOAD) {
9728 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
9729 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009730
Chris Lattner18061612010-09-21 15:46:59 +00009731 // Token chains must be identical.
9732 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00009733 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00009734 LLD->isVolatile() || RLD->isVolatile() ||
9735 // If this is an EXTLOAD, the VT's must match.
9736 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00009737 // If this is an EXTLOAD, the kind of extension must match.
9738 (LLD->getExtensionType() != RLD->getExtensionType() &&
9739 // The only exception is if one of the extensions is anyext.
9740 LLD->getExtensionType() != ISD::EXTLOAD &&
9741 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00009742 // FIXME: this discards src value information. This is
9743 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00009744 // both potential memory locations. Since we are discarding
9745 // src value info, don't do the transformation if the memory
9746 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00009747 LLD->getPointerInfo().getAddrSpace() != 0 ||
Pete Cooperb0fde6d2013-02-12 03:14:50 +00009748 RLD->getPointerInfo().getAddrSpace() != 0 ||
9749 !TLI.isOperationLegalOrCustom(TheSelect->getOpcode(),
9750 LLD->getBasePtr().getValueType()))
Chris Lattner18061612010-09-21 15:46:59 +00009751 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009752
Chris Lattnerf1658062010-09-21 15:58:55 +00009753 // Check that the select condition doesn't reach either load. If so,
9754 // folding this will induce a cycle into the DAG. If not, this is safe to
9755 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00009756 SDValue Addr;
9757 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00009758 SDNode *CondNode = TheSelect->getOperand(0).getNode();
9759 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
9760 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
9761 return false;
Nadav Rotem1c5bf3f2012-10-18 18:06:48 +00009762 // The loads must not depend on one another.
9763 if (LLD->isPredecessorOf(RLD) ||
9764 RLD->isPredecessorOf(LLD))
9765 return false;
Matt Arsenaultb05e4772013-06-14 22:04:37 +00009766 Addr = DAG.getSelect(SDLoc(TheSelect),
9767 LLD->getBasePtr().getValueType(),
9768 TheSelect->getOperand(0), LLD->getBasePtr(),
9769 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00009770 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00009771 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
9772 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
9773
9774 if ((LLD->hasAnyUseOfValue(1) &&
9775 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00009776 (RLD->hasAnyUseOfValue(1) &&
9777 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00009778 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009779
Andrew Trickac6d9be2013-05-25 02:42:55 +00009780 Addr = DAG.getNode(ISD::SELECT_CC, SDLoc(TheSelect),
Chris Lattnerf1658062010-09-21 15:58:55 +00009781 LLD->getBasePtr().getValueType(),
9782 TheSelect->getOperand(0),
9783 TheSelect->getOperand(1),
9784 LLD->getBasePtr(), RLD->getBasePtr(),
9785 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00009786 }
9787
Chris Lattnerf1658062010-09-21 15:58:55 +00009788 SDValue Load;
9789 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
9790 Load = DAG.getLoad(TheSelect->getValueType(0),
Andrew Trickac6d9be2013-05-25 02:42:55 +00009791 SDLoc(TheSelect),
Chris Lattnerf1658062010-09-21 15:58:55 +00009792 // FIXME: Discards pointer info.
9793 LLD->getChain(), Addr, MachinePointerInfo(),
9794 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009795 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00009796 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00009797 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
9798 RLD->getExtensionType() : LLD->getExtensionType(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00009799 SDLoc(TheSelect),
Stuart Hastingsa9011292011-02-16 16:23:55 +00009800 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00009801 // FIXME: Discards pointer info.
9802 LLD->getChain(), Addr, MachinePointerInfo(),
9803 LLD->getMemoryVT(), LLD->isVolatile(),
9804 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00009805 }
Chris Lattnerf1658062010-09-21 15:58:55 +00009806
9807 // Users of the select now use the result of the load.
9808 CombineTo(TheSelect, Load);
9809
9810 // Users of the old loads now use the new load's chain. We know the
9811 // old-load value is dead now.
9812 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
9813 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
9814 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00009815 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009816
Chris Lattner40c62d52005-10-18 06:04:22 +00009817 return false;
9818}
9819
Chris Lattner600fec32009-03-11 05:08:08 +00009820/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
9821/// where 'cond' is the comparison specified by CC.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009822SDValue DAGCombiner::SimplifySelectCC(SDLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00009823 SDValue N2, SDValue N3,
9824 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00009825 // (x ? y : y) -> y.
9826 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009827
Owen Andersone50ed302009-08-10 22:56:29 +00009828 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00009829 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
9830 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
9831 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009832
9833 // Determine if the condition we're dealing with is constant
Matt Arsenault225ed702013-05-18 00:21:46 +00009834 SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009835 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00009836 if (SCC.getNode()) AddToWorkList(SCC.getNode());
9837 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009838
9839 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00009840 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009841 return N2;
9842 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00009843 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009844 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00009845
Nate Begemanf845b452005-10-08 00:29:44 +00009846 // Check to see if we can simplify the select into an fabs node
9847 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
9848 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00009849 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009850 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
9851 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
9852 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
9853 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009854 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009855
Nate Begemanf845b452005-10-08 00:29:44 +00009856 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
9857 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
9858 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
9859 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009860 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00009861 }
9862 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009863
Chris Lattner600fec32009-03-11 05:08:08 +00009864 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
9865 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
9866 // in it. This is a win when the constant is not otherwise available because
9867 // it replaces two constant pool loads with one. We only do this if the FP
9868 // type is known to be legal, because if it isn't, then we are before legalize
9869 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00009870 // messing with soft float) and if the ConstantFP is not legal, because if
9871 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00009872 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
9873 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
9874 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00009875 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
9876 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00009877 // If both constants have multiple uses, then we won't need to do an
9878 // extra load, they are likely around in registers for other users.
9879 (TV->hasOneUse() || FV->hasOneUse())) {
9880 Constant *Elts[] = {
9881 const_cast<ConstantFP*>(FV->getConstantFPValue()),
9882 const_cast<ConstantFP*>(TV->getConstantFPValue())
9883 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009884 Type *FPTy = Elts[0]->getType();
Micah Villmow3574eca2012-10-08 16:38:25 +00009885 const DataLayout &TD = *TLI.getDataLayout();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009886
Chris Lattner600fec32009-03-11 05:08:08 +00009887 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00009888 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00009889 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
9890 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00009891 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00009892
9893 // Get the offsets to the 0 and 1 element of the array so that we can
9894 // select between them.
9895 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00009896 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00009897 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009898
Chris Lattner600fec32009-03-11 05:08:08 +00009899 SDValue Cond = DAG.getSetCC(DL,
Matt Arsenault225ed702013-05-18 00:21:46 +00009900 getSetCCResultType(N0.getValueType()),
Chris Lattner600fec32009-03-11 05:08:08 +00009901 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00009902 AddToWorkList(Cond.getNode());
Matt Arsenaultb05e4772013-06-14 22:04:37 +00009903 SDValue CstOffset = DAG.getSelect(DL, Zero.getValueType(),
9904 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00009905 AddToWorkList(CstOffset.getNode());
Tom Stellardedd08f72013-08-26 15:06:10 +00009906 CPIdx = DAG.getNode(ISD::ADD, DL, CPIdx.getValueType(), CPIdx,
Chris Lattner600fec32009-03-11 05:08:08 +00009907 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00009908 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009909 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00009910 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00009911 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00009912
9913 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009914 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009915
Nate Begemanf845b452005-10-08 00:29:44 +00009916 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00009917 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00009918 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00009919 (N1C->isNullValue() || // (a < 0) ? b : 0
9920 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00009921 EVT XType = N0.getValueType();
9922 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00009923 if (XType.bitsGE(AType)) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00009924 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00009925 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00009926 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
9927 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00009928 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00009929 SDValue ShCt = DAG.getConstant(ShCtV,
9930 getShiftAmountTy(N0.getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00009931 SDValue Shift = DAG.getNode(ISD::SRL, SDLoc(N0),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009932 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00009933 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009934
Duncan Sands8e4eb092008-06-08 20:54:56 +00009935 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009936 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009937 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009938 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009939
9940 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009941 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009942
Andrew Trickac6d9be2013-05-25 02:42:55 +00009943 SDValue Shift = DAG.getNode(ISD::SRA, SDLoc(N0),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009944 XType, N0,
9945 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009946 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00009947 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009948
Duncan Sands8e4eb092008-06-08 20:54:56 +00009949 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009950 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009951 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009952 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009953
9954 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009955 }
9956 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009957
Owen Andersoned1088a2010-09-22 22:58:22 +00009958 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
9959 // where y is has a single bit set.
9960 // A plaintext description would be, we can turn the SELECT_CC into an AND
9961 // when the condition can be materialized as an all-ones register. Any
9962 // single bit-test can be materialized as an all-ones register with
9963 // shift-left and shift-right-arith.
9964 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
9965 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009966 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00009967 N2C && N2C->isNullValue()) {
9968 SDValue AndLHS = N0->getOperand(0);
9969 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
9970 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
9971 // Shift the tested bit over the sign bit.
9972 APInt AndMask = ConstAndRHS->getAPIntValue();
9973 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00009974 DAG.getConstant(AndMask.countLeadingZeros(),
9975 getShiftAmountTy(AndLHS.getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00009976 SDValue Shl = DAG.getNode(ISD::SHL, SDLoc(N0), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009977
Owen Andersoned1088a2010-09-22 22:58:22 +00009978 // Now arithmetic right shift it all the way over, so the result is either
9979 // all-ones, or zero.
9980 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00009981 DAG.getConstant(AndMask.getBitWidth()-1,
9982 getShiftAmountTy(Shl.getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00009983 SDValue Shr = DAG.getNode(ISD::SRA, SDLoc(N0), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009984
Owen Andersoned1088a2010-09-22 22:58:22 +00009985 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
9986 }
9987 }
9988
Nate Begeman07ed4172005-10-10 21:26:48 +00009989 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00009990 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00009991 TLI.getBooleanContents(N0.getValueType().isVector()) ==
9992 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009993
Chris Lattner1eba01e2007-04-11 06:50:51 +00009994 // If the caller doesn't want us to simplify this into a zext of a compare,
9995 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00009996 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00009997 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00009998
Nate Begeman07ed4172005-10-10 21:26:48 +00009999 // Get a SetCC of the condition
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010000 // NOTE: Don't create a SETCC if it's not legal on this target.
10001 if (!LegalOperations ||
10002 TLI.isOperationLegal(ISD::SETCC,
Matt Arsenault225ed702013-05-18 00:21:46 +000010003 LegalTypes ? getSetCCResultType(N0.getValueType()) : MVT::i1)) {
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010004 SDValue Temp, SCC;
10005 // cast from setcc result type to select result type
10006 if (LegalTypes) {
Matt Arsenault225ed702013-05-18 00:21:46 +000010007 SCC = DAG.getSetCC(DL, getSetCCResultType(N0.getValueType()),
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010008 N0, N1, CC);
10009 if (N2.getValueType().bitsLT(SCC.getValueType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +000010010 Temp = DAG.getZeroExtendInReg(SCC, SDLoc(N2),
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010011 N2.getValueType());
10012 else
Andrew Trickac6d9be2013-05-25 02:42:55 +000010013 Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2),
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010014 N2.getValueType(), SCC);
10015 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010016 SCC = DAG.getSetCC(SDLoc(N0), MVT::i1, N0, N1, CC);
10017 Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2),
Bill Wendling836ca7d2009-01-30 23:59:18 +000010018 N2.getValueType(), SCC);
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010019 }
10020
10021 AddToWorkList(SCC.getNode());
10022 AddToWorkList(Temp.getNode());
10023
10024 if (N2C->getAPIntValue() == 1)
10025 return Temp;
10026
10027 // shl setcc result by log2 n2c
10028 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
10029 DAG.getConstant(N2C->getAPIntValue().logBase2(),
10030 getShiftAmountTy(Temp.getValueType())));
Nate Begemanb0d04a72006-02-18 02:40:58 +000010031 }
Nate Begeman07ed4172005-10-10 21:26:48 +000010032 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010033
Nate Begemanf845b452005-10-08 00:29:44 +000010034 // Check to see if this is the equivalent of setcc
10035 // FIXME: Turn all of these into setcc if setcc if setcc is legal
10036 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +000010037 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +000010038 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +000010039 if (!LegalOperations ||
Matt Arsenault225ed702013-05-18 00:21:46 +000010040 TLI.isOperationLegal(ISD::SETCC, getSetCCResultType(XType))) {
10041 SDValue Res = DAG.getSetCC(DL, getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +000010042 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +000010043 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +000010044 return Res;
10045 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010046
Bill Wendling836ca7d2009-01-30 23:59:18 +000010047 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +000010048 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +000010049 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +000010050 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010051 SDValue Ctlz = DAG.getNode(ISD::CTLZ, SDLoc(N0), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +000010052 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +000010053 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +000010054 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +000010055 }
Bill Wendling836ca7d2009-01-30 23:59:18 +000010056 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +000010057 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010058 SDValue NegN0 = DAG.getNode(ISD::SUB, SDLoc(N0),
Bill Wendling836ca7d2009-01-30 23:59:18 +000010059 XType, DAG.getConstant(0, XType), N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010060 SDValue NotN0 = DAG.getNOT(SDLoc(N0), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +000010061 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +000010062 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +000010063 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +000010064 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +000010065 }
Bill Wendling836ca7d2009-01-30 23:59:18 +000010066 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +000010067 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010068 SDValue Sign = DAG.getNode(ISD::SRL, SDLoc(N0), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +000010069 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +000010070 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +000010071 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +000010072 }
10073 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010074
Benjamin Kramercde51102010-07-08 12:09:56 +000010075 // Check to see if this is an integer abs.
10076 // select_cc setg[te] X, 0, X, -X ->
10077 // select_cc setgt X, -1, X, -X ->
10078 // select_cc setl[te] X, 0, -X, X ->
10079 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +000010080 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +000010081 if (N1C) {
10082 ConstantSDNode *SubC = NULL;
10083 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
10084 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
10085 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
10086 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
10087 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
10088 (N1C->isOne() && CC == ISD::SETLT)) &&
10089 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
10090 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
10091
Owen Andersone50ed302009-08-10 22:56:29 +000010092 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +000010093 if (SubC && SubC->isNullValue() && XType.isInteger()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010094 SDValue Shift = DAG.getNode(ISD::SRA, SDLoc(N0), XType,
Benjamin Kramercde51102010-07-08 12:09:56 +000010095 N0,
10096 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +000010097 getShiftAmountTy(N0.getValueType())));
Andrew Trickac6d9be2013-05-25 02:42:55 +000010098 SDValue Add = DAG.getNode(ISD::ADD, SDLoc(N0),
Benjamin Kramercde51102010-07-08 12:09:56 +000010099 XType, N0, Shift);
10100 AddToWorkList(Shift.getNode());
10101 AddToWorkList(Add.getNode());
10102 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +000010103 }
10104 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010105
Dan Gohman475871a2008-07-27 21:46:04 +000010106 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +000010107}
10108
Evan Chengfa1eb272007-02-08 22:13:59 +000010109/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +000010110SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +000010111 SDValue N1, ISD::CondCode Cond,
Andrew Trickac6d9be2013-05-25 02:42:55 +000010112 SDLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +000010113 TargetLowering::DAGCombinerInfo
Nadav Rotem444b4bf2012-12-27 06:47:41 +000010114 DagCombineInfo(DAG, Level, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +000010115 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7be2005-09-16 00:54:12 +000010116}
10117
Nate Begeman69575232005-10-20 02:15:44 +000010118/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
10119/// return a DAG expression to select that will generate the same value by
10120/// multiplying by a magic number. See:
10121/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +000010122SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +000010123 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +000010124 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +000010125
Andrew Lenharth232c9102006-06-12 16:07:18 +000010126 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +000010127 ii != ee; ++ii)
10128 AddToWorkList(*ii);
10129 return S;
Nate Begeman69575232005-10-20 02:15:44 +000010130}
10131
10132/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
10133/// return a DAG expression to select that will generate the same value by
10134/// multiplying by a magic number. See:
10135/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +000010136SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +000010137 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +000010138 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +000010139
Andrew Lenharth232c9102006-06-12 16:07:18 +000010140 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +000010141 ii != ee; ++ii)
10142 AddToWorkList(*ii);
10143 return S;
Nate Begeman69575232005-10-20 02:15:44 +000010144}
10145
Nate Begemancc66cdd2009-09-25 06:05:26 +000010146/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +000010147// to alias with anything but itself. Provides base object and offset as
10148// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010149static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Roman Divacky2943e372012-09-05 22:15:49 +000010150 const GlobalValue *&GV, const void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +000010151 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010152 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000010153
Jim Laskey71382342006-10-07 23:37:56 +000010154 // If it's an adding a simple constant then integrate the offset.
10155 if (Base.getOpcode() == ISD::ADD) {
10156 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
10157 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000010158 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +000010159 }
10160 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010161
Nate Begemancc66cdd2009-09-25 06:05:26 +000010162 // Return the underlying GlobalValue, and update the Offset. Return false
10163 // for GlobalAddressSDNode since the same GlobalAddress may be represented
10164 // by multiple nodes with different offsets.
10165 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
10166 GV = G->getGlobal();
10167 Offset += G->getOffset();
10168 return false;
10169 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010170
Nate Begemancc66cdd2009-09-25 06:05:26 +000010171 // Return the underlying Constant value, and update the Offset. Return false
10172 // for ConstantSDNodes since the same constant pool entry may be represented
10173 // by multiple nodes with different offsets.
10174 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
Roman Divacky2943e372012-09-05 22:15:49 +000010175 CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal()
10176 : (const void *)C->getConstVal();
Nate Begemancc66cdd2009-09-25 06:05:26 +000010177 Offset += C->getOffset();
10178 return false;
10179 }
Jim Laskey71382342006-10-07 23:37:56 +000010180 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010181 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +000010182}
10183
10184/// isAlias - Return true if there is any possibility that the two addresses
10185/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +000010186bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +000010187 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010188 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010189 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +000010190 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010191 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010192 unsigned SrcValueAlign2,
10193 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +000010194 // If they are the same then they must be aliases.
10195 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +000010196
Jim Laskey71382342006-10-07 23:37:56 +000010197 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +000010198 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +000010199 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +000010200 const GlobalValue *GV1, *GV2;
Roman Divacky2943e372012-09-05 22:15:49 +000010201 const void *CV1, *CV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +000010202 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
10203 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010204
Nate Begemancc66cdd2009-09-25 06:05:26 +000010205 // If they have a same base address then check to see if they overlap.
10206 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +000010207 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010208
Owen Anderson4a9f1502010-09-20 20:39:59 +000010209 // It is possible for different frame indices to alias each other, mostly
10210 // when tail call optimization reuses return address slots for arguments.
10211 // To catch this case, look up the actual index of frame indices to compute
10212 // the real alias relationship.
10213 if (isFrameIndex1 && isFrameIndex2) {
10214 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10215 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
10216 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
10217 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
10218 }
10219
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010220 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +000010221 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010222 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
10223 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +000010224
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010225 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
10226 // compared to the size and offset of the access, we may be able to prove they
10227 // do not alias. This check is conservative for now to catch cases created by
10228 // splitting vector types.
10229 if ((SrcValueAlign1 == SrcValueAlign2) &&
10230 (SrcValueOffset1 != SrcValueOffset2) &&
10231 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
10232 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
10233 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010234
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010235 // There is no overlap between these relatively aligned accesses of similar
10236 // size, return no alias.
10237 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
10238 return false;
10239 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010240
Hal Finkel253acef2013-08-29 03:29:55 +000010241 bool UseAA = CombinerGlobalAA.getNumOccurrences() > 0 ? CombinerGlobalAA :
10242 TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
Hal Finkel77364b72013-09-15 02:19:49 +000010243 if (UseAA && SrcValue1 && SrcValue2) {
Jim Laskey07a27092006-10-18 19:08:31 +000010244 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +000010245 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
10246 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
10247 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +000010248 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010249 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
10250 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +000010251 if (AAResult == AliasAnalysis::NoAlias)
10252 return false;
10253 }
Jim Laskey096c22e2006-10-18 12:29:57 +000010254
10255 // Otherwise we have to assume they alias.
10256 return true;
Jim Laskey71382342006-10-07 23:37:56 +000010257}
10258
Nadav Rotem90e11dc2012-11-29 00:00:08 +000010259bool DAGCombiner::isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1) {
10260 SDValue Ptr0, Ptr1;
10261 int64_t Size0, Size1;
10262 const Value *SrcValue0, *SrcValue1;
10263 int SrcValueOffset0, SrcValueOffset1;
10264 unsigned SrcValueAlign0, SrcValueAlign1;
10265 const MDNode *SrcTBAAInfo0, *SrcTBAAInfo1;
10266 FindAliasInfo(Op0, Ptr0, Size0, SrcValue0, SrcValueOffset0,
10267 SrcValueAlign0, SrcTBAAInfo0);
10268 FindAliasInfo(Op1, Ptr1, Size1, SrcValue1, SrcValueOffset1,
10269 SrcValueAlign1, SrcTBAAInfo1);
10270 return isAlias(Ptr0, Size0, SrcValue0, SrcValueOffset0,
Nadav Rotemdde785c2012-12-06 17:34:13 +000010271 SrcValueAlign0, SrcTBAAInfo0,
10272 Ptr1, Size1, SrcValue1, SrcValueOffset1,
10273 SrcValueAlign1, SrcTBAAInfo1);
Nadav Rotem90e11dc2012-11-29 00:00:08 +000010274}
10275
Jim Laskey71382342006-10-07 23:37:56 +000010276/// FindAliasInfo - Extracts the relevant alias information from the memory
10277/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +000010278bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +000010279 SDValue &Ptr, int64_t &Size,
10280 const Value *&SrcValue,
10281 int &SrcValueOffset,
10282 unsigned &SrcValueAlign,
10283 const MDNode *&TBAAInfo) const {
10284 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
10285
10286 Ptr = LS->getBasePtr();
10287 Size = LS->getMemoryVT().getSizeInBits() >> 3;
10288 SrcValue = LS->getSrcValue();
10289 SrcValueOffset = LS->getSrcValueOffset();
10290 SrcValueAlign = LS->getOriginalAlignment();
10291 TBAAInfo = LS->getTBAAInfo();
10292 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +000010293}
10294
Jim Laskey6ff23e52006-10-04 16:53:27 +000010295/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
10296/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +000010297void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
Craig Toppera0ec3f92013-07-14 04:42:23 +000010298 SmallVectorImpl<SDValue> &Aliases) {
Dan Gohman475871a2008-07-27 21:46:04 +000010299 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010300 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +000010301
Jim Laskey279f0532006-09-25 16:29:54 +000010302 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +000010303 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010304 int64_t Size;
10305 const Value *SrcValue;
10306 int SrcValueOffset;
10307 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010308 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010309 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010310 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +000010311
Jim Laskey6ff23e52006-10-04 16:53:27 +000010312 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +000010313 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +000010314 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010315
Jim Laskeybc588b82006-10-05 15:07:25 +000010316 // Look at each chain and determine if it is an alias. If so, add it to the
10317 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +000010318 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +000010319 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +000010320 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +000010321 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010322
10323 // For TokenFactor nodes, look at each operand and only continue up the
10324 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +000010325 // find more and revert to original chain since the xform is unlikely to be
10326 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010327 //
10328 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +000010329 // chain we found before we hit a tokenfactor rather than the original
10330 // chain.
10331 if (Depth > 6 || Aliases.size() == 2) {
10332 Aliases.clear();
10333 Aliases.push_back(OriginalChain);
10334 break;
10335 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010336
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010337 // Don't bother if we've been before.
10338 if (!Visited.insert(Chain.getNode()))
10339 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +000010340
Jim Laskeybc588b82006-10-05 15:07:25 +000010341 switch (Chain.getOpcode()) {
10342 case ISD::EntryToken:
10343 // Entry token is ideal chain operand, but handled in FindBetterChain.
10344 break;
Scott Michelfdc40a02009-02-17 22:15:04 +000010345
Jim Laskeybc588b82006-10-05 15:07:25 +000010346 case ISD::LOAD:
10347 case ISD::STORE: {
10348 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +000010349 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010350 int64_t OpSize;
10351 const Value *OpSrcValue;
10352 int OpSrcValueOffset;
10353 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010354 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +000010355 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010356 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010357 OpSrcValueAlign,
10358 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +000010359
Jim Laskeybc588b82006-10-05 15:07:25 +000010360 // If chain is alias then stop here.
10361 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010362 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010363 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010364 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010365 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +000010366 Aliases.push_back(Chain);
10367 } else {
10368 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +000010369 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +000010370 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +000010371 }
Jim Laskeybc588b82006-10-05 15:07:25 +000010372 break;
10373 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010374
Jim Laskeybc588b82006-10-05 15:07:25 +000010375 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010376 // We have to check each of the operands of the token factor for "small"
10377 // token factors, so we queue them up. Adding the operands to the queue
10378 // (stack) in reverse order maintains the original order and increases the
10379 // likelihood that getNode will find a matching token factor (CSE.)
10380 if (Chain.getNumOperands() > 16) {
10381 Aliases.push_back(Chain);
10382 break;
10383 }
Jim Laskeybc588b82006-10-05 15:07:25 +000010384 for (unsigned n = Chain.getNumOperands(); n;)
10385 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +000010386 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +000010387 break;
Scott Michelfdc40a02009-02-17 22:15:04 +000010388
Jim Laskeybc588b82006-10-05 15:07:25 +000010389 default:
10390 // For all other instructions we will just have to take what we can get.
10391 Aliases.push_back(Chain);
10392 break;
Jim Laskey279f0532006-09-25 16:29:54 +000010393 }
10394 }
Jim Laskey6ff23e52006-10-04 16:53:27 +000010395}
10396
10397/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
10398/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +000010399SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
10400 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +000010401
Jim Laskey6ff23e52006-10-04 16:53:27 +000010402 // Accumulate all the aliases to this node.
10403 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +000010404
Dan Gohman71dc7c92011-05-17 22:20:36 +000010405 // If no operands then chain to entry token.
10406 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +000010407 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +000010408
10409 // If a single operand then chain to it. We don't need to revisit it.
10410 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +000010411 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010412
Jim Laskey6ff23e52006-10-04 16:53:27 +000010413 // Construct a custom tailored token factor.
Andrew Trickac6d9be2013-05-25 02:42:55 +000010414 return DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010415 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +000010416}
10417
Nate Begeman1d4d4142005-09-01 00:19:25 +000010418// SelectionDAG::Combine - This is the entry point for the file.
10419//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000010420void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +000010421 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +000010422 /// run - This is the main entry point to this class.
10423 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000010424 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +000010425}