blob: f94589258857342c6f79384f4b14f6b8f2e3ccc1 [file] [log] [blame]
Nate Begeman4ebd8052005-09-01 23:24:04 +00001//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
Nate Begeman1d4d4142005-09-01 00:19:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begeman1d4d4142005-09-01 00:19:25 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass combines dag nodes to form fewer, simpler DAG nodes. It can be run
11// both before and after the DAG is legalized.
Scott Michelfdc40a02009-02-17 22:15:04 +000012//
Dan Gohman41287002009-04-25 17:09:45 +000013// This pass is not a substitute for the LLVM IR instcombine pass. This pass is
14// primarily intended to handle simplification opportunities that are implicit
15// in the LLVM IR and exposed by the various codegen lowering phases.
16//
Nate Begeman1d4d4142005-09-01 00:19:25 +000017//===----------------------------------------------------------------------===//
18
19#define DEBUG_TYPE "dagcombine"
Nate Begeman1d4d4142005-09-01 00:19:25 +000020#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000021#include "llvm/ADT/SmallPtrSet.h"
22#include "llvm/ADT/Statistic.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000023#include "llvm/Analysis/AliasAnalysis.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineFunction.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000026#include "llvm/IR/DataLayout.h"
27#include "llvm/IR/DerivedTypes.h"
28#include "llvm/IR/Function.h"
29#include "llvm/IR/LLVMContext.h"
Jim Laskeyd1aed7a2006-09-21 16:28:59 +000030#include "llvm/Support/CommandLine.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000031#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000032#include "llvm/Support/ErrorHandling.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000033#include "llvm/Support/MathExtras.h"
Chris Lattnerbbbfa992009-08-23 06:35:02 +000034#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000035#include "llvm/Target/TargetLowering.h"
36#include "llvm/Target/TargetMachine.h"
37#include "llvm/Target/TargetOptions.h"
Hal Finkel253acef2013-08-29 03:29:55 +000038#include "llvm/Target/TargetSubtargetInfo.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000039#include <algorithm>
Nate Begeman1d4d4142005-09-01 00:19:25 +000040using namespace llvm;
41
Chris Lattnercd3245a2006-12-19 22:41:21 +000042STATISTIC(NodesCombined , "Number of dag nodes combined");
43STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
44STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
Evan Cheng8b944d32009-05-28 00:35:15 +000045STATISTIC(OpsNarrowed , "Number of load/op/store narrowed");
Evan Cheng31959b12011-02-02 01:06:55 +000046STATISTIC(LdStFP2Int , "Number of fp load/store pairs transformed to int");
Chris Lattnercd3245a2006-12-19 22:41:21 +000047
Nate Begeman1d4d4142005-09-01 00:19:25 +000048namespace {
Jim Laskey71382342006-10-07 23:37:56 +000049 static cl::opt<bool>
Owen Anderson0dcc8142010-09-19 21:01:26 +000050 CombinerAA("combiner-alias-analysis", cl::Hidden,
Jim Laskey26f7fa72006-10-17 19:33:52 +000051 cl::desc("Turn on alias analysis during testing"));
Jim Laskey3ad175b2006-10-12 15:22:24 +000052
Jim Laskey07a27092006-10-18 19:08:31 +000053 static cl::opt<bool>
54 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
55 cl::desc("Include global information in alias analysis"));
56
Jim Laskeybc588b82006-10-05 15:07:25 +000057//------------------------------ DAGCombiner ---------------------------------//
58
Nick Lewycky6726b6d2009-10-25 06:33:48 +000059 class DAGCombiner {
Nate Begeman1d4d4142005-09-01 00:19:25 +000060 SelectionDAG &DAG;
Dan Gohman79ce2762009-01-15 19:20:50 +000061 const TargetLowering &TLI;
Duncan Sands25cf2272008-11-24 14:53:14 +000062 CombineLevel Level;
Bill Wendling98a366d2009-04-29 23:29:43 +000063 CodeGenOpt::Level OptLevel;
Duncan Sands25cf2272008-11-24 14:53:14 +000064 bool LegalOperations;
65 bool LegalTypes;
Nate Begeman1d4d4142005-09-01 00:19:25 +000066
67 // Worklist of all of the nodes that need to be simplified.
James Molloy6660c052012-02-16 09:17:04 +000068 //
69 // This has the semantics that when adding to the worklist,
70 // the item added must be next to be processed. It should
71 // also only appear once. The naive approach to this takes
72 // linear time.
73 //
74 // To reduce the insert/remove time to logarithmic, we use
75 // a set and a vector to maintain our worklist.
76 //
77 // The set contains the items on the worklist, but does not
78 // maintain the order they should be visited.
79 //
80 // The vector maintains the order nodes should be visited, but may
81 // contain duplicate or removed nodes. When choosing a node to
82 // visit, we pop off the order stack until we find an item that is
83 // also in the contents set. All operations are O(log N).
84 SmallPtrSet<SDNode*, 64> WorkListContents;
Benjamin Kramerd5f76902012-03-10 00:23:58 +000085 SmallVector<SDNode*, 64> WorkListOrder;
Nate Begeman1d4d4142005-09-01 00:19:25 +000086
Jim Laskeyc7c3f112006-10-16 20:52:31 +000087 // AA - Used for DAG load/store alias analysis.
88 AliasAnalysis &AA;
89
Nate Begeman1d4d4142005-09-01 00:19:25 +000090 /// AddUsersToWorkList - When an instruction is simplified, add all users of
91 /// the instruction to the work lists because they might get more simplified
92 /// now.
93 ///
94 void AddUsersToWorkList(SDNode *N) {
95 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000096 UI != UE; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +000097 AddToWorkList(*UI);
Nate Begeman1d4d4142005-09-01 00:19:25 +000098 }
99
Dan Gohman389079b2007-10-08 17:57:15 +0000100 /// visit - call the node-specific routine that knows how to fold each
101 /// particular type of node.
Dan Gohman475871a2008-07-27 21:46:04 +0000102 SDValue visit(SDNode *N);
Dan Gohman389079b2007-10-08 17:57:15 +0000103
Chris Lattner24664722006-03-01 04:53:38 +0000104 public:
James Molloy6afa3f72012-02-16 09:48:07 +0000105 /// AddToWorkList - Add to the work list making sure its instance is at the
James Molloy6660c052012-02-16 09:17:04 +0000106 /// back (next to be processed.)
Chris Lattner5750df92006-03-01 04:03:14 +0000107 void AddToWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000108 WorkListContents.insert(N);
109 WorkListOrder.push_back(N);
Chris Lattner5750df92006-03-01 04:03:14 +0000110 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000111
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000112 /// removeFromWorkList - remove all instances of N from the worklist.
113 ///
114 void removeFromWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000115 WorkListContents.erase(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000116 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000117
Dan Gohman475871a2008-07-27 21:46:04 +0000118 SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000119 bool AddTo = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000120
Dan Gohman475871a2008-07-27 21:46:04 +0000121 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) {
Jim Laskey274062c2006-10-13 23:32:28 +0000122 return CombineTo(N, &Res, 1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000123 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000124
Dan Gohman475871a2008-07-27 21:46:04 +0000125 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000126 bool AddTo = true) {
Dan Gohman475871a2008-07-27 21:46:04 +0000127 SDValue To[] = { Res0, Res1 };
Jim Laskey274062c2006-10-13 23:32:28 +0000128 return CombineTo(N, To, 2, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000129 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000130
131 void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO);
Scott Michelfdc40a02009-02-17 22:15:04 +0000132
133 private:
134
Chris Lattner012f2412006-02-17 21:58:01 +0000135 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000136 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000137 /// propagation. If so, return true.
Dan Gohman475871a2008-07-27 21:46:04 +0000138 bool SimplifyDemandedBits(SDValue Op) {
Dan Gohman87862e72009-12-11 21:31:27 +0000139 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
140 APInt Demanded = APInt::getAllOnesValue(BitWidth);
Dan Gohman7b8d4a92008-02-27 00:25:32 +0000141 return SimplifyDemandedBits(Op, Demanded);
142 }
143
Dan Gohman475871a2008-07-27 21:46:04 +0000144 bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded);
Chris Lattner87514ca2005-10-10 22:31:19 +0000145
Chris Lattner448f2192006-11-11 00:39:41 +0000146 bool CombineToPreIndexedLoadStore(SDNode *N);
147 bool CombineToPostIndexedLoadStore(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000148
Evan Cheng95c57ea2010-04-24 04:43:44 +0000149 void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad);
150 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
151 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
152 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000153 SDValue PromoteIntBinOp(SDValue Op);
Evan Cheng07c4e102010-04-22 20:19:46 +0000154 SDValue PromoteIntShiftOp(SDValue Op);
Evan Cheng4c26e932010-04-19 19:29:22 +0000155 SDValue PromoteExtend(SDValue Op);
156 bool PromoteLoad(SDValue Op);
Scott Michelfdc40a02009-02-17 22:15:04 +0000157
Craig Topper6c64fba2013-07-13 07:43:40 +0000158 void ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000159 SDValue Trunc, SDValue ExtLoad, SDLoc DL,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +0000160 ISD::NodeType ExtType);
161
Dan Gohman389079b2007-10-08 17:57:15 +0000162 /// combine - call the node-specific routine that knows how to fold each
163 /// particular type of node. If that doesn't do anything, try the
164 /// target-specific DAG combines.
Dan Gohman475871a2008-07-27 21:46:04 +0000165 SDValue combine(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000166
167 // Visitation implementation - Implement dag node combining for different
168 // node types. The semantics are as follows:
169 // Return Value:
Evan Cheng17a568b2008-08-29 22:21:44 +0000170 // SDValue.getNode() == 0 - No change was made
171 // SDValue.getNode() == N - N was replaced, is dead and has been handled.
172 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000173 //
Dan Gohman475871a2008-07-27 21:46:04 +0000174 SDValue visitTokenFactor(SDNode *N);
175 SDValue visitMERGE_VALUES(SDNode *N);
176 SDValue visitADD(SDNode *N);
177 SDValue visitSUB(SDNode *N);
178 SDValue visitADDC(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000179 SDValue visitSUBC(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000180 SDValue visitADDE(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000181 SDValue visitSUBE(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000182 SDValue visitMUL(SDNode *N);
183 SDValue visitSDIV(SDNode *N);
184 SDValue visitUDIV(SDNode *N);
185 SDValue visitSREM(SDNode *N);
186 SDValue visitUREM(SDNode *N);
187 SDValue visitMULHU(SDNode *N);
188 SDValue visitMULHS(SDNode *N);
189 SDValue visitSMUL_LOHI(SDNode *N);
190 SDValue visitUMUL_LOHI(SDNode *N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +0000191 SDValue visitSMULO(SDNode *N);
192 SDValue visitUMULO(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000193 SDValue visitSDIVREM(SDNode *N);
194 SDValue visitUDIVREM(SDNode *N);
195 SDValue visitAND(SDNode *N);
196 SDValue visitOR(SDNode *N);
197 SDValue visitXOR(SDNode *N);
198 SDValue SimplifyVBinOp(SDNode *N);
Craig Topperdd201ff2012-09-11 01:45:21 +0000199 SDValue SimplifyVUnaryOp(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000200 SDValue visitSHL(SDNode *N);
201 SDValue visitSRA(SDNode *N);
202 SDValue visitSRL(SDNode *N);
203 SDValue visitCTLZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000204 SDValue visitCTLZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000205 SDValue visitCTTZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000206 SDValue visitCTTZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000207 SDValue visitCTPOP(SDNode *N);
208 SDValue visitSELECT(SDNode *N);
Benjamin Kramer6242fda2013-04-26 09:19:19 +0000209 SDValue visitVSELECT(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000210 SDValue visitSELECT_CC(SDNode *N);
211 SDValue visitSETCC(SDNode *N);
212 SDValue visitSIGN_EXTEND(SDNode *N);
213 SDValue visitZERO_EXTEND(SDNode *N);
214 SDValue visitANY_EXTEND(SDNode *N);
215 SDValue visitSIGN_EXTEND_INREG(SDNode *N);
216 SDValue visitTRUNCATE(SDNode *N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000217 SDValue visitBITCAST(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000218 SDValue visitBUILD_PAIR(SDNode *N);
219 SDValue visitFADD(SDNode *N);
220 SDValue visitFSUB(SDNode *N);
221 SDValue visitFMUL(SDNode *N);
Owen Anderson062c0a52012-05-02 22:17:40 +0000222 SDValue visitFMA(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000223 SDValue visitFDIV(SDNode *N);
224 SDValue visitFREM(SDNode *N);
225 SDValue visitFCOPYSIGN(SDNode *N);
226 SDValue visitSINT_TO_FP(SDNode *N);
227 SDValue visitUINT_TO_FP(SDNode *N);
228 SDValue visitFP_TO_SINT(SDNode *N);
229 SDValue visitFP_TO_UINT(SDNode *N);
230 SDValue visitFP_ROUND(SDNode *N);
231 SDValue visitFP_ROUND_INREG(SDNode *N);
232 SDValue visitFP_EXTEND(SDNode *N);
233 SDValue visitFNEG(SDNode *N);
234 SDValue visitFABS(SDNode *N);
Owen Anderson7c626d32012-08-13 23:32:49 +0000235 SDValue visitFCEIL(SDNode *N);
236 SDValue visitFTRUNC(SDNode *N);
237 SDValue visitFFLOOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000238 SDValue visitBRCOND(SDNode *N);
239 SDValue visitBR_CC(SDNode *N);
240 SDValue visitLOAD(SDNode *N);
241 SDValue visitSTORE(SDNode *N);
242 SDValue visitINSERT_VECTOR_ELT(SDNode *N);
243 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
244 SDValue visitBUILD_VECTOR(SDNode *N);
245 SDValue visitCONCAT_VECTORS(SDNode *N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +0000246 SDValue visitEXTRACT_SUBVECTOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000247 SDValue visitVECTOR_SHUFFLE(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000248
Dan Gohman475871a2008-07-27 21:46:04 +0000249 SDValue XformToShuffleWithZero(SDNode *N);
Andrew Trickac6d9be2013-05-25 02:42:55 +0000250 SDValue ReassociateOps(unsigned Opc, SDLoc DL, SDValue LHS, SDValue RHS);
Scott Michelfdc40a02009-02-17 22:15:04 +0000251
Dan Gohman475871a2008-07-27 21:46:04 +0000252 SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
Chris Lattnere70da202007-12-06 07:33:36 +0000253
Dan Gohman475871a2008-07-27 21:46:04 +0000254 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
255 SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Andrew Trickac6d9be2013-05-25 02:42:55 +0000256 SDValue SimplifySelect(SDLoc DL, SDValue N0, SDValue N1, SDValue N2);
257 SDValue SimplifySelectCC(SDLoc DL, SDValue N0, SDValue N1, SDValue N2,
Scott Michelfdc40a02009-02-17 22:15:04 +0000258 SDValue N3, ISD::CondCode CC,
Bill Wendling836ca7d2009-01-30 23:59:18 +0000259 bool NotExtCompare = false);
Owen Andersone50ed302009-08-10 22:56:29 +0000260 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000261 SDLoc DL, bool foldBooleans = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000262 SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Chris Lattner5eee4272008-01-26 01:09:19 +0000263 unsigned HiOp);
Owen Andersone50ed302009-08-10 22:56:29 +0000264 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000265 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
Dan Gohman475871a2008-07-27 21:46:04 +0000266 SDValue BuildSDIV(SDNode *N);
267 SDValue BuildUDIV(SDNode *N);
Evan Cheng9568e5c2011-06-21 06:01:08 +0000268 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
269 bool DemandHighBits = true);
270 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
Andrew Trickac6d9be2013-05-25 02:42:55 +0000271 SDNode *MatchRotate(SDValue LHS, SDValue RHS, SDLoc DL);
Dan Gohman475871a2008-07-27 21:46:04 +0000272 SDValue ReduceLoadWidth(SDNode *N);
Evan Cheng8b944d32009-05-28 00:35:15 +0000273 SDValue ReduceLoadOpStoreWidth(SDNode *N);
Evan Cheng31959b12011-02-02 01:06:55 +0000274 SDValue TransformFPLoadStorePair(SDNode *N);
Michael Liaofac14ab2012-10-23 23:06:52 +0000275 SDValue reduceBuildVecExtToExtBuildVec(SDNode *N);
Michael Liao1a5cc712012-10-24 04:14:18 +0000276 SDValue reduceBuildVecConvertToConvertBuildVec(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000277
Dan Gohman475871a2008-07-27 21:46:04 +0000278 SDValue GetDemandedBits(SDValue V, const APInt &Mask);
Scott Michelfdc40a02009-02-17 22:15:04 +0000279
Jim Laskey6ff23e52006-10-04 16:53:27 +0000280 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
281 /// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000282 void GatherAllAliases(SDNode *N, SDValue OriginalChain,
Craig Toppera0ec3f92013-07-14 04:42:23 +0000283 SmallVectorImpl<SDValue> &Aliases);
Jim Laskey6ff23e52006-10-04 16:53:27 +0000284
Jim Laskey096c22e2006-10-18 12:29:57 +0000285 /// isAlias - Return true if there is any possibility that the two addresses
286 /// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +0000287 bool isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +0000288 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000289 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000290 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +0000291 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000292 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000293 unsigned SrcValueAlign2,
294 const MDNode *TBAAInfo2) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000295
Nadav Rotem90e11dc2012-11-29 00:00:08 +0000296 /// isAlias - Return true if there is any possibility that the two addresses
297 /// overlap.
298 bool isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1);
299
Jim Laskey7ca56af2006-10-11 13:47:09 +0000300 /// FindAliasInfo - Extracts the relevant alias information from the memory
301 /// node. Returns true if the operand was a load.
302 bool FindAliasInfo(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000303 SDValue &Ptr, int64_t &Size,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000304 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000305 unsigned &SrcValueAlignment,
306 const MDNode *&TBAAInfo) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000307
Jim Laskey279f0532006-09-25 16:29:54 +0000308 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000309 /// looking for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +0000310 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands92abc622009-01-31 15:50:11 +0000311
Nadav Rotemc653de62012-10-03 16:11:15 +0000312 /// Merge consecutive store operations into a wide store.
313 /// This optimization uses wide integers or vectors when possible.
314 /// \return True if some memory operations were changed.
315 bool MergeConsecutiveStores(StoreSDNode *N);
316
Chris Lattner2392ae72010-04-15 04:48:01 +0000317 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000318 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000319 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000320 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000321
Nate Begeman1d4d4142005-09-01 00:19:25 +0000322 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000323 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000324
Chris Lattner2392ae72010-04-15 04:48:01 +0000325 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000326
Chris Lattner2392ae72010-04-15 04:48:01 +0000327 /// getShiftAmountTy - Returns a type large enough to hold any valid
328 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000329 EVT getShiftAmountTy(EVT LHSTy) {
Elena Demikhovsky87070fe2013-06-26 10:55:03 +0000330 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
331 if (LHSTy.isVector())
332 return LHSTy;
333 return LegalTypes ? TLI.getScalarShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000334 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000335
Chris Lattner2392ae72010-04-15 04:48:01 +0000336 /// isTypeLegal - This method returns true if we are running before type
337 /// legalization or if the specified VT is legal.
338 bool isTypeLegal(const EVT &VT) {
339 if (!LegalTypes) return true;
340 return TLI.isTypeLegal(VT);
341 }
Matt Arsenault225ed702013-05-18 00:21:46 +0000342
343 /// getSetCCResultType - Convenience wrapper around
344 /// TargetLowering::getSetCCResultType
345 EVT getSetCCResultType(EVT VT) const {
346 return TLI.getSetCCResultType(*DAG.getContext(), VT);
347 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000348 };
349}
350
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000351
352namespace {
353/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
354/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000355class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000356 DAGCombiner &DC;
357public:
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000358 explicit WorkListRemover(DAGCombiner &dc)
359 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000360
Duncan Sandsedfcf592008-06-11 11:42:12 +0000361 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000362 DC.removeFromWorkList(N);
363 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000364};
365}
366
Chris Lattner24664722006-03-01 04:53:38 +0000367//===----------------------------------------------------------------------===//
368// TargetLowering::DAGCombinerInfo implementation
369//===----------------------------------------------------------------------===//
370
371void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
372 ((DAGCombiner*)DC)->AddToWorkList(N);
373}
374
Cameron Zwariched3caf92011-04-02 02:40:26 +0000375void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
376 ((DAGCombiner*)DC)->removeFromWorkList(N);
377}
378
Dan Gohman475871a2008-07-27 21:46:04 +0000379SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000380CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
381 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000382}
383
Dan Gohman475871a2008-07-27 21:46:04 +0000384SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000385CombineTo(SDNode *N, SDValue Res, bool AddTo) {
386 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000387}
388
389
Dan Gohman475871a2008-07-27 21:46:04 +0000390SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000391CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
392 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000393}
394
Dan Gohmane5af2d32009-01-29 01:59:02 +0000395void TargetLowering::DAGCombinerInfo::
396CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
397 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
398}
Chris Lattner24664722006-03-01 04:53:38 +0000399
Chris Lattner24664722006-03-01 04:53:38 +0000400//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000401// Helper Functions
402//===----------------------------------------------------------------------===//
403
404/// isNegatibleForFree - Return 1 if we can compute the negated form of the
405/// specified expression for the same cost as the expression itself, or 2 if we
406/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000407static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000408 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000409 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000410 unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000411 // fneg is removable even if it has multiple uses.
412 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000413
Chris Lattner29446522007-05-14 22:04:50 +0000414 // Don't allow anything with multiple uses.
415 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000416
Chris Lattner3adf9512007-05-25 02:19:06 +0000417 // Don't recurse exponentially.
418 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000419
Chris Lattner29446522007-05-14 22:04:50 +0000420 switch (Op.getOpcode()) {
421 default: return false;
422 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000423 // Don't invert constant FP values after legalize. The negated constant
424 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000425 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000426 case ISD::FADD:
427 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000428 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000429
Owen Andersonafd3d562012-03-06 00:29:31 +0000430 // After operation legalization, it might not be legal to create new FSUBs.
431 if (LegalOperations &&
432 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
433 return 0;
434
Craig Topper956342b2012-09-09 22:58:45 +0000435 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000436 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
437 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000438 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000439 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000440 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000441 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000442 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000443 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000444 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000445
Bill Wendlingd34470c2009-01-30 23:10:18 +0000446 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000447 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000448
Chris Lattner29446522007-05-14 22:04:50 +0000449 case ISD::FMUL:
450 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000451 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000452
Bill Wendlingd34470c2009-01-30 23:10:18 +0000453 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000454 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
455 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000456 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000457
Owen Andersonafd3d562012-03-06 00:29:31 +0000458 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000459 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000460
Chris Lattner29446522007-05-14 22:04:50 +0000461 case ISD::FP_EXTEND:
462 case ISD::FP_ROUND:
463 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000464 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000465 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000466 }
467}
468
469/// GetNegatedExpression - If isNegatibleForFree returns true, this function
470/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000471static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000472 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000473 // fneg is removable even if it has multiple uses.
474 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000475
Chris Lattner29446522007-05-14 22:04:50 +0000476 // Don't allow anything with multiple uses.
477 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000478
Chris Lattner3adf9512007-05-25 02:19:06 +0000479 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000480 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000481 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000482 case ISD::ConstantFP: {
483 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
484 V.changeSign();
485 return DAG.getConstantFP(V, Op.getValueType());
486 }
Chris Lattner29446522007-05-14 22:04:50 +0000487 case ISD::FADD:
488 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000489 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000490
Bill Wendlingd34470c2009-01-30 23:10:18 +0000491 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000492 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000493 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000494 &DAG.getTarget().Options, Depth+1))
Andrew Trickac6d9be2013-05-25 02:42:55 +0000495 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000496 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000497 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000498 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000499 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Andrew Trickac6d9be2013-05-25 02:42:55 +0000500 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000501 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000502 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000503 Op.getOperand(0));
504 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000505 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000506 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000507
Bill Wendlingd34470c2009-01-30 23:10:18 +0000508 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000509 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000510 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000511 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000512
Bill Wendlingd34470c2009-01-30 23:10:18 +0000513 // fold (fneg (fsub A, B)) -> (fsub B, A)
Andrew Trickac6d9be2013-05-25 02:42:55 +0000514 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
Bill Wendling35247c32009-01-30 00:45:56 +0000515 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000516
Chris Lattner29446522007-05-14 22:04:50 +0000517 case ISD::FMUL:
518 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000519 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000520
Bill Wendlingd34470c2009-01-30 23:10:18 +0000521 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000522 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000523 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000524 &DAG.getTarget().Options, Depth+1))
Andrew Trickac6d9be2013-05-25 02:42:55 +0000525 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000526 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000527 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000528 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000529
Bill Wendlingd34470c2009-01-30 23:10:18 +0000530 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Andrew Trickac6d9be2013-05-25 02:42:55 +0000531 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000532 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000533 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000534 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000535
Chris Lattner29446522007-05-14 22:04:50 +0000536 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000537 case ISD::FSIN:
Andrew Trickac6d9be2013-05-25 02:42:55 +0000538 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000539 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000540 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000541 case ISD::FP_ROUND:
Andrew Trickac6d9be2013-05-25 02:42:55 +0000542 return DAG.getNode(ISD::FP_ROUND, SDLoc(Op), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000543 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000544 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000545 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000546 }
547}
Chris Lattner24664722006-03-01 04:53:38 +0000548
549
Nate Begeman4ebd8052005-09-01 23:24:04 +0000550// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
551// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000552// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000553// nodes based on the type of node we are checking. This simplifies life a
554// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000555static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
556 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000557 if (N.getOpcode() == ISD::SETCC) {
558 LHS = N.getOperand(0);
559 RHS = N.getOperand(1);
560 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000561 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000562 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000563 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000564 N.getOperand(2).getOpcode() == ISD::Constant &&
565 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000566 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000567 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
568 LHS = N.getOperand(0);
569 RHS = N.getOperand(1);
570 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000571 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000572 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000573 return false;
574}
575
Nate Begeman99801192005-09-07 23:25:52 +0000576// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
577// one use. If this is true, it allows the users to invert the operation for
578// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000579static bool isOneUseSetCC(SDValue N) {
580 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000581 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000582 return true;
583 return false;
584}
585
Andrew Trickac6d9be2013-05-25 02:42:55 +0000586SDValue DAGCombiner::ReassociateOps(unsigned Opc, SDLoc DL,
Bill Wendling35247c32009-01-30 00:45:56 +0000587 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000588 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000589 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
590 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000591 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000592 SDValue OpNode =
593 DAG.FoldConstantArithmetic(Opc, VT,
594 cast<ConstantSDNode>(N0.getOperand(1)),
595 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000596 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000597 }
598 if (N0.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000599 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
Andrew Trickac6d9be2013-05-25 02:42:55 +0000600 SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000601 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000602 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000603 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000604 }
605 }
Bill Wendling35247c32009-01-30 00:45:56 +0000606
Nate Begemancd4d58c2006-02-03 06:46:56 +0000607 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
608 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000609 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000610 SDValue OpNode =
611 DAG.FoldConstantArithmetic(Opc, VT,
612 cast<ConstantSDNode>(N1.getOperand(1)),
613 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000614 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000615 }
616 if (N1.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000617 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Andrew Trickac6d9be2013-05-25 02:42:55 +0000618 SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000619 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000620 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000621 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000622 }
623 }
Bill Wendling35247c32009-01-30 00:45:56 +0000624
Dan Gohman475871a2008-07-27 21:46:04 +0000625 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000626}
627
Dan Gohman475871a2008-07-27 21:46:04 +0000628SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
629 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000630 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
631 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000632 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000633 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000634 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000635 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000636 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000637 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000638 assert((!To[i].getNode() ||
639 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000640 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000641 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000642 DAG.ReplaceAllUsesWith(N, To);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000643 if (AddTo) {
644 // Push the new nodes and any users onto the worklist
645 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000646 if (To[i].getNode()) {
647 AddToWorkList(To[i].getNode());
648 AddUsersToWorkList(To[i].getNode());
649 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000650 }
651 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000652
Dan Gohmandbe664a2009-01-19 21:44:21 +0000653 // Finally, if the node is now dead, remove it from the graph. The node
654 // may not be dead if the replacement process recursively simplified to
655 // something else needing this node.
656 if (N->use_empty()) {
657 // Nodes can be reintroduced into the worklist. Make sure we do not
658 // process a node that has been replaced.
659 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000660
Dan Gohmandbe664a2009-01-19 21:44:21 +0000661 // Finally, since the node is now dead, remove it from the graph.
662 DAG.DeleteNode(N);
663 }
Dan Gohman475871a2008-07-27 21:46:04 +0000664 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000665}
666
Evan Chenge5b51ac2010-04-17 06:13:15 +0000667void DAGCombiner::
668CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000669 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000670 // are deleted, make sure to remove them from our worklist.
671 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000672 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000673
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000674 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000675 AddToWorkList(TLO.New.getNode());
676 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000677
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000678 // Finally, if the node is now dead, remove it from the graph. The node
679 // may not be dead if the replacement process recursively simplified to
680 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000681 if (TLO.Old.getNode()->use_empty()) {
682 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000683
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000684 // If the operands of this node are only used by the node, they will now
685 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000686 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
687 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
688 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000689
Gabor Greifba36cb52008-08-28 21:40:38 +0000690 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000691 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000692}
693
694/// SimplifyDemandedBits - Check the specified integer node value to see if
695/// it can be simplified or if things it uses can be simplified by bit
696/// propagation. If so, return true.
697bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000698 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000699 APInt KnownZero, KnownOne;
700 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
701 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000702
Dan Gohmane5af2d32009-01-29 01:59:02 +0000703 // Revisit the node.
704 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000705
Dan Gohmane5af2d32009-01-29 01:59:02 +0000706 // Replace the old value with the new one.
707 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000708 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000709 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000710 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000711 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000712 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000713
Dan Gohmane5af2d32009-01-29 01:59:02 +0000714 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000715 return true;
716}
717
Evan Cheng95c57ea2010-04-24 04:43:44 +0000718void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
Andrew Trickac6d9be2013-05-25 02:42:55 +0000719 SDLoc dl(Load);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000720 EVT VT = Load->getValueType(0);
721 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000722
Evan Cheng95c57ea2010-04-24 04:43:44 +0000723 DEBUG(dbgs() << "\nReplacing.9 ";
724 Load->dump(&DAG);
725 dbgs() << "\nWith: ";
726 Trunc.getNode()->dump(&DAG);
727 dbgs() << '\n');
728 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000729 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
730 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
Evan Cheng95c57ea2010-04-24 04:43:44 +0000731 removeFromWorkList(Load);
732 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000733 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000734}
735
736SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
737 Replace = false;
Andrew Trickac6d9be2013-05-25 02:42:55 +0000738 SDLoc dl(Op);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000739 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000740 EVT MemVT = LD->getMemoryVT();
741 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000742 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000743 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000744 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000745 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000746 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000747 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000748 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000749 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000750 LD->isNonTemporal(), LD->getAlignment());
751 }
752
Evan Cheng4c26e932010-04-19 19:29:22 +0000753 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000754 switch (Opc) {
755 default: break;
756 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000757 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000758 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000759 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000760 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000761 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000762 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000763 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000764 case ISD::Constant: {
765 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000766 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000767 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000768 }
Evan Chengcaf77402010-04-23 19:10:30 +0000769 }
770
771 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000772 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000773 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000774}
775
Evan Cheng95c57ea2010-04-24 04:43:44 +0000776SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000777 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
778 return SDValue();
779 EVT OldVT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000780 SDLoc dl(Op);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000781 bool Replace = false;
782 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
783 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000784 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000785 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000786
787 if (Replace)
788 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
789 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000790 DAG.getValueType(OldVT));
791}
792
Evan Cheng95c57ea2010-04-24 04:43:44 +0000793SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000794 EVT OldVT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000795 SDLoc dl(Op);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000796 bool Replace = false;
797 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
798 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000799 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000800 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000801
802 if (Replace)
803 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
804 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000805}
806
Evan Cheng64b7bf72010-04-16 06:14:10 +0000807/// PromoteIntBinOp - Promote the specified integer binary operation if the
808/// target indicates it is beneficial. e.g. On x86, it's usually better to
809/// promote i16 operations to i32 since i16 instructions are longer.
810SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
811 if (!LegalOperations)
812 return SDValue();
813
814 EVT VT = Op.getValueType();
815 if (VT.isVector() || !VT.isInteger())
816 return SDValue();
817
Evan Chenge5b51ac2010-04-17 06:13:15 +0000818 // If operation type is 'undesirable', e.g. i16 on x86, consider
819 // promoting it.
820 unsigned Opc = Op.getOpcode();
821 if (TLI.isTypeDesirableForOp(Opc, VT))
822 return SDValue();
823
Evan Cheng64b7bf72010-04-16 06:14:10 +0000824 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000825 // Consult target whether it is a good idea to promote this operation and
826 // what's the right type to promote it to.
827 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000828 assert(PVT != VT && "Don't know what type to promote to!");
829
Evan Cheng95c57ea2010-04-24 04:43:44 +0000830 bool Replace0 = false;
831 SDValue N0 = Op.getOperand(0);
832 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
833 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000834 return SDValue();
835
Evan Cheng95c57ea2010-04-24 04:43:44 +0000836 bool Replace1 = false;
837 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000838 SDValue NN1;
839 if (N0 == N1)
840 NN1 = NN0;
841 else {
842 NN1 = PromoteOperand(N1, PVT, Replace1);
843 if (NN1.getNode() == 0)
844 return SDValue();
845 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000846
Evan Cheng95c57ea2010-04-24 04:43:44 +0000847 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000848 if (NN1.getNode())
849 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000850
851 if (Replace0)
852 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
853 if (Replace1)
854 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000855
Evan Chengac7eae52010-04-27 19:48:13 +0000856 DEBUG(dbgs() << "\nPromoting ";
857 Op.getNode()->dump(&DAG));
Andrew Trickac6d9be2013-05-25 02:42:55 +0000858 SDLoc dl(Op);
Evan Cheng07c4e102010-04-22 20:19:46 +0000859 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000860 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000861 }
862 return SDValue();
863}
864
865/// PromoteIntShiftOp - Promote the specified integer shift operation if the
866/// target indicates it is beneficial. e.g. On x86, it's usually better to
867/// promote i16 operations to i32 since i16 instructions are longer.
868SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
869 if (!LegalOperations)
870 return SDValue();
871
872 EVT VT = Op.getValueType();
873 if (VT.isVector() || !VT.isInteger())
874 return SDValue();
875
876 // If operation type is 'undesirable', e.g. i16 on x86, consider
877 // promoting it.
878 unsigned Opc = Op.getOpcode();
879 if (TLI.isTypeDesirableForOp(Opc, VT))
880 return SDValue();
881
882 EVT PVT = VT;
883 // Consult target whether it is a good idea to promote this operation and
884 // what's the right type to promote it to.
885 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
886 assert(PVT != VT && "Don't know what type to promote to!");
887
Evan Cheng95c57ea2010-04-24 04:43:44 +0000888 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000889 SDValue N0 = Op.getOperand(0);
890 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000891 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000892 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000893 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000894 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000895 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000896 if (N0.getNode() == 0)
897 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000898
Evan Chenge5b51ac2010-04-17 06:13:15 +0000899 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000900 if (Replace)
901 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000902
Evan Chengac7eae52010-04-27 19:48:13 +0000903 DEBUG(dbgs() << "\nPromoting ";
904 Op.getNode()->dump(&DAG));
Andrew Trickac6d9be2013-05-25 02:42:55 +0000905 SDLoc dl(Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000906 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000907 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000908 }
909 return SDValue();
910}
911
Evan Cheng4c26e932010-04-19 19:29:22 +0000912SDValue DAGCombiner::PromoteExtend(SDValue Op) {
913 if (!LegalOperations)
914 return SDValue();
915
916 EVT VT = Op.getValueType();
917 if (VT.isVector() || !VT.isInteger())
918 return SDValue();
919
920 // If operation type is 'undesirable', e.g. i16 on x86, consider
921 // promoting it.
922 unsigned Opc = Op.getOpcode();
923 if (TLI.isTypeDesirableForOp(Opc, VT))
924 return SDValue();
925
926 EVT PVT = VT;
927 // Consult target whether it is a good idea to promote this operation and
928 // what's the right type to promote it to.
929 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
930 assert(PVT != VT && "Don't know what type to promote to!");
931 // fold (aext (aext x)) -> (aext x)
932 // fold (aext (zext x)) -> (zext x)
933 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000934 DEBUG(dbgs() << "\nPromoting ";
935 Op.getNode()->dump(&DAG));
Andrew Trickac6d9be2013-05-25 02:42:55 +0000936 return DAG.getNode(Op.getOpcode(), SDLoc(Op), VT, Op.getOperand(0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000937 }
938 return SDValue();
939}
940
941bool DAGCombiner::PromoteLoad(SDValue Op) {
942 if (!LegalOperations)
943 return false;
944
945 EVT VT = Op.getValueType();
946 if (VT.isVector() || !VT.isInteger())
947 return false;
948
949 // If operation type is 'undesirable', e.g. i16 on x86, consider
950 // promoting it.
951 unsigned Opc = Op.getOpcode();
952 if (TLI.isTypeDesirableForOp(Opc, VT))
953 return false;
954
955 EVT PVT = VT;
956 // Consult target whether it is a good idea to promote this operation and
957 // what's the right type to promote it to.
958 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
959 assert(PVT != VT && "Don't know what type to promote to!");
960
Andrew Trickac6d9be2013-05-25 02:42:55 +0000961 SDLoc dl(Op);
Evan Cheng4c26e932010-04-19 19:29:22 +0000962 SDNode *N = Op.getNode();
963 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000964 EVT MemVT = LD->getMemoryVT();
965 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000966 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000967 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000968 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000969 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000970 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000971 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000972 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000973 LD->isNonTemporal(), LD->getAlignment());
974 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
975
Evan Cheng95c57ea2010-04-24 04:43:44 +0000976 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000977 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000978 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000979 Result.getNode()->dump(&DAG);
980 dbgs() << '\n');
981 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000982 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
983 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
Evan Cheng4c26e932010-04-19 19:29:22 +0000984 removeFromWorkList(N);
985 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000986 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000987 return true;
988 }
989 return false;
990}
991
Evan Chenge5b51ac2010-04-17 06:13:15 +0000992
Chris Lattner29446522007-05-14 22:04:50 +0000993//===----------------------------------------------------------------------===//
994// Main DAG Combiner implementation
995//===----------------------------------------------------------------------===//
996
Duncan Sands25cf2272008-11-24 14:53:14 +0000997void DAGCombiner::Run(CombineLevel AtLevel) {
998 // set the instance variables, so that the various visit routines may use it.
999 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +00001000 LegalOperations = Level >= AfterLegalizeVectorOps;
1001 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +00001002
Evan Cheng17a568b2008-08-29 22:21:44 +00001003 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +00001004 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
1005 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +00001006 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +00001007
Evan Cheng17a568b2008-08-29 22:21:44 +00001008 // Create a dummy node (which is not added to allnodes), that adds a reference
1009 // to the root node, preventing it from being deleted, and tracking any
1010 // changes of the root.
1011 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +00001012
Jim Laskey26f7fa72006-10-17 19:33:52 +00001013 // The root of the dag may dangle to deleted nodes until the dag combiner is
1014 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +00001015 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00001016
James Molloy6660c052012-02-16 09:17:04 +00001017 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +00001018 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +00001019 while (!WorkListContents.empty()) {
1020 SDNode *N;
1021 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1022 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1023 // worklist *should* contain, and check the node we want to visit is should
1024 // actually be visited.
1025 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001026 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001027 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001028
Evan Cheng17a568b2008-08-29 22:21:44 +00001029 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1030 // N is deleted from the DAG, since they too may now be dead or may have a
1031 // reduced number of uses, allowing other xforms.
1032 if (N->use_empty() && N != &Dummy) {
1033 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1034 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001035
Evan Cheng17a568b2008-08-29 22:21:44 +00001036 DAG.DeleteNode(N);
1037 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001038 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001039
Evan Cheng17a568b2008-08-29 22:21:44 +00001040 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001041
Evan Cheng17a568b2008-08-29 22:21:44 +00001042 if (RV.getNode() == 0)
1043 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001044
Evan Cheng17a568b2008-08-29 22:21:44 +00001045 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001046
Evan Cheng17a568b2008-08-29 22:21:44 +00001047 // If we get back the same node we passed in, rather than a new node or
1048 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001049 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001050 // mechanics for us, we have no work to do in this case.
1051 if (RV.getNode() == N)
1052 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001053
Evan Cheng17a568b2008-08-29 22:21:44 +00001054 assert(N->getOpcode() != ISD::DELETED_NODE &&
1055 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1056 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001057
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001058 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001059 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001060 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001061 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001062 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001063
Devang Patel9728ea22011-05-23 22:04:42 +00001064 // Transfer debug value.
1065 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001066 WorkListRemover DeadNodes(*this);
1067 if (N->getNumValues() == RV.getNode()->getNumValues())
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001068 DAG.ReplaceAllUsesWith(N, RV.getNode());
Evan Cheng17a568b2008-08-29 22:21:44 +00001069 else {
1070 assert(N->getValueType(0) == RV.getValueType() &&
1071 N->getNumValues() == 1 && "Type mismatch");
1072 SDValue OpV = RV;
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001073 DAG.ReplaceAllUsesWith(N, &OpV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001074 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001075
Evan Cheng17a568b2008-08-29 22:21:44 +00001076 // Push the new node and any users onto the worklist
1077 AddToWorkList(RV.getNode());
1078 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001079
Evan Cheng17a568b2008-08-29 22:21:44 +00001080 // Add any uses of the old node to the worklist in case this node is the
1081 // last one that uses them. They may become dead after this node is
1082 // deleted.
1083 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1084 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001085
Dan Gohmandbe664a2009-01-19 21:44:21 +00001086 // Finally, if the node is now dead, remove it from the graph. The node
1087 // may not be dead if the replacement process recursively simplified to
1088 // something else needing this node.
1089 if (N->use_empty()) {
1090 // Nodes can be reintroduced into the worklist. Make sure we do not
1091 // process a node that has been replaced.
1092 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001093
Dan Gohmandbe664a2009-01-19 21:44:21 +00001094 // Finally, since the node is now dead, remove it from the graph.
1095 DAG.DeleteNode(N);
1096 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001097 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001098
Chris Lattner95038592005-10-05 06:35:28 +00001099 // If the root changed (e.g. it was a dead load, update the root).
1100 DAG.setRoot(Dummy.getValue());
Hal Finkel31490ba2012-04-16 03:33:22 +00001101 DAG.RemoveDeadNodes();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001102}
1103
Dan Gohman475871a2008-07-27 21:46:04 +00001104SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001105 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001106 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001107 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001108 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001109 case ISD::ADD: return visitADD(N);
1110 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001111 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001112 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001113 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001114 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001115 case ISD::MUL: return visitMUL(N);
1116 case ISD::SDIV: return visitSDIV(N);
1117 case ISD::UDIV: return visitUDIV(N);
1118 case ISD::SREM: return visitSREM(N);
1119 case ISD::UREM: return visitUREM(N);
1120 case ISD::MULHU: return visitMULHU(N);
1121 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001122 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1123 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001124 case ISD::SMULO: return visitSMULO(N);
1125 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001126 case ISD::SDIVREM: return visitSDIVREM(N);
1127 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001128 case ISD::AND: return visitAND(N);
1129 case ISD::OR: return visitOR(N);
1130 case ISD::XOR: return visitXOR(N);
1131 case ISD::SHL: return visitSHL(N);
1132 case ISD::SRA: return visitSRA(N);
1133 case ISD::SRL: return visitSRL(N);
1134 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001135 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001136 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001137 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001138 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7be2005-09-16 00:54:12 +00001139 case ISD::SELECT: return visitSELECT(N);
Benjamin Kramer6242fda2013-04-26 09:19:19 +00001140 case ISD::VSELECT: return visitVSELECT(N);
Nate Begeman452d7be2005-09-16 00:54:12 +00001141 case ISD::SELECT_CC: return visitSELECT_CC(N);
1142 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001143 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1144 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001145 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001146 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1147 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001148 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001149 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001150 case ISD::FADD: return visitFADD(N);
1151 case ISD::FSUB: return visitFSUB(N);
1152 case ISD::FMUL: return visitFMUL(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00001153 case ISD::FMA: return visitFMA(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001154 case ISD::FDIV: return visitFDIV(N);
1155 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001156 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001157 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1158 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1159 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1160 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1161 case ISD::FP_ROUND: return visitFP_ROUND(N);
1162 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1163 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1164 case ISD::FNEG: return visitFNEG(N);
1165 case ISD::FABS: return visitFABS(N);
Owen Anderson7c626d32012-08-13 23:32:49 +00001166 case ISD::FFLOOR: return visitFFLOOR(N);
1167 case ISD::FCEIL: return visitFCEIL(N);
1168 case ISD::FTRUNC: return visitFTRUNC(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001169 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001170 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001171 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001172 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001173 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001174 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001175 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1176 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001177 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001178 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001179 }
Dan Gohman475871a2008-07-27 21:46:04 +00001180 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001181}
1182
Dan Gohman475871a2008-07-27 21:46:04 +00001183SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001184 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001185
1186 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001187 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001188 assert(N->getOpcode() != ISD::DELETED_NODE &&
1189 "Node was deleted but visit returned NULL!");
1190
1191 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1192 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1193
1194 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001195 TargetLowering::DAGCombinerInfo
Nadav Rotem444b4bf2012-12-27 06:47:41 +00001196 DagCombineInfo(DAG, Level, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001197
1198 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1199 }
1200 }
1201
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001202 // If nothing happened still, try promoting the operation.
1203 if (RV.getNode() == 0) {
1204 switch (N->getOpcode()) {
1205 default: break;
1206 case ISD::ADD:
1207 case ISD::SUB:
1208 case ISD::MUL:
1209 case ISD::AND:
1210 case ISD::OR:
1211 case ISD::XOR:
1212 RV = PromoteIntBinOp(SDValue(N, 0));
1213 break;
1214 case ISD::SHL:
1215 case ISD::SRA:
1216 case ISD::SRL:
1217 RV = PromoteIntShiftOp(SDValue(N, 0));
1218 break;
1219 case ISD::SIGN_EXTEND:
1220 case ISD::ZERO_EXTEND:
1221 case ISD::ANY_EXTEND:
1222 RV = PromoteExtend(SDValue(N, 0));
1223 break;
1224 case ISD::LOAD:
1225 if (PromoteLoad(SDValue(N, 0)))
1226 RV = SDValue(N, 0);
1227 break;
1228 }
1229 }
1230
Scott Michelfdc40a02009-02-17 22:15:04 +00001231 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001232 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001233 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001234 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1235 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001236 SDValue N0 = N->getOperand(0);
1237 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001238
Evan Cheng08b11732008-03-22 01:55:50 +00001239 // Constant operands are canonicalized to RHS.
1240 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001241 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001242 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1243 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001244 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001245 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001246 }
1247 }
1248
Dan Gohman389079b2007-10-08 17:57:15 +00001249 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001250}
Dan Gohman389079b2007-10-08 17:57:15 +00001251
Chris Lattner6270f682006-10-08 22:57:01 +00001252/// getInputChainForNode - Given a node, return its input chain if it has one,
1253/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001254static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001255 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001256 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001257 return N->getOperand(0);
Stephen Linb4940152013-07-09 00:44:49 +00001258 if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001259 return N->getOperand(NumOps-1);
1260 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001261 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001262 return N->getOperand(i);
1263 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001264 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001265}
1266
Dan Gohman475871a2008-07-27 21:46:04 +00001267SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001268 // If N has two operands, where one has an input chain equal to the other,
1269 // the 'other' chain is redundant.
1270 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001271 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001272 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001273 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001274 return N->getOperand(1);
1275 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001276
Chris Lattnerc76d4412007-05-16 06:37:59 +00001277 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001278 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001279 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001280 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001281
Jim Laskey6ff23e52006-10-04 16:53:27 +00001282 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001283 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001284
Jim Laskey71382342006-10-07 23:37:56 +00001285 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001286 // encountered.
1287 for (unsigned i = 0; i < TFs.size(); ++i) {
1288 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001289
Jim Laskey6ff23e52006-10-04 16:53:27 +00001290 // Check each of the operands.
1291 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001292 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001293
Jim Laskey6ff23e52006-10-04 16:53:27 +00001294 switch (Op.getOpcode()) {
1295 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001296 // Entry tokens don't need to be added to the list. They are
1297 // rededundant.
1298 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001299 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001300
Jim Laskey6ff23e52006-10-04 16:53:27 +00001301 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001302 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001303 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001304 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001305 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001306 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001307 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001308 Changed = true;
1309 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001310 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001311 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001312
Jim Laskey6ff23e52006-10-04 16:53:27 +00001313 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001314 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001315 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001316 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001317 else
1318 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001319 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001320 }
1321 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001322 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001323
Dan Gohman475871a2008-07-27 21:46:04 +00001324 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001325
1326 // If we've change things around then replace token factor.
1327 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001328 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001329 // The entry token is the only possible outcome.
1330 Result = DAG.getEntryNode();
1331 } else {
1332 // New and improved token factor.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001333 Result = DAG.getNode(ISD::TokenFactor, SDLoc(N),
Owen Anderson825b72b2009-08-11 20:47:22 +00001334 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001335 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001336
Jim Laskey274062c2006-10-13 23:32:28 +00001337 // Don't add users to work list.
1338 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001339 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001340
Jim Laskey6ff23e52006-10-04 16:53:27 +00001341 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001342}
1343
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001344/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001345SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001346 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001347 // Replacing results may cause a different MERGE_VALUES to suddenly
1348 // be CSE'd with N, and carry its uses with it. Iterate until no
1349 // uses remain, to ensure that the node can be safely deleted.
Pete Cooper3affd9e2012-06-20 19:35:43 +00001350 // First add the users of this node to the work list so that they
1351 // can be tried again once they have new operands.
1352 AddUsersToWorkList(N);
Dan Gohman00edf392009-08-10 23:43:19 +00001353 do {
1354 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001355 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
Dan Gohman00edf392009-08-10 23:43:19 +00001356 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001357 removeFromWorkList(N);
1358 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001359 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001360}
1361
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001362static
Andrew Trickac6d9be2013-05-25 02:42:55 +00001363SDValue combineShlAddConstant(SDLoc DL, SDValue N0, SDValue N1,
Bill Wendlingd69c3142009-01-30 02:23:43 +00001364 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001365 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001366 SDValue N00 = N0.getOperand(0);
1367 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001368 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001369
Gabor Greifba36cb52008-08-28 21:40:38 +00001370 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001371 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001372 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Andrew Trickac6d9be2013-05-25 02:42:55 +00001373 N0 = DAG.getNode(ISD::ADD, SDLoc(N0), VT,
1374 DAG.getNode(ISD::SHL, SDLoc(N00), VT,
Bill Wendlingd69c3142009-01-30 02:23:43 +00001375 N00.getOperand(0), N01),
Andrew Trickac6d9be2013-05-25 02:42:55 +00001376 DAG.getNode(ISD::SHL, SDLoc(N01), VT,
Bill Wendlingd69c3142009-01-30 02:23:43 +00001377 N00.getOperand(1), N01));
1378 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001379 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001380
Dan Gohman475871a2008-07-27 21:46:04 +00001381 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001382}
1383
Dan Gohman475871a2008-07-27 21:46:04 +00001384SDValue DAGCombiner::visitADD(SDNode *N) {
1385 SDValue N0 = N->getOperand(0);
1386 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001387 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1388 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001389 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001390
1391 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001392 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001393 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001394 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper48b509c2012-12-10 08:12:29 +00001395
1396 // fold (add x, 0) -> x, vector edition
1397 if (ISD::isBuildVectorAllZeros(N1.getNode()))
1398 return N0;
1399 if (ISD::isBuildVectorAllZeros(N0.getNode()))
1400 return N1;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001401 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001402
Dan Gohman613e0d82007-07-03 14:03:57 +00001403 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001404 if (N0.getOpcode() == ISD::UNDEF)
1405 return N0;
1406 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001407 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001408 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001409 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001410 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001411 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001412 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001413 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001414 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001415 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001416 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001417 // fold (add Sym, c) -> Sym+c
1418 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001419 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001420 GA->getOpcode() == ISD::GlobalAddress)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001421 return DAG.getGlobalAddress(GA->getGlobal(), SDLoc(N1C), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001422 GA->getOffset() +
1423 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001424 // fold ((c1-A)+c2) -> (c1+c2)-A
1425 if (N1C && N0.getOpcode() == ISD::SUB)
1426 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001427 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001428 DAG.getConstant(N1C->getAPIntValue()+
1429 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001430 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001431 // reassociate add
Andrew Trickac6d9be2013-05-25 02:42:55 +00001432 SDValue RADD = ReassociateOps(ISD::ADD, SDLoc(N), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001433 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001434 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001435 // fold ((0-A) + B) -> B-A
1436 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1437 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001438 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001439 // fold (A + (0-B)) -> A-B
1440 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1441 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001442 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001443 // fold (A+(B-A)) -> B
1444 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001445 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001446 // fold ((B-A)+A) -> B
1447 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1448 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001449 // fold (A+(B-(A+C))) to (B-C)
1450 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001451 N0 == N1.getOperand(1).getOperand(0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001452 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001453 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001454 // fold (A+(B-(C+A))) to (B-C)
1455 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001456 N0 == N1.getOperand(1).getOperand(1))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001457 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001458 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001459 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001460 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1461 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001462 N0 == N1.getOperand(0).getOperand(1))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001463 return DAG.getNode(N1.getOpcode(), SDLoc(N), VT,
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001464 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001465
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001466 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1467 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1468 SDValue N00 = N0.getOperand(0);
1469 SDValue N01 = N0.getOperand(1);
1470 SDValue N10 = N1.getOperand(0);
1471 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001472
1473 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001474 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
1475 DAG.getNode(ISD::ADD, SDLoc(N0), VT, N00, N10),
1476 DAG.getNode(ISD::ADD, SDLoc(N1), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001477 }
Chris Lattner947c2892006-03-13 06:51:27 +00001478
Dan Gohman475871a2008-07-27 21:46:04 +00001479 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1480 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001481
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001482 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001483 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001484 APInt LHSZero, LHSOne;
1485 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001486 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001487
Dan Gohman948d8ea2008-02-20 16:33:30 +00001488 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001489 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001490
Chris Lattner947c2892006-03-13 06:51:27 +00001491 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1492 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001493 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001494 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001495 }
1496 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001497
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001498 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001499 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001500 SDValue Result = combineShlAddConstant(SDLoc(N), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001501 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001502 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001503 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001504 SDValue Result = combineShlAddConstant(SDLoc(N), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001505 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001506 }
1507
Dan Gohmancd9e1552010-01-19 23:30:49 +00001508 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1509 if (N1.getOpcode() == ISD::SHL &&
1510 N1.getOperand(0).getOpcode() == ISD::SUB)
1511 if (ConstantSDNode *C =
1512 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1513 if (C->getAPIntValue() == 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001514 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N0,
1515 DAG.getNode(ISD::SHL, SDLoc(N), VT,
Dan Gohmancd9e1552010-01-19 23:30:49 +00001516 N1.getOperand(0).getOperand(1),
1517 N1.getOperand(1)));
1518 if (N0.getOpcode() == ISD::SHL &&
1519 N0.getOperand(0).getOpcode() == ISD::SUB)
1520 if (ConstantSDNode *C =
1521 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1522 if (C->getAPIntValue() == 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001523 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1,
1524 DAG.getNode(ISD::SHL, SDLoc(N), VT,
Dan Gohmancd9e1552010-01-19 23:30:49 +00001525 N0.getOperand(0).getOperand(1),
1526 N0.getOperand(1)));
1527
Owen Andersonbc146b02010-09-21 20:42:50 +00001528 if (N1.getOpcode() == ISD::AND) {
1529 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001530 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001531 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1532 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001533
Owen Andersonbc146b02010-09-21 20:42:50 +00001534 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1535 // and similar xforms where the inner op is either ~0 or 0.
1536 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001537 SDLoc DL(N);
Owen Andersonbc146b02010-09-21 20:42:50 +00001538 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1539 }
1540 }
1541
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001542 // add (sext i1), X -> sub X, (zext i1)
1543 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1544 N0.getOperand(0).getValueType() == MVT::i1 &&
1545 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001546 SDLoc DL(N);
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001547 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1548 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1549 }
1550
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001551 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001552}
1553
Dan Gohman475871a2008-07-27 21:46:04 +00001554SDValue DAGCombiner::visitADDC(SDNode *N) {
1555 SDValue N0 = N->getOperand(0);
1556 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001557 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1558 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001559 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001560
Chris Lattner91153682007-03-04 20:03:15 +00001561 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001562 if (!N->hasAnyUseOfValue(1))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001563 return CombineTo(N, DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001564 DAG.getNode(ISD::CARRY_FALSE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001565 SDLoc(N), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001566
Chris Lattner91153682007-03-04 20:03:15 +00001567 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001568 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001569 return DAG.getNode(ISD::ADDC, SDLoc(N), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001570
Chris Lattnerb6541762007-03-04 20:40:38 +00001571 // fold (addc x, 0) -> x + no carry out
1572 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001573 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001574 SDLoc(N), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001575
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001576 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001577 APInt LHSZero, LHSOne;
1578 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001579 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001580
Dan Gohman948d8ea2008-02-20 16:33:30 +00001581 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001582 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001583
Chris Lattnerb6541762007-03-04 20:40:38 +00001584 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1585 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001586 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001587 return CombineTo(N, DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001588 DAG.getNode(ISD::CARRY_FALSE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001589 SDLoc(N), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001590 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001591
Dan Gohman475871a2008-07-27 21:46:04 +00001592 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001593}
1594
Dan Gohman475871a2008-07-27 21:46:04 +00001595SDValue DAGCombiner::visitADDE(SDNode *N) {
1596 SDValue N0 = N->getOperand(0);
1597 SDValue N1 = N->getOperand(1);
1598 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001599 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1600 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001601
Chris Lattner91153682007-03-04 20:03:15 +00001602 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001603 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001604 return DAG.getNode(ISD::ADDE, SDLoc(N), N->getVTList(),
Bill Wendling14036c02009-01-30 02:38:00 +00001605 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001606
Chris Lattnerb6541762007-03-04 20:40:38 +00001607 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001608 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001609 return DAG.getNode(ISD::ADDC, SDLoc(N), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001610
Dan Gohman475871a2008-07-27 21:46:04 +00001611 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001612}
1613
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001614// Since it may not be valid to emit a fold to zero for vector initializers
1615// check if we can before folding.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001616static SDValue tryFoldToZero(SDLoc DL, const TargetLowering &TLI, EVT VT,
Hal Finkelbd6f1f62013-07-09 17:02:45 +00001617 SelectionDAG &DAG,
1618 bool LegalOperations, bool LegalTypes) {
Stephen Linb4940152013-07-09 00:44:49 +00001619 if (!VT.isVector())
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001620 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001621 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001622 // Produce a vector of zeros.
Hal Finkelbd6f1f62013-07-09 17:02:45 +00001623 EVT ElemTy = VT.getVectorElementType();
1624 if (LegalTypes && TLI.getTypeAction(*DAG.getContext(), ElemTy) ==
1625 TargetLowering::TypePromoteInteger)
1626 ElemTy = TLI.getTypeToTransformTo(*DAG.getContext(), ElemTy);
1627 assert((!LegalTypes || TLI.isTypeLegal(ElemTy)) &&
1628 "Type for zero vector elements is not legal");
1629 SDValue El = DAG.getConstant(0, ElemTy);
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001630 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1631 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1632 &Ops[0], Ops.size());
1633 }
1634 return SDValue();
1635}
1636
Dan Gohman475871a2008-07-27 21:46:04 +00001637SDValue DAGCombiner::visitSUB(SDNode *N) {
1638 SDValue N0 = N->getOperand(0);
1639 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001640 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1641 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001642 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1643 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001644 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001645
Dan Gohman7f321562007-06-25 16:23:39 +00001646 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001647 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001648 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001649 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper48b509c2012-12-10 08:12:29 +00001650
1651 // fold (sub x, 0) -> x, vector edition
1652 if (ISD::isBuildVectorAllZeros(N1.getNode()))
1653 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001654 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001655
Chris Lattner854077d2005-10-17 01:07:11 +00001656 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001657 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001658 if (N0 == N1)
Hal Finkelbd6f1f62013-07-09 17:02:45 +00001659 return tryFoldToZero(SDLoc(N), TLI, VT, DAG, LegalOperations, LegalTypes);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001660 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001661 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001662 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001663 // fold (sub x, c) -> (add x, -c)
1664 if (N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001665 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001666 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001667 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1668 if (N0C && N0C->isAllOnesValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001669 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001670 // fold A-(A-B) -> B
1671 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1672 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001673 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001674 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001675 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001676 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001677 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001678 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001679 // fold C2-(A+C1) -> (C2-C1)-A
1680 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00001681 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(),
1682 VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001683 return DAG.getNode(ISD::SUB, SDLoc(N), VT, NewC,
Bill Wendling96cb1122012-07-19 00:04:14 +00001684 N1.getOperand(0));
Eric Christopher7332e6e2011-07-14 01:12:15 +00001685 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001686 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001687 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001688 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1689 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001690 N0.getOperand(1).getOperand(0) == N1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001691 return DAG.getNode(N0.getOperand(1).getOpcode(), SDLoc(N), VT,
Bill Wendlingb0702e02009-01-30 02:42:10 +00001692 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001693 // fold ((A+(C+B))-B) -> A+C
1694 if (N0.getOpcode() == ISD::ADD &&
1695 N0.getOperand(1).getOpcode() == ISD::ADD &&
1696 N0.getOperand(1).getOperand(1) == N1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001697 return DAG.getNode(ISD::ADD, SDLoc(N), VT,
Bill Wendlingb0702e02009-01-30 02:42:10 +00001698 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001699 // fold ((A-(B-C))-C) -> A-B
1700 if (N0.getOpcode() == ISD::SUB &&
1701 N0.getOperand(1).getOpcode() == ISD::SUB &&
1702 N0.getOperand(1).getOperand(1) == N1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001703 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendlingb0702e02009-01-30 02:42:10 +00001704 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001705
Dan Gohman613e0d82007-07-03 14:03:57 +00001706 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001707 if (N0.getOpcode() == ISD::UNDEF)
1708 return N0;
1709 if (N1.getOpcode() == ISD::UNDEF)
1710 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001711
Dan Gohman6520e202008-10-18 02:06:02 +00001712 // If the relocation model supports it, consider symbol offsets.
1713 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001714 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001715 // fold (sub Sym, c) -> Sym-c
1716 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001717 return DAG.getGlobalAddress(GA->getGlobal(), SDLoc(N1C), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001718 GA->getOffset() -
1719 (uint64_t)N1C->getSExtValue());
1720 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1721 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1722 if (GA->getGlobal() == GB->getGlobal())
1723 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1724 VT);
1725 }
1726
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001727 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001728}
1729
Craig Toppercc274522012-01-07 09:06:39 +00001730SDValue DAGCombiner::visitSUBC(SDNode *N) {
1731 SDValue N0 = N->getOperand(0);
1732 SDValue N1 = N->getOperand(1);
1733 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1734 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1735 EVT VT = N0.getValueType();
1736
1737 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001738 if (!N->hasAnyUseOfValue(1))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001739 return CombineTo(N, DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, N1),
1740 DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
Craig Toppercc274522012-01-07 09:06:39 +00001741 MVT::Glue));
1742
1743 // fold (subc x, x) -> 0 + no borrow
1744 if (N0 == N1)
1745 return CombineTo(N, DAG.getConstant(0, VT),
Andrew Trickac6d9be2013-05-25 02:42:55 +00001746 DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
Craig Toppercc274522012-01-07 09:06:39 +00001747 MVT::Glue));
1748
1749 // fold (subc x, 0) -> x + no borrow
1750 if (N1C && N1C->isNullValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001751 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
Craig Toppercc274522012-01-07 09:06:39 +00001752 MVT::Glue));
1753
1754 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1755 if (N0C && N0C->isAllOnesValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001756 return CombineTo(N, DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0),
1757 DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
Craig Toppercc274522012-01-07 09:06:39 +00001758 MVT::Glue));
1759
1760 return SDValue();
1761}
1762
1763SDValue DAGCombiner::visitSUBE(SDNode *N) {
1764 SDValue N0 = N->getOperand(0);
1765 SDValue N1 = N->getOperand(1);
1766 SDValue CarryIn = N->getOperand(2);
1767
1768 // fold (sube x, y, false) -> (subc x, y)
1769 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001770 return DAG.getNode(ISD::SUBC, SDLoc(N), N->getVTList(), N0, N1);
Craig Toppercc274522012-01-07 09:06:39 +00001771
1772 return SDValue();
1773}
1774
Elena Demikhovskyd8026702013-06-26 12:15:53 +00001775/// isConstantSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
1776/// all the same constant or undefined.
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001777static bool isConstantSplatVector(SDNode *N, APInt& SplatValue) {
1778 BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(N);
1779 if (!C)
1780 return false;
1781
1782 APInt SplatUndef;
1783 unsigned SplatBitSize;
1784 bool HasAnyUndefs;
1785 EVT EltVT = N->getValueType(0).getVectorElementType();
1786 return (C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
1787 HasAnyUndefs) &&
1788 EltVT.getSizeInBits() >= SplatBitSize);
1789}
1790
Dan Gohman475871a2008-07-27 21:46:04 +00001791SDValue DAGCombiner::visitMUL(SDNode *N) {
1792 SDValue N0 = N->getOperand(0);
1793 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00001794 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001795
Dan Gohman613e0d82007-07-03 14:03:57 +00001796 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001797 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001798 return DAG.getConstant(0, VT);
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001799
1800 bool N0IsConst = false;
1801 bool N1IsConst = false;
1802 APInt ConstValue0, ConstValue1;
1803 // fold vector ops
1804 if (VT.isVector()) {
1805 SDValue FoldedVOp = SimplifyVBinOp(N);
1806 if (FoldedVOp.getNode()) return FoldedVOp;
1807
1808 N0IsConst = isConstantSplatVector(N0.getNode(), ConstValue0);
1809 N1IsConst = isConstantSplatVector(N1.getNode(), ConstValue1);
1810 } else {
1811 N0IsConst = dyn_cast<ConstantSDNode>(N0) != 0;
1812 ConstValue0 = N0IsConst? (dyn_cast<ConstantSDNode>(N0))->getAPIntValue() : APInt();
1813 N1IsConst = dyn_cast<ConstantSDNode>(N1) != 0;
1814 ConstValue1 = N1IsConst? (dyn_cast<ConstantSDNode>(N1))->getAPIntValue() : APInt();
1815 }
1816
Nate Begeman1d4d4142005-09-01 00:19:25 +00001817 // fold (mul c1, c2) -> c1*c2
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001818 if (N0IsConst && N1IsConst)
1819 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0.getNode(), N1.getNode());
1820
Nate Begeman99801192005-09-07 23:25:52 +00001821 // canonicalize constant to RHS
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001822 if (N0IsConst && !N1IsConst)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001823 return DAG.getNode(ISD::MUL, SDLoc(N), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001824 // fold (mul x, 0) -> 0
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001825 if (N1IsConst && ConstValue1 == 0)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001826 return N1;
Benjamin Kramer530d09a2013-09-19 13:28:20 +00001827 // We require a splat of the entire scalar bit width for non-contiguous
1828 // bit patterns.
1829 bool IsFullSplat =
1830 ConstValue1.getBitWidth() == VT.getScalarType().getSizeInBits();
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001831 // fold (mul x, 1) -> x
Benjamin Kramer530d09a2013-09-19 13:28:20 +00001832 if (N1IsConst && ConstValue1 == 1 && IsFullSplat)
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001833 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001834 // fold (mul x, -1) -> 0-x
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001835 if (N1IsConst && ConstValue1.isAllOnesValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001836 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001837 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001838 // fold (mul x, (1 << c)) -> x << c
Benjamin Kramer530d09a2013-09-19 13:28:20 +00001839 if (N1IsConst && ConstValue1.isPowerOf2() && IsFullSplat)
Andrew Trickac6d9be2013-05-25 02:42:55 +00001840 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001841 DAG.getConstant(ConstValue1.logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001842 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001843 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Benjamin Kramer530d09a2013-09-19 13:28:20 +00001844 if (N1IsConst && (-ConstValue1).isPowerOf2() && IsFullSplat) {
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001845 unsigned Log2Val = (-ConstValue1).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001846 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001847 // single-use add), we should put the negate there.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001848 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001849 DAG.getConstant(0, VT),
Andrew Trickac6d9be2013-05-25 02:42:55 +00001850 DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001851 DAG.getConstant(Log2Val,
1852 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001853 }
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001854
1855 APInt Val;
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001856 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Stephen Lin155615d2013-07-08 00:37:03 +00001857 if (N1IsConst && N0.getOpcode() == ISD::SHL &&
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001858 (isConstantSplatVector(N0.getOperand(1).getNode(), Val) ||
1859 isa<ConstantSDNode>(N0.getOperand(1)))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001860 SDValue C3 = DAG.getNode(ISD::SHL, SDLoc(N), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001861 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001862 AddToWorkList(C3.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00001863 return DAG.getNode(ISD::MUL, SDLoc(N), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001864 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001865 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001866
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001867 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1868 // use.
1869 {
Dan Gohman475871a2008-07-27 21:46:04 +00001870 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001871 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
Stephen Lin155615d2013-07-08 00:37:03 +00001872 if (N0.getOpcode() == ISD::SHL &&
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001873 (isConstantSplatVector(N0.getOperand(1).getNode(), Val) ||
1874 isa<ConstantSDNode>(N0.getOperand(1))) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001875 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001876 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001877 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001878 isa<ConstantSDNode>(N1.getOperand(1)) &&
1879 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001880 Sh = N1; Y = N0;
1881 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001882
Gabor Greifba36cb52008-08-28 21:40:38 +00001883 if (Sh.getNode()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001884 SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001885 Sh.getOperand(0), Y);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001886 return DAG.getNode(ISD::SHL, SDLoc(N), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001887 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001888 }
1889 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001890
Chris Lattnera1deca32006-03-04 23:33:26 +00001891 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Elena Demikhovsky87070fe2013-06-26 10:55:03 +00001892 if (N1IsConst && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
1893 (isConstantSplatVector(N0.getOperand(1).getNode(), Val) ||
1894 isa<ConstantSDNode>(N0.getOperand(1))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001895 return DAG.getNode(ISD::ADD, SDLoc(N), VT,
1896 DAG.getNode(ISD::MUL, SDLoc(N0), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001897 N0.getOperand(0), N1),
Andrew Trickac6d9be2013-05-25 02:42:55 +00001898 DAG.getNode(ISD::MUL, SDLoc(N1), VT,
Bill Wendling9c8148a2009-01-30 02:45:56 +00001899 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001900
Nate Begemancd4d58c2006-02-03 06:46:56 +00001901 // reassociate mul
Andrew Trickac6d9be2013-05-25 02:42:55 +00001902 SDValue RMUL = ReassociateOps(ISD::MUL, SDLoc(N), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001903 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001904 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001905
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001906 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001907}
1908
Dan Gohman475871a2008-07-27 21:46:04 +00001909SDValue DAGCombiner::visitSDIV(SDNode *N) {
1910 SDValue N0 = N->getOperand(0);
1911 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001912 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1913 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001914 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001915
Dan Gohman7f321562007-06-25 16:23:39 +00001916 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001917 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001918 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001919 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001920 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001921
Nate Begeman1d4d4142005-09-01 00:19:25 +00001922 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001923 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001924 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001925 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001926 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001927 return N0;
1928 // fold (sdiv X, -1) -> 0-X
1929 if (N1C && N1C->isAllOnesValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001930 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling944d34b2009-01-30 02:52:17 +00001931 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001932 // If we know the sign bits of both operands are zero, strength reduce to a
1933 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001934 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001935 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00001936 return DAG.getNode(ISD::UDIV, SDLoc(N), N1.getValueType(),
Bill Wendling944d34b2009-01-30 02:52:17 +00001937 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001938 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001939 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001940 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001941 (N1C->getAPIntValue().isPowerOf2() ||
1942 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001943 // If dividing by powers of two is cheap, then don't perform the following
1944 // fold.
1945 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001946 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001947
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001948 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001949
Chris Lattner8f4880b2006-02-16 08:02:36 +00001950 // Splat the sign bit into the register
Andrew Trickac6d9be2013-05-25 02:42:55 +00001951 SDValue SGN = DAG.getNode(ISD::SRA, SDLoc(N), VT, N0,
Bill Wendling944d34b2009-01-30 02:52:17 +00001952 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001953 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001954 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001955
Chris Lattner8f4880b2006-02-16 08:02:36 +00001956 // Add (N0 < 0) ? abs2 - 1 : 0;
Andrew Trickac6d9be2013-05-25 02:42:55 +00001957 SDValue SRL = DAG.getNode(ISD::SRL, SDLoc(N), VT, SGN,
Bill Wendling944d34b2009-01-30 02:52:17 +00001958 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001959 getShiftAmountTy(SGN.getValueType())));
Andrew Trickac6d9be2013-05-25 02:42:55 +00001960 SDValue ADD = DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001961 AddToWorkList(SRL.getNode());
1962 AddToWorkList(ADD.getNode()); // Divide by pow2
Andrew Trickac6d9be2013-05-25 02:42:55 +00001963 SDValue SRA = DAG.getNode(ISD::SRA, SDLoc(N), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001964 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001965
Nate Begeman405e3ec2005-10-21 00:02:42 +00001966 // If we're dividing by a positive value, we're done. Otherwise, we must
1967 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001968 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001969 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001970
Gabor Greifba36cb52008-08-28 21:40:38 +00001971 AddToWorkList(SRA.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00001972 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling944d34b2009-01-30 02:52:17 +00001973 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001974 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001975
Nate Begeman69575232005-10-20 02:15:44 +00001976 // if integer divide is expensive and we satisfy the requirements, emit an
1977 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001978 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001979 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001980 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001981 }
Dan Gohman7f321562007-06-25 16:23:39 +00001982
Dan Gohman613e0d82007-07-03 14:03:57 +00001983 // undef / X -> 0
1984 if (N0.getOpcode() == ISD::UNDEF)
1985 return DAG.getConstant(0, VT);
1986 // X / undef -> undef
1987 if (N1.getOpcode() == ISD::UNDEF)
1988 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001989
Dan Gohman475871a2008-07-27 21:46:04 +00001990 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001991}
1992
Dan Gohman475871a2008-07-27 21:46:04 +00001993SDValue DAGCombiner::visitUDIV(SDNode *N) {
1994 SDValue N0 = N->getOperand(0);
1995 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001996 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1997 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001998 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001999
Dan Gohman7f321562007-06-25 16:23:39 +00002000 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002001 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002002 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002003 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002004 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002005
Nate Begeman1d4d4142005-09-01 00:19:25 +00002006 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002007 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002008 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002009 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00002010 if (N1C && N1C->getAPIntValue().isPowerOf2())
Andrew Trickac6d9be2013-05-25 02:42:55 +00002011 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002012 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00002013 getShiftAmountTy(N0.getValueType())));
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002014 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00002015 if (N1.getOpcode() == ISD::SHL) {
2016 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002017 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00002018 EVT ADDVT = N1.getOperand(1).getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00002019 SDValue Add = DAG.getNode(ISD::ADD, SDLoc(N), ADDVT,
Bill Wendling07d85142009-01-30 02:55:25 +00002020 N1.getOperand(1),
2021 DAG.getConstant(SHC->getAPIntValue()
2022 .logBase2(),
2023 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002024 AddToWorkList(Add.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002025 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00002026 }
2027 }
2028 }
Nate Begeman69575232005-10-20 02:15:44 +00002029 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00002030 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002031 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002032 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00002033 }
Dan Gohman7f321562007-06-25 16:23:39 +00002034
Dan Gohman613e0d82007-07-03 14:03:57 +00002035 // undef / X -> 0
2036 if (N0.getOpcode() == ISD::UNDEF)
2037 return DAG.getConstant(0, VT);
2038 // X / undef -> undef
2039 if (N1.getOpcode() == ISD::UNDEF)
2040 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002041
Dan Gohman475871a2008-07-27 21:46:04 +00002042 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002043}
2044
Dan Gohman475871a2008-07-27 21:46:04 +00002045SDValue DAGCombiner::visitSREM(SDNode *N) {
2046 SDValue N0 = N->getOperand(0);
2047 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002048 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2049 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002050 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002051
Nate Begeman1d4d4142005-09-01 00:19:25 +00002052 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002053 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002054 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002055 // If we know the sign bits of both operands are zero, strength reduce to a
2056 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00002057 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002058 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00002059 return DAG.getNode(ISD::UREM, SDLoc(N), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00002060 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002061
Dan Gohman77003042007-11-26 23:46:11 +00002062 // If X/C can be simplified by the division-by-constant logic, lower
2063 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002064 if (N1C && !N1C->isNullValue()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002065 SDValue Div = DAG.getNode(ISD::SDIV, SDLoc(N), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002066 AddToWorkList(Div.getNode());
2067 SDValue OptimizedDiv = combine(Div.getNode());
2068 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002069 SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT,
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002070 OptimizedDiv, N1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00002071 SDValue Sub = DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002072 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002073 return Sub;
2074 }
Chris Lattner26d29902006-10-12 20:58:32 +00002075 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002076
Dan Gohman613e0d82007-07-03 14:03:57 +00002077 // undef % X -> 0
2078 if (N0.getOpcode() == ISD::UNDEF)
2079 return DAG.getConstant(0, VT);
2080 // X % undef -> undef
2081 if (N1.getOpcode() == ISD::UNDEF)
2082 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002083
Dan Gohman475871a2008-07-27 21:46:04 +00002084 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002085}
2086
Dan Gohman475871a2008-07-27 21:46:04 +00002087SDValue DAGCombiner::visitUREM(SDNode *N) {
2088 SDValue N0 = N->getOperand(0);
2089 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002090 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2091 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002092 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002093
Nate Begeman1d4d4142005-09-01 00:19:25 +00002094 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002095 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002096 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002097 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002098 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Andrew Trickac6d9be2013-05-25 02:42:55 +00002099 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002100 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002101 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2102 if (N1.getOpcode() == ISD::SHL) {
2103 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002104 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002105 SDValue Add =
Andrew Trickac6d9be2013-05-25 02:42:55 +00002106 DAG.getNode(ISD::ADD, SDLoc(N), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002107 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002108 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002109 AddToWorkList(Add.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002110 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002111 }
2112 }
2113 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002114
Dan Gohman77003042007-11-26 23:46:11 +00002115 // If X/C can be simplified by the division-by-constant logic, lower
2116 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002117 if (N1C && !N1C->isNullValue()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002118 SDValue Div = DAG.getNode(ISD::UDIV, SDLoc(N), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002119 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002120 SDValue OptimizedDiv = combine(Div.getNode());
2121 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002122 SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT,
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002123 OptimizedDiv, N1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00002124 SDValue Sub = DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002125 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002126 return Sub;
2127 }
Chris Lattner26d29902006-10-12 20:58:32 +00002128 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002129
Dan Gohman613e0d82007-07-03 14:03:57 +00002130 // undef % X -> 0
2131 if (N0.getOpcode() == ISD::UNDEF)
2132 return DAG.getConstant(0, VT);
2133 // X % undef -> undef
2134 if (N1.getOpcode() == ISD::UNDEF)
2135 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002136
Dan Gohman475871a2008-07-27 21:46:04 +00002137 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002138}
2139
Dan Gohman475871a2008-07-27 21:46:04 +00002140SDValue DAGCombiner::visitMULHS(SDNode *N) {
2141 SDValue N0 = N->getOperand(0);
2142 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002143 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002144 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00002145 SDLoc DL(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00002146
Nate Begeman1d4d4142005-09-01 00:19:25 +00002147 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002148 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002149 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002150 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002151 if (N1C && N1C->getAPIntValue() == 1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00002152 return DAG.getNode(ISD::SRA, SDLoc(N), N0.getValueType(), N0,
Bill Wendling326411d2009-01-30 03:00:18 +00002153 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002154 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002155 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002156 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002157 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002158
Chris Lattnerde1c3602010-12-13 08:39:01 +00002159 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2160 // plus a shift.
2161 if (VT.isSimple() && !VT.isVector()) {
2162 MVT Simple = VT.getSimpleVT();
2163 unsigned SimpleSize = Simple.getSizeInBits();
2164 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2165 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2166 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2167 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2168 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002169 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002170 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002171 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2172 }
2173 }
Owen Anderson95771af2011-02-25 21:41:48 +00002174
Dan Gohman475871a2008-07-27 21:46:04 +00002175 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002176}
2177
Dan Gohman475871a2008-07-27 21:46:04 +00002178SDValue DAGCombiner::visitMULHU(SDNode *N) {
2179 SDValue N0 = N->getOperand(0);
2180 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002181 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002182 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00002183 SDLoc DL(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00002184
Nate Begeman1d4d4142005-09-01 00:19:25 +00002185 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002186 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002187 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002188 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002189 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002190 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002191 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002192 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002193 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002194
Chris Lattnerde1c3602010-12-13 08:39:01 +00002195 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2196 // plus a shift.
2197 if (VT.isSimple() && !VT.isVector()) {
2198 MVT Simple = VT.getSimpleVT();
2199 unsigned SimpleSize = Simple.getSizeInBits();
2200 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2201 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2202 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2203 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2204 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2205 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002206 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002207 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2208 }
2209 }
Owen Anderson95771af2011-02-25 21:41:48 +00002210
Dan Gohman475871a2008-07-27 21:46:04 +00002211 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002212}
2213
Dan Gohman389079b2007-10-08 17:57:15 +00002214/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2215/// compute two values. LoOp and HiOp give the opcodes for the two computations
2216/// that are being performed. Return true if a simplification was made.
2217///
Scott Michelfdc40a02009-02-17 22:15:04 +00002218SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002219 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002220 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002221 bool HiExists = N->hasAnyUseOfValue(1);
2222 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002223 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002224 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002225 SDValue Res = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0),
Bill Wendling826d1142009-01-30 03:08:40 +00002226 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002227 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002228 }
2229
2230 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002231 bool LoExists = N->hasAnyUseOfValue(0);
2232 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002233 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002234 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002235 SDValue Res = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1),
Bill Wendling826d1142009-01-30 03:08:40 +00002236 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002237 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002238 }
2239
Evan Cheng44711942007-11-08 09:25:29 +00002240 // If both halves are used, return as it is.
2241 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002242 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002243
2244 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002245 if (LoExists) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002246 SDValue Lo = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0),
Bill Wendling826d1142009-01-30 03:08:40 +00002247 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002248 AddToWorkList(Lo.getNode());
2249 SDValue LoOpt = combine(Lo.getNode());
2250 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002251 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002252 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002253 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002254 }
2255
Evan Cheng44711942007-11-08 09:25:29 +00002256 if (HiExists) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002257 SDValue Hi = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002258 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002259 AddToWorkList(Hi.getNode());
2260 SDValue HiOpt = combine(Hi.getNode());
2261 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002262 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002263 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002264 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002265 }
Bill Wendling826d1142009-01-30 03:08:40 +00002266
Dan Gohman475871a2008-07-27 21:46:04 +00002267 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002268}
2269
Dan Gohman475871a2008-07-27 21:46:04 +00002270SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2271 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002272 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002273
Chris Lattner33e77d32010-12-15 06:04:19 +00002274 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00002275 SDLoc DL(N);
Chris Lattner33e77d32010-12-15 06:04:19 +00002276
2277 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2278 // plus a shift.
2279 if (VT.isSimple() && !VT.isVector()) {
2280 MVT Simple = VT.getSimpleVT();
2281 unsigned SimpleSize = Simple.getSizeInBits();
2282 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2283 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2284 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2285 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2286 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2287 // Compute the high part as N1.
2288 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002289 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002290 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2291 // Compute the low part as N0.
2292 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2293 return CombineTo(N, Lo, Hi);
2294 }
2295 }
Owen Anderson95771af2011-02-25 21:41:48 +00002296
Dan Gohman475871a2008-07-27 21:46:04 +00002297 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002298}
2299
Dan Gohman475871a2008-07-27 21:46:04 +00002300SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2301 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002302 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002303
Chris Lattner33e77d32010-12-15 06:04:19 +00002304 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00002305 SDLoc DL(N);
Owen Anderson95771af2011-02-25 21:41:48 +00002306
Chris Lattner33e77d32010-12-15 06:04:19 +00002307 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2308 // plus a shift.
2309 if (VT.isSimple() && !VT.isVector()) {
2310 MVT Simple = VT.getSimpleVT();
2311 unsigned SimpleSize = Simple.getSizeInBits();
2312 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2313 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2314 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2315 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2316 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2317 // Compute the high part as N1.
2318 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002319 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002320 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2321 // Compute the low part as N0.
2322 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2323 return CombineTo(N, Lo, Hi);
2324 }
2325 }
Owen Anderson95771af2011-02-25 21:41:48 +00002326
Dan Gohman475871a2008-07-27 21:46:04 +00002327 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002328}
2329
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002330SDValue DAGCombiner::visitSMULO(SDNode *N) {
2331 // (smulo x, 2) -> (saddo x, x)
2332 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2333 if (C2->getAPIntValue() == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00002334 return DAG.getNode(ISD::SADDO, SDLoc(N), N->getVTList(),
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002335 N->getOperand(0), N->getOperand(0));
2336
2337 return SDValue();
2338}
2339
2340SDValue DAGCombiner::visitUMULO(SDNode *N) {
2341 // (umulo x, 2) -> (uaddo x, x)
2342 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2343 if (C2->getAPIntValue() == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00002344 return DAG.getNode(ISD::UADDO, SDLoc(N), N->getVTList(),
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002345 N->getOperand(0), N->getOperand(0));
2346
2347 return SDValue();
2348}
2349
Dan Gohman475871a2008-07-27 21:46:04 +00002350SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2351 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002352 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002353
Dan Gohman475871a2008-07-27 21:46:04 +00002354 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002355}
2356
Dan Gohman475871a2008-07-27 21:46:04 +00002357SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2358 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002359 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002360
Dan Gohman475871a2008-07-27 21:46:04 +00002361 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002362}
2363
Chris Lattner35e5c142006-05-05 05:51:50 +00002364/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2365/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002366SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2367 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002368 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002369 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002370
Dan Gohmanff00a552010-01-14 03:08:49 +00002371 // Bail early if none of these transforms apply.
2372 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2373
Chris Lattner540121f2006-05-05 06:31:05 +00002374 // For each of OP in AND/OR/XOR:
2375 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2376 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2377 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002378 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002379 //
2380 // do not sink logical op inside of a vector extend, since it may combine
2381 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002382 EVT Op0VT = N0.getOperand(0).getValueType();
2383 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002384 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002385 // Avoid infinite looping with PromoteIntBinOp.
2386 (N0.getOpcode() == ISD::ANY_EXTEND &&
2387 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002388 (N0.getOpcode() == ISD::TRUNCATE &&
2389 (!TLI.isZExtFree(VT, Op0VT) ||
2390 !TLI.isTruncateFree(Op0VT, VT)) &&
2391 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002392 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002393 Op0VT == N1.getOperand(0).getValueType() &&
2394 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002395 SDValue ORNode = DAG.getNode(N->getOpcode(), SDLoc(N0),
Bill Wendlingb74c8672009-01-30 19:25:47 +00002396 N0.getOperand(0).getValueType(),
2397 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002398 AddToWorkList(ORNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002399 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002400 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002401
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002402 // For each of OP in SHL/SRL/SRA/AND...
2403 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2404 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2405 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002406 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002407 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002408 N0.getOperand(1) == N1.getOperand(1)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002409 SDValue ORNode = DAG.getNode(N->getOpcode(), SDLoc(N0),
Bill Wendlingb74c8672009-01-30 19:25:47 +00002410 N0.getOperand(0).getValueType(),
2411 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002412 AddToWorkList(ORNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002413 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Bill Wendlingb74c8672009-01-30 19:25:47 +00002414 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002415 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002416
Nadav Rotem4ac90812012-04-01 19:31:22 +00002417 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2418 // Only perform this optimization after type legalization and before
2419 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2420 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2421 // we don't want to undo this promotion.
2422 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2423 // on scalars.
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002424 if ((N0.getOpcode() == ISD::BITCAST ||
2425 N0.getOpcode() == ISD::SCALAR_TO_VECTOR) &&
2426 Level == AfterLegalizeTypes) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002427 SDValue In0 = N0.getOperand(0);
2428 SDValue In1 = N1.getOperand(0);
2429 EVT In0Ty = In0.getValueType();
2430 EVT In1Ty = In1.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00002431 SDLoc DL(N);
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002432 // If both incoming values are integers, and the original types are the
2433 // same.
Nadav Rotem4ac90812012-04-01 19:31:22 +00002434 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002435 SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1);
2436 SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002437 AddToWorkList(Op.getNode());
2438 return BC;
2439 }
2440 }
2441
2442 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2443 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2444 // If both shuffles use the same mask, and both shuffle within a single
2445 // vector, then it is worthwhile to move the swizzle after the operation.
2446 // The type-legalizer generates this pattern when loading illegal
2447 // vector types from memory. In many cases this allows additional shuffle
2448 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002449 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2450 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2451 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002452 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2453 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002454
2455 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2456 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002457
2458 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002459
2460 // Check that both shuffles use the same mask. The masks are known to be of
2461 // the same length because the result vector type is the same.
2462 bool SameMask = true;
2463 for (unsigned i = 0; i != NumElts; ++i) {
2464 int Idx0 = SVN0->getMaskElt(i);
2465 int Idx1 = SVN1->getMaskElt(i);
2466 if (Idx0 != Idx1) {
2467 SameMask = false;
2468 break;
2469 }
2470 }
2471
Craig Topperf9204232012-04-09 07:19:09 +00002472 if (SameMask) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002473 SDValue Op = DAG.getNode(N->getOpcode(), SDLoc(N), VT,
Craig Topperf9204232012-04-09 07:19:09 +00002474 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002475 AddToWorkList(Op.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002476 return DAG.getVectorShuffle(VT, SDLoc(N), Op,
Craig Topperf9204232012-04-09 07:19:09 +00002477 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002478 }
2479 }
Craig Topperf9204232012-04-09 07:19:09 +00002480
Dan Gohman475871a2008-07-27 21:46:04 +00002481 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002482}
2483
Dan Gohman475871a2008-07-27 21:46:04 +00002484SDValue DAGCombiner::visitAND(SDNode *N) {
2485 SDValue N0 = N->getOperand(0);
2486 SDValue N1 = N->getOperand(1);
2487 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002488 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2489 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002490 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002491 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002492
Dan Gohman7f321562007-06-25 16:23:39 +00002493 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002494 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002495 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002496 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00002497
2498 // fold (and x, 0) -> 0, vector edition
2499 if (ISD::isBuildVectorAllZeros(N0.getNode()))
2500 return N0;
2501 if (ISD::isBuildVectorAllZeros(N1.getNode()))
2502 return N1;
2503
2504 // fold (and x, -1) -> x, vector edition
2505 if (ISD::isBuildVectorAllOnes(N0.getNode()))
2506 return N1;
2507 if (ISD::isBuildVectorAllOnes(N1.getNode()))
2508 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002509 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002510
Dan Gohman613e0d82007-07-03 14:03:57 +00002511 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002512 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002513 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002514 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002515 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002516 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002517 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002518 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00002519 return DAG.getNode(ISD::AND, SDLoc(N), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002520 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002521 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002522 return N0;
2523 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002524 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002525 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002526 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002527 // reassociate and
Andrew Trickac6d9be2013-05-25 02:42:55 +00002528 SDValue RAND = ReassociateOps(ISD::AND, SDLoc(N), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002529 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002530 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002531 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002532 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002533 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002534 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002535 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002536 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2537 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002538 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002539 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002540 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002541 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002542 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N),
Bill Wendling2627a882009-01-30 20:43:18 +00002543 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002544
Chris Lattner1ec05d12006-03-01 21:47:21 +00002545 // Replace uses of the AND with uses of the Zero extend node.
2546 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002547
Chris Lattner3603cd62006-02-02 07:17:31 +00002548 // We actually want to replace all uses of the any_extend with the
2549 // zero_extend, to avoid duplicating things. This will later cause this
2550 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002551 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002552 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002553 }
2554 }
Stephen Lin155615d2013-07-08 00:37:03 +00002555 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
James Molloy6259dcd2012-02-20 12:02:38 +00002556 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2557 // already be zero by virtue of the width of the base type of the load.
2558 //
2559 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2560 // more cases.
2561 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2562 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2563 N0.getOpcode() == ISD::LOAD) {
2564 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2565 N0 : N0.getOperand(0) );
2566
2567 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2568 // This can be a pure constant or a vector splat, in which case we treat the
2569 // vector as a scalar and use the splat value.
2570 APInt Constant = APInt::getNullValue(1);
2571 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2572 Constant = C->getAPIntValue();
2573 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2574 APInt SplatValue, SplatUndef;
2575 unsigned SplatBitSize;
2576 bool HasAnyUndefs;
2577 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2578 SplatBitSize, HasAnyUndefs);
2579 if (IsSplat) {
2580 // Undef bits can contribute to a possible optimisation if set, so
2581 // set them.
2582 SplatValue |= SplatUndef;
2583
2584 // The splat value may be something like "0x00FFFFFF", which means 0 for
2585 // the first vector value and FF for the rest, repeating. We need a mask
2586 // that will apply equally to all members of the vector, so AND all the
2587 // lanes of the constant together.
2588 EVT VT = Vector->getValueType(0);
2589 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002590
2591 // If the splat value has been compressed to a bitlength lower
2592 // than the size of the vector lane, we need to re-expand it to
2593 // the lane size.
2594 if (BitWidth > SplatBitSize)
2595 for (SplatValue = SplatValue.zextOrTrunc(BitWidth);
2596 SplatBitSize < BitWidth;
2597 SplatBitSize = SplatBitSize * 2)
2598 SplatValue |= SplatValue.shl(SplatBitSize);
2599
James Molloy6259dcd2012-02-20 12:02:38 +00002600 Constant = APInt::getAllOnesValue(BitWidth);
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002601 for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i)
James Molloy6259dcd2012-02-20 12:02:38 +00002602 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2603 }
2604 }
2605
2606 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2607 // actually legal and isn't going to get expanded, else this is a false
2608 // optimisation.
2609 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2610 Load->getMemoryVT());
2611
2612 // Resize the constant to the same size as the original memory access before
2613 // extension. If it is still the AllOnesValue then this AND is completely
2614 // unneeded.
2615 Constant =
2616 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2617
2618 bool B;
2619 switch (Load->getExtensionType()) {
2620 default: B = false; break;
2621 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2622 case ISD::ZEXTLOAD:
2623 case ISD::NON_EXTLOAD: B = true; break;
2624 }
2625
2626 if (B && Constant.isAllOnesValue()) {
2627 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2628 // preserve semantics once we get rid of the AND.
2629 SDValue NewLoad(Load, 0);
2630 if (Load->getExtensionType() == ISD::EXTLOAD) {
2631 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002632 Load->getValueType(0), SDLoc(Load),
James Molloy6259dcd2012-02-20 12:02:38 +00002633 Load->getChain(), Load->getBasePtr(),
2634 Load->getOffset(), Load->getMemoryVT(),
2635 Load->getMemOperand());
2636 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
Hal Finkeld65e4632012-06-20 15:42:48 +00002637 if (Load->getNumValues() == 3) {
2638 // PRE/POST_INC loads have 3 values.
2639 SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1),
2640 NewLoad.getValue(2) };
2641 CombineTo(Load, To, 3, true);
2642 } else {
2643 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2644 }
James Molloy6259dcd2012-02-20 12:02:38 +00002645 }
2646
2647 // Fold the AND away, taking care not to fold to the old load node if we
2648 // replaced it.
2649 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2650
2651 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2652 }
2653 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002654 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2655 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2656 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2657 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002658
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002659 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002660 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002661 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002662 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002663 SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(N0),
Bill Wendling2627a882009-01-30 20:43:18 +00002664 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002665 AddToWorkList(ORNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002666 return DAG.getSetCC(SDLoc(N), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002667 }
Bill Wendling2627a882009-01-30 20:43:18 +00002668 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002669 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002670 SDValue ANDNode = DAG.getNode(ISD::AND, SDLoc(N0),
Bill Wendling2627a882009-01-30 20:43:18 +00002671 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002672 AddToWorkList(ANDNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002673 return DAG.getSetCC(SDLoc(N), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002674 }
Bill Wendling2627a882009-01-30 20:43:18 +00002675 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002676 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002677 SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(N0),
Bill Wendling2627a882009-01-30 20:43:18 +00002678 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002679 AddToWorkList(ORNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00002680 return DAG.getSetCC(SDLoc(N), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002681 }
2682 }
Jim Grosbach51a02802013-08-13 21:30:58 +00002683 // Simplify (and (setne X, 0), (setne X, -1)) -> (setuge (add X, 1), 2)
2684 if (LL == RL && isa<ConstantSDNode>(LR) && isa<ConstantSDNode>(RR) &&
2685 Op0 == Op1 && LL.getValueType().isInteger() &&
2686 Op0 == ISD::SETNE && ((cast<ConstantSDNode>(LR)->isNullValue() &&
2687 cast<ConstantSDNode>(RR)->isAllOnesValue()) ||
2688 (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
2689 cast<ConstantSDNode>(RR)->isNullValue()))) {
2690 SDValue ADDNode = DAG.getNode(ISD::ADD, SDLoc(N0), LL.getValueType(),
2691 LL, DAG.getConstant(1, LL.getValueType()));
2692 AddToWorkList(ADDNode.getNode());
2693 return DAG.getSetCC(SDLoc(N), VT, ADDNode,
2694 DAG.getConstant(2, LL.getValueType()), ISD::SETUGE);
2695 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002696 // canonicalize equivalent to ll == rl
2697 if (LL == RR && LR == RL) {
2698 Op1 = ISD::getSetCCSwappedOperands(Op1);
2699 std::swap(RL, RR);
2700 }
2701 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002702 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002703 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002704 if (Result != ISD::SETCC_INVALID &&
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00002705 (!LegalOperations ||
Owen Anderson39125d92013-02-14 09:07:33 +00002706 (TLI.isCondCodeLegal(Result, LL.getSimpleValueType()) &&
2707 TLI.isOperationLegal(ISD::SETCC,
Matt Arsenault225ed702013-05-18 00:21:46 +00002708 getSetCCResultType(N0.getSimpleValueType())))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00002709 return DAG.getSetCC(SDLoc(N), N0.getValueType(),
Bill Wendling2627a882009-01-30 20:43:18 +00002710 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002711 }
2712 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002713
Bill Wendling2627a882009-01-30 20:43:18 +00002714 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002715 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002716 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002717 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002718 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002719
Nate Begemande996292006-02-03 22:24:05 +00002720 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2721 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002722 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002723 SimplifyDemandedBits(SDValue(N, 0)))
2724 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002725
Nate Begemanded49632005-10-13 03:11:28 +00002726 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002727 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002728 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002729 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002730 // If we zero all the possible extended bits, then we can turn this into
2731 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002732 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002733 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002734 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002735 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002736 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002737 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002738 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002739 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002740 LN0->isVolatile(), LN0->isNonTemporal(),
2741 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002742 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002743 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002744 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002745 }
2746 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002747 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002748 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002749 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002750 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002751 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002752 // If we zero all the possible extended bits, then we can turn this into
2753 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002754 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002755 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002756 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002757 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002758 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002759 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002760 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002761 LN0->getBasePtr(), LN0->getPointerInfo(),
2762 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002763 LN0->isVolatile(), LN0->isNonTemporal(),
2764 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002765 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002766 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002767 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002768 }
2769 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002770
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002771 // fold (and (load x), 255) -> (zextload x, i8)
2772 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002773 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2774 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2775 (N0.getOpcode() == ISD::ANY_EXTEND &&
2776 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2777 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2778 LoadSDNode *LN0 = HasAnyExt
2779 ? cast<LoadSDNode>(N0.getOperand(0))
2780 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002781 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Tim Northover5bce67a2013-07-02 09:58:53 +00002782 LN0->isUnindexed() && N0.hasOneUse() && SDValue(LN0, 0).hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002783 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002784 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2785 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2786 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002787
Evan Chengd40d03e2010-01-06 19:38:29 +00002788 if (ExtVT == LoadedVT &&
2789 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002790 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002791
2792 SDValue NewLoad =
Andrew Trickac6d9be2013-05-25 02:42:55 +00002793 DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002794 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002795 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002796 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2797 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002798 AddToWorkList(N);
2799 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2800 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2801 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002802
Chris Lattneref7634c2010-01-07 21:53:27 +00002803 // Do not change the width of a volatile load.
2804 // Do not generate loads of non-round integer types since these can
2805 // be expensive (and would be wrong if the type is not byte sized).
2806 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2807 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2808 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002809
Chris Lattneref7634c2010-01-07 21:53:27 +00002810 unsigned Alignment = LN0->getAlignment();
2811 SDValue NewPtr = LN0->getBasePtr();
2812
2813 // For big endian targets, we need to add an offset to the pointer
2814 // to load the correct bytes. For little endian systems, we merely
2815 // need to read fewer bytes from the same pointer.
2816 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002817 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2818 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2819 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Andrew Trickac6d9be2013-05-25 02:42:55 +00002820 NewPtr = DAG.getNode(ISD::ADD, SDLoc(LN0), PtrType,
Chris Lattneref7634c2010-01-07 21:53:27 +00002821 NewPtr, DAG.getConstant(PtrOff, PtrType));
2822 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002823 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002824
2825 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002826
Chris Lattneref7634c2010-01-07 21:53:27 +00002827 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2828 SDValue Load =
Andrew Trickac6d9be2013-05-25 02:42:55 +00002829 DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002830 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002831 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002832 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2833 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002834 AddToWorkList(N);
2835 CombineTo(LN0, Load, Load.getValue(1));
2836 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002837 }
Evan Cheng466685d2006-10-09 20:57:25 +00002838 }
Chris Lattner15045b62006-02-28 06:35:35 +00002839 }
2840 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002841
Evan Chenga9e13ba2012-07-17 18:54:11 +00002842 if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
2843 VT.getSizeInBits() <= 64) {
2844 if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2845 APInt ADDC = ADDI->getAPIntValue();
2846 if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2847 // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal
2848 // immediate for an add, but it is legal if its top c2 bits are set,
2849 // transform the ADD so the immediate doesn't need to be materialized
2850 // in a register.
2851 if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
2852 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
2853 SRLI->getZExtValue());
2854 if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) {
2855 ADDC |= Mask;
2856 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2857 SDValue NewAdd =
Andrew Trickac6d9be2013-05-25 02:42:55 +00002858 DAG.getNode(ISD::ADD, SDLoc(N0), VT,
Evan Chenga9e13ba2012-07-17 18:54:11 +00002859 N0.getOperand(0), DAG.getConstant(ADDC, VT));
2860 CombineTo(N0.getNode(), NewAdd);
2861 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2862 }
2863 }
2864 }
2865 }
2866 }
2867 }
Evan Chenga9e13ba2012-07-17 18:54:11 +00002868
Tim Northover5d8c2e42013-08-27 13:46:45 +00002869 // fold (and (or (srl N, 8), (shl N, 8)), 0xffff) -> (srl (bswap N), const)
2870 if (N1C && N1C->getAPIntValue() == 0xffff && N0.getOpcode() == ISD::OR) {
2871 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
2872 N0.getOperand(1), false);
2873 if (BSwap.getNode())
2874 return BSwap;
2875 }
2876
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002877 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002878}
2879
Evan Cheng9568e5c2011-06-21 06:01:08 +00002880/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2881///
2882SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2883 bool DemandHighBits) {
2884 if (!LegalOperations)
2885 return SDValue();
2886
2887 EVT VT = N->getValueType(0);
2888 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2889 return SDValue();
2890 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2891 return SDValue();
2892
2893 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2894 bool LookPassAnd0 = false;
2895 bool LookPassAnd1 = false;
2896 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2897 std::swap(N0, N1);
2898 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2899 std::swap(N0, N1);
2900 if (N0.getOpcode() == ISD::AND) {
2901 if (!N0.getNode()->hasOneUse())
2902 return SDValue();
2903 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2904 if (!N01C || N01C->getZExtValue() != 0xFF00)
2905 return SDValue();
2906 N0 = N0.getOperand(0);
2907 LookPassAnd0 = true;
2908 }
2909
2910 if (N1.getOpcode() == ISD::AND) {
2911 if (!N1.getNode()->hasOneUse())
2912 return SDValue();
2913 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2914 if (!N11C || N11C->getZExtValue() != 0xFF)
2915 return SDValue();
2916 N1 = N1.getOperand(0);
2917 LookPassAnd1 = true;
2918 }
2919
2920 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2921 std::swap(N0, N1);
2922 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2923 return SDValue();
2924 if (!N0.getNode()->hasOneUse() ||
2925 !N1.getNode()->hasOneUse())
2926 return SDValue();
2927
2928 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2929 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2930 if (!N01C || !N11C)
2931 return SDValue();
2932 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2933 return SDValue();
2934
2935 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2936 SDValue N00 = N0->getOperand(0);
2937 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2938 if (!N00.getNode()->hasOneUse())
2939 return SDValue();
2940 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2941 if (!N001C || N001C->getZExtValue() != 0xFF)
2942 return SDValue();
2943 N00 = N00.getOperand(0);
2944 LookPassAnd0 = true;
2945 }
2946
2947 SDValue N10 = N1->getOperand(0);
2948 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2949 if (!N10.getNode()->hasOneUse())
2950 return SDValue();
2951 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2952 if (!N101C || N101C->getZExtValue() != 0xFF00)
2953 return SDValue();
2954 N10 = N10.getOperand(0);
2955 LookPassAnd1 = true;
2956 }
2957
2958 if (N00 != N10)
2959 return SDValue();
2960
Tim Northover5d8c2e42013-08-27 13:46:45 +00002961 // Make sure everything beyond the low halfword gets set to zero since the SRL
2962 // 16 will clear the top bits.
Evan Cheng9568e5c2011-06-21 06:01:08 +00002963 unsigned OpSizeInBits = VT.getSizeInBits();
Tim Northover5d8c2e42013-08-27 13:46:45 +00002964 if (DemandHighBits && OpSizeInBits > 16) {
2965 // If the left-shift isn't masked out then the only way this is a bswap is
2966 // if all bits beyond the low 8 are 0. In that case the entire pattern
2967 // reduces to a left shift anyway: leave it for other parts of the combiner.
2968 if (!LookPassAnd0)
2969 return SDValue();
2970
2971 // However, if the right shift isn't masked out then it might be because
2972 // it's not needed. See if we can spot that too.
2973 if (!LookPassAnd1 &&
2974 !DAG.MaskedValueIsZero(
2975 N10, APInt::getHighBitsSet(OpSizeInBits, OpSizeInBits - 16)))
2976 return SDValue();
2977 }
Eric Christopher7332e6e2011-07-14 01:12:15 +00002978
Andrew Trickac6d9be2013-05-25 02:42:55 +00002979 SDValue Res = DAG.getNode(ISD::BSWAP, SDLoc(N), VT, N00);
Evan Cheng9568e5c2011-06-21 06:01:08 +00002980 if (OpSizeInBits > 16)
Andrew Trickac6d9be2013-05-25 02:42:55 +00002981 Res = DAG.getNode(ISD::SRL, SDLoc(N), VT, Res,
Evan Cheng9568e5c2011-06-21 06:01:08 +00002982 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2983 return Res;
2984}
2985
2986/// isBSwapHWordElement - Return true if the specified node is an element
2987/// that makes up a 32-bit packed halfword byteswap. i.e.
2988/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
Craig Toppera0ec3f92013-07-14 04:42:23 +00002989static bool isBSwapHWordElement(SDValue N, SmallVectorImpl<SDNode *> &Parts) {
Evan Cheng9568e5c2011-06-21 06:01:08 +00002990 if (!N.getNode()->hasOneUse())
2991 return false;
2992
2993 unsigned Opc = N.getOpcode();
2994 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2995 return false;
2996
2997 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2998 if (!N1C)
2999 return false;
3000
3001 unsigned Num;
3002 switch (N1C->getZExtValue()) {
3003 default:
3004 return false;
3005 case 0xFF: Num = 0; break;
3006 case 0xFF00: Num = 1; break;
3007 case 0xFF0000: Num = 2; break;
3008 case 0xFF000000: Num = 3; break;
3009 }
3010
3011 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
3012 SDValue N0 = N.getOperand(0);
3013 if (Opc == ISD::AND) {
3014 if (Num == 0 || Num == 2) {
3015 // (x >> 8) & 0xff
3016 // (x >> 8) & 0xff0000
3017 if (N0.getOpcode() != ISD::SRL)
3018 return false;
3019 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3020 if (!C || C->getZExtValue() != 8)
3021 return false;
3022 } else {
3023 // (x << 8) & 0xff00
3024 // (x << 8) & 0xff000000
3025 if (N0.getOpcode() != ISD::SHL)
3026 return false;
3027 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3028 if (!C || C->getZExtValue() != 8)
3029 return false;
3030 }
3031 } else if (Opc == ISD::SHL) {
3032 // (x & 0xff) << 8
3033 // (x & 0xff0000) << 8
3034 if (Num != 0 && Num != 2)
3035 return false;
3036 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
3037 if (!C || C->getZExtValue() != 8)
3038 return false;
3039 } else { // Opc == ISD::SRL
3040 // (x & 0xff00) >> 8
3041 // (x & 0xff000000) >> 8
3042 if (Num != 1 && Num != 3)
3043 return false;
3044 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
3045 if (!C || C->getZExtValue() != 8)
3046 return false;
3047 }
3048
3049 if (Parts[Num])
3050 return false;
3051
3052 Parts[Num] = N0.getOperand(0).getNode();
3053 return true;
3054}
3055
3056/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
3057/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
3058/// => (rotl (bswap x), 16)
3059SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
3060 if (!LegalOperations)
3061 return SDValue();
3062
3063 EVT VT = N->getValueType(0);
3064 if (VT != MVT::i32)
3065 return SDValue();
3066 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
3067 return SDValue();
3068
3069 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
3070 // Look for either
3071 // (or (or (and), (and)), (or (and), (and)))
3072 // (or (or (or (and), (and)), (and)), (and))
3073 if (N0.getOpcode() != ISD::OR)
3074 return SDValue();
3075 SDValue N00 = N0.getOperand(0);
3076 SDValue N01 = N0.getOperand(1);
3077
Evan Cheng9a65a012012-12-13 01:34:32 +00003078 if (N1.getOpcode() == ISD::OR &&
3079 N00.getNumOperands() == 2 && N01.getNumOperands() == 2) {
Evan Cheng9568e5c2011-06-21 06:01:08 +00003080 // (or (or (and), (and)), (or (and), (and)))
3081 SDValue N000 = N00.getOperand(0);
3082 if (!isBSwapHWordElement(N000, Parts))
3083 return SDValue();
3084
3085 SDValue N001 = N00.getOperand(1);
3086 if (!isBSwapHWordElement(N001, Parts))
3087 return SDValue();
3088 SDValue N010 = N01.getOperand(0);
3089 if (!isBSwapHWordElement(N010, Parts))
3090 return SDValue();
3091 SDValue N011 = N01.getOperand(1);
3092 if (!isBSwapHWordElement(N011, Parts))
3093 return SDValue();
3094 } else {
3095 // (or (or (or (and), (and)), (and)), (and))
3096 if (!isBSwapHWordElement(N1, Parts))
3097 return SDValue();
3098 if (!isBSwapHWordElement(N01, Parts))
3099 return SDValue();
3100 if (N00.getOpcode() != ISD::OR)
3101 return SDValue();
3102 SDValue N000 = N00.getOperand(0);
3103 if (!isBSwapHWordElement(N000, Parts))
3104 return SDValue();
3105 SDValue N001 = N00.getOperand(1);
3106 if (!isBSwapHWordElement(N001, Parts))
3107 return SDValue();
3108 }
3109
3110 // Make sure the parts are all coming from the same node.
3111 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
3112 return SDValue();
3113
Andrew Trickac6d9be2013-05-25 02:42:55 +00003114 SDValue BSwap = DAG.getNode(ISD::BSWAP, SDLoc(N), VT,
Evan Cheng9568e5c2011-06-21 06:01:08 +00003115 SDValue(Parts[0],0));
3116
Kay Tiong Khoo670711e2013-09-23 18:43:51 +00003117 // Result of the bswap should be rotated by 16. If it's not legal, then
Evan Cheng9568e5c2011-06-21 06:01:08 +00003118 // do (x << 16) | (x >> 16).
3119 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
3120 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00003121 return DAG.getNode(ISD::ROTL, SDLoc(N), VT, BSwap, ShAmt);
Craig Topper0eb5dad2012-09-29 07:18:53 +00003122 if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00003123 return DAG.getNode(ISD::ROTR, SDLoc(N), VT, BSwap, ShAmt);
3124 return DAG.getNode(ISD::OR, SDLoc(N), VT,
3125 DAG.getNode(ISD::SHL, SDLoc(N), VT, BSwap, ShAmt),
3126 DAG.getNode(ISD::SRL, SDLoc(N), VT, BSwap, ShAmt));
Evan Cheng9568e5c2011-06-21 06:01:08 +00003127}
3128
Dan Gohman475871a2008-07-27 21:46:04 +00003129SDValue DAGCombiner::visitOR(SDNode *N) {
3130 SDValue N0 = N->getOperand(0);
3131 SDValue N1 = N->getOperand(1);
3132 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00003133 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3134 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003135 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003136
Dan Gohman7f321562007-06-25 16:23:39 +00003137 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003138 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003139 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003140 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00003141
3142 // fold (or x, 0) -> x, vector edition
3143 if (ISD::isBuildVectorAllZeros(N0.getNode()))
3144 return N1;
3145 if (ISD::isBuildVectorAllZeros(N1.getNode()))
3146 return N0;
3147
3148 // fold (or x, -1) -> -1, vector edition
3149 if (ISD::isBuildVectorAllOnes(N0.getNode()))
3150 return N0;
3151 if (ISD::isBuildVectorAllOnes(N1.getNode()))
3152 return N1;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003153 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003154
Dan Gohman613e0d82007-07-03 14:03:57 +00003155 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00003156 if (!LegalOperations &&
3157 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00003158 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
3159 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
3160 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003161 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003162 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003163 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003164 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003165 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003166 return DAG.getNode(ISD::OR, SDLoc(N), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003167 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003168 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003169 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003170 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003171 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003172 return N1;
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003173 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003174 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003175 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00003176
3177 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
3178 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
3179 if (BSwap.getNode() != 0)
3180 return BSwap;
3181 BSwap = MatchBSwapHWordLow(N, N0, N1);
3182 if (BSwap.getNode() != 0)
3183 return BSwap;
3184
Nate Begemancd4d58c2006-02-03 06:46:56 +00003185 // reassociate or
Andrew Trickac6d9be2013-05-25 02:42:55 +00003186 SDValue ROR = ReassociateOps(ISD::OR, SDLoc(N), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003187 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003188 return ROR;
3189 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003190 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003191 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003192 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003193 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003194 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003195 return DAG.getNode(ISD::AND, SDLoc(N), VT,
3196 DAG.getNode(ISD::OR, SDLoc(N0), VT,
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003197 N0.getOperand(0), N1),
3198 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003199 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003200 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3201 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3202 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3203 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003204
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003205 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003206 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003207 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3208 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003209 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003210 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003211 SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(LR),
Bill Wendling09025642009-01-30 20:59:34 +00003212 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003213 AddToWorkList(ORNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003214 return DAG.getSetCC(SDLoc(N), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003215 }
Bill Wendling09025642009-01-30 20:59:34 +00003216 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3217 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003218 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003219 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003220 SDValue ANDNode = DAG.getNode(ISD::AND, SDLoc(LR),
Bill Wendling09025642009-01-30 20:59:34 +00003221 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003222 AddToWorkList(ANDNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003223 return DAG.getSetCC(SDLoc(N), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003224 }
3225 }
3226 // canonicalize equivalent to ll == rl
3227 if (LL == RR && LR == RL) {
3228 Op1 = ISD::getSetCCSwappedOperands(Op1);
3229 std::swap(RL, RR);
3230 }
3231 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003232 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003233 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003234 if (Result != ISD::SETCC_INVALID &&
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00003235 (!LegalOperations ||
Owen Anderson39125d92013-02-14 09:07:33 +00003236 (TLI.isCondCodeLegal(Result, LL.getSimpleValueType()) &&
3237 TLI.isOperationLegal(ISD::SETCC,
Matt Arsenault225ed702013-05-18 00:21:46 +00003238 getSetCCResultType(N0.getValueType())))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00003239 return DAG.getSetCC(SDLoc(N), N0.getValueType(),
Bill Wendling09025642009-01-30 20:59:34 +00003240 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003241 }
3242 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003243
Bill Wendling09025642009-01-30 20:59:34 +00003244 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003245 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003246 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003247 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003248 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003249
Bill Wendling09025642009-01-30 20:59:34 +00003250 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003251 if (N0.getOpcode() == ISD::AND &&
3252 N1.getOpcode() == ISD::AND &&
3253 N0.getOperand(1).getOpcode() == ISD::Constant &&
3254 N1.getOperand(1).getOpcode() == ISD::Constant &&
3255 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003256 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003257 // We can only do this xform if we know that bits from X that are set in C2
3258 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003259 const APInt &LHSMask =
3260 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3261 const APInt &RHSMask =
3262 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003263
Dan Gohmanea859be2007-06-22 14:59:07 +00003264 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3265 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003266 SDValue X = DAG.getNode(ISD::OR, SDLoc(N0), VT,
Bill Wendling09025642009-01-30 20:59:34 +00003267 N0.getOperand(0), N1.getOperand(0));
Andrew Trickac6d9be2013-05-25 02:42:55 +00003268 return DAG.getNode(ISD::AND, SDLoc(N), VT, X,
Bill Wendling09025642009-01-30 20:59:34 +00003269 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003270 }
3271 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003272
Chris Lattner516b9622006-09-14 20:50:57 +00003273 // See if this is some rotate idiom.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003274 if (SDNode *Rot = MatchRotate(N0, N1, SDLoc(N)))
Dan Gohman475871a2008-07-27 21:46:04 +00003275 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003276
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003277 // Simplify the operands using demanded-bits information.
3278 if (!VT.isVector() &&
3279 SimplifyDemandedBits(SDValue(N, 0)))
3280 return SDValue(N, 0);
3281
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003282 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003283}
3284
Chris Lattner516b9622006-09-14 20:50:57 +00003285/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003286static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003287 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003288 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003289 Mask = Op.getOperand(1);
3290 Op = Op.getOperand(0);
3291 } else {
3292 return false;
3293 }
3294 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003295
Chris Lattner516b9622006-09-14 20:50:57 +00003296 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3297 Shift = Op;
3298 return true;
3299 }
Bill Wendling09025642009-01-30 20:59:34 +00003300
Scott Michelfdc40a02009-02-17 22:15:04 +00003301 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003302}
3303
Chris Lattner516b9622006-09-14 20:50:57 +00003304// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3305// idioms for rotate, and if the target supports rotation instructions, generate
3306// a rot[lr].
Andrew Trickac6d9be2013-05-25 02:42:55 +00003307SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, SDLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003308 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003309 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003310 if (!TLI.isTypeLegal(VT)) return 0;
3311
3312 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003313 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3314 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003315 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003316
Chris Lattner516b9622006-09-14 20:50:57 +00003317 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003318 SDValue LHSShift; // The shift.
3319 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003320 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3321 return 0; // Not part of a rotate.
3322
Dan Gohman475871a2008-07-27 21:46:04 +00003323 SDValue RHSShift; // The shift.
3324 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003325 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3326 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003327
Chris Lattner516b9622006-09-14 20:50:57 +00003328 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3329 return 0; // Not shifting the same value.
3330
3331 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3332 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003333
Chris Lattner516b9622006-09-14 20:50:57 +00003334 // Canonicalize shl to left side in a shl/srl pair.
3335 if (RHSShift.getOpcode() == ISD::SHL) {
3336 std::swap(LHS, RHS);
3337 std::swap(LHSShift, RHSShift);
3338 std::swap(LHSMask , RHSMask );
3339 }
3340
Duncan Sands83ec4b62008-06-06 12:08:01 +00003341 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003342 SDValue LHSShiftArg = LHSShift.getOperand(0);
3343 SDValue LHSShiftAmt = LHSShift.getOperand(1);
Kai Nackeceb3b462013-09-19 23:00:28 +00003344 SDValue RHSShiftArg = RHSShift.getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00003345 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003346
3347 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3348 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003349 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3350 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003351 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3352 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003353 if ((LShVal + RShVal) != OpSizeInBits)
3354 return 0;
3355
Craig Topper32b73432012-09-29 06:54:22 +00003356 SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3357 LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003358
Chris Lattner516b9622006-09-14 20:50:57 +00003359 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003360 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003361 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003362
Gabor Greifba36cb52008-08-28 21:40:38 +00003363 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003364 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3365 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003366 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003367 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003368 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3369 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003370 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003371
Bill Wendling317bd702009-01-30 21:14:50 +00003372 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003373 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003374
Gabor Greifba36cb52008-08-28 21:40:38 +00003375 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003376 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003377
Chris Lattner516b9622006-09-14 20:50:57 +00003378 // If there is a mask here, and we have a variable shift, we can't be sure
3379 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003380 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003381 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003382
Benjamin Kramercd216b22013-09-24 14:21:28 +00003383 // If the shift amount is sign/zext/any-extended just peel it off.
3384 SDValue LExtOp0 = LHSShiftAmt;
3385 SDValue RExtOp0 = RHSShiftAmt;
Craig Topper0eb5dad2012-09-29 07:18:53 +00003386 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3387 LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3388 LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3389 LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
3390 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3391 RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3392 RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3393 RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Benjamin Kramercd216b22013-09-24 14:21:28 +00003394 LExtOp0 = LHSShiftAmt.getOperand(0);
3395 RExtOp0 = RHSShiftAmt.getOperand(0);
3396 }
3397
3398 if (RExtOp0.getOpcode() == ISD::SUB && RExtOp0.getOperand(1) == LExtOp0) {
3399 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
3400 // (rotl x, y)
3401 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
3402 // (rotr x, (sub 32, y))
3403 if (ConstantSDNode *SUBC =
3404 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
3405 if (SUBC->getAPIntValue() == OpSizeInBits) {
3406 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, LHSShiftArg,
3407 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
3408 } else if (LHSShiftArg.getOpcode() == ISD::ZERO_EXTEND ||
Kai Nackeceb3b462013-09-19 23:00:28 +00003409 LHSShiftArg.getOpcode() == ISD::ANY_EXTEND) {
Benjamin Kramercd216b22013-09-24 14:21:28 +00003410 // fold (or (shl (*ext x), (*ext y)),
3411 // (srl (*ext x), (*ext (sub 32, y)))) ->
3412 // (*ext (rotl x, y))
3413 // fold (or (shl (*ext x), (*ext y)),
3414 // (srl (*ext x), (*ext (sub 32, y)))) ->
3415 // (*ext (rotr x, (sub 32, y)))
3416 SDValue LArgExtOp0 = LHSShiftArg.getOperand(0);
3417 EVT LArgVT = LArgExtOp0.getValueType();
3418 if (LArgVT.getSizeInBits() == SUBC->getAPIntValue()) {
3419 SDValue V =
3420 DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, LArgVT,
3421 LArgExtOp0, HasROTL ? LHSShiftAmt : RHSShiftAmt);
3422 return DAG.getNode(LHSShiftArg.getOpcode(), DL, VT, V).getNode();
Kai Nackeceb3b462013-09-19 23:00:28 +00003423 }
David Blaikiec2286722013-09-20 00:33:11 +00003424 }
Benjamin Kramercd216b22013-09-24 14:21:28 +00003425 }
3426 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3427 RExtOp0 == LExtOp0.getOperand(1)) {
3428 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
3429 // (rotr x, y)
3430 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
3431 // (rotl x, (sub 32, y))
3432 if (ConstantSDNode *SUBC =
3433 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
3434 if (SUBC->getAPIntValue() == OpSizeInBits) {
3435 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg,
3436 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
3437 } else if (RHSShiftArg.getOpcode() == ISD::ZERO_EXTEND ||
Kai Nackeceb3b462013-09-19 23:00:28 +00003438 RHSShiftArg.getOpcode() == ISD::ANY_EXTEND) {
Benjamin Kramercd216b22013-09-24 14:21:28 +00003439 // fold (or (shl (*ext x), (*ext (sub 32, y))),
3440 // (srl (*ext x), (*ext y))) ->
3441 // (*ext (rotl x, y))
3442 // fold (or (shl (*ext x), (*ext (sub 32, y))),
3443 // (srl (*ext x), (*ext y))) ->
3444 // (*ext (rotr x, (sub 32, y)))
3445 SDValue RArgExtOp0 = RHSShiftArg.getOperand(0);
3446 EVT RArgVT = RArgExtOp0.getValueType();
3447 if (RArgVT.getSizeInBits() == SUBC->getAPIntValue()) {
3448 SDValue V =
3449 DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, RArgVT,
3450 RArgExtOp0, HasROTR ? RHSShiftAmt : LHSShiftAmt);
3451 return DAG.getNode(RHSShiftArg.getOpcode(), DL, VT, V).getNode();
Kai Nackeceb3b462013-09-19 23:00:28 +00003452 }
David Blaikiec2286722013-09-20 00:33:11 +00003453 }
Chris Lattner516b9622006-09-14 20:50:57 +00003454 }
3455 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003456
Chris Lattner516b9622006-09-14 20:50:57 +00003457 return 0;
3458}
3459
Dan Gohman475871a2008-07-27 21:46:04 +00003460SDValue DAGCombiner::visitXOR(SDNode *N) {
3461 SDValue N0 = N->getOperand(0);
3462 SDValue N1 = N->getOperand(1);
3463 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003464 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3465 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003466 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003467
Dan Gohman7f321562007-06-25 16:23:39 +00003468 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003469 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003470 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003471 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00003472
3473 // fold (xor x, 0) -> x, vector edition
3474 if (ISD::isBuildVectorAllZeros(N0.getNode()))
3475 return N1;
3476 if (ISD::isBuildVectorAllZeros(N1.getNode()))
3477 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003478 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003479
Evan Cheng26471c42008-03-25 20:08:07 +00003480 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3481 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3482 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003483 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003484 if (N0.getOpcode() == ISD::UNDEF)
3485 return N0;
3486 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003487 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003488 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003489 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003490 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003491 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003492 if (N0C && !N1C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003493 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003494 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003495 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003496 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003497 // reassociate xor
Andrew Trickac6d9be2013-05-25 02:42:55 +00003498 SDValue RXOR = ReassociateOps(ISD::XOR, SDLoc(N), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003499 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003500 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003501
Nate Begeman1d4d4142005-09-01 00:19:25 +00003502 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003503 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003504 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003505 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3506 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003507
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00003508 if (!LegalOperations ||
3509 TLI.isCondCodeLegal(NotCC, LHS.getSimpleValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003510 switch (N0.getOpcode()) {
3511 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003512 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003513 case ISD::SETCC:
Andrew Trickac6d9be2013-05-25 02:42:55 +00003514 return DAG.getSetCC(SDLoc(N), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003515 case ISD::SELECT_CC:
Andrew Trickac6d9be2013-05-25 02:42:55 +00003516 return DAG.getSelectCC(SDLoc(N), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003517 N0.getOperand(3), NotCC);
3518 }
3519 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003520 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003521
Chris Lattner61c5ff42007-09-10 21:39:07 +00003522 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003523 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003524 N0.getNode()->hasOneUse() &&
3525 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003526 SDValue V = N0.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003527 V = DAG.getNode(ISD::XOR, SDLoc(N0), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003528 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003529 AddToWorkList(V.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003530 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003531 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003532
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003533 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003534 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003535 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003536 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003537 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3538 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Andrew Trickac6d9be2013-05-25 02:42:55 +00003539 LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS
3540 RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003541 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003542 return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003543 }
3544 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003545 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003546 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003547 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003548 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003549 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3550 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Andrew Trickac6d9be2013-05-25 02:42:55 +00003551 LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS
3552 RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003553 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003554 return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003555 }
3556 }
David Majnemer363160a2013-05-08 06:44:42 +00003557 // fold (xor (and x, y), y) -> (and (not x), y)
3558 if (N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
3559 N0->getOperand(1) == N1) {
3560 SDValue X = N0->getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003561 SDValue NotX = DAG.getNOT(SDLoc(X), X, VT);
David Majnemer363160a2013-05-08 06:44:42 +00003562 AddToWorkList(NotX.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003563 return DAG.getNode(ISD::AND, SDLoc(N), VT, NotX, N1);
David Majnemer363160a2013-05-08 06:44:42 +00003564 }
Bill Wendling317bd702009-01-30 21:14:50 +00003565 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003566 if (N1C && N0.getOpcode() == ISD::XOR) {
3567 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3568 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3569 if (N00C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003570 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N0.getOperand(1),
Bill Wendling317bd702009-01-30 21:14:50 +00003571 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003572 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003573 if (N01C)
Andrew Trickac6d9be2013-05-25 02:42:55 +00003574 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N0.getOperand(0),
Bill Wendling317bd702009-01-30 21:14:50 +00003575 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003576 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003577 }
3578 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003579 if (N0 == N1)
Hal Finkelbd6f1f62013-07-09 17:02:45 +00003580 return tryFoldToZero(SDLoc(N), TLI, VT, DAG, LegalOperations, LegalTypes);
Scott Michelfdc40a02009-02-17 22:15:04 +00003581
Chris Lattner35e5c142006-05-05 05:51:50 +00003582 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3583 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003584 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003585 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003586 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003587
Chris Lattner3e104b12006-04-08 04:15:24 +00003588 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003589 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003590 SimplifyDemandedBits(SDValue(N, 0)))
3591 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003592
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003593 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003594}
3595
Chris Lattnere70da202007-12-06 07:33:36 +00003596/// visitShiftByConstant - Handle transforms common to the three shifts, when
3597/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003598SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003599 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003600 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003601
Chris Lattnere70da202007-12-06 07:33:36 +00003602 // We want to pull some binops through shifts, so that we have (and (shift))
3603 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3604 // thing happens with address calculations, so it's important to canonicalize
3605 // it.
3606 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003607
Chris Lattnere70da202007-12-06 07:33:36 +00003608 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003609 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003610 case ISD::OR:
3611 case ISD::XOR:
3612 HighBitSet = false; // We can only transform sra if the high bit is clear.
3613 break;
3614 case ISD::AND:
3615 HighBitSet = true; // We can only transform sra if the high bit is set.
3616 break;
3617 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003618 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003619 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003620 HighBitSet = false; // We can only transform sra if the high bit is clear.
3621 break;
3622 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003623
Chris Lattnere70da202007-12-06 07:33:36 +00003624 // We require the RHS of the binop to be a constant as well.
3625 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003626 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003627
3628 // FIXME: disable this unless the input to the binop is a shift by a constant.
3629 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003630 //
Bill Wendling88103372009-01-30 21:37:17 +00003631 // void foo(int *X, int i) { X[i & 1235] = 1; }
3632 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003633 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003634 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003635 BinOpLHSVal->getOpcode() != ISD::SRA &&
3636 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3637 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003638 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003639
Owen Andersone50ed302009-08-10 22:56:29 +00003640 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003641
Bill Wendling88103372009-01-30 21:37:17 +00003642 // If this is a signed shift right, and the high bit is modified by the
3643 // logical operation, do not perform the transformation. The highBitSet
3644 // boolean indicates the value of the high bit of the constant which would
3645 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003646 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003647 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3648 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003649 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003650 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003651
Chris Lattnere70da202007-12-06 07:33:36 +00003652 // Fold the constants, shifting the binop RHS by the shift amount.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003653 SDValue NewRHS = DAG.getNode(N->getOpcode(), SDLoc(LHS->getOperand(1)),
Bill Wendling88103372009-01-30 21:37:17 +00003654 N->getValueType(0),
3655 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003656
3657 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003658 SDValue NewShift = DAG.getNode(N->getOpcode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00003659 SDLoc(LHS->getOperand(0)),
Bill Wendling88103372009-01-30 21:37:17 +00003660 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003661
3662 // Create the new binop.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003663 return DAG.getNode(LHS->getOpcode(), SDLoc(N), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003664}
3665
Dan Gohman475871a2008-07-27 21:46:04 +00003666SDValue DAGCombiner::visitSHL(SDNode *N) {
3667 SDValue N0 = N->getOperand(0);
3668 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003669 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3670 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003671 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003672 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003673
Nate Begeman1d4d4142005-09-01 00:19:25 +00003674 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003675 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003676 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003677 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003678 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003679 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003680 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003681 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003682 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003683 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003684 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003685 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003686 // fold (shl undef, x) -> 0
3687 if (N0.getOpcode() == ISD::UNDEF)
3688 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003689 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003690 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003691 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003692 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003693 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003694 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003695 N1.getOperand(0).getOpcode() == ISD::AND &&
3696 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003697 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003698 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003699 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003700 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003701 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003702 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003703 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
3704 DAG.getNode(ISD::AND, SDLoc(N), TruncVT,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003705 DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003706 SDLoc(N),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003707 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003708 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003709 }
3710 }
3711
Dan Gohman475871a2008-07-27 21:46:04 +00003712 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3713 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003714
3715 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003716 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003717 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003718 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3719 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003720 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003721 return DAG.getConstant(0, VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003722 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003723 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003724 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003725
3726 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3727 // For this to be valid, the second form must not preserve any of the bits
3728 // that are shifted out by the inner shift in the first form. This means
3729 // the outer shift size must be >= the number of bits added by the ext.
3730 // As a corollary, we don't care what kind of ext it is.
3731 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3732 N0.getOpcode() == ISD::ANY_EXTEND ||
3733 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3734 N0.getOperand(0).getOpcode() == ISD::SHL &&
3735 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003736 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003737 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3738 uint64_t c2 = N1C->getZExtValue();
3739 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3740 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3741 if (c2 >= OpSizeInBits - InnerShiftSize) {
3742 if (c1 + c2 >= OpSizeInBits)
3743 return DAG.getConstant(0, VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003744 return DAG.getNode(ISD::SHL, SDLoc(N0), VT,
3745 DAG.getNode(N0.getOpcode(), SDLoc(N0), VT,
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003746 N0.getOperand(0)->getOperand(0)),
3747 DAG.getConstant(c1 + c2, N1.getValueType()));
3748 }
3749 }
3750
Andrea Di Biagioa9f113d2013-09-27 11:37:05 +00003751 // fold (shl (zext (srl x, C)), C) -> (zext (shl (srl x, C), C))
3752 // Only fold this if the inner zext has no other uses to avoid increasing
3753 // the total number of instructions.
3754 if (N1C && N0.getOpcode() == ISD::ZERO_EXTEND && N0.hasOneUse() &&
3755 N0.getOperand(0).getOpcode() == ISD::SRL &&
3756 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
3757 uint64_t c1 =
3758 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3759 if (c1 < VT.getSizeInBits()) {
3760 uint64_t c2 = N1C->getZExtValue();
3761 if (c1 == c2) {
3762 SDValue NewOp0 = N0.getOperand(0);
3763 EVT CountVT = NewOp0.getOperand(1).getValueType();
3764 SDValue NewSHL = DAG.getNode(ISD::SHL, SDLoc(N), NewOp0.getValueType(),
3765 NewOp0, DAG.getConstant(c2, CountVT));
3766 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N0), VT, NewSHL);
3767 }
3768 }
3769 }
3770
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003771 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3772 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003773 // Only fold this if the inner shift has no other uses -- if it does, folding
3774 // this will increase the total number of instructions.
3775 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003776 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003777 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003778 if (c1 < VT.getSizeInBits()) {
3779 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003780 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3781 VT.getSizeInBits() - c1);
3782 SDValue Shift;
3783 if (c2 > c1) {
3784 Mask = Mask.shl(c2-c1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003785 Shift = DAG.getNode(ISD::SHL, SDLoc(N), VT, N0.getOperand(0),
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003786 DAG.getConstant(c2-c1, N1.getValueType()));
3787 } else {
3788 Mask = Mask.lshr(c1-c2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003789 Shift = DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0),
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003790 DAG.getConstant(c1-c2, N1.getValueType()));
3791 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00003792 return DAG.getNode(ISD::AND, SDLoc(N0), VT, Shift,
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003793 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003794 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003795 }
Bill Wendling88103372009-01-30 21:37:17 +00003796 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003797 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3798 SDValue HiBitsMask =
3799 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3800 VT.getSizeInBits() -
3801 N1C->getZExtValue()),
3802 VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003803 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003804 HiBitsMask);
3805 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003806
Evan Chenge5b51ac2010-04-17 06:13:15 +00003807 if (N1C) {
3808 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3809 if (NewSHL.getNode())
3810 return NewSHL;
3811 }
3812
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003813 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003814}
3815
Dan Gohman475871a2008-07-27 21:46:04 +00003816SDValue DAGCombiner::visitSRA(SDNode *N) {
3817 SDValue N0 = N->getOperand(0);
3818 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003819 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3820 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003821 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003822 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003823
Bill Wendling88103372009-01-30 21:37:17 +00003824 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003825 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003826 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003827 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003828 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003829 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003830 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003831 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003832 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003833 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003834 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003835 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003836 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003837 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003838 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003839 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3840 // sext_inreg.
3841 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003842 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003843 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3844 if (VT.isVector())
3845 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3846 ExtVT, VT.getVectorNumElements());
3847 if ((!LegalOperations ||
3848 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00003849 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003850 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003851 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003852
Bill Wendling88103372009-01-30 21:37:17 +00003853 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003854 if (N1C && N0.getOpcode() == ISD::SRA) {
3855 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003856 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003857 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Andrew Trickac6d9be2013-05-25 02:42:55 +00003858 return DAG.getNode(ISD::SRA, SDLoc(N), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003859 DAG.getConstant(Sum, N1C->getValueType(0)));
3860 }
3861 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003862
Bill Wendling88103372009-01-30 21:37:17 +00003863 // fold (sra (shl X, m), (sub result_size, n))
3864 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003865 // result_size - n != m.
3866 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003867 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003868 if (N0.getOpcode() == ISD::SHL) {
3869 // Get the two constanst of the shifts, CN0 = m, CN = n.
3870 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3871 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003872 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003873 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003874 EVT::getIntegerVT(*DAG.getContext(),
3875 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003876 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003877 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003878
Scott Michelfdc40a02009-02-17 22:15:04 +00003879 // If the shift is not a no-op (in which case this should be just a sign
3880 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003881 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003882 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003883 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003884 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3885 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003886 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003887
Owen Anderson95771af2011-02-25 21:41:48 +00003888 SDValue Amt = DAG.getConstant(ShiftAmt,
3889 getShiftAmountTy(N0.getOperand(0).getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00003890 SDValue Shift = DAG.getNode(ISD::SRL, SDLoc(N0), VT,
Bill Wendling88103372009-01-30 21:37:17 +00003891 N0.getOperand(0), Amt);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003892 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), TruncVT,
Bill Wendling88103372009-01-30 21:37:17 +00003893 Shift);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003894 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N),
Bill Wendling88103372009-01-30 21:37:17 +00003895 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003896 }
3897 }
3898 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003899
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003900 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003901 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003902 N1.getOperand(0).getOpcode() == ISD::AND &&
3903 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003904 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003905 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003906 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003907 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003908 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003909 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00003910 return DAG.getNode(ISD::SRA, SDLoc(N), VT, N0,
3911 DAG.getNode(ISD::AND, SDLoc(N),
Bill Wendling88103372009-01-30 21:37:17 +00003912 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003913 DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003914 SDLoc(N),
Bill Wendling9729c5a2009-01-31 03:12:48 +00003915 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003916 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003917 }
3918 }
3919
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003920 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3921 // if c1 is equal to the number of bits the trunc removes
3922 if (N0.getOpcode() == ISD::TRUNCATE &&
3923 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3924 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3925 N0.getOperand(0).hasOneUse() &&
3926 N0.getOperand(0).getOperand(1).hasOneUse() &&
3927 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3928 EVT LargeVT = N0.getOperand(0).getValueType();
3929 ConstantSDNode *LargeShiftAmt =
3930 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3931
3932 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3933 LargeShiftAmt->getZExtValue()) {
3934 SDValue Amt =
3935 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003936 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00003937 SDValue SRA = DAG.getNode(ISD::SRA, SDLoc(N), LargeVT,
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003938 N0.getOperand(0).getOperand(0), Amt);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003939 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, SRA);
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003940 }
3941 }
3942
Scott Michelfdc40a02009-02-17 22:15:04 +00003943 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003944 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3945 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003946
3947
Nate Begeman1d4d4142005-09-01 00:19:25 +00003948 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003949 if (DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00003950 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003951
Evan Chenge5b51ac2010-04-17 06:13:15 +00003952 if (N1C) {
3953 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3954 if (NewSRA.getNode())
3955 return NewSRA;
3956 }
3957
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003958 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003959}
3960
Dan Gohman475871a2008-07-27 21:46:04 +00003961SDValue DAGCombiner::visitSRL(SDNode *N) {
3962 SDValue N0 = N->getOperand(0);
3963 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003964 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3965 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003966 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003967 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003968
Nate Begeman1d4d4142005-09-01 00:19:25 +00003969 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003970 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003971 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003972 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003973 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003974 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003975 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003976 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003977 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003978 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003979 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003980 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003981 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003982 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003983 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003984 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003985
Bill Wendling88103372009-01-30 21:37:17 +00003986 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003987 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003988 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003989 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3990 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003991 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003992 return DAG.getConstant(0, VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003993 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003994 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003995 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003996
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003997 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003998 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3999 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00004000 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00004001 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00004002 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
4003 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00004004 EVT InnerShiftVT = N0.getOperand(0).getValueType();
4005 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00004006 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00004007 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00004008 if (c1 + OpSizeInBits == InnerShiftSize) {
4009 if (c1 + c2 >= InnerShiftSize)
4010 return DAG.getConstant(0, VT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004011 return DAG.getNode(ISD::TRUNCATE, SDLoc(N0), VT,
4012 DAG.getNode(ISD::SRL, SDLoc(N0), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00004013 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00004014 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00004015 }
4016 }
4017
Chris Lattnerefcddc32010-04-15 05:28:43 +00004018 // fold (srl (shl x, c), c) -> (and x, cst2)
4019 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
4020 N0.getValueSizeInBits() <= 64) {
4021 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004022 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0.getOperand(0),
Chris Lattnerefcddc32010-04-15 05:28:43 +00004023 DAG.getConstant(~0ULL >> ShAmt, VT));
4024 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004025
Michael Liao2da86392013-06-21 18:45:27 +00004026 // fold (srl (anyextend x), c) -> (and (anyextend (srl x, c)), mask)
Chris Lattner06afe072006-05-05 22:53:17 +00004027 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
4028 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00004029 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004030 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00004031 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00004032
Evan Chenge5b51ac2010-04-17 06:13:15 +00004033 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00004034 uint64_t ShiftAmt = N1C->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004035 SDValue SmallShift = DAG.getNode(ISD::SRL, SDLoc(N0), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00004036 N0.getOperand(0),
4037 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00004038 AddToWorkList(SmallShift.getNode());
Michael Liao2da86392013-06-21 18:45:27 +00004039 APInt Mask = APInt::getAllOnesValue(VT.getSizeInBits()).lshr(ShiftAmt);
4040 return DAG.getNode(ISD::AND, SDLoc(N), VT,
4041 DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, SmallShift),
4042 DAG.getConstant(Mask, VT));
Evan Chenge5b51ac2010-04-17 06:13:15 +00004043 }
Chris Lattner06afe072006-05-05 22:53:17 +00004044 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004045
Chris Lattner3657ffe2006-10-12 20:23:19 +00004046 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
4047 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00004048 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00004049 if (N0.getOpcode() == ISD::SRA)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004050 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00004051 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004052
Sylvestre Ledru94c22712012-09-27 10:14:43 +00004053 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00004054 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00004055 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00004056 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004057 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00004058
Chris Lattner350bec02006-04-02 06:11:11 +00004059 // If any of the input bits are KnownOne, then the input couldn't be all
4060 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00004061 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004062
Chris Lattner350bec02006-04-02 06:11:11 +00004063 // If all of the bits input the to ctlz node are known to be zero, then
4064 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004065 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00004066 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004067
Chris Lattner350bec02006-04-02 06:11:11 +00004068 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00004069 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00004070 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00004071 // could be set on input to the CTLZ node. If this bit is set, the SRL
4072 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
4073 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00004074 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00004075 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00004076
Chris Lattner350bec02006-04-02 06:11:11 +00004077 if (ShAmt) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004078 Op = DAG.getNode(ISD::SRL, SDLoc(N0), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00004079 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00004080 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00004081 }
Bill Wendling88103372009-01-30 21:37:17 +00004082
Andrew Trickac6d9be2013-05-25 02:42:55 +00004083 return DAG.getNode(ISD::XOR, SDLoc(N), VT,
Bill Wendling88103372009-01-30 21:37:17 +00004084 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00004085 }
4086 }
Evan Chengeb9f8922008-08-30 02:03:58 +00004087
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00004088 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00004089 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00004090 N1.getOperand(0).getOpcode() == ISD::AND &&
4091 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00004092 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00004093 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00004094 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00004095 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00004096 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004097 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004098 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0,
4099 DAG.getNode(ISD::AND, SDLoc(N),
Bill Wendling88103372009-01-30 21:37:17 +00004100 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00004101 DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004102 SDLoc(N),
Bill Wendling9729c5a2009-01-31 03:12:48 +00004103 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00004104 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00004105 }
4106 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004107
Chris Lattner61a4c072007-04-18 03:06:49 +00004108 // fold operands of srl based on knowledge that the low bits are not
4109 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00004110 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
4111 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004112
Evan Cheng9ab2b982009-12-18 21:31:31 +00004113 if (N1C) {
4114 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
4115 if (NewSRL.getNode())
4116 return NewSRL;
4117 }
4118
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004119 // Attempt to convert a srl of a load into a narrower zero-extending load.
4120 SDValue NarrowLoad = ReduceLoadWidth(N);
4121 if (NarrowLoad.getNode())
4122 return NarrowLoad;
4123
Evan Cheng9ab2b982009-12-18 21:31:31 +00004124 // Here is a common situation. We want to optimize:
4125 //
4126 // %a = ...
4127 // %b = and i32 %a, 2
4128 // %c = srl i32 %b, 1
4129 // brcond i32 %c ...
4130 //
4131 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004132 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00004133 // %a = ...
4134 // %b = and %a, 2
4135 // %c = setcc eq %b, 0
4136 // brcond %c ...
4137 //
4138 // However when after the source operand of SRL is optimized into AND, the SRL
4139 // itself may not be optimized further. Look for it and add the BRCOND into
4140 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00004141 if (N->hasOneUse()) {
4142 SDNode *Use = *N->use_begin();
4143 if (Use->getOpcode() == ISD::BRCOND)
4144 AddToWorkList(Use);
4145 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
4146 // Also look pass the truncate.
4147 Use = *Use->use_begin();
4148 if (Use->getOpcode() == ISD::BRCOND)
4149 AddToWorkList(Use);
4150 }
4151 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00004152
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004153 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00004154}
4155
Dan Gohman475871a2008-07-27 21:46:04 +00004156SDValue DAGCombiner::visitCTLZ(SDNode *N) {
4157 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004158 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004159
4160 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004161 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004162 return DAG.getNode(ISD::CTLZ, SDLoc(N), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004163 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004164}
4165
Chandler Carruth63974b22011-12-13 01:56:10 +00004166SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
4167 SDValue N0 = N->getOperand(0);
4168 EVT VT = N->getValueType(0);
4169
4170 // fold (ctlz_zero_undef c1) -> c2
4171 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004172 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, SDLoc(N), VT, N0);
Chandler Carruth63974b22011-12-13 01:56:10 +00004173 return SDValue();
4174}
4175
Dan Gohman475871a2008-07-27 21:46:04 +00004176SDValue DAGCombiner::visitCTTZ(SDNode *N) {
4177 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004178 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004179
Nate Begeman1d4d4142005-09-01 00:19:25 +00004180 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004181 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004182 return DAG.getNode(ISD::CTTZ, SDLoc(N), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004183 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004184}
4185
Chandler Carruth63974b22011-12-13 01:56:10 +00004186SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
4187 SDValue N0 = N->getOperand(0);
4188 EVT VT = N->getValueType(0);
4189
4190 // fold (cttz_zero_undef c1) -> c2
4191 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004192 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, SDLoc(N), VT, N0);
Chandler Carruth63974b22011-12-13 01:56:10 +00004193 return SDValue();
4194}
4195
Dan Gohman475871a2008-07-27 21:46:04 +00004196SDValue DAGCombiner::visitCTPOP(SDNode *N) {
4197 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004198 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004199
Nate Begeman1d4d4142005-09-01 00:19:25 +00004200 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004201 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004202 return DAG.getNode(ISD::CTPOP, SDLoc(N), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004203 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004204}
4205
Dan Gohman475871a2008-07-27 21:46:04 +00004206SDValue DAGCombiner::visitSELECT(SDNode *N) {
4207 SDValue N0 = N->getOperand(0);
4208 SDValue N1 = N->getOperand(1);
4209 SDValue N2 = N->getOperand(2);
Nate Begeman452d7be2005-09-16 00:54:12 +00004210 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4211 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4212 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00004213 EVT VT = N->getValueType(0);
4214 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00004215
Bill Wendling34584e62009-01-30 22:02:18 +00004216 // fold (select C, X, X) -> X
Nate Begeman452d7be2005-09-16 00:54:12 +00004217 if (N1 == N2)
4218 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004219 // fold (select true, X, Y) -> X
Nate Begeman452d7be2005-09-16 00:54:12 +00004220 if (N0C && !N0C->isNullValue())
4221 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004222 // fold (select false, X, Y) -> Y
Nate Begeman452d7be2005-09-16 00:54:12 +00004223 if (N0C && N0C->isNullValue())
4224 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004225 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004226 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004227 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N2);
Bill Wendling34584e62009-01-30 22:02:18 +00004228 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004229 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004230 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004231 (VT0.isInteger() &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00004232 TLI.getBooleanContents(false) ==
4233 TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004234 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004235 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004236 if (VT == VT0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004237 return DAG.getNode(ISD::XOR, SDLoc(N), VT0,
Bill Wendling34584e62009-01-30 22:02:18 +00004238 N0, DAG.getConstant(1, VT0));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004239 XORNode = DAG.getNode(ISD::XOR, SDLoc(N0), VT0,
Bill Wendling34584e62009-01-30 22:02:18 +00004240 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004241 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004242 if (VT.bitsGT(VT0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004243 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, XORNode);
4244 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004245 }
Bill Wendling34584e62009-01-30 22:02:18 +00004246 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004247 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004248 SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004249 AddToWorkList(NOTNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004250 return DAG.getNode(ISD::AND, SDLoc(N), VT, NOTNode, N2);
Nate Begeman452d7be2005-09-16 00:54:12 +00004251 }
Bill Wendling34584e62009-01-30 22:02:18 +00004252 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004253 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004254 SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004255 AddToWorkList(NOTNode.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004256 return DAG.getNode(ISD::OR, SDLoc(N), VT, NOTNode, N1);
Nate Begeman452d7be2005-09-16 00:54:12 +00004257 }
Bill Wendling34584e62009-01-30 22:02:18 +00004258 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004259 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Andrew Trickac6d9be2013-05-25 02:42:55 +00004260 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, N1);
Bill Wendling34584e62009-01-30 22:02:18 +00004261 // fold (select X, X, Y) -> (or X, Y)
4262 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004263 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004264 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N2);
Bill Wendling34584e62009-01-30 22:02:18 +00004265 // fold (select X, Y, X) -> (and X, Y)
4266 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004267 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004268 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004269
Chris Lattner40c62d52005-10-18 06:04:22 +00004270 // If we can fold this based on the true/false value, do so.
4271 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004272 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004273
Nate Begeman44728a72005-09-19 22:34:01 +00004274 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004275 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004276 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004277 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004278 // having to say they don't support SELECT_CC on every type the DAG knows
4279 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004280 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004281 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004282 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT,
Bill Wendling34584e62009-01-30 22:02:18 +00004283 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004284 N1, N2, N0.getOperand(2));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004285 return SimplifySelect(SDLoc(N), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004286 }
Bill Wendling34584e62009-01-30 22:02:18 +00004287
Dan Gohman475871a2008-07-27 21:46:04 +00004288 return SDValue();
Nate Begeman452d7be2005-09-16 00:54:12 +00004289}
4290
Benjamin Kramer6242fda2013-04-26 09:19:19 +00004291SDValue DAGCombiner::visitVSELECT(SDNode *N) {
4292 SDValue N0 = N->getOperand(0);
4293 SDValue N1 = N->getOperand(1);
4294 SDValue N2 = N->getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004295 SDLoc DL(N);
Benjamin Kramer6242fda2013-04-26 09:19:19 +00004296
4297 // Canonicalize integer abs.
4298 // vselect (setg[te] X, 0), X, -X ->
4299 // vselect (setgt X, -1), X, -X ->
4300 // vselect (setl[te] X, 0), -X, X ->
4301 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
4302 if (N0.getOpcode() == ISD::SETCC) {
4303 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
4304 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get();
4305 bool isAbs = false;
4306 bool RHSIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
4307
4308 if (((RHSIsAllZeros && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
4309 (ISD::isBuildVectorAllOnes(RHS.getNode()) && CC == ISD::SETGT)) &&
4310 N1 == LHS && N2.getOpcode() == ISD::SUB && N1 == N2.getOperand(1))
4311 isAbs = ISD::isBuildVectorAllZeros(N2.getOperand(0).getNode());
4312 else if ((RHSIsAllZeros && (CC == ISD::SETLT || CC == ISD::SETLE)) &&
4313 N2 == LHS && N1.getOpcode() == ISD::SUB && N2 == N1.getOperand(1))
4314 isAbs = ISD::isBuildVectorAllZeros(N1.getOperand(0).getNode());
4315
4316 if (isAbs) {
4317 EVT VT = LHS.getValueType();
4318 SDValue Shift = DAG.getNode(
4319 ISD::SRA, DL, VT, LHS,
4320 DAG.getConstant(VT.getScalarType().getSizeInBits() - 1, VT));
4321 SDValue Add = DAG.getNode(ISD::ADD, DL, VT, LHS, Shift);
4322 AddToWorkList(Shift.getNode());
4323 AddToWorkList(Add.getNode());
4324 return DAG.getNode(ISD::XOR, DL, VT, Add, Shift);
4325 }
4326 }
4327
4328 return SDValue();
4329}
4330
Dan Gohman475871a2008-07-27 21:46:04 +00004331SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4332 SDValue N0 = N->getOperand(0);
4333 SDValue N1 = N->getOperand(1);
4334 SDValue N2 = N->getOperand(2);
4335 SDValue N3 = N->getOperand(3);
4336 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004337 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004338
Nate Begeman44728a72005-09-19 22:34:01 +00004339 // fold select_cc lhs, rhs, x, x, cc -> x
4340 if (N2 == N3)
4341 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004342
Chris Lattner5f42a242006-09-20 06:19:26 +00004343 // Determine if the condition we're dealing with is constant
Matt Arsenault225ed702013-05-18 00:21:46 +00004344 SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004345 N0, N1, CC, SDLoc(N), false);
Stephen Lin7e6d6202013-06-15 04:03:33 +00004346 if (SCC.getNode()) {
4347 AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004348
Stephen Lin7e6d6202013-06-15 04:03:33 +00004349 if (ConstantSDNode *SCCC = dyn_cast<ConstantSDNode>(SCC.getNode())) {
4350 if (!SCCC->isNullValue())
4351 return N2; // cond always true -> true val
4352 else
4353 return N3; // cond always false -> false val
4354 }
4355
4356 // Fold to a simpler select_cc
4357 if (SCC.getOpcode() == ISD::SETCC)
4358 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), N2.getValueType(),
4359 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
4360 SCC.getOperand(2));
Chris Lattner5f42a242006-09-20 06:19:26 +00004361 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004362
Chris Lattner40c62d52005-10-18 06:04:22 +00004363 // If we can fold this based on the true/false value, do so.
4364 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004365 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004366
Nate Begeman44728a72005-09-19 22:34:01 +00004367 // fold select_cc into other things, such as min/max/abs
Andrew Trickac6d9be2013-05-25 02:42:55 +00004368 return SimplifySelectCC(SDLoc(N), N0, N1, N2, N3, CC);
Nate Begeman452d7be2005-09-16 00:54:12 +00004369}
4370
Dan Gohman475871a2008-07-27 21:46:04 +00004371SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7be2005-09-16 00:54:12 +00004372 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004373 cast<CondCodeSDNode>(N->getOperand(2))->get(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004374 SDLoc(N));
Nate Begeman452d7be2005-09-16 00:54:12 +00004375}
4376
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004377// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004378// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004379// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004380// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004381static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004382 unsigned ExtOpc,
Craig Toppera0ec3f92013-07-14 04:42:23 +00004383 SmallVectorImpl<SDNode *> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004384 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004385 bool HasCopyToRegUses = false;
4386 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004387 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4388 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004389 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004390 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004391 if (User == N)
4392 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004393 if (UI.getUse().getResNo() != N0.getResNo())
4394 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004395 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004396 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004397 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4398 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4399 // Sign bits will be lost after a zext.
4400 return false;
4401 bool Add = false;
4402 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004403 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004404 if (UseOp == N0)
4405 continue;
4406 if (!isa<ConstantSDNode>(UseOp))
4407 return false;
4408 Add = true;
4409 }
4410 if (Add)
4411 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004412 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004413 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004414 // If truncates aren't free and there are users we can't
4415 // extend, it isn't worthwhile.
4416 if (!isTruncFree)
4417 return false;
4418 // Remember if this value is live-out.
4419 if (User->getOpcode() == ISD::CopyToReg)
4420 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004421 }
4422
4423 if (HasCopyToRegUses) {
4424 bool BothLiveOut = false;
4425 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4426 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004427 SDUse &Use = UI.getUse();
4428 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4429 BothLiveOut = true;
4430 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004431 }
4432 }
4433 if (BothLiveOut)
4434 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004435 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004436 return ExtendNodes.size();
4437 }
4438 return true;
4439}
4440
Craig Topper6c64fba2013-07-13 07:43:40 +00004441void DAGCombiner::ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004442 SDValue Trunc, SDValue ExtLoad, SDLoc DL,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004443 ISD::NodeType ExtType) {
4444 // Extend SetCC uses if necessary.
4445 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4446 SDNode *SetCC = SetCCs[i];
4447 SmallVector<SDValue, 4> Ops;
4448
4449 for (unsigned j = 0; j != 2; ++j) {
4450 SDValue SOp = SetCC->getOperand(j);
4451 if (SOp == Trunc)
4452 Ops.push_back(ExtLoad);
4453 else
4454 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4455 }
4456
4457 Ops.push_back(SetCC->getOperand(2));
4458 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4459 &Ops[0], Ops.size()));
4460 }
4461}
4462
Dan Gohman475871a2008-07-27 21:46:04 +00004463SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4464 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004465 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004466
Nate Begeman1d4d4142005-09-01 00:19:25 +00004467 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004468 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004469 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004470
Nadav Rotem0c8607b2013-01-20 08:35:56 +00004471 // fold (sext (sext x)) -> (sext x)
4472 // fold (sext (aext x)) -> (sext x)
4473 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004474 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT,
Nadav Rotem0c8607b2013-01-20 08:35:56 +00004475 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004476
Chris Lattner22558872007-02-26 03:13:59 +00004477 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004478 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4479 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004480 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4481 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004482 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4483 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004484 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004485 // CombineTo deleted the truncate, if needed, but not what's under it.
4486 AddToWorkList(oye);
4487 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004488 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004489 }
Evan Chengc88138f2007-03-22 01:54:19 +00004490
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004491 // See if the value being truncated is already sign extended. If so, just
4492 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004493 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004494 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4495 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4496 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004497 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004498
Chris Lattner22558872007-02-26 03:13:59 +00004499 if (OpBits == DestBits) {
4500 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4501 // bits, it is already ready.
4502 if (NumSignBits > DestBits-MidBits)
4503 return Op;
4504 } else if (OpBits < DestBits) {
4505 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4506 // bits, just sext from i32.
4507 if (NumSignBits > OpBits-MidBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004508 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004509 } else {
4510 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4511 // bits, just truncate to i32.
4512 if (NumSignBits > OpBits-MidBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004513 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004514 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004515
Chris Lattner22558872007-02-26 03:13:59 +00004516 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004517 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4518 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004519 if (OpBits < DestBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004520 Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N0), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004521 else if (OpBits > DestBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004522 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), VT, Op);
4523 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004524 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004525 }
Chris Lattner6007b842006-09-21 06:00:20 +00004526 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004527
Evan Cheng110dec22005-12-14 02:19:23 +00004528 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004529 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004530 // on vectors in one instruction. We only perform this transformation on
4531 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004532 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004533 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004534 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004535 bool DoXform = true;
4536 SmallVector<SDNode*, 4> SetCCs;
4537 if (!N0.hasOneUse())
4538 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4539 if (DoXform) {
4540 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004541 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004542 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004543 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004544 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004545 LN0->isVolatile(), LN0->isNonTemporal(),
4546 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004547 CombineTo(N, ExtLoad);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004548 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004549 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004550 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004551 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004552 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004553 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004554 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004555 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004556
4557 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4558 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004559 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4560 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004561 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004562 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004563 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004564 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004565 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004566 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004567 LN0->getBasePtr(), LN0->getPointerInfo(),
4568 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004569 LN0->isVolatile(), LN0->isNonTemporal(),
4570 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004571 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004572 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004573 DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004574 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004575 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004576 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004577 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004578 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004579
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004580 // fold (sext (and/or/xor (load x), cst)) ->
4581 // (and/or/xor (sextload x), (sext cst))
4582 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4583 N0.getOpcode() == ISD::XOR) &&
4584 isa<LoadSDNode>(N0.getOperand(0)) &&
4585 N0.getOperand(1).getOpcode() == ISD::Constant &&
4586 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4587 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4588 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4589 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4590 bool DoXform = true;
4591 SmallVector<SDNode*, 4> SetCCs;
4592 if (!N0.hasOneUse())
4593 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4594 SetCCs, TLI);
4595 if (DoXform) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004596 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(LN0), VT,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004597 LN0->getChain(), LN0->getBasePtr(),
4598 LN0->getPointerInfo(),
4599 LN0->getMemoryVT(),
4600 LN0->isVolatile(),
4601 LN0->isNonTemporal(),
4602 LN0->getAlignment());
4603 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4604 Mask = Mask.sext(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004605 SDValue And = DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004606 ExtLoad, DAG.getConstant(Mask, VT));
4607 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004608 SDLoc(N0.getOperand(0)),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004609 N0.getOperand(0).getValueType(), ExtLoad);
4610 CombineTo(N, And);
4611 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004612 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004613 ISD::SIGN_EXTEND);
4614 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4615 }
4616 }
4617 }
4618
Chris Lattner20a35c32007-04-11 05:32:27 +00004619 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004620 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004621 // Only do this before legalize for now.
Owen Andersoned5707b2013-04-23 18:09:28 +00004622 if (VT.isVector() && !LegalOperations &&
Stephen Lin155615d2013-07-08 00:37:03 +00004623 TLI.getBooleanContents(true) ==
Owen Andersoned5707b2013-04-23 18:09:28 +00004624 TargetLowering::ZeroOrNegativeOneBooleanContent) {
Dan Gohman3ce89f42010-04-30 17:19:19 +00004625 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004626 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4627 // of the same size as the compared operands. Only optimize sext(setcc())
4628 // if this is the case.
Matt Arsenault225ed702013-05-18 00:21:46 +00004629 EVT SVT = getSetCCResultType(N0VT);
Nadav Rotem2e506192012-04-11 08:26:11 +00004630
4631 // We know that the # elements of the results is the same as the
4632 // # elements of the compare (and the # elements of the compare result
4633 // for that matter). Check to see that they are the same size. If so,
4634 // we know that the element size of the sext'd result matches the
4635 // element size of the compare operands.
4636 if (VT.getSizeInBits() == SVT.getSizeInBits())
Andrew Trickac6d9be2013-05-25 02:42:55 +00004637 return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004638 N0.getOperand(1),
4639 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Matt Arsenault9aa8fdf2013-05-17 21:43:43 +00004640
Dan Gohman3ce89f42010-04-30 17:19:19 +00004641 // If the desired elements are smaller or larger than the source
4642 // elements we can use a matching integer vector type and then
4643 // truncate/sign extend
Matt Arsenault9aa8fdf2013-05-17 21:43:43 +00004644 EVT MatchingVectorType = N0VT.changeVectorElementTypeToInteger();
Craig Topper0eb5dad2012-09-29 07:18:53 +00004645 if (SVT == MatchingVectorType) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004646 SDValue VsetCC = DAG.getSetCC(SDLoc(N), MatchingVectorType,
Craig Topper0eb5dad2012-09-29 07:18:53 +00004647 N0.getOperand(0), N0.getOperand(1),
4648 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004649 return DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT);
Dan Gohman3ce89f42010-04-30 17:19:19 +00004650 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004651 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004652
Chris Lattner2b7a2712009-07-08 00:31:33 +00004653 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004654 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004655 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004656 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004657 SDValue SCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00004658 SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004659 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004660 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004661 if (SCC.getNode()) return SCC;
Matt Arsenaultb05e4772013-06-14 22:04:37 +00004662 if (!VT.isVector() &&
4663 (!LegalOperations ||
4664 TLI.isOperationLegal(ISD::SETCC, getSetCCResultType(VT)))) {
4665 return DAG.getSelect(SDLoc(N), VT,
4666 DAG.getSetCC(SDLoc(N),
4667 getSetCCResultType(VT),
4668 N0.getOperand(0), N0.getOperand(1),
4669 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4670 NegOne, DAG.getConstant(0, VT));
4671 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004672 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004673
Dan Gohman8f0ad582008-04-28 16:58:24 +00004674 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004675 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004676 DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004677 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004678
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004679 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004680}
4681
Rafael Espindoladecbc432012-04-09 16:06:03 +00004682// isTruncateOf - If N is a truncate of some other value, return true, record
4683// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4684// This function computes KnownZero to avoid a duplicated call to
4685// ComputeMaskedBits in the caller.
4686static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4687 APInt &KnownZero) {
4688 APInt KnownOne;
4689 if (N->getOpcode() == ISD::TRUNCATE) {
4690 Op = N->getOperand(0);
4691 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4692 return true;
4693 }
4694
4695 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4696 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4697 return false;
4698
4699 SDValue Op0 = N->getOperand(0);
4700 SDValue Op1 = N->getOperand(1);
4701 assert(Op0.getValueType() == Op1.getValueType());
4702
4703 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4704 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004705 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004706 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004707 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004708 Op = Op0;
4709 else
4710 return false;
4711
4712 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4713
4714 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4715 return false;
4716
4717 return true;
4718}
4719
Dan Gohman475871a2008-07-27 21:46:04 +00004720SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4721 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004722 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004723
Nate Begeman1d4d4142005-09-01 00:19:25 +00004724 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004725 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004726 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004727 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004728 // fold (zext (aext x)) -> (zext x)
4729 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Andrew Trickac6d9be2013-05-25 02:42:55 +00004730 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004731 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004732
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004733 // fold (zext (truncate x)) -> (zext x) or
4734 // (zext (truncate x)) -> (truncate x)
4735 // This is valid when the truncated bits of x are already zero.
4736 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004737 SDValue Op;
4738 APInt KnownZero;
4739 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4740 APInt TruncatedBits =
4741 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4742 APInt(Op.getValueSizeInBits(), 0) :
4743 APInt::getBitsSet(Op.getValueSizeInBits(),
4744 N0.getValueSizeInBits(),
4745 std::min(Op.getValueSizeInBits(),
4746 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004747 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004748 if (VT.bitsGT(Op.getValueType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004749 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, Op);
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004750 if (VT.bitsLT(Op.getValueType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004751 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004752
4753 return Op;
4754 }
4755 }
4756
Evan Chengc88138f2007-03-22 01:54:19 +00004757 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4758 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004759 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004760 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4761 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004762 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4763 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004764 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004765 // CombineTo deleted the truncate, if needed, but not what's under it.
4766 AddToWorkList(oye);
4767 }
Eli Friedmane545d382011-04-16 23:25:34 +00004768 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004769 }
Evan Chengc88138f2007-03-22 01:54:19 +00004770 }
4771
Chris Lattner6007b842006-09-21 06:00:20 +00004772 // fold (zext (truncate x)) -> (and x, mask)
4773 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004774 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004775
4776 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4777 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4778 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4779 if (NarrowLoad.getNode()) {
4780 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4781 if (NarrowLoad.getNode() != N0.getNode()) {
4782 CombineTo(N0.getNode(), NarrowLoad);
4783 // CombineTo deleted the truncate, if needed, but not what's under it.
4784 AddToWorkList(oye);
4785 }
4786 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4787 }
4788
Dan Gohman475871a2008-07-27 21:46:04 +00004789 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004790 if (Op.getValueType().bitsLT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004791 Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004792 AddToWorkList(Op.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004793 } else if (Op.getValueType().bitsGT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004794 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004795 AddToWorkList(Op.getNode());
Chris Lattner6007b842006-09-21 06:00:20 +00004796 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004797 return DAG.getZeroExtendInReg(Op, SDLoc(N),
Dan Gohman87862e72009-12-11 21:31:27 +00004798 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004799 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004800
Dan Gohman97121ba2009-04-08 00:15:30 +00004801 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4802 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004803 if (N0.getOpcode() == ISD::AND &&
4804 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004805 N0.getOperand(1).getOpcode() == ISD::Constant &&
4806 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4807 N0.getValueType()) ||
4808 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004809 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004810 if (X.getValueType().bitsLT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004811 X = DAG.getNode(ISD::ANY_EXTEND, SDLoc(X), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004812 } else if (X.getValueType().bitsGT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004813 X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004814 }
Dan Gohman220a8232008-03-03 23:51:38 +00004815 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004816 Mask = Mask.zext(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004817 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004818 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004819 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004820
Evan Cheng110dec22005-12-14 02:19:23 +00004821 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004822 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004823 // on vectors in one instruction. We only perform this transformation on
4824 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004825 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004826 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004827 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004828 bool DoXform = true;
4829 SmallVector<SDNode*, 4> SetCCs;
4830 if (!N0.hasOneUse())
4831 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4832 if (DoXform) {
4833 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004834 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004835 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004836 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004837 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004838 LN0->isVolatile(), LN0->isNonTemporal(),
4839 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004840 CombineTo(N, ExtLoad);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004841 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004842 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004843 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004844
Andrew Trickac6d9be2013-05-25 02:42:55 +00004845 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004846 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004847 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004848 }
Evan Cheng110dec22005-12-14 02:19:23 +00004849 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004850
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004851 // fold (zext (and/or/xor (load x), cst)) ->
4852 // (and/or/xor (zextload x), (zext cst))
4853 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4854 N0.getOpcode() == ISD::XOR) &&
4855 isa<LoadSDNode>(N0.getOperand(0)) &&
4856 N0.getOperand(1).getOpcode() == ISD::Constant &&
4857 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4858 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4859 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4860 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4861 bool DoXform = true;
4862 SmallVector<SDNode*, 4> SetCCs;
4863 if (!N0.hasOneUse())
4864 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4865 SetCCs, TLI);
4866 if (DoXform) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004867 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), VT,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004868 LN0->getChain(), LN0->getBasePtr(),
4869 LN0->getPointerInfo(),
4870 LN0->getMemoryVT(),
4871 LN0->isVolatile(),
4872 LN0->isNonTemporal(),
4873 LN0->getAlignment());
4874 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4875 Mask = Mask.zext(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004876 SDValue And = DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004877 ExtLoad, DAG.getConstant(Mask, VT));
4878 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004879 SDLoc(N0.getOperand(0)),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004880 N0.getOperand(0).getValueType(), ExtLoad);
4881 CombineTo(N, And);
4882 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00004883 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004884 ISD::ZERO_EXTEND);
4885 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4886 }
4887 }
4888 }
4889
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004890 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4891 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004892 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4893 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004894 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004895 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004896 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004897 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004898 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004899 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004900 LN0->getBasePtr(), LN0->getPointerInfo(),
4901 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004902 LN0->isVolatile(), LN0->isNonTemporal(),
4903 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004904 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004905 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004906 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), N0.getValueType(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004907 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004908 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004909 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004910 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004911 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004912
Chris Lattner20a35c32007-04-11 05:32:27 +00004913 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004914 if (!LegalOperations && VT.isVector()) {
4915 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4916 // Only do this before legalize for now.
4917 EVT N0VT = N0.getOperand(0).getValueType();
4918 EVT EltVT = VT.getVectorElementType();
4919 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4920 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004921 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004922 // We know that the # elements of the results is the same as the
4923 // # elements of the compare (and the # elements of the compare result
4924 // for that matter). Check to see that they are the same size. If so,
4925 // we know that the element size of the sext'd result matches the
4926 // element size of the compare operands.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004927 return DAG.getNode(ISD::AND, SDLoc(N), VT,
4928 DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004929 N0.getOperand(1),
4930 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
Andrew Trickac6d9be2013-05-25 02:42:55 +00004931 DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT,
Evan Cheng0a942db2010-05-19 01:08:17 +00004932 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004933
4934 // If the desired elements are smaller or larger than the source
4935 // elements we can use a matching integer vector type and then
4936 // truncate/sign extend
4937 EVT MatchingElementType =
4938 EVT::getIntegerVT(*DAG.getContext(),
4939 N0VT.getScalarType().getSizeInBits());
4940 EVT MatchingVectorType =
4941 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4942 N0VT.getVectorNumElements());
4943 SDValue VsetCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00004944 DAG.getSetCC(SDLoc(N), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004945 N0.getOperand(1),
4946 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Andrew Trickac6d9be2013-05-25 02:42:55 +00004947 return DAG.getNode(ISD::AND, SDLoc(N), VT,
4948 DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT),
4949 DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT,
Dan Gohman71dc7c92011-05-17 22:20:36 +00004950 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004951 }
4952
4953 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004954 SDValue SCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00004955 SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004956 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004957 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004958 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004959 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004960
Evan Cheng9818c042009-12-15 03:00:32 +00004961 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004962 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004963 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004964 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4965 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004966 SDValue ShAmt = N0.getOperand(1);
4967 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004968 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004969 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004970 // If the original shl may be shifting out bits, do not perform this
4971 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004972 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4973 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4974 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004975 return SDValue();
4976 }
Chris Lattnere0751182011-02-13 19:09:16 +00004977
Andrew Trickac6d9be2013-05-25 02:42:55 +00004978 SDLoc DL(N);
Owen Anderson95771af2011-02-25 21:41:48 +00004979
4980 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004981 if (VT.getSizeInBits() >= 256)
4982 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004983
Chris Lattnere0751182011-02-13 19:09:16 +00004984 return DAG.getNode(N0.getOpcode(), DL, VT,
4985 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4986 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004987 }
4988
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004989 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004990}
4991
Dan Gohman475871a2008-07-27 21:46:04 +00004992SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4993 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004994 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004995
Chris Lattner5ffc0662006-05-05 05:58:59 +00004996 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004997 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00004998 return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004999 // fold (aext (aext x)) -> (aext x)
5000 // fold (aext (zext x)) -> (zext x)
5001 // fold (aext (sext x)) -> (sext x)
5002 if (N0.getOpcode() == ISD::ANY_EXTEND ||
5003 N0.getOpcode() == ISD::ZERO_EXTEND ||
5004 N0.getOpcode() == ISD::SIGN_EXTEND)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005005 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00005006
Evan Chengc88138f2007-03-22 01:54:19 +00005007 // fold (aext (truncate (load x))) -> (aext (smaller load x))
5008 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
5009 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005010 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
5011 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00005012 SDNode* oye = N0.getNode()->getOperand(0).getNode();
5013 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005014 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00005015 // CombineTo deleted the truncate, if needed, but not what's under it.
5016 AddToWorkList(oye);
5017 }
Eli Friedmane545d382011-04-16 23:25:34 +00005018 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00005019 }
Evan Chengc88138f2007-03-22 01:54:19 +00005020 }
5021
Chris Lattner84750582006-09-20 06:29:17 +00005022 // fold (aext (truncate x))
5023 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00005024 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00005025 if (TruncOp.getValueType() == VT)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005026 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00005027 if (TruncOp.getValueType().bitsGT(VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005028 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, TruncOp);
5029 return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00005030 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005031
Dan Gohman97121ba2009-04-08 00:15:30 +00005032 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
5033 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00005034 if (N0.getOpcode() == ISD::AND &&
5035 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00005036 N0.getOperand(1).getOpcode() == ISD::Constant &&
5037 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
5038 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00005039 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005040 if (X.getValueType().bitsLT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005041 X = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005042 } else if (X.getValueType().bitsGT(VT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005043 X = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00005044 }
Dan Gohman220a8232008-03-03 23:51:38 +00005045 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00005046 Mask = Mask.zext(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005047 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Bill Wendling683c9572009-01-30 22:27:33 +00005048 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00005049 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005050
Chris Lattner5ffc0662006-05-05 05:58:59 +00005051 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005052 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00005053 // on vectors in one instruction. We only perform this transformation on
5054 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005055 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005056 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005057 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00005058 bool DoXform = true;
5059 SmallVector<SDNode*, 4> SetCCs;
5060 if (!N0.hasOneUse())
5061 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
5062 if (DoXform) {
5063 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005064 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00005065 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005066 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00005067 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00005068 LN0->isVolatile(), LN0->isNonTemporal(),
5069 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00005070 CombineTo(N, ExtLoad);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005071 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Dan Gohman57fc82d2009-04-09 03:51:29 +00005072 N0.getValueType(), ExtLoad);
5073 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005074 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00005075 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00005076 return SDValue(N, 0); // Return N so it doesn't get rechecked!
5077 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00005078 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005079
Chris Lattner5ffc0662006-05-05 05:58:59 +00005080 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
5081 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
5082 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00005083 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005084 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00005085 N0.hasOneUse()) {
5086 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005087 EVT MemVT = LN0->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005088 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), SDLoc(N),
Stuart Hastingsa9011292011-02-16 16:23:55 +00005089 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005090 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00005091 LN0->isVolatile(), LN0->isNonTemporal(),
5092 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00005093 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00005094 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00005095 DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling683c9572009-01-30 22:27:33 +00005096 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00005097 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005098 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00005099 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005100
Chris Lattner20a35c32007-04-11 05:32:27 +00005101 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00005102 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
5103 // Only do this before legalize for now.
5104 if (VT.isVector() && !LegalOperations) {
5105 EVT N0VT = N0.getOperand(0).getValueType();
5106 // We know that the # elements of the results is the same as the
5107 // # elements of the compare (and the # elements of the compare result
5108 // for that matter). Check to see that they are the same size. If so,
5109 // we know that the element size of the sext'd result matches the
5110 // element size of the compare operands.
5111 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Andrew Trickac6d9be2013-05-25 02:42:55 +00005112 return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00005113 N0.getOperand(1),
5114 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00005115 // If the desired elements are smaller or larger than the source
5116 // elements we can use a matching integer vector type and then
5117 // truncate/sign extend
5118 else {
Duncan Sands34727662010-07-12 08:16:59 +00005119 EVT MatchingElementType =
5120 EVT::getIntegerVT(*DAG.getContext(),
5121 N0VT.getScalarType().getSizeInBits());
5122 EVT MatchingVectorType =
5123 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
5124 N0VT.getVectorNumElements());
5125 SDValue VsetCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00005126 DAG.getSetCC(SDLoc(N), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00005127 N0.getOperand(1),
5128 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005129 return DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00005130 }
5131 }
5132
5133 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00005134 SDValue SCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00005135 SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00005136 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00005137 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00005138 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00005139 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00005140 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005141
Evan Chengb3a3d5e2010-04-28 07:10:39 +00005142 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00005143}
5144
Chris Lattner2b4c2792007-10-13 06:35:54 +00005145/// GetDemandedBits - See if the specified operand can be simplified with the
5146/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00005147/// simpler operand, otherwise return a null SDValue.
5148SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00005149 switch (V.getOpcode()) {
5150 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00005151 case ISD::Constant: {
5152 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
5153 assert(CV != 0 && "Const value should be ConstSDNode.");
5154 const APInt &CVal = CV->getAPIntValue();
5155 APInt NewVal = CVal & Mask;
Stephen Linb4940152013-07-09 00:44:49 +00005156 if (NewVal != CVal)
Lang Hames5207bf22011-11-08 18:56:23 +00005157 return DAG.getConstant(NewVal, V.getValueType());
Lang Hames5207bf22011-11-08 18:56:23 +00005158 break;
5159 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00005160 case ISD::OR:
5161 case ISD::XOR:
5162 // If the LHS or RHS don't contribute bits to the or, drop them.
5163 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
5164 return V.getOperand(1);
5165 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
5166 return V.getOperand(0);
5167 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00005168 case ISD::SRL:
5169 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005170 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00005171 break;
5172 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
5173 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005174 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00005175
Dan Gohmancc91d632009-01-03 19:22:06 +00005176 // Watch out for shift count overflow though.
5177 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005178 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00005179 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00005180 if (SimplifyLHS.getNode())
Andrew Trickac6d9be2013-05-25 02:42:55 +00005181 return DAG.getNode(ISD::SRL, SDLoc(V), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00005182 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00005183 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00005184 }
Dan Gohman475871a2008-07-27 21:46:04 +00005185 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00005186}
5187
Evan Chengc88138f2007-03-22 01:54:19 +00005188/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
5189/// bits and then truncated to a narrower type and where N is a multiple
5190/// of number of bits of the narrower type, transform it to a narrower load
5191/// from address + N / num of bits of new type. If the result is to be
5192/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00005193SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00005194 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005195
Evan Chengc88138f2007-03-22 01:54:19 +00005196 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00005197 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005198 EVT VT = N->getValueType(0);
5199 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00005200
Dan Gohman7f8613e2008-08-14 20:04:46 +00005201 // This transformation isn't valid for vector loads.
5202 if (VT.isVector())
5203 return SDValue();
5204
Dan Gohmand1996362010-01-09 02:13:55 +00005205 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00005206 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00005207 if (Opc == ISD::SIGN_EXTEND_INREG) {
5208 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00005209 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005210 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00005211 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005212 ExtType = ISD::ZEXTLOAD;
5213 N0 = SDValue(N, 0);
5214 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
5215 if (!N01) return SDValue();
5216 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
5217 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00005218 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00005219 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
5220 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005221
Owen Andersone50ed302009-08-10 22:56:29 +00005222 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00005223
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005224 // Do not generate loads of non-round integer types since these can
5225 // be expensive (and would be wrong if the type is not byte sized).
5226 if (!ExtVT.isRound())
5227 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005228
Evan Chengc88138f2007-03-22 01:54:19 +00005229 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005230 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00005231 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005232 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005233 // Is the shift amount a multiple of size of VT?
5234 if ((ShAmt & (EVTBits-1)) == 0) {
5235 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00005236 // Is the load width a multiple of size of VT?
5237 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005238 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005239 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005240
Chris Lattnercbf68df2010-12-22 08:02:57 +00005241 // At this point, we must have a load or else we can't do the transform.
5242 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005243
Chandler Carruth1c49fda2012-12-11 00:36:57 +00005244 // Because a SRL must be assumed to *need* to zero-extend the high bits
5245 // (as opposed to anyext the high bits), we can't combine the zextload
5246 // lowering of SRL and an sextload.
5247 if (cast<LoadSDNode>(N0)->getExtensionType() == ISD::SEXTLOAD)
5248 return SDValue();
5249
Chris Lattner2831a192010-10-01 05:36:09 +00005250 // If the shift amount is larger than the input type then we're not
5251 // accessing any of the loaded bytes. If the load was a zextload/extload
5252 // then the result of the shift+trunc is zero/undef (handled elsewhere).
Chris Lattnercbf68df2010-12-22 08:02:57 +00005253 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00005254 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005255 }
5256 }
5257
Dan Gohman394d6292010-11-03 01:47:46 +00005258 // If the load is shifted left (and the result isn't shifted back right),
5259 // we can fold the truncate through the shift.
5260 unsigned ShLeftAmt = 0;
5261 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00005262 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00005263 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5264 ShLeftAmt = N01->getZExtValue();
5265 N0 = N0.getOperand(0);
5266 }
5267 }
Owen Anderson95771af2011-02-25 21:41:48 +00005268
Chris Lattner4c32bc22010-12-22 07:36:50 +00005269 // If we haven't found a load, we can't narrow it. Don't transform one with
5270 // multiple uses, this would require adding a new load.
Bill Schmidt89e88e32013-01-14 22:04:38 +00005271 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse())
5272 return SDValue();
5273
5274 // Don't change the width of a volatile load.
5275 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5276 if (LN0->isVolatile())
Chris Lattner4c32bc22010-12-22 07:36:50 +00005277 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005278
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005279 // Verify that we are actually reducing a load width here.
Bill Schmidt89e88e32013-01-14 22:04:38 +00005280 if (LN0->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005281 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005282
Bill Schmidt89e88e32013-01-14 22:04:38 +00005283 // For the transform to be legal, the load must produce only two values
5284 // (the value loaded and the chain). Don't transform a pre-increment
Stephen Lin155615d2013-07-08 00:37:03 +00005285 // load, for example, which produces an extra value. Otherwise the
Bill Schmidt89e88e32013-01-14 22:04:38 +00005286 // transformation is not equivalent, and the downstream logic to replace
5287 // uses gets things wrong.
5288 if (LN0->getNumValues() > 2)
5289 return SDValue();
5290
Benjamin Kramerf4eeab42013-07-06 14:05:09 +00005291 // If the load that we're shrinking is an extload and we're not just
5292 // discarding the extension we can't simply shrink the load. Bail.
5293 // TODO: It would be possible to merge the extensions in some cases.
5294 if (LN0->getExtensionType() != ISD::NON_EXTLOAD &&
5295 LN0->getMemoryVT().getSizeInBits() < ExtVT.getSizeInBits() + ShAmt)
5296 return SDValue();
5297
Chris Lattner4c32bc22010-12-22 07:36:50 +00005298 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005299
Evan Cheng16436df2012-06-26 01:19:33 +00005300 if (PtrType == MVT::Untyped || PtrType.isExtended())
5301 // It's not possible to generate a constant of extended or untyped type.
5302 return SDValue();
5303
Chris Lattner4c32bc22010-12-22 07:36:50 +00005304 // For big endian targets, we need to adjust the offset to the pointer to
5305 // load the correct bytes.
5306 if (TLI.isBigEndian()) {
5307 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5308 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5309 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005310 }
5311
Chris Lattner4c32bc22010-12-22 07:36:50 +00005312 uint64_t PtrOff = ShAmt / 8;
5313 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005314 SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(LN0),
Chris Lattner4c32bc22010-12-22 07:36:50 +00005315 PtrType, LN0->getBasePtr(),
5316 DAG.getConstant(PtrOff, PtrType));
5317 AddToWorkList(NewPtr.getNode());
5318
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005319 SDValue Load;
5320 if (ExtType == ISD::NON_EXTLOAD)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005321 Load = DAG.getLoad(VT, SDLoc(N0), LN0->getChain(), NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005322 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005323 LN0->isVolatile(), LN0->isNonTemporal(),
5324 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005325 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00005326 Load = DAG.getExtLoad(ExtType, SDLoc(N0), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005327 LN0->getPointerInfo().getWithOffset(PtrOff),
5328 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5329 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005330
5331 // Replace the old load's chain with the new load's chain.
5332 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005333 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005334
5335 // Shift the result left, if we've swallowed a left shift.
5336 SDValue Result = Load;
5337 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005338 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005339 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5340 ShImmTy = VT;
Paul Redmond5c974502013-02-12 15:21:21 +00005341 // If the shift amount is as large as the result size (but, presumably,
5342 // no larger than the source) then the useful bits of the result are
5343 // zero; we can't simply return the shortened shift, because the result
5344 // of that operation is undefined.
5345 if (ShLeftAmt >= VT.getSizeInBits())
5346 Result = DAG.getConstant(0, VT);
5347 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00005348 Result = DAG.getNode(ISD::SHL, SDLoc(N0), VT,
Paul Redmond5c974502013-02-12 15:21:21 +00005349 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005350 }
5351
5352 // Return the new loaded value.
5353 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005354}
5355
Dan Gohman475871a2008-07-27 21:46:04 +00005356SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5357 SDValue N0 = N->getOperand(0);
5358 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005359 EVT VT = N->getValueType(0);
5360 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005361 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005362 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005363
Nate Begeman1d4d4142005-09-01 00:19:25 +00005364 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005365 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005366 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005367
Chris Lattner541a24f2006-05-06 22:43:44 +00005368 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005369 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005370 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005371
Nate Begeman646d7e22005-09-02 21:18:40 +00005372 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5373 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Stephen Linb4940152013-07-09 00:44:49 +00005374 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005375 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005376 N0.getOperand(0), N1);
Chris Lattner4b37e872006-05-08 21:18:59 +00005377
Dan Gohman75dcf082008-07-31 00:50:31 +00005378 // fold (sext_in_reg (sext x)) -> (sext x)
5379 // fold (sext_in_reg (aext x)) -> (sext x)
5380 // if x is small enough.
5381 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5382 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005383 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5384 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005385 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005386 }
5387
Chris Lattner95a5e052007-04-17 19:03:21 +00005388 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005389 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005390 return DAG.getZeroExtendInReg(N0, SDLoc(N), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005391
Chris Lattner95a5e052007-04-17 19:03:21 +00005392 // fold operands of sext_in_reg based on knowledge that the top bits are not
5393 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005394 if (SimplifyDemandedBits(SDValue(N, 0)))
5395 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005396
Evan Chengc88138f2007-03-22 01:54:19 +00005397 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5398 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005399 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005400 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005401 return NarrowLoad;
5402
Bill Wendling8509c902009-01-30 22:33:24 +00005403 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005404 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005405 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5406 if (N0.getOpcode() == ISD::SRL) {
5407 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005408 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005409 // We can turn this into an SRA iff the input to the SRL is already sign
Chris Lattner4b37e872006-05-08 21:18:59 +00005410 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005411 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005412 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005413 return DAG.getNode(ISD::SRA, SDLoc(N), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005414 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005415 }
5416 }
Evan Chengc88138f2007-03-22 01:54:19 +00005417
Nate Begemanded49632005-10-13 03:11:28 +00005418 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005419 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005420 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005421 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005422 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005423 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005424 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005425 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005426 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005427 LN0->getBasePtr(), LN0->getPointerInfo(),
5428 EVT,
David Greene1e559442010-02-15 17:00:31 +00005429 LN0->isVolatile(), LN0->isNonTemporal(),
5430 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005431 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005432 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Elena Demikhovsky4b977312012-12-19 07:50:20 +00005433 AddToWorkList(ExtLoad.getNode());
Dan Gohman475871a2008-07-27 21:46:04 +00005434 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005435 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005436 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005437 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005438 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005439 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005440 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005441 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005442 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005443 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005444 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005445 LN0->getBasePtr(), LN0->getPointerInfo(),
5446 EVT,
David Greene1e559442010-02-15 17:00:31 +00005447 LN0->isVolatile(), LN0->isNonTemporal(),
5448 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005449 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005450 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005451 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005452 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005453
5454 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5455 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5456 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5457 N0.getOperand(1), false);
5458 if (BSwap.getNode() != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005459 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
Evan Cheng9568e5c2011-06-21 06:01:08 +00005460 BSwap, N1);
5461 }
5462
Dan Gohman475871a2008-07-27 21:46:04 +00005463 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005464}
5465
Dan Gohman475871a2008-07-27 21:46:04 +00005466SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5467 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005468 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005469 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005470
5471 // noop truncate
5472 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005473 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005474 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005475 if (isa<ConstantSDNode>(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005476 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005477 // fold (truncate (truncate x)) -> (truncate x)
5478 if (N0.getOpcode() == ISD::TRUNCATE)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005479 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005480 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005481 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5482 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005483 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005484 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005485 // if the source is smaller than the dest, we still need an extend
Andrew Trickac6d9be2013-05-25 02:42:55 +00005486 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005487 N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005488 if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005489 // if the source is larger than the dest, than we just need the truncate
Andrew Trickac6d9be2013-05-25 02:42:55 +00005490 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005491 // if the source and dest are the same type, we can drop both the extend
5492 // and the truncate.
5493 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005494 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005495
Nadav Rotemcc870a82012-02-05 11:39:23 +00005496 // Fold extract-and-trunc into a narrow extract. For example:
5497 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5498 // i32 y = TRUNCATE(i64 x)
5499 // -- becomes --
5500 // v16i8 b = BITCAST (v2i64 val)
5501 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5502 //
5503 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005504 // creates this pattern) and before operation legalization after which
5505 // we need to be more careful about the vector instructions that we generate.
5506 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5507 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5508
5509 EVT VecTy = N0.getOperand(0).getValueType();
5510 EVT ExTy = N0.getValueType();
5511 EVT TrTy = N->getValueType(0);
5512
5513 unsigned NumElem = VecTy.getVectorNumElements();
5514 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5515
5516 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5517 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5518
5519 SDValue EltNo = N0->getOperand(1);
5520 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5521 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Tom Stellard425b76c2013-08-05 22:22:01 +00005522 EVT IndexTy = TLI.getVectorIdxTy();
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005523 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5524
Andrew Trickac6d9be2013-05-25 02:42:55 +00005525 SDValue V = DAG.getNode(ISD::BITCAST, SDLoc(N),
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005526 NVT, N0.getOperand(0));
5527
5528 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005529 SDLoc(N), TrTy, V,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005530 DAG.getConstant(Index, IndexTy));
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005531 }
5532 }
5533
Arnold Schwaighoferc46e2df2013-02-20 21:33:32 +00005534 // Fold a series of buildvector, bitcast, and truncate if possible.
5535 // For example fold
5536 // (2xi32 trunc (bitcast ((4xi32)buildvector x, x, y, y) 2xi64)) to
5537 // (2xi32 (buildvector x, y)).
5538 if (Level == AfterLegalizeVectorOps && VT.isVector() &&
5539 N0.getOpcode() == ISD::BITCAST && N0.hasOneUse() &&
5540 N0.getOperand(0).getOpcode() == ISD::BUILD_VECTOR &&
5541 N0.getOperand(0).hasOneUse()) {
5542
5543 SDValue BuildVect = N0.getOperand(0);
5544 EVT BuildVectEltTy = BuildVect.getValueType().getVectorElementType();
5545 EVT TruncVecEltTy = VT.getVectorElementType();
5546
5547 // Check that the element types match.
5548 if (BuildVectEltTy == TruncVecEltTy) {
5549 // Now we only need to compute the offset of the truncated elements.
5550 unsigned BuildVecNumElts = BuildVect.getNumOperands();
5551 unsigned TruncVecNumElts = VT.getVectorNumElements();
5552 unsigned TruncEltOffset = BuildVecNumElts / TruncVecNumElts;
5553
5554 assert((BuildVecNumElts % TruncVecNumElts) == 0 &&
5555 "Invalid number of elements");
5556
5557 SmallVector<SDValue, 8> Opnds;
5558 for (unsigned i = 0, e = BuildVecNumElts; i != e; i += TruncEltOffset)
5559 Opnds.push_back(BuildVect.getOperand(i));
5560
Andrew Trickac6d9be2013-05-25 02:42:55 +00005561 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT, &Opnds[0],
Arnold Schwaighoferc46e2df2013-02-20 21:33:32 +00005562 Opnds.size());
5563 }
5564 }
5565
Chris Lattner2b4c2792007-10-13 06:35:54 +00005566 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005567 // only the low bits are being used.
5568 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005569 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005570 // may have different active low bits.
5571 if (!VT.isVector()) {
5572 SDValue Shorter =
5573 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5574 VT.getSizeInBits()));
5575 if (Shorter.getNode())
Andrew Trickac6d9be2013-05-25 02:42:55 +00005576 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Shorter);
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005577 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005578 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005579 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005580 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5581 SDValue Reduced = ReduceLoadWidth(N);
5582 if (Reduced.getNode())
5583 return Reduced;
5584 }
Michael Liao07edaf32012-10-17 23:45:54 +00005585 // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)),
5586 // where ... are all 'undef'.
5587 if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) {
5588 SmallVector<EVT, 8> VTs;
5589 SDValue V;
5590 unsigned Idx = 0;
5591 unsigned NumDefs = 0;
5592
5593 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
5594 SDValue X = N0.getOperand(i);
5595 if (X.getOpcode() != ISD::UNDEF) {
5596 V = X;
5597 Idx = i;
5598 NumDefs++;
5599 }
5600 // Stop if more than one members are non-undef.
5601 if (NumDefs > 1)
5602 break;
5603 VTs.push_back(EVT::getVectorVT(*DAG.getContext(),
5604 VT.getVectorElementType(),
5605 X.getValueType().getVectorNumElements()));
5606 }
5607
5608 if (NumDefs == 0)
5609 return DAG.getUNDEF(VT);
5610
5611 if (NumDefs == 1) {
5612 assert(V.getNode() && "The single defined operand is empty!");
5613 SmallVector<SDValue, 8> Opnds;
5614 for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
5615 if (i != Idx) {
5616 Opnds.push_back(DAG.getUNDEF(VTs[i]));
5617 continue;
5618 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00005619 SDValue NV = DAG.getNode(ISD::TRUNCATE, SDLoc(V), VTs[i], V);
Michael Liao07edaf32012-10-17 23:45:54 +00005620 AddToWorkList(NV.getNode());
5621 Opnds.push_back(NV);
5622 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00005623 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
Michael Liao07edaf32012-10-17 23:45:54 +00005624 &Opnds[0], Opnds.size());
5625 }
5626 }
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005627
5628 // Simplify the operands using demanded-bits information.
5629 if (!VT.isVector() &&
5630 SimplifyDemandedBits(SDValue(N, 0)))
5631 return SDValue(N, 0);
5632
Evan Chenge5b51ac2010-04-17 06:13:15 +00005633 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005634}
5635
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005636static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005637 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005638 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005639 return Elt.getNode();
5640 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005641}
5642
5643/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005644/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005645SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005646 assert(N->getOpcode() == ISD::BUILD_PAIR);
5647
Nate Begemanabc01992009-06-05 21:37:30 +00005648 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5649 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005650 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5651 LD1->getPointerInfo().getAddrSpace() !=
5652 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005653 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005654 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005655
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005656 if (ISD::isNON_EXTLoad(LD2) &&
5657 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005658 // If both are volatile this would reduce the number of volatile loads.
5659 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005660 !LD1->isVolatile() &&
5661 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005662 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005663 unsigned Align = LD1->getAlignment();
Micah Villmow3574eca2012-10-08 16:38:25 +00005664 unsigned NewAlign = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005665 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005666
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005667 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005668 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005669 return DAG.getLoad(VT, SDLoc(N), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005670 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005671 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005672 }
Bill Wendling67a67682009-01-30 22:44:24 +00005673
Dan Gohman475871a2008-07-27 21:46:04 +00005674 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005675}
5676
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005677SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005678 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005679 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005680
Dan Gohman7f321562007-06-25 16:23:39 +00005681 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5682 // Only do this before legalize, since afterward the target may be depending
5683 // on the bitconvert.
5684 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005685 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005686 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005687 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005688 bool isSimple = true;
5689 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5690 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5691 N0.getOperand(i).getOpcode() != ISD::Constant &&
5692 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005693 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005694 break;
5695 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005696
Owen Andersone50ed302009-08-10 22:56:29 +00005697 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005698 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005699 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005700 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005701 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005702 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005703
Dan Gohman3dd168d2008-09-05 01:58:21 +00005704 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005705 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005706 SDValue Res = DAG.getNode(ISD::BITCAST, SDLoc(N), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005707 if (Res.getNode() != N) {
5708 if (!LegalOperations ||
5709 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5710 return Res;
5711
5712 // Folding it resulted in an illegal node, and it's too late to
5713 // do that. Clean up the old node and forego the transformation.
5714 // Ideally this won't happen very often, because instcombine
5715 // and the earlier dagcombine runs (where illegal nodes are
5716 // permitted) should have folded most of them already.
5717 DAG.DeleteNode(Res.getNode());
5718 }
Chris Lattner94683772005-12-23 05:30:37 +00005719 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005720
Bill Wendling67a67682009-01-30 22:44:24 +00005721 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005722 if (N0.getOpcode() == ISD::BITCAST)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005723 return DAG.getNode(ISD::BITCAST, SDLoc(N), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005724 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005725
Chris Lattner57104102005-12-23 05:44:41 +00005726 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005727 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005728 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005729 // Do not change the width of a volatile load.
5730 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005731 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005732 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Micah Villmow3574eca2012-10-08 16:38:25 +00005733 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005734 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005735 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005736
Evan Cheng59d5b682007-05-07 21:27:48 +00005737 if (Align <= OrigAlign) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005738 SDValue Load = DAG.getLoad(VT, SDLoc(N), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005739 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005740 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005741 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005742 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005743 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00005744 DAG.getNode(ISD::BITCAST, SDLoc(N0),
Bill Wendling67a67682009-01-30 22:44:24 +00005745 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005746 Load.getValue(1));
5747 return Load;
5748 }
Chris Lattner57104102005-12-23 05:44:41 +00005749 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005750
Bill Wendling67a67682009-01-30 22:44:24 +00005751 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5752 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005753 // This often reduces constant pool loads.
Tom Stellard1f67c632013-07-23 23:55:03 +00005754 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(N0.getValueType())) ||
5755 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(N0.getValueType()))) &&
Nadav Rotem91a7e012012-09-13 14:54:28 +00005756 N0.getNode()->hasOneUse() && VT.isInteger() &&
5757 !VT.isVector() && !N0.getValueType().isVector()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005758 SDValue NewConv = DAG.getNode(ISD::BITCAST, SDLoc(N0), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005759 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005760 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005761
Duncan Sands83ec4b62008-06-06 12:08:01 +00005762 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005763 if (N0.getOpcode() == ISD::FNEG)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005764 return DAG.getNode(ISD::XOR, SDLoc(N), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005765 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005766 assert(N0.getOpcode() == ISD::FABS);
Andrew Trickac6d9be2013-05-25 02:42:55 +00005767 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005768 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005769 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005770
Bill Wendling67a67682009-01-30 22:44:24 +00005771 // fold (bitconvert (fcopysign cst, x)) ->
5772 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5773 // Note that we don't handle (copysign x, cst) because this can always be
5774 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005775 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005776 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005777 VT.isInteger() && !VT.isVector()) {
5778 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005779 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005780 if (isTypeLegal(IntXVT)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005781 SDValue X = DAG.getNode(ISD::BITCAST, SDLoc(N0),
Bill Wendling67a67682009-01-30 22:44:24 +00005782 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005783 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005784
Duncan Sands25cf2272008-11-24 14:53:14 +00005785 // If X has a different width than the result/lhs, sext it or truncate it.
5786 unsigned VTWidth = VT.getSizeInBits();
5787 if (OrigXWidth < VTWidth) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005788 X = DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005789 AddToWorkList(X.getNode());
5790 } else if (OrigXWidth > VTWidth) {
5791 // To get the sign bit in the right place, we have to shift it right
5792 // before truncating.
Andrew Trickac6d9be2013-05-25 02:42:55 +00005793 X = DAG.getNode(ISD::SRL, SDLoc(X),
Bill Wendling67a67682009-01-30 22:44:24 +00005794 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005795 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5796 AddToWorkList(X.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005797 X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005798 AddToWorkList(X.getNode());
5799 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005800
Duncan Sands25cf2272008-11-24 14:53:14 +00005801 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005802 X = DAG.getNode(ISD::AND, SDLoc(X), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005803 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005804 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005805
Andrew Trickac6d9be2013-05-25 02:42:55 +00005806 SDValue Cst = DAG.getNode(ISD::BITCAST, SDLoc(N0),
Bill Wendling67a67682009-01-30 22:44:24 +00005807 VT, N0.getOperand(0));
Andrew Trickac6d9be2013-05-25 02:42:55 +00005808 Cst = DAG.getNode(ISD::AND, SDLoc(Cst), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005809 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005810 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005811
Andrew Trickac6d9be2013-05-25 02:42:55 +00005812 return DAG.getNode(ISD::OR, SDLoc(N), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005813 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005814 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005815
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005816 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005817 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005818 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5819 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005820 return CombineLD;
5821 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005822
Dan Gohman475871a2008-07-27 21:46:04 +00005823 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005824}
5825
Dan Gohman475871a2008-07-27 21:46:04 +00005826SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005827 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005828 return CombineConsecutiveLoads(N, VT);
5829}
5830
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005831/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005832/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005833/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005834SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005835ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005836 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005837
Chris Lattner6258fb22006-04-02 02:53:43 +00005838 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005839 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005840
Duncan Sands83ec4b62008-06-06 12:08:01 +00005841 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5842 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005843
Chris Lattner6258fb22006-04-02 02:53:43 +00005844 // If this is a conversion of N elements of one type to N elements of another
5845 // type, convert each element. This handles FP<->INT cases.
5846 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005847 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5848 BV->getValueType(0).getVectorNumElements());
5849
5850 // Due to the FP element handling below calling this routine recursively,
5851 // we can end up with a scalar-to-vector node here.
5852 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005853 return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(BV), VT,
5854 DAG.getNode(ISD::BITCAST, SDLoc(BV),
Nate Begemane0efc212010-07-27 18:02:18 +00005855 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005856
Dan Gohman475871a2008-07-27 21:46:04 +00005857 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005858 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005859 SDValue Op = BV->getOperand(i);
5860 // If the vector element type is not legal, the BUILD_VECTOR operands
5861 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005862 if (Op.getValueType() != SrcEltVT)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005863 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(BV), SrcEltVT, Op);
5864 Ops.push_back(DAG.getNode(ISD::BITCAST, SDLoc(BV),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005865 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005866 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005867 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00005868 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
Evan Chenga87008d2009-02-25 22:49:59 +00005869 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005870 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005871
Chris Lattner6258fb22006-04-02 02:53:43 +00005872 // Otherwise, we're growing or shrinking the elements. To avoid having to
5873 // handle annoying details of growing/shrinking FP values, we convert them to
5874 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005875 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005876 // Convert the input float vector to a int vector where the elements are the
5877 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005878 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005879 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005880 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005881 SrcEltVT = IntVT;
5882 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005883
Chris Lattner6258fb22006-04-02 02:53:43 +00005884 // Now we know the input is an integer vector. If the output is a FP type,
5885 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005886 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005887 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005888 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005889 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005890
Chris Lattner6258fb22006-04-02 02:53:43 +00005891 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005892 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005893 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005894
Chris Lattner6258fb22006-04-02 02:53:43 +00005895 // Okay, we know the src/dst types are both integers of differing types.
5896 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005897 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005898 if (SrcBitSize < DstBitSize) {
5899 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005900
Dan Gohman475871a2008-07-27 21:46:04 +00005901 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005902 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005903 i += NumInputsPerOutput) {
5904 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005905 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005906 bool EltIsUndef = true;
5907 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5908 // Shift the previously computed bits over.
5909 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005910 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005911 if (Op.getOpcode() == ISD::UNDEF) continue;
5912 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005913
Jay Foad40f8f622010-12-07 08:25:19 +00005914 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005915 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005916 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005917
Chris Lattner6258fb22006-04-02 02:53:43 +00005918 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005919 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005920 else
5921 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5922 }
5923
Owen Anderson23b9b192009-08-12 00:36:31 +00005924 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Andrew Trickac6d9be2013-05-25 02:42:55 +00005925 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
Evan Chenga87008d2009-02-25 22:49:59 +00005926 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005927 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005928
Chris Lattner6258fb22006-04-02 02:53:43 +00005929 // Finally, this must be the case where we are shrinking elements: each input
5930 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005931 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005932 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005933 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5934 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005935 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005936
Dan Gohman7f321562007-06-25 16:23:39 +00005937 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005938 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5939 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005940 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005941 continue;
5942 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005943
Jay Foad40f8f622010-12-07 08:25:19 +00005944 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5945 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005946
Chris Lattner6258fb22006-04-02 02:53:43 +00005947 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005948 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005949 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005950 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005951 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Andrew Trickac6d9be2013-05-25 02:42:55 +00005952 return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(BV), VT,
Bill Wendlingb0162f52009-01-30 22:53:48 +00005953 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005954 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005955 }
5956
5957 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005958 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005959 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5960 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005961
Andrew Trickac6d9be2013-05-25 02:42:55 +00005962 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
Evan Chenga87008d2009-02-25 22:49:59 +00005963 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005964}
5965
Dan Gohman475871a2008-07-27 21:46:04 +00005966SDValue DAGCombiner::visitFADD(SDNode *N) {
5967 SDValue N0 = N->getOperand(0);
5968 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005969 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5970 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005971 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005972
Dan Gohman7f321562007-06-25 16:23:39 +00005973 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005974 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005975 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005976 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005977 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005978
Lang Hames01806942012-06-14 20:37:15 +00005979 // fold (fadd c1, c2) -> c1 + c2
Ulrich Weigande669c932012-10-29 18:35:49 +00005980 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005981 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005982 // canonicalize constant to RHS
5983 if (N0CFP && !N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005984 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N1, N0);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005985 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005986 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5987 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005988 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005989 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005990 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005991 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005992 return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005993 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005994 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005995 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005996 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005997 return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005998 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005999
Chris Lattnerddae4bd2007-01-08 23:04:05 +00006000 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006001 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6002 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
6003 isa<ConstantFPSDNode>(N0.getOperand(1)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006004 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0.getOperand(0),
6005 DAG.getNode(ISD::FADD, SDLoc(N), VT,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00006006 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006007
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006008 // No FP constant should be created after legalization as Instruction
6009 // Selection pass has hard time in dealing with FP constant.
6010 //
6011 // We don't need test this condition for transformation like following, as
6012 // the DAG being transformed implies it is legal to take FP constant as
6013 // operand.
Stephen Lin155615d2013-07-08 00:37:03 +00006014 //
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006015 // (fadd (fmul c, x), x) -> (fmul c+1, x)
Stephen Lin155615d2013-07-08 00:37:03 +00006016 //
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006017 bool AllowNewFpConst = (Level < AfterLegalizeDAG);
6018
Owen Anderson607ebde2012-11-01 02:00:53 +00006019 // If allow, fold (fadd (fneg x), x) -> 0.0
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006020 if (AllowNewFpConst && DAG.getTarget().Options.UnsafeFPMath &&
Stephen Linb4940152013-07-09 00:44:49 +00006021 N0.getOpcode() == ISD::FNEG && N0.getOperand(0) == N1)
Owen Anderson607ebde2012-11-01 02:00:53 +00006022 return DAG.getConstantFP(0.0, VT);
Owen Anderson607ebde2012-11-01 02:00:53 +00006023
6024 // If allow, fold (fadd x, (fneg x)) -> 0.0
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006025 if (AllowNewFpConst && DAG.getTarget().Options.UnsafeFPMath &&
Stephen Linb4940152013-07-09 00:44:49 +00006026 N1.getOpcode() == ISD::FNEG && N1.getOperand(0) == N0)
Owen Anderson607ebde2012-11-01 02:00:53 +00006027 return DAG.getConstantFP(0.0, VT);
Owen Anderson607ebde2012-11-01 02:00:53 +00006028
Owen Anderson43da6c72012-08-30 23:35:16 +00006029 // In unsafe math mode, we can fold chains of FADD's of the same value
6030 // into multiplications. This transform is not safe in general because
6031 // we are reducing the number of rounding steps.
6032 if (DAG.getTarget().Options.UnsafeFPMath &&
6033 TLI.isOperationLegalOrCustom(ISD::FMUL, VT) &&
6034 !N0CFP && !N1CFP) {
6035 if (N0.getOpcode() == ISD::FMUL) {
6036 ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
6037 ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
6038
Stephen Lin38103d12013-06-14 18:17:35 +00006039 // (fadd (fmul c, x), x) -> (fmul x, c+1)
Owen Anderson43da6c72012-08-30 23:35:16 +00006040 if (CFP00 && !CFP01 && N0.getOperand(1) == N1) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006041 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006042 SDValue(CFP00, 0),
6043 DAG.getConstantFP(1.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006044 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006045 N1, NewCFP);
6046 }
6047
Stephen Lin38103d12013-06-14 18:17:35 +00006048 // (fadd (fmul x, c), x) -> (fmul x, c+1)
Owen Anderson43da6c72012-08-30 23:35:16 +00006049 if (CFP01 && !CFP00 && N0.getOperand(0) == N1) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006050 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006051 SDValue(CFP01, 0),
6052 DAG.getConstantFP(1.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006053 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006054 N1, NewCFP);
6055 }
6056
Stephen Lin38103d12013-06-14 18:17:35 +00006057 // (fadd (fmul c, x), (fadd x, x)) -> (fmul x, c+2)
Owen Anderson43da6c72012-08-30 23:35:16 +00006058 if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD &&
6059 N1.getOperand(0) == N1.getOperand(1) &&
6060 N0.getOperand(1) == N1.getOperand(0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006061 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006062 SDValue(CFP00, 0),
6063 DAG.getConstantFP(2.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006064 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006065 N0.getOperand(1), NewCFP);
6066 }
6067
Stephen Lin38103d12013-06-14 18:17:35 +00006068 // (fadd (fmul x, c), (fadd x, x)) -> (fmul x, c+2)
Owen Anderson43da6c72012-08-30 23:35:16 +00006069 if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD &&
6070 N1.getOperand(0) == N1.getOperand(1) &&
6071 N0.getOperand(0) == N1.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(CFP01, 0),
6074 DAG.getConstantFP(2.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006075 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006076 N0.getOperand(0), NewCFP);
6077 }
6078 }
6079
6080 if (N1.getOpcode() == ISD::FMUL) {
6081 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
6082 ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1));
6083
Stephen Lin38103d12013-06-14 18:17:35 +00006084 // (fadd x, (fmul c, x)) -> (fmul x, c+1)
Owen Anderson43da6c72012-08-30 23:35:16 +00006085 if (CFP10 && !CFP11 && N1.getOperand(1) == N0) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006086 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006087 SDValue(CFP10, 0),
6088 DAG.getConstantFP(1.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006089 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006090 N0, NewCFP);
6091 }
6092
Stephen Lin38103d12013-06-14 18:17:35 +00006093 // (fadd x, (fmul x, c)) -> (fmul x, c+1)
Owen Anderson43da6c72012-08-30 23:35:16 +00006094 if (CFP11 && !CFP10 && N1.getOperand(0) == N0) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006095 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006096 SDValue(CFP11, 0),
6097 DAG.getConstantFP(1.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006098 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006099 N0, NewCFP);
6100 }
6101
Owen Anderson43da6c72012-08-30 23:35:16 +00006102
Stephen Lin38103d12013-06-14 18:17:35 +00006103 // (fadd (fadd x, x), (fmul c, x)) -> (fmul x, c+2)
6104 if (CFP10 && !CFP11 && N0.getOpcode() == ISD::FADD &&
6105 N0.getOperand(0) == N0.getOperand(1) &&
6106 N1.getOperand(1) == N0.getOperand(0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006107 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006108 SDValue(CFP10, 0),
6109 DAG.getConstantFP(2.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006110 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Stephen Lin38103d12013-06-14 18:17:35 +00006111 N1.getOperand(1), NewCFP);
Owen Anderson43da6c72012-08-30 23:35:16 +00006112 }
6113
Stephen Lin38103d12013-06-14 18:17:35 +00006114 // (fadd (fadd x, x), (fmul x, c)) -> (fmul x, c+2)
6115 if (CFP11 && !CFP10 && N0.getOpcode() == ISD::FADD &&
6116 N0.getOperand(0) == N0.getOperand(1) &&
6117 N1.getOperand(0) == N0.getOperand(0)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006118 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006119 SDValue(CFP11, 0),
6120 DAG.getConstantFP(2.0, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006121 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Stephen Lin38103d12013-06-14 18:17:35 +00006122 N1.getOperand(0), NewCFP);
Owen Anderson43da6c72012-08-30 23:35:16 +00006123 }
6124 }
6125
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006126 if (N0.getOpcode() == ISD::FADD && AllowNewFpConst) {
Shuxin Yang98b93e52013-02-02 00:22:03 +00006127 ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
Stephen Lina553bed2013-06-14 21:33:58 +00006128 // (fadd (fadd x, x), x) -> (fmul x, 3.0)
Shuxin Yang98b93e52013-02-02 00:22:03 +00006129 if (!CFP && N0.getOperand(0) == N0.getOperand(1) &&
Stephen Linb4940152013-07-09 00:44:49 +00006130 (N0.getOperand(0) == N1))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006131 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Shuxin Yang98b93e52013-02-02 00:22:03 +00006132 N1, DAG.getConstantFP(3.0, VT));
Shuxin Yang98b93e52013-02-02 00:22:03 +00006133 }
6134
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006135 if (N1.getOpcode() == ISD::FADD && AllowNewFpConst) {
Shuxin Yang98b93e52013-02-02 00:22:03 +00006136 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
Stephen Lina553bed2013-06-14 21:33:58 +00006137 // (fadd x, (fadd x, x)) -> (fmul x, 3.0)
Shuxin Yang98b93e52013-02-02 00:22:03 +00006138 if (!CFP10 && N1.getOperand(0) == N1.getOperand(1) &&
Stephen Linb4940152013-07-09 00:44:49 +00006139 N1.getOperand(0) == N0)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006140 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Shuxin Yang98b93e52013-02-02 00:22:03 +00006141 N0, DAG.getConstantFP(3.0, VT));
Shuxin Yang98b93e52013-02-02 00:22:03 +00006142 }
6143
Stephen Lina553bed2013-06-14 21:33:58 +00006144 // (fadd (fadd x, x), (fadd x, x)) -> (fmul x, 4.0)
Shuxin Yang1cd1d022013-03-25 22:52:29 +00006145 if (AllowNewFpConst &&
6146 N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD &&
Owen Anderson43da6c72012-08-30 23:35:16 +00006147 N0.getOperand(0) == N0.getOperand(1) &&
6148 N1.getOperand(0) == N1.getOperand(1) &&
Stephen Linb4940152013-07-09 00:44:49 +00006149 N0.getOperand(0) == N1.getOperand(0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006150 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson43da6c72012-08-30 23:35:16 +00006151 N0.getOperand(0),
6152 DAG.getConstantFP(4.0, VT));
Owen Anderson43da6c72012-08-30 23:35:16 +00006153 }
6154
Lang Hamesd693caf2012-06-19 22:51:23 +00006155 // FADD -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00006156 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00006157 DAG.getTarget().Options.UnsafeFPMath) &&
Stephen Line54885a2013-07-09 18:16:56 +00006158 DAG.getTarget().getTargetLowering()->isFMAFasterThanFMulAndFAdd(VT) &&
6159 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT))) {
Lang Hamesd693caf2012-06-19 22:51:23 +00006160
6161 // fold (fadd (fmul x, y), z) -> (fma x, y, z)
Stephen Linb4940152013-07-09 00:44:49 +00006162 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse())
Andrew Trickac6d9be2013-05-25 02:42:55 +00006163 return DAG.getNode(ISD::FMA, SDLoc(N), VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006164 N0.getOperand(0), N0.getOperand(1), N1);
Owen Anderson43da6c72012-08-30 23:35:16 +00006165
Michael Liaob79bff52012-09-01 04:09:16 +00006166 // fold (fadd x, (fmul y, z)) -> (fma y, z, x)
Lang Hamesd693caf2012-06-19 22:51:23 +00006167 // Note: Commutes FADD operands.
Stephen Linb4940152013-07-09 00:44:49 +00006168 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse())
Andrew Trickac6d9be2013-05-25 02:42:55 +00006169 return DAG.getNode(ISD::FMA, SDLoc(N), VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006170 N1.getOperand(0), N1.getOperand(1), N0);
Lang Hamesd693caf2012-06-19 22:51:23 +00006171 }
6172
Dan Gohman475871a2008-07-27 21:46:04 +00006173 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006174}
6175
Dan Gohman475871a2008-07-27 21:46:04 +00006176SDValue DAGCombiner::visitFSUB(SDNode *N) {
6177 SDValue N0 = N->getOperand(0);
6178 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00006179 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6180 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006181 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006182 SDLoc dl(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00006183
Dan Gohman7f321562007-06-25 16:23:39 +00006184 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006185 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006186 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006187 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006188 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006189
Nate Begemana0e221d2005-10-18 00:28:13 +00006190 // fold (fsub c1, c2) -> c1-c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006191 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006192 return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00006193 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006194 if (DAG.getTarget().Options.UnsafeFPMath &&
6195 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00006196 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00006197 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006198 if (DAG.getTarget().Options.UnsafeFPMath &&
6199 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006200 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006201 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00006202 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006203 return DAG.getNode(ISD::FNEG, dl, VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00006204 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00006205 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00006206 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006207 return DAG.getNode(ISD::FADD, dl, VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00006208 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00006209
Bill Wendling5a894342012-03-15 05:12:00 +00006210 // If 'unsafe math' is enabled, fold
Owen Anderson713e9532012-05-07 20:51:25 +00006211 // (fsub x, x) -> 0.0 &
Bill Wendling5a894342012-03-15 05:12:00 +00006212 // (fsub x, (fadd x, y)) -> (fneg y) &
6213 // (fsub x, (fadd y, x)) -> (fneg y)
6214 if (DAG.getTarget().Options.UnsafeFPMath) {
Owen Anderson713e9532012-05-07 20:51:25 +00006215 if (N0 == N1)
6216 return DAG.getConstantFP(0.0f, VT);
6217
Bill Wendling5a894342012-03-15 05:12:00 +00006218 if (N1.getOpcode() == ISD::FADD) {
6219 SDValue N10 = N1->getOperand(0);
6220 SDValue N11 = N1->getOperand(1);
6221
6222 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
6223 &DAG.getTarget().Options))
6224 return GetNegatedExpression(N11, DAG, LegalOperations);
Stephen Lin75d13062013-07-10 20:47:39 +00006225
Stephen Linb4940152013-07-09 00:44:49 +00006226 if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
6227 &DAG.getTarget().Options))
Bill Wendling5a894342012-03-15 05:12:00 +00006228 return GetNegatedExpression(N10, DAG, LegalOperations);
6229 }
6230 }
6231
Lang Hamesd693caf2012-06-19 22:51:23 +00006232 // FSUB -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00006233 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00006234 DAG.getTarget().Options.UnsafeFPMath) &&
Stephen Line54885a2013-07-09 18:16:56 +00006235 DAG.getTarget().getTargetLowering()->isFMAFasterThanFMulAndFAdd(VT) &&
6236 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT))) {
Lang Hamesd693caf2012-06-19 22:51:23 +00006237
6238 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z))
Stephen Linb4940152013-07-09 00:44:49 +00006239 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse())
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006240 return DAG.getNode(ISD::FMA, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006241 N0.getOperand(0), N0.getOperand(1),
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006242 DAG.getNode(ISD::FNEG, dl, VT, N1));
Lang Hamesd693caf2012-06-19 22:51:23 +00006243
6244 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x)
6245 // Note: Commutes FSUB operands.
Stephen Lin75d13062013-07-10 20:47:39 +00006246 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse())
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006247 return DAG.getNode(ISD::FMA, dl, VT,
6248 DAG.getNode(ISD::FNEG, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006249 N1.getOperand(0)),
6250 N1.getOperand(1), N0);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006251
Stephen Linb4940152013-07-09 00:44:49 +00006252 // fold (fsub (fneg (fmul, x, y)), z) -> (fma (fneg x), y, (fneg z))
Stephen Lin155615d2013-07-08 00:37:03 +00006253 if (N0.getOpcode() == ISD::FNEG &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006254 N0.getOperand(0).getOpcode() == ISD::FMUL &&
6255 N0->hasOneUse() && N0.getOperand(0).hasOneUse()) {
6256 SDValue N00 = N0.getOperand(0).getOperand(0);
6257 SDValue N01 = N0.getOperand(0).getOperand(1);
6258 return DAG.getNode(ISD::FMA, dl, VT,
6259 DAG.getNode(ISD::FNEG, dl, VT, N00), N01,
6260 DAG.getNode(ISD::FNEG, dl, VT, N1));
6261 }
Lang Hamesd693caf2012-06-19 22:51:23 +00006262 }
6263
Dan Gohman475871a2008-07-27 21:46:04 +00006264 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006265}
6266
Dan Gohman475871a2008-07-27 21:46:04 +00006267SDValue DAGCombiner::visitFMUL(SDNode *N) {
6268 SDValue N0 = N->getOperand(0);
6269 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00006270 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6271 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006272 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006273 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006274
Dan Gohman7f321562007-06-25 16:23:39 +00006275 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006276 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006277 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006278 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006279 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006280
Nate Begeman11af4ea2005-10-17 20:40:11 +00006281 // fold (fmul c1, c2) -> c1*c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006282 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006283 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00006284 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00006285 if (N0CFP && !N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006286 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N1, N0);
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006287 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006288 if (DAG.getTarget().Options.UnsafeFPMath &&
6289 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00006290 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00006291 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006292 if (DAG.getTarget().Options.UnsafeFPMath &&
6293 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00006294 return N1;
Owen Anderson363e4b92012-05-02 21:32:35 +00006295 // fold (fmul A, 1.0) -> A
6296 if (N1CFP && N1CFP->isExactlyValue(1.0))
6297 return N0;
Nate Begeman11af4ea2005-10-17 20:40:11 +00006298 // fold (fmul X, 2.0) -> (fadd X, X)
6299 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006300 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00006301 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00006302 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00006303 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006304 return DAG.getNode(ISD::FNEG, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006305
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006306 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006307 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006308 &DAG.getTarget().Options)) {
Stephen Lin155615d2013-07-08 00:37:03 +00006309 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006310 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006311 // Both can be negated for free, check to see if at least one is cheaper
6312 // negated.
6313 if (LHSNeg == 2 || RHSNeg == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006314 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006315 GetNegatedExpression(N0, DAG, LegalOperations),
6316 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006317 }
6318 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006319
Chris Lattnerddae4bd2007-01-08 23:04:05 +00006320 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006321 if (DAG.getTarget().Options.UnsafeFPMath &&
6322 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006323 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006324 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0.getOperand(0),
6325 DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Dale Johannesende064702009-02-06 21:50:26 +00006326 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006327
Dan Gohman475871a2008-07-27 21:46:04 +00006328 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006329}
6330
Owen Anderson062c0a52012-05-02 22:17:40 +00006331SDValue DAGCombiner::visitFMA(SDNode *N) {
6332 SDValue N0 = N->getOperand(0);
6333 SDValue N1 = N->getOperand(1);
6334 SDValue N2 = N->getOperand(2);
6335 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6336 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6337 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006338 SDLoc dl(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00006339
Owen Anderson607ebde2012-11-01 02:00:53 +00006340 if (DAG.getTarget().Options.UnsafeFPMath) {
6341 if (N0CFP && N0CFP->isZero())
6342 return N2;
6343 if (N1CFP && N1CFP->isZero())
6344 return N2;
6345 }
Owen Anderson062c0a52012-05-02 22:17:40 +00006346 if (N0CFP && N0CFP->isExactlyValue(1.0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006347 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N1, N2);
Owen Anderson062c0a52012-05-02 22:17:40 +00006348 if (N1CFP && N1CFP->isExactlyValue(1.0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006349 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N2);
Owen Anderson062c0a52012-05-02 22:17:40 +00006350
Owen Anderson85ef6f42012-05-30 18:50:39 +00006351 // Canonicalize (fma c, x, y) -> (fma x, c, y)
Owen Andersonf917d202012-05-30 18:54:50 +00006352 if (N0CFP && !N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006353 return DAG.getNode(ISD::FMA, SDLoc(N), VT, N1, N0, N2);
Owen Anderson85ef6f42012-05-30 18:50:39 +00006354
Owen Anderson58d57292012-09-01 06:04:27 +00006355 // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2)
6356 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6357 N2.getOpcode() == ISD::FMUL &&
6358 N0 == N2.getOperand(0) &&
6359 N2.getOperand(1).getOpcode() == ISD::ConstantFP) {
6360 return DAG.getNode(ISD::FMUL, dl, VT, N0,
6361 DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1)));
6362 }
6363
6364
6365 // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y)
6366 if (DAG.getTarget().Options.UnsafeFPMath &&
6367 N0.getOpcode() == ISD::FMUL && N1CFP &&
6368 N0.getOperand(1).getOpcode() == ISD::ConstantFP) {
6369 return DAG.getNode(ISD::FMA, dl, VT,
6370 N0.getOperand(0),
6371 DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)),
6372 N2);
6373 }
6374
6375 // (fma x, 1, y) -> (fadd x, y)
6376 // (fma x, -1, y) -> (fadd (fneg x), y)
6377 if (N1CFP) {
6378 if (N1CFP->isExactlyValue(1.0))
6379 return DAG.getNode(ISD::FADD, dl, VT, N0, N2);
6380
6381 if (N1CFP->isExactlyValue(-1.0) &&
6382 (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) {
6383 SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0);
6384 AddToWorkList(RHSNeg.getNode());
6385 return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg);
6386 }
6387 }
6388
6389 // (fma x, c, x) -> (fmul x, (c+1))
Stephen Linb4940152013-07-09 00:44:49 +00006390 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2)
6391 return DAG.getNode(ISD::FMUL, dl, VT, N0,
Owen Anderson58d57292012-09-01 06:04:27 +00006392 DAG.getNode(ISD::FADD, dl, VT,
6393 N1, DAG.getConstantFP(1.0, VT)));
Owen Anderson58d57292012-09-01 06:04:27 +00006394
6395 // (fma x, c, (fneg x)) -> (fmul x, (c-1))
6396 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
Stephen Linb4940152013-07-09 00:44:49 +00006397 N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0)
6398 return DAG.getNode(ISD::FMUL, dl, VT, N0,
Owen Anderson58d57292012-09-01 06:04:27 +00006399 DAG.getNode(ISD::FADD, dl, VT,
6400 N1, DAG.getConstantFP(-1.0, VT)));
Owen Anderson58d57292012-09-01 06:04:27 +00006401
6402
Owen Anderson062c0a52012-05-02 22:17:40 +00006403 return SDValue();
6404}
6405
Dan Gohman475871a2008-07-27 21:46:04 +00006406SDValue DAGCombiner::visitFDIV(SDNode *N) {
6407 SDValue N0 = N->getOperand(0);
6408 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006409 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6410 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006411 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006412 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006413
Dan Gohman7f321562007-06-25 16:23:39 +00006414 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006415 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006416 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006417 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006418 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006419
Nate Begemana148d982006-01-18 22:35:16 +00006420 // fold (fdiv c1, c2) -> c1/c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006421 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006422 return DAG.getNode(ISD::FDIV, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006423
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00006424 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
Ulrich Weigande669c932012-10-29 18:35:49 +00006425 if (N1CFP && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00006426 // Compute the reciprocal 1.0 / c2.
6427 APFloat N1APF = N1CFP->getValueAPF();
6428 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
6429 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00006430 // Only do the transform if the reciprocal is a legal fp immediate that
6431 // isn't too nasty (eg NaN, denormal, ...).
6432 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00006433 (!LegalOperations ||
6434 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
6435 // backend)... we should handle this gracefully after Legalize.
6436 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
6437 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
6438 TLI.isFPImmLegal(Recip, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006439 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0,
Duncan Sands961d6662012-04-07 20:04:00 +00006440 DAG.getConstantFP(Recip, VT));
6441 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006442
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006443 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006444 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006445 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006446 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006447 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006448 // Both can be negated for free, check to see if at least one is cheaper
6449 // negated.
6450 if (LHSNeg == 2 || RHSNeg == 2)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006451 return DAG.getNode(ISD::FDIV, SDLoc(N), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006452 GetNegatedExpression(N0, DAG, LegalOperations),
6453 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006454 }
6455 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006456
Dan Gohman475871a2008-07-27 21:46:04 +00006457 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006458}
6459
Dan Gohman475871a2008-07-27 21:46:04 +00006460SDValue DAGCombiner::visitFREM(SDNode *N) {
6461 SDValue N0 = N->getOperand(0);
6462 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006463 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6464 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006465 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00006466
Nate Begemana148d982006-01-18 22:35:16 +00006467 // fold (frem c1, c2) -> fmod(c1,c2)
Ulrich Weigande669c932012-10-29 18:35:49 +00006468 if (N0CFP && N1CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006469 return DAG.getNode(ISD::FREM, SDLoc(N), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00006470
Dan Gohman475871a2008-07-27 21:46:04 +00006471 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006472}
6473
Dan Gohman475871a2008-07-27 21:46:04 +00006474SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
6475 SDValue N0 = N->getOperand(0);
6476 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00006477 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6478 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006479 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00006480
Ulrich Weigande669c932012-10-29 18:35:49 +00006481 if (N0CFP && N1CFP) // Constant fold
Andrew Trickac6d9be2013-05-25 02:42:55 +00006482 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006483
Chris Lattner12d83032006-03-05 05:30:57 +00006484 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00006485 const APFloat& V = N1CFP->getValueAPF();
Sylvestre Ledru94c22712012-09-27 10:14:43 +00006486 // copysign(x, c1) -> fabs(x) iff ispos(c1)
6487 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00006488 if (!V.isNegative()) {
6489 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006490 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00006491 } else {
6492 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006493 return DAG.getNode(ISD::FNEG, SDLoc(N), VT,
6494 DAG.getNode(ISD::FABS, SDLoc(N0), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00006495 }
Chris Lattner12d83032006-03-05 05:30:57 +00006496 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006497
Chris Lattner12d83032006-03-05 05:30:57 +00006498 // copysign(fabs(x), y) -> copysign(x, y)
6499 // copysign(fneg(x), y) -> copysign(x, y)
6500 // copysign(copysign(x,z), y) -> copysign(x, y)
6501 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
6502 N0.getOpcode() == ISD::FCOPYSIGN)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006503 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006504 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00006505
6506 // copysign(x, abs(y)) -> abs(x)
6507 if (N1.getOpcode() == ISD::FABS)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006508 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006509
Chris Lattner12d83032006-03-05 05:30:57 +00006510 // copysign(x, copysign(y,z)) -> copysign(x, z)
6511 if (N1.getOpcode() == ISD::FCOPYSIGN)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006512 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006513 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006514
Chris Lattner12d83032006-03-05 05:30:57 +00006515 // copysign(x, fp_extend(y)) -> copysign(x, y)
6516 // copysign(x, fp_round(y)) -> copysign(x, y)
6517 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006518 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006519 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006520
Dan Gohman475871a2008-07-27 21:46:04 +00006521 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00006522}
6523
Dan Gohman475871a2008-07-27 21:46:04 +00006524SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
6525 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006526 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006527 EVT VT = N->getValueType(0);
6528 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00006529
Nate Begeman1d4d4142005-09-01 00:19:25 +00006530 // fold (sint_to_fp c1) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006531 if (N0C &&
Stuart Hastings7e334182011-03-02 19:36:30 +00006532 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006533 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006534 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006535 return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006536
Chris Lattnercda88752008-06-26 00:16:49 +00006537 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
6538 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006539 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
6540 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006541 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006542 if (DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006543 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006544 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006545
Nadav Rotemed1a3352012-07-23 07:59:50 +00006546 // The next optimizations are desireable only if SELECT_CC can be lowered.
6547 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6548 // having to say they don't support SELECT_CC on every type the DAG knows
6549 // about, since there is no way to mark an opcode illegal at all value types
6550 // (See also visitSELECT)
6551 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6552 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6553 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 &&
6554 !VT.isVector() &&
6555 (!LegalOperations ||
6556 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6557 SDValue Ops[] =
6558 { N0.getOperand(0), N0.getOperand(1),
6559 DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT),
6560 N0.getOperand(2) };
Andrew Trickac6d9be2013-05-25 02:42:55 +00006561 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
Nadav Rotemed1a3352012-07-23 07:59:50 +00006562 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006563
Nadav Rotemed1a3352012-07-23 07:59:50 +00006564 // fold (sint_to_fp (zext (setcc x, y, cc))) ->
6565 // (select_cc x, y, 1.0, 0.0,, cc)
6566 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
6567 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() &&
6568 (!LegalOperations ||
6569 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6570 SDValue Ops[] =
6571 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1),
6572 DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT),
6573 N0.getOperand(0).getOperand(2) };
Andrew Trickac6d9be2013-05-25 02:42:55 +00006574 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
Nadav Rotemed1a3352012-07-23 07:59:50 +00006575 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006576 }
6577
Dan Gohman475871a2008-07-27 21:46:04 +00006578 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006579}
6580
Dan Gohman475871a2008-07-27 21:46:04 +00006581SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
6582 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006583 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006584 EVT VT = N->getValueType(0);
6585 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00006586
Nate Begeman1d4d4142005-09-01 00:19:25 +00006587 // fold (uint_to_fp c1) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006588 if (N0C &&
Stuart Hastings7e334182011-03-02 19:36:30 +00006589 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006590 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006591 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006592 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006593
Chris Lattnercda88752008-06-26 00:16:49 +00006594 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6595 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006596 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6597 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006598 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006599 if (DAG.SignBitIsZero(N0))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006600 return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006601 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006602
Nadav Rotemed1a3352012-07-23 07:59:50 +00006603 // The next optimizations are desireable only if SELECT_CC can be lowered.
6604 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6605 // having to say they don't support SELECT_CC on every type the DAG knows
6606 // about, since there is no way to mark an opcode illegal at all value types
6607 // (See also visitSELECT)
6608 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6609 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
Owen Andersond9bf71f2012-07-09 20:31:12 +00006610
Nadav Rotemed1a3352012-07-23 07:59:50 +00006611 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() &&
6612 (!LegalOperations ||
6613 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6614 SDValue Ops[] =
6615 { N0.getOperand(0), N0.getOperand(1),
6616 DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT),
6617 N0.getOperand(2) };
Andrew Trickac6d9be2013-05-25 02:42:55 +00006618 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
Nadav Rotemed1a3352012-07-23 07:59:50 +00006619 }
6620 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006621
Dan Gohman475871a2008-07-27 21:46:04 +00006622 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006623}
6624
Dan Gohman475871a2008-07-27 21:46:04 +00006625SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
6626 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006627 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006628 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006629
Nate Begeman1d4d4142005-09-01 00:19:25 +00006630 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00006631 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006632 return DAG.getNode(ISD::FP_TO_SINT, SDLoc(N), VT, N0);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006633
Dan Gohman475871a2008-07-27 21:46:04 +00006634 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006635}
6636
Dan Gohman475871a2008-07-27 21:46:04 +00006637SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
6638 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006639 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006640 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006641
Nate Begeman1d4d4142005-09-01 00:19:25 +00006642 // fold (fp_to_uint c1fp) -> c1
Ulrich Weigande669c932012-10-29 18:35:49 +00006643 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006644 return DAG.getNode(ISD::FP_TO_UINT, SDLoc(N), VT, N0);
Bill Wendling0225a1d2009-01-30 23:15:49 +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(SDNode *N) {
6650 SDValue N0 = N->getOperand(0);
6651 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006652 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006653 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006654
Nate Begeman1d4d4142005-09-01 00:19:25 +00006655 // fold (fp_round c1fp) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006656 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006657 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006658
Chris Lattner79dbea52006-03-13 06:26:26 +00006659 // fold (fp_round (fp_extend x)) -> x
6660 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
6661 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006662
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006663 // fold (fp_round (fp_round x)) -> (fp_round x)
6664 if (N0.getOpcode() == ISD::FP_ROUND) {
6665 // This is a value preserving truncation if both round's are.
6666 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006667 N0.getNode()->getConstantOperandVal(1) == 1;
Andrew Trickac6d9be2013-05-25 02:42:55 +00006668 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006669 DAG.getIntPtrConstant(IsTrunc));
6670 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006671
Chris Lattner79dbea52006-03-13 06:26:26 +00006672 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00006673 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006674 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, SDLoc(N0), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006675 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00006676 AddToWorkList(Tmp.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006677 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006678 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00006679 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006680
Dan Gohman475871a2008-07-27 21:46:04 +00006681 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006682}
6683
Dan Gohman475871a2008-07-27 21:46:04 +00006684SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6685 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006686 EVT VT = N->getValueType(0);
6687 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00006688 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006689
Nate Begeman1d4d4142005-09-01 00:19:25 +00006690 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00006691 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00006692 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006693 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006694 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006695
Dan Gohman475871a2008-07-27 21:46:04 +00006696 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006697}
6698
Dan Gohman475871a2008-07-27 21:46:04 +00006699SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6700 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006701 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006702 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006703
Chris Lattner5938bef2007-12-29 06:55:23 +00006704 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00006705 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00006706 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00006707 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006708
Nate Begeman1d4d4142005-09-01 00:19:25 +00006709 // fold (fp_extend c1fp) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006710 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006711 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006712
6713 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6714 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006715 if (N0.getOpcode() == ISD::FP_ROUND
6716 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006717 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006718 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006719 if (VT.bitsLT(In.getValueType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +00006720 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006721 In, N0.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +00006722 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006723 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006724
Chris Lattner0bd48932008-01-17 07:00:52 +00006725 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006726 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006727 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006728 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006729 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006730 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006731 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006732 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006733 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006734 LN0->isVolatile(), LN0->isNonTemporal(),
6735 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006736 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006737 CombineTo(N0.getNode(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00006738 DAG.getNode(ISD::FP_ROUND, SDLoc(N0),
Bill Wendling0225a1d2009-01-30 23:15:49 +00006739 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006740 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006741 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006742 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006743
Dan Gohman475871a2008-07-27 21:46:04 +00006744 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006745}
6746
Dan Gohman475871a2008-07-27 21:46:04 +00006747SDValue DAGCombiner::visitFNEG(SDNode *N) {
6748 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006749 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006750
Craig Topperdd201ff2012-09-11 01:45:21 +00006751 if (VT.isVector()) {
6752 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6753 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper956342b2012-09-09 22:58:45 +00006754 }
6755
Owen Andersonafd3d562012-03-06 00:29:31 +00006756 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6757 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006758 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006759
Chris Lattner3bd39d42008-01-27 17:42:27 +00006760 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6761 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006762 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006763 !VT.isVector() &&
6764 N0.getNode()->hasOneUse() &&
6765 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006766 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006767 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006768 if (IntVT.isInteger() && !IntVT.isVector()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006769 Int = DAG.getNode(ISD::XOR, SDLoc(N0), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006770 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006771 AddToWorkList(Int.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006772 return DAG.getNode(ISD::BITCAST, SDLoc(N),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006773 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006774 }
6775 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006776
Owen Anderson58d57292012-09-01 06:04:27 +00006777 // (fneg (fmul c, x)) -> (fmul -c, x)
6778 if (N0.getOpcode() == ISD::FMUL) {
6779 ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
Stephen Linb4940152013-07-09 00:44:49 +00006780 if (CFP1)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006781 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson58d57292012-09-01 06:04:27 +00006782 N0.getOperand(0),
Andrew Trickac6d9be2013-05-25 02:42:55 +00006783 DAG.getNode(ISD::FNEG, SDLoc(N), VT,
Owen Anderson58d57292012-09-01 06:04:27 +00006784 N0.getOperand(1)));
Owen Anderson58d57292012-09-01 06:04:27 +00006785 }
6786
Dan Gohman475871a2008-07-27 21:46:04 +00006787 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006788}
6789
Owen Anderson7c626d32012-08-13 23:32:49 +00006790SDValue DAGCombiner::visitFCEIL(SDNode *N) {
6791 SDValue N0 = N->getOperand(0);
6792 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6793 EVT VT = N->getValueType(0);
6794
6795 // fold (fceil c1) -> fceil(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006796 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006797 return DAG.getNode(ISD::FCEIL, SDLoc(N), VT, N0);
Owen Anderson7c626d32012-08-13 23:32:49 +00006798
6799 return SDValue();
6800}
6801
6802SDValue DAGCombiner::visitFTRUNC(SDNode *N) {
6803 SDValue N0 = N->getOperand(0);
6804 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6805 EVT VT = N->getValueType(0);
6806
6807 // fold (ftrunc c1) -> ftrunc(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006808 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006809 return DAG.getNode(ISD::FTRUNC, SDLoc(N), VT, N0);
Owen Anderson7c626d32012-08-13 23:32:49 +00006810
6811 return SDValue();
6812}
6813
6814SDValue DAGCombiner::visitFFLOOR(SDNode *N) {
6815 SDValue N0 = N->getOperand(0);
6816 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6817 EVT VT = N->getValueType(0);
6818
6819 // fold (ffloor c1) -> ffloor(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006820 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006821 return DAG.getNode(ISD::FFLOOR, SDLoc(N), VT, N0);
Owen Anderson7c626d32012-08-13 23:32:49 +00006822
6823 return SDValue();
6824}
6825
Dan Gohman475871a2008-07-27 21:46:04 +00006826SDValue DAGCombiner::visitFABS(SDNode *N) {
6827 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006828 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006829 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006830
Craig Topperdd201ff2012-09-11 01:45:21 +00006831 if (VT.isVector()) {
6832 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6833 if (FoldedVOp.getNode()) return FoldedVOp;
6834 }
6835
Nate Begeman1d4d4142005-09-01 00:19:25 +00006836 // fold (fabs c1) -> fabs(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006837 if (N0CFP)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006838 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006839 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006840 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006841 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006842 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006843 // fold (fabs (fcopysign x, y)) -> (fabs x)
6844 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Andrew Trickac6d9be2013-05-25 02:42:55 +00006845 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006846
Chris Lattner3bd39d42008-01-27 17:42:27 +00006847 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6848 // constant pool values.
Stephen Lin155615d2013-07-08 00:37:03 +00006849 if (!TLI.isFAbsFree(VT) &&
Owen Anderson29f60f32012-04-02 22:10:29 +00006850 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006851 N0.getOperand(0).getValueType().isInteger() &&
6852 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006853 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006854 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006855 if (IntVT.isInteger() && !IntVT.isVector()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006856 Int = DAG.getNode(ISD::AND, SDLoc(N0), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006857 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006858 AddToWorkList(Int.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006859 return DAG.getNode(ISD::BITCAST, SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006860 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006861 }
6862 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006863
Dan Gohman475871a2008-07-27 21:46:04 +00006864 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006865}
6866
Dan Gohman475871a2008-07-27 21:46:04 +00006867SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6868 SDValue Chain = N->getOperand(0);
6869 SDValue N1 = N->getOperand(1);
6870 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006871
Dan Gohmane0f06c72009-11-17 00:47:23 +00006872 // If N is a constant we could fold this into a fallthrough or unconditional
6873 // branch. However that doesn't happen very often in normal code, because
6874 // Instcombine/SimplifyCFG should have handled the available opportunities.
6875 // If we did this folding here, it would be necessary to update the
6876 // MachineBasicBlock CFG, which is awkward.
6877
Nate Begeman750ac1b2006-02-01 07:19:44 +00006878 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6879 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006880 if (N1.getOpcode() == ISD::SETCC &&
Tom Stellard3ef53832013-03-08 15:36:57 +00006881 TLI.isOperationLegalOrCustom(ISD::BR_CC,
6882 N1.getOperand(0).getValueType())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006883 return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006884 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006885 N1.getOperand(0), N1.getOperand(1), N2);
6886 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006887
Evan Cheng2a135ae2010-10-04 22:41:01 +00006888 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6889 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6890 (N1.getOperand(0).hasOneUse() &&
6891 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6892 SDNode *Trunc = 0;
6893 if (N1.getOpcode() == ISD::TRUNCATE) {
6894 // Look pass the truncate.
6895 Trunc = N1.getNode();
6896 N1 = N1.getOperand(0);
6897 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006898
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006899 // Match this pattern so that we can generate simpler code:
6900 //
6901 // %a = ...
6902 // %b = and i32 %a, 2
6903 // %c = srl i32 %b, 1
6904 // brcond i32 %c ...
6905 //
6906 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006907 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006908 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006909 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006910 // %c = setcc eq %b, 0
6911 // brcond %c ...
6912 //
6913 // This applies only when the AND constant value has one bit set and the
6914 // SRL constant is equal to the log2 of the AND constant. The back-end is
6915 // smart enough to convert the result into a TEST/JMP sequence.
6916 SDValue Op0 = N1.getOperand(0);
6917 SDValue Op1 = N1.getOperand(1);
6918
6919 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006920 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006921 SDValue AndOp1 = Op0.getOperand(1);
6922
6923 if (AndOp1.getOpcode() == ISD::Constant) {
6924 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6925
6926 if (AndConst.isPowerOf2() &&
6927 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6928 SDValue SetCC =
Andrew Trickac6d9be2013-05-25 02:42:55 +00006929 DAG.getSetCC(SDLoc(N),
Matt Arsenault225ed702013-05-18 00:21:46 +00006930 getSetCCResultType(Op0.getValueType()),
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006931 Op0, DAG.getConstant(0, Op0.getValueType()),
6932 ISD::SETNE);
6933
Andrew Trickac6d9be2013-05-25 02:42:55 +00006934 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, SDLoc(N),
Evan Chengd40d03e2010-01-06 19:38:29 +00006935 MVT::Other, Chain, SetCC, N2);
6936 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6937 // will convert it back to (X & C1) >> C2.
6938 CombineTo(N, NewBRCond, false);
6939 // Truncate is dead.
6940 if (Trunc) {
6941 removeFromWorkList(Trunc);
6942 DAG.DeleteNode(Trunc);
6943 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006944 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006945 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006946 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006947 removeFromWorkList(N1.getNode());
6948 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006949 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006950 }
6951 }
6952 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006953
6954 if (Trunc)
6955 // Restore N1 if the above transformation doesn't match.
6956 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006957 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006958
Evan Cheng2c755ba2010-02-27 07:36:59 +00006959 // Transform br(xor(x, y)) -> br(x != y)
6960 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6961 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6962 SDNode *TheXor = N1.getNode();
6963 SDValue Op0 = TheXor->getOperand(0);
6964 SDValue Op1 = TheXor->getOperand(1);
6965 if (Op0.getOpcode() == Op1.getOpcode()) {
6966 // Avoid missing important xor optimizations.
6967 SDValue Tmp = visitXOR(TheXor);
Evan Cheng78ec0252013-01-09 20:56:40 +00006968 if (Tmp.getNode()) {
6969 if (Tmp.getNode() != TheXor) {
6970 DEBUG(dbgs() << "\nReplacing.8 ";
6971 TheXor->dump(&DAG);
6972 dbgs() << "\nWith: ";
6973 Tmp.getNode()->dump(&DAG);
6974 dbgs() << '\n');
6975 WorkListRemover DeadNodes(*this);
6976 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
6977 removeFromWorkList(TheXor);
6978 DAG.DeleteNode(TheXor);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006979 return DAG.getNode(ISD::BRCOND, SDLoc(N),
Evan Cheng78ec0252013-01-09 20:56:40 +00006980 MVT::Other, Chain, Tmp, N2);
6981 }
6982
Benjamin Kramer0b68b752013-03-30 21:28:18 +00006983 // visitXOR has changed XOR's operands or replaced the XOR completely,
6984 // bail out.
6985 return SDValue(N, 0);
Evan Cheng2c755ba2010-02-27 07:36:59 +00006986 }
6987 }
6988
6989 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6990 bool Equal = false;
6991 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6992 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6993 Op0.getOpcode() == ISD::XOR) {
6994 TheXor = Op0.getNode();
6995 Equal = true;
6996 }
6997
Evan Cheng2a135ae2010-10-04 22:41:01 +00006998 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006999 if (LegalTypes)
Matt Arsenault225ed702013-05-18 00:21:46 +00007000 SetCCVT = getSetCCResultType(SetCCVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007001 SDValue SetCC = DAG.getSetCC(SDLoc(TheXor),
Evan Cheng2c755ba2010-02-27 07:36:59 +00007002 SetCCVT,
7003 Op0, Op1,
7004 Equal ? ISD::SETEQ : ISD::SETNE);
7005 // Replace the uses of XOR with SETCC
7006 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007007 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Cheng2a135ae2010-10-04 22:41:01 +00007008 removeFromWorkList(N1.getNode());
7009 DAG.DeleteNode(N1.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00007010 return DAG.getNode(ISD::BRCOND, SDLoc(N),
Evan Cheng2c755ba2010-02-27 07:36:59 +00007011 MVT::Other, Chain, SetCC, N2);
7012 }
7013 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00007014
Dan Gohman475871a2008-07-27 21:46:04 +00007015 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00007016}
7017
Chris Lattner3ea0b472005-10-05 06:47:48 +00007018// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
7019//
Dan Gohman475871a2008-07-27 21:46:04 +00007020SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00007021 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00007022 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00007023
Dan Gohmane0f06c72009-11-17 00:47:23 +00007024 // If N is a constant we could fold this into a fallthrough or unconditional
7025 // branch. However that doesn't happen very often in normal code, because
7026 // Instcombine/SimplifyCFG should have handled the available opportunities.
7027 // If we did this folding here, it would be necessary to update the
7028 // MachineBasicBlock CFG, which is awkward.
7029
Duncan Sands8eab8a22008-06-09 11:32:28 +00007030 // Use SimplifySetCC to simplify SETCC's.
Matt Arsenault225ed702013-05-18 00:21:46 +00007031 SDValue Simp = SimplifySetCC(getSetCCResultType(CondLHS.getValueType()),
Andrew Trickac6d9be2013-05-25 02:42:55 +00007032 CondLHS, CondRHS, CC->get(), SDLoc(N),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00007033 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00007034 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00007035
Nate Begemane17daeb2005-10-05 21:43:42 +00007036 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00007037 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Andrew Trickac6d9be2013-05-25 02:42:55 +00007038 return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00007039 N->getOperand(0), Simp.getOperand(2),
7040 Simp.getOperand(0), Simp.getOperand(1),
7041 N->getOperand(4));
7042
Dan Gohman475871a2008-07-27 21:46:04 +00007043 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00007044}
7045
Evan Chengc4b527a2012-01-13 01:37:24 +00007046/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
7047/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00007048/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00007049static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
7050 SelectionDAG &DAG,
7051 const TargetLowering &TLI) {
7052 EVT VT;
7053 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
7054 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
7055 return false;
7056 VT = Use->getValueType(0);
7057 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
7058 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
7059 return false;
7060 VT = ST->getValue().getValueType();
7061 } else
7062 return false;
7063
Chandler Carruth56d433d2013-01-07 15:14:13 +00007064 TargetLowering::AddrMode AM;
Evan Chengc4b527a2012-01-13 01:37:24 +00007065 if (N->getOpcode() == ISD::ADD) {
7066 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
7067 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00007068 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00007069 AM.BaseOffs = Offset->getSExtValue();
7070 else
Evan Cheng03be3622012-03-06 23:33:32 +00007071 // [reg +/- reg]
7072 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00007073 } else if (N->getOpcode() == ISD::SUB) {
7074 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
7075 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00007076 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00007077 AM.BaseOffs = -Offset->getSExtValue();
7078 else
Evan Cheng03be3622012-03-06 23:33:32 +00007079 // [reg +/- reg]
7080 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00007081 } else
7082 return false;
7083
7084 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
7085}
7086
Duncan Sandsec87aa82008-06-15 20:12:31 +00007087/// CombineToPreIndexedLoadStore - Try turning a load / store into a
7088/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00007089/// and it has other uses besides the load / store. After the
7090/// transformation, the new indexed load / store has effectively folded
7091/// the add / subtract in and all of its other uses are redirected to the
7092/// new load / store.
7093bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00007094 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00007095 return false;
7096
7097 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007098 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00007099 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00007100 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007101 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007102 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007103 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00007104 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00007105 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
7106 return false;
7107 Ptr = LD->getBasePtr();
7108 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007109 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007110 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007111 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00007112 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
7113 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
7114 return false;
7115 Ptr = ST->getBasePtr();
7116 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007117 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00007118 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007119 }
Chris Lattner448f2192006-11-11 00:39:41 +00007120
Chris Lattner9f1794e2006-11-11 00:56:29 +00007121 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
7122 // out. There is no reason to make this a preinc/predec.
7123 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00007124 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00007125 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00007126
Chris Lattner9f1794e2006-11-11 00:56:29 +00007127 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00007128 SDValue BasePtr;
7129 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007130 ISD::MemIndexedMode AM = ISD::UNINDEXED;
7131 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
7132 return false;
Hal Finkel089a5f82013-02-08 21:35:47 +00007133
7134 // Backends without true r+i pre-indexed forms may need to pass a
7135 // constant base with a variable offset so that constant coercion
7136 // will work with the patterns in canonical form.
7137 bool Swapped = false;
7138 if (isa<ConstantSDNode>(BasePtr)) {
7139 std::swap(BasePtr, Offset);
7140 Swapped = true;
7141 }
7142
Evan Chenga7d4a042007-05-03 23:52:19 +00007143 // Don't create a indexed load / store with zero offset.
7144 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00007145 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00007146 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007147
Chris Lattner41e53fd2006-11-11 01:00:15 +00007148 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00007149 // 1) The new base ptr is a frame index.
7150 // 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 +00007151 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00007152 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00007153 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00007154 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00007155
Chris Lattner41e53fd2006-11-11 01:00:15 +00007156 // Check #1. Preinc'ing a frame index would require copying the stack pointer
7157 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00007158 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00007159 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007160
Chris Lattner41e53fd2006-11-11 01:00:15 +00007161 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00007162 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00007163 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007164 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007165 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00007166 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007167
Hal Finkel089a5f82013-02-08 21:35:47 +00007168 // If the offset is a constant, there may be other adds of constants that
7169 // can be folded with this one. We should do this to avoid having to keep
7170 // a copy of the original base pointer.
7171 SmallVector<SDNode *, 16> OtherUses;
7172 if (isa<ConstantSDNode>(Offset))
7173 for (SDNode::use_iterator I = BasePtr.getNode()->use_begin(),
7174 E = BasePtr.getNode()->use_end(); I != E; ++I) {
7175 SDNode *Use = *I;
7176 if (Use == Ptr.getNode())
7177 continue;
7178
7179 if (Use->isPredecessorOf(N))
7180 continue;
7181
7182 if (Use->getOpcode() != ISD::ADD && Use->getOpcode() != ISD::SUB) {
7183 OtherUses.clear();
7184 break;
7185 }
7186
7187 SDValue Op0 = Use->getOperand(0), Op1 = Use->getOperand(1);
7188 if (Op1.getNode() == BasePtr.getNode())
7189 std::swap(Op0, Op1);
7190 assert(Op0.getNode() == BasePtr.getNode() &&
7191 "Use of ADD/SUB but not an operand");
7192
7193 if (!isa<ConstantSDNode>(Op1)) {
7194 OtherUses.clear();
7195 break;
7196 }
7197
7198 // FIXME: In some cases, we can be smarter about this.
7199 if (Op1.getValueType() != Offset.getValueType()) {
7200 OtherUses.clear();
7201 break;
7202 }
7203
7204 OtherUses.push_back(Use);
7205 }
7206
7207 if (Swapped)
7208 std::swap(BasePtr, Offset);
7209
Evan Chengc843abe2007-05-24 02:35:39 +00007210 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00007211 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00007212
7213 // Caches for hasPredecessorHelper
7214 SmallPtrSet<const SDNode *, 32> Visited;
7215 SmallVector<const SDNode *, 16> Worklist;
7216
Gabor Greifba36cb52008-08-28 21:40:38 +00007217 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7218 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00007219 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007220 if (Use == N)
7221 continue;
Lang Hames944520f2011-07-07 04:31:51 +00007222 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007223 return false;
7224
Evan Chengc4b527a2012-01-13 01:37:24 +00007225 // If Ptr may be folded in addressing mode of other use, then it's
7226 // not profitable to do this transformation.
7227 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007228 RealUse = true;
7229 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007230
Chris Lattner9f1794e2006-11-11 00:56:29 +00007231 if (!RealUse)
7232 return false;
7233
Dan Gohman475871a2008-07-27 21:46:04 +00007234 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007235 if (isLoad)
Andrew Trickac6d9be2013-05-25 02:42:55 +00007236 Result = DAG.getIndexedLoad(SDValue(N,0), SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00007237 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007238 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00007239 Result = DAG.getIndexedStore(SDValue(N,0), SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00007240 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007241 ++PreIndexedNodes;
7242 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00007243 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007244 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007245 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007246 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007247 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007248 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007249 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007250 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7251 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007252 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007253 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007254 }
7255
Chris Lattner9f1794e2006-11-11 00:56:29 +00007256 // Finally, since the node is now dead, remove it from the graph.
7257 DAG.DeleteNode(N);
7258
Hal Finkel089a5f82013-02-08 21:35:47 +00007259 if (Swapped)
7260 std::swap(BasePtr, Offset);
7261
7262 // Replace other uses of BasePtr that can be updated to use Ptr
7263 for (unsigned i = 0, e = OtherUses.size(); i != e; ++i) {
7264 unsigned OffsetIdx = 1;
7265 if (OtherUses[i]->getOperand(OffsetIdx).getNode() == BasePtr.getNode())
7266 OffsetIdx = 0;
7267 assert(OtherUses[i]->getOperand(!OffsetIdx).getNode() ==
7268 BasePtr.getNode() && "Expected BasePtr operand");
7269
Silviu Baranga730a5702013-04-26 15:52:24 +00007270 // We need to replace ptr0 in the following expression:
7271 // x0 * offset0 + y0 * ptr0 = t0
7272 // knowing that
7273 // x1 * offset1 + y1 * ptr0 = t1 (the indexed load/store)
Stephen Lin155615d2013-07-08 00:37:03 +00007274 //
Silviu Baranga730a5702013-04-26 15:52:24 +00007275 // where x0, x1, y0 and y1 in {-1, 1} are given by the types of the
7276 // indexed load/store and the expresion that needs to be re-written.
7277 //
7278 // Therefore, we have:
7279 // t0 = (x0 * offset0 - x1 * y0 * y1 *offset1) + (y0 * y1) * t1
Hal Finkel089a5f82013-02-08 21:35:47 +00007280
7281 ConstantSDNode *CN =
7282 cast<ConstantSDNode>(OtherUses[i]->getOperand(OffsetIdx));
Silviu Baranga730a5702013-04-26 15:52:24 +00007283 int X0, X1, Y0, Y1;
7284 APInt Offset0 = CN->getAPIntValue();
7285 APInt Offset1 = cast<ConstantSDNode>(Offset)->getAPIntValue();
Hal Finkel089a5f82013-02-08 21:35:47 +00007286
Silviu Baranga730a5702013-04-26 15:52:24 +00007287 X0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 1) ? -1 : 1;
7288 Y0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 0) ? -1 : 1;
7289 X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1;
7290 Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1;
Hal Finkel089a5f82013-02-08 21:35:47 +00007291
Silviu Baranga730a5702013-04-26 15:52:24 +00007292 unsigned Opcode = (Y0 * Y1 < 0) ? ISD::SUB : ISD::ADD;
7293
7294 APInt CNV = Offset0;
7295 if (X0 < 0) CNV = -CNV;
7296 if (X1 * Y0 * Y1 < 0) CNV = CNV + Offset1;
7297 else CNV = CNV - Offset1;
7298
7299 // We can now generate the new expression.
7300 SDValue NewOp1 = DAG.getConstant(CNV, CN->getValueType(0));
7301 SDValue NewOp2 = Result.getValue(isLoad ? 1 : 0);
7302
7303 SDValue NewUse = DAG.getNode(Opcode,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007304 SDLoc(OtherUses[i]),
Hal Finkel089a5f82013-02-08 21:35:47 +00007305 OtherUses[i]->getValueType(0), NewOp1, NewOp2);
7306 DAG.ReplaceAllUsesOfValueWith(SDValue(OtherUses[i], 0), NewUse);
7307 removeFromWorkList(OtherUses[i]);
7308 DAG.DeleteNode(OtherUses[i]);
7309 }
7310
Chris Lattner9f1794e2006-11-11 00:56:29 +00007311 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007312 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greifba36cb52008-08-28 21:40:38 +00007313 removeFromWorkList(Ptr.getNode());
7314 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00007315
7316 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00007317}
7318
Duncan Sandsec87aa82008-06-15 20:12:31 +00007319/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00007320/// add / sub of the base pointer node into a post-indexed load / store.
7321/// The transformation folded the add / subtract into the new indexed
7322/// load / store effectively and all of its uses are redirected to the
7323/// new load / store.
7324bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00007325 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00007326 return false;
7327
7328 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007329 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00007330 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00007331 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007332 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007333 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007334 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00007335 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
7336 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
7337 return false;
7338 Ptr = LD->getBasePtr();
7339 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007340 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007341 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007342 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00007343 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
7344 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
7345 return false;
7346 Ptr = ST->getBasePtr();
7347 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007348 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00007349 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007350 }
Chris Lattner448f2192006-11-11 00:39:41 +00007351
Gabor Greifba36cb52008-08-28 21:40:38 +00007352 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00007353 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007354
Gabor Greifba36cb52008-08-28 21:40:38 +00007355 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7356 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00007357 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007358 if (Op == N ||
7359 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
7360 continue;
7361
Dan Gohman475871a2008-07-27 21:46:04 +00007362 SDValue BasePtr;
7363 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007364 ISD::MemIndexedMode AM = ISD::UNINDEXED;
7365 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00007366 // Don't create a indexed load / store with zero offset.
7367 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00007368 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00007369 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00007370
Chris Lattner9f1794e2006-11-11 00:56:29 +00007371 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00007372 // 1) All uses are load / store ops that use it as base ptr (and
7373 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00007374 // 2) Op must be independent of N, i.e. Op is neither a predecessor
7375 // nor a successor of N. Otherwise, if Op is folded that would
7376 // create a cycle.
7377
Evan Chengcaab1292009-05-06 18:25:01 +00007378 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
7379 continue;
7380
Chris Lattner9f1794e2006-11-11 00:56:29 +00007381 // Check for #1.
7382 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00007383 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
7384 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00007385 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00007386 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00007387 continue;
7388
Chris Lattner9f1794e2006-11-11 00:56:29 +00007389 // If all the uses are load / store addresses, then don't do the
7390 // transformation.
7391 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
7392 bool RealUse = false;
7393 for (SDNode::use_iterator III = Use->use_begin(),
7394 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00007395 SDNode *UseUse = *III;
Stephen Lin155615d2013-07-08 00:37:03 +00007396 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007397 RealUse = true;
7398 }
Chris Lattner448f2192006-11-11 00:39:41 +00007399
Chris Lattner9f1794e2006-11-11 00:56:29 +00007400 if (!RealUse) {
7401 TryNext = true;
7402 break;
Chris Lattner448f2192006-11-11 00:39:41 +00007403 }
7404 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007405 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007406
Chris Lattner9f1794e2006-11-11 00:56:29 +00007407 if (TryNext)
7408 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00007409
Chris Lattner9f1794e2006-11-11 00:56:29 +00007410 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00007411 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00007412 SDValue Result = isLoad
Andrew Trickac6d9be2013-05-25 02:42:55 +00007413 ? DAG.getIndexedLoad(SDValue(N,0), SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00007414 BasePtr, Offset, AM)
Andrew Trickac6d9be2013-05-25 02:42:55 +00007415 : DAG.getIndexedStore(SDValue(N,0), SDLoc(N),
Bill Wendlingc0debad2009-01-30 23:27:35 +00007416 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007417 ++PostIndexedNodes;
7418 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00007419 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007420 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007421 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007422 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007423 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007424 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007425 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007426 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7427 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007428 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007429 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner448f2192006-11-11 00:39:41 +00007430 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007431
Chris Lattner9f1794e2006-11-11 00:56:29 +00007432 // Finally, since the node is now dead, remove it from the graph.
7433 DAG.DeleteNode(N);
7434
7435 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00007436 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007437 Result.getValue(isLoad ? 1 : 0));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007438 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007439 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007440 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00007441 }
7442 }
7443 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007444
Chris Lattner448f2192006-11-11 00:39:41 +00007445 return false;
7446}
7447
Dan Gohman475871a2008-07-27 21:46:04 +00007448SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00007449 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007450 SDValue Chain = LD->getChain();
7451 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007452
Evan Cheng45a7ca92007-05-01 00:38:21 +00007453 // If load is not volatile and there are no uses of the loaded value (and
7454 // the updated indexed value in case of indexed loads), change uses of the
7455 // chain value into uses of the chain input (i.e. delete the dead load).
7456 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007457 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00007458 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00007459 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00007460 // It's not safe to use the two value CombineTo variant here. e.g.
7461 // v1, chain2 = load chain1, loc
7462 // v2, chain3 = load chain2, loc
7463 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00007464 // Now we replace use of chain2 with chain1. This makes the second load
7465 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00007466 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007467 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007468 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007469 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007470 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007471 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007472 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendlingc0debad2009-01-30 23:27:35 +00007473
Chris Lattner125991a2008-01-24 07:57:06 +00007474 if (N->use_empty()) {
7475 removeFromWorkList(N);
7476 DAG.DeleteNode(N);
7477 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007478
Dan Gohman475871a2008-07-27 21:46:04 +00007479 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00007480 }
Evan Cheng498f5592007-05-01 08:53:39 +00007481 } else {
7482 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00007483 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00007484 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007485 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00007486 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007487 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007488 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007489 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007490 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007491 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007492 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman475871a2008-07-27 21:46:04 +00007493 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007494 DAG.getUNDEF(N->getValueType(1)));
7495 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng02c42852008-01-16 23:11:54 +00007496 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00007497 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007498 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00007499 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00007500 }
7501 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007502
Chris Lattner01a22022005-10-10 22:04:48 +00007503 // If this load is directly stored, replace the load value with the stored
7504 // value.
7505 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007506 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00007507 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007508 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007509 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
7510 if (PrevST->getBasePtr() == Ptr &&
7511 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007512 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00007513 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007514 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007515
Evan Cheng255f20f2010-04-01 06:04:33 +00007516 // Try to infer better alignment information than the load already has.
7517 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007518 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
Owen Andersonb48783b2013-02-05 19:24:39 +00007519 if (Align > LD->getMemOperand()->getBaseAlignment()) {
7520 SDValue NewLoad =
Andrew Trickac6d9be2013-05-25 02:42:55 +00007521 DAG.getExtLoad(LD->getExtensionType(), SDLoc(N),
Evan Chenged1c0c72011-11-28 22:37:34 +00007522 LD->getValueType(0),
7523 Chain, Ptr, LD->getPointerInfo(),
7524 LD->getMemoryVT(),
7525 LD->isVolatile(), LD->isNonTemporal(), Align);
Owen Andersonb48783b2013-02-05 19:24:39 +00007526 return CombineTo(N, NewLoad, SDValue(NewLoad.getNode(), 1), true);
7527 }
Evan Cheng255f20f2010-04-01 06:04:33 +00007528 }
7529 }
7530
Hal Finkel253acef2013-08-29 03:29:55 +00007531 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA :
7532 TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
7533 if (UseAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007534 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007535 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007536
Jim Laskey6ff23e52006-10-04 16:53:27 +00007537 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007538 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007539 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007540
Jim Laskey279f0532006-09-25 16:29:54 +00007541 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007542 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007543 ReplLoad = DAG.getLoad(N->getValueType(0), SDLoc(LD),
Chris Lattnerfa459012010-09-21 16:08:50 +00007544 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007545 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007546 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007547 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007548 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD),
Stuart Hastingsa9011292011-02-16 16:23:55 +00007549 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00007550 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007551 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007552 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007553 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00007554 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007555 }
Jim Laskey279f0532006-09-25 16:29:54 +00007556
Jim Laskey6ff23e52006-10-04 16:53:27 +00007557 // Create token factor to keep old chain connected.
Andrew Trickac6d9be2013-05-25 02:42:55 +00007558 SDValue Token = DAG.getNode(ISD::TokenFactor, SDLoc(N),
Owen Anderson825b72b2009-08-11 20:47:22 +00007559 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007560
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007561 // Make sure the new and old chains are cleaned up.
7562 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007563
Jim Laskey274062c2006-10-13 23:32:28 +00007564 // Replace uses with load result and token factor. Don't add users
7565 // to work list.
7566 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007567 }
7568 }
7569
Evan Cheng7fc033a2006-11-03 03:06:21 +00007570 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007571 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007572 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00007573
Dan Gohman475871a2008-07-27 21:46:04 +00007574 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00007575}
7576
Chris Lattner2392ae72010-04-15 04:48:01 +00007577/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
7578/// load is having specific bytes cleared out. If so, return the byte size
7579/// being masked out and the shift amount.
7580static std::pair<unsigned, unsigned>
7581CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
7582 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007583
Chris Lattner2392ae72010-04-15 04:48:01 +00007584 // Check for the structure we're looking for.
7585 if (V->getOpcode() != ISD::AND ||
7586 !isa<ConstantSDNode>(V->getOperand(1)) ||
7587 !ISD::isNormalLoad(V->getOperand(0).getNode()))
7588 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007589
Chris Lattnere6987582010-04-15 06:10:49 +00007590 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00007591 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00007592 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007593
Chris Lattnere6987582010-04-15 06:10:49 +00007594 // The store should be chained directly to the load or be an operand of a
7595 // tokenfactor.
7596 if (LD == Chain.getNode())
7597 ; // ok.
7598 else if (Chain->getOpcode() != ISD::TokenFactor)
7599 return Result; // Fail.
7600 else {
7601 bool isOk = false;
7602 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
7603 if (Chain->getOperand(i).getNode() == LD) {
7604 isOk = true;
7605 break;
7606 }
7607 if (!isOk) return Result;
7608 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007609
Chris Lattner2392ae72010-04-15 04:48:01 +00007610 // This only handles simple types.
7611 if (V.getValueType() != MVT::i16 &&
7612 V.getValueType() != MVT::i32 &&
7613 V.getValueType() != MVT::i64)
7614 return Result;
7615
7616 // Check the constant mask. Invert it so that the bits being masked out are
7617 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
7618 // follow the sign bit for uniformity.
7619 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
Michael J. Spencerc6af2432013-05-24 22:23:49 +00007620 unsigned NotMaskLZ = countLeadingZeros(NotMask);
Chris Lattner2392ae72010-04-15 04:48:01 +00007621 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
Michael J. Spencerc6af2432013-05-24 22:23:49 +00007622 unsigned NotMaskTZ = countTrailingZeros(NotMask);
Chris Lattner2392ae72010-04-15 04:48:01 +00007623 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
7624 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007625
Chris Lattner2392ae72010-04-15 04:48:01 +00007626 // See if we have a continuous run of bits. If so, we have 0*1+0*
7627 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
7628 return Result;
7629
7630 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
7631 if (V.getValueType() != MVT::i64 && NotMaskLZ)
7632 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007633
Chris Lattner2392ae72010-04-15 04:48:01 +00007634 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
7635 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007636 case 1:
7637 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00007638 case 4: break;
7639 default: return Result; // All one mask, or 5-byte mask.
7640 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007641
Chris Lattner2392ae72010-04-15 04:48:01 +00007642 // Verify that the first bit starts at a multiple of mask so that the access
7643 // is aligned the same as the access width.
7644 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007645
Chris Lattner2392ae72010-04-15 04:48:01 +00007646 Result.first = MaskedBytes;
7647 Result.second = NotMaskTZ/8;
7648 return Result;
7649}
7650
7651
7652/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
7653/// provides a value as specified by MaskInfo. If so, replace the specified
7654/// store with a narrower store of truncated IVal.
7655static SDNode *
7656ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
7657 SDValue IVal, StoreSDNode *St,
7658 DAGCombiner *DC) {
7659 unsigned NumBytes = MaskInfo.first;
7660 unsigned ByteShift = MaskInfo.second;
7661 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007662
Chris Lattner2392ae72010-04-15 04:48:01 +00007663 // Check to see if IVal is all zeros in the part being masked in by the 'or'
7664 // that uses this. If not, this is not a replacement.
7665 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
7666 ByteShift*8, (ByteShift+NumBytes)*8);
7667 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007668
Chris Lattner2392ae72010-04-15 04:48:01 +00007669 // Check that it is legal on the target to do this. It is legal if the new
7670 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
7671 // legalization.
7672 MVT VT = MVT::getIntegerVT(NumBytes*8);
7673 if (!DC->isTypeLegal(VT))
7674 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007675
Chris Lattner2392ae72010-04-15 04:48:01 +00007676 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
7677 // shifted by ByteShift and truncated down to NumBytes.
7678 if (ByteShift)
Andrew Trickac6d9be2013-05-25 02:42:55 +00007679 IVal = DAG.getNode(ISD::SRL, SDLoc(IVal), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00007680 DAG.getConstant(ByteShift*8,
7681 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00007682
7683 // Figure out the offset for the store and the alignment of the access.
7684 unsigned StOffset;
7685 unsigned NewAlign = St->getAlignment();
7686
7687 if (DAG.getTargetLoweringInfo().isLittleEndian())
7688 StOffset = ByteShift;
7689 else
7690 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007691
Chris Lattner2392ae72010-04-15 04:48:01 +00007692 SDValue Ptr = St->getBasePtr();
7693 if (StOffset) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007694 Ptr = DAG.getNode(ISD::ADD, SDLoc(IVal), Ptr.getValueType(),
Chris Lattner2392ae72010-04-15 04:48:01 +00007695 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
7696 NewAlign = MinAlign(NewAlign, StOffset);
7697 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007698
Chris Lattner2392ae72010-04-15 04:48:01 +00007699 // Truncate down to the new size.
Andrew Trickac6d9be2013-05-25 02:42:55 +00007700 IVal = DAG.getNode(ISD::TRUNCATE, SDLoc(IVal), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007701
Chris Lattner2392ae72010-04-15 04:48:01 +00007702 ++OpsNarrowed;
Andrew Trickac6d9be2013-05-25 02:42:55 +00007703 return DAG.getStore(St->getChain(), SDLoc(St), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007704 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00007705 false, false, NewAlign).getNode();
7706}
7707
Evan Cheng8b944d32009-05-28 00:35:15 +00007708
7709/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
7710/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
7711/// of the loaded bits, try narrowing the load and store if it would end up
7712/// being a win for performance or code size.
7713SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
7714 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00007715 if (ST->isVolatile())
7716 return SDValue();
7717
Evan Cheng8b944d32009-05-28 00:35:15 +00007718 SDValue Chain = ST->getChain();
7719 SDValue Value = ST->getValue();
7720 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00007721 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00007722
7723 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00007724 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007725
7726 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007727
Chris Lattner2392ae72010-04-15 04:48:01 +00007728 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
7729 // is a byte mask indicating a consecutive number of bytes, check to see if
7730 // Y is known to provide just those bytes. If so, we try to replace the
7731 // load + replace + store sequence with a single (narrower) store, which makes
7732 // the load dead.
7733 if (Opc == ISD::OR) {
7734 std::pair<unsigned, unsigned> MaskedLoad;
7735 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
7736 if (MaskedLoad.first)
7737 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7738 Value.getOperand(1), ST,this))
7739 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007740
Chris Lattner2392ae72010-04-15 04:48:01 +00007741 // Or is commutative, so try swapping X and Y.
7742 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
7743 if (MaskedLoad.first)
7744 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7745 Value.getOperand(0), ST,this))
7746 return SDValue(NewST, 0);
7747 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007748
Evan Cheng8b944d32009-05-28 00:35:15 +00007749 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
7750 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00007751 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007752
7753 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00007754 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
7755 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00007756 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00007757 if (LD->getBasePtr() != Ptr ||
7758 LD->getPointerInfo().getAddrSpace() !=
7759 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00007760 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007761
7762 // Find the type to narrow it the load / op / store to.
7763 SDValue N1 = Value.getOperand(1);
7764 unsigned BitWidth = N1.getValueSizeInBits();
7765 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
7766 if (Opc == ISD::AND)
7767 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00007768 if (Imm == 0 || Imm.isAllOnesValue())
7769 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007770 unsigned ShAmt = Imm.countTrailingZeros();
7771 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
7772 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00007773 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007774 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00007775 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00007776 TLI.isNarrowingProfitable(VT, NewVT))) {
7777 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00007778 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007779 }
Evan Chengcdcecc02009-05-28 18:41:02 +00007780 if (NewBW >= BitWidth)
7781 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007782
7783 // If the lsb changed does not start at the type bitwidth boundary,
7784 // start at the previous one.
7785 if (ShAmt % NewBW)
7786 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
Manman Ren981b9632012-12-12 01:13:50 +00007787 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt,
7788 std::min(BitWidth, ShAmt + NewBW));
Evan Cheng8b944d32009-05-28 00:35:15 +00007789 if ((Imm & Mask) == Imm) {
7790 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
7791 if (Opc == ISD::AND)
7792 NewImm ^= APInt::getAllOnesValue(NewBW);
7793 uint64_t PtrOff = ShAmt / 8;
7794 // For big endian targets, we need to adjust the offset to the pointer to
7795 // load the correct bytes.
7796 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00007797 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00007798
7799 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007800 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007801 if (NewAlign < TLI.getDataLayout()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00007802 return SDValue();
7803
Andrew Trickac6d9be2013-05-25 02:42:55 +00007804 SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(LD),
Evan Cheng8b944d32009-05-28 00:35:15 +00007805 Ptr.getValueType(), Ptr,
7806 DAG.getConstant(PtrOff, Ptr.getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00007807 SDValue NewLD = DAG.getLoad(NewVT, SDLoc(N0),
Evan Cheng8b944d32009-05-28 00:35:15 +00007808 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007809 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007810 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007811 LD->isInvariant(), NewAlign);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007812 SDValue NewVal = DAG.getNode(Opc, SDLoc(Value), NewVT, NewLD,
Evan Cheng8b944d32009-05-28 00:35:15 +00007813 DAG.getConstant(NewImm, NewVT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00007814 SDValue NewST = DAG.getStore(Chain, SDLoc(N),
Evan Cheng8b944d32009-05-28 00:35:15 +00007815 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007816 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007817 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007818
7819 AddToWorkList(NewPtr.getNode());
7820 AddToWorkList(NewLD.getNode());
7821 AddToWorkList(NewVal.getNode());
7822 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007823 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Cheng8b944d32009-05-28 00:35:15 +00007824 ++OpsNarrowed;
7825 return NewST;
7826 }
7827 }
7828
Evan Chengcdcecc02009-05-28 18:41:02 +00007829 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007830}
7831
Evan Cheng31959b12011-02-02 01:06:55 +00007832/// TransformFPLoadStorePair - For a given floating point load / store pair,
7833/// if the load value isn't used by any other operations, then consider
7834/// transforming the pair to integer load / store operations if the target
7835/// deems the transformation profitable.
7836SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
7837 StoreSDNode *ST = cast<StoreSDNode>(N);
7838 SDValue Chain = ST->getChain();
7839 SDValue Value = ST->getValue();
7840 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
7841 Value.hasOneUse() &&
7842 Chain == SDValue(Value.getNode(), 1)) {
7843 LoadSDNode *LD = cast<LoadSDNode>(Value);
7844 EVT VT = LD->getMemoryVT();
7845 if (!VT.isFloatingPoint() ||
7846 VT != ST->getMemoryVT() ||
7847 LD->isNonTemporal() ||
7848 ST->isNonTemporal() ||
7849 LD->getPointerInfo().getAddrSpace() != 0 ||
7850 ST->getPointerInfo().getAddrSpace() != 0)
7851 return SDValue();
7852
7853 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
7854 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
7855 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
7856 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
7857 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
7858 return SDValue();
7859
7860 unsigned LDAlign = LD->getAlignment();
7861 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007862 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007863 unsigned ABIAlign = TLI.getDataLayout()->getABITypeAlignment(IntVTTy);
Evan Cheng31959b12011-02-02 01:06:55 +00007864 if (LDAlign < ABIAlign || STAlign < ABIAlign)
7865 return SDValue();
7866
Andrew Trickac6d9be2013-05-25 02:42:55 +00007867 SDValue NewLD = DAG.getLoad(IntVT, SDLoc(Value),
Evan Cheng31959b12011-02-02 01:06:55 +00007868 LD->getChain(), LD->getBasePtr(),
7869 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007870 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00007871
Andrew Trickac6d9be2013-05-25 02:42:55 +00007872 SDValue NewST = DAG.getStore(NewLD.getValue(1), SDLoc(N),
Evan Cheng31959b12011-02-02 01:06:55 +00007873 NewLD, ST->getBasePtr(),
7874 ST->getPointerInfo(),
7875 false, false, STAlign);
7876
7877 AddToWorkList(NewLD.getNode());
7878 AddToWorkList(NewST.getNode());
7879 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007880 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Cheng31959b12011-02-02 01:06:55 +00007881 ++LdStFP2Int;
7882 return NewST;
7883 }
7884
7885 return SDValue();
7886}
7887
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007888/// Helper struct to parse and store a memory address as base + index + offset.
7889/// We ignore sign extensions when it is safe to do so.
7890/// The following two expressions are not equivalent. To differentiate we need
7891/// to store whether there was a sign extension involved in the index
7892/// computation.
7893/// (load (i64 add (i64 copyfromreg %c)
7894/// (i64 signextend (add (i8 load %index)
7895/// (i8 1))))
7896/// vs
7897///
7898/// (load (i64 add (i64 copyfromreg %c)
7899/// (i64 signextend (i32 add (i32 signextend (i8 load %index))
7900/// (i32 1)))))
7901struct BaseIndexOffset {
7902 SDValue Base;
7903 SDValue Index;
7904 int64_t Offset;
7905 bool IsIndexSignExt;
7906
7907 BaseIndexOffset() : Offset(0), IsIndexSignExt(false) {}
7908
7909 BaseIndexOffset(SDValue Base, SDValue Index, int64_t Offset,
7910 bool IsIndexSignExt) :
7911 Base(Base), Index(Index), Offset(Offset), IsIndexSignExt(IsIndexSignExt) {}
7912
7913 bool equalBaseIndex(const BaseIndexOffset &Other) {
7914 return Other.Base == Base && Other.Index == Index &&
7915 Other.IsIndexSignExt == IsIndexSignExt;
Nadav Rotemc653de62012-10-03 16:11:15 +00007916 }
7917
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007918 /// Parses tree in Ptr for base, index, offset addresses.
7919 static BaseIndexOffset match(SDValue Ptr) {
7920 bool IsIndexSignExt = false;
7921
Juergen Ributzka915e9362013-08-21 21:53:38 +00007922 // We only can pattern match BASE + INDEX + OFFSET. If Ptr is not an ADD
7923 // instruction, then it could be just the BASE or everything else we don't
7924 // know how to handle. Just use Ptr as BASE and give up.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007925 if (Ptr->getOpcode() != ISD::ADD)
7926 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
7927
Juergen Ributzka915e9362013-08-21 21:53:38 +00007928 // We know that we have at least an ADD instruction. Try to pattern match
7929 // the simple case of BASE + OFFSET.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007930 if (isa<ConstantSDNode>(Ptr->getOperand(1))) {
7931 int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue();
7932 return BaseIndexOffset(Ptr->getOperand(0), SDValue(), Offset,
7933 IsIndexSignExt);
7934 }
7935
Juergen Ributzka915e9362013-08-21 21:53:38 +00007936 // Inside a loop the current BASE pointer is calculated using an ADD and a
Juergen Ributzka2b884bc2013-08-28 22:33:58 +00007937 // MUL instruction. In this case Ptr is the actual BASE pointer.
Juergen Ributzka915e9362013-08-21 21:53:38 +00007938 // (i64 add (i64 %array_ptr)
7939 // (i64 mul (i64 %induction_var)
7940 // (i64 %element_size)))
Juergen Ributzka2b884bc2013-08-28 22:33:58 +00007941 if (Ptr->getOperand(1)->getOpcode() == ISD::MUL)
Juergen Ributzka915e9362013-08-21 21:53:38 +00007942 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
Juergen Ributzka915e9362013-08-21 21:53:38 +00007943
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007944 // Look at Base + Index + Offset cases.
7945 SDValue Base = Ptr->getOperand(0);
7946 SDValue IndexOffset = Ptr->getOperand(1);
7947
7948 // Skip signextends.
7949 if (IndexOffset->getOpcode() == ISD::SIGN_EXTEND) {
7950 IndexOffset = IndexOffset->getOperand(0);
7951 IsIndexSignExt = true;
7952 }
7953
7954 // Either the case of Base + Index (no offset) or something else.
7955 if (IndexOffset->getOpcode() != ISD::ADD)
7956 return BaseIndexOffset(Base, IndexOffset, 0, IsIndexSignExt);
7957
7958 // Now we have the case of Base + Index + offset.
7959 SDValue Index = IndexOffset->getOperand(0);
7960 SDValue Offset = IndexOffset->getOperand(1);
7961
7962 if (!isa<ConstantSDNode>(Offset))
7963 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
7964
7965 // Ignore signextends.
7966 if (Index->getOpcode() == ISD::SIGN_EXTEND) {
7967 Index = Index->getOperand(0);
7968 IsIndexSignExt = true;
7969 } else IsIndexSignExt = false;
7970
7971 int64_t Off = cast<ConstantSDNode>(Offset)->getSExtValue();
7972 return BaseIndexOffset(Base, Index, Off, IsIndexSignExt);
7973 }
7974};
Nadav Rotemc653de62012-10-03 16:11:15 +00007975
7976/// Holds a pointer to an LSBaseSDNode as well as information on where it
7977/// is located in a sequence of memory operations connected by a chain.
7978struct MemOpLink {
7979 MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq):
7980 MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { }
7981 // Ptr to the mem node.
7982 LSBaseSDNode *MemNode;
7983 // Offset from the base ptr.
7984 int64_t OffsetFromBase;
7985 // What is the sequence number of this mem node.
7986 // Lowest mem operand in the DAG starts at zero.
7987 unsigned SequenceNum;
7988};
7989
7990/// Sorts store nodes in a link according to their offset from a shared
7991// base ptr.
7992struct ConsecutiveMemoryChainSorter {
7993 bool operator()(MemOpLink LHS, MemOpLink RHS) {
7994 return LHS.OffsetFromBase < RHS.OffsetFromBase;
7995 }
7996};
7997
7998bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) {
7999 EVT MemVT = St->getMemoryVT();
8000 int64_t ElementSizeBytes = MemVT.getSizeInBits()/8;
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008001 bool NoVectors = DAG.getMachineFunction().getFunction()->getAttributes().
8002 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nadav Rotemc653de62012-10-03 16:11:15 +00008003
8004 // Don't merge vectors into wider inputs.
8005 if (MemVT.isVector() || !MemVT.isSimple())
8006 return false;
8007
8008 // Perform an early exit check. Do not bother looking at stored values that
8009 // are not constants or loads.
8010 SDValue StoredVal = St->getValue();
8011 bool IsLoadSrc = isa<LoadSDNode>(StoredVal);
8012 if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) &&
8013 !IsLoadSrc)
8014 return false;
8015
8016 // Only look at ends of store sequences.
8017 SDValue Chain = SDValue(St, 1);
8018 if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE)
8019 return false;
8020
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008021 // This holds the base pointer, index, and the offset in bytes from the base
8022 // pointer.
8023 BaseIndexOffset BasePtr = BaseIndexOffset::match(St->getBasePtr());
Nadav Rotemc653de62012-10-03 16:11:15 +00008024
8025 // We must have a base and an offset.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008026 if (!BasePtr.Base.getNode())
Nadav Rotemc653de62012-10-03 16:11:15 +00008027 return false;
8028
8029 // Do not handle stores to undef base pointers.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008030 if (BasePtr.Base.getOpcode() == ISD::UNDEF)
Nadav Rotemc653de62012-10-03 16:11:15 +00008031 return false;
8032
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008033 // Save the LoadSDNodes that we find in the chain.
8034 // We need to make sure that these nodes do not interfere with
8035 // any of the store nodes.
8036 SmallVector<LSBaseSDNode*, 8> AliasLoadNodes;
8037
8038 // Save the StoreSDNodes that we find in the chain.
Nadav Rotemc653de62012-10-03 16:11:15 +00008039 SmallVector<MemOpLink, 8> StoreNodes;
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008040
Nadav Rotemc653de62012-10-03 16:11:15 +00008041 // Walk up the chain and look for nodes with offsets from the same
8042 // base pointer. Stop when reaching an instruction with a different kind
8043 // or instruction which has a different base pointer.
8044 unsigned Seq = 0;
8045 StoreSDNode *Index = St;
8046 while (Index) {
8047 // If the chain has more than one use, then we can't reorder the mem ops.
8048 if (Index != St && !SDValue(Index, 1)->hasOneUse())
8049 break;
8050
8051 // Find the base pointer and offset for this memory node.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008052 BaseIndexOffset Ptr = BaseIndexOffset::match(Index->getBasePtr());
Nadav Rotemc653de62012-10-03 16:11:15 +00008053
8054 // Check that the base pointer is the same as the original one.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008055 if (!Ptr.equalBaseIndex(BasePtr))
Nadav Rotemc653de62012-10-03 16:11:15 +00008056 break;
8057
8058 // Check that the alignment is the same.
8059 if (Index->getAlignment() != St->getAlignment())
8060 break;
8061
8062 // The memory operands must not be volatile.
8063 if (Index->isVolatile() || Index->isIndexed())
8064 break;
8065
8066 // No truncation.
8067 if (StoreSDNode *St = dyn_cast<StoreSDNode>(Index))
8068 if (St->isTruncatingStore())
8069 break;
8070
8071 // The stored memory type must be the same.
8072 if (Index->getMemoryVT() != MemVT)
8073 break;
8074
8075 // We do not allow unaligned stores because we want to prevent overriding
8076 // stores.
8077 if (Index->getAlignment()*8 != MemVT.getSizeInBits())
8078 break;
8079
8080 // We found a potential memory operand to merge.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008081 StoreNodes.push_back(MemOpLink(Index, Ptr.Offset, Seq++));
Nadav Rotemc653de62012-10-03 16:11:15 +00008082
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008083 // Find the next memory operand in the chain. If the next operand in the
8084 // chain is a store then move up and continue the scan with the next
8085 // memory operand. If the next operand is a load save it and use alias
8086 // information to check if it interferes with anything.
8087 SDNode *NextInChain = Index->getChain().getNode();
8088 while (1) {
Nadav Rotemdde785c2012-12-06 17:34:13 +00008089 if (StoreSDNode *STn = dyn_cast<StoreSDNode>(NextInChain)) {
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008090 // We found a store node. Use it for the next iteration.
Nadav Rotemdde785c2012-12-06 17:34:13 +00008091 Index = STn;
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008092 break;
8093 } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) {
8094 // Save the load node for later. Continue the scan.
8095 AliasLoadNodes.push_back(Ldn);
8096 NextInChain = Ldn->getChain().getNode();
8097 continue;
8098 } else {
8099 Index = NULL;
8100 break;
8101 }
8102 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008103 }
8104
8105 // Check if there is anything to merge.
8106 if (StoreNodes.size() < 2)
8107 return false;
8108
8109 // Sort the memory operands according to their distance from the base pointer.
8110 std::sort(StoreNodes.begin(), StoreNodes.end(),
8111 ConsecutiveMemoryChainSorter());
8112
8113 // Scan the memory operations on the chain and find the first non-consecutive
8114 // store memory address.
8115 unsigned LastConsecutiveStore = 0;
8116 int64_t StartAddress = StoreNodes[0].OffsetFromBase;
Nadav Rotemdde785c2012-12-06 17:34:13 +00008117 for (unsigned i = 0, e = StoreNodes.size(); i < e; ++i) {
8118
8119 // Check that the addresses are consecutive starting from the second
8120 // element in the list of stores.
8121 if (i > 0) {
8122 int64_t CurrAddress = StoreNodes[i].OffsetFromBase;
8123 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
8124 break;
8125 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008126
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008127 bool Alias = false;
8128 // Check if this store interferes with any of the loads that we found.
8129 for (unsigned ld = 0, lde = AliasLoadNodes.size(); ld < lde; ++ld)
8130 if (isAlias(AliasLoadNodes[ld], StoreNodes[i].MemNode)) {
8131 Alias = true;
8132 break;
8133 }
Nadav Rotem90e11dc2012-11-29 00:00:08 +00008134 // We found a load that alias with this store. Stop the sequence.
8135 if (Alias)
8136 break;
8137
Nadav Rotemc653de62012-10-03 16:11:15 +00008138 // Mark this node as useful.
8139 LastConsecutiveStore = i;
8140 }
8141
8142 // The node with the lowest store address.
8143 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode;
8144
8145 // Store the constants into memory as one consecutive store.
8146 if (!IsLoadSrc) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008147 unsigned LastLegalType = 0;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008148 unsigned LastLegalVectorType = 0;
8149 bool NonZero = false;
Nadav Rotemc653de62012-10-03 16:11:15 +00008150 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
8151 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8152 SDValue StoredVal = St->getValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008153
8154 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00008155 NonZero |= !C->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008156 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00008157 NonZero |= !C->getConstantFPValue()->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008158 } else {
8159 // Non constant.
Nadav Rotemc653de62012-10-03 16:11:15 +00008160 break;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008161 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008162
Nadav Rotemc653de62012-10-03 16:11:15 +00008163 // Find a legal type for the constant store.
8164 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
8165 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8166 if (TLI.isTypeLegal(StoreTy))
8167 LastLegalType = i+1;
Arnold Schwaighofere7370182013-04-02 15:58:51 +00008168 // Or check whether a truncstore is legal.
8169 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) ==
8170 TargetLowering::TypePromoteInteger) {
8171 EVT LegalizedStoredValueTy =
8172 TLI.getTypeToTransformTo(*DAG.getContext(), StoredVal.getValueType());
8173 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy))
8174 LastLegalType = i+1;
8175 }
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008176
8177 // Find a legal type for the vector store.
8178 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
8179 if (TLI.isTypeLegal(Ty))
8180 LastLegalVectorType = i + 1;
Nadav Rotemc653de62012-10-03 16:11:15 +00008181 }
8182
Bob Wilson99d8e762012-12-20 01:36:20 +00008183 // We only use vectors if the constant is known to be zero and the
8184 // function is not marked with the noimplicitfloat attribute.
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008185 if (NonZero || NoVectors)
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008186 LastLegalVectorType = 0;
8187
Nadav Rotemc653de62012-10-03 16:11:15 +00008188 // Check if we found a legal integer type to store.
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008189 if (LastLegalType == 0 && LastLegalVectorType == 0)
Nadav Rotemc653de62012-10-03 16:11:15 +00008190 return false;
8191
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008192 bool UseVector = (LastLegalVectorType > LastLegalType) && !NoVectors;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008193 unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType;
8194
8195 // Make sure we have something to merge.
8196 if (NumElem < 2)
8197 return false;
Nadav Rotemc653de62012-10-03 16:11:15 +00008198
8199 unsigned EarliestNodeUsed = 0;
8200 for (unsigned i=0; i < NumElem; ++i) {
8201 // Find a chain for the new wide-store operand. Notice that some
8202 // of the store nodes that we found may not be selected for inclusion
8203 // in the wide store. The chain we use needs to be the chain of the
8204 // earliest store node which is *used* and replaced by the wide store.
8205 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
8206 EarliestNodeUsed = i;
8207 }
8208
8209 // The earliest Node in the DAG.
8210 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008211 SDLoc DL(StoreNodes[0].MemNode);
Nadav Rotemc653de62012-10-03 16:11:15 +00008212
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008213 SDValue StoredVal;
8214 if (UseVector) {
8215 // Find a legal type for the vector store.
8216 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
8217 assert(TLI.isTypeLegal(Ty) && "Illegal vector store");
8218 StoredVal = DAG.getConstant(0, Ty);
8219 } else {
8220 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
8221 APInt StoreInt(StoreBW, 0);
8222
8223 // Construct a single integer constant which is made of the smaller
8224 // constant inputs.
8225 bool IsLE = TLI.isLittleEndian();
8226 for (unsigned i = 0; i < NumElem ; ++i) {
8227 unsigned Idx = IsLE ?(NumElem - 1 - i) : i;
8228 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode);
8229 SDValue Val = St->getValue();
8230 StoreInt<<=ElementSizeBytes*8;
8231 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) {
8232 StoreInt|=C->getAPIntValue().zext(StoreBW);
8233 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) {
8234 StoreInt|= C->getValueAPF().bitcastToAPInt().zext(StoreBW);
8235 } else {
8236 assert(false && "Invalid constant element type");
8237 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008238 }
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008239
8240 // Create the new Load and Store operations.
8241 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8242 StoredVal = DAG.getConstant(StoreInt, StoreTy);
Nadav Rotemc653de62012-10-03 16:11:15 +00008243 }
8244
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008245 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), DL, StoredVal,
Nadav Rotemc653de62012-10-03 16:11:15 +00008246 FirstInChain->getBasePtr(),
8247 FirstInChain->getPointerInfo(),
8248 false, false,
8249 FirstInChain->getAlignment());
8250
8251 // Replace the first store with the new store
8252 CombineTo(EarliestOp, NewStore);
8253 // Erase all other stores.
8254 for (unsigned i = 0; i < NumElem ; ++i) {
8255 if (StoreNodes[i].MemNode == EarliestOp)
8256 continue;
8257 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
Rafael Espindola8e2b8ae2012-11-14 05:08:56 +00008258 // ReplaceAllUsesWith will replace all uses that existed when it was
8259 // called, but graph optimizations may cause new ones to appear. For
8260 // example, the case in pr14333 looks like
8261 //
8262 // St's chain -> St -> another store -> X
8263 //
8264 // And the only difference from St to the other store is the chain.
8265 // When we change it's chain to be St's chain they become identical,
8266 // get CSEed and the net result is that X is now a use of St.
8267 // Since we know that St is redundant, just iterate.
8268 while (!St->use_empty())
8269 DAG.ReplaceAllUsesWith(SDValue(St, 0), St->getChain());
Nadav Rotemc653de62012-10-03 16:11:15 +00008270 removeFromWorkList(St);
8271 DAG.DeleteNode(St);
8272 }
8273
8274 return true;
8275 }
8276
8277 // Below we handle the case of multiple consecutive stores that
8278 // come from multiple consecutive loads. We merge them into a single
8279 // wide load and a single wide store.
8280
8281 // Look for load nodes which are used by the stored values.
8282 SmallVector<MemOpLink, 8> LoadNodes;
8283
8284 // Find acceptable loads. Loads need to have the same chain (token factor),
8285 // must not be zext, volatile, indexed, and they must be consecutive.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008286 BaseIndexOffset LdBasePtr;
Nadav Rotemc653de62012-10-03 16:11:15 +00008287 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
8288 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8289 LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue());
8290 if (!Ld) break;
8291
8292 // Loads must only have one use.
8293 if (!Ld->hasNUsesOfValue(1, 0))
8294 break;
8295
8296 // Check that the alignment is the same as the stores.
8297 if (Ld->getAlignment() != St->getAlignment())
8298 break;
8299
8300 // The memory operands must not be volatile.
8301 if (Ld->isVolatile() || Ld->isIndexed())
8302 break;
8303
8304 // We do not accept ext loads.
8305 if (Ld->getExtensionType() != ISD::NON_EXTLOAD)
8306 break;
8307
8308 // The stored memory type must be the same.
8309 if (Ld->getMemoryVT() != MemVT)
8310 break;
8311
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008312 BaseIndexOffset LdPtr = BaseIndexOffset::match(Ld->getBasePtr());
Nadav Rotemc653de62012-10-03 16:11:15 +00008313 // If this is not the first ptr that we check.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008314 if (LdBasePtr.Base.getNode()) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008315 // The base ptr must be the same.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008316 if (!LdPtr.equalBaseIndex(LdBasePtr))
Nadav Rotemc653de62012-10-03 16:11:15 +00008317 break;
8318 } else {
8319 // Check that all other base pointers are the same as this one.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008320 LdBasePtr = LdPtr;
Nadav Rotemc653de62012-10-03 16:11:15 +00008321 }
8322
8323 // We found a potential memory operand to merge.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008324 LoadNodes.push_back(MemOpLink(Ld, LdPtr.Offset, 0));
Nadav Rotemc653de62012-10-03 16:11:15 +00008325 }
8326
8327 if (LoadNodes.size() < 2)
8328 return false;
8329
8330 // Scan the memory operations on the chain and find the first non-consecutive
8331 // load memory address. These variables hold the index in the store node
8332 // array.
8333 unsigned LastConsecutiveLoad = 0;
8334 // This variable refers to the size and not index in the array.
8335 unsigned LastLegalVectorType = 0;
8336 unsigned LastLegalIntegerType = 0;
8337 StartAddress = LoadNodes[0].OffsetFromBase;
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008338 SDValue FirstChain = LoadNodes[0].MemNode->getChain();
8339 for (unsigned i = 1; i < LoadNodes.size(); ++i) {
8340 // All loads much share the same chain.
8341 if (LoadNodes[i].MemNode->getChain() != FirstChain)
8342 break;
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008343
Nadav Rotemc653de62012-10-03 16:11:15 +00008344 int64_t CurrAddress = LoadNodes[i].OffsetFromBase;
8345 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
8346 break;
8347 LastConsecutiveLoad = i;
8348
8349 // Find a legal type for the vector store.
8350 EVT StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
8351 if (TLI.isTypeLegal(StoreTy))
8352 LastLegalVectorType = i + 1;
8353
8354 // Find a legal type for the integer store.
8355 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
8356 StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8357 if (TLI.isTypeLegal(StoreTy))
8358 LastLegalIntegerType = i + 1;
Arnold Schwaighofere7370182013-04-02 15:58:51 +00008359 // Or check whether a truncstore and extload is legal.
8360 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) ==
8361 TargetLowering::TypePromoteInteger) {
8362 EVT LegalizedStoredValueTy =
8363 TLI.getTypeToTransformTo(*DAG.getContext(), StoreTy);
8364 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy) &&
8365 TLI.isLoadExtLegal(ISD::ZEXTLOAD, StoreTy) &&
8366 TLI.isLoadExtLegal(ISD::SEXTLOAD, StoreTy) &&
8367 TLI.isLoadExtLegal(ISD::EXTLOAD, StoreTy))
8368 LastLegalIntegerType = i+1;
8369 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008370 }
8371
8372 // Only use vector types if the vector type is larger than the integer type.
8373 // If they are the same, use integers.
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008374 bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType && !NoVectors;
Nadav Rotemc653de62012-10-03 16:11:15 +00008375 unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType);
8376
8377 // We add +1 here because the LastXXX variables refer to location while
8378 // the NumElem refers to array/index size.
8379 unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1;
8380 NumElem = std::min(LastLegalType, NumElem);
8381
8382 if (NumElem < 2)
8383 return false;
8384
8385 // The earliest Node in the DAG.
8386 unsigned EarliestNodeUsed = 0;
8387 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
8388 for (unsigned i=1; i<NumElem; ++i) {
8389 // Find a chain for the new wide-store operand. Notice that some
8390 // of the store nodes that we found may not be selected for inclusion
8391 // in the wide store. The chain we use needs to be the chain of the
8392 // earliest store node which is *used* and replaced by the wide store.
8393 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
8394 EarliestNodeUsed = i;
8395 }
8396
8397 // Find if it is better to use vectors or integers to load and store
8398 // to memory.
8399 EVT JointMemOpVT;
8400 if (UseVectorTy) {
8401 JointMemOpVT = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
8402 } else {
8403 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
8404 JointMemOpVT = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8405 }
8406
Andrew Trickac6d9be2013-05-25 02:42:55 +00008407 SDLoc LoadDL(LoadNodes[0].MemNode);
8408 SDLoc StoreDL(StoreNodes[0].MemNode);
Nadav Rotemc653de62012-10-03 16:11:15 +00008409
8410 LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode);
8411 SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL,
8412 FirstLoad->getChain(),
8413 FirstLoad->getBasePtr(),
8414 FirstLoad->getPointerInfo(),
8415 false, false, false,
8416 FirstLoad->getAlignment());
8417
8418 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), StoreDL, NewLoad,
8419 FirstInChain->getBasePtr(),
8420 FirstInChain->getPointerInfo(), false, false,
8421 FirstInChain->getAlignment());
8422
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008423 // Replace one of the loads with the new load.
8424 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode);
8425 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1),
8426 SDValue(NewLoad.getNode(), 1));
8427
8428 // Remove the rest of the load chains.
8429 for (unsigned i = 1; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008430 // Replace all chain users of the old load nodes with the chain of the new
8431 // load node.
8432 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode);
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008433 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain());
8434 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008435
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008436 // Replace the first store with the new store.
8437 CombineTo(EarliestOp, NewStore);
8438 // Erase all other stores.
8439 for (unsigned i = 0; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008440 // Remove all Store nodes.
8441 if (StoreNodes[i].MemNode == EarliestOp)
8442 continue;
8443 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8444 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
8445 removeFromWorkList(St);
8446 DAG.DeleteNode(St);
8447 }
8448
8449 return true;
8450}
8451
Dan Gohman475871a2008-07-27 21:46:04 +00008452SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00008453 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00008454 SDValue Chain = ST->getChain();
8455 SDValue Value = ST->getValue();
8456 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00008457
Evan Cheng59d5b682007-05-07 21:27:48 +00008458 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00008459 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008460 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008461 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00008462 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008463 EVT SVT = Value.getOperand(0).getValueType();
Micah Villmow3574eca2012-10-08 16:38:25 +00008464 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00008465 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008466 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008467 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008468 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Andrew Trickac6d9be2013-05-25 02:42:55 +00008469 return DAG.getStore(Chain, SDLoc(N), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00008470 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008471 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00008472 }
Owen Andersona34d9362011-04-14 17:30:49 +00008473
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008474 // Turn 'store undef, Ptr' -> nothing.
8475 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
8476 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008477
Nate Begeman2cbba892006-12-11 02:23:46 +00008478 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00008479 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008480 // NOTE: If the original store is volatile, this transform must not increase
8481 // the number of stores. For example, on x86-32 an f64 can be stored in one
8482 // processor operation but an i64 (which is not legal) requires two. So the
8483 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00008484 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00008485 SDValue Tmp;
Craig Topper0ff11902013-08-15 02:44:19 +00008486 switch (CFP->getSimpleValueType(0).SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008487 default: llvm_unreachable("Unknown FP type");
Pete Cooper438c0402012-06-21 18:00:39 +00008488 case MVT::f16: // We don't do this for these yet.
8489 case MVT::f80:
Owen Anderson825b72b2009-08-11 20:47:22 +00008490 case MVT::f128:
8491 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00008492 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008493 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00008494 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00008495 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00008496 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00008497 bitcastToAPInt().getZExtValue(), MVT::i32);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008498 return DAG.getStore(Chain, SDLoc(N), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008499 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008500 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00008501 }
8502 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008503 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00008504 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008505 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00008506 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00008507 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00008508 getZExtValue(), MVT::i64);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008509 return DAG.getStore(Chain, SDLoc(N), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008510 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008511 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008512 }
Owen Andersona34d9362011-04-14 17:30:49 +00008513
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008514 if (!ST->isVolatile() &&
8515 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00008516 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00008517 // argument passing. Since this is so common, custom legalize the
8518 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00008519 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00008520 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
8521 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00008522 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00008523
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00008524 unsigned Alignment = ST->getAlignment();
8525 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00008526 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00008527
Andrew Trickac6d9be2013-05-25 02:42:55 +00008528 SDValue St0 = DAG.getStore(Chain, SDLoc(ST), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008529 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008530 isVolatile, isNonTemporal,
8531 ST->getAlignment());
Andrew Trickac6d9be2013-05-25 02:42:55 +00008532 Ptr = DAG.getNode(ISD::ADD, SDLoc(N), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00008533 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00008534 Alignment = MinAlign(Alignment, 4U);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008535 SDValue St1 = DAG.getStore(Chain, SDLoc(ST), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008536 Ptr, ST->getPointerInfo().getWithOffset(4),
8537 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00008538 Alignment);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008539 return DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00008540 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00008541 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008542
Chris Lattner62be1a72006-12-12 04:16:14 +00008543 break;
Evan Cheng25ece662006-12-11 17:25:19 +00008544 }
Nate Begeman2cbba892006-12-11 02:23:46 +00008545 }
Nate Begeman2cbba892006-12-11 02:23:46 +00008546 }
8547
Evan Cheng255f20f2010-04-01 06:04:33 +00008548 // Try to infer better alignment information than the store already has.
8549 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00008550 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
8551 if (Align > ST->getAlignment())
Andrew Trickac6d9be2013-05-25 02:42:55 +00008552 return DAG.getTruncStore(Chain, SDLoc(N), Value,
Evan Chenged1c0c72011-11-28 22:37:34 +00008553 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
8554 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00008555 }
8556 }
8557
Evan Cheng31959b12011-02-02 01:06:55 +00008558 // Try transforming a pair floating point load / store ops to integer
8559 // load / store ops.
8560 SDValue NewST = TransformFPLoadStorePair(N);
8561 if (NewST.getNode())
8562 return NewST;
8563
Hal Finkel253acef2013-08-29 03:29:55 +00008564 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA :
8565 TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
8566 if (UseAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00008567 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008568 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00008569
Jim Laskey6ff23e52006-10-04 16:53:27 +00008570 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00008571 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00008572 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008573
8574 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008575 if (ST->isTruncatingStore()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008576 ReplStore = DAG.getTruncStore(BetterChain, SDLoc(N), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008577 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008578 ST->getMemoryVT(), ST->isVolatile(),
8579 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008580 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008581 ReplStore = DAG.getStore(BetterChain, SDLoc(N), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008582 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008583 ST->isVolatile(), ST->isNonTemporal(),
8584 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008585 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008586
Jim Laskey279f0532006-09-25 16:29:54 +00008587 // Create token to keep both nodes around.
Andrew Trickac6d9be2013-05-25 02:42:55 +00008588 SDValue Token = DAG.getNode(ISD::TokenFactor, SDLoc(N),
Owen Anderson825b72b2009-08-11 20:47:22 +00008589 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00008590
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008591 // Make sure the new and old chains are cleaned up.
8592 AddToWorkList(Token.getNode());
8593
Jim Laskey274062c2006-10-13 23:32:28 +00008594 // Don't add users to work list.
8595 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00008596 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00008597 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008598
Evan Cheng33dbedc2006-11-05 09:31:14 +00008599 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00008600 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00008601 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00008602
Chris Lattner3c872852007-12-29 06:26:16 +00008603 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00008604 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00008605 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00008606 // See if we can simplify the input to this truncstore with knowledge that
8607 // only the low bits are being used. For example:
8608 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00008609 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00008610 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00008611 APInt::getLowBitsSet(
8612 Value.getValueType().getScalarType().getSizeInBits(),
8613 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00008614 AddToWorkList(Value.getNode());
8615 if (Shorter.getNode())
Andrew Trickac6d9be2013-05-25 02:42:55 +00008616 return DAG.getTruncStore(Chain, SDLoc(N), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008617 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008618 ST->isVolatile(), ST->isNonTemporal(),
8619 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00008620
Chris Lattnere33544c2007-10-13 06:58:48 +00008621 // Otherwise, see if we can simplify the operation with
8622 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00008623 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00008624 APInt::getLowBitsSet(
8625 Value.getValueType().getScalarType().getSizeInBits(),
8626 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00008627 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00008628 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008629
Chris Lattner3c872852007-12-29 06:26:16 +00008630 // If this is a load followed by a store to the same location, then the store
8631 // is dead/noop.
8632 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008633 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008634 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00008635 // There can't be any side effects between the load and store, such as
8636 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00008637 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00008638 // The store is dead, remove it.
8639 return Chain;
8640 }
8641 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008642
Chris Lattnerddf89562008-01-17 19:59:44 +00008643 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
8644 // truncating store. We can do this even if this is already a truncstore.
8645 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00008646 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008647 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008648 ST->getMemoryVT())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008649 return DAG.getTruncStore(Chain, SDLoc(N), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008650 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008651 ST->isVolatile(), ST->isNonTemporal(),
8652 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00008653 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008654
Nadav Rotemc653de62012-10-03 16:11:15 +00008655 // Only perform this optimization before the types are legal, because we
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008656 // don't want to perform this optimization on every DAGCombine invocation.
Nadav Rotema569a802012-12-02 17:14:09 +00008657 if (!LegalTypes) {
8658 bool EverChanged = false;
8659
8660 do {
8661 // There can be multiple store sequences on the same chain.
8662 // Keep trying to merge store sequences until we are unable to do so
8663 // or until we merge the last store on the chain.
8664 bool Changed = MergeConsecutiveStores(ST);
8665 EverChanged |= Changed;
8666 if (!Changed) break;
8667 } while (ST->getOpcode() != ISD::DELETED_NODE);
8668
8669 if (EverChanged)
8670 return SDValue(N, 0);
8671 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008672
Evan Cheng8b944d32009-05-28 00:35:15 +00008673 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00008674}
8675
Dan Gohman475871a2008-07-27 21:46:04 +00008676SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
8677 SDValue InVec = N->getOperand(0);
8678 SDValue InVal = N->getOperand(1);
8679 SDValue EltNo = N->getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008680 SDLoc dl(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00008681
Bob Wilson492fd452010-05-19 23:42:58 +00008682 // If the inserted element is an UNDEF, just use the input vector.
8683 if (InVal.getOpcode() == ISD::UNDEF)
8684 return InVec;
8685
Nadav Rotem609d54e2011-02-12 14:40:33 +00008686 EVT VT = InVec.getValueType();
8687
Owen Anderson95771af2011-02-25 21:41:48 +00008688 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00008689 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
8690 return SDValue();
8691
Eli Friedman9db817f2011-09-09 21:04:06 +00008692 // Check that we know which element is being inserted
8693 if (!isa<ConstantSDNode>(EltNo))
8694 return SDValue();
8695 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008696
Eli Friedman9db817f2011-09-09 21:04:06 +00008697 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
8698 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
8699 // vector elements.
8700 SmallVector<SDValue, 8> Ops;
Quentin Colombet75c94332013-07-30 00:24:09 +00008701 // Do not combine these two vectors if the output vector will not replace
8702 // the input vector.
8703 if (InVec.getOpcode() == ISD::BUILD_VECTOR && InVec.hasOneUse()) {
Eli Friedman9db817f2011-09-09 21:04:06 +00008704 Ops.append(InVec.getNode()->op_begin(),
8705 InVec.getNode()->op_end());
8706 } else if (InVec.getOpcode() == ISD::UNDEF) {
8707 unsigned NElts = VT.getVectorNumElements();
8708 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
8709 } else {
8710 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008711 }
Eli Friedman9db817f2011-09-09 21:04:06 +00008712
8713 // Insert the element
8714 if (Elt < Ops.size()) {
8715 // All the operands of BUILD_VECTOR must have the same type;
8716 // we enforce that here.
8717 EVT OpVT = Ops[0].getValueType();
8718 if (InVal.getValueType() != OpVT)
8719 InVal = OpVT.bitsGT(InVal.getValueType()) ?
8720 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
8721 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
8722 Ops[Elt] = InVal;
8723 }
8724
8725 // Return the new vector
8726 return DAG.getNode(ISD::BUILD_VECTOR, dl,
8727 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00008728}
8729
Dan Gohman475871a2008-07-27 21:46:04 +00008730SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008731 // (vextract (scalar_to_vector val, 0) -> val
8732 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00008733 EVT VT = InVec.getValueType();
8734 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008735
Duncan Sandsc356f332011-05-09 08:03:33 +00008736 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
8737 // Check if the result type doesn't match the inserted element type. A
8738 // SCALAR_TO_VECTOR may truncate the inserted element and the
8739 // EXTRACT_VECTOR_ELT may widen the extracted vector.
8740 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00008741 if (InOp.getValueType() != NVT) {
8742 assert(InOp.getValueType().isInteger() && NVT.isInteger());
Andrew Trickac6d9be2013-05-25 02:42:55 +00008743 return DAG.getSExtOrTrunc(InOp, SDLoc(InVec), NVT);
Duncan Sandsc356f332011-05-09 08:03:33 +00008744 }
8745 return InOp;
8746 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008747
Nadav Rotemba05c912012-01-17 21:44:01 +00008748 SDValue EltNo = N->getOperand(1);
8749 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
8750
8751 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
8752 // We only perform this optimization before the op legalization phase because
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008753 // we may introduce new vector instructions which are not backed by TD
8754 // patterns. For example on AVX, extracting elements from a wide vector
8755 // without using extract_subvector.
Nadav Rotemba05c912012-01-17 21:44:01 +00008756 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
8757 && ConstEltNo && !LegalOperations) {
8758 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
8759 int NumElem = VT.getVectorNumElements();
8760 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
8761 // Find the new index to extract from.
8762 int OrigElt = SVOp->getMaskElt(Elt);
8763
8764 // Extracting an undef index is undef.
8765 if (OrigElt == -1)
8766 return DAG.getUNDEF(NVT);
8767
8768 // Select the right vector half to extract from.
8769 if (OrigElt < NumElem) {
8770 InVec = InVec->getOperand(0);
8771 } else {
8772 InVec = InVec->getOperand(1);
8773 OrigElt -= NumElem;
8774 }
8775
Tom Stellard425b76c2013-08-05 22:22:01 +00008776 EVT IndexTy = TLI.getVectorIdxTy();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008777 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(N), NVT,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008778 InVec, DAG.getConstant(OrigElt, IndexTy));
Nadav Rotemba05c912012-01-17 21:44:01 +00008779 }
8780
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008781 // Perform only after legalization to ensure build_vector / vector_shuffle
8782 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00008783 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008784
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008785 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
8786 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
8787 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00008788
Nadav Rotemba05c912012-01-17 21:44:01 +00008789 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00008790 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00008791 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00008792 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00008793 EVT ExtVT = VT.getVectorElementType();
8794 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00008795
Evan Cheng84387ea2012-03-13 22:00:52 +00008796 // If the result of load has to be truncated, then it's not necessarily
8797 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00008798 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00008799 return SDValue();
8800
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008801 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008802 // Don't duplicate a load with other uses.
8803 if (!InVec.hasOneUse())
8804 return SDValue();
8805
Owen Andersone50ed302009-08-10 22:56:29 +00008806 EVT BCVT = InVec.getOperand(0).getValueType();
8807 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008808 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00008809 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
8810 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008811 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00008812 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008813 NewLoad = true;
8814 }
Evan Cheng513da432007-10-06 08:19:55 +00008815
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008816 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00008817 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00008818 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008819 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00008820 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00008821 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00008822 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008823 // Don't duplicate a load with other uses.
8824 if (!InVec.hasOneUse())
8825 return SDValue();
8826
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008827 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00008828 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008829 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
8830 // =>
8831 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00008832
Eli Friedmand6e25602011-12-26 22:49:32 +00008833 // Don't duplicate a load with other uses.
8834 if (!InVec.hasOneUse())
8835 return SDValue();
8836
Mon P Wanga60b5232008-12-11 00:26:16 +00008837 // If the bit convert changed the number of elements, it is unsafe
8838 // to examine the mask.
8839 if (BCNumEltsChanged)
8840 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00008841
8842 // Select the input vector, guarding against out of range extract vector.
8843 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00008844 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00008845 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
8846
Eli Friedmand6e25602011-12-26 22:49:32 +00008847 if (InVec.getOpcode() == ISD::BITCAST) {
8848 // Don't duplicate a load with other uses.
8849 if (!InVec.hasOneUse())
8850 return SDValue();
8851
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008852 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00008853 }
Gabor Greifba36cb52008-08-28 21:40:38 +00008854 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008855 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00008856 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00008857 }
8858 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008859
Eli Friedmand6e25602011-12-26 22:49:32 +00008860 // Make sure we found a non-volatile load and the extractelement is
8861 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00008862 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00008863 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008864
Eric Christopherd81f17a2010-11-03 20:44:42 +00008865 // If Idx was -1 above, Elt is going to be -1, so just return undef.
8866 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00008867 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00008868
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008869 unsigned Align = LN0->getAlignment();
8870 if (NewLoad) {
8871 // Check the resultant load doesn't need a higher alignment than the
8872 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00008873 unsigned NewAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00008874 TLI.getDataLayout()
Eric Christopher503a64d2010-12-09 04:48:06 +00008875 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00008876
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008877 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008878 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00008879
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008880 Align = NewAlign;
8881 }
8882
Dan Gohman475871a2008-07-27 21:46:04 +00008883 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00008884 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008885
Eric Christopherd81f17a2010-11-03 20:44:42 +00008886 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00008887 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00008888 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008889 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00008890 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008891 NewPtr = DAG.getNode(ISD::ADD, SDLoc(N), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008892 DAG.getConstant(PtrOff, PtrType));
8893 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008894
Eli Friedman4db4add2011-11-16 23:50:22 +00008895 // The replacement we need to do here is a little tricky: we need to
8896 // replace an extractelement of a load with a load.
8897 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00008898 // Note that this replacement assumes that the extractvalue is the only
8899 // use of the load; that's okay because we don't want to perform this
8900 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00008901 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00008902 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00008903 if (NVT.bitsGT(LVT)) {
8904 // If the result type of vextract is wider than the load, then issue an
8905 // extending load instead.
8906 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
8907 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008908 Load = DAG.getExtLoad(ExtType, SDLoc(N), NVT, LN0->getChain(),
Evan Cheng84387ea2012-03-13 22:00:52 +00008909 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
8910 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008911 Chain = Load.getValue(1);
8912 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008913 Load = DAG.getLoad(LVT, SDLoc(N), LN0->getChain(), NewPtr,
Evan Cheng84387ea2012-03-13 22:00:52 +00008914 LN0->getPointerInfo().getWithOffset(PtrOff),
Stephen Lin155615d2013-07-08 00:37:03 +00008915 LN0->isVolatile(), LN0->isNonTemporal(),
Evan Cheng84387ea2012-03-13 22:00:52 +00008916 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008917 Chain = Load.getValue(1);
8918 if (NVT.bitsLT(LVT))
Andrew Trickac6d9be2013-05-25 02:42:55 +00008919 Load = DAG.getNode(ISD::TRUNCATE, SDLoc(N), NVT, Load);
Evan Chenga03d3662012-03-13 22:16:11 +00008920 else
Andrew Trickac6d9be2013-05-25 02:42:55 +00008921 Load = DAG.getNode(ISD::BITCAST, SDLoc(N), NVT, Load);
Evan Chenga03d3662012-03-13 22:16:11 +00008922 }
Eli Friedman4db4add2011-11-16 23:50:22 +00008923 WorkListRemover DeadNodes(*this);
8924 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00008925 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00008926 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedman4db4add2011-11-16 23:50:22 +00008927 // Since we're explcitly calling ReplaceAllUses, add the new node to the
8928 // worklist explicitly as well.
8929 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00008930 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00008931 // Make sure to revisit this node to clean it up; it will usually be dead.
8932 AddToWorkList(N);
8933 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00008934 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008935
Dan Gohman475871a2008-07-27 21:46:04 +00008936 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00008937}
Evan Cheng513da432007-10-06 08:19:55 +00008938
Michael Liaofac14ab2012-10-23 23:06:52 +00008939// Simplify (build_vec (ext )) to (bitcast (build_vec ))
8940SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) {
8941 // We perform this optimization post type-legalization because
8942 // the type-legalizer often scalarizes integer-promoted vectors.
8943 // Performing this optimization before may create bit-casts which
8944 // will be type-legalized to complex code sequences.
8945 // We perform this optimization only before the operation legalizer because we
8946 // may introduce illegal operations.
8947 if (Level != AfterLegalizeVectorOps && Level != AfterLegalizeTypes)
8948 return SDValue();
8949
Dan Gohman7f321562007-06-25 16:23:39 +00008950 unsigned NumInScalars = N->getNumOperands();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008951 SDLoc dl(N);
Owen Andersone50ed302009-08-10 22:56:29 +00008952 EVT VT = N->getValueType(0);
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008953
Nadav Rotemb00418a2011-10-29 21:23:04 +00008954 // Check to see if this is a BUILD_VECTOR of a bunch of values
8955 // which come from any_extend or zero_extend nodes. If so, we can create
8956 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00008957 // optimizations. We do not handle sign-extend because we can't fill the sign
8958 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008959 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00008960 bool AllAnyExt = true;
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008961
Craig Topperd3b58892012-01-17 09:09:48 +00008962 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00008963 SDValue In = N->getOperand(i);
8964 // Ignore undef inputs.
8965 if (In.getOpcode() == ISD::UNDEF) continue;
8966
8967 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
8968 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
8969
Nadav Rotemf47368b2011-10-31 20:08:25 +00008970 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008971 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00008972 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008973 break;
8974 }
8975
8976 // The input is a ZeroExt or AnyExt. Check the original type.
8977 EVT InTy = In.getOperand(0).getValueType();
8978
8979 // Check that all of the widened source types are the same.
8980 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00008981 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008982 SourceType = InTy;
8983 else if (InTy != SourceType) {
8984 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00008985 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008986 break;
8987 }
8988
8989 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00008990 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008991 }
8992
Nadav Rotemf47368b2011-10-31 20:08:25 +00008993 // In order to have valid types, all of the inputs must be extended from the
8994 // same source type and all of the inputs must be any or zero extend.
8995 // Scalar sizes must be a power of two.
Michael Liaofac14ab2012-10-23 23:06:52 +00008996 EVT OutScalarTy = VT.getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008997 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00008998 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
8999 isPowerOf2_32(SourceType.getSizeInBits());
9000
Nadav Rotem6431ff92012-03-15 08:49:06 +00009001 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
9002 // turn into a single shuffle instruction.
Michael Liaofac14ab2012-10-23 23:06:52 +00009003 if (!ValidTypes)
9004 return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00009005
Michael Liaofac14ab2012-10-23 23:06:52 +00009006 bool isLE = TLI.isLittleEndian();
9007 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
9008 assert(ElemRatio > 1 && "Invalid element size ratio");
9009 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
9010 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00009011
Michael Liaofac14ab2012-10-23 23:06:52 +00009012 unsigned NewBVElems = ElemRatio * VT.getVectorNumElements();
9013 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00009014
Michael Liaofac14ab2012-10-23 23:06:52 +00009015 // Populate the new build_vector
Jakub Staszakadf38912012-10-24 00:38:25 +00009016 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Michael Liaofac14ab2012-10-23 23:06:52 +00009017 SDValue Cast = N->getOperand(i);
9018 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
9019 Cast.getOpcode() == ISD::ZERO_EXTEND ||
9020 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
9021 SDValue In;
9022 if (Cast.getOpcode() == ISD::UNDEF)
9023 In = DAG.getUNDEF(SourceType);
9024 else
9025 In = Cast->getOperand(0);
9026 unsigned Index = isLE ? (i * ElemRatio) :
9027 (i * ElemRatio + (ElemRatio - 1));
Nadav Rotemb00418a2011-10-29 21:23:04 +00009028
Michael Liaofac14ab2012-10-23 23:06:52 +00009029 assert(Index < Ops.size() && "Invalid index");
9030 Ops[Index] = In;
Nadav Rotemb00418a2011-10-29 21:23:04 +00009031 }
Chris Lattnerca242442006-03-19 01:27:56 +00009032
Michael Liaofac14ab2012-10-23 23:06:52 +00009033 // The type of the new BUILD_VECTOR node.
9034 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
9035 assert(VecVT.getSizeInBits() == VT.getSizeInBits() &&
9036 "Invalid vector size");
9037 // Check if the new vector type is legal.
9038 if (!isTypeLegal(VecVT)) return SDValue();
9039
9040 // Make the new BUILD_VECTOR.
9041 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, &Ops[0], Ops.size());
9042
9043 // The new BUILD_VECTOR node has the potential to be further optimized.
9044 AddToWorkList(BV.getNode());
9045 // Bitcast to the desired type.
9046 return DAG.getNode(ISD::BITCAST, dl, VT, BV);
9047}
9048
Michael Liao1a5cc712012-10-24 04:14:18 +00009049SDValue DAGCombiner::reduceBuildVecConvertToConvertBuildVec(SDNode *N) {
9050 EVT VT = N->getValueType(0);
9051
9052 unsigned NumInScalars = N->getNumOperands();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009053 SDLoc dl(N);
Michael Liao1a5cc712012-10-24 04:14:18 +00009054
9055 EVT SrcVT = MVT::Other;
9056 unsigned Opcode = ISD::DELETED_NODE;
9057 unsigned NumDefs = 0;
9058
9059 for (unsigned i = 0; i != NumInScalars; ++i) {
9060 SDValue In = N->getOperand(i);
9061 unsigned Opc = In.getOpcode();
9062
9063 if (Opc == ISD::UNDEF)
9064 continue;
9065
9066 // If all scalar values are floats and converted from integers.
9067 if (Opcode == ISD::DELETED_NODE &&
9068 (Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP)) {
9069 Opcode = Opc;
Michael Liao1a5cc712012-10-24 04:14:18 +00009070 }
Tom Stellardd40758b2013-01-02 22:13:01 +00009071
Michael Liao1a5cc712012-10-24 04:14:18 +00009072 if (Opc != Opcode)
9073 return SDValue();
9074
9075 EVT InVT = In.getOperand(0).getValueType();
9076
9077 // If all scalar values are typed differently, bail out. It's chosen to
9078 // simplify BUILD_VECTOR of integer types.
9079 if (SrcVT == MVT::Other)
9080 SrcVT = InVT;
9081 if (SrcVT != InVT)
9082 return SDValue();
9083 NumDefs++;
9084 }
9085
9086 // If the vector has just one element defined, it's not worth to fold it into
9087 // a vectorized one.
9088 if (NumDefs < 2)
9089 return SDValue();
9090
9091 assert((Opcode == ISD::UINT_TO_FP || Opcode == ISD::SINT_TO_FP)
9092 && "Should only handle conversion from integer to float.");
9093 assert(SrcVT != MVT::Other && "Cannot determine source type!");
9094
9095 EVT NVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumInScalars);
Tom Stellardd40758b2013-01-02 22:13:01 +00009096
9097 if (!TLI.isOperationLegalOrCustom(Opcode, NVT))
9098 return SDValue();
9099
Michael Liao1a5cc712012-10-24 04:14:18 +00009100 SmallVector<SDValue, 8> Opnds;
9101 for (unsigned i = 0; i != NumInScalars; ++i) {
9102 SDValue In = N->getOperand(i);
9103
9104 if (In.getOpcode() == ISD::UNDEF)
9105 Opnds.push_back(DAG.getUNDEF(SrcVT));
9106 else
9107 Opnds.push_back(In.getOperand(0));
9108 }
9109 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT,
9110 &Opnds[0], Opnds.size());
9111 AddToWorkList(BV.getNode());
9112
9113 return DAG.getNode(Opcode, dl, VT, BV);
9114}
9115
Michael Liaofac14ab2012-10-23 23:06:52 +00009116SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
9117 unsigned NumInScalars = N->getNumOperands();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009118 SDLoc dl(N);
Michael Liaofac14ab2012-10-23 23:06:52 +00009119 EVT VT = N->getValueType(0);
9120
9121 // A vector built entirely of undefs is undef.
9122 if (ISD::allOperandsUndef(N))
9123 return DAG.getUNDEF(VT);
9124
9125 SDValue V = reduceBuildVecExtToExtBuildVec(N);
9126 if (V.getNode())
9127 return V;
9128
Michael Liao1a5cc712012-10-24 04:14:18 +00009129 V = reduceBuildVecConvertToConvertBuildVec(N);
9130 if (V.getNode())
9131 return V;
9132
Dan Gohman7f321562007-06-25 16:23:39 +00009133 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
9134 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
9135 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00009136
9137 // May only combine to shuffle after legalize if shuffle is legal.
9138 if (LegalOperations &&
9139 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
9140 return SDValue();
9141
Dan Gohman475871a2008-07-27 21:46:04 +00009142 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00009143 for (unsigned i = 0; i != NumInScalars; ++i) {
9144 // Ignore undef inputs.
9145 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00009146
Dan Gohman7f321562007-06-25 16:23:39 +00009147 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00009148 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00009149 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00009150 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00009151 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009152 break;
9153 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009154
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009155 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00009156 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009157 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
9158 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00009159
Gabor Greifba36cb52008-08-28 21:40:38 +00009160 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00009161 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00009162 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00009163 VecIn2 = ExtractedFromVec;
9164 } else {
9165 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00009166 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009167 break;
9168 }
9169 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009170
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009171 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00009172 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00009173 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00009174 for (unsigned i = 0; i != NumInScalars; ++i) {
9175 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00009176 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009177 continue;
9178 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009179
Rafael Espindola15684b22009-04-24 12:40:33 +00009180 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00009181 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00009182 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009183 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00009184 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
9185 if (ExtIndex > VT.getVectorNumElements())
9186 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009187
Nate Begeman5a5ca152009-04-29 05:20:52 +00009188 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009189 continue;
9190 }
9191
9192 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00009193 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00009194 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009195 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009196
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009197 // We can't generate a shuffle node with mismatched input and output types.
9198 // Attempt to transform a single input vector to the correct type.
9199 if ((VT != VecIn1.getValueType())) {
9200 // We don't support shuffeling between TWO values of different types.
9201 if (VecIn2.getNode() != 0)
9202 return SDValue();
9203
9204 // We only support widening of vectors which are half the size of the
9205 // output registers. For example XMM->YMM widening on X86 with AVX.
9206 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
9207 return SDValue();
9208
James Molloy8cd08bf2012-09-10 14:01:21 +00009209 // If the input vector type has a different base type to the output
9210 // vector type, bail out.
9211 if (VecIn1.getValueType().getVectorElementType() !=
9212 VT.getVectorElementType())
9213 return SDValue();
9214
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00009215 // Widen the input vector by adding undef values.
Michael Liaofac14ab2012-10-23 23:06:52 +00009216 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00009217 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009218 }
9219
9220 // If VecIn2 is unused then change it to undef.
9221 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
9222
Nadav Rotem6dfabb62012-09-20 08:53:31 +00009223 // Check that we were able to transform all incoming values to the same
9224 // type.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00009225 if (VecIn2.getValueType() != VecIn1.getValueType() ||
9226 VecIn1.getValueType() != VT)
9227 return SDValue();
9228
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009229 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00009230 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00009231 return SDValue();
9232
Dan Gohman7f321562007-06-25 16:23:39 +00009233 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00009234 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00009235 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009236 Ops[1] = VecIn2;
Michael Liaofac14ab2012-10-23 23:06:52 +00009237 return DAG.getVectorShuffle(VT, dl, Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009238 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009239
Dan Gohman475871a2008-07-27 21:46:04 +00009240 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00009241}
9242
Dan Gohman475871a2008-07-27 21:46:04 +00009243SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00009244 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
9245 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
9246 // inputs come from at most two distinct vectors, turn this into a shuffle
9247 // node.
9248
9249 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00009250 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00009251 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00009252
Nadav Rotemb7e230d2012-07-14 21:30:27 +00009253 // Check if all of the operands are undefs.
Nadav Rotemb87bdac2012-07-15 08:38:23 +00009254 if (ISD::allOperandsUndef(N))
Nadav Rotemb7e230d2012-07-14 21:30:27 +00009255 return DAG.getUNDEF(N->getValueType(0));
9256
Nadav Rotemb2ed5fa2013-05-01 19:18:51 +00009257 // Type legalization of vectors and DAG canonicalization of SHUFFLE_VECTOR
9258 // nodes often generate nop CONCAT_VECTOR nodes.
9259 // Scan the CONCAT_VECTOR operands and look for a CONCAT operations that
9260 // place the incoming vectors at the exact same location.
9261 SDValue SingleSource = SDValue();
9262 unsigned PartNumElem = N->getOperand(0).getValueType().getVectorNumElements();
9263
9264 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
9265 SDValue Op = N->getOperand(i);
9266
9267 if (Op.getOpcode() == ISD::UNDEF)
9268 continue;
9269
9270 // Check if this is the identity extract:
9271 if (Op.getOpcode() != ISD::EXTRACT_SUBVECTOR)
9272 return SDValue();
9273
9274 // Find the single incoming vector for the extract_subvector.
9275 if (SingleSource.getNode()) {
9276 if (Op.getOperand(0) != SingleSource)
9277 return SDValue();
9278 } else {
9279 SingleSource = Op.getOperand(0);
Michael Kuperstein27202482013-05-06 08:06:13 +00009280
9281 // Check the source type is the same as the type of the result.
9282 // If not, this concat may extend the vector, so we can not
9283 // optimize it away.
9284 if (SingleSource.getValueType() != N->getValueType(0))
9285 return SDValue();
Nadav Rotemb2ed5fa2013-05-01 19:18:51 +00009286 }
9287
9288 unsigned IdentityIndex = i * PartNumElem;
9289 ConstantSDNode *CS = dyn_cast<ConstantSDNode>(Op.getOperand(1));
9290 // The extract index must be constant.
9291 if (!CS)
9292 return SDValue();
Stephen Lin155615d2013-07-08 00:37:03 +00009293
Nadav Rotemb2ed5fa2013-05-01 19:18:51 +00009294 // Check that we are reading from the identity index.
9295 if (CS->getZExtValue() != IdentityIndex)
9296 return SDValue();
9297 }
9298
9299 if (SingleSource.getNode())
9300 return SingleSource;
Stephen Lin155615d2013-07-08 00:37:03 +00009301
Dan Gohman475871a2008-07-27 21:46:04 +00009302 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00009303}
9304
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00009305SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
9306 EVT NVT = N->getValueType(0);
9307 SDValue V = N->getOperand(0);
9308
Michael Liao13429e22012-10-17 20:48:33 +00009309 if (V->getOpcode() == ISD::CONCAT_VECTORS) {
9310 // Combine:
9311 // (extract_subvec (concat V1, V2, ...), i)
9312 // Into:
9313 // Vi if possible
Michael Liao9aecdb52012-10-19 03:17:00 +00009314 // Only operand 0 is checked as 'concat' assumes all inputs of the same type.
9315 if (V->getOperand(0).getValueType() != NVT)
9316 return SDValue();
Michael Liao13429e22012-10-17 20:48:33 +00009317 unsigned Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
9318 unsigned NumElems = NVT.getVectorNumElements();
9319 assert((Idx % NumElems) == 0 &&
9320 "IDX in concat is not a multiple of the result vector length.");
9321 return V->getOperand(Idx / NumElems);
9322 }
9323
Michael Liaob4f98ea2013-03-25 23:47:35 +00009324 // Skip bitcasting
9325 if (V->getOpcode() == ISD::BITCAST)
9326 V = V.getOperand(0);
9327
9328 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009329 SDLoc dl(N);
Michael Liaob4f98ea2013-03-25 23:47:35 +00009330 // Handle only simple case where vector being inserted and vector
9331 // being extracted are of same type, and are half size of larger vectors.
9332 EVT BigVT = V->getOperand(0).getValueType();
9333 EVT SmallVT = V->getOperand(1).getValueType();
9334 if (!NVT.bitsEq(SmallVT) || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
9335 return SDValue();
9336
9337 // Only handle cases where both indexes are constants with the same type.
9338 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
9339 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
9340
9341 if (InsIdx && ExtIdx &&
9342 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
9343 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
9344 // Combine:
9345 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
9346 // Into:
9347 // indices are equal or bit offsets are equal => V1
9348 // otherwise => (extract_subvec V1, ExtIdx)
9349 if (InsIdx->getZExtValue() * SmallVT.getScalarType().getSizeInBits() ==
9350 ExtIdx->getZExtValue() * NVT.getScalarType().getSizeInBits())
9351 return DAG.getNode(ISD::BITCAST, dl, NVT, V->getOperand(1));
9352 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NVT,
9353 DAG.getNode(ISD::BITCAST, dl,
9354 N->getOperand(0).getValueType(),
9355 V->getOperand(0)), N->getOperand(1));
9356 }
9357 }
9358
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00009359 return SDValue();
9360}
9361
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009362// Tries to turn a shuffle of two CONCAT_VECTORS into a single concat.
9363static SDValue partitionShuffleOfConcats(SDNode *N, SelectionDAG &DAG) {
9364 EVT VT = N->getValueType(0);
9365 unsigned NumElts = VT.getVectorNumElements();
9366
9367 SDValue N0 = N->getOperand(0);
9368 SDValue N1 = N->getOperand(1);
9369 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
9370
9371 SmallVector<SDValue, 4> Ops;
9372 EVT ConcatVT = N0.getOperand(0).getValueType();
9373 unsigned NumElemsPerConcat = ConcatVT.getVectorNumElements();
9374 unsigned NumConcats = NumElts / NumElemsPerConcat;
9375
9376 // Look at every vector that's inserted. We're looking for exact
9377 // subvector-sized copies from a concatenated vector
9378 for (unsigned I = 0; I != NumConcats; ++I) {
9379 // Make sure we're dealing with a copy.
9380 unsigned Begin = I * NumElemsPerConcat;
Hao Liu3778c042013-05-13 02:07:05 +00009381 bool AllUndef = true, NoUndef = true;
9382 for (unsigned J = Begin; J != Begin + NumElemsPerConcat; ++J) {
9383 if (SVN->getMaskElt(J) >= 0)
9384 AllUndef = false;
9385 else
9386 NoUndef = false;
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009387 }
9388
Hao Liu3778c042013-05-13 02:07:05 +00009389 if (NoUndef) {
Hao Liu3778c042013-05-13 02:07:05 +00009390 if (SVN->getMaskElt(Begin) % NumElemsPerConcat != 0)
9391 return SDValue();
9392
9393 for (unsigned J = 1; J != NumElemsPerConcat; ++J)
9394 if (SVN->getMaskElt(Begin + J - 1) + 1 != SVN->getMaskElt(Begin + J))
9395 return SDValue();
9396
9397 unsigned FirstElt = SVN->getMaskElt(Begin) / NumElemsPerConcat;
9398 if (FirstElt < N0.getNumOperands())
9399 Ops.push_back(N0.getOperand(FirstElt));
9400 else
9401 Ops.push_back(N1.getOperand(FirstElt - N0.getNumOperands()));
9402
9403 } else if (AllUndef) {
9404 Ops.push_back(DAG.getUNDEF(N0.getOperand(0).getValueType()));
9405 } else { // Mixed with general masks and undefs, can't do optimization.
9406 return SDValue();
9407 }
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009408 }
9409
Andrew Trickac6d9be2013-05-25 02:42:55 +00009410 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, Ops.data(),
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009411 Ops.size());
9412}
9413
Dan Gohman475871a2008-07-27 21:46:04 +00009414SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00009415 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00009416 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00009417
Mon P Wangaeb06d22008-11-10 04:46:22 +00009418 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00009419 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00009420
Craig Topperae1bec52012-04-09 05:16:56 +00009421 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00009422
Craig Topper481b79c2012-01-04 08:07:43 +00009423 // Canonicalize shuffle undef, undef -> undef
9424 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
9425 return DAG.getUNDEF(VT);
9426
9427 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
9428
9429 // Canonicalize shuffle v, v -> v, undef
9430 if (N0 == N1) {
9431 SmallVector<int, 8> NewMask;
9432 for (unsigned i = 0; i != NumElts; ++i) {
9433 int Idx = SVN->getMaskElt(i);
9434 if (Idx >= (int)NumElts) Idx -= NumElts;
9435 NewMask.push_back(Idx);
9436 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00009437 return DAG.getVectorShuffle(VT, SDLoc(N), N0, DAG.getUNDEF(VT),
Craig Topper481b79c2012-01-04 08:07:43 +00009438 &NewMask[0]);
9439 }
9440
9441 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
9442 if (N0.getOpcode() == ISD::UNDEF) {
9443 SmallVector<int, 8> NewMask;
9444 for (unsigned i = 0; i != NumElts; ++i) {
9445 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00009446 if (Idx >= 0) {
Craig Topper01d22aa2013-08-08 07:38:55 +00009447 if (Idx >= (int)NumElts)
Craig Topper4b206bd2012-04-09 05:55:33 +00009448 Idx -= NumElts;
Craig Topper01d22aa2013-08-08 07:38:55 +00009449 else
9450 Idx = -1; // remove reference to lhs
Craig Topper4b206bd2012-04-09 05:55:33 +00009451 }
9452 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00009453 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00009454 return DAG.getVectorShuffle(VT, SDLoc(N), N1, DAG.getUNDEF(VT),
Craig Topper481b79c2012-01-04 08:07:43 +00009455 &NewMask[0]);
9456 }
9457
9458 // Remove references to rhs if it is undef
9459 if (N1.getOpcode() == ISD::UNDEF) {
9460 bool Changed = false;
9461 SmallVector<int, 8> NewMask;
9462 for (unsigned i = 0; i != NumElts; ++i) {
9463 int Idx = SVN->getMaskElt(i);
9464 if (Idx >= (int)NumElts) {
9465 Idx = -1;
9466 Changed = true;
9467 }
9468 NewMask.push_back(Idx);
9469 }
9470 if (Changed)
Andrew Trickac6d9be2013-05-25 02:42:55 +00009471 return DAG.getVectorShuffle(VT, SDLoc(N), N0, N1, &NewMask[0]);
Craig Topper481b79c2012-01-04 08:07:43 +00009472 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00009473
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009474 // If it is a splat, check if the argument vector is another splat or a
9475 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009476 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00009477 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00009478
Dan Gohman7f321562007-06-25 16:23:39 +00009479 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00009480 // not the number of vector elements, look through it. Be careful not to
9481 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009482 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00009483 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00009484 if (ConvInput.getValueType().isVector() &&
9485 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00009486 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00009487 }
9488
Dan Gohman7f321562007-06-25 16:23:39 +00009489 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009490 assert(V->getNumOperands() == NumElts &&
9491 "BUILD_VECTOR has wrong number of operands");
9492 SDValue Base;
9493 bool AllSame = true;
9494 for (unsigned i = 0; i != NumElts; ++i) {
9495 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
9496 Base = V->getOperand(i);
9497 break;
Evan Cheng917ec982006-07-21 08:25:53 +00009498 }
Evan Cheng917ec982006-07-21 08:25:53 +00009499 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009500 // Splat of <u, u, u, u>, return <u, u, u, u>
9501 if (!Base.getNode())
9502 return N0;
9503 for (unsigned i = 0; i != NumElts; ++i) {
9504 if (V->getOperand(i) != Base) {
9505 AllSame = false;
9506 break;
9507 }
9508 }
9509 // Splat of <x, x, x, x>, return <x, x, x, x>
9510 if (AllSame)
9511 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00009512 }
9513 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00009514
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009515 if (N0.getOpcode() == ISD::CONCAT_VECTORS &&
9516 Level < AfterLegalizeVectorOps &&
9517 (N1.getOpcode() == ISD::UNDEF ||
9518 (N1.getOpcode() == ISD::CONCAT_VECTORS &&
9519 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()))) {
9520 SDValue V = partitionShuffleOfConcats(N, DAG);
9521
9522 if (V.getNode())
9523 return V;
9524 }
9525
Nadav Rotem4ac90812012-04-01 19:31:22 +00009526 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009527 // and it reverses the swizzle of the previous shuffle then we can
9528 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00009529 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
9530 N1.getOpcode() == ISD::UNDEF) {
9531
Nadav Rotem4ac90812012-04-01 19:31:22 +00009532 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
9533
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009534 // Shuffle nodes can only reverse shuffles with a single non-undef value.
9535 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
9536 return SDValue();
9537
Craig Topperae1bec52012-04-09 05:16:56 +00009538 // The incoming shuffle must be of the same type as the result of the
9539 // current shuffle.
9540 assert(OtherSV->getOperand(0).getValueType() == VT &&
9541 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00009542
9543 for (unsigned i = 0; i != NumElts; ++i) {
9544 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00009545 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00009546 // Next, this index comes from the first value, which is the incoming
9547 // shuffle. Adopt the incoming index.
9548 if (Idx >= 0)
9549 Idx = OtherSV->getMaskElt(Idx);
9550
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009551 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00009552 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009553 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00009554 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009555
9556 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00009557 }
9558
Dan Gohman475871a2008-07-27 21:46:04 +00009559 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00009560}
9561
Evan Cheng44f1f092006-04-20 08:56:16 +00009562/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00009563/// an AND to a vector_shuffle with the destination vector and a zero vector.
9564/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00009565/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00009566SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00009567 EVT VT = N->getValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009568 SDLoc dl(N);
Dan Gohman475871a2008-07-27 21:46:04 +00009569 SDValue LHS = N->getOperand(0);
9570 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00009571 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009572 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00009573 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00009574 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00009575 SmallVector<int, 8> Indices;
9576 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00009577 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00009578 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00009579 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00009580 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00009581
9582 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00009583 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00009584 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00009585 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00009586 else
Dan Gohman475871a2008-07-27 21:46:04 +00009587 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009588 }
9589
9590 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00009591 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00009592 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00009593 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009594
Dan Gohman7f321562007-06-25 16:23:39 +00009595 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00009596 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00009597 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00009598 DAG.getConstant(0, EltVT));
Andrew Trickac6d9be2013-05-25 02:42:55 +00009599 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Nate Begeman9008ca62009-04-27 18:41:29 +00009600 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009601 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00009602 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009603 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00009604 }
9605 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009606
Dan Gohman475871a2008-07-27 21:46:04 +00009607 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009608}
9609
Dan Gohman7f321562007-06-25 16:23:39 +00009610/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00009611SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Bob Wilsond7273432010-12-17 23:06:49 +00009612 assert(N->getValueType(0).isVector() &&
9613 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00009614
Dan Gohman475871a2008-07-27 21:46:04 +00009615 SDValue LHS = N->getOperand(0);
9616 SDValue RHS = N->getOperand(1);
9617 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00009618 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00009619
Dan Gohman7f321562007-06-25 16:23:39 +00009620 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00009621 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00009622 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00009623 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00009624 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00009625 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00009626 SDValue LHSOp = LHS.getOperand(i);
9627 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00009628 // If these two elements can't be folded, bail out.
9629 if ((LHSOp.getOpcode() != ISD::UNDEF &&
9630 LHSOp.getOpcode() != ISD::Constant &&
9631 LHSOp.getOpcode() != ISD::ConstantFP) ||
9632 (RHSOp.getOpcode() != ISD::UNDEF &&
9633 RHSOp.getOpcode() != ISD::Constant &&
9634 RHSOp.getOpcode() != ISD::ConstantFP))
9635 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00009636
Evan Cheng7b336a82006-05-31 06:08:35 +00009637 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00009638 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
9639 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00009640 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00009641 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00009642 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00009643 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00009644 break;
9645 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009646
Bob Wilsond7273432010-12-17 23:06:49 +00009647 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00009648 EVT RVT = RHSOp.getValueType();
9649 if (RVT != VT) {
9650 // Integer BUILD_VECTOR operands may have types larger than the element
9651 // size (e.g., when the element type is not legal). Prior to type
9652 // legalization, the types may not match between the two BUILD_VECTORS.
9653 // Truncate one of the operands to make them match.
9654 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009655 RHSOp = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, RHSOp);
Bob Wilsondb2b18f2011-10-18 17:34:47 +00009656 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009657 LHSOp = DAG.getNode(ISD::TRUNCATE, SDLoc(N), RVT, LHSOp);
Bob Wilsondb2b18f2011-10-18 17:34:47 +00009658 VT = RVT;
9659 }
9660 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00009661 SDValue FoldOp = DAG.getNode(N->getOpcode(), SDLoc(LHS), VT,
Evan Chenga0839882010-05-18 00:03:40 +00009662 LHSOp, RHSOp);
9663 if (FoldOp.getOpcode() != ISD::UNDEF &&
9664 FoldOp.getOpcode() != ISD::Constant &&
9665 FoldOp.getOpcode() != ISD::ConstantFP)
9666 break;
9667 Ops.push_back(FoldOp);
9668 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00009669 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009670
Bob Wilsond7273432010-12-17 23:06:49 +00009671 if (Ops.size() == LHS.getNumOperands())
Andrew Trickac6d9be2013-05-25 02:42:55 +00009672 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Bob Wilsond7273432010-12-17 23:06:49 +00009673 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00009674 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009675
Dan Gohman475871a2008-07-27 21:46:04 +00009676 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00009677}
9678
Craig Topperdd201ff2012-09-11 01:45:21 +00009679/// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG.
9680SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) {
Craig Topperdd201ff2012-09-11 01:45:21 +00009681 assert(N->getValueType(0).isVector() &&
9682 "SimplifyVUnaryOp only works on vectors!");
9683
9684 SDValue N0 = N->getOperand(0);
9685
9686 if (N0.getOpcode() != ISD::BUILD_VECTOR)
9687 return SDValue();
9688
9689 // Operand is a BUILD_VECTOR node, see if we can constant fold it.
9690 SmallVector<SDValue, 8> Ops;
9691 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
9692 SDValue Op = N0.getOperand(i);
9693 if (Op.getOpcode() != ISD::UNDEF &&
9694 Op.getOpcode() != ISD::ConstantFP)
9695 break;
9696 EVT EltVT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009697 SDValue FoldOp = DAG.getNode(N->getOpcode(), SDLoc(N0), EltVT, Op);
Craig Topperdd201ff2012-09-11 01:45:21 +00009698 if (FoldOp.getOpcode() != ISD::UNDEF &&
9699 FoldOp.getOpcode() != ISD::ConstantFP)
9700 break;
9701 Ops.push_back(FoldOp);
9702 AddToWorkList(FoldOp.getNode());
9703 }
9704
9705 if (Ops.size() != N0.getNumOperands())
9706 return SDValue();
9707
Andrew Trickac6d9be2013-05-25 02:42:55 +00009708 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Craig Topperdd201ff2012-09-11 01:45:21 +00009709 N0.getValueType(), &Ops[0], Ops.size());
9710}
9711
Andrew Trickac6d9be2013-05-25 02:42:55 +00009712SDValue DAGCombiner::SimplifySelect(SDLoc DL, SDValue N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00009713 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00009714 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00009715
Bill Wendling836ca7d2009-01-30 23:59:18 +00009716 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00009717 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009718
Nate Begemanf845b452005-10-08 00:29:44 +00009719 // If we got a simplified select_cc node back from SimplifySelectCC, then
9720 // break it down into a new SETCC node, and a new SELECT node, and then return
9721 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00009722 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009723 // Check to see if we got a select_cc back (to turn into setcc/select).
9724 // Otherwise, just return whatever node we got back, like fabs.
9725 if (SCC.getOpcode() == ISD::SELECT_CC) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009726 SDValue SETCC = DAG.getNode(ISD::SETCC, SDLoc(N0),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009727 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009728 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009729 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00009730 AddToWorkList(SETCC.getNode());
Matt Arsenaultb05e4772013-06-14 22:04:37 +00009731 return DAG.getSelect(SDLoc(SCC), SCC.getValueType(),
9732 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00009733 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009734
Nate Begemanf845b452005-10-08 00:29:44 +00009735 return SCC;
9736 }
Dan Gohman475871a2008-07-27 21:46:04 +00009737 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00009738}
9739
Chris Lattner40c62d52005-10-18 06:04:22 +00009740/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
9741/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00009742/// select. Callers of this should assume that TheSelect is deleted if this
9743/// returns true. As such, they should return the appropriate thing (e.g. the
9744/// node) back to the top-level of the DAG combiner loop to avoid it being
9745/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00009746bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00009747 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009748
Nadav Rotemf94fdb62011-02-11 19:57:47 +00009749 // Cannot simplify select with vector condition
9750 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
9751
Chris Lattner40c62d52005-10-18 06:04:22 +00009752 // If this is a select from two identical things, try to pull the operation
9753 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00009754 if (LHS.getOpcode() != RHS.getOpcode() ||
9755 !LHS.hasOneUse() || !RHS.hasOneUse())
9756 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009757
Chris Lattner18061612010-09-21 15:46:59 +00009758 // If this is a load and the token chain is identical, replace the select
9759 // of two loads with a load through a select of the address to load from.
9760 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
9761 // constants have been dropped into the constant pool.
9762 if (LHS.getOpcode() == ISD::LOAD) {
9763 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
9764 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009765
Chris Lattner18061612010-09-21 15:46:59 +00009766 // Token chains must be identical.
9767 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00009768 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00009769 LLD->isVolatile() || RLD->isVolatile() ||
9770 // If this is an EXTLOAD, the VT's must match.
9771 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00009772 // If this is an EXTLOAD, the kind of extension must match.
9773 (LLD->getExtensionType() != RLD->getExtensionType() &&
9774 // The only exception is if one of the extensions is anyext.
9775 LLD->getExtensionType() != ISD::EXTLOAD &&
9776 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00009777 // FIXME: this discards src value information. This is
9778 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00009779 // both potential memory locations. Since we are discarding
9780 // src value info, don't do the transformation if the memory
9781 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00009782 LLD->getPointerInfo().getAddrSpace() != 0 ||
Pete Cooperb0fde6d2013-02-12 03:14:50 +00009783 RLD->getPointerInfo().getAddrSpace() != 0 ||
9784 !TLI.isOperationLegalOrCustom(TheSelect->getOpcode(),
9785 LLD->getBasePtr().getValueType()))
Chris Lattner18061612010-09-21 15:46:59 +00009786 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009787
Chris Lattnerf1658062010-09-21 15:58:55 +00009788 // Check that the select condition doesn't reach either load. If so,
9789 // folding this will induce a cycle into the DAG. If not, this is safe to
9790 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00009791 SDValue Addr;
9792 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00009793 SDNode *CondNode = TheSelect->getOperand(0).getNode();
9794 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
9795 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
9796 return false;
Nadav Rotem1c5bf3f2012-10-18 18:06:48 +00009797 // The loads must not depend on one another.
9798 if (LLD->isPredecessorOf(RLD) ||
9799 RLD->isPredecessorOf(LLD))
9800 return false;
Matt Arsenaultb05e4772013-06-14 22:04:37 +00009801 Addr = DAG.getSelect(SDLoc(TheSelect),
9802 LLD->getBasePtr().getValueType(),
9803 TheSelect->getOperand(0), LLD->getBasePtr(),
9804 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00009805 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00009806 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
9807 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
9808
9809 if ((LLD->hasAnyUseOfValue(1) &&
9810 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00009811 (RLD->hasAnyUseOfValue(1) &&
9812 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00009813 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009814
Andrew Trickac6d9be2013-05-25 02:42:55 +00009815 Addr = DAG.getNode(ISD::SELECT_CC, SDLoc(TheSelect),
Chris Lattnerf1658062010-09-21 15:58:55 +00009816 LLD->getBasePtr().getValueType(),
9817 TheSelect->getOperand(0),
9818 TheSelect->getOperand(1),
9819 LLD->getBasePtr(), RLD->getBasePtr(),
9820 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00009821 }
9822
Chris Lattnerf1658062010-09-21 15:58:55 +00009823 SDValue Load;
9824 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
9825 Load = DAG.getLoad(TheSelect->getValueType(0),
Andrew Trickac6d9be2013-05-25 02:42:55 +00009826 SDLoc(TheSelect),
Chris Lattnerf1658062010-09-21 15:58:55 +00009827 // FIXME: Discards pointer info.
9828 LLD->getChain(), Addr, MachinePointerInfo(),
9829 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009830 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00009831 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00009832 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
9833 RLD->getExtensionType() : LLD->getExtensionType(),
Andrew Trickac6d9be2013-05-25 02:42:55 +00009834 SDLoc(TheSelect),
Stuart Hastingsa9011292011-02-16 16:23:55 +00009835 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00009836 // FIXME: Discards pointer info.
9837 LLD->getChain(), Addr, MachinePointerInfo(),
9838 LLD->getMemoryVT(), LLD->isVolatile(),
9839 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00009840 }
Chris Lattnerf1658062010-09-21 15:58:55 +00009841
9842 // Users of the select now use the result of the load.
9843 CombineTo(TheSelect, Load);
9844
9845 // Users of the old loads now use the new load's chain. We know the
9846 // old-load value is dead now.
9847 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
9848 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
9849 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00009850 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009851
Chris Lattner40c62d52005-10-18 06:04:22 +00009852 return false;
9853}
9854
Chris Lattner600fec32009-03-11 05:08:08 +00009855/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
9856/// where 'cond' is the comparison specified by CC.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009857SDValue DAGCombiner::SimplifySelectCC(SDLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00009858 SDValue N2, SDValue N3,
9859 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00009860 // (x ? y : y) -> y.
9861 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009862
Owen Andersone50ed302009-08-10 22:56:29 +00009863 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00009864 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
9865 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
9866 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009867
9868 // Determine if the condition we're dealing with is constant
Matt Arsenault225ed702013-05-18 00:21:46 +00009869 SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009870 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00009871 if (SCC.getNode()) AddToWorkList(SCC.getNode());
9872 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009873
9874 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00009875 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009876 return N2;
9877 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00009878 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009879 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00009880
Nate Begemanf845b452005-10-08 00:29:44 +00009881 // Check to see if we can simplify the select into an fabs node
9882 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
9883 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00009884 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009885 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
9886 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
9887 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
9888 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009889 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009890
Nate Begemanf845b452005-10-08 00:29:44 +00009891 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
9892 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
9893 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
9894 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009895 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00009896 }
9897 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009898
Chris Lattner600fec32009-03-11 05:08:08 +00009899 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
9900 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
9901 // in it. This is a win when the constant is not otherwise available because
9902 // it replaces two constant pool loads with one. We only do this if the FP
9903 // type is known to be legal, because if it isn't, then we are before legalize
9904 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00009905 // messing with soft float) and if the ConstantFP is not legal, because if
9906 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00009907 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
9908 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
9909 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00009910 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
9911 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00009912 // If both constants have multiple uses, then we won't need to do an
9913 // extra load, they are likely around in registers for other users.
9914 (TV->hasOneUse() || FV->hasOneUse())) {
9915 Constant *Elts[] = {
9916 const_cast<ConstantFP*>(FV->getConstantFPValue()),
9917 const_cast<ConstantFP*>(TV->getConstantFPValue())
9918 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009919 Type *FPTy = Elts[0]->getType();
Micah Villmow3574eca2012-10-08 16:38:25 +00009920 const DataLayout &TD = *TLI.getDataLayout();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009921
Chris Lattner600fec32009-03-11 05:08:08 +00009922 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00009923 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00009924 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
9925 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00009926 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00009927
9928 // Get the offsets to the 0 and 1 element of the array so that we can
9929 // select between them.
9930 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00009931 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00009932 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009933
Chris Lattner600fec32009-03-11 05:08:08 +00009934 SDValue Cond = DAG.getSetCC(DL,
Matt Arsenault225ed702013-05-18 00:21:46 +00009935 getSetCCResultType(N0.getValueType()),
Chris Lattner600fec32009-03-11 05:08:08 +00009936 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00009937 AddToWorkList(Cond.getNode());
Matt Arsenaultb05e4772013-06-14 22:04:37 +00009938 SDValue CstOffset = DAG.getSelect(DL, Zero.getValueType(),
9939 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00009940 AddToWorkList(CstOffset.getNode());
Tom Stellardedd08f72013-08-26 15:06:10 +00009941 CPIdx = DAG.getNode(ISD::ADD, DL, CPIdx.getValueType(), CPIdx,
Chris Lattner600fec32009-03-11 05:08:08 +00009942 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00009943 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009944 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00009945 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00009946 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00009947
9948 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009949 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009950
Nate Begemanf845b452005-10-08 00:29:44 +00009951 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00009952 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00009953 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00009954 (N1C->isNullValue() || // (a < 0) ? b : 0
9955 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00009956 EVT XType = N0.getValueType();
9957 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00009958 if (XType.bitsGE(AType)) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00009959 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00009960 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00009961 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
9962 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00009963 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00009964 SDValue ShCt = DAG.getConstant(ShCtV,
9965 getShiftAmountTy(N0.getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +00009966 SDValue Shift = DAG.getNode(ISD::SRL, SDLoc(N0),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009967 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00009968 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009969
Duncan Sands8e4eb092008-06-08 20:54:56 +00009970 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009971 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009972 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009973 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009974
9975 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009976 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009977
Andrew Trickac6d9be2013-05-25 02:42:55 +00009978 SDValue Shift = DAG.getNode(ISD::SRA, SDLoc(N0),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009979 XType, N0,
9980 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009981 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00009982 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009983
Duncan Sands8e4eb092008-06-08 20:54:56 +00009984 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009985 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009986 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009987 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009988
9989 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009990 }
9991 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009992
Owen Andersoned1088a2010-09-22 22:58:22 +00009993 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
9994 // where y is has a single bit set.
9995 // A plaintext description would be, we can turn the SELECT_CC into an AND
9996 // when the condition can be materialized as an all-ones register. Any
9997 // single bit-test can be materialized as an all-ones register with
9998 // shift-left and shift-right-arith.
9999 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
10000 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010001 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +000010002 N2C && N2C->isNullValue()) {
10003 SDValue AndLHS = N0->getOperand(0);
10004 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
10005 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
10006 // Shift the tested bit over the sign bit.
10007 APInt AndMask = ConstAndRHS->getAPIntValue();
10008 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +000010009 DAG.getConstant(AndMask.countLeadingZeros(),
10010 getShiftAmountTy(AndLHS.getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +000010011 SDValue Shl = DAG.getNode(ISD::SHL, SDLoc(N0), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010012
Owen Andersoned1088a2010-09-22 22:58:22 +000010013 // Now arithmetic right shift it all the way over, so the result is either
10014 // all-ones, or zero.
10015 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +000010016 DAG.getConstant(AndMask.getBitWidth()-1,
10017 getShiftAmountTy(Shl.getValueType()));
Andrew Trickac6d9be2013-05-25 02:42:55 +000010018 SDValue Shr = DAG.getNode(ISD::SRA, SDLoc(N0), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010019
Owen Andersoned1088a2010-09-22 22:58:22 +000010020 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
10021 }
10022 }
10023
Nate Begeman07ed4172005-10-10 21:26:48 +000010024 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +000010025 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +000010026 TLI.getBooleanContents(N0.getValueType().isVector()) ==
10027 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +000010028
Chris Lattner1eba01e2007-04-11 06:50:51 +000010029 // If the caller doesn't want us to simplify this into a zext of a compare,
10030 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +000010031 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +000010032 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010033
Nate Begeman07ed4172005-10-10 21:26:48 +000010034 // Get a SetCC of the condition
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010035 // NOTE: Don't create a SETCC if it's not legal on this target.
10036 if (!LegalOperations ||
10037 TLI.isOperationLegal(ISD::SETCC,
Matt Arsenault225ed702013-05-18 00:21:46 +000010038 LegalTypes ? getSetCCResultType(N0.getValueType()) : MVT::i1)) {
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010039 SDValue Temp, SCC;
10040 // cast from setcc result type to select result type
10041 if (LegalTypes) {
Matt Arsenault225ed702013-05-18 00:21:46 +000010042 SCC = DAG.getSetCC(DL, getSetCCResultType(N0.getValueType()),
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010043 N0, N1, CC);
10044 if (N2.getValueType().bitsLT(SCC.getValueType()))
Andrew Trickac6d9be2013-05-25 02:42:55 +000010045 Temp = DAG.getZeroExtendInReg(SCC, SDLoc(N2),
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010046 N2.getValueType());
10047 else
Andrew Trickac6d9be2013-05-25 02:42:55 +000010048 Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2),
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010049 N2.getValueType(), SCC);
10050 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010051 SCC = DAG.getSetCC(SDLoc(N0), MVT::i1, N0, N1, CC);
10052 Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2),
Bill Wendling836ca7d2009-01-30 23:59:18 +000010053 N2.getValueType(), SCC);
Owen Andersonefcc1ae2012-11-03 00:17:26 +000010054 }
10055
10056 AddToWorkList(SCC.getNode());
10057 AddToWorkList(Temp.getNode());
10058
10059 if (N2C->getAPIntValue() == 1)
10060 return Temp;
10061
10062 // shl setcc result by log2 n2c
10063 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
10064 DAG.getConstant(N2C->getAPIntValue().logBase2(),
10065 getShiftAmountTy(Temp.getValueType())));
Nate Begemanb0d04a72006-02-18 02:40:58 +000010066 }
Nate Begeman07ed4172005-10-10 21:26:48 +000010067 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010068
Nate Begemanf845b452005-10-08 00:29:44 +000010069 // Check to see if this is the equivalent of setcc
10070 // FIXME: Turn all of these into setcc if setcc if setcc is legal
10071 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +000010072 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +000010073 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +000010074 if (!LegalOperations ||
Matt Arsenault225ed702013-05-18 00:21:46 +000010075 TLI.isOperationLegal(ISD::SETCC, getSetCCResultType(XType))) {
10076 SDValue Res = DAG.getSetCC(DL, getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +000010077 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +000010078 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +000010079 return Res;
10080 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010081
Bill Wendling836ca7d2009-01-30 23:59:18 +000010082 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +000010083 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +000010084 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +000010085 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010086 SDValue Ctlz = DAG.getNode(ISD::CTLZ, SDLoc(N0), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +000010087 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +000010088 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +000010089 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +000010090 }
Bill Wendling836ca7d2009-01-30 23:59:18 +000010091 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +000010092 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010093 SDValue NegN0 = DAG.getNode(ISD::SUB, SDLoc(N0),
Bill Wendling836ca7d2009-01-30 23:59:18 +000010094 XType, DAG.getConstant(0, XType), N0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010095 SDValue NotN0 = DAG.getNOT(SDLoc(N0), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +000010096 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +000010097 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +000010098 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +000010099 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +000010100 }
Bill Wendling836ca7d2009-01-30 23:59:18 +000010101 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +000010102 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010103 SDValue Sign = DAG.getNode(ISD::SRL, SDLoc(N0), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +000010104 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +000010105 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +000010106 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +000010107 }
10108 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010109
Benjamin Kramercde51102010-07-08 12:09:56 +000010110 // Check to see if this is an integer abs.
10111 // select_cc setg[te] X, 0, X, -X ->
10112 // select_cc setgt X, -1, X, -X ->
10113 // select_cc setl[te] X, 0, -X, X ->
10114 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +000010115 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +000010116 if (N1C) {
10117 ConstantSDNode *SubC = NULL;
10118 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
10119 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
10120 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
10121 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
10122 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
10123 (N1C->isOne() && CC == ISD::SETLT)) &&
10124 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
10125 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
10126
Owen Andersone50ed302009-08-10 22:56:29 +000010127 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +000010128 if (SubC && SubC->isNullValue() && XType.isInteger()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010129 SDValue Shift = DAG.getNode(ISD::SRA, SDLoc(N0), XType,
Benjamin Kramercde51102010-07-08 12:09:56 +000010130 N0,
10131 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +000010132 getShiftAmountTy(N0.getValueType())));
Andrew Trickac6d9be2013-05-25 02:42:55 +000010133 SDValue Add = DAG.getNode(ISD::ADD, SDLoc(N0),
Benjamin Kramercde51102010-07-08 12:09:56 +000010134 XType, N0, Shift);
10135 AddToWorkList(Shift.getNode());
10136 AddToWorkList(Add.getNode());
10137 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +000010138 }
10139 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010140
Dan Gohman475871a2008-07-27 21:46:04 +000010141 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +000010142}
10143
Evan Chengfa1eb272007-02-08 22:13:59 +000010144/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +000010145SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +000010146 SDValue N1, ISD::CondCode Cond,
Andrew Trickac6d9be2013-05-25 02:42:55 +000010147 SDLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +000010148 TargetLowering::DAGCombinerInfo
Nadav Rotem444b4bf2012-12-27 06:47:41 +000010149 DagCombineInfo(DAG, Level, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +000010150 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7be2005-09-16 00:54:12 +000010151}
10152
Nate Begeman69575232005-10-20 02:15:44 +000010153/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
10154/// return a DAG expression to select that will generate the same value by
10155/// multiplying by a magic number. See:
10156/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +000010157SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +000010158 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +000010159 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +000010160
Andrew Lenharth232c9102006-06-12 16:07:18 +000010161 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +000010162 ii != ee; ++ii)
10163 AddToWorkList(*ii);
10164 return S;
Nate Begeman69575232005-10-20 02:15:44 +000010165}
10166
10167/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
10168/// return a DAG expression to select that will generate the same value by
10169/// multiplying by a magic number. See:
10170/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +000010171SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +000010172 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +000010173 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +000010174
Andrew Lenharth232c9102006-06-12 16:07:18 +000010175 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +000010176 ii != ee; ++ii)
10177 AddToWorkList(*ii);
10178 return S;
Nate Begeman69575232005-10-20 02:15:44 +000010179}
10180
Nate Begemancc66cdd2009-09-25 06:05:26 +000010181/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +000010182// to alias with anything but itself. Provides base object and offset as
10183// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010184static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Roman Divacky2943e372012-09-05 22:15:49 +000010185 const GlobalValue *&GV, const void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +000010186 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010187 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000010188
Jim Laskey71382342006-10-07 23:37:56 +000010189 // If it's an adding a simple constant then integrate the offset.
10190 if (Base.getOpcode() == ISD::ADD) {
10191 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
10192 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000010193 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +000010194 }
10195 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010196
Nate Begemancc66cdd2009-09-25 06:05:26 +000010197 // Return the underlying GlobalValue, and update the Offset. Return false
10198 // for GlobalAddressSDNode since the same GlobalAddress may be represented
10199 // by multiple nodes with different offsets.
10200 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
10201 GV = G->getGlobal();
10202 Offset += G->getOffset();
10203 return false;
10204 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010205
Nate Begemancc66cdd2009-09-25 06:05:26 +000010206 // Return the underlying Constant value, and update the Offset. Return false
10207 // for ConstantSDNodes since the same constant pool entry may be represented
10208 // by multiple nodes with different offsets.
10209 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
Roman Divacky2943e372012-09-05 22:15:49 +000010210 CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal()
10211 : (const void *)C->getConstVal();
Nate Begemancc66cdd2009-09-25 06:05:26 +000010212 Offset += C->getOffset();
10213 return false;
10214 }
Jim Laskey71382342006-10-07 23:37:56 +000010215 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010216 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +000010217}
10218
10219/// isAlias - Return true if there is any possibility that the two addresses
10220/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +000010221bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +000010222 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010223 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010224 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +000010225 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010226 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010227 unsigned SrcValueAlign2,
10228 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +000010229 // If they are the same then they must be aliases.
10230 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +000010231
Jim Laskey71382342006-10-07 23:37:56 +000010232 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +000010233 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +000010234 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +000010235 const GlobalValue *GV1, *GV2;
Roman Divacky2943e372012-09-05 22:15:49 +000010236 const void *CV1, *CV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +000010237 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
10238 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010239
Nate Begemancc66cdd2009-09-25 06:05:26 +000010240 // If they have a same base address then check to see if they overlap.
10241 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +000010242 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010243
Owen Anderson4a9f1502010-09-20 20:39:59 +000010244 // It is possible for different frame indices to alias each other, mostly
10245 // when tail call optimization reuses return address slots for arguments.
10246 // To catch this case, look up the actual index of frame indices to compute
10247 // the real alias relationship.
10248 if (isFrameIndex1 && isFrameIndex2) {
10249 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10250 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
10251 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
10252 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
10253 }
10254
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010255 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +000010256 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010257 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
10258 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +000010259
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010260 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
10261 // compared to the size and offset of the access, we may be able to prove they
10262 // do not alias. This check is conservative for now to catch cases created by
10263 // splitting vector types.
10264 if ((SrcValueAlign1 == SrcValueAlign2) &&
10265 (SrcValueOffset1 != SrcValueOffset2) &&
10266 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
10267 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
10268 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010269
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010270 // There is no overlap between these relatively aligned accesses of similar
10271 // size, return no alias.
10272 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
10273 return false;
10274 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010275
Hal Finkel253acef2013-08-29 03:29:55 +000010276 bool UseAA = CombinerGlobalAA.getNumOccurrences() > 0 ? CombinerGlobalAA :
10277 TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
Hal Finkel77364b72013-09-15 02:19:49 +000010278 if (UseAA && SrcValue1 && SrcValue2) {
Jim Laskey07a27092006-10-18 19:08:31 +000010279 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +000010280 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
10281 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
10282 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +000010283 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010284 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
10285 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +000010286 if (AAResult == AliasAnalysis::NoAlias)
10287 return false;
10288 }
Jim Laskey096c22e2006-10-18 12:29:57 +000010289
10290 // Otherwise we have to assume they alias.
10291 return true;
Jim Laskey71382342006-10-07 23:37:56 +000010292}
10293
Nadav Rotem90e11dc2012-11-29 00:00:08 +000010294bool DAGCombiner::isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1) {
10295 SDValue Ptr0, Ptr1;
10296 int64_t Size0, Size1;
10297 const Value *SrcValue0, *SrcValue1;
10298 int SrcValueOffset0, SrcValueOffset1;
10299 unsigned SrcValueAlign0, SrcValueAlign1;
10300 const MDNode *SrcTBAAInfo0, *SrcTBAAInfo1;
10301 FindAliasInfo(Op0, Ptr0, Size0, SrcValue0, SrcValueOffset0,
10302 SrcValueAlign0, SrcTBAAInfo0);
10303 FindAliasInfo(Op1, Ptr1, Size1, SrcValue1, SrcValueOffset1,
10304 SrcValueAlign1, SrcTBAAInfo1);
10305 return isAlias(Ptr0, Size0, SrcValue0, SrcValueOffset0,
Nadav Rotemdde785c2012-12-06 17:34:13 +000010306 SrcValueAlign0, SrcTBAAInfo0,
10307 Ptr1, Size1, SrcValue1, SrcValueOffset1,
10308 SrcValueAlign1, SrcTBAAInfo1);
Nadav Rotem90e11dc2012-11-29 00:00:08 +000010309}
10310
Jim Laskey71382342006-10-07 23:37:56 +000010311/// FindAliasInfo - Extracts the relevant alias information from the memory
10312/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +000010313bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +000010314 SDValue &Ptr, int64_t &Size,
10315 const Value *&SrcValue,
10316 int &SrcValueOffset,
10317 unsigned &SrcValueAlign,
10318 const MDNode *&TBAAInfo) const {
10319 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
10320
10321 Ptr = LS->getBasePtr();
10322 Size = LS->getMemoryVT().getSizeInBits() >> 3;
10323 SrcValue = LS->getSrcValue();
10324 SrcValueOffset = LS->getSrcValueOffset();
10325 SrcValueAlign = LS->getOriginalAlignment();
10326 TBAAInfo = LS->getTBAAInfo();
10327 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +000010328}
10329
Jim Laskey6ff23e52006-10-04 16:53:27 +000010330/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
10331/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +000010332void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
Craig Toppera0ec3f92013-07-14 04:42:23 +000010333 SmallVectorImpl<SDValue> &Aliases) {
Dan Gohman475871a2008-07-27 21:46:04 +000010334 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010335 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +000010336
Jim Laskey279f0532006-09-25 16:29:54 +000010337 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +000010338 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010339 int64_t Size;
10340 const Value *SrcValue;
10341 int SrcValueOffset;
10342 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010343 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010344 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010345 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +000010346
Jim Laskey6ff23e52006-10-04 16:53:27 +000010347 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +000010348 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +000010349 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010350
Jim Laskeybc588b82006-10-05 15:07:25 +000010351 // Look at each chain and determine if it is an alias. If so, add it to the
10352 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +000010353 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +000010354 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +000010355 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +000010356 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010357
10358 // For TokenFactor nodes, look at each operand and only continue up the
10359 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +000010360 // find more and revert to original chain since the xform is unlikely to be
10361 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010362 //
10363 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +000010364 // chain we found before we hit a tokenfactor rather than the original
10365 // chain.
10366 if (Depth > 6 || Aliases.size() == 2) {
10367 Aliases.clear();
10368 Aliases.push_back(OriginalChain);
10369 break;
10370 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010371
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010372 // Don't bother if we've been before.
10373 if (!Visited.insert(Chain.getNode()))
10374 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +000010375
Jim Laskeybc588b82006-10-05 15:07:25 +000010376 switch (Chain.getOpcode()) {
10377 case ISD::EntryToken:
10378 // Entry token is ideal chain operand, but handled in FindBetterChain.
10379 break;
Scott Michelfdc40a02009-02-17 22:15:04 +000010380
Jim Laskeybc588b82006-10-05 15:07:25 +000010381 case ISD::LOAD:
10382 case ISD::STORE: {
10383 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +000010384 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010385 int64_t OpSize;
10386 const Value *OpSrcValue;
10387 int OpSrcValueOffset;
10388 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010389 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +000010390 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010391 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010392 OpSrcValueAlign,
10393 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +000010394
Jim Laskeybc588b82006-10-05 15:07:25 +000010395 // If chain is alias then stop here.
10396 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010397 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010398 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010399 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010400 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +000010401 Aliases.push_back(Chain);
10402 } else {
10403 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +000010404 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +000010405 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +000010406 }
Jim Laskeybc588b82006-10-05 15:07:25 +000010407 break;
10408 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010409
Jim Laskeybc588b82006-10-05 15:07:25 +000010410 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010411 // We have to check each of the operands of the token factor for "small"
10412 // token factors, so we queue them up. Adding the operands to the queue
10413 // (stack) in reverse order maintains the original order and increases the
10414 // likelihood that getNode will find a matching token factor (CSE.)
10415 if (Chain.getNumOperands() > 16) {
10416 Aliases.push_back(Chain);
10417 break;
10418 }
Jim Laskeybc588b82006-10-05 15:07:25 +000010419 for (unsigned n = Chain.getNumOperands(); n;)
10420 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +000010421 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +000010422 break;
Scott Michelfdc40a02009-02-17 22:15:04 +000010423
Jim Laskeybc588b82006-10-05 15:07:25 +000010424 default:
10425 // For all other instructions we will just have to take what we can get.
10426 Aliases.push_back(Chain);
10427 break;
Jim Laskey279f0532006-09-25 16:29:54 +000010428 }
10429 }
Jim Laskey6ff23e52006-10-04 16:53:27 +000010430}
10431
10432/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
10433/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +000010434SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
10435 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +000010436
Jim Laskey6ff23e52006-10-04 16:53:27 +000010437 // Accumulate all the aliases to this node.
10438 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +000010439
Dan Gohman71dc7c92011-05-17 22:20:36 +000010440 // If no operands then chain to entry token.
10441 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +000010442 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +000010443
10444 // If a single operand then chain to it. We don't need to revisit it.
10445 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +000010446 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010447
Jim Laskey6ff23e52006-10-04 16:53:27 +000010448 // Construct a custom tailored token factor.
Andrew Trickac6d9be2013-05-25 02:42:55 +000010449 return DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010450 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +000010451}
10452
Nate Begeman1d4d4142005-09-01 00:19:25 +000010453// SelectionDAG::Combine - This is the entry point for the file.
10454//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000010455void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +000010456 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +000010457 /// run - This is the main entry point to this class.
10458 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000010459 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +000010460}