blob: de8fbc9d789367d56e2c9dfb1a7197a314401d16 [file] [log] [blame]
Nate Begeman2504fe22005-09-01 23:24:04 +00001//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
Nate Begeman21158fc2005-09-01 00:19:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Begeman21158fc2005-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 Michelcf0da6c2009-02-17 22:15:04 +000012//
Dan Gohman45399872009-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 Begeman21158fc2005-09-01 00:19:25 +000017//===----------------------------------------------------------------------===//
18
19#define DEBUG_TYPE "dagcombine"
Nate Begeman21158fc2005-09-01 00:19:25 +000020#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner48fb92f2007-05-16 06:37:59 +000021#include "llvm/ADT/SmallPtrSet.h"
22#include "llvm/ADT/Statistic.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/Analysis/AliasAnalysis.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineFunction.h"
Chandler Carruth9fb823b2013-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 Laskey5d19d592006-09-21 16:28:59 +000030#include "llvm/Support/CommandLine.h"
Chris Lattner48fb92f2007-05-16 06:37:59 +000031#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000032#include "llvm/Support/ErrorHandling.h"
Chris Lattner48fb92f2007-05-16 06:37:59 +000033#include "llvm/Support/MathExtras.h"
Chris Lattner4dc3edd2009-08-23 06:35:02 +000034#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000035#include "llvm/Target/TargetLowering.h"
36#include "llvm/Target/TargetMachine.h"
37#include "llvm/Target/TargetOptions.h"
Quentin Colombetde0e0622013-10-11 18:29:42 +000038#include "llvm/Target/TargetRegisterInfo.h"
Hal Finkel5ef4dcc2013-08-29 03:29:55 +000039#include "llvm/Target/TargetSubtargetInfo.h"
Chris Lattnerbd39c1a2005-09-09 23:53:39 +000040#include <algorithm>
Nate Begeman21158fc2005-09-01 00:19:25 +000041using namespace llvm;
42
Chris Lattneraee775a2006-12-19 22:41:21 +000043STATISTIC(NodesCombined , "Number of dag nodes combined");
44STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
45STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
Evan Chenga9cda8a2009-05-28 00:35:15 +000046STATISTIC(OpsNarrowed , "Number of load/op/store narrowed");
Evan Chengd42641c2011-02-02 01:06:55 +000047STATISTIC(LdStFP2Int , "Number of fp load/store pairs transformed to int");
Quentin Colombetde0e0622013-10-11 18:29:42 +000048STATISTIC(SlicedLoads, "Number of load sliced");
Chris Lattneraee775a2006-12-19 22:41:21 +000049
Nate Begeman21158fc2005-09-01 00:19:25 +000050namespace {
Jim Laskey0463e082006-10-07 23:37:56 +000051 static cl::opt<bool>
Owen Anderson7b8d2ae2010-09-19 21:01:26 +000052 CombinerAA("combiner-alias-analysis", cl::Hidden,
Hal Finkel5fb07342014-01-25 17:32:37 +000053 cl::desc("Enable DAG combiner alias-analysis heuristics"));
Jim Laskeydf2ccc32006-10-12 15:22:24 +000054
Jim Laskey55e4dca2006-10-18 19:08:31 +000055 static cl::opt<bool>
56 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
Hal Finkel5fb07342014-01-25 17:32:37 +000057 cl::desc("Enable DAG combiner's use of IR alias analysis"));
Jim Laskey55e4dca2006-10-18 19:08:31 +000058
Hal Finkeldbebb522014-01-25 19:24:54 +000059// FIXME: Enable the use of TBAA. There are two known issues preventing this:
60// 1. Stack coloring does not update TBAA when merging allocas
61// 2. CGP inserts ptrtoint/inttoptr pairs when sinking address computations.
62// Because BasicAA does not handle inttoptr, we'll often miss basic type
63// punning idioms that we need to catch so we don't miscompile real-world
64// code.
65 static cl::opt<bool>
66 UseTBAA("combiner-use-tbaa", cl::Hidden, cl::init(false),
67 cl::desc("Enable DAG combiner's use of TBAA"));
68
Hal Finkel9b2617a2014-01-25 17:32:39 +000069#ifndef NDEBUG
70 static cl::opt<std::string>
71 CombinerAAOnlyFunc("combiner-aa-only-func", cl::Hidden,
72 cl::desc("Only use DAG-combiner alias analysis in this"
73 " function"));
74#endif
75
Quentin Colombetde0e0622013-10-11 18:29:42 +000076 /// Hidden option to stress test load slicing, i.e., when this option
77 /// is enabled, load slicing bypasses most of its profitability guards.
78 static cl::opt<bool>
79 StressLoadSlicing("combiner-stress-load-slicing", cl::Hidden,
80 cl::desc("Bypass the profitability model of load "
81 "slicing"),
82 cl::init(false));
83
Jim Laskey6549d222006-10-05 15:07:25 +000084//------------------------------ DAGCombiner ---------------------------------//
85
Nick Lewycky02d5f772009-10-25 06:33:48 +000086 class DAGCombiner {
Nate Begeman21158fc2005-09-01 00:19:25 +000087 SelectionDAG &DAG;
Dan Gohman619ef482009-01-15 19:20:50 +000088 const TargetLowering &TLI;
Duncan Sandsdc2dac12008-11-24 14:53:14 +000089 CombineLevel Level;
Bill Wendling026e5d72009-04-29 23:29:43 +000090 CodeGenOpt::Level OptLevel;
Duncan Sandsdc2dac12008-11-24 14:53:14 +000091 bool LegalOperations;
92 bool LegalTypes;
Quentin Colombetde0e0622013-10-11 18:29:42 +000093 bool ForCodeSize;
Nate Begeman21158fc2005-09-01 00:19:25 +000094
95 // Worklist of all of the nodes that need to be simplified.
James Molloy67b6b112012-02-16 09:17:04 +000096 //
97 // This has the semantics that when adding to the worklist,
98 // the item added must be next to be processed. It should
99 // also only appear once. The naive approach to this takes
100 // linear time.
101 //
102 // To reduce the insert/remove time to logarithmic, we use
103 // a set and a vector to maintain our worklist.
104 //
105 // The set contains the items on the worklist, but does not
106 // maintain the order they should be visited.
107 //
108 // The vector maintains the order nodes should be visited, but may
109 // contain duplicate or removed nodes. When choosing a node to
110 // visit, we pop off the order stack until we find an item that is
111 // also in the contents set. All operations are O(log N).
112 SmallPtrSet<SDNode*, 64> WorkListContents;
Benjamin Kramere1e549d2012-03-10 00:23:58 +0000113 SmallVector<SDNode*, 64> WorkListOrder;
Nate Begeman21158fc2005-09-01 00:19:25 +0000114
Jim Laskeydcb2b832006-10-16 20:52:31 +0000115 // AA - Used for DAG load/store alias analysis.
116 AliasAnalysis &AA;
117
Nate Begeman21158fc2005-09-01 00:19:25 +0000118 /// AddUsersToWorkList - When an instruction is simplified, add all users of
119 /// the instruction to the work lists because they might get more simplified
120 /// now.
121 ///
122 void AddUsersToWorkList(SDNode *N) {
123 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman2504fe22005-09-01 23:24:04 +0000124 UI != UE; ++UI)
Dan Gohman91e5dcb2008-07-27 20:43:25 +0000125 AddToWorkList(*UI);
Nate Begeman21158fc2005-09-01 00:19:25 +0000126 }
127
Dan Gohman5c6d0c32007-10-08 17:57:15 +0000128 /// visit - call the node-specific routine that knows how to fold each
129 /// particular type of node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000130 SDValue visit(SDNode *N);
Dan Gohman5c6d0c32007-10-08 17:57:15 +0000131
Chris Lattnerbc1c85b2006-03-01 04:53:38 +0000132 public:
James Molloy920ae8c2012-02-16 09:48:07 +0000133 /// AddToWorkList - Add to the work list making sure its instance is at the
James Molloy67b6b112012-02-16 09:17:04 +0000134 /// back (next to be processed.)
Chris Lattnerfbcd62d2006-03-01 04:03:14 +0000135 void AddToWorkList(SDNode *N) {
James Molloy67b6b112012-02-16 09:17:04 +0000136 WorkListContents.insert(N);
137 WorkListOrder.push_back(N);
Chris Lattnerfbcd62d2006-03-01 04:03:14 +0000138 }
Jim Laskey708d0db2006-10-04 16:53:27 +0000139
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000140 /// removeFromWorkList - remove all instances of N from the worklist.
141 ///
142 void removeFromWorkList(SDNode *N) {
James Molloy67b6b112012-02-16 09:17:04 +0000143 WorkListContents.erase(N);
Chris Lattnere260ed82005-10-10 22:04:48 +0000144 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000145
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000146 SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
Evan Chengfd81c732009-03-28 05:57:29 +0000147 bool AddTo = true);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000148
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000149 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) {
Jim Laskeydcf983c2006-10-13 23:32:28 +0000150 return CombineTo(N, &Res, 1, AddTo);
Chris Lattnerbc1c85b2006-03-01 04:53:38 +0000151 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000152
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000153 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1,
Evan Chengfd81c732009-03-28 05:57:29 +0000154 bool AddTo = true) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000155 SDValue To[] = { Res0, Res1 };
Jim Laskeydcf983c2006-10-13 23:32:28 +0000156 return CombineTo(N, To, 2, AddTo);
Chris Lattnerbc1c85b2006-03-01 04:53:38 +0000157 }
Dan Gohmane58ab792009-01-29 01:59:02 +0000158
159 void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000160
161 private:
162
Chris Lattner375e1a72006-02-17 21:58:01 +0000163 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattner232024e2006-03-01 19:55:35 +0000164 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner375e1a72006-02-17 21:58:01 +0000165 /// propagation. If so, return true.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000166 bool SimplifyDemandedBits(SDValue Op) {
Dan Gohman1d459e42009-12-11 21:31:27 +0000167 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
168 APInt Demanded = APInt::getAllOnesValue(BitWidth);
Dan Gohmanae2b6fb2008-02-27 00:25:32 +0000169 return SimplifyDemandedBits(Op, Demanded);
170 }
171
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000172 bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded);
Chris Lattner04c73702005-10-10 22:31:19 +0000173
Chris Lattnerffad2162006-11-11 00:39:41 +0000174 bool CombineToPreIndexedLoadStore(SDNode *N);
175 bool CombineToPostIndexedLoadStore(SDNode *N);
Quentin Colombetde0e0622013-10-11 18:29:42 +0000176 bool SliceUpLoad(SDNode *N);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000177
Evan Cheng0abb54d2010-04-24 04:43:44 +0000178 void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad);
179 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
180 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
181 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
Evan Chengaf56fac2010-04-16 06:14:10 +0000182 SDValue PromoteIntBinOp(SDValue Op);
Evan Chengf1223bd2010-04-22 20:19:46 +0000183 SDValue PromoteIntShiftOp(SDValue Op);
Evan Chenge19aa5c2010-04-19 19:29:22 +0000184 SDValue PromoteExtend(SDValue Op);
185 bool PromoteLoad(SDValue Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000186
Craig Toppere0b71182013-07-13 07:43:40 +0000187 void ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000188 SDValue Trunc, SDValue ExtLoad, SDLoc DL,
Nick Lewycky6d677cf2011-06-16 01:15:49 +0000189 ISD::NodeType ExtType);
190
Dan Gohman5c6d0c32007-10-08 17:57:15 +0000191 /// combine - call the node-specific routine that knows how to fold each
192 /// particular type of node. If that doesn't do anything, try the
193 /// target-specific DAG combines.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000194 SDValue combine(SDNode *N);
Nate Begeman21158fc2005-09-01 00:19:25 +0000195
196 // Visitation implementation - Implement dag node combining for different
197 // node types. The semantics are as follows:
198 // Return Value:
Evan Cheng5e7658c2008-08-29 22:21:44 +0000199 // SDValue.getNode() == 0 - No change was made
200 // SDValue.getNode() == N - N was replaced, is dead and has been handled.
201 // otherwise - N should be replaced by the returned Operand.
Nate Begeman21158fc2005-09-01 00:19:25 +0000202 //
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000203 SDValue visitTokenFactor(SDNode *N);
204 SDValue visitMERGE_VALUES(SDNode *N);
205 SDValue visitADD(SDNode *N);
206 SDValue visitSUB(SDNode *N);
207 SDValue visitADDC(SDNode *N);
Craig Topper43a1bd62012-01-07 09:06:39 +0000208 SDValue visitSUBC(SDNode *N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000209 SDValue visitADDE(SDNode *N);
Craig Topper43a1bd62012-01-07 09:06:39 +0000210 SDValue visitSUBE(SDNode *N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000211 SDValue visitMUL(SDNode *N);
212 SDValue visitSDIV(SDNode *N);
213 SDValue visitUDIV(SDNode *N);
214 SDValue visitSREM(SDNode *N);
215 SDValue visitUREM(SDNode *N);
216 SDValue visitMULHU(SDNode *N);
217 SDValue visitMULHS(SDNode *N);
218 SDValue visitSMUL_LOHI(SDNode *N);
219 SDValue visitUMUL_LOHI(SDNode *N);
Benjamin Kramer2fd48f22011-05-21 18:31:55 +0000220 SDValue visitSMULO(SDNode *N);
221 SDValue visitUMULO(SDNode *N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000222 SDValue visitSDIVREM(SDNode *N);
223 SDValue visitUDIVREM(SDNode *N);
224 SDValue visitAND(SDNode *N);
225 SDValue visitOR(SDNode *N);
226 SDValue visitXOR(SDNode *N);
227 SDValue SimplifyVBinOp(SDNode *N);
Craig Topper82384612012-09-11 01:45:21 +0000228 SDValue SimplifyVUnaryOp(SDNode *N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000229 SDValue visitSHL(SDNode *N);
230 SDValue visitSRA(SDNode *N);
231 SDValue visitSRL(SDNode *N);
232 SDValue visitCTLZ(SDNode *N);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000233 SDValue visitCTLZ_ZERO_UNDEF(SDNode *N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000234 SDValue visitCTTZ(SDNode *N);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000235 SDValue visitCTTZ_ZERO_UNDEF(SDNode *N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000236 SDValue visitCTPOP(SDNode *N);
237 SDValue visitSELECT(SDNode *N);
Benjamin Kramerd56ffc72013-04-26 09:19:19 +0000238 SDValue visitVSELECT(SDNode *N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000239 SDValue visitSELECT_CC(SDNode *N);
240 SDValue visitSETCC(SDNode *N);
241 SDValue visitSIGN_EXTEND(SDNode *N);
242 SDValue visitZERO_EXTEND(SDNode *N);
243 SDValue visitANY_EXTEND(SDNode *N);
244 SDValue visitSIGN_EXTEND_INREG(SDNode *N);
245 SDValue visitTRUNCATE(SDNode *N);
Wesley Peck527da1b2010-11-23 03:31:01 +0000246 SDValue visitBITCAST(SDNode *N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000247 SDValue visitBUILD_PAIR(SDNode *N);
248 SDValue visitFADD(SDNode *N);
249 SDValue visitFSUB(SDNode *N);
250 SDValue visitFMUL(SDNode *N);
Owen Anderson41b06652012-05-02 22:17:40 +0000251 SDValue visitFMA(SDNode *N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000252 SDValue visitFDIV(SDNode *N);
253 SDValue visitFREM(SDNode *N);
254 SDValue visitFCOPYSIGN(SDNode *N);
255 SDValue visitSINT_TO_FP(SDNode *N);
256 SDValue visitUINT_TO_FP(SDNode *N);
257 SDValue visitFP_TO_SINT(SDNode *N);
258 SDValue visitFP_TO_UINT(SDNode *N);
259 SDValue visitFP_ROUND(SDNode *N);
260 SDValue visitFP_ROUND_INREG(SDNode *N);
261 SDValue visitFP_EXTEND(SDNode *N);
262 SDValue visitFNEG(SDNode *N);
263 SDValue visitFABS(SDNode *N);
Owen Andersona40319b2012-08-13 23:32:49 +0000264 SDValue visitFCEIL(SDNode *N);
265 SDValue visitFTRUNC(SDNode *N);
266 SDValue visitFFLOOR(SDNode *N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000267 SDValue visitBRCOND(SDNode *N);
268 SDValue visitBR_CC(SDNode *N);
269 SDValue visitLOAD(SDNode *N);
270 SDValue visitSTORE(SDNode *N);
271 SDValue visitINSERT_VECTOR_ELT(SDNode *N);
272 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
273 SDValue visitBUILD_VECTOR(SDNode *N);
274 SDValue visitCONCAT_VECTORS(SDNode *N);
Bruno Cardoso Lopes6cb23f62011-09-20 23:19:33 +0000275 SDValue visitEXTRACT_SUBVECTOR(SDNode *N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000276 SDValue visitVECTOR_SHUFFLE(SDNode *N);
Manman Ren413a6cb2014-01-31 01:10:35 +0000277 SDValue visitINSERT_SUBVECTOR(SDNode *N);
Chris Lattnere260ed82005-10-10 22:04:48 +0000278
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000279 SDValue XformToShuffleWithZero(SDNode *N);
Andrew Trickef9de2a2013-05-25 02:42:55 +0000280 SDValue ReassociateOps(unsigned Opc, SDLoc DL, SDValue LHS, SDValue RHS);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000281
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000282 SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
Chris Lattner7c709a52007-12-06 07:33:36 +0000283
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000284 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
285 SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Andrew Trickef9de2a2013-05-25 02:42:55 +0000286 SDValue SimplifySelect(SDLoc DL, SDValue N0, SDValue N1, SDValue N2);
287 SDValue SimplifySelectCC(SDLoc DL, SDValue N0, SDValue N1, SDValue N2,
Scott Michelcf0da6c2009-02-17 22:15:04 +0000288 SDValue N3, ISD::CondCode CC,
Bill Wendling31b50992009-01-30 23:59:18 +0000289 bool NotExtCompare = false);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000290 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000291 SDLoc DL, bool foldBooleans = true);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000292 SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Chris Lattner31e9edc2008-01-26 01:09:19 +0000293 unsigned HiOp);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000294 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
Wesley Peck527da1b2010-11-23 03:31:01 +0000295 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000296 SDValue BuildSDIV(SDNode *N);
297 SDValue BuildUDIV(SDNode *N);
Evan Cheng4c0bd962011-06-21 06:01:08 +0000298 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
299 bool DemandHighBits = true);
300 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
Richard Sandiford95c864d2014-01-08 15:40:47 +0000301 SDNode *MatchRotatePosNeg(SDValue Shifted, SDValue Pos, SDValue Neg,
302 SDValue InnerPos, SDValue InnerNeg,
303 unsigned PosOpcode, unsigned NegOpcode,
304 SDLoc DL);
Andrew Trickef9de2a2013-05-25 02:42:55 +0000305 SDNode *MatchRotate(SDValue LHS, SDValue RHS, SDLoc DL);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000306 SDValue ReduceLoadWidth(SDNode *N);
Evan Chenga9cda8a2009-05-28 00:35:15 +0000307 SDValue ReduceLoadOpStoreWidth(SDNode *N);
Evan Chengd42641c2011-02-02 01:06:55 +0000308 SDValue TransformFPLoadStorePair(SDNode *N);
Michael Liao6d106b72012-10-23 23:06:52 +0000309 SDValue reduceBuildVecExtToExtBuildVec(SDNode *N);
Michael Liao59229792012-10-24 04:14:18 +0000310 SDValue reduceBuildVecConvertToConvertBuildVec(SDNode *N);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000311
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000312 SDValue GetDemandedBits(SDValue V, const APInt &Mask);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000313
Jim Laskey708d0db2006-10-04 16:53:27 +0000314 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
315 /// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000316 void GatherAllAliases(SDNode *N, SDValue OriginalChain,
Craig Topperb94011f2013-07-14 04:42:23 +0000317 SmallVectorImpl<SDValue> &Aliases);
Jim Laskey708d0db2006-10-04 16:53:27 +0000318
Jim Laskeya15b0eb2006-10-18 12:29:57 +0000319 /// isAlias - Return true if there is any possibility that the two addresses
320 /// overlap.
Richard Sandiford981fdeb2013-10-28 12:00:00 +0000321 bool isAlias(SDValue Ptr1, int64_t Size1, bool IsVolatile1,
Jim Laskeya15b0eb2006-10-18 12:29:57 +0000322 const Value *SrcValue1, int SrcValueOffset1,
Nate Begeman879d8f12009-09-15 00:18:30 +0000323 unsigned SrcValueAlign1,
Dan Gohmana94cc6d2010-10-20 00:31:05 +0000324 const MDNode *TBAAInfo1,
Richard Sandiford981fdeb2013-10-28 12:00:00 +0000325 SDValue Ptr2, int64_t Size2, bool IsVolatile2,
Nate Begeman879d8f12009-09-15 00:18:30 +0000326 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmana94cc6d2010-10-20 00:31:05 +0000327 unsigned SrcValueAlign2,
328 const MDNode *TBAAInfo2) const;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000329
Nadav Rotem307d7672012-11-29 00:00:08 +0000330 /// isAlias - Return true if there is any possibility that the two addresses
331 /// overlap.
332 bool isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1);
333
Jim Laskey08edf332006-10-11 13:47:09 +0000334 /// FindAliasInfo - Extracts the relevant alias information from the memory
335 /// node. Returns true if the operand was a load.
336 bool FindAliasInfo(SDNode *N,
Richard Sandiford981fdeb2013-10-28 12:00:00 +0000337 SDValue &Ptr, int64_t &Size, bool &IsVolatile,
Nate Begeman879d8f12009-09-15 00:18:30 +0000338 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmana94cc6d2010-10-20 00:31:05 +0000339 unsigned &SrcValueAlignment,
340 const MDNode *&TBAAInfo) const;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000341
Jim Laskeyd07be232006-09-25 16:29:54 +0000342 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey708d0db2006-10-04 16:53:27 +0000343 /// looking for a better chain (aliasing node.)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000344 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands41826032009-01-31 15:50:11 +0000345
Nadav Rotem7cbc12a2012-10-03 16:11:15 +0000346 /// Merge consecutive store operations into a wide store.
347 /// This optimization uses wide integers or vectors when possible.
348 /// \return True if some memory operations were changed.
349 bool MergeConsecutiveStores(StoreSDNode *N);
350
Chris Lattner4041ab62010-04-15 04:48:01 +0000351 public:
Bill Wendling026e5d72009-04-29 23:29:43 +0000352 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Quentin Colombetde0e0622013-10-11 18:29:42 +0000353 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
354 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {
355 AttributeSet FnAttrs =
356 DAG.getMachineFunction().getFunction()->getAttributes();
357 ForCodeSize =
358 FnAttrs.hasAttribute(AttributeSet::FunctionIndex,
359 Attribute::OptimizeForSize) ||
360 FnAttrs.hasAttribute(AttributeSet::FunctionIndex, Attribute::MinSize);
361 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000362
Nate Begeman21158fc2005-09-01 00:19:25 +0000363 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sandsdc2dac12008-11-24 14:53:14 +0000364 void Run(CombineLevel AtLevel);
Wesley Peck527da1b2010-11-23 03:31:01 +0000365
Chris Lattner4041ab62010-04-15 04:48:01 +0000366 SelectionDAG &getDAG() const { return DAG; }
Wesley Peck527da1b2010-11-23 03:31:01 +0000367
Chris Lattner4041ab62010-04-15 04:48:01 +0000368 /// getShiftAmountTy - Returns a type large enough to hold any valid
369 /// shift amount - before type legalization these can be huge.
Owen Andersonb2c80da2011-02-25 21:41:48 +0000370 EVT getShiftAmountTy(EVT LHSTy) {
Elena Demikhovsky6769c502013-06-26 10:55:03 +0000371 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
372 if (LHSTy.isVector())
373 return LHSTy;
Jack Carterd4e96152013-10-17 01:34:33 +0000374 return LegalTypes ? TLI.getScalarShiftAmountTy(LHSTy)
375 : TLI.getPointerTy();
Chris Lattner4041ab62010-04-15 04:48:01 +0000376 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000377
Chris Lattner4041ab62010-04-15 04:48:01 +0000378 /// isTypeLegal - This method returns true if we are running before type
379 /// legalization or if the specified VT is legal.
380 bool isTypeLegal(const EVT &VT) {
381 if (!LegalTypes) return true;
382 return TLI.isTypeLegal(VT);
383 }
Matt Arsenault758659232013-05-18 00:21:46 +0000384
385 /// getSetCCResultType - Convenience wrapper around
386 /// TargetLowering::getSetCCResultType
387 EVT getSetCCResultType(EVT VT) const {
388 return TLI.getSetCCResultType(*DAG.getContext(), VT);
389 }
Nate Begeman21158fc2005-09-01 00:19:25 +0000390 };
391}
392
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000393
394namespace {
395/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
396/// nodes from the worklist.
Nick Lewycky02d5f772009-10-25 06:33:48 +0000397class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000398 DAGCombiner &DC;
399public:
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000400 explicit WorkListRemover(DAGCombiner &dc)
401 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
Scott Michelcf0da6c2009-02-17 22:15:04 +0000402
Duncan Sandsbf170802008-06-11 11:42:12 +0000403 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000404 DC.removeFromWorkList(N);
405 }
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000406};
407}
408
Chris Lattnerbc1c85b2006-03-01 04:53:38 +0000409//===----------------------------------------------------------------------===//
410// TargetLowering::DAGCombinerInfo implementation
411//===----------------------------------------------------------------------===//
412
413void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
414 ((DAGCombiner*)DC)->AddToWorkList(N);
415}
416
Cameron Zwarich8c7bbc02011-04-02 02:40:26 +0000417void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
418 ((DAGCombiner*)DC)->removeFromWorkList(N);
419}
420
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000421SDValue TargetLowering::DAGCombinerInfo::
Evan Chengfd81c732009-03-28 05:57:29 +0000422CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
423 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattnerbc1c85b2006-03-01 04:53:38 +0000424}
425
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000426SDValue TargetLowering::DAGCombinerInfo::
Evan Chengfd81c732009-03-28 05:57:29 +0000427CombineTo(SDNode *N, SDValue Res, bool AddTo) {
428 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattnerbc1c85b2006-03-01 04:53:38 +0000429}
430
431
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000432SDValue TargetLowering::DAGCombinerInfo::
Evan Chengfd81c732009-03-28 05:57:29 +0000433CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
434 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattnerbc1c85b2006-03-01 04:53:38 +0000435}
436
Dan Gohmane58ab792009-01-29 01:59:02 +0000437void TargetLowering::DAGCombinerInfo::
438CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
439 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
440}
Chris Lattnerbc1c85b2006-03-01 04:53:38 +0000441
Chris Lattnerbc1c85b2006-03-01 04:53:38 +0000442//===----------------------------------------------------------------------===//
Chris Lattnere49c9742007-05-14 22:04:50 +0000443// Helper Functions
444//===----------------------------------------------------------------------===//
445
446/// isNegatibleForFree - Return 1 if we can compute the negated form of the
447/// specified expression for the same cost as the expression itself, or 2 if we
448/// can compute the negated form more cheaply than the expression itself.
Duncan Sandsdc2dac12008-11-24 14:53:14 +0000449static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Anderson2ee7c4d2012-03-06 00:29:31 +0000450 const TargetLowering &TLI,
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000451 const TargetOptions *Options,
Chris Lattnere7c14012008-02-26 07:04:54 +0000452 unsigned Depth = 0) {
Chris Lattnere49c9742007-05-14 22:04:50 +0000453 // fneg is removable even if it has multiple uses.
454 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000455
Chris Lattnere49c9742007-05-14 22:04:50 +0000456 // Don't allow anything with multiple uses.
457 if (!Op.hasOneUse()) return 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000458
Chris Lattner46980832007-05-25 02:19:06 +0000459 // Don't recurse exponentially.
460 if (Depth > 6) return 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000461
Chris Lattnere49c9742007-05-14 22:04:50 +0000462 switch (Op.getOpcode()) {
463 default: return false;
464 case ISD::ConstantFP:
Chris Lattnere7c14012008-02-26 07:04:54 +0000465 // Don't invert constant FP values after legalize. The negated constant
466 // isn't necessarily legal.
Duncan Sandsdc2dac12008-11-24 14:53:14 +0000467 return LegalOperations ? 0 : 1;
Chris Lattnere49c9742007-05-14 22:04:50 +0000468 case ISD::FADD:
469 // FIXME: determine better conditions for this xform.
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000470 if (!Options->UnsafeFPMath) return 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000471
Owen Anderson2ee7c4d2012-03-06 00:29:31 +0000472 // After operation legalization, it might not be legal to create new FSUBs.
473 if (LegalOperations &&
474 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
475 return 0;
476
Craig Topper03f39772012-09-09 22:58:45 +0000477 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Owen Anderson2ee7c4d2012-03-06 00:29:31 +0000478 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
479 Options, Depth + 1))
Chris Lattnere49c9742007-05-14 22:04:50 +0000480 return V;
Bill Wendling6fbf5492009-01-30 23:10:18 +0000481 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Anderson2ee7c4d2012-03-06 00:29:31 +0000482 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000483 Depth + 1);
Chris Lattnere49c9742007-05-14 22:04:50 +0000484 case ISD::FSUB:
Scott Michelcf0da6c2009-02-17 22:15:04 +0000485 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000486 if (!Options->UnsafeFPMath) return 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000487
Bill Wendling6fbf5492009-01-30 23:10:18 +0000488 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattnere49c9742007-05-14 22:04:50 +0000489 return 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000490
Chris Lattnere49c9742007-05-14 22:04:50 +0000491 case ISD::FMUL:
492 case ISD::FDIV:
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000493 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000494
Bill Wendling6fbf5492009-01-30 23:10:18 +0000495 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Anderson2ee7c4d2012-03-06 00:29:31 +0000496 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
497 Options, Depth + 1))
Chris Lattnere49c9742007-05-14 22:04:50 +0000498 return V;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000499
Owen Anderson2ee7c4d2012-03-06 00:29:31 +0000500 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000501 Depth + 1);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000502
Chris Lattnere49c9742007-05-14 22:04:50 +0000503 case ISD::FP_EXTEND:
504 case ISD::FP_ROUND:
505 case ISD::FSIN:
Owen Anderson2ee7c4d2012-03-06 00:29:31 +0000506 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000507 Depth + 1);
Chris Lattnere49c9742007-05-14 22:04:50 +0000508 }
509}
510
511/// GetNegatedExpression - If isNegatibleForFree returns true, this function
512/// returns the newly negated expression.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000513static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sandsdc2dac12008-11-24 14:53:14 +0000514 bool LegalOperations, unsigned Depth = 0) {
Chris Lattnere49c9742007-05-14 22:04:50 +0000515 // fneg is removable even if it has multiple uses.
516 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000517
Chris Lattnere49c9742007-05-14 22:04:50 +0000518 // Don't allow anything with multiple uses.
519 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelcf0da6c2009-02-17 22:15:04 +0000520
Chris Lattner46980832007-05-25 02:19:06 +0000521 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattnere49c9742007-05-14 22:04:50 +0000522 switch (Op.getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000523 default: llvm_unreachable("Unknown code");
Dale Johannesen446b9002007-08-31 23:34:27 +0000524 case ISD::ConstantFP: {
525 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
526 V.changeSign();
527 return DAG.getConstantFP(V, Op.getValueType());
528 }
Chris Lattnere49c9742007-05-14 22:04:50 +0000529 case ISD::FADD:
530 // FIXME: determine better conditions for this xform.
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000531 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000532
Bill Wendling6fbf5492009-01-30 23:10:18 +0000533 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000534 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Anderson2ee7c4d2012-03-06 00:29:31 +0000535 DAG.getTargetLoweringInfo(),
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000536 &DAG.getTarget().Options, Depth+1))
Andrew Trickef9de2a2013-05-25 02:42:55 +0000537 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
Scott Michelcf0da6c2009-02-17 22:15:04 +0000538 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sandsdc2dac12008-11-24 14:53:14 +0000539 LegalOperations, Depth+1),
Chris Lattnere49c9742007-05-14 22:04:50 +0000540 Op.getOperand(1));
Bill Wendling6fbf5492009-01-30 23:10:18 +0000541 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Andrew Trickef9de2a2013-05-25 02:42:55 +0000542 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
Scott Michelcf0da6c2009-02-17 22:15:04 +0000543 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sandsdc2dac12008-11-24 14:53:14 +0000544 LegalOperations, Depth+1),
Chris Lattnere49c9742007-05-14 22:04:50 +0000545 Op.getOperand(0));
546 case ISD::FSUB:
Scott Michelcf0da6c2009-02-17 22:15:04 +0000547 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000548 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman9a708232007-07-02 15:48:56 +0000549
Bill Wendling6fbf5492009-01-30 23:10:18 +0000550 // fold (fneg (fsub 0, B)) -> B
Dan Gohman9a708232007-07-02 15:48:56 +0000551 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesen446b9002007-08-31 23:34:27 +0000552 if (N0CFP->getValueAPF().isZero())
Dan Gohman9a708232007-07-02 15:48:56 +0000553 return Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000554
Bill Wendling6fbf5492009-01-30 23:10:18 +0000555 // fold (fneg (fsub A, B)) -> (fsub B, A)
Andrew Trickef9de2a2013-05-25 02:42:55 +0000556 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
Bill Wendlingf6d0aff2009-01-30 00:45:56 +0000557 Op.getOperand(1), Op.getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +0000558
Chris Lattnere49c9742007-05-14 22:04:50 +0000559 case ISD::FMUL:
560 case ISD::FDIV:
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000561 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelcf0da6c2009-02-17 22:15:04 +0000562
Bill Wendling6fbf5492009-01-30 23:10:18 +0000563 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000564 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Anderson2ee7c4d2012-03-06 00:29:31 +0000565 DAG.getTargetLoweringInfo(),
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000566 &DAG.getTarget().Options, Depth+1))
Andrew Trickef9de2a2013-05-25 02:42:55 +0000567 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(),
Scott Michelcf0da6c2009-02-17 22:15:04 +0000568 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sandsdc2dac12008-11-24 14:53:14 +0000569 LegalOperations, Depth+1),
Chris Lattnere49c9742007-05-14 22:04:50 +0000570 Op.getOperand(1));
Scott Michelcf0da6c2009-02-17 22:15:04 +0000571
Bill Wendling6fbf5492009-01-30 23:10:18 +0000572 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Andrew Trickef9de2a2013-05-25 02:42:55 +0000573 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(),
Chris Lattnere49c9742007-05-14 22:04:50 +0000574 Op.getOperand(0),
Chris Lattnere7c14012008-02-26 07:04:54 +0000575 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sandsdc2dac12008-11-24 14:53:14 +0000576 LegalOperations, Depth+1));
Scott Michelcf0da6c2009-02-17 22:15:04 +0000577
Chris Lattnere49c9742007-05-14 22:04:50 +0000578 case ISD::FP_EXTEND:
Chris Lattnere49c9742007-05-14 22:04:50 +0000579 case ISD::FSIN:
Andrew Trickef9de2a2013-05-25 02:42:55 +0000580 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(),
Scott Michelcf0da6c2009-02-17 22:15:04 +0000581 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sandsdc2dac12008-11-24 14:53:14 +0000582 LegalOperations, Depth+1));
Chris Lattner72733e52008-01-17 07:00:52 +0000583 case ISD::FP_ROUND:
Andrew Trickef9de2a2013-05-25 02:42:55 +0000584 return DAG.getNode(ISD::FP_ROUND, SDLoc(Op), Op.getValueType(),
Scott Michelcf0da6c2009-02-17 22:15:04 +0000585 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sandsdc2dac12008-11-24 14:53:14 +0000586 LegalOperations, Depth+1),
Chris Lattner72733e52008-01-17 07:00:52 +0000587 Op.getOperand(1));
Chris Lattnere49c9742007-05-14 22:04:50 +0000588 }
589}
Chris Lattnerbc1c85b2006-03-01 04:53:38 +0000590
591
Nate Begeman2504fe22005-09-01 23:24:04 +0000592// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
593// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelcf0da6c2009-02-17 22:15:04 +0000594// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman7cea6ef2005-09-02 21:18:40 +0000595// nodes based on the type of node we are checking. This simplifies life a
596// bit for the callers.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000597static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
598 SDValue &CC) {
Nate Begeman7cea6ef2005-09-02 21:18:40 +0000599 if (N.getOpcode() == ISD::SETCC) {
600 LHS = N.getOperand(0);
601 RHS = N.getOperand(1);
602 CC = N.getOperand(2);
Nate Begeman2504fe22005-09-01 23:24:04 +0000603 return true;
Nate Begeman7cea6ef2005-09-02 21:18:40 +0000604 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000605 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman21158fc2005-09-01 00:19:25 +0000606 N.getOperand(2).getOpcode() == ISD::Constant &&
607 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohmanb72127a2008-03-13 22:13:53 +0000608 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman7cea6ef2005-09-02 21:18:40 +0000609 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
610 LHS = N.getOperand(0);
611 RHS = N.getOperand(1);
612 CC = N.getOperand(4);
Nate Begeman21158fc2005-09-01 00:19:25 +0000613 return true;
Nate Begeman7cea6ef2005-09-02 21:18:40 +0000614 }
Nate Begeman21158fc2005-09-01 00:19:25 +0000615 return false;
616}
617
Nate Begeman2cc2c9a2005-09-07 23:25:52 +0000618// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
619// one use. If this is true, it allows the users to invert the operation for
620// free when it is profitable to do so.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000621static bool isOneUseSetCC(SDValue N) {
622 SDValue N0, N1, N2;
Gabor Greiff304a7a2008-08-28 21:40:38 +0000623 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman2504fe22005-09-01 23:24:04 +0000624 return true;
625 return false;
626}
627
Juergen Ributzka68402822014-01-13 21:49:25 +0000628// \brief Returns the SDNode if it is a constant BuildVector or constant int.
629static SDNode *isConstantBuildVectorOrConstantInt(SDValue N) {
630 if (isa<ConstantSDNode>(N))
631 return N.getNode();
632 BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N);
633 if(BV && BV->isConstant())
634 return BV;
635 return NULL;
636}
637
Andrew Trickef9de2a2013-05-25 02:42:55 +0000638SDValue DAGCombiner::ReassociateOps(unsigned Opc, SDLoc DL,
Bill Wendlingf6d0aff2009-01-30 00:45:56 +0000639 SDValue N0, SDValue N1) {
Owen Anderson53aa7a92009-08-10 22:56:29 +0000640 EVT VT = N0.getValueType();
Juergen Ributzka68402822014-01-13 21:49:25 +0000641 if (N0.getOpcode() == Opc) {
642 if (SDNode *L = isConstantBuildVectorOrConstantInt(N0.getOperand(1))) {
643 if (SDNode *R = isConstantBuildVectorOrConstantInt(N1)) {
644 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
645 SDValue OpNode = DAG.FoldConstantArithmetic(Opc, VT, L, R);
646 if (!OpNode.getNode())
647 return SDValue();
648 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Juergen Ributzka73844052014-01-13 20:51:35 +0000649 }
Juergen Ributzka68402822014-01-13 21:49:25 +0000650 if (N0.hasOneUse()) {
651 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one
652 // use
653 SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT, N0.getOperand(0), N1);
654 if (!OpNode.getNode())
655 return SDValue();
656 AddToWorkList(OpNode.getNode());
657 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Juergen Ributzka73844052014-01-13 20:51:35 +0000658 }
659 }
Nate Begeman22e251a2006-02-03 06:46:56 +0000660 }
Bill Wendlingf6d0aff2009-01-30 00:45:56 +0000661
Juergen Ributzka68402822014-01-13 21:49:25 +0000662 if (N1.getOpcode() == Opc) {
663 if (SDNode *R = isConstantBuildVectorOrConstantInt(N1.getOperand(1))) {
664 if (SDNode *L = isConstantBuildVectorOrConstantInt(N0)) {
665 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
666 SDValue OpNode = DAG.FoldConstantArithmetic(Opc, VT, R, L);
667 if (!OpNode.getNode())
668 return SDValue();
669 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
670 }
671 if (N1.hasOneUse()) {
672 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one
673 // use
674 SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT, N1.getOperand(0), N0);
675 if (!OpNode.getNode())
676 return SDValue();
677 AddToWorkList(OpNode.getNode());
678 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
679 }
Nate Begeman22e251a2006-02-03 06:46:56 +0000680 }
681 }
Bill Wendlingf6d0aff2009-01-30 00:45:56 +0000682
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000683 return SDValue();
Nate Begeman22e251a2006-02-03 06:46:56 +0000684}
685
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000686SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
687 bool AddTo) {
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000688 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
689 ++NodesCombined;
David Greenefe5c3522010-01-05 01:25:00 +0000690 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +0000691 N->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +0000692 dbgs() << "\nWith: ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +0000693 To[0].getNode()->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +0000694 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattner4dc3edd2009-08-23 06:35:02 +0000695 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen32042f92009-12-03 05:15:35 +0000696 assert((!To[i].getNode() ||
697 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman7e6b9322009-01-21 15:17:51 +0000698 "Cannot combine value to value of different type!"));
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000699 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000700 DAG.ReplaceAllUsesWith(N, To);
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000701 if (AddTo) {
702 // Push the new nodes and any users onto the worklist
703 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattner4147f082009-03-12 06:52:53 +0000704 if (To[i].getNode()) {
705 AddToWorkList(To[i].getNode());
706 AddUsersToWorkList(To[i].getNode());
707 }
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000708 }
709 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000710
Dan Gohmancd0b1bf2009-01-19 21:44:21 +0000711 // Finally, if the node is now dead, remove it from the graph. The node
712 // may not be dead if the replacement process recursively simplified to
713 // something else needing this node.
714 if (N->use_empty()) {
715 // Nodes can be reintroduced into the worklist. Make sure we do not
716 // process a node that has been replaced.
717 removeFromWorkList(N);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000718
Dan Gohmancd0b1bf2009-01-19 21:44:21 +0000719 // Finally, since the node is now dead, remove it from the graph.
720 DAG.DeleteNode(N);
721 }
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000722 return SDValue(N, 0);
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000723}
724
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000725void DAGCombiner::
726CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelcf0da6c2009-02-17 22:15:04 +0000727 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000728 // are deleted, make sure to remove them from our worklist.
729 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000730 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
Dan Gohmane58ab792009-01-29 01:59:02 +0000731
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000732 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greiff304a7a2008-08-28 21:40:38 +0000733 AddToWorkList(TLO.New.getNode());
734 AddUsersToWorkList(TLO.New.getNode());
Scott Michelcf0da6c2009-02-17 22:15:04 +0000735
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000736 // Finally, if the node is now dead, remove it from the graph. The node
737 // may not be dead if the replacement process recursively simplified to
738 // something else needing this node.
Gabor Greiff304a7a2008-08-28 21:40:38 +0000739 if (TLO.Old.getNode()->use_empty()) {
740 removeFromWorkList(TLO.Old.getNode());
Scott Michelcf0da6c2009-02-17 22:15:04 +0000741
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000742 // If the operands of this node are only used by the node, they will now
743 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greiff304a7a2008-08-28 21:40:38 +0000744 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
745 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
746 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelcf0da6c2009-02-17 22:15:04 +0000747
Gabor Greiff304a7a2008-08-28 21:40:38 +0000748 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000749 }
Dan Gohmane58ab792009-01-29 01:59:02 +0000750}
751
752/// SimplifyDemandedBits - Check the specified integer node value to see if
753/// it can be simplified or if things it uses can be simplified by bit
754/// propagation. If so, return true.
755bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000756 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane58ab792009-01-29 01:59:02 +0000757 APInt KnownZero, KnownOne;
758 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
759 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000760
Dan Gohmane58ab792009-01-29 01:59:02 +0000761 // Revisit the node.
762 AddToWorkList(Op.getNode());
Scott Michelcf0da6c2009-02-17 22:15:04 +0000763
Dan Gohmane58ab792009-01-29 01:59:02 +0000764 // Replace the old value with the new one.
765 ++NodesCombined;
Wesley Peck527da1b2010-11-23 03:31:01 +0000766 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +0000767 TLO.Old.getNode()->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +0000768 dbgs() << "\nWith: ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +0000769 TLO.New.getNode()->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +0000770 dbgs() << '\n');
Scott Michelcf0da6c2009-02-17 22:15:04 +0000771
Dan Gohmane58ab792009-01-29 01:59:02 +0000772 CommitTargetLoweringOpt(TLO);
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000773 return true;
774}
775
Evan Cheng0abb54d2010-04-24 04:43:44 +0000776void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000777 SDLoc dl(Load);
Evan Cheng0abb54d2010-04-24 04:43:44 +0000778 EVT VT = Load->getValueType(0);
779 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Chenge19aa5c2010-04-19 19:29:22 +0000780
Evan Cheng0abb54d2010-04-24 04:43:44 +0000781 DEBUG(dbgs() << "\nReplacing.9 ";
782 Load->dump(&DAG);
783 dbgs() << "\nWith: ";
784 Trunc.getNode()->dump(&DAG);
785 dbgs() << '\n');
786 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000787 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
788 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
Evan Cheng0abb54d2010-04-24 04:43:44 +0000789 removeFromWorkList(Load);
790 DAG.DeleteNode(Load);
Evan Chenge8136902010-04-27 19:48:13 +0000791 AddToWorkList(Trunc.getNode());
Evan Cheng0abb54d2010-04-24 04:43:44 +0000792}
793
794SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
795 Replace = false;
Andrew Trickef9de2a2013-05-25 02:42:55 +0000796 SDLoc dl(Op);
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000797 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chenge8136902010-04-27 19:48:13 +0000798 EVT MemVT = LD->getMemoryVT();
799 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Andersonb2c80da2011-02-25 21:41:48 +0000800 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopherd9e8eac2010-12-09 04:48:06 +0000801 : ISD::EXTLOAD)
Evan Chenge8136902010-04-27 19:48:13 +0000802 : LD->getExtensionType();
Evan Cheng0abb54d2010-04-24 04:43:44 +0000803 Replace = true;
Stuart Hastings81c43062011-02-16 16:23:55 +0000804 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000805 LD->getChain(), LD->getBasePtr(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000806 MemVT, LD->getMemOperand());
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000807 }
808
Evan Chenge19aa5c2010-04-19 19:29:22 +0000809 unsigned Opc = Op.getOpcode();
Evan Chengb9ff1302010-04-23 19:10:30 +0000810 switch (Opc) {
811 default: break;
812 case ISD::AssertSext:
Evan Chenge19aa5c2010-04-19 19:29:22 +0000813 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng0abb54d2010-04-24 04:43:44 +0000814 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Chenge19aa5c2010-04-19 19:29:22 +0000815 Op.getOperand(1));
Evan Chengb9ff1302010-04-23 19:10:30 +0000816 case ISD::AssertZext:
Evan Chenge19aa5c2010-04-19 19:29:22 +0000817 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng0abb54d2010-04-24 04:43:44 +0000818 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Chenge19aa5c2010-04-19 19:29:22 +0000819 Op.getOperand(1));
Evan Chengb9ff1302010-04-23 19:10:30 +0000820 case ISD::Constant: {
821 unsigned ExtOpc =
Evan Chenge19aa5c2010-04-19 19:29:22 +0000822 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengb9ff1302010-04-23 19:10:30 +0000823 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peck527da1b2010-11-23 03:31:01 +0000824 }
Evan Chengb9ff1302010-04-23 19:10:30 +0000825 }
826
827 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000828 return SDValue();
Evan Chengb9ff1302010-04-23 19:10:30 +0000829 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Chengaf56fac2010-04-16 06:14:10 +0000830}
831
Evan Cheng0abb54d2010-04-24 04:43:44 +0000832SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000833 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
834 return SDValue();
835 EVT OldVT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000836 SDLoc dl(Op);
Evan Cheng0abb54d2010-04-24 04:43:44 +0000837 bool Replace = false;
838 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
839 if (NewOp.getNode() == 0)
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000840 return SDValue();
Evan Chenge8136902010-04-27 19:48:13 +0000841 AddToWorkList(NewOp.getNode());
Evan Cheng0abb54d2010-04-24 04:43:44 +0000842
843 if (Replace)
844 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
845 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000846 DAG.getValueType(OldVT));
847}
848
Evan Cheng0abb54d2010-04-24 04:43:44 +0000849SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000850 EVT OldVT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000851 SDLoc dl(Op);
Evan Cheng0abb54d2010-04-24 04:43:44 +0000852 bool Replace = false;
853 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
854 if (NewOp.getNode() == 0)
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000855 return SDValue();
Evan Chenge8136902010-04-27 19:48:13 +0000856 AddToWorkList(NewOp.getNode());
Evan Cheng0abb54d2010-04-24 04:43:44 +0000857
858 if (Replace)
859 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
860 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000861}
862
Evan Chengaf56fac2010-04-16 06:14:10 +0000863/// PromoteIntBinOp - Promote the specified integer binary operation if the
864/// target indicates it is beneficial. e.g. On x86, it's usually better to
865/// promote i16 operations to i32 since i16 instructions are longer.
866SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
867 if (!LegalOperations)
868 return SDValue();
869
870 EVT VT = Op.getValueType();
871 if (VT.isVector() || !VT.isInteger())
872 return SDValue();
873
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000874 // If operation type is 'undesirable', e.g. i16 on x86, consider
875 // promoting it.
876 unsigned Opc = Op.getOpcode();
877 if (TLI.isTypeDesirableForOp(Opc, VT))
878 return SDValue();
879
Evan Chengaf56fac2010-04-16 06:14:10 +0000880 EVT PVT = VT;
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000881 // Consult target whether it is a good idea to promote this operation and
882 // what's the right type to promote it to.
883 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Chengaf56fac2010-04-16 06:14:10 +0000884 assert(PVT != VT && "Don't know what type to promote to!");
885
Evan Cheng0abb54d2010-04-24 04:43:44 +0000886 bool Replace0 = false;
887 SDValue N0 = Op.getOperand(0);
888 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
889 if (NN0.getNode() == 0)
Evan Chengf1223bd2010-04-22 20:19:46 +0000890 return SDValue();
891
Evan Cheng0abb54d2010-04-24 04:43:44 +0000892 bool Replace1 = false;
893 SDValue N1 = Op.getOperand(1);
Evan Cheng02947a42010-05-10 19:03:57 +0000894 SDValue NN1;
895 if (N0 == N1)
896 NN1 = NN0;
897 else {
898 NN1 = PromoteOperand(N1, PVT, Replace1);
899 if (NN1.getNode() == 0)
900 return SDValue();
901 }
Evan Chengf1223bd2010-04-22 20:19:46 +0000902
Evan Cheng0abb54d2010-04-24 04:43:44 +0000903 AddToWorkList(NN0.getNode());
Evan Cheng02947a42010-05-10 19:03:57 +0000904 if (NN1.getNode())
905 AddToWorkList(NN1.getNode());
Evan Cheng0abb54d2010-04-24 04:43:44 +0000906
907 if (Replace0)
908 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
909 if (Replace1)
910 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Chengf1223bd2010-04-22 20:19:46 +0000911
Evan Chenge8136902010-04-27 19:48:13 +0000912 DEBUG(dbgs() << "\nPromoting ";
913 Op.getNode()->dump(&DAG));
Andrew Trickef9de2a2013-05-25 02:42:55 +0000914 SDLoc dl(Op);
Evan Chengf1223bd2010-04-22 20:19:46 +0000915 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng0abb54d2010-04-24 04:43:44 +0000916 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Chengf1223bd2010-04-22 20:19:46 +0000917 }
918 return SDValue();
919}
920
921/// PromoteIntShiftOp - Promote the specified integer shift operation if the
922/// target indicates it is beneficial. e.g. On x86, it's usually better to
923/// promote i16 operations to i32 since i16 instructions are longer.
924SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
925 if (!LegalOperations)
926 return SDValue();
927
928 EVT VT = Op.getValueType();
929 if (VT.isVector() || !VT.isInteger())
930 return SDValue();
931
932 // If operation type is 'undesirable', e.g. i16 on x86, consider
933 // promoting it.
934 unsigned Opc = Op.getOpcode();
935 if (TLI.isTypeDesirableForOp(Opc, VT))
936 return SDValue();
937
938 EVT PVT = VT;
939 // Consult target whether it is a good idea to promote this operation and
940 // what's the right type to promote it to.
941 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
942 assert(PVT != VT && "Don't know what type to promote to!");
943
Evan Cheng0abb54d2010-04-24 04:43:44 +0000944 bool Replace = false;
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000945 SDValue N0 = Op.getOperand(0);
946 if (Opc == ISD::SRA)
Evan Cheng0abb54d2010-04-24 04:43:44 +0000947 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000948 else if (Opc == ISD::SRL)
Evan Cheng0abb54d2010-04-24 04:43:44 +0000949 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000950 else
Evan Cheng0abb54d2010-04-24 04:43:44 +0000951 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000952 if (N0.getNode() == 0)
953 return SDValue();
Evan Cheng0abb54d2010-04-24 04:43:44 +0000954
Evan Chengf1bd5fc2010-04-17 06:13:15 +0000955 AddToWorkList(N0.getNode());
Evan Cheng0abb54d2010-04-24 04:43:44 +0000956 if (Replace)
957 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Chengaf56fac2010-04-16 06:14:10 +0000958
Evan Chenge8136902010-04-27 19:48:13 +0000959 DEBUG(dbgs() << "\nPromoting ";
960 Op.getNode()->dump(&DAG));
Andrew Trickef9de2a2013-05-25 02:42:55 +0000961 SDLoc dl(Op);
Evan Chengaf56fac2010-04-16 06:14:10 +0000962 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Chengf1223bd2010-04-22 20:19:46 +0000963 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Chengaf56fac2010-04-16 06:14:10 +0000964 }
965 return SDValue();
966}
967
Evan Chenge19aa5c2010-04-19 19:29:22 +0000968SDValue DAGCombiner::PromoteExtend(SDValue Op) {
969 if (!LegalOperations)
970 return SDValue();
971
972 EVT VT = Op.getValueType();
973 if (VT.isVector() || !VT.isInteger())
974 return SDValue();
975
976 // If operation type is 'undesirable', e.g. i16 on x86, consider
977 // promoting it.
978 unsigned Opc = Op.getOpcode();
979 if (TLI.isTypeDesirableForOp(Opc, VT))
980 return SDValue();
981
982 EVT PVT = VT;
983 // Consult target whether it is a good idea to promote this operation and
984 // what's the right type to promote it to.
985 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
986 assert(PVT != VT && "Don't know what type to promote to!");
987 // fold (aext (aext x)) -> (aext x)
988 // fold (aext (zext x)) -> (zext x)
989 // fold (aext (sext x)) -> (sext x)
Evan Chenge8136902010-04-27 19:48:13 +0000990 DEBUG(dbgs() << "\nPromoting ";
991 Op.getNode()->dump(&DAG));
Andrew Trickef9de2a2013-05-25 02:42:55 +0000992 return DAG.getNode(Op.getOpcode(), SDLoc(Op), VT, Op.getOperand(0));
Evan Chenge19aa5c2010-04-19 19:29:22 +0000993 }
994 return SDValue();
995}
996
997bool DAGCombiner::PromoteLoad(SDValue Op) {
998 if (!LegalOperations)
999 return false;
1000
1001 EVT VT = Op.getValueType();
1002 if (VT.isVector() || !VT.isInteger())
1003 return false;
1004
1005 // If operation type is 'undesirable', e.g. i16 on x86, consider
1006 // promoting it.
1007 unsigned Opc = Op.getOpcode();
1008 if (TLI.isTypeDesirableForOp(Opc, VT))
1009 return false;
1010
1011 EVT PVT = VT;
1012 // Consult target whether it is a good idea to promote this operation and
1013 // what's the right type to promote it to.
1014 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
1015 assert(PVT != VT && "Don't know what type to promote to!");
1016
Andrew Trickef9de2a2013-05-25 02:42:55 +00001017 SDLoc dl(Op);
Evan Chenge19aa5c2010-04-19 19:29:22 +00001018 SDNode *N = Op.getNode();
1019 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chenge8136902010-04-27 19:48:13 +00001020 EVT MemVT = LD->getMemoryVT();
1021 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Andersonb2c80da2011-02-25 21:41:48 +00001022 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopherd9e8eac2010-12-09 04:48:06 +00001023 : ISD::EXTLOAD)
Evan Chenge8136902010-04-27 19:48:13 +00001024 : LD->getExtensionType();
Stuart Hastings81c43062011-02-16 16:23:55 +00001025 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge19aa5c2010-04-19 19:29:22 +00001026 LD->getChain(), LD->getBasePtr(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00001027 MemVT, LD->getMemOperand());
Evan Chenge19aa5c2010-04-19 19:29:22 +00001028 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
1029
Evan Cheng0abb54d2010-04-24 04:43:44 +00001030 DEBUG(dbgs() << "\nPromoting ";
Evan Chenge19aa5c2010-04-19 19:29:22 +00001031 N->dump(&DAG);
Evan Cheng0abb54d2010-04-24 04:43:44 +00001032 dbgs() << "\nTo: ";
Evan Chenge19aa5c2010-04-19 19:29:22 +00001033 Result.getNode()->dump(&DAG);
1034 dbgs() << '\n');
1035 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00001036 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
1037 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
Evan Chenge19aa5c2010-04-19 19:29:22 +00001038 removeFromWorkList(N);
1039 DAG.DeleteNode(N);
Evan Chenge8136902010-04-27 19:48:13 +00001040 AddToWorkList(Result.getNode());
Evan Chenge19aa5c2010-04-19 19:29:22 +00001041 return true;
1042 }
1043 return false;
1044}
1045
Evan Chengf1bd5fc2010-04-17 06:13:15 +00001046
Chris Lattnere49c9742007-05-14 22:04:50 +00001047//===----------------------------------------------------------------------===//
1048// Main DAG Combiner implementation
1049//===----------------------------------------------------------------------===//
1050
Duncan Sandsdc2dac12008-11-24 14:53:14 +00001051void DAGCombiner::Run(CombineLevel AtLevel) {
1052 // set the instance variables, so that the various visit routines may use it.
1053 Level = AtLevel;
Eli Friedman9d448e42011-11-12 00:35:34 +00001054 LegalOperations = Level >= AfterLegalizeVectorOps;
1055 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman2504fe22005-09-01 23:24:04 +00001056
Evan Cheng5e7658c2008-08-29 22:21:44 +00001057 // Add all the dag nodes to the worklist.
Evan Cheng5e7658c2008-08-29 22:21:44 +00001058 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
1059 E = DAG.allnodes_end(); I != E; ++I)
James Molloy67b6b112012-02-16 09:17:04 +00001060 AddToWorkList(I);
Duncan Sandsdc2dac12008-11-24 14:53:14 +00001061
Evan Cheng5e7658c2008-08-29 22:21:44 +00001062 // Create a dummy node (which is not added to allnodes), that adds a reference
1063 // to the root node, preventing it from being deleted, and tracking any
1064 // changes of the root.
1065 HandleSDNode Dummy(DAG.getRoot());
Scott Michelcf0da6c2009-02-17 22:15:04 +00001066
Jim Laskeye7d2c242006-10-17 19:33:52 +00001067 // The root of the dag may dangle to deleted nodes until the dag combiner is
1068 // done. Set it to null to avoid confusion.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001069 DAG.setRoot(SDValue());
Scott Michelcf0da6c2009-02-17 22:15:04 +00001070
James Molloy67b6b112012-02-16 09:17:04 +00001071 // while the worklist isn't empty, find a node and
Evan Cheng5e7658c2008-08-29 22:21:44 +00001072 // try and combine it.
James Molloy67b6b112012-02-16 09:17:04 +00001073 while (!WorkListContents.empty()) {
1074 SDNode *N;
Jack Carterd4e96152013-10-17 01:34:33 +00001075 // The WorkListOrder holds the SDNodes in order, but it may contain
1076 // duplicates.
James Molloy67b6b112012-02-16 09:17:04 +00001077 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1078 // worklist *should* contain, and check the node we want to visit is should
1079 // actually be visited.
1080 do {
Benjamin Kramere1e549d2012-03-10 00:23:58 +00001081 N = WorkListOrder.pop_back_val();
James Molloy67b6b112012-02-16 09:17:04 +00001082 } while (!WorkListContents.erase(N));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001083
Evan Cheng5e7658c2008-08-29 22:21:44 +00001084 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1085 // N is deleted from the DAG, since they too may now be dead or may have a
1086 // reduced number of uses, allowing other xforms.
1087 if (N->use_empty() && N != &Dummy) {
1088 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1089 AddToWorkList(N->getOperand(i).getNode());
Scott Michelcf0da6c2009-02-17 22:15:04 +00001090
Evan Cheng5e7658c2008-08-29 22:21:44 +00001091 DAG.DeleteNode(N);
1092 continue;
Nate Begeman21158fc2005-09-01 00:19:25 +00001093 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001094
Evan Cheng5e7658c2008-08-29 22:21:44 +00001095 SDValue RV = combine(N);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001096
Evan Cheng5e7658c2008-08-29 22:21:44 +00001097 if (RV.getNode() == 0)
1098 continue;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001099
Evan Cheng5e7658c2008-08-29 22:21:44 +00001100 ++NodesCombined;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001101
Evan Cheng5e7658c2008-08-29 22:21:44 +00001102 // If we get back the same node we passed in, rather than a new node or
1103 // zero, we know that the node must have defined multiple values and
Scott Michelcf0da6c2009-02-17 22:15:04 +00001104 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng5e7658c2008-08-29 22:21:44 +00001105 // mechanics for us, we have no work to do in this case.
1106 if (RV.getNode() == N)
1107 continue;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001108
Evan Cheng5e7658c2008-08-29 22:21:44 +00001109 assert(N->getOpcode() != ISD::DELETED_NODE &&
1110 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1111 "Node was deleted but visit returned new node!");
Chris Lattner8f872d22006-05-27 00:43:02 +00001112
Wesley Peck527da1b2010-11-23 03:31:01 +00001113 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +00001114 N->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +00001115 dbgs() << "\nWith: ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +00001116 RV.getNode()->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +00001117 dbgs() << '\n');
Eric Christopherd6300d22011-07-14 01:12:15 +00001118
Devang Patelefec7712011-05-23 22:04:42 +00001119 // Transfer debug value.
1120 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng5e7658c2008-08-29 22:21:44 +00001121 WorkListRemover DeadNodes(*this);
1122 if (N->getNumValues() == RV.getNode()->getNumValues())
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00001123 DAG.ReplaceAllUsesWith(N, RV.getNode());
Evan Cheng5e7658c2008-08-29 22:21:44 +00001124 else {
1125 assert(N->getValueType(0) == RV.getValueType() &&
1126 N->getNumValues() == 1 && "Type mismatch");
1127 SDValue OpV = RV;
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00001128 DAG.ReplaceAllUsesWith(N, &OpV);
Evan Cheng5e7658c2008-08-29 22:21:44 +00001129 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001130
Evan Cheng5e7658c2008-08-29 22:21:44 +00001131 // Push the new node and any users onto the worklist
1132 AddToWorkList(RV.getNode());
1133 AddUsersToWorkList(RV.getNode());
Scott Michelcf0da6c2009-02-17 22:15:04 +00001134
Evan Cheng5e7658c2008-08-29 22:21:44 +00001135 // Add any uses of the old node to the worklist in case this node is the
1136 // last one that uses them. They may become dead after this node is
1137 // deleted.
1138 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1139 AddToWorkList(N->getOperand(i).getNode());
Scott Michelcf0da6c2009-02-17 22:15:04 +00001140
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00001141 // Finally, if the node is now dead, remove it from the graph. The node
1142 // may not be dead if the replacement process recursively simplified to
1143 // something else needing this node.
1144 if (N->use_empty()) {
1145 // Nodes can be reintroduced into the worklist. Make sure we do not
1146 // process a node that has been replaced.
1147 removeFromWorkList(N);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001148
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00001149 // Finally, since the node is now dead, remove it from the graph.
1150 DAG.DeleteNode(N);
1151 }
Evan Cheng5e7658c2008-08-29 22:21:44 +00001152 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001153
Chris Lattner06f1d0f2005-10-05 06:35:28 +00001154 // If the root changed (e.g. it was a dead load, update the root).
1155 DAG.setRoot(Dummy.getValue());
Hal Finkele0cf6392012-04-16 03:33:22 +00001156 DAG.RemoveDeadNodes();
Nate Begeman21158fc2005-09-01 00:19:25 +00001157}
1158
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001159SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengf1005572010-04-28 07:10:39 +00001160 switch (N->getOpcode()) {
Nate Begeman21158fc2005-09-01 00:19:25 +00001161 default: break;
Nate Begemane8f78d12005-09-01 00:33:32 +00001162 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattneree322b42008-02-13 07:25:05 +00001163 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001164 case ISD::ADD: return visitADD(N);
1165 case ISD::SUB: return visitSUB(N);
Chris Lattnere2e13ca2007-03-04 20:03:15 +00001166 case ISD::ADDC: return visitADDC(N);
Craig Topper43a1bd62012-01-07 09:06:39 +00001167 case ISD::SUBC: return visitSUBC(N);
Chris Lattnere2e13ca2007-03-04 20:03:15 +00001168 case ISD::ADDE: return visitADDE(N);
Craig Topper43a1bd62012-01-07 09:06:39 +00001169 case ISD::SUBE: return visitSUBE(N);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001170 case ISD::MUL: return visitMUL(N);
1171 case ISD::SDIV: return visitSDIV(N);
1172 case ISD::UDIV: return visitUDIV(N);
1173 case ISD::SREM: return visitSREM(N);
1174 case ISD::UREM: return visitUREM(N);
1175 case ISD::MULHU: return visitMULHU(N);
1176 case ISD::MULHS: return visitMULHS(N);
Dan Gohman5c6d0c32007-10-08 17:57:15 +00001177 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1178 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramer2fd48f22011-05-21 18:31:55 +00001179 case ISD::SMULO: return visitSMULO(N);
1180 case ISD::UMULO: return visitUMULO(N);
Dan Gohman5c6d0c32007-10-08 17:57:15 +00001181 case ISD::SDIVREM: return visitSDIVREM(N);
1182 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001183 case ISD::AND: return visitAND(N);
1184 case ISD::OR: return visitOR(N);
1185 case ISD::XOR: return visitXOR(N);
1186 case ISD::SHL: return visitSHL(N);
1187 case ISD::SRA: return visitSRA(N);
1188 case ISD::SRL: return visitSRL(N);
1189 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth637cc6a2011-12-13 01:56:10 +00001190 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001191 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth637cc6a2011-12-13 01:56:10 +00001192 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001193 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman24a7eca2005-09-16 00:54:12 +00001194 case ISD::SELECT: return visitSELECT(N);
Benjamin Kramerd56ffc72013-04-26 09:19:19 +00001195 case ISD::VSELECT: return visitVSELECT(N);
Nate Begeman24a7eca2005-09-16 00:54:12 +00001196 case ISD::SELECT_CC: return visitSELECT_CC(N);
1197 case ISD::SETCC: return visitSETCC(N);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001198 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1199 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner812646a2006-05-05 05:58:59 +00001200 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001201 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1202 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peck527da1b2010-11-23 03:31:01 +00001203 case ISD::BITCAST: return visitBITCAST(N);
Evan Chengb980f6f2008-05-12 23:04:07 +00001204 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner6f3b5772005-09-28 22:28:18 +00001205 case ISD::FADD: return visitFADD(N);
1206 case ISD::FSUB: return visitFSUB(N);
1207 case ISD::FMUL: return visitFMUL(N);
Owen Anderson41b06652012-05-02 22:17:40 +00001208 case ISD::FMA: return visitFMA(N);
Chris Lattner6f3b5772005-09-28 22:28:18 +00001209 case ISD::FDIV: return visitFDIV(N);
1210 case ISD::FREM: return visitFREM(N);
Chris Lattner3bc40502006-03-05 05:30:57 +00001211 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001212 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1213 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1214 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1215 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1216 case ISD::FP_ROUND: return visitFP_ROUND(N);
1217 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1218 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1219 case ISD::FNEG: return visitFNEG(N);
1220 case ISD::FABS: return visitFABS(N);
Owen Andersona40319b2012-08-13 23:32:49 +00001221 case ISD::FFLOOR: return visitFFLOOR(N);
1222 case ISD::FCEIL: return visitFCEIL(N);
1223 case ISD::FTRUNC: return visitFTRUNC(N);
Nate Begemanc760f802005-09-19 22:34:01 +00001224 case ISD::BRCOND: return visitBRCOND(N);
Nate Begemanc760f802005-09-19 22:34:01 +00001225 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattnere260ed82005-10-10 22:04:48 +00001226 case ISD::LOAD: return visitLOAD(N);
Chris Lattner04c73702005-10-10 22:31:19 +00001227 case ISD::STORE: return visitSTORE(N);
Chris Lattner5336a592006-03-19 01:27:56 +00001228 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng0de312d2007-10-06 08:19:55 +00001229 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohmana8665142007-06-25 16:23:39 +00001230 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1231 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopes6cb23f62011-09-20 23:19:33 +00001232 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattnera46dfe82006-03-28 22:11:53 +00001233 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Manman Ren413a6cb2014-01-31 01:10:35 +00001234 case ISD::INSERT_SUBVECTOR: return visitINSERT_SUBVECTOR(N);
Nate Begeman21158fc2005-09-01 00:19:25 +00001235 }
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001236 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00001237}
1238
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001239SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001240 SDValue RV = visit(N);
Dan Gohman5c6d0c32007-10-08 17:57:15 +00001241
1242 // If nothing happened, try a target-specific DAG combine.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001243 if (RV.getNode() == 0) {
Dan Gohman5c6d0c32007-10-08 17:57:15 +00001244 assert(N->getOpcode() != ISD::DELETED_NODE &&
1245 "Node was deleted but visit returned NULL!");
1246
1247 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1248 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1249
1250 // Expose the DAG combiner to the target combiner impls.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001251 TargetLowering::DAGCombinerInfo
Nadav Rotemb1dd5242012-12-27 06:47:41 +00001252 DagCombineInfo(DAG, Level, false, this);
Dan Gohman5c6d0c32007-10-08 17:57:15 +00001253
1254 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1255 }
1256 }
1257
Evan Chengf1005572010-04-28 07:10:39 +00001258 // If nothing happened still, try promoting the operation.
1259 if (RV.getNode() == 0) {
1260 switch (N->getOpcode()) {
1261 default: break;
1262 case ISD::ADD:
1263 case ISD::SUB:
1264 case ISD::MUL:
1265 case ISD::AND:
1266 case ISD::OR:
1267 case ISD::XOR:
1268 RV = PromoteIntBinOp(SDValue(N, 0));
1269 break;
1270 case ISD::SHL:
1271 case ISD::SRA:
1272 case ISD::SRL:
1273 RV = PromoteIntShiftOp(SDValue(N, 0));
1274 break;
1275 case ISD::SIGN_EXTEND:
1276 case ISD::ZERO_EXTEND:
1277 case ISD::ANY_EXTEND:
1278 RV = PromoteExtend(SDValue(N, 0));
1279 break;
1280 case ISD::LOAD:
1281 if (PromoteLoad(SDValue(N, 0)))
1282 RV = SDValue(N, 0);
1283 break;
1284 }
1285 }
1286
Scott Michelcf0da6c2009-02-17 22:15:04 +00001287 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng31604a62008-03-22 01:55:50 +00001288 // sdisel CSE.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001289 if (RV.getNode() == 0 &&
Evan Cheng31604a62008-03-22 01:55:50 +00001290 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1291 N->getNumValues() == 1) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001292 SDValue N0 = N->getOperand(0);
1293 SDValue N1 = N->getOperand(1);
Bill Wendling9c9a3b62009-01-30 01:13:16 +00001294
Evan Cheng31604a62008-03-22 01:55:50 +00001295 // Constant operands are canonicalized to RHS.
1296 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001297 SDValue Ops[] = { N1, N0 };
Evan Cheng31604a62008-03-22 01:55:50 +00001298 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1299 Ops, 2);
Evan Chengfe7610f2008-03-24 23:55:16 +00001300 if (CSENode)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001301 return SDValue(CSENode, 0);
Evan Cheng31604a62008-03-22 01:55:50 +00001302 }
1303 }
1304
Dan Gohman5c6d0c32007-10-08 17:57:15 +00001305 return RV;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001306}
Dan Gohman5c6d0c32007-10-08 17:57:15 +00001307
Chris Lattner5ab6d8b2006-10-08 22:57:01 +00001308/// getInputChainForNode - Given a node, return its input chain if it has one,
1309/// otherwise return a null sd operand.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001310static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner5ab6d8b2006-10-08 22:57:01 +00001311 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson9f944592009-08-11 20:47:22 +00001312 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner5ab6d8b2006-10-08 22:57:01 +00001313 return N->getOperand(0);
Stephen Lin8e8424e2013-07-09 00:44:49 +00001314 if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner5ab6d8b2006-10-08 22:57:01 +00001315 return N->getOperand(NumOps-1);
1316 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson9f944592009-08-11 20:47:22 +00001317 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner5ab6d8b2006-10-08 22:57:01 +00001318 return N->getOperand(i);
1319 }
Bill Wendling9c9a3b62009-01-30 01:13:16 +00001320 return SDValue();
Chris Lattner5ab6d8b2006-10-08 22:57:01 +00001321}
1322
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001323SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner5ab6d8b2006-10-08 22:57:01 +00001324 // If N has two operands, where one has an input chain equal to the other,
1325 // the 'other' chain is redundant.
1326 if (N->getNumOperands() == 2) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001327 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner5ab6d8b2006-10-08 22:57:01 +00001328 return N->getOperand(0);
Gabor Greiff304a7a2008-08-28 21:40:38 +00001329 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner5ab6d8b2006-10-08 22:57:01 +00001330 return N->getOperand(1);
1331 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001332
Chris Lattner48fb92f2007-05-16 06:37:59 +00001333 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001334 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001335 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattner48fb92f2007-05-16 06:37:59 +00001336 bool Changed = false; // If we should replace this token factor.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001337
Jim Laskey708d0db2006-10-04 16:53:27 +00001338 // Start out with this token factor.
Jim Laskeyd07be232006-09-25 16:29:54 +00001339 TFs.push_back(N);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001340
Jim Laskey0463e082006-10-07 23:37:56 +00001341 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskey6549d222006-10-05 15:07:25 +00001342 // encountered.
1343 for (unsigned i = 0; i < TFs.size(); ++i) {
1344 SDNode *TF = TFs[i];
Scott Michelcf0da6c2009-02-17 22:15:04 +00001345
Jim Laskey708d0db2006-10-04 16:53:27 +00001346 // Check each of the operands.
1347 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001348 SDValue Op = TF->getOperand(i);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001349
Jim Laskey708d0db2006-10-04 16:53:27 +00001350 switch (Op.getOpcode()) {
1351 case ISD::EntryToken:
Jim Laskey6549d222006-10-05 15:07:25 +00001352 // Entry tokens don't need to be added to the list. They are
1353 // rededundant.
1354 Changed = true;
Jim Laskey708d0db2006-10-04 16:53:27 +00001355 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001356
Jim Laskey708d0db2006-10-04 16:53:27 +00001357 case ISD::TokenFactor:
Nate Begeman879d8f12009-09-15 00:18:30 +00001358 if (Op.hasOneUse() &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00001359 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey708d0db2006-10-04 16:53:27 +00001360 // Queue up for processing.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001361 TFs.push_back(Op.getNode());
Jim Laskey708d0db2006-10-04 16:53:27 +00001362 // Clean up in case the token factor is removed.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001363 AddToWorkList(Op.getNode());
Jim Laskey708d0db2006-10-04 16:53:27 +00001364 Changed = true;
1365 break;
Jim Laskeyd07be232006-09-25 16:29:54 +00001366 }
Jim Laskey708d0db2006-10-04 16:53:27 +00001367 // Fall thru
Scott Michelcf0da6c2009-02-17 22:15:04 +00001368
Jim Laskey708d0db2006-10-04 16:53:27 +00001369 default:
Chris Lattner48fb92f2007-05-16 06:37:59 +00001370 // Only add if it isn't already in the list.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001371 if (SeenOps.insert(Op.getNode()))
Jim Laskey6549d222006-10-05 15:07:25 +00001372 Ops.push_back(Op);
Chris Lattner48fb92f2007-05-16 06:37:59 +00001373 else
1374 Changed = true;
Jim Laskey708d0db2006-10-04 16:53:27 +00001375 break;
Jim Laskeyd07be232006-09-25 16:29:54 +00001376 }
1377 }
Jim Laskey708d0db2006-10-04 16:53:27 +00001378 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001379
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001380 SDValue Result;
Jim Laskey708d0db2006-10-04 16:53:27 +00001381
1382 // If we've change things around then replace token factor.
1383 if (Changed) {
Dan Gohman70de4cb2008-01-29 13:02:09 +00001384 if (Ops.empty()) {
Jim Laskey708d0db2006-10-04 16:53:27 +00001385 // The entry token is the only possible outcome.
1386 Result = DAG.getEntryNode();
1387 } else {
1388 // New and improved token factor.
Andrew Trickef9de2a2013-05-25 02:42:55 +00001389 Result = DAG.getNode(ISD::TokenFactor, SDLoc(N),
Owen Anderson9f944592009-08-11 20:47:22 +00001390 MVT::Other, &Ops[0], Ops.size());
Nate Begeman02b23c62005-10-13 03:11:28 +00001391 }
Bill Wendling9c9a3b62009-01-30 01:13:16 +00001392
Jim Laskeydcf983c2006-10-13 23:32:28 +00001393 // Don't add users to work list.
1394 return CombineTo(N, Result, false);
Nate Begeman02b23c62005-10-13 03:11:28 +00001395 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001396
Jim Laskey708d0db2006-10-04 16:53:27 +00001397 return Result;
Nate Begeman21158fc2005-09-01 00:19:25 +00001398}
1399
Chris Lattneree322b42008-02-13 07:25:05 +00001400/// MERGE_VALUES can always be eliminated.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001401SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattneree322b42008-02-13 07:25:05 +00001402 WorkListRemover DeadNodes(*this);
Dan Gohman9d26c852009-08-10 23:43:19 +00001403 // Replacing results may cause a different MERGE_VALUES to suddenly
1404 // be CSE'd with N, and carry its uses with it. Iterate until no
1405 // uses remain, to ensure that the node can be safely deleted.
Pete Cooperfe5b84b2012-06-20 19:35:43 +00001406 // First add the users of this node to the work list so that they
1407 // can be tried again once they have new operands.
1408 AddUsersToWorkList(N);
Dan Gohman9d26c852009-08-10 23:43:19 +00001409 do {
1410 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00001411 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
Dan Gohman9d26c852009-08-10 23:43:19 +00001412 } while (!N->use_empty());
Chris Lattneree322b42008-02-13 07:25:05 +00001413 removeFromWorkList(N);
1414 DAG.DeleteNode(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001415 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattneree322b42008-02-13 07:25:05 +00001416}
1417
Evan Cheng92011002007-01-19 17:51:44 +00001418static
Andrew Trickef9de2a2013-05-25 02:42:55 +00001419SDValue combineShlAddConstant(SDLoc DL, SDValue N0, SDValue N1,
Bill Wendlingcdd96132009-01-30 02:23:43 +00001420 SelectionDAG &DAG) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001421 EVT VT = N0.getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001422 SDValue N00 = N0.getOperand(0);
1423 SDValue N01 = N0.getOperand(1);
Evan Cheng92011002007-01-19 17:51:44 +00001424 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingcdd96132009-01-30 02:23:43 +00001425
Gabor Greiff304a7a2008-08-28 21:40:38 +00001426 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng92011002007-01-19 17:51:44 +00001427 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingcdd96132009-01-30 02:23:43 +00001428 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Andrew Trickef9de2a2013-05-25 02:42:55 +00001429 N0 = DAG.getNode(ISD::ADD, SDLoc(N0), VT,
1430 DAG.getNode(ISD::SHL, SDLoc(N00), VT,
Bill Wendlingcdd96132009-01-30 02:23:43 +00001431 N00.getOperand(0), N01),
Andrew Trickef9de2a2013-05-25 02:42:55 +00001432 DAG.getNode(ISD::SHL, SDLoc(N01), VT,
Bill Wendlingcdd96132009-01-30 02:23:43 +00001433 N00.getOperand(1), N01));
1434 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng92011002007-01-19 17:51:44 +00001435 }
Bill Wendlingcdd96132009-01-30 02:23:43 +00001436
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001437 return SDValue();
Evan Cheng92011002007-01-19 17:51:44 +00001438}
1439
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001440SDValue DAGCombiner::visitADD(SDNode *N) {
1441 SDValue N0 = N->getOperand(0);
1442 SDValue N1 = N->getOperand(1);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001443 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1444 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001445 EVT VT = N0.getValueType();
Dan Gohmana8665142007-06-25 16:23:39 +00001446
1447 // fold vector ops
Duncan Sands13237ac2008-06-06 12:08:01 +00001448 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001449 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00001450 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topperd8005db2012-12-10 08:12:29 +00001451
1452 // fold (add x, 0) -> x, vector edition
1453 if (ISD::isBuildVectorAllZeros(N1.getNode()))
1454 return N0;
1455 if (ISD::isBuildVectorAllZeros(N0.getNode()))
1456 return N1;
Dan Gohman80f9f072007-07-13 20:03:40 +00001457 }
Bill Wendling0864a752008-12-10 22:36:00 +00001458
Dan Gohman06563a82007-07-03 14:03:57 +00001459 // fold (add x, undef) -> undef
Dan Gohmanadb3d372007-07-10 15:19:29 +00001460 if (N0.getOpcode() == ISD::UNDEF)
1461 return N0;
1462 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman06563a82007-07-03 14:03:57 +00001463 return N1;
Nate Begeman21158fc2005-09-01 00:19:25 +00001464 // fold (add c1, c2) -> c1+c2
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001465 if (N0C && N1C)
Bill Wendlingdea91302008-09-24 10:25:02 +00001466 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman2cc2c9a2005-09-07 23:25:52 +00001467 // canonicalize constant to RHS
Nate Begeman418c6e42005-10-18 00:28:13 +00001468 if (N0C && !N1C)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001469 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N1, N0);
Nate Begeman21158fc2005-09-01 00:19:25 +00001470 // fold (add x, 0) -> x
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001471 if (N1C && N1C->isNullValue())
Nate Begemand23739d2005-09-06 04:43:02 +00001472 return N0;
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001473 // fold (add Sym, c) -> Sym+c
1474 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sandsdc2dac12008-11-24 14:53:14 +00001475 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001476 GA->getOpcode() == ISD::GlobalAddress)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001477 return DAG.getGlobalAddress(GA->getGlobal(), SDLoc(N1C), VT,
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001478 GA->getOffset() +
1479 (uint64_t)N1C->getSExtValue());
Chris Lattner3470b5d2006-01-12 20:22:43 +00001480 // fold ((c1-A)+c2) -> (c1+c2)-A
1481 if (N1C && N0.getOpcode() == ISD::SUB)
1482 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00001483 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Dan Gohmanb72127a2008-03-13 22:13:53 +00001484 DAG.getConstant(N1C->getAPIntValue()+
1485 N0C->getAPIntValue(), VT),
Chris Lattner3470b5d2006-01-12 20:22:43 +00001486 N0.getOperand(1));
Nate Begeman22e251a2006-02-03 06:46:56 +00001487 // reassociate add
Andrew Trickef9de2a2013-05-25 02:42:55 +00001488 SDValue RADD = ReassociateOps(ISD::ADD, SDLoc(N), N0, N1);
Gabor Greiff304a7a2008-08-28 21:40:38 +00001489 if (RADD.getNode() != 0)
Nate Begeman22e251a2006-02-03 06:46:56 +00001490 return RADD;
Nate Begeman21158fc2005-09-01 00:19:25 +00001491 // fold ((0-A) + B) -> B-A
1492 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1493 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Andrew Trickef9de2a2013-05-25 02:42:55 +00001494 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1, N0.getOperand(1));
Nate Begeman21158fc2005-09-01 00:19:25 +00001495 // fold (A + (0-B)) -> A-B
1496 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1497 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Andrew Trickef9de2a2013-05-25 02:42:55 +00001498 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, N1.getOperand(1));
Chris Lattner6f3b5772005-09-28 22:28:18 +00001499 // fold (A+(B-A)) -> B
1500 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begemand23739d2005-09-06 04:43:02 +00001501 return N1.getOperand(0);
Dale Johannesen73bc0ba2008-11-27 00:43:21 +00001502 // fold ((B-A)+A) -> B
1503 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1504 return N0.getOperand(0);
Dale Johannesen8c766702008-12-02 01:30:54 +00001505 // fold (A+(B-(A+C))) to (B-C)
1506 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingc4423482009-01-30 02:31:17 +00001507 N0 == N1.getOperand(1).getOperand(0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00001508 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1.getOperand(0),
Dale Johannesen8c766702008-12-02 01:30:54 +00001509 N1.getOperand(1).getOperand(1));
Dale Johannesen8c766702008-12-02 01:30:54 +00001510 // fold (A+(B-(C+A))) to (B-C)
1511 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingc4423482009-01-30 02:31:17 +00001512 N0 == N1.getOperand(1).getOperand(1))
Andrew Trickef9de2a2013-05-25 02:42:55 +00001513 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1.getOperand(0),
Dale Johannesen8c766702008-12-02 01:30:54 +00001514 N1.getOperand(1).getOperand(0));
Dale Johannesenee573fc2008-12-23 23:47:22 +00001515 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen54bdec22008-12-02 18:40:40 +00001516 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1517 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingc4423482009-01-30 02:31:17 +00001518 N0 == N1.getOperand(0).getOperand(1))
Andrew Trickef9de2a2013-05-25 02:42:55 +00001519 return DAG.getNode(N1.getOpcode(), SDLoc(N), VT,
Bill Wendlingc4423482009-01-30 02:31:17 +00001520 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen54bdec22008-12-02 18:40:40 +00001521
Dale Johannesen8c766702008-12-02 01:30:54 +00001522 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1523 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1524 SDValue N00 = N0.getOperand(0);
1525 SDValue N01 = N0.getOperand(1);
1526 SDValue N10 = N1.getOperand(0);
1527 SDValue N11 = N1.getOperand(1);
Bill Wendlingc4423482009-01-30 02:31:17 +00001528
1529 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
Andrew Trickef9de2a2013-05-25 02:42:55 +00001530 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
1531 DAG.getNode(ISD::ADD, SDLoc(N0), VT, N00, N10),
1532 DAG.getNode(ISD::ADD, SDLoc(N1), VT, N01, N11));
Dale Johannesen8c766702008-12-02 01:30:54 +00001533 }
Chris Lattnerd8c2a48d2006-03-13 06:51:27 +00001534
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001535 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1536 return SDValue(N, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001537
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001538 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands13237ac2008-06-06 12:08:01 +00001539 if (VT.isInteger() && !VT.isVector()) {
Dan Gohmand0ff91d2008-02-20 16:33:30 +00001540 APInt LHSZero, LHSOne;
1541 APInt RHSZero, RHSOne;
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001542 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingc4423482009-01-30 02:31:17 +00001543
Dan Gohmand0ff91d2008-02-20 16:33:30 +00001544 if (LHSZero.getBoolValue()) {
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001545 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001546
Chris Lattnerd8c2a48d2006-03-13 06:51:27 +00001547 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1548 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Owen Anderson60a46782014-01-31 00:51:43 +00001549 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero){
1550 if (!LegalOperations || TLI.isOperationLegal(ISD::OR, VT))
1551 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N1);
1552 }
Chris Lattnerd8c2a48d2006-03-13 06:51:27 +00001553 }
1554 }
Evan Chengeb99bd72006-11-06 08:14:30 +00001555
Evan Cheng92011002007-01-19 17:51:44 +00001556 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greiff304a7a2008-08-28 21:40:38 +00001557 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001558 SDValue Result = combineShlAddConstant(SDLoc(N), N0, N1, DAG);
Gabor Greiff304a7a2008-08-28 21:40:38 +00001559 if (Result.getNode()) return Result;
Evan Cheng92011002007-01-19 17:51:44 +00001560 }
Gabor Greiff304a7a2008-08-28 21:40:38 +00001561 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001562 SDValue Result = combineShlAddConstant(SDLoc(N), N1, N0, DAG);
Gabor Greiff304a7a2008-08-28 21:40:38 +00001563 if (Result.getNode()) return Result;
Evan Cheng92011002007-01-19 17:51:44 +00001564 }
1565
Dan Gohman954f4902010-01-19 23:30:49 +00001566 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1567 if (N1.getOpcode() == ISD::SHL &&
1568 N1.getOperand(0).getOpcode() == ISD::SUB)
1569 if (ConstantSDNode *C =
1570 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1571 if (C->getAPIntValue() == 0)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001572 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N0,
1573 DAG.getNode(ISD::SHL, SDLoc(N), VT,
Dan Gohman954f4902010-01-19 23:30:49 +00001574 N1.getOperand(0).getOperand(1),
1575 N1.getOperand(1)));
1576 if (N0.getOpcode() == ISD::SHL &&
1577 N0.getOperand(0).getOpcode() == ISD::SUB)
1578 if (ConstantSDNode *C =
1579 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1580 if (C->getAPIntValue() == 0)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001581 return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1,
1582 DAG.getNode(ISD::SHL, SDLoc(N), VT,
Dan Gohman954f4902010-01-19 23:30:49 +00001583 N0.getOperand(0).getOperand(1),
1584 N0.getOperand(1)));
1585
Owen Anderson5e65dfb2010-09-21 20:42:50 +00001586 if (N1.getOpcode() == ISD::AND) {
1587 SDValue AndOp0 = N1.getOperand(0);
Wesley Peck527da1b2010-11-23 03:31:01 +00001588 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Anderson5e65dfb2010-09-21 20:42:50 +00001589 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1590 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peck527da1b2010-11-23 03:31:01 +00001591
Owen Anderson5e65dfb2010-09-21 20:42:50 +00001592 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1593 // and similar xforms where the inner op is either ~0 or 0.
1594 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001595 SDLoc DL(N);
Owen Anderson5e65dfb2010-09-21 20:42:50 +00001596 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1597 }
1598 }
1599
Benjamin Kramer1f4dfbb2010-12-22 23:17:45 +00001600 // add (sext i1), X -> sub X, (zext i1)
1601 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1602 N0.getOperand(0).getValueType() == MVT::i1 &&
1603 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001604 SDLoc DL(N);
Benjamin Kramer1f4dfbb2010-12-22 23:17:45 +00001605 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1606 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1607 }
1608
Evan Chengf1005572010-04-28 07:10:39 +00001609 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00001610}
1611
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001612SDValue DAGCombiner::visitADDC(SDNode *N) {
1613 SDValue N0 = N->getOperand(0);
1614 SDValue N1 = N->getOperand(1);
Chris Lattnere2e13ca2007-03-04 20:03:15 +00001615 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1616 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001617 EVT VT = N0.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001618
Chris Lattnere2e13ca2007-03-04 20:03:15 +00001619 // If the flag result is dead, turn this into an ADD.
Craig Topper0515cd42012-01-07 18:31:09 +00001620 if (!N->hasAnyUseOfValue(1))
Andrew Trickef9de2a2013-05-25 02:42:55 +00001621 return CombineTo(N, DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N1),
Dale Johannesen5234d372009-06-02 03:12:52 +00001622 DAG.getNode(ISD::CARRY_FALSE,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001623 SDLoc(N), MVT::Glue));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001624
Chris Lattnere2e13ca2007-03-04 20:03:15 +00001625 // canonicalize constant to RHS.
Dan Gohmanb4e26372008-06-23 15:29:14 +00001626 if (N0C && !N1C)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001627 return DAG.getNode(ISD::ADDC, SDLoc(N), N->getVTList(), N1, N0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001628
Chris Lattner47206662007-03-04 20:40:38 +00001629 // fold (addc x, 0) -> x + no carry out
1630 if (N1C && N1C->isNullValue())
Dale Johannesen5234d372009-06-02 03:12:52 +00001631 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001632 SDLoc(N), MVT::Glue));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001633
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001634 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohmand0ff91d2008-02-20 16:33:30 +00001635 APInt LHSZero, LHSOne;
1636 APInt RHSZero, RHSOne;
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001637 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling61277572009-01-30 02:38:00 +00001638
Dan Gohmand0ff91d2008-02-20 16:33:30 +00001639 if (LHSZero.getBoolValue()) {
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001640 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001641
Chris Lattner47206662007-03-04 20:40:38 +00001642 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1643 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001644 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001645 return CombineTo(N, DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N1),
Dale Johannesen5234d372009-06-02 03:12:52 +00001646 DAG.getNode(ISD::CARRY_FALSE,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001647 SDLoc(N), MVT::Glue));
Chris Lattner47206662007-03-04 20:40:38 +00001648 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001649
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001650 return SDValue();
Chris Lattnere2e13ca2007-03-04 20:03:15 +00001651}
1652
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001653SDValue DAGCombiner::visitADDE(SDNode *N) {
1654 SDValue N0 = N->getOperand(0);
1655 SDValue N1 = N->getOperand(1);
1656 SDValue CarryIn = N->getOperand(2);
Chris Lattnere2e13ca2007-03-04 20:03:15 +00001657 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1658 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001659
Chris Lattnere2e13ca2007-03-04 20:03:15 +00001660 // canonicalize constant to RHS
Dan Gohmanb4e26372008-06-23 15:29:14 +00001661 if (N0C && !N1C)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001662 return DAG.getNode(ISD::ADDE, SDLoc(N), N->getVTList(),
Bill Wendling61277572009-01-30 02:38:00 +00001663 N1, N0, CarryIn);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001664
Chris Lattner47206662007-03-04 20:40:38 +00001665 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen5234d372009-06-02 03:12:52 +00001666 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001667 return DAG.getNode(ISD::ADDC, SDLoc(N), N->getVTList(), N0, N1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001668
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001669 return SDValue();
Chris Lattnere2e13ca2007-03-04 20:03:15 +00001670}
1671
Eric Christophere5ca1e02011-02-16 04:50:12 +00001672// Since it may not be valid to emit a fold to zero for vector initializers
1673// check if we can before folding.
Andrew Trickef9de2a2013-05-25 02:42:55 +00001674static SDValue tryFoldToZero(SDLoc DL, const TargetLowering &TLI, EVT VT,
Hal Finkel6c29bd92013-07-09 17:02:45 +00001675 SelectionDAG &DAG,
1676 bool LegalOperations, bool LegalTypes) {
Stephen Lin8e8424e2013-07-09 00:44:49 +00001677 if (!VT.isVector())
Eric Christophere5ca1e02011-02-16 04:50:12 +00001678 return DAG.getConstant(0, VT);
Daniel Sandersb021c6f2013-11-25 11:14:43 +00001679 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
1680 return DAG.getConstant(0, VT);
Eric Christophere5ca1e02011-02-16 04:50:12 +00001681 return SDValue();
1682}
1683
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001684SDValue DAGCombiner::visitSUB(SDNode *N) {
1685 SDValue N0 = N->getOperand(0);
1686 SDValue N1 = N->getOperand(1);
Gabor Greiff304a7a2008-08-28 21:40:38 +00001687 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1688 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopherd6300d22011-07-14 01:12:15 +00001689 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1690 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Anderson53aa7a92009-08-10 22:56:29 +00001691 EVT VT = N0.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001692
Dan Gohmana8665142007-06-25 16:23:39 +00001693 // fold vector ops
Duncan Sands13237ac2008-06-06 12:08:01 +00001694 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001695 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00001696 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topperd8005db2012-12-10 08:12:29 +00001697
1698 // fold (sub x, 0) -> x, vector edition
1699 if (ISD::isBuildVectorAllZeros(N1.getNode()))
1700 return N0;
Dan Gohman80f9f072007-07-13 20:03:40 +00001701 }
Bill Wendling0864a752008-12-10 22:36:00 +00001702
Chris Lattnereeb2bda2005-10-17 01:07:11 +00001703 // fold (sub x, x) -> 0
Eric Christopheref721412011-02-16 01:10:03 +00001704 // FIXME: Refactor this and xor and other similar operations together.
Eric Christophere5ca1e02011-02-16 04:50:12 +00001705 if (N0 == N1)
Hal Finkel6c29bd92013-07-09 17:02:45 +00001706 return tryFoldToZero(SDLoc(N), TLI, VT, DAG, LegalOperations, LegalTypes);
Nate Begeman21158fc2005-09-01 00:19:25 +00001707 // fold (sub c1, c2) -> c1-c2
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001708 if (N0C && N1C)
Bill Wendlingdea91302008-09-24 10:25:02 +00001709 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattnerc38fb8e2005-10-11 06:07:15 +00001710 // fold (sub x, c) -> (add x, -c)
1711 if (N1C)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001712 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0,
Dan Gohmanb72127a2008-03-13 22:13:53 +00001713 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng88b65bc2010-01-18 21:38:44 +00001714 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1715 if (N0C && N0C->isAllOnesValue())
Andrew Trickef9de2a2013-05-25 02:42:55 +00001716 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0);
Benjamin Kramer65bb14d2011-01-29 12:34:05 +00001717 // fold A-(A-B) -> B
1718 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1719 return N1.getOperand(1);
Nate Begeman21158fc2005-09-01 00:19:25 +00001720 // fold (A+B)-A -> B
Chris Lattner6f3b5772005-09-28 22:28:18 +00001721 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begemand23739d2005-09-06 04:43:02 +00001722 return N0.getOperand(1);
Nate Begeman21158fc2005-09-01 00:19:25 +00001723 // fold (A+B)-B -> A
Chris Lattner6f3b5772005-09-28 22:28:18 +00001724 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelcf0da6c2009-02-17 22:15:04 +00001725 return N0.getOperand(0);
Eric Christopherd6300d22011-07-14 01:12:15 +00001726 // fold C2-(A+C1) -> (C2-C1)-A
1727 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
Nadav Rotem841c9a82012-09-20 08:53:31 +00001728 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(),
1729 VT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001730 return DAG.getNode(ISD::SUB, SDLoc(N), VT, NewC,
Bill Wendlingd1634052012-07-19 00:04:14 +00001731 N1.getOperand(0));
Eric Christopherd6300d22011-07-14 01:12:15 +00001732 }
Dale Johannesenee573fc2008-12-23 23:47:22 +00001733 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenf51dcef2008-12-16 22:13:49 +00001734 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenacc84e52008-12-23 23:01:27 +00001735 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1736 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenf51dcef2008-12-16 22:13:49 +00001737 N0.getOperand(1).getOperand(0) == N1)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001738 return DAG.getNode(N0.getOperand(1).getOpcode(), SDLoc(N), VT,
Bill Wendling48ff08e2009-01-30 02:42:10 +00001739 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenacc84e52008-12-23 23:01:27 +00001740 // fold ((A+(C+B))-B) -> A+C
1741 if (N0.getOpcode() == ISD::ADD &&
1742 N0.getOperand(1).getOpcode() == ISD::ADD &&
1743 N0.getOperand(1).getOperand(1) == N1)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001744 return DAG.getNode(ISD::ADD, SDLoc(N), VT,
Bill Wendling48ff08e2009-01-30 02:42:10 +00001745 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesend2a46852008-12-23 01:59:54 +00001746 // fold ((A-(B-C))-C) -> A-B
1747 if (N0.getOpcode() == ISD::SUB &&
1748 N0.getOperand(1).getOpcode() == ISD::SUB &&
1749 N0.getOperand(1).getOperand(1) == N1)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001750 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling48ff08e2009-01-30 02:42:10 +00001751 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendling48ff08e2009-01-30 02:42:10 +00001752
Dan Gohman06563a82007-07-03 14:03:57 +00001753 // If either operand of a sub is undef, the result is undef
Dan Gohmanadb3d372007-07-10 15:19:29 +00001754 if (N0.getOpcode() == ISD::UNDEF)
1755 return N0;
1756 if (N1.getOpcode() == ISD::UNDEF)
1757 return N1;
Dan Gohmana8665142007-06-25 16:23:39 +00001758
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001759 // If the relocation model supports it, consider symbol offsets.
1760 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sandsdc2dac12008-11-24 14:53:14 +00001761 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001762 // fold (sub Sym, c) -> Sym-c
1763 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001764 return DAG.getGlobalAddress(GA->getGlobal(), SDLoc(N1C), VT,
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001765 GA->getOffset() -
1766 (uint64_t)N1C->getSExtValue());
1767 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1768 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1769 if (GA->getGlobal() == GB->getGlobal())
1770 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1771 VT);
1772 }
1773
Evan Chengf1005572010-04-28 07:10:39 +00001774 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00001775}
1776
Craig Topper43a1bd62012-01-07 09:06:39 +00001777SDValue DAGCombiner::visitSUBC(SDNode *N) {
1778 SDValue N0 = N->getOperand(0);
1779 SDValue N1 = N->getOperand(1);
1780 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1781 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1782 EVT VT = N0.getValueType();
1783
1784 // If the flag result is dead, turn this into an SUB.
Craig Topper0515cd42012-01-07 18:31:09 +00001785 if (!N->hasAnyUseOfValue(1))
Andrew Trickef9de2a2013-05-25 02:42:55 +00001786 return CombineTo(N, DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, N1),
1787 DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
Craig Topper43a1bd62012-01-07 09:06:39 +00001788 MVT::Glue));
1789
1790 // fold (subc x, x) -> 0 + no borrow
1791 if (N0 == N1)
1792 return CombineTo(N, DAG.getConstant(0, VT),
Andrew Trickef9de2a2013-05-25 02:42:55 +00001793 DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
Craig Topper43a1bd62012-01-07 09:06:39 +00001794 MVT::Glue));
1795
1796 // fold (subc x, 0) -> x + no borrow
1797 if (N1C && N1C->isNullValue())
Andrew Trickef9de2a2013-05-25 02:42:55 +00001798 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
Craig Topper43a1bd62012-01-07 09:06:39 +00001799 MVT::Glue));
1800
1801 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1802 if (N0C && N0C->isAllOnesValue())
Andrew Trickef9de2a2013-05-25 02:42:55 +00001803 return CombineTo(N, DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0),
1804 DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
Craig Topper43a1bd62012-01-07 09:06:39 +00001805 MVT::Glue));
1806
1807 return SDValue();
1808}
1809
1810SDValue DAGCombiner::visitSUBE(SDNode *N) {
1811 SDValue N0 = N->getOperand(0);
1812 SDValue N1 = N->getOperand(1);
1813 SDValue CarryIn = N->getOperand(2);
1814
1815 // fold (sube x, y, false) -> (subc x, y)
1816 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001817 return DAG.getNode(ISD::SUBC, SDLoc(N), N->getVTList(), N0, N1);
Craig Topper43a1bd62012-01-07 09:06:39 +00001818
1819 return SDValue();
1820}
1821
Jack Carterd4e96152013-10-17 01:34:33 +00001822/// isConstantSplatVector - Returns true if N is a BUILD_VECTOR node whose
1823/// elements are all the same constant or undefined.
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001824static bool isConstantSplatVector(SDNode *N, APInt& SplatValue) {
1825 BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(N);
1826 if (!C)
1827 return false;
1828
1829 APInt SplatUndef;
1830 unsigned SplatBitSize;
1831 bool HasAnyUndefs;
1832 EVT EltVT = N->getValueType(0).getVectorElementType();
1833 return (C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
1834 HasAnyUndefs) &&
1835 EltVT.getSizeInBits() >= SplatBitSize);
1836}
1837
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001838SDValue DAGCombiner::visitMUL(SDNode *N) {
1839 SDValue N0 = N->getOperand(0);
1840 SDValue N1 = N->getOperand(1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001841 EVT VT = N0.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001842
Dan Gohman06563a82007-07-03 14:03:57 +00001843 // fold (mul x, undef) -> 0
Dan Gohmanfa912822007-07-10 14:20:37 +00001844 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman06563a82007-07-03 14:03:57 +00001845 return DAG.getConstant(0, VT);
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001846
1847 bool N0IsConst = false;
1848 bool N1IsConst = false;
1849 APInt ConstValue0, ConstValue1;
1850 // fold vector ops
1851 if (VT.isVector()) {
1852 SDValue FoldedVOp = SimplifyVBinOp(N);
1853 if (FoldedVOp.getNode()) return FoldedVOp;
1854
1855 N0IsConst = isConstantSplatVector(N0.getNode(), ConstValue0);
1856 N1IsConst = isConstantSplatVector(N1.getNode(), ConstValue1);
1857 } else {
1858 N0IsConst = dyn_cast<ConstantSDNode>(N0) != 0;
Jack Carterd4e96152013-10-17 01:34:33 +00001859 ConstValue0 = N0IsConst ? (dyn_cast<ConstantSDNode>(N0))->getAPIntValue()
1860 : APInt();
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001861 N1IsConst = dyn_cast<ConstantSDNode>(N1) != 0;
Jack Carterd4e96152013-10-17 01:34:33 +00001862 ConstValue1 = N1IsConst ? (dyn_cast<ConstantSDNode>(N1))->getAPIntValue()
1863 : APInt();
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001864 }
1865
Nate Begeman21158fc2005-09-01 00:19:25 +00001866 // fold (mul c1, c2) -> c1*c2
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001867 if (N0IsConst && N1IsConst)
1868 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0.getNode(), N1.getNode());
1869
Nate Begeman2cc2c9a2005-09-07 23:25:52 +00001870 // canonicalize constant to RHS
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001871 if (N0IsConst && !N1IsConst)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001872 return DAG.getNode(ISD::MUL, SDLoc(N), VT, N1, N0);
Nate Begeman21158fc2005-09-01 00:19:25 +00001873 // fold (mul x, 0) -> 0
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001874 if (N1IsConst && ConstValue1 == 0)
Nate Begemand23739d2005-09-06 04:43:02 +00001875 return N1;
Benjamin Kramerd443e4a2013-09-19 13:28:20 +00001876 // We require a splat of the entire scalar bit width for non-contiguous
1877 // bit patterns.
1878 bool IsFullSplat =
1879 ConstValue1.getBitWidth() == VT.getScalarType().getSizeInBits();
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001880 // fold (mul x, 1) -> x
Benjamin Kramerd443e4a2013-09-19 13:28:20 +00001881 if (N1IsConst && ConstValue1 == 1 && IsFullSplat)
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001882 return N0;
Nate Begeman21158fc2005-09-01 00:19:25 +00001883 // fold (mul x, -1) -> 0-x
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001884 if (N1IsConst && ConstValue1.isAllOnesValue())
Andrew Trickef9de2a2013-05-25 02:42:55 +00001885 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling091f92f2009-01-30 02:45:56 +00001886 DAG.getConstant(0, VT), N0);
Nate Begeman21158fc2005-09-01 00:19:25 +00001887 // fold (mul x, (1 << c)) -> x << c
Benjamin Kramerd443e4a2013-09-19 13:28:20 +00001888 if (N1IsConst && ConstValue1.isPowerOf2() && IsFullSplat)
Andrew Trickef9de2a2013-05-25 02:42:55 +00001889 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001890 DAG.getConstant(ConstValue1.logBase2(),
Owen Andersonb2c80da2011-02-25 21:41:48 +00001891 getShiftAmountTy(N0.getValueType())));
Chris Lattnera70878d2005-10-30 06:41:49 +00001892 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Benjamin Kramerd443e4a2013-09-19 13:28:20 +00001893 if (N1IsConst && (-ConstValue1).isPowerOf2() && IsFullSplat) {
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001894 unsigned Log2Val = (-ConstValue1).logBase2();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001895 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattnera70878d2005-10-30 06:41:49 +00001896 // single-use add), we should put the negate there.
Andrew Trickef9de2a2013-05-25 02:42:55 +00001897 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling091f92f2009-01-30 02:45:56 +00001898 DAG.getConstant(0, VT),
Andrew Trickef9de2a2013-05-25 02:42:55 +00001899 DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
Owen Andersonb2c80da2011-02-25 21:41:48 +00001900 DAG.getConstant(Log2Val,
1901 getShiftAmountTy(N0.getValueType()))));
Chris Lattner4249b9a2009-03-09 20:22:18 +00001902 }
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001903
1904 APInt Val;
Chris Lattner324871e2006-03-01 03:44:24 +00001905 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Stephen Lincfe7f352013-07-08 00:37:03 +00001906 if (N1IsConst && N0.getOpcode() == ISD::SHL &&
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001907 (isConstantSplatVector(N0.getOperand(1).getNode(), Val) ||
1908 isa<ConstantSDNode>(N0.getOperand(1)))) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001909 SDValue C3 = DAG.getNode(ISD::SHL, SDLoc(N), VT,
Bill Wendling091f92f2009-01-30 02:45:56 +00001910 N1, N0.getOperand(1));
Gabor Greiff304a7a2008-08-28 21:40:38 +00001911 AddToWorkList(C3.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00001912 return DAG.getNode(ISD::MUL, SDLoc(N), VT,
Bill Wendling091f92f2009-01-30 02:45:56 +00001913 N0.getOperand(0), C3);
Chris Lattner324871e2006-03-01 03:44:24 +00001914 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001915
Chris Lattner324871e2006-03-01 03:44:24 +00001916 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1917 // use.
1918 {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001919 SDValue Sh(0,0), Y(0,0);
Chris Lattner324871e2006-03-01 03:44:24 +00001920 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
Stephen Lincfe7f352013-07-08 00:37:03 +00001921 if (N0.getOpcode() == ISD::SHL &&
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001922 (isConstantSplatVector(N0.getOperand(1).getNode(), Val) ||
1923 isa<ConstantSDNode>(N0.getOperand(1))) &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00001924 N0.getNode()->hasOneUse()) {
Chris Lattner324871e2006-03-01 03:44:24 +00001925 Sh = N0; Y = N1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001926 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greife12264b2008-08-30 19:29:20 +00001927 isa<ConstantSDNode>(N1.getOperand(1)) &&
1928 N1.getNode()->hasOneUse()) {
Chris Lattner324871e2006-03-01 03:44:24 +00001929 Sh = N1; Y = N0;
1930 }
Bill Wendlingb48dcf62009-01-30 02:49:26 +00001931
Gabor Greiff304a7a2008-08-28 21:40:38 +00001932 if (Sh.getNode()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001933 SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT,
Bill Wendling091f92f2009-01-30 02:45:56 +00001934 Sh.getOperand(0), Y);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001935 return DAG.getNode(ISD::SHL, SDLoc(N), VT,
Bill Wendling091f92f2009-01-30 02:45:56 +00001936 Mul, Sh.getOperand(1));
Chris Lattner324871e2006-03-01 03:44:24 +00001937 }
1938 }
Bill Wendlingb48dcf62009-01-30 02:49:26 +00001939
Chris Lattnerf29f5202006-03-04 23:33:26 +00001940 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Elena Demikhovsky6769c502013-06-26 10:55:03 +00001941 if (N1IsConst && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
1942 (isConstantSplatVector(N0.getOperand(1).getNode(), Val) ||
1943 isa<ConstantSDNode>(N0.getOperand(1))))
Andrew Trickef9de2a2013-05-25 02:42:55 +00001944 return DAG.getNode(ISD::ADD, SDLoc(N), VT,
1945 DAG.getNode(ISD::MUL, SDLoc(N0), VT,
Bill Wendling091f92f2009-01-30 02:45:56 +00001946 N0.getOperand(0), N1),
Andrew Trickef9de2a2013-05-25 02:42:55 +00001947 DAG.getNode(ISD::MUL, SDLoc(N1), VT,
Bill Wendling091f92f2009-01-30 02:45:56 +00001948 N0.getOperand(1), N1));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001949
Nate Begeman22e251a2006-02-03 06:46:56 +00001950 // reassociate mul
Andrew Trickef9de2a2013-05-25 02:42:55 +00001951 SDValue RMUL = ReassociateOps(ISD::MUL, SDLoc(N), N0, N1);
Gabor Greiff304a7a2008-08-28 21:40:38 +00001952 if (RMUL.getNode() != 0)
Nate Begeman22e251a2006-02-03 06:46:56 +00001953 return RMUL;
Dan Gohmana8665142007-06-25 16:23:39 +00001954
Evan Chengf1005572010-04-28 07:10:39 +00001955 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00001956}
1957
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001958SDValue DAGCombiner::visitSDIV(SDNode *N) {
1959 SDValue N0 = N->getOperand(0);
1960 SDValue N1 = N->getOperand(1);
Gabor Greiff304a7a2008-08-28 21:40:38 +00001961 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1962 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Anderson53aa7a92009-08-10 22:56:29 +00001963 EVT VT = N->getValueType(0);
Nate Begeman21158fc2005-09-01 00:19:25 +00001964
Dan Gohmana8665142007-06-25 16:23:39 +00001965 // fold vector ops
Duncan Sands13237ac2008-06-06 12:08:01 +00001966 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001967 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00001968 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman80f9f072007-07-13 20:03:40 +00001969 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001970
Nate Begeman21158fc2005-09-01 00:19:25 +00001971 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman7cea6ef2005-09-02 21:18:40 +00001972 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingdea91302008-09-24 10:25:02 +00001973 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman4dd38312005-10-21 00:02:42 +00001974 // fold (sdiv X, 1) -> X
Eli Friedmane9e356a2011-10-27 02:06:39 +00001975 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman4dd38312005-10-21 00:02:42 +00001976 return N0;
1977 // fold (sdiv X, -1) -> 0-X
1978 if (N1C && N1C->isAllOnesValue())
Andrew Trickef9de2a2013-05-25 02:42:55 +00001979 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling5b663e72009-01-30 02:52:17 +00001980 DAG.getConstant(0, VT), N0);
Chris Lattner5bcd0dd82005-10-07 06:10:46 +00001981 // If we know the sign bits of both operands are zero, strength reduce to a
1982 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands13237ac2008-06-06 12:08:01 +00001983 if (!VT.isVector()) {
Dan Gohman1f372ed2008-02-25 21:11:39 +00001984 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00001985 return DAG.getNode(ISD::UDIV, SDLoc(N), N1.getValueType(),
Bill Wendling5b663e72009-01-30 02:52:17 +00001986 N0, N1);
Chris Lattner2ee91f42008-01-27 23:32:17 +00001987 }
Nate Begeman57b35672006-02-17 07:26:20 +00001988 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedmanf9081a82011-12-07 03:55:52 +00001989 if (N1C && !N1C->isNullValue() &&
Eli Friedmane9e356a2011-10-27 02:06:39 +00001990 (N1C->getAPIntValue().isPowerOf2() ||
1991 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman4dd38312005-10-21 00:02:42 +00001992 // If dividing by powers of two is cheap, then don't perform the following
1993 // fold.
1994 if (TLI.isPow2DivCheap())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001995 return SDValue();
Bill Wendling5b663e72009-01-30 02:52:17 +00001996
Eli Friedmane9e356a2011-10-27 02:06:39 +00001997 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling5b663e72009-01-30 02:52:17 +00001998
Chris Lattner471627c2006-02-16 08:02:36 +00001999 // Splat the sign bit into the register
Andrew Trickef9de2a2013-05-25 02:42:55 +00002000 SDValue SGN = DAG.getNode(ISD::SRA, SDLoc(N), VT, N0,
Bill Wendling5b663e72009-01-30 02:52:17 +00002001 DAG.getConstant(VT.getSizeInBits()-1,
Owen Andersonb2c80da2011-02-25 21:41:48 +00002002 getShiftAmountTy(N0.getValueType())));
Gabor Greiff304a7a2008-08-28 21:40:38 +00002003 AddToWorkList(SGN.getNode());
Bill Wendling5b663e72009-01-30 02:52:17 +00002004
Chris Lattner471627c2006-02-16 08:02:36 +00002005 // Add (N0 < 0) ? abs2 - 1 : 0;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002006 SDValue SRL = DAG.getNode(ISD::SRL, SDLoc(N), VT, SGN,
Bill Wendling5b663e72009-01-30 02:52:17 +00002007 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Andersonb2c80da2011-02-25 21:41:48 +00002008 getShiftAmountTy(SGN.getValueType())));
Andrew Trickef9de2a2013-05-25 02:42:55 +00002009 SDValue ADD = DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, SRL);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002010 AddToWorkList(SRL.getNode());
2011 AddToWorkList(ADD.getNode()); // Divide by pow2
Andrew Trickef9de2a2013-05-25 02:42:55 +00002012 SDValue SRA = DAG.getNode(ISD::SRA, SDLoc(N), VT, ADD,
Owen Andersonb2c80da2011-02-25 21:41:48 +00002013 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling5b663e72009-01-30 02:52:17 +00002014
Nate Begeman4dd38312005-10-21 00:02:42 +00002015 // If we're dividing by a positive value, we're done. Otherwise, we must
2016 // negate the result.
Eli Friedmane9e356a2011-10-27 02:06:39 +00002017 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman4dd38312005-10-21 00:02:42 +00002018 return SRA;
Bill Wendling5b663e72009-01-30 02:52:17 +00002019
Gabor Greiff304a7a2008-08-28 21:40:38 +00002020 AddToWorkList(SRA.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00002021 return DAG.getNode(ISD::SUB, SDLoc(N), VT,
Bill Wendling5b663e72009-01-30 02:52:17 +00002022 DAG.getConstant(0, VT), SRA);
Nate Begeman4dd38312005-10-21 00:02:42 +00002023 }
Bill Wendling5b663e72009-01-30 02:52:17 +00002024
Nate Begemanc6f067a2005-10-20 02:15:44 +00002025 // if integer divide is expensive and we satisfy the requirements, emit an
2026 // alternate sequence.
Eli Friedmane9e356a2011-10-27 02:06:39 +00002027 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002028 SDValue Op = BuildSDIV(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002029 if (Op.getNode()) return Op;
Nate Begemanc6f067a2005-10-20 02:15:44 +00002030 }
Dan Gohmana8665142007-06-25 16:23:39 +00002031
Dan Gohman06563a82007-07-03 14:03:57 +00002032 // undef / X -> 0
2033 if (N0.getOpcode() == ISD::UNDEF)
2034 return DAG.getConstant(0, VT);
2035 // X / undef -> undef
2036 if (N1.getOpcode() == ISD::UNDEF)
2037 return N1;
Dan Gohmana8665142007-06-25 16:23:39 +00002038
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002039 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00002040}
2041
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002042SDValue DAGCombiner::visitUDIV(SDNode *N) {
2043 SDValue N0 = N->getOperand(0);
2044 SDValue N1 = N->getOperand(1);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002045 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
2046 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Anderson53aa7a92009-08-10 22:56:29 +00002047 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002048
Dan Gohmana8665142007-06-25 16:23:39 +00002049 // fold vector ops
Duncan Sands13237ac2008-06-06 12:08:01 +00002050 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002051 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002052 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman80f9f072007-07-13 20:03:40 +00002053 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002054
Nate Begeman21158fc2005-09-01 00:19:25 +00002055 // fold (udiv c1, c2) -> c1/c2
Nate Begeman7cea6ef2005-09-02 21:18:40 +00002056 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingdea91302008-09-24 10:25:02 +00002057 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman21158fc2005-09-01 00:19:25 +00002058 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohmanb72127a2008-03-13 22:13:53 +00002059 if (N1C && N1C->getAPIntValue().isPowerOf2())
Andrew Trickef9de2a2013-05-25 02:42:55 +00002060 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0,
Dan Gohmanb72127a2008-03-13 22:13:53 +00002061 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Andersonb2c80da2011-02-25 21:41:48 +00002062 getShiftAmountTy(N0.getValueType())));
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002063 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
Nate Begeman25d178b2006-02-05 07:20:23 +00002064 if (N1.getOpcode() == ISD::SHL) {
2065 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohmanb72127a2008-03-13 22:13:53 +00002066 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002067 EVT ADDVT = N1.getOperand(1).getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002068 SDValue Add = DAG.getNode(ISD::ADD, SDLoc(N), ADDVT,
Bill Wendlingaff3e032009-01-30 02:55:25 +00002069 N1.getOperand(1),
2070 DAG.getConstant(SHC->getAPIntValue()
2071 .logBase2(),
2072 ADDVT));
Gabor Greiff304a7a2008-08-28 21:40:38 +00002073 AddToWorkList(Add.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00002074 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, Add);
Nate Begeman25d178b2006-02-05 07:20:23 +00002075 }
2076 }
2077 }
Nate Begemanc6f067a2005-10-20 02:15:44 +00002078 // fold (udiv x, c) -> alternate
Dan Gohmanb72127a2008-03-13 22:13:53 +00002079 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002080 SDValue Op = BuildUDIV(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002081 if (Op.getNode()) return Op;
Chris Lattner9faa5b72005-10-22 18:50:15 +00002082 }
Dan Gohmana8665142007-06-25 16:23:39 +00002083
Dan Gohman06563a82007-07-03 14:03:57 +00002084 // undef / X -> 0
2085 if (N0.getOpcode() == ISD::UNDEF)
2086 return DAG.getConstant(0, VT);
2087 // X / undef -> undef
2088 if (N1.getOpcode() == ISD::UNDEF)
2089 return N1;
Dan Gohmana8665142007-06-25 16:23:39 +00002090
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002091 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00002092}
2093
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002094SDValue DAGCombiner::visitSREM(SDNode *N) {
2095 SDValue N0 = N->getOperand(0);
2096 SDValue N1 = N->getOperand(1);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00002097 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2098 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00002099 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002100
Nate Begeman21158fc2005-09-01 00:19:25 +00002101 // fold (srem c1, c2) -> c1%c2
Nate Begeman7cea6ef2005-09-02 21:18:40 +00002102 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingdea91302008-09-24 10:25:02 +00002103 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman6828ed92005-10-10 21:26:48 +00002104 // If we know the sign bits of both operands are zero, strength reduce to a
2105 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands13237ac2008-06-06 12:08:01 +00002106 if (!VT.isVector()) {
Dan Gohman1f372ed2008-02-25 21:11:39 +00002107 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00002108 return DAG.getNode(ISD::UREM, SDLoc(N), VT, N0, N1);
Chris Lattnerd0496d02008-01-27 23:21:58 +00002109 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002110
Dan Gohman9a693412007-11-26 23:46:11 +00002111 // If X/C can be simplified by the division-by-constant logic, lower
2112 // X%C to the equivalent of X-X/C*C.
Chris Lattnerd0620d22006-10-12 20:58:32 +00002113 if (N1C && !N1C->isNullValue()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002114 SDValue Div = DAG.getNode(ISD::SDIV, SDLoc(N), VT, N0, N1);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002115 AddToWorkList(Div.getNode());
2116 SDValue OptimizedDiv = combine(Div.getNode());
2117 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002118 SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT,
Bill Wendlingd033af02009-01-30 02:57:00 +00002119 OptimizedDiv, N1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00002120 SDValue Sub = DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, Mul);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002121 AddToWorkList(Mul.getNode());
Dan Gohman9a693412007-11-26 23:46:11 +00002122 return Sub;
2123 }
Chris Lattnerd0620d22006-10-12 20:58:32 +00002124 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002125
Dan Gohman06563a82007-07-03 14:03:57 +00002126 // undef % X -> 0
2127 if (N0.getOpcode() == ISD::UNDEF)
2128 return DAG.getConstant(0, VT);
2129 // X % undef -> undef
2130 if (N1.getOpcode() == ISD::UNDEF)
2131 return N1;
Dan Gohmana8665142007-06-25 16:23:39 +00002132
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002133 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00002134}
2135
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002136SDValue DAGCombiner::visitUREM(SDNode *N) {
2137 SDValue N0 = N->getOperand(0);
2138 SDValue N1 = N->getOperand(1);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00002139 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2140 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00002141 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002142
Nate Begeman21158fc2005-09-01 00:19:25 +00002143 // fold (urem c1, c2) -> c1%c2
Nate Begeman7cea6ef2005-09-02 21:18:40 +00002144 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingdea91302008-09-24 10:25:02 +00002145 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman6828ed92005-10-10 21:26:48 +00002146 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohmanb72127a2008-03-13 22:13:53 +00002147 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Andrew Trickef9de2a2013-05-25 02:42:55 +00002148 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0,
Dan Gohmanb72127a2008-03-13 22:13:53 +00002149 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc89fdf12006-02-05 07:36:48 +00002150 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2151 if (N1.getOpcode() == ISD::SHL) {
2152 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohmanb72127a2008-03-13 22:13:53 +00002153 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002154 SDValue Add =
Andrew Trickef9de2a2013-05-25 02:42:55 +00002155 DAG.getNode(ISD::ADD, SDLoc(N), VT, N1,
Duncan Sands13237ac2008-06-06 12:08:01 +00002156 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohmanb72127a2008-03-13 22:13:53 +00002157 VT));
Gabor Greiff304a7a2008-08-28 21:40:38 +00002158 AddToWorkList(Add.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00002159 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, Add);
Nate Begemanc89fdf12006-02-05 07:36:48 +00002160 }
2161 }
2162 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002163
Dan Gohman9a693412007-11-26 23:46:11 +00002164 // If X/C can be simplified by the division-by-constant logic, lower
2165 // X%C to the equivalent of X-X/C*C.
Chris Lattnerd0620d22006-10-12 20:58:32 +00002166 if (N1C && !N1C->isNullValue()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002167 SDValue Div = DAG.getNode(ISD::UDIV, SDLoc(N), VT, N0, N1);
Dan Gohman1df80f62008-09-08 16:59:01 +00002168 AddToWorkList(Div.getNode());
Gabor Greiff304a7a2008-08-28 21:40:38 +00002169 SDValue OptimizedDiv = combine(Div.getNode());
2170 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002171 SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT,
Bill Wendlingd033af02009-01-30 02:57:00 +00002172 OptimizedDiv, N1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00002173 SDValue Sub = DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, Mul);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002174 AddToWorkList(Mul.getNode());
Dan Gohman9a693412007-11-26 23:46:11 +00002175 return Sub;
2176 }
Chris Lattnerd0620d22006-10-12 20:58:32 +00002177 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002178
Dan Gohman06563a82007-07-03 14:03:57 +00002179 // undef % X -> 0
2180 if (N0.getOpcode() == ISD::UNDEF)
2181 return DAG.getConstant(0, VT);
2182 // X % undef -> undef
2183 if (N1.getOpcode() == ISD::UNDEF)
2184 return N1;
Dan Gohmana8665142007-06-25 16:23:39 +00002185
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002186 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00002187}
2188
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002189SDValue DAGCombiner::visitMULHS(SDNode *N) {
2190 SDValue N0 = N->getOperand(0);
2191 SDValue N1 = N->getOperand(1);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00002192 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00002193 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00002194 SDLoc DL(N);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002195
Nate Begeman21158fc2005-09-01 00:19:25 +00002196 // fold (mulhs x, 0) -> 0
Nate Begeman7cea6ef2005-09-02 21:18:40 +00002197 if (N1C && N1C->isNullValue())
Nate Begemand23739d2005-09-06 04:43:02 +00002198 return N1;
Nate Begeman21158fc2005-09-01 00:19:25 +00002199 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohmanb72127a2008-03-13 22:13:53 +00002200 if (N1C && N1C->getAPIntValue() == 1)
Andrew Trickef9de2a2013-05-25 02:42:55 +00002201 return DAG.getNode(ISD::SRA, SDLoc(N), N0.getValueType(), N0,
Bill Wendlingfaed0652009-01-30 03:00:18 +00002202 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Andersonb2c80da2011-02-25 21:41:48 +00002203 getShiftAmountTy(N0.getValueType())));
Dan Gohman06563a82007-07-03 14:03:57 +00002204 // fold (mulhs x, undef) -> 0
Dan Gohmanfa912822007-07-10 14:20:37 +00002205 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman06563a82007-07-03 14:03:57 +00002206 return DAG.getConstant(0, VT);
Dan Gohmana8665142007-06-25 16:23:39 +00002207
Chris Lattner10bd29f2010-12-13 08:39:01 +00002208 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2209 // plus a shift.
2210 if (VT.isSimple() && !VT.isVector()) {
2211 MVT Simple = VT.getSimpleVT();
2212 unsigned SimpleSize = Simple.getSizeInBits();
2213 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2214 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2215 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2216 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2217 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattnerb86dcee2010-12-15 05:51:39 +00002218 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Andersonb2c80da2011-02-25 21:41:48 +00002219 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattner10bd29f2010-12-13 08:39:01 +00002220 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2221 }
2222 }
Owen Andersonb2c80da2011-02-25 21:41:48 +00002223
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002224 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00002225}
2226
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002227SDValue DAGCombiner::visitMULHU(SDNode *N) {
2228 SDValue N0 = N->getOperand(0);
2229 SDValue N1 = N->getOperand(1);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00002230 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00002231 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00002232 SDLoc DL(N);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002233
Nate Begeman21158fc2005-09-01 00:19:25 +00002234 // fold (mulhu x, 0) -> 0
Nate Begeman7cea6ef2005-09-02 21:18:40 +00002235 if (N1C && N1C->isNullValue())
Nate Begemand23739d2005-09-06 04:43:02 +00002236 return N1;
Nate Begeman21158fc2005-09-01 00:19:25 +00002237 // fold (mulhu x, 1) -> 0
Dan Gohmanb72127a2008-03-13 22:13:53 +00002238 if (N1C && N1C->getAPIntValue() == 1)
Nate Begemand23739d2005-09-06 04:43:02 +00002239 return DAG.getConstant(0, N0.getValueType());
Dan Gohman06563a82007-07-03 14:03:57 +00002240 // fold (mulhu x, undef) -> 0
Dan Gohmanfa912822007-07-10 14:20:37 +00002241 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman06563a82007-07-03 14:03:57 +00002242 return DAG.getConstant(0, VT);
Dan Gohmana8665142007-06-25 16:23:39 +00002243
Chris Lattner10bd29f2010-12-13 08:39:01 +00002244 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2245 // plus a shift.
2246 if (VT.isSimple() && !VT.isVector()) {
2247 MVT Simple = VT.getSimpleVT();
2248 unsigned SimpleSize = Simple.getSizeInBits();
2249 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2250 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2251 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2252 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2253 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2254 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Andersonb2c80da2011-02-25 21:41:48 +00002255 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattner10bd29f2010-12-13 08:39:01 +00002256 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2257 }
2258 }
Owen Andersonb2c80da2011-02-25 21:41:48 +00002259
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002260 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00002261}
2262
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002263/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2264/// compute two values. LoOp and HiOp give the opcodes for the two computations
2265/// that are being performed. Return true if a simplification was made.
2266///
Scott Michelcf0da6c2009-02-17 22:15:04 +00002267SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002268 unsigned HiOp) {
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002269 // If the high half is not needed, just compute the low half.
Evan Chengece4c682007-11-08 09:25:29 +00002270 bool HiExists = N->hasAnyUseOfValue(1);
2271 if (!HiExists &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00002272 (!LegalOperations ||
Owen Andersonfb00d5b2014-01-20 18:41:34 +00002273 TLI.isOperationLegalOrCustom(LoOp, N->getValueType(0)))) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002274 SDValue Res = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0),
Bill Wendling9b3407e2009-01-30 03:08:40 +00002275 N->op_begin(), N->getNumOperands());
Chris Lattner31e9edc2008-01-26 01:09:19 +00002276 return CombineTo(N, Res, Res);
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002277 }
2278
2279 // If the low half is not needed, just compute the high half.
Evan Chengece4c682007-11-08 09:25:29 +00002280 bool LoExists = N->hasAnyUseOfValue(0);
2281 if (!LoExists &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00002282 (!LegalOperations ||
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002283 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002284 SDValue Res = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1),
Bill Wendling9b3407e2009-01-30 03:08:40 +00002285 N->op_begin(), N->getNumOperands());
Chris Lattner31e9edc2008-01-26 01:09:19 +00002286 return CombineTo(N, Res, Res);
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002287 }
2288
Evan Chengece4c682007-11-08 09:25:29 +00002289 // If both halves are used, return as it is.
2290 if (LoExists && HiExists)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002291 return SDValue();
Evan Chengece4c682007-11-08 09:25:29 +00002292
2293 // If the two computed results can be simplified separately, separate them.
Evan Chengece4c682007-11-08 09:25:29 +00002294 if (LoExists) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002295 SDValue Lo = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0),
Bill Wendling9b3407e2009-01-30 03:08:40 +00002296 N->op_begin(), N->getNumOperands());
Gabor Greiff304a7a2008-08-28 21:40:38 +00002297 AddToWorkList(Lo.getNode());
2298 SDValue LoOpt = combine(Lo.getNode());
2299 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00002300 (!LegalOperations ||
Duncan Sands8651e9c2008-06-13 19:07:40 +00002301 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner31e9edc2008-01-26 01:09:19 +00002302 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002303 }
2304
Evan Chengece4c682007-11-08 09:25:29 +00002305 if (HiExists) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002306 SDValue Hi = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1),
Duncan Sandsdc2dac12008-11-24 14:53:14 +00002307 N->op_begin(), N->getNumOperands());
Gabor Greiff304a7a2008-08-28 21:40:38 +00002308 AddToWorkList(Hi.getNode());
2309 SDValue HiOpt = combine(Hi.getNode());
2310 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00002311 (!LegalOperations ||
Duncan Sands8651e9c2008-06-13 19:07:40 +00002312 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner31e9edc2008-01-26 01:09:19 +00002313 return CombineTo(N, HiOpt, HiOpt);
Evan Chengece4c682007-11-08 09:25:29 +00002314 }
Bill Wendling9b3407e2009-01-30 03:08:40 +00002315
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002316 return SDValue();
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002317}
2318
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002319SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2320 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002321 if (Res.getNode()) return Res;
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002322
Chris Lattner15090e12010-12-15 06:04:19 +00002323 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00002324 SDLoc DL(N);
Chris Lattner15090e12010-12-15 06:04:19 +00002325
2326 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2327 // plus a shift.
2328 if (VT.isSimple() && !VT.isVector()) {
2329 MVT Simple = VT.getSimpleVT();
2330 unsigned SimpleSize = Simple.getSizeInBits();
2331 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2332 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2333 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2334 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2335 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2336 // Compute the high part as N1.
2337 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Andersonb2c80da2011-02-25 21:41:48 +00002338 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner15090e12010-12-15 06:04:19 +00002339 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2340 // Compute the low part as N0.
2341 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2342 return CombineTo(N, Lo, Hi);
2343 }
2344 }
Owen Andersonb2c80da2011-02-25 21:41:48 +00002345
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002346 return SDValue();
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002347}
2348
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002349SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2350 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002351 if (Res.getNode()) return Res;
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002352
Chris Lattner15090e12010-12-15 06:04:19 +00002353 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00002354 SDLoc DL(N);
Owen Andersonb2c80da2011-02-25 21:41:48 +00002355
Chris Lattner15090e12010-12-15 06:04:19 +00002356 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2357 // plus a shift.
2358 if (VT.isSimple() && !VT.isVector()) {
2359 MVT Simple = VT.getSimpleVT();
2360 unsigned SimpleSize = Simple.getSizeInBits();
2361 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2362 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2363 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2364 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2365 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2366 // Compute the high part as N1.
2367 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Andersonb2c80da2011-02-25 21:41:48 +00002368 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner15090e12010-12-15 06:04:19 +00002369 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2370 // Compute the low part as N0.
2371 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2372 return CombineTo(N, Lo, Hi);
2373 }
2374 }
Owen Andersonb2c80da2011-02-25 21:41:48 +00002375
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002376 return SDValue();
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002377}
2378
Benjamin Kramer2fd48f22011-05-21 18:31:55 +00002379SDValue DAGCombiner::visitSMULO(SDNode *N) {
2380 // (smulo x, 2) -> (saddo x, x)
2381 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2382 if (C2->getAPIntValue() == 2)
Andrew Trickef9de2a2013-05-25 02:42:55 +00002383 return DAG.getNode(ISD::SADDO, SDLoc(N), N->getVTList(),
Benjamin Kramer2fd48f22011-05-21 18:31:55 +00002384 N->getOperand(0), N->getOperand(0));
2385
2386 return SDValue();
2387}
2388
2389SDValue DAGCombiner::visitUMULO(SDNode *N) {
2390 // (umulo x, 2) -> (uaddo x, x)
2391 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2392 if (C2->getAPIntValue() == 2)
Andrew Trickef9de2a2013-05-25 02:42:55 +00002393 return DAG.getNode(ISD::UADDO, SDLoc(N), N->getVTList(),
Benjamin Kramer2fd48f22011-05-21 18:31:55 +00002394 N->getOperand(0), N->getOperand(0));
2395
2396 return SDValue();
2397}
2398
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002399SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2400 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002401 if (Res.getNode()) return Res;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002402
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002403 return SDValue();
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002404}
2405
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002406SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2407 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002408 if (Res.getNode()) return Res;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002409
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002410 return SDValue();
Dan Gohman5c6d0c32007-10-08 17:57:15 +00002411}
2412
Chris Lattner8d6fc202006-05-05 05:51:50 +00002413/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2414/// two operands of the same opcode, try to simplify it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002415SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2416 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00002417 EVT VT = N0.getValueType();
Chris Lattner8d6fc202006-05-05 05:51:50 +00002418 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00002419
Dan Gohmandd5286d2010-01-14 03:08:49 +00002420 // Bail early if none of these transforms apply.
2421 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2422
Chris Lattner002ee912006-05-05 06:31:05 +00002423 // For each of OP in AND/OR/XOR:
2424 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2425 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2426 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman600f62b2010-06-24 14:30:44 +00002427 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman9655f842009-12-03 07:11:29 +00002428 //
2429 // do not sink logical op inside of a vector extend, since it may combine
2430 // into a vsetcc.
Evan Cheng166a4e62010-01-06 19:38:29 +00002431 EVT Op0VT = N0.getOperand(0).getValueType();
2432 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohmanad3e5492009-04-08 00:15:30 +00002433 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chengf1bd5fc2010-04-17 06:13:15 +00002434 // Avoid infinite looping with PromoteIntBinOp.
2435 (N0.getOpcode() == ISD::ANY_EXTEND &&
2436 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman600f62b2010-06-24 14:30:44 +00002437 (N0.getOpcode() == ISD::TRUNCATE &&
2438 (!TLI.isZExtFree(VT, Op0VT) ||
2439 !TLI.isTruncateFree(Op0VT, VT)) &&
2440 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman9655f842009-12-03 07:11:29 +00002441 !VT.isVector() &&
Evan Cheng166a4e62010-01-06 19:38:29 +00002442 Op0VT == N1.getOperand(0).getValueType() &&
2443 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002444 SDValue ORNode = DAG.getNode(N->getOpcode(), SDLoc(N0),
Bill Wendling781db7a2009-01-30 19:25:47 +00002445 N0.getOperand(0).getValueType(),
2446 N0.getOperand(0), N1.getOperand(0));
Gabor Greiff304a7a2008-08-28 21:40:38 +00002447 AddToWorkList(ORNode.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00002448 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, ORNode);
Chris Lattner8d6fc202006-05-05 05:51:50 +00002449 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002450
Chris Lattner5ac42932006-05-05 06:10:43 +00002451 // For each of OP in SHL/SRL/SRA/AND...
2452 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2453 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2454 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner8d6fc202006-05-05 05:51:50 +00002455 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattner5ac42932006-05-05 06:10:43 +00002456 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner8d6fc202006-05-05 05:51:50 +00002457 N0.getOperand(1) == N1.getOperand(1)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002458 SDValue ORNode = DAG.getNode(N->getOpcode(), SDLoc(N0),
Bill Wendling781db7a2009-01-30 19:25:47 +00002459 N0.getOperand(0).getValueType(),
2460 N0.getOperand(0), N1.getOperand(0));
Gabor Greiff304a7a2008-08-28 21:40:38 +00002461 AddToWorkList(ORNode.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00002462 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Bill Wendling781db7a2009-01-30 19:25:47 +00002463 ORNode, N0.getOperand(1));
Chris Lattner8d6fc202006-05-05 05:51:50 +00002464 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002465
Nadav Rotemb0783502012-04-01 19:31:22 +00002466 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2467 // Only perform this optimization after type legalization and before
2468 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2469 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2470 // we don't want to undo this promotion.
2471 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2472 // on scalars.
Nadav Rotem841c9a82012-09-20 08:53:31 +00002473 if ((N0.getOpcode() == ISD::BITCAST ||
2474 N0.getOpcode() == ISD::SCALAR_TO_VECTOR) &&
2475 Level == AfterLegalizeTypes) {
Nadav Rotemb0783502012-04-01 19:31:22 +00002476 SDValue In0 = N0.getOperand(0);
2477 SDValue In1 = N1.getOperand(0);
2478 EVT In0Ty = In0.getValueType();
2479 EVT In1Ty = In1.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002480 SDLoc DL(N);
Nadav Rotem841c9a82012-09-20 08:53:31 +00002481 // If both incoming values are integers, and the original types are the
2482 // same.
Nadav Rotemb0783502012-04-01 19:31:22 +00002483 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
Nadav Rotem841c9a82012-09-20 08:53:31 +00002484 SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1);
2485 SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op);
Nadav Rotemb0783502012-04-01 19:31:22 +00002486 AddToWorkList(Op.getNode());
2487 return BC;
2488 }
2489 }
2490
2491 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2492 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2493 // If both shuffles use the same mask, and both shuffle within a single
2494 // vector, then it is worthwhile to move the swizzle after the operation.
2495 // The type-legalizer generates this pattern when loading illegal
2496 // vector types from memory. In many cases this allows additional shuffle
2497 // optimizations.
Craig Topper9c3da312012-04-09 07:19:09 +00002498 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2499 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2500 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotemb0783502012-04-01 19:31:22 +00002501 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2502 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topper9c3da312012-04-09 07:19:09 +00002503
2504 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2505 "Inputs to shuffles are not the same type");
Nadav Rotemb0783502012-04-01 19:31:22 +00002506
2507 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotemb0783502012-04-01 19:31:22 +00002508
2509 // Check that both shuffles use the same mask. The masks are known to be of
2510 // the same length because the result vector type is the same.
2511 bool SameMask = true;
2512 for (unsigned i = 0; i != NumElts; ++i) {
2513 int Idx0 = SVN0->getMaskElt(i);
2514 int Idx1 = SVN1->getMaskElt(i);
2515 if (Idx0 != Idx1) {
2516 SameMask = false;
2517 break;
2518 }
2519 }
2520
Craig Topper9c3da312012-04-09 07:19:09 +00002521 if (SameMask) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002522 SDValue Op = DAG.getNode(N->getOpcode(), SDLoc(N), VT,
Craig Topper9c3da312012-04-09 07:19:09 +00002523 N0.getOperand(0), N1.getOperand(0));
Nadav Rotemb0783502012-04-01 19:31:22 +00002524 AddToWorkList(Op.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00002525 return DAG.getVectorShuffle(VT, SDLoc(N), Op,
Craig Topper9c3da312012-04-09 07:19:09 +00002526 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotemb0783502012-04-01 19:31:22 +00002527 }
2528 }
Craig Topper9c3da312012-04-09 07:19:09 +00002529
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002530 return SDValue();
Chris Lattner8d6fc202006-05-05 05:51:50 +00002531}
2532
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002533SDValue DAGCombiner::visitAND(SDNode *N) {
2534 SDValue N0 = N->getOperand(0);
2535 SDValue N1 = N->getOperand(1);
2536 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman7cea6ef2005-09-02 21:18:40 +00002537 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2538 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00002539 EVT VT = N1.getValueType();
Dan Gohmane14c4082010-03-04 00:23:16 +00002540 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002541
Dan Gohmana8665142007-06-25 16:23:39 +00002542 // fold vector ops
Duncan Sands13237ac2008-06-06 12:08:01 +00002543 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002544 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002545 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Toppera183ddb2012-12-08 22:49:19 +00002546
2547 // fold (and x, 0) -> 0, vector edition
2548 if (ISD::isBuildVectorAllZeros(N0.getNode()))
2549 return N0;
2550 if (ISD::isBuildVectorAllZeros(N1.getNode()))
2551 return N1;
2552
2553 // fold (and x, -1) -> x, vector edition
2554 if (ISD::isBuildVectorAllOnes(N0.getNode()))
2555 return N1;
2556 if (ISD::isBuildVectorAllOnes(N1.getNode()))
2557 return N0;
Dan Gohman80f9f072007-07-13 20:03:40 +00002558 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002559
Dan Gohman06563a82007-07-03 14:03:57 +00002560 // fold (and x, undef) -> 0
Dan Gohmanfa912822007-07-10 14:20:37 +00002561 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman06563a82007-07-03 14:03:57 +00002562 return DAG.getConstant(0, VT);
Nate Begeman21158fc2005-09-01 00:19:25 +00002563 // fold (and c1, c2) -> c1&c2
Nate Begeman7cea6ef2005-09-02 21:18:40 +00002564 if (N0C && N1C)
Bill Wendlingdea91302008-09-24 10:25:02 +00002565 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman2cc2c9a2005-09-07 23:25:52 +00002566 // canonicalize constant to RHS
Nate Begeman418c6e42005-10-18 00:28:13 +00002567 if (N0C && !N1C)
Andrew Trickef9de2a2013-05-25 02:42:55 +00002568 return DAG.getNode(ISD::AND, SDLoc(N), VT, N1, N0);
Nate Begeman21158fc2005-09-01 00:19:25 +00002569 // fold (and x, -1) -> x
Nate Begeman7cea6ef2005-09-02 21:18:40 +00002570 if (N1C && N1C->isAllOnesValue())
Nate Begemand23739d2005-09-06 04:43:02 +00002571 return N0;
2572 // if (and x, c) is known to be zero, return 0
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002573 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman1f372ed2008-02-25 21:11:39 +00002574 APInt::getAllOnesValue(BitWidth)))
Nate Begemand23739d2005-09-06 04:43:02 +00002575 return DAG.getConstant(0, VT);
Nate Begeman22e251a2006-02-03 06:46:56 +00002576 // reassociate and
Andrew Trickef9de2a2013-05-25 02:42:55 +00002577 SDValue RAND = ReassociateOps(ISD::AND, SDLoc(N), N0, N1);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002578 if (RAND.getNode() != 0)
Nate Begeman22e251a2006-02-03 06:46:56 +00002579 return RAND;
Bill Wendlingaf13d822010-03-03 00:35:56 +00002580 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begemanee065282005-11-02 18:42:59 +00002581 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman21158fc2005-09-01 00:19:25 +00002582 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohmanb72127a2008-03-13 22:13:53 +00002583 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begemand23739d2005-09-06 04:43:02 +00002584 return N1;
Chris Lattner49beaf42006-02-02 07:17:31 +00002585 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2586 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002587 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman1f372ed2008-02-25 21:11:39 +00002588 APInt Mask = ~N1C->getAPIntValue();
Jay Foad583abbc2010-12-07 08:25:19 +00002589 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman1f372ed2008-02-25 21:11:39 +00002590 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002591 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N),
Bill Wendling86171912009-01-30 20:43:18 +00002592 N0.getValueType(), N0Op0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002593
Chris Lattner0db2f2c2006-03-01 21:47:21 +00002594 // Replace uses of the AND with uses of the Zero extend node.
2595 CombineTo(N, Zext);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002596
Chris Lattner49beaf42006-02-02 07:17:31 +00002597 // We actually want to replace all uses of the any_extend with the
2598 // zero_extend, to avoid duplicating things. This will later cause this
2599 // AND to be folded.
Gabor Greiff304a7a2008-08-28 21:40:38 +00002600 CombineTo(N0.getNode(), Zext);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002601 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner49beaf42006-02-02 07:17:31 +00002602 }
2603 }
Stephen Lincfe7f352013-07-08 00:37:03 +00002604 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
James Molloy862fe492012-02-20 12:02:38 +00002605 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2606 // already be zero by virtue of the width of the base type of the load.
2607 //
2608 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2609 // more cases.
2610 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2611 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2612 N0.getOpcode() == ISD::LOAD) {
2613 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2614 N0 : N0.getOperand(0) );
2615
2616 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2617 // This can be a pure constant or a vector splat, in which case we treat the
2618 // vector as a scalar and use the splat value.
2619 APInt Constant = APInt::getNullValue(1);
2620 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2621 Constant = C->getAPIntValue();
2622 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2623 APInt SplatValue, SplatUndef;
2624 unsigned SplatBitSize;
2625 bool HasAnyUndefs;
2626 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2627 SplatBitSize, HasAnyUndefs);
2628 if (IsSplat) {
2629 // Undef bits can contribute to a possible optimisation if set, so
2630 // set them.
2631 SplatValue |= SplatUndef;
2632
2633 // The splat value may be something like "0x00FFFFFF", which means 0 for
2634 // the first vector value and FF for the rest, repeating. We need a mask
2635 // that will apply equally to all members of the vector, so AND all the
2636 // lanes of the constant together.
2637 EVT VT = Vector->getValueType(0);
2638 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
Silviu Baranga3f40d872012-09-05 08:57:21 +00002639
2640 // If the splat value has been compressed to a bitlength lower
2641 // than the size of the vector lane, we need to re-expand it to
2642 // the lane size.
2643 if (BitWidth > SplatBitSize)
2644 for (SplatValue = SplatValue.zextOrTrunc(BitWidth);
2645 SplatBitSize < BitWidth;
2646 SplatBitSize = SplatBitSize * 2)
2647 SplatValue |= SplatValue.shl(SplatBitSize);
2648
James Molloy862fe492012-02-20 12:02:38 +00002649 Constant = APInt::getAllOnesValue(BitWidth);
Silviu Baranga3f40d872012-09-05 08:57:21 +00002650 for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i)
James Molloy862fe492012-02-20 12:02:38 +00002651 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2652 }
2653 }
2654
2655 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2656 // actually legal and isn't going to get expanded, else this is a false
2657 // optimisation.
2658 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2659 Load->getMemoryVT());
2660
2661 // Resize the constant to the same size as the original memory access before
2662 // extension. If it is still the AllOnesValue then this AND is completely
2663 // unneeded.
2664 Constant =
2665 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2666
2667 bool B;
2668 switch (Load->getExtensionType()) {
2669 default: B = false; break;
2670 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2671 case ISD::ZEXTLOAD:
2672 case ISD::NON_EXTLOAD: B = true; break;
2673 }
2674
2675 if (B && Constant.isAllOnesValue()) {
2676 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2677 // preserve semantics once we get rid of the AND.
2678 SDValue NewLoad(Load, 0);
2679 if (Load->getExtensionType() == ISD::EXTLOAD) {
2680 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002681 Load->getValueType(0), SDLoc(Load),
James Molloy862fe492012-02-20 12:02:38 +00002682 Load->getChain(), Load->getBasePtr(),
2683 Load->getOffset(), Load->getMemoryVT(),
2684 Load->getMemOperand());
2685 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
Hal Finkel8a311382012-06-20 15:42:48 +00002686 if (Load->getNumValues() == 3) {
2687 // PRE/POST_INC loads have 3 values.
2688 SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1),
2689 NewLoad.getValue(2) };
2690 CombineTo(Load, To, 3, true);
2691 } else {
2692 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2693 }
James Molloy862fe492012-02-20 12:02:38 +00002694 }
2695
2696 // Fold the AND away, taking care not to fold to the old load node if we
2697 // replaced it.
2698 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2699
2700 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2701 }
2702 }
Nate Begeman049b7482005-09-09 19:49:52 +00002703 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2704 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2705 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2706 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002707
Nate Begeman049b7482005-09-09 19:49:52 +00002708 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands13237ac2008-06-06 12:08:01 +00002709 LL.getValueType().isInteger()) {
Bill Wendling86171912009-01-30 20:43:18 +00002710 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohmanb72127a2008-03-13 22:13:53 +00002711 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002712 SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(N0),
Bill Wendling86171912009-01-30 20:43:18 +00002713 LR.getValueType(), LL, RL);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002714 AddToWorkList(ORNode.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00002715 return DAG.getSetCC(SDLoc(N), VT, ORNode, LR, Op1);
Nate Begeman049b7482005-09-09 19:49:52 +00002716 }
Bill Wendling86171912009-01-30 20:43:18 +00002717 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman049b7482005-09-09 19:49:52 +00002718 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002719 SDValue ANDNode = DAG.getNode(ISD::AND, SDLoc(N0),
Bill Wendling86171912009-01-30 20:43:18 +00002720 LR.getValueType(), LL, RL);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002721 AddToWorkList(ANDNode.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00002722 return DAG.getSetCC(SDLoc(N), VT, ANDNode, LR, Op1);
Nate Begeman049b7482005-09-09 19:49:52 +00002723 }
Bill Wendling86171912009-01-30 20:43:18 +00002724 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman049b7482005-09-09 19:49:52 +00002725 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002726 SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(N0),
Bill Wendling86171912009-01-30 20:43:18 +00002727 LR.getValueType(), LL, RL);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002728 AddToWorkList(ORNode.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00002729 return DAG.getSetCC(SDLoc(N), VT, ORNode, LR, Op1);
Nate Begeman049b7482005-09-09 19:49:52 +00002730 }
2731 }
Jim Grosbach327ccc72013-08-13 21:30:58 +00002732 // Simplify (and (setne X, 0), (setne X, -1)) -> (setuge (add X, 1), 2)
2733 if (LL == RL && isa<ConstantSDNode>(LR) && isa<ConstantSDNode>(RR) &&
2734 Op0 == Op1 && LL.getValueType().isInteger() &&
2735 Op0 == ISD::SETNE && ((cast<ConstantSDNode>(LR)->isNullValue() &&
2736 cast<ConstantSDNode>(RR)->isAllOnesValue()) ||
2737 (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
2738 cast<ConstantSDNode>(RR)->isNullValue()))) {
2739 SDValue ADDNode = DAG.getNode(ISD::ADD, SDLoc(N0), LL.getValueType(),
2740 LL, DAG.getConstant(1, LL.getValueType()));
2741 AddToWorkList(ADDNode.getNode());
2742 return DAG.getSetCC(SDLoc(N), VT, ADDNode,
2743 DAG.getConstant(2, LL.getValueType()), ISD::SETUGE);
2744 }
Nate Begeman049b7482005-09-09 19:49:52 +00002745 // canonicalize equivalent to ll == rl
2746 if (LL == RR && LR == RL) {
2747 Op1 = ISD::getSetCCSwappedOperands(Op1);
2748 std::swap(RL, RR);
2749 }
2750 if (LL == RL && LR == RR) {
Duncan Sands13237ac2008-06-06 12:08:01 +00002751 bool isInteger = LL.getValueType().isInteger();
Nate Begeman049b7482005-09-09 19:49:52 +00002752 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner5fa10402008-10-28 07:11:07 +00002753 if (Result != ISD::SETCC_INVALID &&
Patrik Hagglundffd057a2012-12-19 10:19:55 +00002754 (!LegalOperations ||
Owen Andersoncc068992013-02-14 09:07:33 +00002755 (TLI.isCondCodeLegal(Result, LL.getSimpleValueType()) &&
2756 TLI.isOperationLegal(ISD::SETCC,
Matt Arsenault758659232013-05-18 00:21:46 +00002757 getSetCCResultType(N0.getSimpleValueType())))))
Andrew Trickef9de2a2013-05-25 02:42:55 +00002758 return DAG.getSetCC(SDLoc(N), N0.getValueType(),
Bill Wendling86171912009-01-30 20:43:18 +00002759 LL, LR, Result);
Nate Begeman049b7482005-09-09 19:49:52 +00002760 }
2761 }
Chris Lattner8d6fc202006-05-05 05:51:50 +00002762
Bill Wendling86171912009-01-30 20:43:18 +00002763 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner8d6fc202006-05-05 05:51:50 +00002764 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002765 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002766 if (Tmp.getNode()) return Tmp;
Nate Begeman049b7482005-09-09 19:49:52 +00002767 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002768
Nate Begemandc7bba92006-02-03 22:24:05 +00002769 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2770 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands13237ac2008-06-06 12:08:01 +00002771 if (!VT.isVector() &&
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002772 SimplifyDemandedBits(SDValue(N, 0)))
2773 return SDValue(N, 0);
Evan Cheng166a4e62010-01-06 19:38:29 +00002774
Nate Begeman02b23c62005-10-13 03:11:28 +00002775 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greiff304a7a2008-08-28 21:40:38 +00002776 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Chenge71fe34d2006-10-09 20:57:25 +00002777 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman08c0a952009-09-23 21:02:20 +00002778 EVT MemVT = LN0->getMemoryVT();
Nate Begeman8e022b32005-10-13 18:34:58 +00002779 // If we zero all the possible extended bits, then we can turn this into
2780 // a zextload if we are running before legalize or the operation is legal.
Dan Gohmane14c4082010-03-04 00:23:16 +00002781 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman1f372ed2008-02-25 21:11:39 +00002782 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohmane14c4082010-03-04 00:23:16 +00002783 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00002784 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman08c0a952009-09-23 21:02:20 +00002785 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002786 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT,
Bill Wendling86171912009-01-30 20:43:18 +00002787 LN0->getChain(), LN0->getBasePtr(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00002788 MemVT, LN0->getMemOperand());
Chris Lattnerfbcd62d2006-03-01 04:03:14 +00002789 AddToWorkList(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002790 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002791 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begeman02b23c62005-10-13 03:11:28 +00002792 }
2793 }
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002794 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greiff304a7a2008-08-28 21:40:38 +00002795 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng8a1d09d2007-03-07 08:07:03 +00002796 N0.hasOneUse()) {
Evan Chenge71fe34d2006-10-09 20:57:25 +00002797 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman08c0a952009-09-23 21:02:20 +00002798 EVT MemVT = LN0->getMemoryVT();
Nate Begeman8e022b32005-10-13 18:34:58 +00002799 // If we zero all the possible extended bits, then we can turn this into
2800 // a zextload if we are running before legalize or the operation is legal.
Dan Gohmane14c4082010-03-04 00:23:16 +00002801 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman1f372ed2008-02-25 21:11:39 +00002802 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohmane14c4082010-03-04 00:23:16 +00002803 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00002804 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman08c0a952009-09-23 21:02:20 +00002805 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002806 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00002807 LN0->getChain(), LN0->getBasePtr(),
2808 MemVT, LN0->getMemOperand());
Chris Lattnerfbcd62d2006-03-01 04:03:14 +00002809 AddToWorkList(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00002810 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002811 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begeman02b23c62005-10-13 03:11:28 +00002812 }
2813 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002814
Chris Lattnerf0032b32006-02-28 06:49:37 +00002815 // fold (and (load x), 255) -> (zextload x, i8)
2816 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Cheng166a4e62010-01-06 19:38:29 +00002817 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2818 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2819 (N0.getOpcode() == ISD::ANY_EXTEND &&
2820 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2821 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2822 LoadSDNode *LN0 = HasAnyExt
2823 ? cast<LoadSDNode>(N0.getOperand(0))
2824 : cast<LoadSDNode>(N0);
Evan Chenge71fe34d2006-10-09 20:57:25 +00002825 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Tim Northover68239002013-07-02 09:58:53 +00002826 LN0->isUnindexed() && N0.hasOneUse() && SDValue(LN0, 0).hasOneUse()) {
Duncan Sands93b66092008-06-09 11:32:28 +00002827 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Cheng166a4e62010-01-06 19:38:29 +00002828 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2829 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2830 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands93b66092008-06-09 11:32:28 +00002831
Evan Cheng166a4e62010-01-06 19:38:29 +00002832 if (ExtVT == LoadedVT &&
2833 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattner88de3842010-01-07 21:53:27 +00002834 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peck527da1b2010-11-23 03:31:01 +00002835
2836 SDValue NewLoad =
Andrew Trickef9de2a2013-05-25 02:42:55 +00002837 DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00002838 LN0->getChain(), LN0->getBasePtr(), ExtVT,
2839 LN0->getMemOperand());
Chris Lattner88de3842010-01-07 21:53:27 +00002840 AddToWorkList(N);
2841 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2842 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2843 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002844
Chris Lattner88de3842010-01-07 21:53:27 +00002845 // Do not change the width of a volatile load.
2846 // Do not generate loads of non-round integer types since these can
2847 // be expensive (and would be wrong if the type is not byte sized).
2848 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2849 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2850 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling86171912009-01-30 20:43:18 +00002851
Chris Lattner88de3842010-01-07 21:53:27 +00002852 unsigned Alignment = LN0->getAlignment();
2853 SDValue NewPtr = LN0->getBasePtr();
2854
2855 // For big endian targets, we need to add an offset to the pointer
2856 // to load the correct bytes. For little endian systems, we merely
2857 // need to read fewer bytes from the same pointer.
2858 if (TLI.isBigEndian()) {
Evan Cheng166a4e62010-01-06 19:38:29 +00002859 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2860 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2861 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002862 NewPtr = DAG.getNode(ISD::ADD, SDLoc(LN0), PtrType,
Chris Lattner88de3842010-01-07 21:53:27 +00002863 NewPtr, DAG.getConstant(PtrOff, PtrType));
2864 Alignment = MinAlign(Alignment, PtrOff);
Evan Cheng166a4e62010-01-06 19:38:29 +00002865 }
Chris Lattner88de3842010-01-07 21:53:27 +00002866
2867 AddToWorkList(NewPtr.getNode());
Wesley Peck527da1b2010-11-23 03:31:01 +00002868
Chris Lattner88de3842010-01-07 21:53:27 +00002869 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2870 SDValue Load =
Andrew Trickef9de2a2013-05-25 02:42:55 +00002871 DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy,
Chris Lattner88de3842010-01-07 21:53:27 +00002872 LN0->getChain(), NewPtr,
Chris Lattner3d178ed2010-09-21 17:04:51 +00002873 LN0->getPointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00002874 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00002875 Alignment, LN0->getTBAAInfo());
Chris Lattner88de3842010-01-07 21:53:27 +00002876 AddToWorkList(N);
2877 CombineTo(LN0, Load, Load.getValue(1));
2878 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sands1826ded2007-10-28 12:59:45 +00002879 }
Evan Chenge71fe34d2006-10-09 20:57:25 +00002880 }
Chris Lattnerbdbc4472006-02-28 06:35:35 +00002881 }
2882 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002883
Evan Chenge6a3b032012-07-17 18:54:11 +00002884 if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
2885 VT.getSizeInBits() <= 64) {
2886 if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2887 APInt ADDC = ADDI->getAPIntValue();
2888 if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2889 // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal
2890 // immediate for an add, but it is legal if its top c2 bits are set,
2891 // transform the ADD so the immediate doesn't need to be materialized
2892 // in a register.
2893 if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
2894 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
2895 SRLI->getZExtValue());
2896 if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) {
2897 ADDC |= Mask;
2898 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2899 SDValue NewAdd =
Andrew Trickef9de2a2013-05-25 02:42:55 +00002900 DAG.getNode(ISD::ADD, SDLoc(N0), VT,
Evan Chenge6a3b032012-07-17 18:54:11 +00002901 N0.getOperand(0), DAG.getConstant(ADDC, VT));
2902 CombineTo(N0.getNode(), NewAdd);
2903 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2904 }
2905 }
2906 }
2907 }
2908 }
2909 }
Evan Chenge6a3b032012-07-17 18:54:11 +00002910
Tim Northover819bfb52013-08-27 13:46:45 +00002911 // fold (and (or (srl N, 8), (shl N, 8)), 0xffff) -> (srl (bswap N), const)
2912 if (N1C && N1C->getAPIntValue() == 0xffff && N0.getOpcode() == ISD::OR) {
2913 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
2914 N0.getOperand(1), false);
2915 if (BSwap.getNode())
2916 return BSwap;
2917 }
2918
Evan Chengf1005572010-04-28 07:10:39 +00002919 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00002920}
2921
Evan Cheng4c0bd962011-06-21 06:01:08 +00002922/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2923///
2924SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2925 bool DemandHighBits) {
2926 if (!LegalOperations)
2927 return SDValue();
2928
2929 EVT VT = N->getValueType(0);
2930 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2931 return SDValue();
2932 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2933 return SDValue();
2934
2935 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2936 bool LookPassAnd0 = false;
2937 bool LookPassAnd1 = false;
2938 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2939 std::swap(N0, N1);
2940 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2941 std::swap(N0, N1);
2942 if (N0.getOpcode() == ISD::AND) {
2943 if (!N0.getNode()->hasOneUse())
2944 return SDValue();
2945 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2946 if (!N01C || N01C->getZExtValue() != 0xFF00)
2947 return SDValue();
2948 N0 = N0.getOperand(0);
2949 LookPassAnd0 = true;
2950 }
2951
2952 if (N1.getOpcode() == ISD::AND) {
2953 if (!N1.getNode()->hasOneUse())
2954 return SDValue();
2955 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2956 if (!N11C || N11C->getZExtValue() != 0xFF)
2957 return SDValue();
2958 N1 = N1.getOperand(0);
2959 LookPassAnd1 = true;
2960 }
2961
2962 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2963 std::swap(N0, N1);
2964 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2965 return SDValue();
2966 if (!N0.getNode()->hasOneUse() ||
2967 !N1.getNode()->hasOneUse())
2968 return SDValue();
2969
2970 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2971 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2972 if (!N01C || !N11C)
2973 return SDValue();
2974 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2975 return SDValue();
2976
2977 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2978 SDValue N00 = N0->getOperand(0);
2979 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2980 if (!N00.getNode()->hasOneUse())
2981 return SDValue();
2982 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2983 if (!N001C || N001C->getZExtValue() != 0xFF)
2984 return SDValue();
2985 N00 = N00.getOperand(0);
2986 LookPassAnd0 = true;
2987 }
2988
2989 SDValue N10 = N1->getOperand(0);
2990 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2991 if (!N10.getNode()->hasOneUse())
2992 return SDValue();
2993 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2994 if (!N101C || N101C->getZExtValue() != 0xFF00)
2995 return SDValue();
2996 N10 = N10.getOperand(0);
2997 LookPassAnd1 = true;
2998 }
2999
3000 if (N00 != N10)
3001 return SDValue();
3002
Tim Northover819bfb52013-08-27 13:46:45 +00003003 // Make sure everything beyond the low halfword gets set to zero since the SRL
3004 // 16 will clear the top bits.
Evan Cheng4c0bd962011-06-21 06:01:08 +00003005 unsigned OpSizeInBits = VT.getSizeInBits();
Tim Northover819bfb52013-08-27 13:46:45 +00003006 if (DemandHighBits && OpSizeInBits > 16) {
3007 // If the left-shift isn't masked out then the only way this is a bswap is
3008 // if all bits beyond the low 8 are 0. In that case the entire pattern
3009 // reduces to a left shift anyway: leave it for other parts of the combiner.
3010 if (!LookPassAnd0)
3011 return SDValue();
3012
3013 // However, if the right shift isn't masked out then it might be because
3014 // it's not needed. See if we can spot that too.
3015 if (!LookPassAnd1 &&
3016 !DAG.MaskedValueIsZero(
3017 N10, APInt::getHighBitsSet(OpSizeInBits, OpSizeInBits - 16)))
3018 return SDValue();
3019 }
Eric Christopherd6300d22011-07-14 01:12:15 +00003020
Andrew Trickef9de2a2013-05-25 02:42:55 +00003021 SDValue Res = DAG.getNode(ISD::BSWAP, SDLoc(N), VT, N00);
Evan Cheng4c0bd962011-06-21 06:01:08 +00003022 if (OpSizeInBits > 16)
Andrew Trickef9de2a2013-05-25 02:42:55 +00003023 Res = DAG.getNode(ISD::SRL, SDLoc(N), VT, Res,
Evan Cheng4c0bd962011-06-21 06:01:08 +00003024 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
3025 return Res;
3026}
3027
3028/// isBSwapHWordElement - Return true if the specified node is an element
3029/// that makes up a 32-bit packed halfword byteswap. i.e.
3030/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
Craig Topperb94011f2013-07-14 04:42:23 +00003031static bool isBSwapHWordElement(SDValue N, SmallVectorImpl<SDNode *> &Parts) {
Evan Cheng4c0bd962011-06-21 06:01:08 +00003032 if (!N.getNode()->hasOneUse())
3033 return false;
3034
3035 unsigned Opc = N.getOpcode();
3036 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
3037 return false;
3038
3039 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
3040 if (!N1C)
3041 return false;
3042
3043 unsigned Num;
3044 switch (N1C->getZExtValue()) {
3045 default:
3046 return false;
3047 case 0xFF: Num = 0; break;
3048 case 0xFF00: Num = 1; break;
3049 case 0xFF0000: Num = 2; break;
3050 case 0xFF000000: Num = 3; break;
3051 }
3052
3053 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
3054 SDValue N0 = N.getOperand(0);
3055 if (Opc == ISD::AND) {
3056 if (Num == 0 || Num == 2) {
3057 // (x >> 8) & 0xff
3058 // (x >> 8) & 0xff0000
3059 if (N0.getOpcode() != ISD::SRL)
3060 return false;
3061 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3062 if (!C || C->getZExtValue() != 8)
3063 return false;
3064 } else {
3065 // (x << 8) & 0xff00
3066 // (x << 8) & 0xff000000
3067 if (N0.getOpcode() != ISD::SHL)
3068 return false;
3069 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3070 if (!C || C->getZExtValue() != 8)
3071 return false;
3072 }
3073 } else if (Opc == ISD::SHL) {
3074 // (x & 0xff) << 8
3075 // (x & 0xff0000) << 8
3076 if (Num != 0 && Num != 2)
3077 return false;
3078 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
3079 if (!C || C->getZExtValue() != 8)
3080 return false;
3081 } else { // Opc == ISD::SRL
3082 // (x & 0xff00) >> 8
3083 // (x & 0xff000000) >> 8
3084 if (Num != 1 && Num != 3)
3085 return false;
3086 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
3087 if (!C || C->getZExtValue() != 8)
3088 return false;
3089 }
3090
3091 if (Parts[Num])
3092 return false;
3093
3094 Parts[Num] = N0.getOperand(0).getNode();
3095 return true;
3096}
3097
3098/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
3099/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
3100/// => (rotl (bswap x), 16)
3101SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
3102 if (!LegalOperations)
3103 return SDValue();
3104
3105 EVT VT = N->getValueType(0);
3106 if (VT != MVT::i32)
3107 return SDValue();
3108 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
3109 return SDValue();
3110
3111 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
3112 // Look for either
3113 // (or (or (and), (and)), (or (and), (and)))
3114 // (or (or (or (and), (and)), (and)), (and))
3115 if (N0.getOpcode() != ISD::OR)
3116 return SDValue();
3117 SDValue N00 = N0.getOperand(0);
3118 SDValue N01 = N0.getOperand(1);
3119
Evan Chengbf0baa92012-12-13 01:34:32 +00003120 if (N1.getOpcode() == ISD::OR &&
3121 N00.getNumOperands() == 2 && N01.getNumOperands() == 2) {
Evan Cheng4c0bd962011-06-21 06:01:08 +00003122 // (or (or (and), (and)), (or (and), (and)))
3123 SDValue N000 = N00.getOperand(0);
3124 if (!isBSwapHWordElement(N000, Parts))
3125 return SDValue();
3126
3127 SDValue N001 = N00.getOperand(1);
3128 if (!isBSwapHWordElement(N001, Parts))
3129 return SDValue();
3130 SDValue N010 = N01.getOperand(0);
3131 if (!isBSwapHWordElement(N010, Parts))
3132 return SDValue();
3133 SDValue N011 = N01.getOperand(1);
3134 if (!isBSwapHWordElement(N011, Parts))
3135 return SDValue();
3136 } else {
3137 // (or (or (or (and), (and)), (and)), (and))
3138 if (!isBSwapHWordElement(N1, Parts))
3139 return SDValue();
3140 if (!isBSwapHWordElement(N01, Parts))
3141 return SDValue();
3142 if (N00.getOpcode() != ISD::OR)
3143 return SDValue();
3144 SDValue N000 = N00.getOperand(0);
3145 if (!isBSwapHWordElement(N000, Parts))
3146 return SDValue();
3147 SDValue N001 = N00.getOperand(1);
3148 if (!isBSwapHWordElement(N001, Parts))
3149 return SDValue();
3150 }
3151
3152 // Make sure the parts are all coming from the same node.
3153 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
3154 return SDValue();
3155
Andrew Trickef9de2a2013-05-25 02:42:55 +00003156 SDValue BSwap = DAG.getNode(ISD::BSWAP, SDLoc(N), VT,
Evan Cheng4c0bd962011-06-21 06:01:08 +00003157 SDValue(Parts[0],0));
3158
Kay Tiong Khoo9195a5b2013-09-23 18:43:51 +00003159 // Result of the bswap should be rotated by 16. If it's not legal, then
Evan Cheng4c0bd962011-06-21 06:01:08 +00003160 // do (x << 16) | (x >> 16).
3161 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
3162 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
Andrew Trickef9de2a2013-05-25 02:42:55 +00003163 return DAG.getNode(ISD::ROTL, SDLoc(N), VT, BSwap, ShAmt);
Craig Topper5f9791f2012-09-29 07:18:53 +00003164 if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
Andrew Trickef9de2a2013-05-25 02:42:55 +00003165 return DAG.getNode(ISD::ROTR, SDLoc(N), VT, BSwap, ShAmt);
3166 return DAG.getNode(ISD::OR, SDLoc(N), VT,
3167 DAG.getNode(ISD::SHL, SDLoc(N), VT, BSwap, ShAmt),
3168 DAG.getNode(ISD::SRL, SDLoc(N), VT, BSwap, ShAmt));
Evan Cheng4c0bd962011-06-21 06:01:08 +00003169}
3170
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003171SDValue DAGCombiner::visitOR(SDNode *N) {
3172 SDValue N0 = N->getOperand(0);
3173 SDValue N1 = N->getOperand(1);
3174 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003175 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3176 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00003177 EVT VT = N1.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003178
Dan Gohmana8665142007-06-25 16:23:39 +00003179 // fold vector ops
Duncan Sands13237ac2008-06-06 12:08:01 +00003180 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003181 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003182 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Toppera183ddb2012-12-08 22:49:19 +00003183
3184 // fold (or x, 0) -> x, vector edition
3185 if (ISD::isBuildVectorAllZeros(N0.getNode()))
3186 return N1;
3187 if (ISD::isBuildVectorAllZeros(N1.getNode()))
3188 return N0;
3189
3190 // fold (or x, -1) -> -1, vector edition
3191 if (ISD::isBuildVectorAllOnes(N0.getNode()))
3192 return N0;
3193 if (ISD::isBuildVectorAllOnes(N1.getNode()))
3194 return N1;
Dan Gohman80f9f072007-07-13 20:03:40 +00003195 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003196
Dan Gohman06563a82007-07-03 14:03:57 +00003197 // fold (or x, undef) -> -1
Bob Wilson269a89f2010-06-28 23:40:25 +00003198 if (!LegalOperations &&
3199 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman9655f842009-12-03 07:11:29 +00003200 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
3201 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
3202 }
Nate Begeman21158fc2005-09-01 00:19:25 +00003203 // fold (or c1, c2) -> c1|c2
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003204 if (N0C && N1C)
Bill Wendlingdea91302008-09-24 10:25:02 +00003205 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman2cc2c9a2005-09-07 23:25:52 +00003206 // canonicalize constant to RHS
Nate Begeman418c6e42005-10-18 00:28:13 +00003207 if (N0C && !N1C)
Andrew Trickef9de2a2013-05-25 02:42:55 +00003208 return DAG.getNode(ISD::OR, SDLoc(N), VT, N1, N0);
Nate Begeman21158fc2005-09-01 00:19:25 +00003209 // fold (or x, 0) -> x
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003210 if (N1C && N1C->isNullValue())
Nate Begemand23739d2005-09-06 04:43:02 +00003211 return N0;
Nate Begeman21158fc2005-09-01 00:19:25 +00003212 // fold (or x, -1) -> -1
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003213 if (N1C && N1C->isAllOnesValue())
Nate Begemand23739d2005-09-06 04:43:02 +00003214 return N1;
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003215 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman1f372ed2008-02-25 21:11:39 +00003216 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begemand23739d2005-09-06 04:43:02 +00003217 return N1;
Evan Cheng4c0bd962011-06-21 06:01:08 +00003218
3219 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
3220 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
3221 if (BSwap.getNode() != 0)
3222 return BSwap;
3223 BSwap = MatchBSwapHWordLow(N, N0, N1);
3224 if (BSwap.getNode() != 0)
3225 return BSwap;
3226
Nate Begeman22e251a2006-02-03 06:46:56 +00003227 // reassociate or
Andrew Trickef9de2a2013-05-25 02:42:55 +00003228 SDValue ROR = ReassociateOps(ISD::OR, SDLoc(N), N0, N1);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003229 if (ROR.getNode() != 0)
Nate Begeman22e251a2006-02-03 06:46:56 +00003230 return ROR;
3231 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003232 // iff (c1 & c2) == 0.
Gabor Greiff304a7a2008-08-28 21:40:38 +00003233 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattnerd8c5c062005-10-27 05:06:38 +00003234 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattnerd8c5c062005-10-27 05:06:38 +00003235 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00003236 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0) {
3237 SDValue COR = DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1);
3238 if (!COR.getNode())
3239 return SDValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00003240 return DAG.getNode(ISD::AND, SDLoc(N), VT,
3241 DAG.getNode(ISD::OR, SDLoc(N0), VT,
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00003242 N0.getOperand(0), N1), COR);
3243 }
Nate Begeman85c1cc42005-09-08 20:18:10 +00003244 }
Nate Begeman049b7482005-09-09 19:49:52 +00003245 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3246 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3247 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3248 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003249
Nate Begeman049b7482005-09-09 19:49:52 +00003250 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands13237ac2008-06-06 12:08:01 +00003251 LL.getValueType().isInteger()) {
Bill Wendlingf29b6e12009-01-30 20:59:34 +00003252 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3253 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelcf0da6c2009-02-17 22:15:04 +00003254 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman049b7482005-09-09 19:49:52 +00003255 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00003256 SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(LR),
Bill Wendlingf29b6e12009-01-30 20:59:34 +00003257 LR.getValueType(), LL, RL);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003258 AddToWorkList(ORNode.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00003259 return DAG.getSetCC(SDLoc(N), VT, ORNode, LR, Op1);
Nate Begeman049b7482005-09-09 19:49:52 +00003260 }
Bill Wendlingf29b6e12009-01-30 20:59:34 +00003261 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3262 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelcf0da6c2009-02-17 22:15:04 +00003263 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman049b7482005-09-09 19:49:52 +00003264 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00003265 SDValue ANDNode = DAG.getNode(ISD::AND, SDLoc(LR),
Bill Wendlingf29b6e12009-01-30 20:59:34 +00003266 LR.getValueType(), LL, RL);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003267 AddToWorkList(ANDNode.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00003268 return DAG.getSetCC(SDLoc(N), VT, ANDNode, LR, Op1);
Nate Begeman049b7482005-09-09 19:49:52 +00003269 }
3270 }
3271 // canonicalize equivalent to ll == rl
3272 if (LL == RR && LR == RL) {
3273 Op1 = ISD::getSetCCSwappedOperands(Op1);
3274 std::swap(RL, RR);
3275 }
3276 if (LL == RL && LR == RR) {
Duncan Sands13237ac2008-06-06 12:08:01 +00003277 bool isInteger = LL.getValueType().isInteger();
Nate Begeman049b7482005-09-09 19:49:52 +00003278 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner5fa10402008-10-28 07:11:07 +00003279 if (Result != ISD::SETCC_INVALID &&
Patrik Hagglundffd057a2012-12-19 10:19:55 +00003280 (!LegalOperations ||
Owen Andersoncc068992013-02-14 09:07:33 +00003281 (TLI.isCondCodeLegal(Result, LL.getSimpleValueType()) &&
3282 TLI.isOperationLegal(ISD::SETCC,
Matt Arsenault758659232013-05-18 00:21:46 +00003283 getSetCCResultType(N0.getValueType())))))
Andrew Trickef9de2a2013-05-25 02:42:55 +00003284 return DAG.getSetCC(SDLoc(N), N0.getValueType(),
Bill Wendlingf29b6e12009-01-30 20:59:34 +00003285 LL, LR, Result);
Nate Begeman049b7482005-09-09 19:49:52 +00003286 }
3287 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003288
Bill Wendlingf29b6e12009-01-30 20:59:34 +00003289 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner8d6fc202006-05-05 05:51:50 +00003290 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003291 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003292 if (Tmp.getNode()) return Tmp;
Nate Begeman049b7482005-09-09 19:49:52 +00003293 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003294
Bill Wendlingf29b6e12009-01-30 20:59:34 +00003295 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner46d710e2006-09-14 21:11:37 +00003296 if (N0.getOpcode() == ISD::AND &&
3297 N1.getOpcode() == ISD::AND &&
3298 N0.getOperand(1).getOpcode() == ISD::Constant &&
3299 N1.getOperand(1).getOpcode() == ISD::Constant &&
3300 // Don't increase # computations.
Gabor Greiff304a7a2008-08-28 21:40:38 +00003301 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner46d710e2006-09-14 21:11:37 +00003302 // We can only do this xform if we know that bits from X that are set in C2
3303 // but not in C1 are already zero. Likewise for Y.
Dan Gohman1f372ed2008-02-25 21:11:39 +00003304 const APInt &LHSMask =
3305 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3306 const APInt &RHSMask =
3307 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003308
Dan Gohman309d3d52007-06-22 14:59:07 +00003309 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3310 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00003311 SDValue X = DAG.getNode(ISD::OR, SDLoc(N0), VT,
Bill Wendlingf29b6e12009-01-30 20:59:34 +00003312 N0.getOperand(0), N1.getOperand(0));
Andrew Trickef9de2a2013-05-25 02:42:55 +00003313 return DAG.getNode(ISD::AND, SDLoc(N), VT, X,
Bill Wendlingf29b6e12009-01-30 20:59:34 +00003314 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner46d710e2006-09-14 21:11:37 +00003315 }
3316 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003317
Chris Lattner97614c82006-09-14 20:50:57 +00003318 // See if this is some rotate idiom.
Andrew Trickef9de2a2013-05-25 02:42:55 +00003319 if (SDNode *Rot = MatchRotate(N0, N1, SDLoc(N)))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003320 return SDValue(Rot, 0);
Chris Lattner8d6fc202006-05-05 05:51:50 +00003321
Dan Gohman600f62b2010-06-24 14:30:44 +00003322 // Simplify the operands using demanded-bits information.
3323 if (!VT.isVector() &&
3324 SimplifyDemandedBits(SDValue(N, 0)))
3325 return SDValue(N, 0);
3326
Evan Chengf1005572010-04-28 07:10:39 +00003327 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00003328}
3329
Chris Lattner97614c82006-09-14 20:50:57 +00003330/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003331static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner97614c82006-09-14 20:50:57 +00003332 if (Op.getOpcode() == ISD::AND) {
Reid Spencerde46e482006-11-02 20:25:50 +00003333 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner97614c82006-09-14 20:50:57 +00003334 Mask = Op.getOperand(1);
3335 Op = Op.getOperand(0);
3336 } else {
3337 return false;
3338 }
3339 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003340
Chris Lattner97614c82006-09-14 20:50:57 +00003341 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3342 Shift = Op;
3343 return true;
3344 }
Bill Wendlingf29b6e12009-01-30 20:59:34 +00003345
Scott Michelcf0da6c2009-02-17 22:15:04 +00003346 return false;
Chris Lattner97614c82006-09-14 20:50:57 +00003347}
3348
Richard Sandiford15cfc1c2014-01-09 10:56:42 +00003349// Return true if we can prove that, whenever Neg and Pos are both in the
3350// range [0, OpSize), Neg == (Pos == 0 ? 0 : OpSize - Pos). This means that
Richard Sandiford0f264db2014-01-09 10:49:40 +00003351// for two opposing shifts shift1 and shift2 and a value X with OpBits bits:
3352//
3353// (or (shift1 X, Neg), (shift2 X, Pos))
3354//
3355// reduces to a rotate in direction shift2 by Pos and a rotate in direction
Richard Sandiford15cfc1c2014-01-09 10:56:42 +00003356// shift1 by Neg. The range [0, OpSize) means that we only need to consider
3357// shift amounts with defined behavior.
Richard Sandiford0f264db2014-01-09 10:49:40 +00003358static bool matchRotateSub(SDValue Pos, SDValue Neg, unsigned OpSize) {
Richard Sandiford15cfc1c2014-01-09 10:56:42 +00003359 // If OpSize is a power of 2 then:
3360 //
3361 // (a) (Pos == 0 ? 0 : OpSize - Pos) == (OpSize - Pos) & (OpSize - 1)
3362 // (b) Neg == Neg & (OpSize - 1) whenever Neg is in [0, OpSize).
3363 //
3364 // So if OpSize is a power of 2 and Neg is (and Neg', OpSize-1), we check
3365 // for the stronger condition:
3366 //
3367 // Neg & (OpSize - 1) == (OpSize - Pos) & (OpSize - 1) [A]
3368 //
3369 // for all Neg and Pos. Since Neg & (OpSize - 1) == Neg' & (OpSize - 1)
3370 // we can just replace Neg with Neg' for the rest of the function.
3371 //
3372 // In other cases we check for the even stronger condition:
3373 //
3374 // Neg == OpSize - Pos [B]
3375 //
3376 // for all Neg and Pos. Note that the (or ...) then invokes undefined
3377 // behavior if Pos == 0 (and consequently Neg == OpSize).
3378 //
3379 // We could actually use [A] whenever OpSize is a power of 2, but the
3380 // only extra cases that it would match are those uninteresting ones
3381 // where Neg and Pos are never in range at the same time. E.g. for
3382 // OpSize == 32, using [A] would allow a Neg of the form (sub 64, Pos)
3383 // as well as (sub 32, Pos), but:
3384 //
3385 // (or (shift1 X, (sub 64, Pos)), (shift2 X, Pos))
3386 //
3387 // always invokes undefined behavior for 32-bit X.
3388 //
3389 // Below, Mask == OpSize - 1 when using [A] and is all-ones otherwise.
3390 unsigned LoBits = 0;
3391 if (Neg.getOpcode() == ISD::AND &&
3392 isPowerOf2_64(OpSize) &&
3393 Neg.getOperand(1).getOpcode() == ISD::Constant &&
3394 cast<ConstantSDNode>(Neg.getOperand(1))->getAPIntValue() == OpSize - 1) {
3395 Neg = Neg.getOperand(0);
3396 LoBits = Log2_64(OpSize);
3397 }
3398
Richard Sandiford0f264db2014-01-09 10:49:40 +00003399 // Check whether Neg has the form (sub NegC, NegOp1) for some NegC and NegOp1.
3400 if (Neg.getOpcode() != ISD::SUB)
3401 return 0;
3402 ConstantSDNode *NegC = dyn_cast<ConstantSDNode>(Neg.getOperand(0));
3403 if (!NegC)
3404 return 0;
3405 SDValue NegOp1 = Neg.getOperand(1);
3406
Richard Sandiford15cfc1c2014-01-09 10:56:42 +00003407 // The condition we need is now:
3408 //
3409 // (NegC - NegOp1) & Mask == (OpSize - Pos) & Mask
3410 //
3411 // If NegOp1 == Pos then we need:
3412 //
3413 // OpSize & Mask == NegC & Mask
3414 //
3415 // (because "x & Mask" is a truncation and distributes through subtraction).
3416 APInt Width;
Richard Sandiford0f264db2014-01-09 10:49:40 +00003417 if (Pos == NegOp1)
Richard Sandiford15cfc1c2014-01-09 10:56:42 +00003418 Width = NegC->getAPIntValue();
Richard Sandiford0f264db2014-01-09 10:49:40 +00003419 // Check for cases where Pos has the form (add NegOp1, PosC) for some PosC.
3420 // Then the condition we want to prove becomes:
Richard Sandiford0f264db2014-01-09 10:49:40 +00003421 //
Richard Sandiford15cfc1c2014-01-09 10:56:42 +00003422 // (NegC - NegOp1) & Mask == (OpSize - (NegOp1 + PosC)) & Mask
3423 //
3424 // which, again because "x & Mask" is a truncation, becomes:
3425 //
3426 // NegC & Mask == (OpSize - PosC) & Mask
3427 // OpSize & Mask == (NegC + PosC) & Mask
3428 else if (Pos.getOpcode() == ISD::ADD &&
3429 Pos.getOperand(0) == NegOp1 &&
3430 Pos.getOperand(1).getOpcode() == ISD::Constant)
3431 Width = (cast<ConstantSDNode>(Pos.getOperand(1))->getAPIntValue() +
3432 NegC->getAPIntValue());
3433 else
3434 return false;
Richard Sandiford0f264db2014-01-09 10:49:40 +00003435
Richard Sandiford15cfc1c2014-01-09 10:56:42 +00003436 // Now we just need to check that OpSize & Mask == Width & Mask.
3437 if (LoBits)
3438 return Width.getLoBits(LoBits) == 0;
3439 return Width == OpSize;
Richard Sandiford0f264db2014-01-09 10:49:40 +00003440}
3441
Richard Sandiford95c864d2014-01-08 15:40:47 +00003442// A subroutine of MatchRotate used once we have found an OR of two opposite
3443// shifts of Shifted. If Neg == <operand size> - Pos then the OR reduces
3444// to both (PosOpcode Shifted, Pos) and (NegOpcode Shifted, Neg), with the
3445// former being preferred if supported. InnerPos and InnerNeg are Pos and
3446// Neg with outer conversions stripped away.
3447SDNode *DAGCombiner::MatchRotatePosNeg(SDValue Shifted, SDValue Pos,
3448 SDValue Neg, SDValue InnerPos,
3449 SDValue InnerNeg, unsigned PosOpcode,
3450 unsigned NegOpcode, SDLoc DL) {
Richard Sandiford95c864d2014-01-08 15:40:47 +00003451 // fold (or (shl x, (*ext y)),
3452 // (srl x, (*ext (sub 32, y)))) ->
3453 // (rotl x, y) or (rotr x, (sub 32, y))
3454 //
3455 // fold (or (shl x, (*ext (sub 32, y))),
3456 // (srl x, (*ext y))) ->
3457 // (rotr x, y) or (rotl x, (sub 32, y))
3458 EVT VT = Shifted.getValueType();
Richard Sandiford0f264db2014-01-09 10:49:40 +00003459 if (matchRotateSub(InnerPos, InnerNeg, VT.getSizeInBits())) {
Richard Sandiford95c864d2014-01-08 15:40:47 +00003460 bool HasPos = TLI.isOperationLegalOrCustom(PosOpcode, VT);
3461 return DAG.getNode(HasPos ? PosOpcode : NegOpcode, DL, VT, Shifted,
3462 HasPos ? Pos : Neg).getNode();
3463 }
3464
3465 // fold (or (shl (*ext x), (*ext y)),
3466 // (srl (*ext x), (*ext (sub 32, y)))) ->
3467 // (*ext (rotl x, y)) or (*ext (rotr x, (sub 32, y)))
3468 //
3469 // fold (or (shl (*ext x), (*ext (sub 32, y))),
3470 // (srl (*ext x), (*ext y))) ->
3471 // (*ext (rotr x, y)) or (*ext (rotl x, (sub 32, y)))
3472 if (Shifted.getOpcode() == ISD::ZERO_EXTEND ||
3473 Shifted.getOpcode() == ISD::ANY_EXTEND) {
3474 SDValue InnerShifted = Shifted.getOperand(0);
3475 EVT InnerVT = InnerShifted.getValueType();
3476 bool HasPosInner = TLI.isOperationLegalOrCustom(PosOpcode, InnerVT);
3477 if (HasPosInner || TLI.isOperationLegalOrCustom(NegOpcode, InnerVT)) {
Richard Sandiford0f264db2014-01-09 10:49:40 +00003478 if (matchRotateSub(InnerPos, InnerNeg, InnerVT.getSizeInBits())) {
Richard Sandiford95c864d2014-01-08 15:40:47 +00003479 SDValue V = DAG.getNode(HasPosInner ? PosOpcode : NegOpcode, DL,
3480 InnerVT, InnerShifted, HasPosInner ? Pos : Neg);
3481 return DAG.getNode(Shifted.getOpcode(), DL, VT, V).getNode();
3482 }
3483 }
3484 }
3485
3486 return 0;
3487}
3488
Chris Lattner97614c82006-09-14 20:50:57 +00003489// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3490// idioms for rotate, and if the target supports rotation instructions, generate
3491// a rot[lr].
Andrew Trickef9de2a2013-05-25 02:42:55 +00003492SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, SDLoc DL) {
Duncan Sands8651e9c2008-06-13 19:07:40 +00003493 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003494 EVT VT = LHS.getValueType();
Chris Lattner97614c82006-09-14 20:50:57 +00003495 if (!TLI.isTypeLegal(VT)) return 0;
3496
3497 // The target must have at least one rotate flavor.
Dan Gohman4aa18462009-01-28 17:46:25 +00003498 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3499 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner97614c82006-09-14 20:50:57 +00003500 if (!HasROTL && !HasROTR) return 0;
Duncan Sands8651e9c2008-06-13 19:07:40 +00003501
Chris Lattner97614c82006-09-14 20:50:57 +00003502 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003503 SDValue LHSShift; // The shift.
3504 SDValue LHSMask; // AND value if any.
Chris Lattner97614c82006-09-14 20:50:57 +00003505 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3506 return 0; // Not part of a rotate.
3507
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003508 SDValue RHSShift; // The shift.
3509 SDValue RHSMask; // AND value if any.
Chris Lattner97614c82006-09-14 20:50:57 +00003510 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3511 return 0; // Not part of a rotate.
Scott Michelcf0da6c2009-02-17 22:15:04 +00003512
Chris Lattner97614c82006-09-14 20:50:57 +00003513 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3514 return 0; // Not shifting the same value.
3515
3516 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3517 return 0; // Shifts must disagree.
Scott Michelcf0da6c2009-02-17 22:15:04 +00003518
Chris Lattner97614c82006-09-14 20:50:57 +00003519 // Canonicalize shl to left side in a shl/srl pair.
3520 if (RHSShift.getOpcode() == ISD::SHL) {
3521 std::swap(LHS, RHS);
3522 std::swap(LHSShift, RHSShift);
3523 std::swap(LHSMask , RHSMask );
3524 }
3525
Duncan Sands13237ac2008-06-06 12:08:01 +00003526 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003527 SDValue LHSShiftArg = LHSShift.getOperand(0);
3528 SDValue LHSShiftAmt = LHSShift.getOperand(1);
Kai Nacked09bb462013-09-19 23:00:28 +00003529 SDValue RHSShiftArg = RHSShift.getOperand(0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003530 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner97614c82006-09-14 20:50:57 +00003531
3532 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3533 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michel16627a52007-04-02 21:36:32 +00003534 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3535 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00003536 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3537 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner97614c82006-09-14 20:50:57 +00003538 if ((LShVal + RShVal) != OpSizeInBits)
3539 return 0;
3540
Craig Topper65161fa2012-09-29 06:54:22 +00003541 SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3542 LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt);
Scott Michelcf0da6c2009-02-17 22:15:04 +00003543
Chris Lattner97614c82006-09-14 20:50:57 +00003544 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greiff304a7a2008-08-28 21:40:38 +00003545 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohmane1c4f992008-03-03 23:51:38 +00003546 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelcf0da6c2009-02-17 22:15:04 +00003547
Gabor Greiff304a7a2008-08-28 21:40:38 +00003548 if (LHSMask.getNode()) {
Dan Gohmane1c4f992008-03-03 23:51:38 +00003549 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3550 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner97614c82006-09-14 20:50:57 +00003551 }
Gabor Greiff304a7a2008-08-28 21:40:38 +00003552 if (RHSMask.getNode()) {
Dan Gohmane1c4f992008-03-03 23:51:38 +00003553 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3554 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner97614c82006-09-14 20:50:57 +00003555 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003556
Bill Wendling35972a92009-01-30 21:14:50 +00003557 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner97614c82006-09-14 20:50:57 +00003558 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003559
Gabor Greiff304a7a2008-08-28 21:40:38 +00003560 return Rot.getNode();
Chris Lattner97614c82006-09-14 20:50:57 +00003561 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003562
Chris Lattner97614c82006-09-14 20:50:57 +00003563 // If there is a mask here, and we have a variable shift, we can't be sure
3564 // that we're masking out the right stuff.
Gabor Greiff304a7a2008-08-28 21:40:38 +00003565 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner97614c82006-09-14 20:50:57 +00003566 return 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003567
Benjamin Kramer64bdb292013-09-24 14:21:28 +00003568 // If the shift amount is sign/zext/any-extended just peel it off.
3569 SDValue LExtOp0 = LHSShiftAmt;
3570 SDValue RExtOp0 = RHSShiftAmt;
Craig Topper5f9791f2012-09-29 07:18:53 +00003571 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3572 LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3573 LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3574 LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
3575 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3576 RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3577 RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3578 RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Benjamin Kramer64bdb292013-09-24 14:21:28 +00003579 LExtOp0 = LHSShiftAmt.getOperand(0);
3580 RExtOp0 = RHSShiftAmt.getOperand(0);
3581 }
3582
Richard Sandiford95c864d2014-01-08 15:40:47 +00003583 SDNode *TryL = MatchRotatePosNeg(LHSShiftArg, LHSShiftAmt, RHSShiftAmt,
3584 LExtOp0, RExtOp0, ISD::ROTL, ISD::ROTR, DL);
3585 if (TryL)
3586 return TryL;
3587
3588 SDNode *TryR = MatchRotatePosNeg(RHSShiftArg, RHSShiftAmt, LHSShiftAmt,
3589 RExtOp0, LExtOp0, ISD::ROTR, ISD::ROTL, DL);
3590 if (TryR)
3591 return TryR;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003592
Chris Lattner97614c82006-09-14 20:50:57 +00003593 return 0;
3594}
3595
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003596SDValue DAGCombiner::visitXOR(SDNode *N) {
3597 SDValue N0 = N->getOperand(0);
3598 SDValue N1 = N->getOperand(1);
3599 SDValue LHS, RHS, CC;
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003600 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3601 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00003602 EVT VT = N0.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003603
Dan Gohmana8665142007-06-25 16:23:39 +00003604 // fold vector ops
Duncan Sands13237ac2008-06-06 12:08:01 +00003605 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003606 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003607 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Toppera183ddb2012-12-08 22:49:19 +00003608
3609 // fold (xor x, 0) -> x, vector edition
3610 if (ISD::isBuildVectorAllZeros(N0.getNode()))
3611 return N1;
3612 if (ISD::isBuildVectorAllZeros(N1.getNode()))
3613 return N0;
Dan Gohman80f9f072007-07-13 20:03:40 +00003614 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003615
Evan Chengdf1690d2008-03-25 20:08:07 +00003616 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3617 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3618 return DAG.getConstant(0, VT);
Dan Gohman06563a82007-07-03 14:03:57 +00003619 // fold (xor x, undef) -> undef
Dan Gohmanadb3d372007-07-10 15:19:29 +00003620 if (N0.getOpcode() == ISD::UNDEF)
3621 return N0;
3622 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman06563a82007-07-03 14:03:57 +00003623 return N1;
Nate Begeman21158fc2005-09-01 00:19:25 +00003624 // fold (xor c1, c2) -> c1^c2
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003625 if (N0C && N1C)
Bill Wendlingdea91302008-09-24 10:25:02 +00003626 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman2cc2c9a2005-09-07 23:25:52 +00003627 // canonicalize constant to RHS
Nate Begeman418c6e42005-10-18 00:28:13 +00003628 if (N0C && !N1C)
Andrew Trickef9de2a2013-05-25 02:42:55 +00003629 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0);
Nate Begeman21158fc2005-09-01 00:19:25 +00003630 // fold (xor x, 0) -> x
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003631 if (N1C && N1C->isNullValue())
Nate Begemand23739d2005-09-06 04:43:02 +00003632 return N0;
Nate Begeman22e251a2006-02-03 06:46:56 +00003633 // reassociate xor
Andrew Trickef9de2a2013-05-25 02:42:55 +00003634 SDValue RXOR = ReassociateOps(ISD::XOR, SDLoc(N), N0, N1);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003635 if (RXOR.getNode() != 0)
Nate Begeman22e251a2006-02-03 06:46:56 +00003636 return RXOR;
Bill Wendling49a5ce82008-11-11 08:25:46 +00003637
Nate Begeman21158fc2005-09-01 00:19:25 +00003638 // fold !(x cc y) -> (x !cc y)
Dan Gohmanb72127a2008-03-13 22:13:53 +00003639 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands13237ac2008-06-06 12:08:01 +00003640 bool isInt = LHS.getValueType().isInteger();
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003641 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3642 isInt);
Bill Wendling49a5ce82008-11-11 08:25:46 +00003643
Patrik Hagglundffd057a2012-12-19 10:19:55 +00003644 if (!LegalOperations ||
3645 TLI.isCondCodeLegal(NotCC, LHS.getSimpleValueType())) {
Bill Wendling49a5ce82008-11-11 08:25:46 +00003646 switch (N0.getOpcode()) {
3647 default:
Torok Edwinfbcc6632009-07-14 16:55:14 +00003648 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendling49a5ce82008-11-11 08:25:46 +00003649 case ISD::SETCC:
Andrew Trickef9de2a2013-05-25 02:42:55 +00003650 return DAG.getSetCC(SDLoc(N), VT, LHS, RHS, NotCC);
Bill Wendling49a5ce82008-11-11 08:25:46 +00003651 case ISD::SELECT_CC:
Andrew Trickef9de2a2013-05-25 02:42:55 +00003652 return DAG.getSelectCC(SDLoc(N), LHS, RHS, N0.getOperand(2),
Bill Wendling49a5ce82008-11-11 08:25:46 +00003653 N0.getOperand(3), NotCC);
3654 }
3655 }
Nate Begeman21158fc2005-09-01 00:19:25 +00003656 }
Bill Wendling49a5ce82008-11-11 08:25:46 +00003657
Chris Lattner58c227b2007-09-10 21:39:07 +00003658 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohmanb72127a2008-03-13 22:13:53 +00003659 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greife12264b2008-08-30 19:29:20 +00003660 N0.getNode()->hasOneUse() &&
3661 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003662 SDValue V = N0.getOperand(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003663 V = DAG.getNode(ISD::XOR, SDLoc(N0), V.getValueType(), V,
Duncan Sands56ab90d2007-10-10 09:54:50 +00003664 DAG.getConstant(1, V.getValueType()));
Gabor Greiff304a7a2008-08-28 21:40:38 +00003665 AddToWorkList(V.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00003666 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, V);
Chris Lattner58c227b2007-09-10 21:39:07 +00003667 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003668
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003669 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson9f944592009-08-11 20:47:22 +00003670 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman2cc2c9a2005-09-07 23:25:52 +00003671 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003672 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman2cc2c9a2005-09-07 23:25:52 +00003673 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3674 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Andrew Trickef9de2a2013-05-25 02:42:55 +00003675 LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS
3676 RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS
Gabor Greiff304a7a2008-08-28 21:40:38 +00003677 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00003678 return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS);
Nate Begeman21158fc2005-09-01 00:19:25 +00003679 }
3680 }
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003681 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelcf0da6c2009-02-17 22:15:04 +00003682 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman2cc2c9a2005-09-07 23:25:52 +00003683 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003684 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman2cc2c9a2005-09-07 23:25:52 +00003685 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3686 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Andrew Trickef9de2a2013-05-25 02:42:55 +00003687 LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS
3688 RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS
Gabor Greiff304a7a2008-08-28 21:40:38 +00003689 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00003690 return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS);
Nate Begeman21158fc2005-09-01 00:19:25 +00003691 }
3692 }
David Majnemer386ab7f2013-05-08 06:44:42 +00003693 // fold (xor (and x, y), y) -> (and (not x), y)
3694 if (N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Benjamin Kramerbb1dd732013-11-17 10:40:03 +00003695 N0->getOperand(1) == N1) {
David Majnemer386ab7f2013-05-08 06:44:42 +00003696 SDValue X = N0->getOperand(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003697 SDValue NotX = DAG.getNOT(SDLoc(X), X, VT);
David Majnemer386ab7f2013-05-08 06:44:42 +00003698 AddToWorkList(NotX.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00003699 return DAG.getNode(ISD::AND, SDLoc(N), VT, NotX, N1);
David Majnemer386ab7f2013-05-08 06:44:42 +00003700 }
Bill Wendling35972a92009-01-30 21:14:50 +00003701 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman85c1cc42005-09-08 20:18:10 +00003702 if (N1C && N0.getOpcode() == ISD::XOR) {
3703 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3704 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3705 if (N00C)
Andrew Trickef9de2a2013-05-25 02:42:55 +00003706 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N0.getOperand(1),
Bill Wendling35972a92009-01-30 21:14:50 +00003707 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohmanb72127a2008-03-13 22:13:53 +00003708 N00C->getAPIntValue(), VT));
Nate Begeman85c1cc42005-09-08 20:18:10 +00003709 if (N01C)
Andrew Trickef9de2a2013-05-25 02:42:55 +00003710 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N0.getOperand(0),
Bill Wendling35972a92009-01-30 21:14:50 +00003711 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohmanb72127a2008-03-13 22:13:53 +00003712 N01C->getAPIntValue(), VT));
Nate Begeman85c1cc42005-09-08 20:18:10 +00003713 }
3714 // fold (xor x, x) -> 0
Eric Christophere5ca1e02011-02-16 04:50:12 +00003715 if (N0 == N1)
Hal Finkel6c29bd92013-07-09 17:02:45 +00003716 return tryFoldToZero(SDLoc(N), TLI, VT, DAG, LegalOperations, LegalTypes);
Scott Michelcf0da6c2009-02-17 22:15:04 +00003717
Chris Lattner8d6fc202006-05-05 05:51:50 +00003718 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3719 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003720 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003721 if (Tmp.getNode()) return Tmp;
Nate Begeman049b7482005-09-09 19:49:52 +00003722 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003723
Chris Lattner098c01e2006-04-08 04:15:24 +00003724 // Simplify the expression using non-local knowledge.
Duncan Sands13237ac2008-06-06 12:08:01 +00003725 if (!VT.isVector() &&
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003726 SimplifyDemandedBits(SDValue(N, 0)))
3727 return SDValue(N, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00003728
Evan Chengf1005572010-04-28 07:10:39 +00003729 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00003730}
3731
Chris Lattner7c709a52007-12-06 07:33:36 +00003732/// visitShiftByConstant - Handle transforms common to the three shifts, when
3733/// the shift amount is a constant.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003734SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Juergen Ributzkafa0eba62014-02-06 04:09:06 +00003735 assert(isa<ConstantSDNode>(N->getOperand(1)) &&
3736 "Expected an ConstantSDNode operand.");
3737 // We can't and shouldn't fold opaque constants.
3738 if (cast<ConstantSDNode>(N->getOperand(1))->isOpaque())
3739 return SDValue();
3740
Gabor Greiff304a7a2008-08-28 21:40:38 +00003741 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003742 if (!LHS->hasOneUse()) return SDValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003743
Chris Lattner7c709a52007-12-06 07:33:36 +00003744 // We want to pull some binops through shifts, so that we have (and (shift))
3745 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3746 // thing happens with address calculations, so it's important to canonicalize
3747 // it.
3748 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelcf0da6c2009-02-17 22:15:04 +00003749
Chris Lattner7c709a52007-12-06 07:33:36 +00003750 switch (LHS->getOpcode()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003751 default: return SDValue();
Chris Lattner7c709a52007-12-06 07:33:36 +00003752 case ISD::OR:
3753 case ISD::XOR:
3754 HighBitSet = false; // We can only transform sra if the high bit is clear.
3755 break;
3756 case ISD::AND:
3757 HighBitSet = true; // We can only transform sra if the high bit is set.
3758 break;
3759 case ISD::ADD:
Scott Michelcf0da6c2009-02-17 22:15:04 +00003760 if (N->getOpcode() != ISD::SHL)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003761 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattner7c709a52007-12-06 07:33:36 +00003762 HighBitSet = false; // We can only transform sra if the high bit is clear.
3763 break;
3764 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003765
Juergen Ributzkafa0eba62014-02-06 04:09:06 +00003766 // We require the RHS of the binop to be a constant and not opaque as well.
Chris Lattner7c709a52007-12-06 07:33:36 +00003767 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Juergen Ributzkafa0eba62014-02-06 04:09:06 +00003768 if (!BinOpCst || BinOpCst->isOpaque()) return SDValue();
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00003769
3770 // FIXME: disable this unless the input to the binop is a shift by a constant.
3771 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnereedaf922007-12-06 07:47:55 +00003772 //
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00003773 // void foo(int *X, int i) { X[i & 1235] = 1; }
3774 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greiff304a7a2008-08-28 21:40:38 +00003775 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003776 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnereedaf922007-12-06 07:47:55 +00003777 BinOpLHSVal->getOpcode() != ISD::SRA &&
3778 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3779 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003780 return SDValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003781
Owen Anderson53aa7a92009-08-10 22:56:29 +00003782 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00003783
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00003784 // If this is a signed shift right, and the high bit is modified by the
3785 // logical operation, do not perform the transformation. The highBitSet
3786 // boolean indicates the value of the high bit of the constant which would
3787 // cause it to be modified for this operation.
Chris Lattner7c709a52007-12-06 07:33:36 +00003788 if (N->getOpcode() == ISD::SRA) {
Dan Gohmane1c4f992008-03-03 23:51:38 +00003789 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3790 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003791 return SDValue();
Chris Lattner7c709a52007-12-06 07:33:36 +00003792 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003793
Chris Lattner7c709a52007-12-06 07:33:36 +00003794 // Fold the constants, shifting the binop RHS by the shift amount.
Andrew Trickef9de2a2013-05-25 02:42:55 +00003795 SDValue NewRHS = DAG.getNode(N->getOpcode(), SDLoc(LHS->getOperand(1)),
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00003796 N->getValueType(0),
3797 LHS->getOperand(1), N->getOperand(1));
Juergen Ributzkafa0eba62014-02-06 04:09:06 +00003798 assert(isa<ConstantSDNode>(NewRHS) && "Folding was not successful!");
Chris Lattner7c709a52007-12-06 07:33:36 +00003799
3800 // Create the new shift.
Eric Christopherd9e8eac2010-12-09 04:48:06 +00003801 SDValue NewShift = DAG.getNode(N->getOpcode(),
Andrew Trickef9de2a2013-05-25 02:42:55 +00003802 SDLoc(LHS->getOperand(0)),
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00003803 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattner7c709a52007-12-06 07:33:36 +00003804
3805 // Create the new binop.
Andrew Trickef9de2a2013-05-25 02:42:55 +00003806 return DAG.getNode(LHS->getOpcode(), SDLoc(N), VT, NewShift, NewRHS);
Chris Lattner7c709a52007-12-06 07:33:36 +00003807}
3808
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003809SDValue DAGCombiner::visitSHL(SDNode *N) {
3810 SDValue N0 = N->getOperand(0);
3811 SDValue N1 = N->getOperand(1);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003812 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3813 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00003814 EVT VT = N0.getValueType();
Dan Gohman1d459e42009-12-11 21:31:27 +00003815 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003816
Daniel Sandersa1840d22013-11-11 17:23:41 +00003817 // fold vector ops
3818 if (VT.isVector()) {
3819 SDValue FoldedVOp = SimplifyVBinOp(N);
3820 if (FoldedVOp.getNode()) return FoldedVOp;
3821 }
3822
Nate Begeman21158fc2005-09-01 00:19:25 +00003823 // fold (shl c1, c2) -> c1<<c2
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003824 if (N0C && N1C)
Bill Wendlingdea91302008-09-24 10:25:02 +00003825 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman21158fc2005-09-01 00:19:25 +00003826 // fold (shl 0, x) -> 0
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003827 if (N0C && N0C->isNullValue())
Nate Begemand23739d2005-09-06 04:43:02 +00003828 return N0;
Nate Begeman21158fc2005-09-01 00:19:25 +00003829 // fold (shl x, c >= size(x)) -> undef
Dan Gohmaneffb8942008-09-12 16:56:44 +00003830 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesen84935752009-02-06 23:05:02 +00003831 return DAG.getUNDEF(VT);
Nate Begeman21158fc2005-09-01 00:19:25 +00003832 // fold (shl x, 0) -> x
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003833 if (N1C && N1C->isNullValue())
Nate Begemand23739d2005-09-06 04:43:02 +00003834 return N0;
Chad Rosier818e1162011-06-14 22:29:10 +00003835 // fold (shl undef, x) -> 0
3836 if (N0.getOpcode() == ISD::UNDEF)
3837 return DAG.getConstant(0, VT);
Nate Begeman21158fc2005-09-01 00:19:25 +00003838 // if (shl x, c) is known to be zero, return 0
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003839 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman1d459e42009-12-11 21:31:27 +00003840 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begemand23739d2005-09-06 04:43:02 +00003841 return DAG.getConstant(0, VT);
Duncan Sands3ed76882009-02-01 18:06:53 +00003842 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengcfb7f3a2008-08-30 02:03:58 +00003843 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng13beeeb12008-09-22 18:19:24 +00003844 N1.getOperand(0).getOpcode() == ISD::AND &&
3845 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengcfb7f3a2008-08-30 02:03:58 +00003846 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng13beeeb12008-09-22 18:19:24 +00003847 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003848 EVT TruncVT = N1.getValueType();
Evan Cheng13beeeb12008-09-22 18:19:24 +00003849 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sands3ed76882009-02-01 18:06:53 +00003850 APInt TruncC = N101C->getAPIntValue();
Jay Foad583abbc2010-12-07 08:25:19 +00003851 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Andrew Trickef9de2a2013-05-25 02:42:55 +00003852 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
3853 DAG.getNode(ISD::AND, SDLoc(N), TruncVT,
Bill Wendlinga6c75ff2009-02-01 11:19:36 +00003854 DAG.getNode(ISD::TRUNCATE,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003855 SDLoc(N),
Bill Wendlinga6c75ff2009-02-01 11:19:36 +00003856 TruncVT, N100),
Dan Gohmanfb58faf2009-01-27 20:39:34 +00003857 DAG.getConstant(TruncC, TruncVT)));
Evan Chengcfb7f3a2008-08-30 02:03:58 +00003858 }
3859 }
3860
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003861 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3862 return SDValue(N, 0);
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00003863
3864 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelcf0da6c2009-02-17 22:15:04 +00003865 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman21158fc2005-09-01 00:19:25 +00003866 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00003867 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3868 uint64_t c2 = N1C->getZExtValue();
Dale Johannesena94e36b2010-12-21 21:55:50 +00003869 if (c1 + c2 >= OpSizeInBits)
Nate Begemand23739d2005-09-06 04:43:02 +00003870 return DAG.getConstant(0, VT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003871 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0.getOperand(0),
Nate Begemand23739d2005-09-06 04:43:02 +00003872 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman21158fc2005-09-01 00:19:25 +00003873 }
Dale Johannesena94e36b2010-12-21 21:55:50 +00003874
3875 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3876 // For this to be valid, the second form must not preserve any of the bits
3877 // that are shifted out by the inner shift in the first form. This means
3878 // the outer shift size must be >= the number of bits added by the ext.
3879 // As a corollary, we don't care what kind of ext it is.
3880 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3881 N0.getOpcode() == ISD::ANY_EXTEND ||
3882 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3883 N0.getOperand(0).getOpcode() == ISD::SHL &&
3884 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Andersonb2c80da2011-02-25 21:41:48 +00003885 uint64_t c1 =
Dale Johannesena94e36b2010-12-21 21:55:50 +00003886 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3887 uint64_t c2 = N1C->getZExtValue();
3888 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3889 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3890 if (c2 >= OpSizeInBits - InnerShiftSize) {
3891 if (c1 + c2 >= OpSizeInBits)
3892 return DAG.getConstant(0, VT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003893 return DAG.getNode(ISD::SHL, SDLoc(N0), VT,
3894 DAG.getNode(N0.getOpcode(), SDLoc(N0), VT,
Dale Johannesena94e36b2010-12-21 21:55:50 +00003895 N0.getOperand(0)->getOperand(0)),
3896 DAG.getConstant(c1 + c2, N1.getValueType()));
3897 }
3898 }
3899
Andrea Di Biagio56ce9c42013-09-27 11:37:05 +00003900 // fold (shl (zext (srl x, C)), C) -> (zext (shl (srl x, C), C))
3901 // Only fold this if the inner zext has no other uses to avoid increasing
3902 // the total number of instructions.
3903 if (N1C && N0.getOpcode() == ISD::ZERO_EXTEND && N0.hasOneUse() &&
3904 N0.getOperand(0).getOpcode() == ISD::SRL &&
3905 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
3906 uint64_t c1 =
3907 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3908 if (c1 < VT.getSizeInBits()) {
3909 uint64_t c2 = N1C->getZExtValue();
3910 if (c1 == c2) {
3911 SDValue NewOp0 = N0.getOperand(0);
3912 EVT CountVT = NewOp0.getOperand(1).getValueType();
3913 SDValue NewSHL = DAG.getNode(ISD::SHL, SDLoc(N), NewOp0.getValueType(),
3914 NewOp0, DAG.getConstant(c2, CountVT));
Andrea Di Biagio561badf2013-10-17 11:02:58 +00003915 AddToWorkList(NewSHL.getNode());
Andrea Di Biagio56ce9c42013-09-27 11:37:05 +00003916 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N0), VT, NewSHL);
3917 }
3918 }
3919 }
3920
Eli Friedman1877ac92011-06-09 22:14:44 +00003921 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3922 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruthe041a302012-01-05 11:05:55 +00003923 // Only fold this if the inner shift has no other uses -- if it does, folding
3924 // this will increase the total number of instructions.
3925 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman21158fc2005-09-01 00:19:25 +00003926 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00003927 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chenga7bb55e2009-07-21 05:40:15 +00003928 if (c1 < VT.getSizeInBits()) {
3929 uint64_t c2 = N1C->getZExtValue();
Eli Friedman1877ac92011-06-09 22:14:44 +00003930 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3931 VT.getSizeInBits() - c1);
3932 SDValue Shift;
3933 if (c2 > c1) {
3934 Mask = Mask.shl(c2-c1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003935 Shift = DAG.getNode(ISD::SHL, SDLoc(N), VT, N0.getOperand(0),
Eli Friedman1877ac92011-06-09 22:14:44 +00003936 DAG.getConstant(c2-c1, N1.getValueType()));
3937 } else {
3938 Mask = Mask.lshr(c1-c2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003939 Shift = DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0),
Eli Friedman1877ac92011-06-09 22:14:44 +00003940 DAG.getConstant(c1-c2, N1.getValueType()));
3941 }
Andrew Trickef9de2a2013-05-25 02:42:55 +00003942 return DAG.getNode(ISD::AND, SDLoc(N0), VT, Shift,
Eli Friedman1877ac92011-06-09 22:14:44 +00003943 DAG.getConstant(Mask, VT));
Evan Chenga7bb55e2009-07-21 05:40:15 +00003944 }
Nate Begeman21158fc2005-09-01 00:19:25 +00003945 }
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00003946 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5758e1e2009-08-06 09:18:59 +00003947 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3948 SDValue HiBitsMask =
3949 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3950 VT.getSizeInBits() -
3951 N1C->getZExtValue()),
3952 VT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003953 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0.getOperand(0),
Dan Gohman5758e1e2009-08-06 09:18:59 +00003954 HiBitsMask);
3955 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003956
Evan Chengf1bd5fc2010-04-17 06:13:15 +00003957 if (N1C) {
3958 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3959 if (NewSHL.getNode())
3960 return NewSHL;
3961 }
3962
Evan Chengf1005572010-04-28 07:10:39 +00003963 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00003964}
3965
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003966SDValue DAGCombiner::visitSRA(SDNode *N) {
3967 SDValue N0 = N->getOperand(0);
3968 SDValue N1 = N->getOperand(1);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003969 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3970 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00003971 EVT VT = N0.getValueType();
Dan Gohman1d459e42009-12-11 21:31:27 +00003972 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003973
Daniel Sandersa1840d22013-11-11 17:23:41 +00003974 // fold vector ops
3975 if (VT.isVector()) {
3976 SDValue FoldedVOp = SimplifyVBinOp(N);
3977 if (FoldedVOp.getNode()) return FoldedVOp;
3978 }
3979
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00003980 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003981 if (N0C && N1C)
Bill Wendlingdea91302008-09-24 10:25:02 +00003982 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman21158fc2005-09-01 00:19:25 +00003983 // fold (sra 0, x) -> 0
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003984 if (N0C && N0C->isNullValue())
Nate Begemand23739d2005-09-06 04:43:02 +00003985 return N0;
Nate Begeman21158fc2005-09-01 00:19:25 +00003986 // fold (sra -1, x) -> -1
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003987 if (N0C && N0C->isAllOnesValue())
Nate Begemand23739d2005-09-06 04:43:02 +00003988 return N0;
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00003989 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman1d459e42009-12-11 21:31:27 +00003990 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesen84935752009-02-06 23:05:02 +00003991 return DAG.getUNDEF(VT);
Nate Begeman21158fc2005-09-01 00:19:25 +00003992 // fold (sra x, 0) -> x
Nate Begeman7cea6ef2005-09-02 21:18:40 +00003993 if (N1C && N1C->isNullValue())
Nate Begemand23739d2005-09-06 04:43:02 +00003994 return N0;
Nate Begemanfb5dbad2006-02-17 19:54:08 +00003995 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3996 // sext_inreg.
3997 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman1d459e42009-12-11 21:31:27 +00003998 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003999 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
4000 if (VT.isVector())
4001 ExtVT = EVT::getVectorVT(*DAG.getContext(),
4002 ExtVT, VT.getVectorNumElements());
4003 if ((!LegalOperations ||
4004 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00004005 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
Dan Gohman6bd3ef82010-01-09 02:13:55 +00004006 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb5dbad2006-02-17 19:54:08 +00004007 }
Duncan Sands8651e9c2008-06-13 19:07:40 +00004008
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004009 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner0f8a7272006-02-28 06:23:04 +00004010 if (N1C && N0.getOpcode() == ISD::SRA) {
4011 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00004012 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman1d459e42009-12-11 21:31:27 +00004013 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Andrew Trickef9de2a2013-05-25 02:42:55 +00004014 return DAG.getNode(ISD::SRA, SDLoc(N), VT, N0.getOperand(0),
Chris Lattner0f8a7272006-02-28 06:23:04 +00004015 DAG.getConstant(Sum, N1C->getValueType(0)));
4016 }
4017 }
Christopher Lamb8fe91092008-03-19 08:30:06 +00004018
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004019 // fold (sra (shl X, m), (sub result_size, n))
4020 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelcf0da6c2009-02-17 22:15:04 +00004021 // result_size - n != m.
4022 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lamb3e9f4972008-03-20 04:31:39 +00004023 // code.
Christopher Lamb8fe91092008-03-19 08:30:06 +00004024 if (N0.getOpcode() == ISD::SHL) {
4025 // Get the two constanst of the shifts, CN0 = m, CN = n.
4026 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
4027 if (N01C && N1C) {
Christopher Lamb3e9f4972008-03-20 04:31:39 +00004028 // Determine what the truncate's result bitsize and type would be.
Owen Anderson53aa7a92009-08-10 22:56:29 +00004029 EVT TruncVT =
Eric Christopherd9e8eac2010-12-09 04:48:06 +00004030 EVT::getIntegerVT(*DAG.getContext(),
4031 OpSizeInBits - N1C->getZExtValue());
Christopher Lamb3e9f4972008-03-20 04:31:39 +00004032 // Determine the residual right-shift amount.
Torok Edwinbe6a9a12009-05-23 17:29:48 +00004033 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sands8651e9c2008-06-13 19:07:40 +00004034
Scott Michelcf0da6c2009-02-17 22:15:04 +00004035 // If the shift is not a no-op (in which case this should be just a sign
4036 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohman4a618822010-02-10 16:03:48 +00004037 // on that type, and the truncate to that type is both legal and free,
Christopher Lamb3e9f4972008-03-20 04:31:39 +00004038 // perform the transform.
Torok Edwinbe6a9a12009-05-23 17:29:48 +00004039 if ((ShiftAmt > 0) &&
Dan Gohman4aa18462009-01-28 17:46:25 +00004040 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
4041 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng7a3e7502008-03-20 02:18:41 +00004042 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lamb3e9f4972008-03-20 04:31:39 +00004043
Owen Andersonb2c80da2011-02-25 21:41:48 +00004044 SDValue Amt = DAG.getConstant(ShiftAmt,
4045 getShiftAmountTy(N0.getOperand(0).getValueType()));
Andrew Trickef9de2a2013-05-25 02:42:55 +00004046 SDValue Shift = DAG.getNode(ISD::SRL, SDLoc(N0), VT,
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004047 N0.getOperand(0), Amt);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004048 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), TruncVT,
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004049 Shift);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004050 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N),
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004051 N->getValueType(0), Trunc);
Christopher Lamb8fe91092008-03-19 08:30:06 +00004052 }
4053 }
4054 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004055
Duncan Sands3ed76882009-02-01 18:06:53 +00004056 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengcfb7f3a2008-08-30 02:03:58 +00004057 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng13beeeb12008-09-22 18:19:24 +00004058 N1.getOperand(0).getOpcode() == ISD::AND &&
4059 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengcfb7f3a2008-08-30 02:03:58 +00004060 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng13beeeb12008-09-22 18:19:24 +00004061 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00004062 EVT TruncVT = N1.getValueType();
Evan Cheng13beeeb12008-09-22 18:19:24 +00004063 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sands3ed76882009-02-01 18:06:53 +00004064 APInt TruncC = N101C->getAPIntValue();
Jay Foad583abbc2010-12-07 08:25:19 +00004065 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Andrew Trickef9de2a2013-05-25 02:42:55 +00004066 return DAG.getNode(ISD::SRA, SDLoc(N), VT, N0,
4067 DAG.getNode(ISD::AND, SDLoc(N),
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004068 TruncVT,
Bill Wendling3b585af2009-01-31 03:12:48 +00004069 DAG.getNode(ISD::TRUNCATE,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004070 SDLoc(N),
Bill Wendling3b585af2009-01-31 03:12:48 +00004071 TruncVT, N100),
Dan Gohmanfb58faf2009-01-27 20:39:34 +00004072 DAG.getConstant(TruncC, TruncVT)));
Evan Chengcfb7f3a2008-08-30 02:03:58 +00004073 }
4074 }
4075
Benjamin Kramer946e1522011-01-30 16:38:43 +00004076 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
4077 // if c1 is equal to the number of bits the trunc removes
4078 if (N0.getOpcode() == ISD::TRUNCATE &&
4079 (N0.getOperand(0).getOpcode() == ISD::SRL ||
4080 N0.getOperand(0).getOpcode() == ISD::SRA) &&
4081 N0.getOperand(0).hasOneUse() &&
4082 N0.getOperand(0).getOperand(1).hasOneUse() &&
4083 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
4084 EVT LargeVT = N0.getOperand(0).getValueType();
4085 ConstantSDNode *LargeShiftAmt =
4086 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
4087
4088 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
4089 LargeShiftAmt->getZExtValue()) {
4090 SDValue Amt =
4091 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Andersonb2c80da2011-02-25 21:41:48 +00004092 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Andrew Trickef9de2a2013-05-25 02:42:55 +00004093 SDValue SRA = DAG.getNode(ISD::SRA, SDLoc(N), LargeVT,
Benjamin Kramer946e1522011-01-30 16:38:43 +00004094 N0.getOperand(0).getOperand(0), Amt);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004095 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, SRA);
Benjamin Kramer946e1522011-01-30 16:38:43 +00004096 }
4097 }
4098
Scott Michelcf0da6c2009-02-17 22:15:04 +00004099 // Simplify, based on bits shifted out of the LHS.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004100 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
4101 return SDValue(N, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004102
4103
Nate Begeman21158fc2005-09-01 00:19:25 +00004104 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman1f372ed2008-02-25 21:11:39 +00004105 if (DAG.SignBitIsZero(N0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00004106 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, N1);
Chris Lattner7c709a52007-12-06 07:33:36 +00004107
Evan Chengf1bd5fc2010-04-17 06:13:15 +00004108 if (N1C) {
4109 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
4110 if (NewSRA.getNode())
4111 return NewSRA;
4112 }
4113
Evan Chengf1005572010-04-28 07:10:39 +00004114 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00004115}
4116
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004117SDValue DAGCombiner::visitSRL(SDNode *N) {
4118 SDValue N0 = N->getOperand(0);
4119 SDValue N1 = N->getOperand(1);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00004120 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4121 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00004122 EVT VT = N0.getValueType();
Dan Gohman1d459e42009-12-11 21:31:27 +00004123 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004124
Daniel Sandersa1840d22013-11-11 17:23:41 +00004125 // fold vector ops
4126 if (VT.isVector()) {
4127 SDValue FoldedVOp = SimplifyVBinOp(N);
4128 if (FoldedVOp.getNode()) return FoldedVOp;
4129 }
4130
Nate Begeman21158fc2005-09-01 00:19:25 +00004131 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman7cea6ef2005-09-02 21:18:40 +00004132 if (N0C && N1C)
Bill Wendlingdea91302008-09-24 10:25:02 +00004133 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman21158fc2005-09-01 00:19:25 +00004134 // fold (srl 0, x) -> 0
Nate Begeman7cea6ef2005-09-02 21:18:40 +00004135 if (N0C && N0C->isNullValue())
Nate Begemand23739d2005-09-06 04:43:02 +00004136 return N0;
Nate Begeman21158fc2005-09-01 00:19:25 +00004137 // fold (srl x, c >= size(x)) -> undef
Dan Gohmaneffb8942008-09-12 16:56:44 +00004138 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesen84935752009-02-06 23:05:02 +00004139 return DAG.getUNDEF(VT);
Nate Begeman21158fc2005-09-01 00:19:25 +00004140 // fold (srl x, 0) -> x
Nate Begeman7cea6ef2005-09-02 21:18:40 +00004141 if (N1C && N1C->isNullValue())
Nate Begemand23739d2005-09-06 04:43:02 +00004142 return N0;
Nate Begeman21158fc2005-09-01 00:19:25 +00004143 // if (srl x, c) is known to be zero, return 0
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004144 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman1f372ed2008-02-25 21:11:39 +00004145 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begemand23739d2005-09-06 04:43:02 +00004146 return DAG.getConstant(0, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004147
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004148 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelcf0da6c2009-02-17 22:15:04 +00004149 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman21158fc2005-09-01 00:19:25 +00004150 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00004151 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
4152 uint64_t c2 = N1C->getZExtValue();
Dale Johannesena94e36b2010-12-21 21:55:50 +00004153 if (c1 + c2 >= OpSizeInBits)
Nate Begemand23739d2005-09-06 04:43:02 +00004154 return DAG.getConstant(0, VT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004155 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0),
Nate Begemand23739d2005-09-06 04:43:02 +00004156 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman21158fc2005-09-01 00:19:25 +00004157 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004158
Dale Johannesencd538af2010-12-17 21:45:49 +00004159 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesencd538af2010-12-17 21:45:49 +00004160 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
4161 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen0a291a32010-12-20 20:10:50 +00004162 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Andersonb2c80da2011-02-25 21:41:48 +00004163 uint64_t c1 =
Dale Johannesencd538af2010-12-17 21:45:49 +00004164 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
4165 uint64_t c2 = N1C->getZExtValue();
Dale Johannesena94e36b2010-12-21 21:55:50 +00004166 EVT InnerShiftVT = N0.getOperand(0).getValueType();
4167 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesencd538af2010-12-17 21:45:49 +00004168 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen0a291a32010-12-20 20:10:50 +00004169 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesencd538af2010-12-17 21:45:49 +00004170 if (c1 + OpSizeInBits == InnerShiftSize) {
4171 if (c1 + c2 >= InnerShiftSize)
4172 return DAG.getConstant(0, VT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004173 return DAG.getNode(ISD::TRUNCATE, SDLoc(N0), VT,
4174 DAG.getNode(ISD::SRL, SDLoc(N0), InnerShiftVT,
Dale Johannesencd538af2010-12-17 21:45:49 +00004175 N0.getOperand(0)->getOperand(0),
Dale Johannesena94e36b2010-12-21 21:55:50 +00004176 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesencd538af2010-12-17 21:45:49 +00004177 }
4178 }
4179
Chris Lattnerf9b2e3c2010-04-15 05:28:43 +00004180 // fold (srl (shl x, c), c) -> (and x, cst2)
4181 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
4182 N0.getValueSizeInBits() <= 64) {
4183 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
Andrew Trickef9de2a2013-05-25 02:42:55 +00004184 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0.getOperand(0),
Chris Lattnerf9b2e3c2010-04-15 05:28:43 +00004185 DAG.getConstant(~0ULL >> ShAmt, VT));
4186 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004187
Michael Liao62ebfd82013-06-21 18:45:27 +00004188 // fold (srl (anyextend x), c) -> (and (anyextend (srl x, c)), mask)
Chris Lattner57f8c5a2006-05-05 22:53:17 +00004189 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
4190 // Shifting in all undef bits?
Owen Anderson53aa7a92009-08-10 22:56:29 +00004191 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmaneffb8942008-09-12 16:56:44 +00004192 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesen84935752009-02-06 23:05:02 +00004193 return DAG.getUNDEF(VT);
Chris Lattner57f8c5a2006-05-05 22:53:17 +00004194
Evan Chengf1bd5fc2010-04-17 06:13:15 +00004195 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona5192842011-04-14 17:30:49 +00004196 uint64_t ShiftAmt = N1C->getZExtValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00004197 SDValue SmallShift = DAG.getNode(ISD::SRL, SDLoc(N0), SmallVT,
Owen Andersona5192842011-04-14 17:30:49 +00004198 N0.getOperand(0),
4199 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chengf1bd5fc2010-04-17 06:13:15 +00004200 AddToWorkList(SmallShift.getNode());
Michael Liao62ebfd82013-06-21 18:45:27 +00004201 APInt Mask = APInt::getAllOnesValue(VT.getSizeInBits()).lshr(ShiftAmt);
4202 return DAG.getNode(ISD::AND, SDLoc(N), VT,
4203 DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, SmallShift),
4204 DAG.getConstant(Mask, VT));
Evan Chengf1bd5fc2010-04-17 06:13:15 +00004205 }
Chris Lattner57f8c5a2006-05-05 22:53:17 +00004206 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004207
Chris Lattner2e33fb42006-10-12 20:23:19 +00004208 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
4209 // bit, which is unmodified by sra.
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004210 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner2e33fb42006-10-12 20:23:19 +00004211 if (N0.getOpcode() == ISD::SRA)
Andrew Trickef9de2a2013-05-25 02:42:55 +00004212 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0), N1);
Chris Lattner2e33fb42006-10-12 20:23:19 +00004213 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004214
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00004215 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelcf0da6c2009-02-17 22:15:04 +00004216 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands13237ac2008-06-06 12:08:01 +00004217 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohmand0ff91d2008-02-20 16:33:30 +00004218 APInt KnownZero, KnownOne;
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00004219 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004220
Chris Lattner49932492006-04-02 06:11:11 +00004221 // If any of the input bits are KnownOne, then the input couldn't be all
4222 // zeros, thus the result of the srl will always be zero.
Dan Gohmand0ff91d2008-02-20 16:33:30 +00004223 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004224
Chris Lattner49932492006-04-02 06:11:11 +00004225 // If all of the bits input the to ctlz node are known to be zero, then
4226 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00004227 APInt UnknownBits = ~KnownZero;
Chris Lattner49932492006-04-02 06:11:11 +00004228 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004229
Chris Lattner49932492006-04-02 06:11:11 +00004230 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004231 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner49932492006-04-02 06:11:11 +00004232 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004233 // could be set on input to the CTLZ node. If this bit is set, the SRL
4234 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
4235 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohmand0ff91d2008-02-20 16:33:30 +00004236 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004237 SDValue Op = N0.getOperand(0);
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004238
Chris Lattner49932492006-04-02 06:11:11 +00004239 if (ShAmt) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004240 Op = DAG.getNode(ISD::SRL, SDLoc(N0), VT, Op,
Owen Andersonb2c80da2011-02-25 21:41:48 +00004241 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greiff304a7a2008-08-28 21:40:38 +00004242 AddToWorkList(Op.getNode());
Chris Lattner49932492006-04-02 06:11:11 +00004243 }
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004244
Andrew Trickef9de2a2013-05-25 02:42:55 +00004245 return DAG.getNode(ISD::XOR, SDLoc(N), VT,
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004246 Op, DAG.getConstant(1, VT));
Chris Lattner49932492006-04-02 06:11:11 +00004247 }
4248 }
Evan Chengcfb7f3a2008-08-30 02:03:58 +00004249
Duncan Sands3ed76882009-02-01 18:06:53 +00004250 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengcfb7f3a2008-08-30 02:03:58 +00004251 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng13beeeb12008-09-22 18:19:24 +00004252 N1.getOperand(0).getOpcode() == ISD::AND &&
4253 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengcfb7f3a2008-08-30 02:03:58 +00004254 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng13beeeb12008-09-22 18:19:24 +00004255 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00004256 EVT TruncVT = N1.getValueType();
Evan Cheng13beeeb12008-09-22 18:19:24 +00004257 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sands3ed76882009-02-01 18:06:53 +00004258 APInt TruncC = N101C->getAPIntValue();
Jay Foad583abbc2010-12-07 08:25:19 +00004259 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Andrew Trickef9de2a2013-05-25 02:42:55 +00004260 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0,
4261 DAG.getNode(ISD::AND, SDLoc(N),
Bill Wendlingd51e3ff2009-01-30 21:37:17 +00004262 TruncVT,
Bill Wendling3b585af2009-01-31 03:12:48 +00004263 DAG.getNode(ISD::TRUNCATE,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004264 SDLoc(N),
Bill Wendling3b585af2009-01-31 03:12:48 +00004265 TruncVT, N100),
Dan Gohmanfb58faf2009-01-27 20:39:34 +00004266 DAG.getConstant(TruncC, TruncVT)));
Evan Chengcfb7f3a2008-08-30 02:03:58 +00004267 }
4268 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004269
Chris Lattnerf03c90b2007-04-18 03:06:49 +00004270 // fold operands of srl based on knowledge that the low bits are not
4271 // demanded.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004272 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
4273 return SDValue(N, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004274
Evan Chengb175de62009-12-18 21:31:31 +00004275 if (N1C) {
4276 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
4277 if (NewSRL.getNode())
4278 return NewSRL;
4279 }
4280
Dan Gohman600f62b2010-06-24 14:30:44 +00004281 // Attempt to convert a srl of a load into a narrower zero-extending load.
4282 SDValue NarrowLoad = ReduceLoadWidth(N);
4283 if (NarrowLoad.getNode())
4284 return NarrowLoad;
4285
Evan Chengb175de62009-12-18 21:31:31 +00004286 // Here is a common situation. We want to optimize:
4287 //
4288 // %a = ...
4289 // %b = and i32 %a, 2
4290 // %c = srl i32 %b, 1
4291 // brcond i32 %c ...
4292 //
4293 // into
Wesley Peck527da1b2010-11-23 03:31:01 +00004294 //
Evan Chengb175de62009-12-18 21:31:31 +00004295 // %a = ...
4296 // %b = and %a, 2
4297 // %c = setcc eq %b, 0
4298 // brcond %c ...
4299 //
4300 // However when after the source operand of SRL is optimized into AND, the SRL
4301 // itself may not be optimized further. Look for it and add the BRCOND into
4302 // the worklist.
Evan Cheng166a4e62010-01-06 19:38:29 +00004303 if (N->hasOneUse()) {
4304 SDNode *Use = *N->use_begin();
4305 if (Use->getOpcode() == ISD::BRCOND)
4306 AddToWorkList(Use);
4307 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
4308 // Also look pass the truncate.
4309 Use = *Use->use_begin();
4310 if (Use->getOpcode() == ISD::BRCOND)
4311 AddToWorkList(Use);
4312 }
4313 }
Evan Chengb175de62009-12-18 21:31:31 +00004314
Evan Chengf1005572010-04-28 07:10:39 +00004315 return SDValue();
Evan Chenge19aa5c2010-04-19 19:29:22 +00004316}
4317
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004318SDValue DAGCombiner::visitCTLZ(SDNode *N) {
4319 SDValue N0 = N->getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00004320 EVT VT = N->getValueType(0);
Nate Begeman21158fc2005-09-01 00:19:25 +00004321
4322 // fold (ctlz c1) -> c2
Chris Lattner7e7bcf32006-05-06 23:06:26 +00004323 if (isa<ConstantSDNode>(N0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00004324 return DAG.getNode(ISD::CTLZ, SDLoc(N), VT, N0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004325 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00004326}
4327
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004328SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
4329 SDValue N0 = N->getOperand(0);
4330 EVT VT = N->getValueType(0);
4331
4332 // fold (ctlz_zero_undef c1) -> c2
4333 if (isa<ConstantSDNode>(N0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00004334 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, SDLoc(N), VT, N0);
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004335 return SDValue();
4336}
4337
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004338SDValue DAGCombiner::visitCTTZ(SDNode *N) {
4339 SDValue N0 = N->getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00004340 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004341
Nate Begeman21158fc2005-09-01 00:19:25 +00004342 // fold (cttz c1) -> c2
Chris Lattner7e7bcf32006-05-06 23:06:26 +00004343 if (isa<ConstantSDNode>(N0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00004344 return DAG.getNode(ISD::CTTZ, SDLoc(N), VT, N0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004345 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00004346}
4347
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004348SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
4349 SDValue N0 = N->getOperand(0);
4350 EVT VT = N->getValueType(0);
4351
4352 // fold (cttz_zero_undef c1) -> c2
4353 if (isa<ConstantSDNode>(N0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00004354 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, SDLoc(N), VT, N0);
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004355 return SDValue();
4356}
4357
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004358SDValue DAGCombiner::visitCTPOP(SDNode *N) {
4359 SDValue N0 = N->getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00004360 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004361
Nate Begeman21158fc2005-09-01 00:19:25 +00004362 // fold (ctpop c1) -> c2
Chris Lattner7e7bcf32006-05-06 23:06:26 +00004363 if (isa<ConstantSDNode>(N0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00004364 return DAG.getNode(ISD::CTPOP, SDLoc(N), VT, N0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004365 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00004366}
4367
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004368SDValue DAGCombiner::visitSELECT(SDNode *N) {
4369 SDValue N0 = N->getOperand(0);
4370 SDValue N1 = N->getOperand(1);
4371 SDValue N2 = N->getOperand(2);
Nate Begeman24a7eca2005-09-16 00:54:12 +00004372 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4373 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4374 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00004375 EVT VT = N->getValueType(0);
4376 EVT VT0 = N0.getValueType();
Nate Begemanc760f802005-09-19 22:34:01 +00004377
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004378 // fold (select C, X, X) -> X
Nate Begeman24a7eca2005-09-16 00:54:12 +00004379 if (N1 == N2)
4380 return N1;
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004381 // fold (select true, X, Y) -> X
Nate Begeman24a7eca2005-09-16 00:54:12 +00004382 if (N0C && !N0C->isNullValue())
4383 return N1;
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004384 // fold (select false, X, Y) -> Y
Nate Begeman24a7eca2005-09-16 00:54:12 +00004385 if (N0C && N0C->isNullValue())
4386 return N2;
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004387 // fold (select C, 1, X) -> (or C, X)
Owen Anderson9f944592009-08-11 20:47:22 +00004388 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Andrew Trickef9de2a2013-05-25 02:42:55 +00004389 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N2);
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004390 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilsonc2dc7ee2009-01-22 22:05:48 +00004391 if (VT.isInteger() &&
Owen Anderson9f944592009-08-11 20:47:22 +00004392 (VT0 == MVT::i1 ||
Bob Wilsonc2dc7ee2009-01-22 22:05:48 +00004393 (VT0.isInteger() &&
Nadav Rotem841c9a82012-09-20 08:53:31 +00004394 TLI.getBooleanContents(false) ==
4395 TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohmanb72127a2008-03-13 22:13:53 +00004396 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004397 SDValue XORNode;
Evan Chengf5a23ab2007-08-18 05:57:05 +00004398 if (VT == VT0)
Andrew Trickef9de2a2013-05-25 02:42:55 +00004399 return DAG.getNode(ISD::XOR, SDLoc(N), VT0,
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004400 N0, DAG.getConstant(1, VT0));
Andrew Trickef9de2a2013-05-25 02:42:55 +00004401 XORNode = DAG.getNode(ISD::XOR, SDLoc(N0), VT0,
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004402 N0, DAG.getConstant(1, VT0));
Gabor Greiff304a7a2008-08-28 21:40:38 +00004403 AddToWorkList(XORNode.getNode());
Duncan Sands11dd4242008-06-08 20:54:56 +00004404 if (VT.bitsGT(VT0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00004405 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, XORNode);
4406 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, XORNode);
Evan Chengf5a23ab2007-08-18 05:57:05 +00004407 }
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004408 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson9f944592009-08-11 20:47:22 +00004409 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004410 SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT);
Bob Wilsonc5890052009-01-22 17:39:32 +00004411 AddToWorkList(NOTNode.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00004412 return DAG.getNode(ISD::AND, SDLoc(N), VT, NOTNode, N2);
Nate Begeman24a7eca2005-09-16 00:54:12 +00004413 }
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004414 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson9f944592009-08-11 20:47:22 +00004415 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004416 SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT);
Bob Wilsonc5890052009-01-22 17:39:32 +00004417 AddToWorkList(NOTNode.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00004418 return DAG.getNode(ISD::OR, SDLoc(N), VT, NOTNode, N1);
Nate Begeman24a7eca2005-09-16 00:54:12 +00004419 }
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004420 // fold (select C, X, 0) -> (and C, X)
Owen Anderson9f944592009-08-11 20:47:22 +00004421 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Andrew Trickef9de2a2013-05-25 02:42:55 +00004422 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, N1);
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004423 // fold (select X, X, Y) -> (or X, Y)
4424 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson9f944592009-08-11 20:47:22 +00004425 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00004426 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N2);
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004427 // fold (select X, Y, X) -> (and X, Y)
4428 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson9f944592009-08-11 20:47:22 +00004429 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00004430 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, N1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004431
Chris Lattner6c14c352005-10-18 06:04:22 +00004432 // If we can fold this based on the true/false value, do so.
4433 if (SimplifySelectOps(N, N1, N2))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004434 return SDValue(N, 0); // Don't revisit N.
Duncan Sands8651e9c2008-06-13 19:07:40 +00004435
Nate Begemanc760f802005-09-19 22:34:01 +00004436 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00004437 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman7e7f4392006-02-01 07:19:44 +00004438 // FIXME:
Owen Anderson9f944592009-08-11 20:47:22 +00004439 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman7e7f4392006-02-01 07:19:44 +00004440 // having to say they don't support SELECT_CC on every type the DAG knows
4441 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson9f944592009-08-11 20:47:22 +00004442 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman3f323842009-08-02 16:19:38 +00004443 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Andrew Trickef9de2a2013-05-25 02:42:55 +00004444 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT,
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004445 N0.getOperand(0), N0.getOperand(1),
Nate Begeman7e7f4392006-02-01 07:19:44 +00004446 N1, N2, N0.getOperand(2));
Andrew Trickef9de2a2013-05-25 02:42:55 +00004447 return SimplifySelect(SDLoc(N), N0, N1, N2);
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00004448 }
Bill Wendlingb6b6f462009-01-30 22:02:18 +00004449
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004450 return SDValue();
Nate Begeman24a7eca2005-09-16 00:54:12 +00004451}
4452
Tom Stellard9cbd2c52013-11-22 00:39:23 +00004453static
4454std::pair<SDValue, SDValue> SplitVSETCC(const SDNode *N, SelectionDAG &DAG) {
4455 SDLoc DL(N);
4456 EVT LoVT, HiVT;
4457 llvm::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0));
4458
4459 // Split the inputs.
4460 SDValue Lo, Hi, LL, LH, RL, RH;
4461 llvm::tie(LL, LH) = DAG.SplitVectorOperand(N, 0);
4462 llvm::tie(RL, RH) = DAG.SplitVectorOperand(N, 1);
4463
4464 Lo = DAG.getNode(N->getOpcode(), DL, LoVT, LL, RL, N->getOperand(2));
4465 Hi = DAG.getNode(N->getOpcode(), DL, HiVT, LH, RH, N->getOperand(2));
4466
4467 return std::make_pair(Lo, Hi);
4468}
4469
Benjamin Kramerd56ffc72013-04-26 09:19:19 +00004470SDValue DAGCombiner::visitVSELECT(SDNode *N) {
4471 SDValue N0 = N->getOperand(0);
4472 SDValue N1 = N->getOperand(1);
4473 SDValue N2 = N->getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004474 SDLoc DL(N);
Benjamin Kramerd56ffc72013-04-26 09:19:19 +00004475
4476 // Canonicalize integer abs.
4477 // vselect (setg[te] X, 0), X, -X ->
4478 // vselect (setgt X, -1), X, -X ->
4479 // vselect (setl[te] X, 0), -X, X ->
4480 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
4481 if (N0.getOpcode() == ISD::SETCC) {
4482 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
4483 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get();
4484 bool isAbs = false;
4485 bool RHSIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
4486
4487 if (((RHSIsAllZeros && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
4488 (ISD::isBuildVectorAllOnes(RHS.getNode()) && CC == ISD::SETGT)) &&
4489 N1 == LHS && N2.getOpcode() == ISD::SUB && N1 == N2.getOperand(1))
4490 isAbs = ISD::isBuildVectorAllZeros(N2.getOperand(0).getNode());
4491 else if ((RHSIsAllZeros && (CC == ISD::SETLT || CC == ISD::SETLE)) &&
4492 N2 == LHS && N1.getOpcode() == ISD::SUB && N2 == N1.getOperand(1))
4493 isAbs = ISD::isBuildVectorAllZeros(N1.getOperand(0).getNode());
4494
4495 if (isAbs) {
4496 EVT VT = LHS.getValueType();
4497 SDValue Shift = DAG.getNode(
4498 ISD::SRA, DL, VT, LHS,
4499 DAG.getConstant(VT.getScalarType().getSizeInBits() - 1, VT));
4500 SDValue Add = DAG.getNode(ISD::ADD, DL, VT, LHS, Shift);
4501 AddToWorkList(Shift.getNode());
4502 AddToWorkList(Add.getNode());
4503 return DAG.getNode(ISD::XOR, DL, VT, Add, Shift);
4504 }
4505 }
4506
Tom Stellard9cbd2c52013-11-22 00:39:23 +00004507 // If the VSELECT result requires splitting and the mask is provided by a
4508 // SETCC, then split both nodes and its operands before legalization. This
4509 // prevents the type legalizer from unrolling SETCC into scalar comparisons
4510 // and enables future optimizations (e.g. min/max pattern matching on X86).
4511 if (N0.getOpcode() == ISD::SETCC) {
4512 EVT VT = N->getValueType(0);
Juergen Ributzka34c652d2013-11-13 01:57:54 +00004513
Tom Stellard9cbd2c52013-11-22 00:39:23 +00004514 // Check if any splitting is required.
4515 if (TLI.getTypeAction(*DAG.getContext(), VT) !=
4516 TargetLowering::TypeSplitVector)
4517 return SDValue();
Juergen Ributzka34c652d2013-11-13 01:57:54 +00004518
Tom Stellard9cbd2c52013-11-22 00:39:23 +00004519 SDValue Lo, Hi, CCLo, CCHi, LL, LH, RL, RH;
4520 llvm::tie(CCLo, CCHi) = SplitVSETCC(N0.getNode(), DAG);
4521 llvm::tie(LL, LH) = DAG.SplitVectorOperand(N, 1);
4522 llvm::tie(RL, RH) = DAG.SplitVectorOperand(N, 2);
Juergen Ributzka34c652d2013-11-13 01:57:54 +00004523
Tom Stellard9cbd2c52013-11-22 00:39:23 +00004524 Lo = DAG.getNode(N->getOpcode(), DL, LL.getValueType(), CCLo, LL, RL);
4525 Hi = DAG.getNode(N->getOpcode(), DL, LH.getValueType(), CCHi, LH, RH);
Juergen Ributzka34c652d2013-11-13 01:57:54 +00004526
Tom Stellard9cbd2c52013-11-22 00:39:23 +00004527 // Add the new VSELECT nodes to the work list in case they need to be split
4528 // again.
4529 AddToWorkList(Lo.getNode());
4530 AddToWorkList(Hi.getNode());
4531
4532 return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Lo, Hi);
Juergen Ributzka34c652d2013-11-13 01:57:54 +00004533 }
4534
Andrea Di Biagio23df4e42014-01-08 18:33:04 +00004535 // Fold (vselect (build_vector all_ones), N1, N2) -> N1
4536 if (ISD::isBuildVectorAllOnes(N0.getNode()))
4537 return N1;
4538 // Fold (vselect (build_vector all_zeros), N1, N2) -> N2
4539 if (ISD::isBuildVectorAllZeros(N0.getNode()))
4540 return N2;
4541
Benjamin Kramerd56ffc72013-04-26 09:19:19 +00004542 return SDValue();
4543}
4544
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004545SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4546 SDValue N0 = N->getOperand(0);
4547 SDValue N1 = N->getOperand(1);
4548 SDValue N2 = N->getOperand(2);
4549 SDValue N3 = N->getOperand(3);
4550 SDValue N4 = N->getOperand(4);
Nate Begemanc760f802005-09-19 22:34:01 +00004551 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004552
Nate Begemanc760f802005-09-19 22:34:01 +00004553 // fold select_cc lhs, rhs, x, x, cc -> x
4554 if (N2 == N3)
4555 return N2;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004556
Chris Lattner8b68dec2006-09-20 06:19:26 +00004557 // Determine if the condition we're dealing with is constant
Matt Arsenault758659232013-05-18 00:21:46 +00004558 SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()),
Andrew Trickef9de2a2013-05-25 02:42:55 +00004559 N0, N1, CC, SDLoc(N), false);
Stephen Lin605207f2013-06-15 04:03:33 +00004560 if (SCC.getNode()) {
4561 AddToWorkList(SCC.getNode());
Chris Lattner8b68dec2006-09-20 06:19:26 +00004562
Stephen Lin605207f2013-06-15 04:03:33 +00004563 if (ConstantSDNode *SCCC = dyn_cast<ConstantSDNode>(SCC.getNode())) {
4564 if (!SCCC->isNullValue())
4565 return N2; // cond always true -> true val
4566 else
4567 return N3; // cond always false -> false val
4568 }
4569
4570 // Fold to a simpler select_cc
4571 if (SCC.getOpcode() == ISD::SETCC)
4572 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), N2.getValueType(),
4573 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
4574 SCC.getOperand(2));
Chris Lattner8b68dec2006-09-20 06:19:26 +00004575 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004576
Chris Lattner6c14c352005-10-18 06:04:22 +00004577 // If we can fold this based on the true/false value, do so.
4578 if (SimplifySelectOps(N, N2, N3))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004579 return SDValue(N, 0); // Don't revisit N.
Scott Michelcf0da6c2009-02-17 22:15:04 +00004580
Nate Begemanc760f802005-09-19 22:34:01 +00004581 // fold select_cc into other things, such as min/max/abs
Andrew Trickef9de2a2013-05-25 02:42:55 +00004582 return SimplifySelectCC(SDLoc(N), N0, N1, N2, N3, CC);
Nate Begeman24a7eca2005-09-16 00:54:12 +00004583}
4584
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004585SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman24a7eca2005-09-16 00:54:12 +00004586 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenf1163e92009-02-03 00:47:48 +00004587 cast<CondCodeSDNode>(N->getOperand(2))->get(),
Andrew Trickef9de2a2013-05-25 02:42:55 +00004588 SDLoc(N));
Nate Begeman24a7eca2005-09-16 00:54:12 +00004589}
4590
Andrea Di Biagiof09a3572014-01-27 18:45:30 +00004591// tryToFoldExtendOfConstant - Try to fold a sext/zext/aext
4592// dag node into a ConstantSDNode or a build_vector of constants.
4593// This function is called by the DAGCombiner when visiting sext/zext/aext
4594// dag nodes (see for example method DAGCombiner::visitSIGN_EXTEND).
4595// Vector extends are not folded if operations are legal; this is to
4596// avoid introducing illegal build_vector dag nodes.
Andrea Di Biagiob6d39af2014-01-28 12:53:56 +00004597static SDNode *tryToFoldExtendOfConstant(SDNode *N, const TargetLowering &TLI,
4598 SelectionDAG &DAG, bool LegalTypes,
Andrea Di Biagiof09a3572014-01-27 18:45:30 +00004599 bool LegalOperations) {
4600 unsigned Opcode = N->getOpcode();
4601 SDValue N0 = N->getOperand(0);
4602 EVT VT = N->getValueType(0);
4603
4604 assert((Opcode == ISD::SIGN_EXTEND || Opcode == ISD::ZERO_EXTEND ||
4605 Opcode == ISD::ANY_EXTEND) && "Expected EXTEND dag node in input!");
4606
4607 // fold (sext c1) -> c1
4608 // fold (zext c1) -> c1
4609 // fold (aext c1) -> c1
4610 if (isa<ConstantSDNode>(N0))
4611 return DAG.getNode(Opcode, SDLoc(N), VT, N0).getNode();
4612
4613 // fold (sext (build_vector AllConstants) -> (build_vector AllConstants)
4614 // fold (zext (build_vector AllConstants) -> (build_vector AllConstants)
4615 // fold (aext (build_vector AllConstants) -> (build_vector AllConstants)
Andrea Di Biagiob6d39af2014-01-28 12:53:56 +00004616 EVT SVT = VT.getScalarType();
4617 if (!(VT.isVector() &&
4618 (!LegalTypes || (!LegalOperations && TLI.isTypeLegal(SVT))) &&
Andrea Di Biagiof09a3572014-01-27 18:45:30 +00004619 ISD::isBuildVectorOfConstantSDNodes(N0.getNode())))
4620 return 0;
4621
4622 // We can fold this node into a build_vector.
Andrea Di Biagiob6d39af2014-01-28 12:53:56 +00004623 unsigned VTBits = SVT.getSizeInBits();
Andrea Di Biagiof09a3572014-01-27 18:45:30 +00004624 unsigned EVTBits = N0->getValueType(0).getScalarType().getSizeInBits();
4625 unsigned ShAmt = VTBits - EVTBits;
4626 SmallVector<SDValue, 8> Elts;
4627 unsigned NumElts = N0->getNumOperands();
4628 SDLoc DL(N);
4629
4630 for (unsigned i=0; i != NumElts; ++i) {
4631 SDValue Op = N0->getOperand(i);
4632 if (Op->getOpcode() == ISD::UNDEF) {
Andrea Di Biagiob6d39af2014-01-28 12:53:56 +00004633 Elts.push_back(DAG.getUNDEF(SVT));
Andrea Di Biagiof09a3572014-01-27 18:45:30 +00004634 continue;
4635 }
4636
4637 ConstantSDNode *CurrentND = cast<ConstantSDNode>(Op);
4638 const APInt &C = APInt(VTBits, CurrentND->getAPIntValue().getZExtValue());
4639 if (Opcode == ISD::SIGN_EXTEND)
4640 Elts.push_back(DAG.getConstant(C.shl(ShAmt).ashr(ShAmt).getZExtValue(),
Andrea Di Biagiob6d39af2014-01-28 12:53:56 +00004641 SVT));
Andrea Di Biagiof09a3572014-01-27 18:45:30 +00004642 else
4643 Elts.push_back(DAG.getConstant(C.shl(ShAmt).lshr(ShAmt).getZExtValue(),
Andrea Di Biagiob6d39af2014-01-28 12:53:56 +00004644 SVT));
Andrea Di Biagiof09a3572014-01-27 18:45:30 +00004645 }
4646
4647 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT, &Elts[0], NumElts).getNode();
4648}
4649
Evan Chenge106e2f2007-10-29 19:58:20 +00004650// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman0e8d1992009-04-09 03:51:29 +00004651// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Chenge106e2f2007-10-29 19:58:20 +00004652// transformation. Returns true if extension are possible and the above
Scott Michelcf0da6c2009-02-17 22:15:04 +00004653// mentioned transformation is profitable.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004654static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Chenge106e2f2007-10-29 19:58:20 +00004655 unsigned ExtOpc,
Craig Topperb94011f2013-07-14 04:42:23 +00004656 SmallVectorImpl<SDNode *> &ExtendNodes,
Dan Gohman619ef482009-01-15 19:20:50 +00004657 const TargetLowering &TLI) {
Evan Chenge106e2f2007-10-29 19:58:20 +00004658 bool HasCopyToRegUses = false;
4659 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greife12264b2008-08-30 19:29:20 +00004660 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4661 UE = N0.getNode()->use_end();
Evan Chenge106e2f2007-10-29 19:58:20 +00004662 UI != UE; ++UI) {
Dan Gohman91e5dcb2008-07-27 20:43:25 +00004663 SDNode *User = *UI;
Evan Chenge106e2f2007-10-29 19:58:20 +00004664 if (User == N)
4665 continue;
Dan Gohman0e8d1992009-04-09 03:51:29 +00004666 if (UI.getUse().getResNo() != N0.getResNo())
4667 continue;
Evan Chenge106e2f2007-10-29 19:58:20 +00004668 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman0e8d1992009-04-09 03:51:29 +00004669 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Chenge106e2f2007-10-29 19:58:20 +00004670 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4671 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4672 // Sign bits will be lost after a zext.
4673 return false;
4674 bool Add = false;
4675 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004676 SDValue UseOp = User->getOperand(i);
Evan Chenge106e2f2007-10-29 19:58:20 +00004677 if (UseOp == N0)
4678 continue;
4679 if (!isa<ConstantSDNode>(UseOp))
4680 return false;
4681 Add = true;
4682 }
4683 if (Add)
4684 ExtendNodes.push_back(User);
Dan Gohman0e8d1992009-04-09 03:51:29 +00004685 continue;
Evan Chenge106e2f2007-10-29 19:58:20 +00004686 }
Dan Gohman0e8d1992009-04-09 03:51:29 +00004687 // If truncates aren't free and there are users we can't
4688 // extend, it isn't worthwhile.
4689 if (!isTruncFree)
4690 return false;
4691 // Remember if this value is live-out.
4692 if (User->getOpcode() == ISD::CopyToReg)
4693 HasCopyToRegUses = true;
Evan Chenge106e2f2007-10-29 19:58:20 +00004694 }
4695
4696 if (HasCopyToRegUses) {
4697 bool BothLiveOut = false;
4698 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4699 UI != UE; ++UI) {
Dan Gohman0e8d1992009-04-09 03:51:29 +00004700 SDUse &Use = UI.getUse();
4701 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4702 BothLiveOut = true;
4703 break;
Evan Chenge106e2f2007-10-29 19:58:20 +00004704 }
4705 }
4706 if (BothLiveOut)
4707 // Both unextended and extended values are live out. There had better be
Bob Wilsonf9b96c42010-11-28 06:51:19 +00004708 // a good reason for the transformation.
Evan Chenge106e2f2007-10-29 19:58:20 +00004709 return ExtendNodes.size();
4710 }
4711 return true;
4712}
4713
Craig Toppere0b71182013-07-13 07:43:40 +00004714void DAGCombiner::ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004715 SDValue Trunc, SDValue ExtLoad, SDLoc DL,
Nick Lewycky6d677cf2011-06-16 01:15:49 +00004716 ISD::NodeType ExtType) {
4717 // Extend SetCC uses if necessary.
4718 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4719 SDNode *SetCC = SetCCs[i];
4720 SmallVector<SDValue, 4> Ops;
4721
4722 for (unsigned j = 0; j != 2; ++j) {
4723 SDValue SOp = SetCC->getOperand(j);
4724 if (SOp == Trunc)
4725 Ops.push_back(ExtLoad);
4726 else
4727 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4728 }
4729
4730 Ops.push_back(SetCC->getOperand(2));
4731 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4732 &Ops[0], Ops.size()));
4733 }
4734}
4735
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004736SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4737 SDValue N0 = N->getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00004738 EVT VT = N->getValueType(0);
Nate Begeman21158fc2005-09-01 00:19:25 +00004739
Andrea Di Biagiob6d39af2014-01-28 12:53:56 +00004740 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes,
4741 LegalOperations))
Andrea Di Biagiof09a3572014-01-27 18:45:30 +00004742 return SDValue(Res, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004743
Nadav Rotem9450fcf2013-01-20 08:35:56 +00004744 // fold (sext (sext x)) -> (sext x)
4745 // fold (sext (aext x)) -> (sext x)
4746 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Andrew Trickef9de2a2013-05-25 02:42:55 +00004747 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT,
Nadav Rotem9450fcf2013-01-20 08:35:56 +00004748 N0.getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00004749
Chris Lattnerfce448f2007-02-26 03:13:59 +00004750 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohmanc1a4e212008-05-20 20:56:33 +00004751 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4752 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greiff304a7a2008-08-28 21:40:38 +00004753 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4754 if (NarrowLoad.getNode()) {
Dale Johannesenff384ad2010-05-25 17:50:03 +00004755 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4756 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00004757 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesenff384ad2010-05-25 17:50:03 +00004758 // CombineTo deleted the truncate, if needed, but not what's under it.
4759 AddToWorkList(oye);
4760 }
Dan Gohmanbe36f5c2009-04-27 02:00:55 +00004761 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Chenga824e792007-03-23 02:16:52 +00004762 }
Evan Cheng464dc9b2007-03-22 01:54:19 +00004763
Dan Gohmanc1a4e212008-05-20 20:56:33 +00004764 // See if the value being truncated is already sign extended. If so, just
4765 // eliminate the trunc/sext pair.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004766 SDValue Op = N0.getOperand(0);
Dan Gohman6bd3ef82010-01-09 02:13:55 +00004767 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4768 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4769 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00004770 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004771
Chris Lattnerfce448f2007-02-26 03:13:59 +00004772 if (OpBits == DestBits) {
4773 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4774 // bits, it is already ready.
4775 if (NumSignBits > DestBits-MidBits)
4776 return Op;
4777 } else if (OpBits < DestBits) {
4778 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4779 // bits, just sext from i32.
4780 if (NumSignBits > OpBits-MidBits)
Andrew Trickef9de2a2013-05-25 02:42:55 +00004781 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, Op);
Chris Lattnerfce448f2007-02-26 03:13:59 +00004782 } else {
4783 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4784 // bits, just truncate to i32.
4785 if (NumSignBits > OpBits-MidBits)
Andrew Trickef9de2a2013-05-25 02:42:55 +00004786 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
Chris Lattnera31f0a62006-09-21 06:00:20 +00004787 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004788
Chris Lattnerfce448f2007-02-26 03:13:59 +00004789 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sandsdc2dac12008-11-24 14:53:14 +00004790 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4791 N0.getValueType())) {
Dan Gohman6bd3ef82010-01-09 02:13:55 +00004792 if (OpBits < DestBits)
Andrew Trickef9de2a2013-05-25 02:42:55 +00004793 Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N0), VT, Op);
Dan Gohman6bd3ef82010-01-09 02:13:55 +00004794 else if (OpBits > DestBits)
Andrew Trickef9de2a2013-05-25 02:42:55 +00004795 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), VT, Op);
4796 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, Op,
Dan Gohman6bd3ef82010-01-09 02:13:55 +00004797 DAG.getValueType(N0.getValueType()));
Chris Lattnerfce448f2007-02-26 03:13:59 +00004798 }
Chris Lattnera31f0a62006-09-21 06:00:20 +00004799 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004800
Evan Chengbce7c472005-12-14 02:19:23 +00004801 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem502f1b92011-02-24 21:01:34 +00004802 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemb0091302011-02-27 07:40:43 +00004803 // on vectors in one instruction. We only perform this transformation on
4804 // scalars.
Nadav Rotem502f1b92011-02-24 21:01:34 +00004805 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00004806 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng07d53b12008-10-14 21:26:46 +00004807 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Chenge106e2f2007-10-29 19:58:20 +00004808 bool DoXform = true;
4809 SmallVector<SDNode*, 4> SetCCs;
4810 if (!N0.hasOneUse())
4811 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4812 if (DoXform) {
4813 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004814 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Dan Gohman0e8d1992009-04-09 03:51:29 +00004815 LN0->getChain(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00004816 LN0->getBasePtr(), N0.getValueType(),
4817 LN0->getMemOperand());
Evan Chenge106e2f2007-10-29 19:58:20 +00004818 CombineTo(N, ExtLoad);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004819 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendlingc4093182009-01-30 22:23:15 +00004820 N0.getValueType(), ExtLoad);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004821 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickef9de2a2013-05-25 02:42:55 +00004822 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewycky6d677cf2011-06-16 01:15:49 +00004823 ISD::SIGN_EXTEND);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004824 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Chenge106e2f2007-10-29 19:58:20 +00004825 }
Nate Begeman8caf81d2005-10-12 20:40:40 +00004826 }
Chris Lattner7dac1082005-12-14 19:05:06 +00004827
4828 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4829 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greiff304a7a2008-08-28 21:40:38 +00004830 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4831 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Chenge71fe34d2006-10-09 20:57:25 +00004832 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman08c0a952009-09-23 21:02:20 +00004833 EVT MemVT = LN0->getMemoryVT();
Duncan Sandsdc2dac12008-11-24 14:53:14 +00004834 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman08c0a952009-09-23 21:02:20 +00004835 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004836 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Bill Wendlingc4093182009-01-30 22:23:15 +00004837 LN0->getChain(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00004838 LN0->getBasePtr(), MemVT,
4839 LN0->getMemOperand());
Jim Laskey26df19a2006-12-15 21:38:30 +00004840 CombineTo(N, ExtLoad);
Gabor Greife12264b2008-08-30 19:29:20 +00004841 CombineTo(N0.getNode(),
Andrew Trickef9de2a2013-05-25 02:42:55 +00004842 DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendlingc4093182009-01-30 22:23:15 +00004843 N0.getValueType(), ExtLoad),
Jim Laskey26df19a2006-12-15 21:38:30 +00004844 ExtLoad.getValue(1));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004845 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskey26df19a2006-12-15 21:38:30 +00004846 }
Chris Lattner7dac1082005-12-14 19:05:06 +00004847 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004848
Nick Lewycky6d677cf2011-06-16 01:15:49 +00004849 // fold (sext (and/or/xor (load x), cst)) ->
4850 // (and/or/xor (sextload x), (sext cst))
4851 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4852 N0.getOpcode() == ISD::XOR) &&
4853 isa<LoadSDNode>(N0.getOperand(0)) &&
4854 N0.getOperand(1).getOpcode() == ISD::Constant &&
4855 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4856 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4857 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4858 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4859 bool DoXform = true;
4860 SmallVector<SDNode*, 4> SetCCs;
4861 if (!N0.hasOneUse())
4862 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4863 SetCCs, TLI);
4864 if (DoXform) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004865 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(LN0), VT,
Nick Lewycky6d677cf2011-06-16 01:15:49 +00004866 LN0->getChain(), LN0->getBasePtr(),
Nick Lewycky6d677cf2011-06-16 01:15:49 +00004867 LN0->getMemoryVT(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00004868 LN0->getMemOperand());
Nick Lewycky6d677cf2011-06-16 01:15:49 +00004869 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4870 Mask = Mask.sext(VT.getSizeInBits());
Andrew Trickef9de2a2013-05-25 02:42:55 +00004871 SDValue And = DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Nick Lewycky6d677cf2011-06-16 01:15:49 +00004872 ExtLoad, DAG.getConstant(Mask, VT));
4873 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004874 SDLoc(N0.getOperand(0)),
Nick Lewycky6d677cf2011-06-16 01:15:49 +00004875 N0.getOperand(0).getValueType(), ExtLoad);
4876 CombineTo(N, And);
4877 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickef9de2a2013-05-25 02:42:55 +00004878 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewycky6d677cf2011-06-16 01:15:49 +00004879 ISD::SIGN_EXTEND);
4880 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4881 }
4882 }
4883 }
4884
Chris Lattner65786b02007-04-11 05:32:27 +00004885 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner4ac60732009-07-08 00:31:33 +00004886 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohmane82c25e2010-04-30 17:19:19 +00004887 // Only do this before legalize for now.
Owen Anderson2d4cca32013-04-23 18:09:28 +00004888 if (VT.isVector() && !LegalOperations &&
Stephen Lincfe7f352013-07-08 00:37:03 +00004889 TLI.getBooleanContents(true) ==
Owen Anderson2d4cca32013-04-23 18:09:28 +00004890 TargetLowering::ZeroOrNegativeOneBooleanContent) {
Dan Gohmane82c25e2010-04-30 17:19:19 +00004891 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem9d376b62012-04-11 08:26:11 +00004892 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4893 // of the same size as the compared operands. Only optimize sext(setcc())
4894 // if this is the case.
Matt Arsenault758659232013-05-18 00:21:46 +00004895 EVT SVT = getSetCCResultType(N0VT);
Nadav Rotem9d376b62012-04-11 08:26:11 +00004896
4897 // We know that the # elements of the results is the same as the
4898 // # elements of the compare (and the # elements of the compare result
4899 // for that matter). Check to see that they are the same size. If so,
4900 // we know that the element size of the sext'd result matches the
4901 // element size of the compare operands.
4902 if (VT.getSizeInBits() == SVT.getSizeInBits())
Andrew Trickef9de2a2013-05-25 02:42:55 +00004903 return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
Duncan Sands41b4a6b2010-07-12 08:16:59 +00004904 N0.getOperand(1),
4905 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Matt Arsenault04126232013-05-17 21:43:43 +00004906
Dan Gohmane82c25e2010-04-30 17:19:19 +00004907 // If the desired elements are smaller or larger than the source
4908 // elements we can use a matching integer vector type and then
4909 // truncate/sign extend
Matt Arsenault04126232013-05-17 21:43:43 +00004910 EVT MatchingVectorType = N0VT.changeVectorElementTypeToInteger();
Craig Topper5f9791f2012-09-29 07:18:53 +00004911 if (SVT == MatchingVectorType) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004912 SDValue VsetCC = DAG.getSetCC(SDLoc(N), MatchingVectorType,
Craig Topper5f9791f2012-09-29 07:18:53 +00004913 N0.getOperand(0), N0.getOperand(1),
4914 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Andrew Trickef9de2a2013-05-25 02:42:55 +00004915 return DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT);
Dan Gohmane82c25e2010-04-30 17:19:19 +00004916 }
Chris Lattner4ac60732009-07-08 00:31:33 +00004917 }
Dan Gohmane82c25e2010-04-30 17:19:19 +00004918
Matt Arsenault5f2a92a2014-01-27 21:41:54 +00004919 // sext(setcc x, y, cc) -> (select (setcc x, y, cc), -1, 0)
Dan Gohman5544b0c2010-04-24 01:17:30 +00004920 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5758e1e2009-08-06 09:18:59 +00004921 SDValue NegOne =
Dan Gohman5544b0c2010-04-24 01:17:30 +00004922 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004923 SDValue SCC =
Andrew Trickef9de2a2013-05-25 02:42:55 +00004924 SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5758e1e2009-08-06 09:18:59 +00004925 NegOne, DAG.getConstant(0, VT),
Chris Lattnera083ffc2007-04-11 06:50:51 +00004926 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004927 if (SCC.getNode()) return SCC;
Matt Arsenault5f2a92a2014-01-27 21:41:54 +00004928
4929 if (!VT.isVector()) {
4930 EVT SetCCVT = getSetCCResultType(N0.getOperand(0).getValueType());
4931 if (!LegalOperations || TLI.isOperationLegal(ISD::SETCC, SetCCVT)) {
4932 SDLoc DL(N);
4933 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get();
4934 SDValue SetCC = DAG.getSetCC(DL,
4935 SetCCVT,
4936 N0.getOperand(0), N0.getOperand(1), CC);
4937 EVT SelectVT = getSetCCResultType(VT);
4938 return DAG.getSelect(DL, VT,
4939 DAG.getSExtOrTrunc(SetCC, DL, SelectVT),
4940 NegOne, DAG.getConstant(0, VT));
4941
4942 }
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004943 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004944 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004945
Dan Gohman3eb10f72008-04-28 16:58:24 +00004946 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sandsdc2dac12008-11-24 14:53:14 +00004947 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohmanc968c1f2008-04-28 18:47:17 +00004948 DAG.SignBitIsZero(N0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00004949 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, N0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004950
Evan Chengf1005572010-04-28 07:10:39 +00004951 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00004952}
4953
Rafael Espindola8f62b322012-04-09 16:06:03 +00004954// isTruncateOf - If N is a truncate of some other value, return true, record
4955// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4956// This function computes KnownZero to avoid a duplicated call to
4957// ComputeMaskedBits in the caller.
4958static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4959 APInt &KnownZero) {
4960 APInt KnownOne;
4961 if (N->getOpcode() == ISD::TRUNCATE) {
4962 Op = N->getOperand(0);
4963 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4964 return true;
4965 }
4966
4967 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4968 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4969 return false;
4970
4971 SDValue Op0 = N->getOperand(0);
4972 SDValue Op1 = N->getOperand(1);
4973 assert(Op0.getValueType() == Op1.getValueType());
4974
4975 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4976 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindola1d9672b2012-04-10 00:16:22 +00004977 if (COp0 && COp0->isNullValue())
Rafael Espindola8f62b322012-04-09 16:06:03 +00004978 Op = Op1;
Rafael Espindola1d9672b2012-04-10 00:16:22 +00004979 else if (COp1 && COp1->isNullValue())
Rafael Espindola8f62b322012-04-09 16:06:03 +00004980 Op = Op0;
4981 else
4982 return false;
4983
4984 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4985
4986 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4987 return false;
4988
4989 return true;
4990}
4991
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004992SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4993 SDValue N0 = N->getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00004994 EVT VT = N->getValueType(0);
Nate Begeman21158fc2005-09-01 00:19:25 +00004995
Andrea Di Biagiob6d39af2014-01-28 12:53:56 +00004996 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes,
4997 LegalOperations))
Andrea Di Biagiof09a3572014-01-27 18:45:30 +00004998 return SDValue(Res, 0);
4999
Nate Begeman21158fc2005-09-01 00:19:25 +00005000 // fold (zext (zext x)) -> (zext x)
Chris Lattner7e7bcf32006-05-06 23:06:26 +00005001 // fold (zext (aext x)) -> (zext x)
5002 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Andrew Trickef9de2a2013-05-25 02:42:55 +00005003 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT,
Bill Wendlingc4093182009-01-30 22:23:15 +00005004 N0.getOperand(0));
Chris Lattnera31f0a62006-09-21 06:00:20 +00005005
Chandler Carruth55b2cde2012-01-11 08:41:08 +00005006 // fold (zext (truncate x)) -> (zext x) or
5007 // (zext (truncate x)) -> (truncate x)
5008 // This is valid when the truncated bits of x are already zero.
5009 // FIXME: We should extend this to work for vectors too.
Rafael Espindola8f62b322012-04-09 16:06:03 +00005010 SDValue Op;
5011 APInt KnownZero;
5012 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
5013 APInt TruncatedBits =
5014 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
5015 APInt(Op.getValueSizeInBits(), 0) :
5016 APInt::getBitsSet(Op.getValueSizeInBits(),
5017 N0.getValueSizeInBits(),
5018 std::min(Op.getValueSizeInBits(),
5019 VT.getSizeInBits()));
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00005020 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruth55b2cde2012-01-11 08:41:08 +00005021 if (VT.bitsGT(Op.getValueType()))
Andrew Trickef9de2a2013-05-25 02:42:55 +00005022 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, Op);
Chandler Carruth55b2cde2012-01-11 08:41:08 +00005023 if (VT.bitsLT(Op.getValueType()))
Andrew Trickef9de2a2013-05-25 02:42:55 +00005024 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
Chandler Carruth55b2cde2012-01-11 08:41:08 +00005025
5026 return Op;
5027 }
5028 }
5029
Evan Cheng464dc9b2007-03-22 01:54:19 +00005030 // fold (zext (truncate (load x))) -> (zext (smaller load x))
5031 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +00005032 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00005033 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
5034 if (NarrowLoad.getNode()) {
Dale Johannesenff384ad2010-05-25 17:50:03 +00005035 SDNode* oye = N0.getNode()->getOperand(0).getNode();
5036 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00005037 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesenff384ad2010-05-25 17:50:03 +00005038 // CombineTo deleted the truncate, if needed, but not what's under it.
5039 AddToWorkList(oye);
5040 }
Eli Friedman55b0acd2011-04-16 23:25:34 +00005041 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Chenga824e792007-03-23 02:16:52 +00005042 }
Evan Cheng464dc9b2007-03-22 01:54:19 +00005043 }
5044
Chris Lattnera31f0a62006-09-21 06:00:20 +00005045 // fold (zext (truncate x)) -> (and x, mask)
5046 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman600f62b2010-06-24 14:30:44 +00005047 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman68fb0042010-11-03 01:47:46 +00005048
5049 // fold (zext (truncate (load x))) -> (zext (smaller load x))
5050 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
5051 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
5052 if (NarrowLoad.getNode()) {
5053 SDNode* oye = N0.getNode()->getOperand(0).getNode();
5054 if (NarrowLoad.getNode() != N0.getNode()) {
5055 CombineTo(N0.getNode(), NarrowLoad);
5056 // CombineTo deleted the truncate, if needed, but not what's under it.
5057 AddToWorkList(oye);
5058 }
5059 return SDValue(N, 0); // Return N so it doesn't get rechecked!
5060 }
5061
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005062 SDValue Op = N0.getOperand(0);
Duncan Sands11dd4242008-06-08 20:54:56 +00005063 if (Op.getValueType().bitsLT(VT)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005064 Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, Op);
Elena Demikhovsky8d7e56c2012-04-22 09:39:03 +00005065 AddToWorkList(Op.getNode());
Duncan Sands11dd4242008-06-08 20:54:56 +00005066 } else if (Op.getValueType().bitsGT(VT)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005067 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
Elena Demikhovsky8d7e56c2012-04-22 09:39:03 +00005068 AddToWorkList(Op.getNode());
Chris Lattnera31f0a62006-09-21 06:00:20 +00005069 }
Andrew Trickef9de2a2013-05-25 02:42:55 +00005070 return DAG.getZeroExtendInReg(Op, SDLoc(N),
Dan Gohman1d459e42009-12-11 21:31:27 +00005071 N0.getValueType().getScalarType());
Chris Lattnera31f0a62006-09-21 06:00:20 +00005072 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005073
Dan Gohmanad3e5492009-04-08 00:15:30 +00005074 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
5075 // if either of the casts is not free.
Chris Lattner8d8a3bf2006-09-21 06:14:31 +00005076 if (N0.getOpcode() == ISD::AND &&
5077 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohmanad3e5492009-04-08 00:15:30 +00005078 N0.getOperand(1).getOpcode() == ISD::Constant &&
5079 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
5080 N0.getValueType()) ||
5081 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005082 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands11dd4242008-06-08 20:54:56 +00005083 if (X.getValueType().bitsLT(VT)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005084 X = DAG.getNode(ISD::ANY_EXTEND, SDLoc(X), VT, X);
Duncan Sands11dd4242008-06-08 20:54:56 +00005085 } else if (X.getValueType().bitsGT(VT)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005086 X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X);
Chris Lattner8d8a3bf2006-09-21 06:14:31 +00005087 }
Dan Gohmane1c4f992008-03-03 23:51:38 +00005088 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad583abbc2010-12-07 08:25:19 +00005089 Mask = Mask.zext(VT.getSizeInBits());
Andrew Trickef9de2a2013-05-25 02:42:55 +00005090 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Bill Wendlingc4093182009-01-30 22:23:15 +00005091 X, DAG.getConstant(Mask, VT));
Chris Lattner8d8a3bf2006-09-21 06:14:31 +00005092 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005093
Evan Chengbce7c472005-12-14 02:19:23 +00005094 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotem25f2ac92011-02-20 12:37:50 +00005095 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemb0091302011-02-27 07:40:43 +00005096 // on vectors in one instruction. We only perform this transformation on
5097 // scalars.
Nadav Rotem25f2ac92011-02-20 12:37:50 +00005098 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00005099 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng07d53b12008-10-14 21:26:46 +00005100 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Chenge106e2f2007-10-29 19:58:20 +00005101 bool DoXform = true;
5102 SmallVector<SDNode*, 4> SetCCs;
5103 if (!N0.hasOneUse())
5104 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
5105 if (DoXform) {
5106 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005107 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT,
Bill Wendlingc4093182009-01-30 22:23:15 +00005108 LN0->getChain(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00005109 LN0->getBasePtr(), N0.getValueType(),
5110 LN0->getMemOperand());
Evan Chenge106e2f2007-10-29 19:58:20 +00005111 CombineTo(N, ExtLoad);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005112 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendlingc4093182009-01-30 22:23:15 +00005113 N0.getValueType(), ExtLoad);
Gabor Greiff304a7a2008-08-28 21:40:38 +00005114 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendlingc4093182009-01-30 22:23:15 +00005115
Andrew Trickef9de2a2013-05-25 02:42:55 +00005116 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewycky6d677cf2011-06-16 01:15:49 +00005117 ISD::ZERO_EXTEND);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005118 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Chenge106e2f2007-10-29 19:58:20 +00005119 }
Evan Chengbce7c472005-12-14 02:19:23 +00005120 }
Chris Lattner7dac1082005-12-14 19:05:06 +00005121
Nick Lewycky6d677cf2011-06-16 01:15:49 +00005122 // fold (zext (and/or/xor (load x), cst)) ->
5123 // (and/or/xor (zextload x), (zext cst))
5124 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
5125 N0.getOpcode() == ISD::XOR) &&
5126 isa<LoadSDNode>(N0.getOperand(0)) &&
5127 N0.getOperand(1).getOpcode() == ISD::Constant &&
5128 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
5129 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
5130 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
5131 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
5132 bool DoXform = true;
5133 SmallVector<SDNode*, 4> SetCCs;
5134 if (!N0.hasOneUse())
5135 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
5136 SetCCs, TLI);
5137 if (DoXform) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005138 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), VT,
Nick Lewycky6d677cf2011-06-16 01:15:49 +00005139 LN0->getChain(), LN0->getBasePtr(),
Nick Lewycky6d677cf2011-06-16 01:15:49 +00005140 LN0->getMemoryVT(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00005141 LN0->getMemOperand());
Nick Lewycky6d677cf2011-06-16 01:15:49 +00005142 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
5143 Mask = Mask.zext(VT.getSizeInBits());
Andrew Trickef9de2a2013-05-25 02:42:55 +00005144 SDValue And = DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Nick Lewycky6d677cf2011-06-16 01:15:49 +00005145 ExtLoad, DAG.getConstant(Mask, VT));
5146 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005147 SDLoc(N0.getOperand(0)),
Nick Lewycky6d677cf2011-06-16 01:15:49 +00005148 N0.getOperand(0).getValueType(), ExtLoad);
5149 CombineTo(N, And);
5150 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickef9de2a2013-05-25 02:42:55 +00005151 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewycky6d677cf2011-06-16 01:15:49 +00005152 ISD::ZERO_EXTEND);
5153 return SDValue(N, 0); // Return N so it doesn't get rechecked!
5154 }
5155 }
5156 }
5157
Chris Lattner7dac1082005-12-14 19:05:06 +00005158 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
5159 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greiff304a7a2008-08-28 21:40:38 +00005160 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
5161 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Chenge71fe34d2006-10-09 20:57:25 +00005162 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman08c0a952009-09-23 21:02:20 +00005163 EVT MemVT = LN0->getMemoryVT();
Duncan Sandsdc2dac12008-11-24 14:53:14 +00005164 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman08c0a952009-09-23 21:02:20 +00005165 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005166 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT,
Bill Wendlingc4093182009-01-30 22:23:15 +00005167 LN0->getChain(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00005168 LN0->getBasePtr(), MemVT,
5169 LN0->getMemOperand());
Duncan Sands8651e9c2008-06-13 19:07:40 +00005170 CombineTo(N, ExtLoad);
Gabor Greife12264b2008-08-30 19:29:20 +00005171 CombineTo(N0.getNode(),
Andrew Trickef9de2a2013-05-25 02:42:55 +00005172 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), N0.getValueType(),
Bill Wendlingc4093182009-01-30 22:23:15 +00005173 ExtLoad),
Duncan Sands8651e9c2008-06-13 19:07:40 +00005174 ExtLoad.getValue(1));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005175 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sands8651e9c2008-06-13 19:07:40 +00005176 }
Chris Lattner7dac1082005-12-14 19:05:06 +00005177 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005178
Chris Lattner65786b02007-04-11 05:32:27 +00005179 if (N0.getOpcode() == ISD::SETCC) {
Kevin Qinede9ce12013-12-30 02:05:13 +00005180 if (!LegalOperations && VT.isVector() &&
5181 N0.getValueType().getVectorElementType() == MVT::i1) {
Elena Demikhovsky9d56f1e2014-01-22 12:26:19 +00005182 EVT N0VT = N0.getOperand(0).getValueType();
5183 if (getSetCCResultType(N0VT) == N0.getValueType())
5184 return SDValue();
5185
Evan Chengabd0ad52010-05-19 01:08:17 +00005186 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
5187 // Only do this before legalize for now.
Evan Chengabd0ad52010-05-19 01:08:17 +00005188 EVT EltVT = VT.getVectorElementType();
5189 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
5190 DAG.getConstant(1, EltVT));
Dan Gohman4298df62011-05-17 22:20:36 +00005191 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Chengabd0ad52010-05-19 01:08:17 +00005192 // We know that the # elements of the results is the same as the
5193 // # elements of the compare (and the # elements of the compare result
5194 // for that matter). Check to see that they are the same size. If so,
5195 // we know that the element size of the sext'd result matches the
5196 // element size of the compare operands.
Andrew Trickef9de2a2013-05-25 02:42:55 +00005197 return DAG.getNode(ISD::AND, SDLoc(N), VT,
5198 DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
Evan Chengabd0ad52010-05-19 01:08:17 +00005199 N0.getOperand(1),
5200 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
Andrew Trickef9de2a2013-05-25 02:42:55 +00005201 DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT,
Evan Chengabd0ad52010-05-19 01:08:17 +00005202 &OneOps[0], OneOps.size()));
Dan Gohman4298df62011-05-17 22:20:36 +00005203
5204 // If the desired elements are smaller or larger than the source
5205 // elements we can use a matching integer vector type and then
5206 // truncate/sign extend
5207 EVT MatchingElementType =
5208 EVT::getIntegerVT(*DAG.getContext(),
5209 N0VT.getScalarType().getSizeInBits());
5210 EVT MatchingVectorType =
5211 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
5212 N0VT.getVectorNumElements());
5213 SDValue VsetCC =
Andrew Trickef9de2a2013-05-25 02:42:55 +00005214 DAG.getSetCC(SDLoc(N), MatchingVectorType, N0.getOperand(0),
Dan Gohman4298df62011-05-17 22:20:36 +00005215 N0.getOperand(1),
5216 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Andrew Trickef9de2a2013-05-25 02:42:55 +00005217 return DAG.getNode(ISD::AND, SDLoc(N), VT,
5218 DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT),
5219 DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT,
Dan Gohman4298df62011-05-17 22:20:36 +00005220 &OneOps[0], OneOps.size()));
Evan Chengabd0ad52010-05-19 01:08:17 +00005221 }
5222
5223 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelcf0da6c2009-02-17 22:15:04 +00005224 SDValue SCC =
Andrew Trickef9de2a2013-05-25 02:42:55 +00005225 SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
Chris Lattner65786b02007-04-11 05:32:27 +00005226 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnera083ffc2007-04-11 06:50:51 +00005227 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greiff304a7a2008-08-28 21:40:38 +00005228 if (SCC.getNode()) return SCC;
Chris Lattner65786b02007-04-11 05:32:27 +00005229 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005230
Evan Cheng852c4862009-12-15 03:00:32 +00005231 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Chengca7c6902009-12-15 00:41:36 +00005232 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng852c4862009-12-15 03:00:32 +00005233 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Chengca7c6902009-12-15 00:41:36 +00005234 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
5235 N0.hasOneUse()) {
Chris Lattnere95d1952011-02-13 19:09:16 +00005236 SDValue ShAmt = N0.getOperand(1);
5237 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng852c4862009-12-15 03:00:32 +00005238 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere95d1952011-02-13 19:09:16 +00005239 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng852c4862009-12-15 03:00:32 +00005240 // If the original shl may be shifting out bits, do not perform this
5241 // transformation.
Chris Lattnere95d1952011-02-13 19:09:16 +00005242 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
5243 InnerZExt.getOperand(0).getValueType().getSizeInBits();
5244 if (ShAmtVal > KnownZeroBits)
Evan Cheng852c4862009-12-15 03:00:32 +00005245 return SDValue();
5246 }
Chris Lattnere95d1952011-02-13 19:09:16 +00005247
Andrew Trickef9de2a2013-05-25 02:42:55 +00005248 SDLoc DL(N);
Owen Andersonb2c80da2011-02-25 21:41:48 +00005249
5250 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere95d1952011-02-13 19:09:16 +00005251 if (VT.getSizeInBits() >= 256)
5252 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Andersonb2c80da2011-02-25 21:41:48 +00005253
Chris Lattnere95d1952011-02-13 19:09:16 +00005254 return DAG.getNode(N0.getOpcode(), DL, VT,
5255 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
5256 ShAmt);
Evan Chengca7c6902009-12-15 00:41:36 +00005257 }
5258
Evan Chengf1005572010-04-28 07:10:39 +00005259 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00005260}
5261
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005262SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
5263 SDValue N0 = N->getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005264 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005265
Andrea Di Biagiob6d39af2014-01-28 12:53:56 +00005266 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes,
5267 LegalOperations))
Andrea Di Biagiof09a3572014-01-27 18:45:30 +00005268 return SDValue(Res, 0);
5269
Chris Lattner812646a2006-05-05 05:58:59 +00005270 // fold (aext (aext x)) -> (aext x)
5271 // fold (aext (zext x)) -> (zext x)
5272 // fold (aext (sext x)) -> (sext x)
5273 if (N0.getOpcode() == ISD::ANY_EXTEND ||
5274 N0.getOpcode() == ISD::ZERO_EXTEND ||
5275 N0.getOpcode() == ISD::SIGN_EXTEND)
Andrew Trickef9de2a2013-05-25 02:42:55 +00005276 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, N0.getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00005277
Evan Cheng464dc9b2007-03-22 01:54:19 +00005278 // fold (aext (truncate (load x))) -> (aext (smaller load x))
5279 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
5280 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00005281 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
5282 if (NarrowLoad.getNode()) {
Dale Johannesen60fe2cd2010-05-25 18:47:23 +00005283 SDNode* oye = N0.getNode()->getOperand(0).getNode();
5284 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00005285 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen60fe2cd2010-05-25 18:47:23 +00005286 // CombineTo deleted the truncate, if needed, but not what's under it.
5287 AddToWorkList(oye);
5288 }
Eli Friedman55b0acd2011-04-16 23:25:34 +00005289 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Chenga824e792007-03-23 02:16:52 +00005290 }
Evan Cheng464dc9b2007-03-22 01:54:19 +00005291 }
5292
Chris Lattner8746e2c2006-09-20 06:29:17 +00005293 // fold (aext (truncate x))
5294 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005295 SDValue TruncOp = N0.getOperand(0);
Chris Lattner8746e2c2006-09-20 06:29:17 +00005296 if (TruncOp.getValueType() == VT)
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00005297 return TruncOp; // x iff x size == zext size.
Duncan Sands11dd4242008-06-08 20:54:56 +00005298 if (TruncOp.getValueType().bitsGT(VT))
Andrew Trickef9de2a2013-05-25 02:42:55 +00005299 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, TruncOp);
5300 return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, TruncOp);
Chris Lattner8746e2c2006-09-20 06:29:17 +00005301 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005302
Dan Gohmanad3e5492009-04-08 00:15:30 +00005303 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
5304 // if the trunc is not free.
Chris Lattner082db3f2006-09-21 06:40:43 +00005305 if (N0.getOpcode() == ISD::AND &&
5306 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohmanad3e5492009-04-08 00:15:30 +00005307 N0.getOperand(1).getOpcode() == ISD::Constant &&
5308 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
5309 N0.getValueType())) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005310 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands11dd4242008-06-08 20:54:56 +00005311 if (X.getValueType().bitsLT(VT)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005312 X = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, X);
Duncan Sands11dd4242008-06-08 20:54:56 +00005313 } else if (X.getValueType().bitsGT(VT)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005314 X = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, X);
Chris Lattner082db3f2006-09-21 06:40:43 +00005315 }
Dan Gohmane1c4f992008-03-03 23:51:38 +00005316 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad583abbc2010-12-07 08:25:19 +00005317 Mask = Mask.zext(VT.getSizeInBits());
Andrew Trickef9de2a2013-05-25 02:42:55 +00005318 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Bill Wendling9b3dc8d2009-01-30 22:27:33 +00005319 X, DAG.getConstant(Mask, VT));
Chris Lattner082db3f2006-09-21 06:40:43 +00005320 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005321
Chris Lattner812646a2006-05-05 05:58:59 +00005322 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem502f1b92011-02-24 21:01:34 +00005323 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemb0091302011-02-27 07:40:43 +00005324 // on vectors in one instruction. We only perform this transformation on
5325 // scalars.
Nadav Rotem502f1b92011-02-24 21:01:34 +00005326 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00005327 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng07d53b12008-10-14 21:26:46 +00005328 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman0e8d1992009-04-09 03:51:29 +00005329 bool DoXform = true;
5330 SmallVector<SDNode*, 4> SetCCs;
5331 if (!N0.hasOneUse())
5332 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
5333 if (DoXform) {
5334 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005335 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT,
Dan Gohman0e8d1992009-04-09 03:51:29 +00005336 LN0->getChain(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00005337 LN0->getBasePtr(), N0.getValueType(),
5338 LN0->getMemOperand());
Dan Gohman0e8d1992009-04-09 03:51:29 +00005339 CombineTo(N, ExtLoad);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005340 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Dan Gohman0e8d1992009-04-09 03:51:29 +00005341 N0.getValueType(), ExtLoad);
5342 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Andrew Trickef9de2a2013-05-25 02:42:55 +00005343 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
Nick Lewycky6d677cf2011-06-16 01:15:49 +00005344 ISD::ANY_EXTEND);
Dan Gohman0e8d1992009-04-09 03:51:29 +00005345 return SDValue(N, 0); // Return N so it doesn't get rechecked!
5346 }
Chris Lattner812646a2006-05-05 05:58:59 +00005347 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005348
Chris Lattner812646a2006-05-05 05:58:59 +00005349 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
5350 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
5351 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng8a1d09d2007-03-07 08:07:03 +00005352 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00005353 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Chenge71fe34d2006-10-09 20:57:25 +00005354 N0.hasOneUse()) {
5355 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman08c0a952009-09-23 21:02:20 +00005356 EVT MemVT = LN0->getMemoryVT();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005357 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), SDLoc(N),
Stuart Hastings81c43062011-02-16 16:23:55 +00005358 VT, LN0->getChain(), LN0->getBasePtr(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00005359 MemVT, LN0->getMemOperand());
Chris Lattner812646a2006-05-05 05:58:59 +00005360 CombineTo(N, ExtLoad);
Evan Cheng894be332008-08-29 23:20:46 +00005361 CombineTo(N0.getNode(),
Andrew Trickef9de2a2013-05-25 02:42:55 +00005362 DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
Bill Wendling9b3dc8d2009-01-30 22:27:33 +00005363 N0.getValueType(), ExtLoad),
Chris Lattner812646a2006-05-05 05:58:59 +00005364 ExtLoad.getValue(1));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005365 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner812646a2006-05-05 05:58:59 +00005366 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005367
Chris Lattner65786b02007-04-11 05:32:27 +00005368 if (N0.getOpcode() == ISD::SETCC) {
Evan Chengabd0ad52010-05-19 01:08:17 +00005369 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
5370 // Only do this before legalize for now.
5371 if (VT.isVector() && !LegalOperations) {
5372 EVT N0VT = N0.getOperand(0).getValueType();
5373 // We know that the # elements of the results is the same as the
5374 // # elements of the compare (and the # elements of the compare result
5375 // for that matter). Check to see that they are the same size. If so,
5376 // we know that the element size of the sext'd result matches the
5377 // element size of the compare operands.
5378 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Andrew Trickef9de2a2013-05-25 02:42:55 +00005379 return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
Duncan Sands41b4a6b2010-07-12 08:16:59 +00005380 N0.getOperand(1),
5381 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Chengabd0ad52010-05-19 01:08:17 +00005382 // If the desired elements are smaller or larger than the source
5383 // elements we can use a matching integer vector type and then
5384 // truncate/sign extend
5385 else {
Duncan Sands41b4a6b2010-07-12 08:16:59 +00005386 EVT MatchingElementType =
5387 EVT::getIntegerVT(*DAG.getContext(),
5388 N0VT.getScalarType().getSizeInBits());
5389 EVT MatchingVectorType =
5390 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
5391 N0VT.getVectorNumElements());
5392 SDValue VsetCC =
Andrew Trickef9de2a2013-05-25 02:42:55 +00005393 DAG.getSetCC(SDLoc(N), MatchingVectorType, N0.getOperand(0),
Duncan Sands41b4a6b2010-07-12 08:16:59 +00005394 N0.getOperand(1),
5395 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Andrew Trickef9de2a2013-05-25 02:42:55 +00005396 return DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT);
Evan Chengabd0ad52010-05-19 01:08:17 +00005397 }
5398 }
5399
5400 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelcf0da6c2009-02-17 22:15:04 +00005401 SDValue SCC =
Andrew Trickef9de2a2013-05-25 02:42:55 +00005402 SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
Chris Lattnera083ffc2007-04-11 06:50:51 +00005403 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner18e4ac42007-04-11 16:51:53 +00005404 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greiff304a7a2008-08-28 21:40:38 +00005405 if (SCC.getNode())
Chris Lattnerc5f85d32007-04-11 06:43:25 +00005406 return SCC;
Chris Lattner65786b02007-04-11 05:32:27 +00005407 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005408
Evan Chengf1005572010-04-28 07:10:39 +00005409 return SDValue();
Chris Lattner812646a2006-05-05 05:58:59 +00005410}
5411
Chris Lattner5e6fe052007-10-13 06:35:54 +00005412/// GetDemandedBits - See if the specified operand can be simplified with the
5413/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005414/// simpler operand, otherwise return a null SDValue.
5415SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner5e6fe052007-10-13 06:35:54 +00005416 switch (V.getOpcode()) {
5417 default: break;
Lang Hamesb85fcd02011-11-08 18:56:23 +00005418 case ISD::Constant: {
5419 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
5420 assert(CV != 0 && "Const value should be ConstSDNode.");
5421 const APInt &CVal = CV->getAPIntValue();
5422 APInt NewVal = CVal & Mask;
Stephen Lin8e8424e2013-07-09 00:44:49 +00005423 if (NewVal != CVal)
Lang Hamesb85fcd02011-11-08 18:56:23 +00005424 return DAG.getConstant(NewVal, V.getValueType());
Lang Hamesb85fcd02011-11-08 18:56:23 +00005425 break;
5426 }
Chris Lattner5e6fe052007-10-13 06:35:54 +00005427 case ISD::OR:
5428 case ISD::XOR:
5429 // If the LHS or RHS don't contribute bits to the or, drop them.
5430 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
5431 return V.getOperand(1);
5432 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
5433 return V.getOperand(0);
5434 break;
Chris Lattnerf47e3062007-10-13 06:58:48 +00005435 case ISD::SRL:
5436 // Only look at single-use SRLs.
Gabor Greiff304a7a2008-08-28 21:40:38 +00005437 if (!V.getNode()->hasOneUse())
Chris Lattnerf47e3062007-10-13 06:58:48 +00005438 break;
5439 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
5440 // See if we can recursively simplify the LHS.
Dan Gohmaneffb8942008-09-12 16:56:44 +00005441 unsigned Amt = RHSC->getZExtValue();
Bill Wendling7bfa43b2009-01-30 22:33:24 +00005442
Dan Gohmanb9fa1d22009-01-03 19:22:06 +00005443 // Watch out for shift count overflow though.
5444 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman1f372ed2008-02-25 21:11:39 +00005445 APInt NewMask = Mask << Amt;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005446 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling7bfa43b2009-01-30 22:33:24 +00005447 if (SimplifyLHS.getNode())
Andrew Trickef9de2a2013-05-25 02:42:55 +00005448 return DAG.getNode(ISD::SRL, SDLoc(V), V.getValueType(),
Chris Lattnerf47e3062007-10-13 06:58:48 +00005449 SimplifyLHS, V.getOperand(1));
Chris Lattnerf47e3062007-10-13 06:58:48 +00005450 }
Chris Lattner5e6fe052007-10-13 06:35:54 +00005451 }
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005452 return SDValue();
Chris Lattner5e6fe052007-10-13 06:35:54 +00005453}
5454
Evan Cheng464dc9b2007-03-22 01:54:19 +00005455/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
5456/// bits and then truncated to a narrower type and where N is a multiple
5457/// of number of bits of the narrower type, transform it to a narrower load
5458/// from address + N / num of bits of new type. If the result is to be
5459/// extended, also fold the extension to form a extending load.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005460SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Cheng464dc9b2007-03-22 01:54:19 +00005461 unsigned Opc = N->getOpcode();
Dan Gohman600f62b2010-06-24 14:30:44 +00005462
Evan Cheng464dc9b2007-03-22 01:54:19 +00005463 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005464 SDValue N0 = N->getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005465 EVT VT = N->getValueType(0);
5466 EVT ExtVT = VT;
Evan Cheng464dc9b2007-03-22 01:54:19 +00005467
Dan Gohman550c9af2008-08-14 20:04:46 +00005468 // This transformation isn't valid for vector loads.
5469 if (VT.isVector())
5470 return SDValue();
5471
Dan Gohman6bd3ef82010-01-09 02:13:55 +00005472 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenga883b582007-03-23 22:13:36 +00005473 // extended to VT.
Evan Cheng464dc9b2007-03-22 01:54:19 +00005474 if (Opc == ISD::SIGN_EXTEND_INREG) {
5475 ExtType = ISD::SEXTLOAD;
Owen Anderson53aa7a92009-08-10 22:56:29 +00005476 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman600f62b2010-06-24 14:30:44 +00005477 } else if (Opc == ISD::SRL) {
Chris Lattner2a7ff992010-12-21 18:05:22 +00005478 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman600f62b2010-06-24 14:30:44 +00005479 ExtType = ISD::ZEXTLOAD;
5480 N0 = SDValue(N, 0);
5481 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
5482 if (!N01) return SDValue();
5483 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
5484 VT.getSizeInBits() - N01->getZExtValue());
Evan Cheng464dc9b2007-03-22 01:54:19 +00005485 }
Richard Osborne272e0842011-01-31 17:41:44 +00005486 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
5487 return SDValue();
Evan Cheng464dc9b2007-03-22 01:54:19 +00005488
Owen Anderson53aa7a92009-08-10 22:56:29 +00005489 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Andersonb2c80da2011-02-25 21:41:48 +00005490
Chris Lattner9a499e92010-12-22 08:01:44 +00005491 // Do not generate loads of non-round integer types since these can
5492 // be expensive (and would be wrong if the type is not byte sized).
5493 if (!ExtVT.isRound())
5494 return SDValue();
Owen Andersonb2c80da2011-02-25 21:41:48 +00005495
Evan Cheng464dc9b2007-03-22 01:54:19 +00005496 unsigned ShAmt = 0;
Chris Lattner9a499e92010-12-22 08:01:44 +00005497 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Cheng464dc9b2007-03-22 01:54:19 +00005498 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00005499 ShAmt = N01->getZExtValue();
Evan Cheng464dc9b2007-03-22 01:54:19 +00005500 // Is the shift amount a multiple of size of VT?
5501 if ((ShAmt & (EVTBits-1)) == 0) {
5502 N0 = N0.getOperand(0);
Eli Friedman1e008c12009-08-19 08:46:10 +00005503 // Is the load width a multiple of size of VT?
5504 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005505 return SDValue();
Evan Cheng464dc9b2007-03-22 01:54:19 +00005506 }
Wesley Peck527da1b2010-11-23 03:31:01 +00005507
Chris Lattnercafc1e62010-12-22 08:02:57 +00005508 // At this point, we must have a load or else we can't do the transform.
5509 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Andersonb2c80da2011-02-25 21:41:48 +00005510
Chandler Carruthb27041c2012-12-11 00:36:57 +00005511 // Because a SRL must be assumed to *need* to zero-extend the high bits
5512 // (as opposed to anyext the high bits), we can't combine the zextload
5513 // lowering of SRL and an sextload.
5514 if (cast<LoadSDNode>(N0)->getExtensionType() == ISD::SEXTLOAD)
5515 return SDValue();
5516
Chris Lattnera2050552010-10-01 05:36:09 +00005517 // If the shift amount is larger than the input type then we're not
5518 // accessing any of the loaded bytes. If the load was a zextload/extload
5519 // then the result of the shift+trunc is zero/undef (handled elsewhere).
Chris Lattnercafc1e62010-12-22 08:02:57 +00005520 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattnera2050552010-10-01 05:36:09 +00005521 return SDValue();
Evan Cheng464dc9b2007-03-22 01:54:19 +00005522 }
5523 }
5524
Dan Gohman68fb0042010-11-03 01:47:46 +00005525 // If the load is shifted left (and the result isn't shifted back right),
5526 // we can fold the truncate through the shift.
5527 unsigned ShLeftAmt = 0;
5528 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner222374d2010-12-22 07:36:50 +00005529 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman68fb0042010-11-03 01:47:46 +00005530 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5531 ShLeftAmt = N01->getZExtValue();
5532 N0 = N0.getOperand(0);
5533 }
5534 }
Owen Andersonb2c80da2011-02-25 21:41:48 +00005535
Chris Lattner222374d2010-12-22 07:36:50 +00005536 // If we haven't found a load, we can't narrow it. Don't transform one with
5537 // multiple uses, this would require adding a new load.
Bill Schmidtd006c692013-01-14 22:04:38 +00005538 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse())
5539 return SDValue();
5540
5541 // Don't change the width of a volatile load.
5542 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5543 if (LN0->isVolatile())
Chris Lattner222374d2010-12-22 07:36:50 +00005544 return SDValue();
Owen Andersonb2c80da2011-02-25 21:41:48 +00005545
Chris Lattner9a499e92010-12-22 08:01:44 +00005546 // Verify that we are actually reducing a load width here.
Bill Schmidtd006c692013-01-14 22:04:38 +00005547 if (LN0->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner222374d2010-12-22 07:36:50 +00005548 return SDValue();
Owen Andersonb2c80da2011-02-25 21:41:48 +00005549
Bill Schmidtd006c692013-01-14 22:04:38 +00005550 // For the transform to be legal, the load must produce only two values
5551 // (the value loaded and the chain). Don't transform a pre-increment
Stephen Lincfe7f352013-07-08 00:37:03 +00005552 // load, for example, which produces an extra value. Otherwise the
Bill Schmidtd006c692013-01-14 22:04:38 +00005553 // transformation is not equivalent, and the downstream logic to replace
5554 // uses gets things wrong.
5555 if (LN0->getNumValues() > 2)
5556 return SDValue();
5557
Benjamin Kramerc7332b22013-07-06 14:05:09 +00005558 // If the load that we're shrinking is an extload and we're not just
5559 // discarding the extension we can't simply shrink the load. Bail.
5560 // TODO: It would be possible to merge the extensions in some cases.
5561 if (LN0->getExtensionType() != ISD::NON_EXTLOAD &&
5562 LN0->getMemoryVT().getSizeInBits() < ExtVT.getSizeInBits() + ShAmt)
5563 return SDValue();
5564
Chris Lattner222374d2010-12-22 07:36:50 +00005565 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling7bfa43b2009-01-30 22:33:24 +00005566
Evan Cheng4c6f9172012-06-26 01:19:33 +00005567 if (PtrType == MVT::Untyped || PtrType.isExtended())
5568 // It's not possible to generate a constant of extended or untyped type.
5569 return SDValue();
5570
Chris Lattner222374d2010-12-22 07:36:50 +00005571 // For big endian targets, we need to adjust the offset to the pointer to
5572 // load the correct bytes.
5573 if (TLI.isBigEndian()) {
5574 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5575 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5576 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Cheng464dc9b2007-03-22 01:54:19 +00005577 }
5578
Chris Lattner222374d2010-12-22 07:36:50 +00005579 uint64_t PtrOff = ShAmt / 8;
5580 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005581 SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(LN0),
Chris Lattner222374d2010-12-22 07:36:50 +00005582 PtrType, LN0->getBasePtr(),
5583 DAG.getConstant(PtrOff, PtrType));
5584 AddToWorkList(NewPtr.getNode());
5585
Chris Lattner9a499e92010-12-22 08:01:44 +00005586 SDValue Load;
5587 if (ExtType == ISD::NON_EXTLOAD)
Andrew Trickef9de2a2013-05-25 02:42:55 +00005588 Load = DAG.getLoad(VT, SDLoc(N0), LN0->getChain(), NewPtr,
Chris Lattner9a499e92010-12-22 08:01:44 +00005589 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005590 LN0->isVolatile(), LN0->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00005591 LN0->isInvariant(), NewAlign, LN0->getTBAAInfo());
Chris Lattner9a499e92010-12-22 08:01:44 +00005592 else
Andrew Trickef9de2a2013-05-25 02:42:55 +00005593 Load = DAG.getExtLoad(ExtType, SDLoc(N0), VT, LN0->getChain(),NewPtr,
Chris Lattner9a499e92010-12-22 08:01:44 +00005594 LN0->getPointerInfo().getWithOffset(PtrOff),
5595 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00005596 NewAlign, LN0->getTBAAInfo());
Chris Lattner222374d2010-12-22 07:36:50 +00005597
5598 // Replace the old load's chain with the new load's chain.
5599 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005600 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner222374d2010-12-22 07:36:50 +00005601
5602 // Shift the result left, if we've swallowed a left shift.
5603 SDValue Result = Load;
5604 if (ShLeftAmt != 0) {
Owen Andersonb2c80da2011-02-25 21:41:48 +00005605 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner222374d2010-12-22 07:36:50 +00005606 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5607 ShImmTy = VT;
Paul Redmond288604e2013-02-12 15:21:21 +00005608 // If the shift amount is as large as the result size (but, presumably,
5609 // no larger than the source) then the useful bits of the result are
5610 // zero; we can't simply return the shortened shift, because the result
5611 // of that operation is undefined.
5612 if (ShLeftAmt >= VT.getSizeInBits())
5613 Result = DAG.getConstant(0, VT);
5614 else
Andrew Trickef9de2a2013-05-25 02:42:55 +00005615 Result = DAG.getNode(ISD::SHL, SDLoc(N0), VT,
Paul Redmond288604e2013-02-12 15:21:21 +00005616 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
Chris Lattner222374d2010-12-22 07:36:50 +00005617 }
5618
5619 // Return the new loaded value.
5620 return Result;
Evan Cheng464dc9b2007-03-22 01:54:19 +00005621}
5622
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005623SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5624 SDValue N0 = N->getOperand(0);
5625 SDValue N1 = N->getOperand(1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005626 EVT VT = N->getValueType(0);
5627 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman1d459e42009-12-11 21:31:27 +00005628 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohman6bd3ef82010-01-09 02:13:55 +00005629 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005630
Nate Begeman21158fc2005-09-01 00:19:25 +00005631 // fold (sext_in_reg c1) -> c1
Chris Lattner29062da2006-05-08 20:59:41 +00005632 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Andrew Trickef9de2a2013-05-25 02:42:55 +00005633 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, N0, N1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005634
Chris Lattner2a4d7b82006-05-06 22:43:44 +00005635 // If the input is already sign extended, just drop the extension.
Dan Gohman1d459e42009-12-11 21:31:27 +00005636 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattner1ecb2a22006-05-06 09:30:03 +00005637 return N0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005638
Nate Begeman7cea6ef2005-09-02 21:18:40 +00005639 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5640 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Stephen Lin8e8424e2013-07-09 00:44:49 +00005641 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT()))
Andrew Trickef9de2a2013-05-25 02:42:55 +00005642 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
Bill Wendling7bfa43b2009-01-30 22:33:24 +00005643 N0.getOperand(0), N1);
Chris Lattner446e1ef2006-05-08 21:18:59 +00005644
Dan Gohman345d63c2008-07-31 00:50:31 +00005645 // fold (sext_in_reg (sext x)) -> (sext x)
5646 // fold (sext_in_reg (aext x)) -> (sext x)
5647 // if x is small enough.
5648 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5649 SDValue N00 = N0.getOperand(0);
Evan Chengf037f872010-04-16 22:26:19 +00005650 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5651 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00005652 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N00, N1);
Dan Gohman345d63c2008-07-31 00:50:31 +00005653 }
5654
Chris Lattner9ad59152007-04-17 19:03:21 +00005655 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman1f372ed2008-02-25 21:11:39 +00005656 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00005657 return DAG.getZeroExtendInReg(N0, SDLoc(N), EVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005658
Chris Lattner9ad59152007-04-17 19:03:21 +00005659 // fold operands of sext_in_reg based on knowledge that the top bits are not
5660 // demanded.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005661 if (SimplifyDemandedBits(SDValue(N, 0)))
5662 return SDValue(N, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005663
Evan Cheng464dc9b2007-03-22 01:54:19 +00005664 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5665 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005666 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00005667 if (NarrowLoad.getNode())
Evan Cheng464dc9b2007-03-22 01:54:19 +00005668 return NarrowLoad;
5669
Bill Wendling7bfa43b2009-01-30 22:33:24 +00005670 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00005671 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner446e1ef2006-05-08 21:18:59 +00005672 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5673 if (N0.getOpcode() == ISD::SRL) {
5674 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman1d459e42009-12-11 21:31:27 +00005675 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00005676 // We can turn this into an SRA iff the input to the SRL is already sign
Chris Lattner446e1ef2006-05-08 21:18:59 +00005677 // extended enough.
Dan Gohman309d3d52007-06-22 14:59:07 +00005678 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman1d459e42009-12-11 21:31:27 +00005679 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Andrew Trickef9de2a2013-05-25 02:42:55 +00005680 return DAG.getNode(ISD::SRA, SDLoc(N), VT,
Bill Wendling7bfa43b2009-01-30 22:33:24 +00005681 N0.getOperand(0), N0.getOperand(1));
Chris Lattner446e1ef2006-05-08 21:18:59 +00005682 }
5683 }
Evan Cheng464dc9b2007-03-22 01:54:19 +00005684
Nate Begeman02b23c62005-10-13 03:11:28 +00005685 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelcf0da6c2009-02-17 22:15:04 +00005686 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00005687 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohman47a7d6f2008-01-30 00:15:11 +00005688 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00005689 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng07d53b12008-10-14 21:26:46 +00005690 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Chenge71fe34d2006-10-09 20:57:25 +00005691 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005692 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Bill Wendling7bfa43b2009-01-30 22:33:24 +00005693 LN0->getChain(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00005694 LN0->getBasePtr(), EVT,
5695 LN0->getMemOperand());
Chris Lattnerd39c60f2005-12-14 19:25:30 +00005696 CombineTo(N, ExtLoad);
Gabor Greiff304a7a2008-08-28 21:40:38 +00005697 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Elena Demikhovsky14a4af02012-12-19 07:50:20 +00005698 AddToWorkList(ExtLoad.getNode());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005699 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begeman02b23c62005-10-13 03:11:28 +00005700 }
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00005701 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greiff304a7a2008-08-28 21:40:38 +00005702 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng8a1d09d2007-03-07 08:07:03 +00005703 N0.hasOneUse() &&
Dan Gohman47a7d6f2008-01-30 00:15:11 +00005704 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00005705 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng07d53b12008-10-14 21:26:46 +00005706 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Chenge71fe34d2006-10-09 20:57:25 +00005707 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005708 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
Bill Wendling7bfa43b2009-01-30 22:33:24 +00005709 LN0->getChain(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00005710 LN0->getBasePtr(), EVT,
5711 LN0->getMemOperand());
Chris Lattnerd39c60f2005-12-14 19:25:30 +00005712 CombineTo(N, ExtLoad);
Gabor Greiff304a7a2008-08-28 21:40:38 +00005713 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005714 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begeman02b23c62005-10-13 03:11:28 +00005715 }
Evan Cheng4c0bd962011-06-21 06:01:08 +00005716
5717 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5718 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5719 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5720 N0.getOperand(1), false);
5721 if (BSwap.getNode() != 0)
Andrew Trickef9de2a2013-05-25 02:42:55 +00005722 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
Evan Cheng4c0bd962011-06-21 06:01:08 +00005723 BSwap, N1);
5724 }
5725
Andrea Di Biagio46dcddb2013-12-27 20:20:28 +00005726 // Fold a sext_inreg of a build_vector of ConstantSDNodes or undefs
5727 // into a build_vector.
5728 if (ISD::isBuildVectorOfConstantSDNodes(N0.getNode())) {
5729 SmallVector<SDValue, 8> Elts;
5730 unsigned NumElts = N0->getNumOperands();
5731 unsigned ShAmt = VTBits - EVTBits;
5732
5733 for (unsigned i = 0; i != NumElts; ++i) {
5734 SDValue Op = N0->getOperand(i);
5735 if (Op->getOpcode() == ISD::UNDEF) {
5736 Elts.push_back(Op);
5737 continue;
5738 }
5739
5740 ConstantSDNode *CurrentND = cast<ConstantSDNode>(Op);
Kevin Qin5cd73c92014-01-06 02:26:10 +00005741 const APInt &C = APInt(VTBits, CurrentND->getAPIntValue().getZExtValue());
5742 Elts.push_back(DAG.getConstant(C.shl(ShAmt).ashr(ShAmt).getZExtValue(),
Andrea Di Biagio46dcddb2013-12-27 20:20:28 +00005743 Op.getValueType()));
5744 }
5745
5746 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT, &Elts[0], NumElts);
5747 }
5748
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005749 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00005750}
5751
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005752SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5753 SDValue N0 = N->getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005754 EVT VT = N->getValueType(0);
Nadav Rotem5399f4d2012-02-03 13:18:25 +00005755 bool isLE = TLI.isLittleEndian();
Nate Begeman21158fc2005-09-01 00:19:25 +00005756
5757 // noop truncate
5758 if (N0.getValueType() == N->getValueType(0))
Nate Begemand23739d2005-09-06 04:43:02 +00005759 return N0;
Nate Begeman21158fc2005-09-01 00:19:25 +00005760 // fold (truncate c1) -> c1
Chris Lattner7e7bcf32006-05-06 23:06:26 +00005761 if (isa<ConstantSDNode>(N0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00005762 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0);
Nate Begeman21158fc2005-09-01 00:19:25 +00005763 // fold (truncate (truncate x)) -> (truncate x)
5764 if (N0.getOpcode() == ISD::TRUNCATE)
Andrew Trickef9de2a2013-05-25 02:42:55 +00005765 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0));
Nate Begeman21158fc2005-09-01 00:19:25 +00005766 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner6855d622010-04-07 18:13:33 +00005767 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5768 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattner907e3922006-05-05 22:56:26 +00005769 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands11dd4242008-06-08 20:54:56 +00005770 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman21158fc2005-09-01 00:19:25 +00005771 // if the source is smaller than the dest, we still need an extend
Andrew Trickef9de2a2013-05-25 02:42:55 +00005772 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
Bill Wendling4e0a6152009-01-30 22:44:24 +00005773 N0.getOperand(0));
Craig Topper5f9791f2012-09-29 07:18:53 +00005774 if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman21158fc2005-09-01 00:19:25 +00005775 // if the source is larger than the dest, than we just need the truncate
Andrew Trickef9de2a2013-05-25 02:42:55 +00005776 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0));
Craig Topper5f9791f2012-09-29 07:18:53 +00005777 // if the source and dest are the same type, we can drop both the extend
5778 // and the truncate.
5779 return N0.getOperand(0);
Nate Begeman21158fc2005-09-01 00:19:25 +00005780 }
Evan Chengd63baea2007-03-21 20:14:05 +00005781
Nadav Rotem4f4546b2012-02-05 11:39:23 +00005782 // Fold extract-and-trunc into a narrow extract. For example:
5783 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5784 // i32 y = TRUNCATE(i64 x)
5785 // -- becomes --
5786 // v16i8 b = BITCAST (v2i64 val)
5787 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5788 //
5789 // Note: We only run this optimization after type legalization (which often
Nadav Rotem5399f4d2012-02-03 13:18:25 +00005790 // creates this pattern) and before operation legalization after which
5791 // we need to be more careful about the vector instructions that we generate.
5792 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5793 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5794
5795 EVT VecTy = N0.getOperand(0).getValueType();
5796 EVT ExTy = N0.getValueType();
5797 EVT TrTy = N->getValueType(0);
5798
5799 unsigned NumElem = VecTy.getVectorNumElements();
5800 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5801
5802 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5803 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5804
5805 SDValue EltNo = N0->getOperand(1);
5806 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5807 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Tom Stellardd42c5942013-08-05 22:22:01 +00005808 EVT IndexTy = TLI.getVectorIdxTy();
Nadav Rotem5399f4d2012-02-03 13:18:25 +00005809 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5810
Andrew Trickef9de2a2013-05-25 02:42:55 +00005811 SDValue V = DAG.getNode(ISD::BITCAST, SDLoc(N),
Nadav Rotem5399f4d2012-02-03 13:18:25 +00005812 NVT, N0.getOperand(0));
5813
5814 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005815 SDLoc(N), TrTy, V,
Jim Grosbach92f6adc2012-05-08 20:56:07 +00005816 DAG.getConstant(Index, IndexTy));
Nadav Rotem5399f4d2012-02-03 13:18:25 +00005817 }
5818 }
5819
Arnold Schwaighofer3f9568e2013-02-20 21:33:32 +00005820 // Fold a series of buildvector, bitcast, and truncate if possible.
5821 // For example fold
5822 // (2xi32 trunc (bitcast ((4xi32)buildvector x, x, y, y) 2xi64)) to
5823 // (2xi32 (buildvector x, y)).
5824 if (Level == AfterLegalizeVectorOps && VT.isVector() &&
5825 N0.getOpcode() == ISD::BITCAST && N0.hasOneUse() &&
5826 N0.getOperand(0).getOpcode() == ISD::BUILD_VECTOR &&
5827 N0.getOperand(0).hasOneUse()) {
5828
5829 SDValue BuildVect = N0.getOperand(0);
5830 EVT BuildVectEltTy = BuildVect.getValueType().getVectorElementType();
5831 EVT TruncVecEltTy = VT.getVectorElementType();
5832
5833 // Check that the element types match.
5834 if (BuildVectEltTy == TruncVecEltTy) {
5835 // Now we only need to compute the offset of the truncated elements.
5836 unsigned BuildVecNumElts = BuildVect.getNumOperands();
5837 unsigned TruncVecNumElts = VT.getVectorNumElements();
5838 unsigned TruncEltOffset = BuildVecNumElts / TruncVecNumElts;
5839
5840 assert((BuildVecNumElts % TruncVecNumElts) == 0 &&
5841 "Invalid number of elements");
5842
5843 SmallVector<SDValue, 8> Opnds;
5844 for (unsigned i = 0, e = BuildVecNumElts; i != e; i += TruncEltOffset)
5845 Opnds.push_back(BuildVect.getOperand(i));
5846
Andrew Trickef9de2a2013-05-25 02:42:55 +00005847 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT, &Opnds[0],
Arnold Schwaighofer3f9568e2013-02-20 21:33:32 +00005848 Opnds.size());
5849 }
5850 }
5851
Chris Lattner5e6fe052007-10-13 06:35:54 +00005852 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem502f1b92011-02-24 21:01:34 +00005853 // only the low bits are being used.
5854 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemb0091302011-02-27 07:40:43 +00005855 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem502f1b92011-02-24 21:01:34 +00005856 // may have different active low bits.
5857 if (!VT.isVector()) {
5858 SDValue Shorter =
5859 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5860 VT.getSizeInBits()));
5861 if (Shorter.getNode())
Andrew Trickef9de2a2013-05-25 02:42:55 +00005862 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Shorter);
Nadav Rotem502f1b92011-02-24 21:01:34 +00005863 }
Nate Begeman8caf81d2005-10-12 20:40:40 +00005864 // fold (truncate (load x)) -> (smaller load x)
Evan Chengd63baea2007-03-21 20:14:05 +00005865 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman600f62b2010-06-24 14:30:44 +00005866 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5867 SDValue Reduced = ReduceLoadWidth(N);
5868 if (Reduced.getNode())
5869 return Reduced;
Richard Sandifordd1093632013-12-11 11:37:27 +00005870 // Handle the case where the load remains an extending load even
5871 // after truncation.
5872 if (N0.hasOneUse() && ISD::isUNINDEXEDLoad(N0.getNode())) {
5873 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5874 if (!LN0->isVolatile() &&
5875 LN0->getMemoryVT().getStoreSizeInBits() < VT.getSizeInBits()) {
5876 SDValue NewLoad = DAG.getExtLoad(LN0->getExtensionType(), SDLoc(LN0),
5877 VT, LN0->getChain(), LN0->getBasePtr(),
5878 LN0->getMemoryVT(),
5879 LN0->getMemOperand());
5880 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLoad.getValue(1));
5881 return NewLoad;
5882 }
5883 }
Dan Gohman600f62b2010-06-24 14:30:44 +00005884 }
Michael Liao3ac82012012-10-17 23:45:54 +00005885 // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)),
5886 // where ... are all 'undef'.
5887 if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) {
5888 SmallVector<EVT, 8> VTs;
5889 SDValue V;
5890 unsigned Idx = 0;
5891 unsigned NumDefs = 0;
5892
5893 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
5894 SDValue X = N0.getOperand(i);
5895 if (X.getOpcode() != ISD::UNDEF) {
5896 V = X;
5897 Idx = i;
5898 NumDefs++;
5899 }
5900 // Stop if more than one members are non-undef.
5901 if (NumDefs > 1)
5902 break;
5903 VTs.push_back(EVT::getVectorVT(*DAG.getContext(),
5904 VT.getVectorElementType(),
5905 X.getValueType().getVectorNumElements()));
5906 }
5907
5908 if (NumDefs == 0)
5909 return DAG.getUNDEF(VT);
5910
5911 if (NumDefs == 1) {
5912 assert(V.getNode() && "The single defined operand is empty!");
5913 SmallVector<SDValue, 8> Opnds;
5914 for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
5915 if (i != Idx) {
5916 Opnds.push_back(DAG.getUNDEF(VTs[i]));
5917 continue;
5918 }
Andrew Trickef9de2a2013-05-25 02:42:55 +00005919 SDValue NV = DAG.getNode(ISD::TRUNCATE, SDLoc(V), VTs[i], V);
Michael Liao3ac82012012-10-17 23:45:54 +00005920 AddToWorkList(NV.getNode());
5921 Opnds.push_back(NV);
5922 }
Andrew Trickef9de2a2013-05-25 02:42:55 +00005923 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
Michael Liao3ac82012012-10-17 23:45:54 +00005924 &Opnds[0], Opnds.size());
5925 }
5926 }
Dan Gohman600f62b2010-06-24 14:30:44 +00005927
5928 // Simplify the operands using demanded-bits information.
5929 if (!VT.isVector() &&
5930 SimplifyDemandedBits(SDValue(N, 0)))
5931 return SDValue(N, 0);
5932
Evan Chengf1bd5fc2010-04-17 06:13:15 +00005933 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00005934}
5935
Evan Chengb980f6f2008-05-12 23:04:07 +00005936static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005937 SDValue Elt = N->getOperand(i);
Evan Chengb980f6f2008-05-12 23:04:07 +00005938 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greiff304a7a2008-08-28 21:40:38 +00005939 return Elt.getNode();
5940 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Chengb980f6f2008-05-12 23:04:07 +00005941}
5942
5943/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelcf0da6c2009-02-17 22:15:04 +00005944/// if load locations are consecutive.
Owen Anderson53aa7a92009-08-10 22:56:29 +00005945SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Chengb980f6f2008-05-12 23:04:07 +00005946 assert(N->getOpcode() == ISD::BUILD_PAIR);
5947
Nate Begeman624690c2009-06-05 21:37:30 +00005948 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5949 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerf72c3c02010-09-21 16:08:50 +00005950 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5951 LD1->getPointerInfo().getAddrSpace() !=
5952 LD2->getPointerInfo().getAddrSpace())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005953 return SDValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005954 EVT LD1VT = LD1->getValueType(0);
Bill Wendling4e0a6152009-01-30 22:44:24 +00005955
Evan Chengb980f6f2008-05-12 23:04:07 +00005956 if (ISD::isNON_EXTLoad(LD2) &&
5957 LD2->hasOneUse() &&
Duncan Sands8651e9c2008-06-13 19:07:40 +00005958 // If both are volatile this would reduce the number of volatile loads.
5959 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begeman624690c2009-06-05 21:37:30 +00005960 !LD1->isVolatile() &&
5961 !LD2->isVolatile() &&
Evan Chengf5938d52009-12-09 01:36:00 +00005962 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begeman624690c2009-06-05 21:37:30 +00005963 unsigned Align = LD1->getAlignment();
Micah Villmowcdfe20b2012-10-08 16:38:25 +00005964 unsigned NewAlign = TLI.getDataLayout()->
Owen Anderson117c9e82009-08-12 00:36:31 +00005965 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling4e0a6152009-01-30 22:44:24 +00005966
Duncan Sands8651e9c2008-06-13 19:07:40 +00005967 if (NewAlign <= Align &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00005968 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00005969 return DAG.getLoad(VT, SDLoc(N), LD1->getChain(),
Chris Lattnerf72c3c02010-09-21 16:08:50 +00005970 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005971 false, false, false, Align);
Evan Chengb980f6f2008-05-12 23:04:07 +00005972 }
Bill Wendling4e0a6152009-01-30 22:44:24 +00005973
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005974 return SDValue();
Evan Chengb980f6f2008-05-12 23:04:07 +00005975}
5976
Wesley Peck527da1b2010-11-23 03:31:01 +00005977SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005978 SDValue N0 = N->getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005979 EVT VT = N->getValueType(0);
Chris Lattnera1874602005-12-23 05:30:37 +00005980
Dan Gohmana8665142007-06-25 16:23:39 +00005981 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5982 // Only do this before legalize, since afterward the target may be depending
5983 // on the bitconvert.
5984 // First check to see if this is all constant.
Duncan Sandsdc2dac12008-11-24 14:53:14 +00005985 if (!LegalTypes &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00005986 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands13237ac2008-06-06 12:08:01 +00005987 VT.isVector()) {
Juergen Ributzka73844052014-01-13 20:51:35 +00005988 bool isSimple = cast<BuildVectorSDNode>(N0)->isConstant();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005989
Owen Anderson53aa7a92009-08-10 22:56:29 +00005990 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands13237ac2008-06-06 12:08:01 +00005991 assert(!DestEltVT.isVector() &&
Dan Gohmana8665142007-06-25 16:23:39 +00005992 "Element type of vector ValueType must not be vector!");
Bill Wendling4e0a6152009-01-30 22:44:24 +00005993 if (isSimple)
Wesley Peck527da1b2010-11-23 03:31:01 +00005994 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohmana8665142007-06-25 16:23:39 +00005995 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005996
Dan Gohman921ddd62008-09-05 01:58:21 +00005997 // If the input is a constant, let getNode fold it.
Chris Lattnera1874602005-12-23 05:30:37 +00005998 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005999 SDValue Res = DAG.getNode(ISD::BITCAST, SDLoc(N), VT, N0);
Dan Gohman733a64d2009-08-10 23:15:10 +00006000 if (Res.getNode() != N) {
6001 if (!LegalOperations ||
6002 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
6003 return Res;
6004
6005 // Folding it resulted in an illegal node, and it's too late to
6006 // do that. Clean up the old node and forego the transformation.
6007 // Ideally this won't happen very often, because instcombine
6008 // and the earlier dagcombine runs (where illegal nodes are
6009 // permitted) should have folded most of them already.
6010 DAG.DeleteNode(Res.getNode());
6011 }
Chris Lattnera1874602005-12-23 05:30:37 +00006012 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006013
Bill Wendling4e0a6152009-01-30 22:44:24 +00006014 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peck527da1b2010-11-23 03:31:01 +00006015 if (N0.getOpcode() == ISD::BITCAST)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006016 return DAG.getNode(ISD::BITCAST, SDLoc(N), VT,
Bill Wendling4e0a6152009-01-30 22:44:24 +00006017 N0.getOperand(0));
Chris Lattnere4e64b62006-04-02 02:53:43 +00006018
Chris Lattner54560f62005-12-23 05:44:41 +00006019 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng0de312d2007-10-06 08:19:55 +00006020 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greiff304a7a2008-08-28 21:40:38 +00006021 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands8651e9c2008-06-13 19:07:40 +00006022 // Do not change the width of a volatile load.
6023 !cast<LoadSDNode>(N0)->isVolatile() &&
Matt Arsenaultc5559bb2013-11-15 04:42:23 +00006024 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)) &&
6025 TLI.isLoadBitCastBeneficial(N0.getValueType(), VT)) {
Evan Chenge71fe34d2006-10-09 20:57:25 +00006026 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Micah Villmowcdfe20b2012-10-08 16:38:25 +00006027 unsigned Align = TLI.getDataLayout()->
Owen Anderson117c9e82009-08-12 00:36:31 +00006028 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Chenga4cf58a2007-05-07 21:27:48 +00006029 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling4e0a6152009-01-30 22:44:24 +00006030
Evan Chenga4cf58a2007-05-07 21:27:48 +00006031 if (Align <= OrigAlign) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006032 SDValue Load = DAG.getLoad(VT, SDLoc(N), LN0->getChain(),
Chris Lattnerf72c3c02010-09-21 16:08:50 +00006033 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00006034 LN0->isVolatile(), LN0->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00006035 LN0->isInvariant(), OrigAlign,
6036 LN0->getTBAAInfo());
Evan Chenga4cf58a2007-05-07 21:27:48 +00006037 AddToWorkList(N);
Gabor Greife12264b2008-08-30 19:29:20 +00006038 CombineTo(N0.getNode(),
Andrew Trickef9de2a2013-05-25 02:42:55 +00006039 DAG.getNode(ISD::BITCAST, SDLoc(N0),
Bill Wendling4e0a6152009-01-30 22:44:24 +00006040 N0.getValueType(), Load),
Evan Chenga4cf58a2007-05-07 21:27:48 +00006041 Load.getValue(1));
6042 return Load;
6043 }
Chris Lattner54560f62005-12-23 05:44:41 +00006044 }
Duncan Sands8651e9c2008-06-13 19:07:40 +00006045
Bill Wendling4e0a6152009-01-30 22:44:24 +00006046 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
6047 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner888560d2008-01-27 17:42:27 +00006048 // This often reduces constant pool loads.
Tom Stellardc54731a2013-07-23 23:55:03 +00006049 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(N0.getValueType())) ||
6050 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(N0.getValueType()))) &&
Nadav Rotem24a822a2012-09-13 14:54:28 +00006051 N0.getNode()->hasOneUse() && VT.isInteger() &&
6052 !VT.isVector() && !N0.getValueType().isVector()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006053 SDValue NewConv = DAG.getNode(ISD::BITCAST, SDLoc(N0), VT,
Bill Wendling4e0a6152009-01-30 22:44:24 +00006054 N0.getOperand(0));
Gabor Greiff304a7a2008-08-28 21:40:38 +00006055 AddToWorkList(NewConv.getNode());
Scott Michelcf0da6c2009-02-17 22:15:04 +00006056
Duncan Sands13237ac2008-06-06 12:08:01 +00006057 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner888560d2008-01-27 17:42:27 +00006058 if (N0.getOpcode() == ISD::FNEG)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006059 return DAG.getNode(ISD::XOR, SDLoc(N), VT,
Bill Wendling4e0a6152009-01-30 22:44:24 +00006060 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner888560d2008-01-27 17:42:27 +00006061 assert(N0.getOpcode() == ISD::FABS);
Andrew Trickef9de2a2013-05-25 02:42:55 +00006062 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Bill Wendling4e0a6152009-01-30 22:44:24 +00006063 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner888560d2008-01-27 17:42:27 +00006064 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006065
Bill Wendling4e0a6152009-01-30 22:44:24 +00006066 // fold (bitconvert (fcopysign cst, x)) ->
6067 // (or (and (bitconvert x), sign), (and cst, (not sign)))
6068 // Note that we don't handle (copysign x, cst) because this can always be
6069 // folded to an fneg or fabs.
Gabor Greiff304a7a2008-08-28 21:40:38 +00006070 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattner2ee91f42008-01-27 23:32:17 +00006071 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands13237ac2008-06-06 12:08:01 +00006072 VT.isInteger() && !VT.isVector()) {
6073 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson117c9e82009-08-12 00:36:31 +00006074 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner4041ab62010-04-15 04:48:01 +00006075 if (isTypeLegal(IntXVT)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006076 SDValue X = DAG.getNode(ISD::BITCAST, SDLoc(N0),
Bill Wendling4e0a6152009-01-30 22:44:24 +00006077 IntXVT, N0.getOperand(1));
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006078 AddToWorkList(X.getNode());
Chris Lattner888560d2008-01-27 17:42:27 +00006079
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006080 // If X has a different width than the result/lhs, sext it or truncate it.
6081 unsigned VTWidth = VT.getSizeInBits();
6082 if (OrigXWidth < VTWidth) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006083 X = DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, X);
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006084 AddToWorkList(X.getNode());
6085 } else if (OrigXWidth > VTWidth) {
6086 // To get the sign bit in the right place, we have to shift it right
6087 // before truncating.
Andrew Trickef9de2a2013-05-25 02:42:55 +00006088 X = DAG.getNode(ISD::SRL, SDLoc(X),
Bill Wendling4e0a6152009-01-30 22:44:24 +00006089 X.getValueType(), X,
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006090 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
6091 AddToWorkList(X.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00006092 X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X);
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006093 AddToWorkList(X.getNode());
6094 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006095
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006096 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Andrew Trickef9de2a2013-05-25 02:42:55 +00006097 X = DAG.getNode(ISD::AND, SDLoc(X), VT,
Bill Wendling4e0a6152009-01-30 22:44:24 +00006098 X, DAG.getConstant(SignBit, VT));
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006099 AddToWorkList(X.getNode());
Chris Lattner888560d2008-01-27 17:42:27 +00006100
Andrew Trickef9de2a2013-05-25 02:42:55 +00006101 SDValue Cst = DAG.getNode(ISD::BITCAST, SDLoc(N0),
Bill Wendling4e0a6152009-01-30 22:44:24 +00006102 VT, N0.getOperand(0));
Andrew Trickef9de2a2013-05-25 02:42:55 +00006103 Cst = DAG.getNode(ISD::AND, SDLoc(Cst), VT,
Bill Wendling4e0a6152009-01-30 22:44:24 +00006104 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006105 AddToWorkList(Cst.getNode());
Chris Lattner888560d2008-01-27 17:42:27 +00006106
Andrew Trickef9de2a2013-05-25 02:42:55 +00006107 return DAG.getNode(ISD::OR, SDLoc(N), VT, X, Cst);
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006108 }
Chris Lattner888560d2008-01-27 17:42:27 +00006109 }
Evan Chengb980f6f2008-05-12 23:04:07 +00006110
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00006111 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Chengb980f6f2008-05-12 23:04:07 +00006112 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00006113 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
6114 if (CombineLD.getNode())
Evan Chengb980f6f2008-05-12 23:04:07 +00006115 return CombineLD;
6116 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006117
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006118 return SDValue();
Chris Lattnera1874602005-12-23 05:30:37 +00006119}
6120
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006121SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00006122 EVT VT = N->getValueType(0);
Evan Chengb980f6f2008-05-12 23:04:07 +00006123 return CombineConsecutiveLoads(N, VT);
6124}
6125
Wesley Peck527da1b2010-11-23 03:31:01 +00006126/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelcf0da6c2009-02-17 22:15:04 +00006127/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattnere4e64b62006-04-02 02:53:43 +00006128/// destination element value type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006129SDValue DAGCombiner::
Wesley Peck527da1b2010-11-23 03:31:01 +00006130ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00006131 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006132
Chris Lattnere4e64b62006-04-02 02:53:43 +00006133 // If this is already the right type, we're done.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006134 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006135
Duncan Sands13237ac2008-06-06 12:08:01 +00006136 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
6137 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006138
Chris Lattnere4e64b62006-04-02 02:53:43 +00006139 // If this is a conversion of N elements of one type to N elements of another
6140 // type, convert each element. This handles FP<->INT cases.
6141 if (SrcBitSize == DstBitSize) {
Nate Begeman317b9692010-07-27 18:02:18 +00006142 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
6143 BV->getValueType(0).getVectorNumElements());
6144
6145 // Due to the FP element handling below calling this routine recursively,
6146 // we can end up with a scalar-to-vector node here.
6147 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006148 return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(BV), VT,
6149 DAG.getNode(ISD::BITCAST, SDLoc(BV),
Nate Begeman317b9692010-07-27 18:02:18 +00006150 DstEltVT, BV->getOperand(0)));
Wesley Peck527da1b2010-11-23 03:31:01 +00006151
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006152 SmallVector<SDValue, 8> Ops;
Dan Gohmana8665142007-06-25 16:23:39 +00006153 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilson59dbbb22009-04-13 22:05:19 +00006154 SDValue Op = BV->getOperand(i);
6155 // If the vector element type is not legal, the BUILD_VECTOR operands
6156 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonda188eb2009-04-20 17:27:09 +00006157 if (Op.getValueType() != SrcEltVT)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006158 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(BV), SrcEltVT, Op);
6159 Ops.push_back(DAG.getNode(ISD::BITCAST, SDLoc(BV),
Bob Wilson59dbbb22009-04-13 22:05:19 +00006160 DstEltVT, Op));
Gabor Greiff304a7a2008-08-28 21:40:38 +00006161 AddToWorkList(Ops.back().getNode());
Chris Lattner098c01e2006-04-08 04:15:24 +00006162 }
Andrew Trickef9de2a2013-05-25 02:42:55 +00006163 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
Evan Chenga49de9d2009-02-25 22:49:59 +00006164 &Ops[0], Ops.size());
Chris Lattnere4e64b62006-04-02 02:53:43 +00006165 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006166
Chris Lattnere4e64b62006-04-02 02:53:43 +00006167 // Otherwise, we're growing or shrinking the elements. To avoid having to
6168 // handle annoying details of growing/shrinking FP values, we convert them to
6169 // int first.
Duncan Sands13237ac2008-06-06 12:08:01 +00006170 if (SrcEltVT.isFloatingPoint()) {
Chris Lattnere4e64b62006-04-02 02:53:43 +00006171 // Convert the input float vector to a int vector where the elements are the
6172 // same sizes.
Owen Anderson9f944592009-08-11 20:47:22 +00006173 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson117c9e82009-08-12 00:36:31 +00006174 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peck527da1b2010-11-23 03:31:01 +00006175 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattnere4e64b62006-04-02 02:53:43 +00006176 SrcEltVT = IntVT;
6177 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006178
Chris Lattnere4e64b62006-04-02 02:53:43 +00006179 // Now we know the input is an integer vector. If the output is a FP type,
6180 // convert to integer first, then to FP of the right size.
Duncan Sands13237ac2008-06-06 12:08:01 +00006181 if (DstEltVT.isFloatingPoint()) {
Owen Anderson9f944592009-08-11 20:47:22 +00006182 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson117c9e82009-08-12 00:36:31 +00006183 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peck527da1b2010-11-23 03:31:01 +00006184 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006185
Chris Lattnere4e64b62006-04-02 02:53:43 +00006186 // Next, convert to FP elements of the same size.
Wesley Peck527da1b2010-11-23 03:31:01 +00006187 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattnere4e64b62006-04-02 02:53:43 +00006188 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006189
Chris Lattnere4e64b62006-04-02 02:53:43 +00006190 // Okay, we know the src/dst types are both integers of differing types.
6191 // Handling growing first.
Duncan Sands13237ac2008-06-06 12:08:01 +00006192 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattnere4e64b62006-04-02 02:53:43 +00006193 if (SrcBitSize < DstBitSize) {
6194 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006195
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006196 SmallVector<SDValue, 8> Ops;
Dan Gohmana8665142007-06-25 16:23:39 +00006197 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattnere4e64b62006-04-02 02:53:43 +00006198 i += NumInputsPerOutput) {
6199 bool isLE = TLI.isLittleEndian();
Dan Gohmane1c4f992008-03-03 23:51:38 +00006200 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattnere4e64b62006-04-02 02:53:43 +00006201 bool EltIsUndef = true;
6202 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
6203 // Shift the previously computed bits over.
6204 NewBits <<= SrcBitSize;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006205 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattnere4e64b62006-04-02 02:53:43 +00006206 if (Op.getOpcode() == ISD::UNDEF) continue;
6207 EltIsUndef = false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006208
Jay Foad583abbc2010-12-07 08:25:19 +00006209 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohmanecd40a32010-04-12 02:24:01 +00006210 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattnere4e64b62006-04-02 02:53:43 +00006211 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006212
Chris Lattnere4e64b62006-04-02 02:53:43 +00006213 if (EltIsUndef)
Dale Johannesen84935752009-02-06 23:05:02 +00006214 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattnere4e64b62006-04-02 02:53:43 +00006215 else
6216 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
6217 }
6218
Owen Anderson117c9e82009-08-12 00:36:31 +00006219 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Andrew Trickef9de2a2013-05-25 02:42:55 +00006220 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
Evan Chenga49de9d2009-02-25 22:49:59 +00006221 &Ops[0], Ops.size());
Chris Lattnere4e64b62006-04-02 02:53:43 +00006222 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006223
Chris Lattnere4e64b62006-04-02 02:53:43 +00006224 // Finally, this must be the case where we are shrinking elements: each input
6225 // turns into multiple outputs.
Evan Cheng6200c222008-02-18 23:04:32 +00006226 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattnere4e64b62006-04-02 02:53:43 +00006227 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson117c9e82009-08-12 00:36:31 +00006228 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
6229 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006230 SmallVector<SDValue, 8> Ops;
Bill Wendlingcb9be5d2009-01-30 22:53:48 +00006231
Dan Gohmana8665142007-06-25 16:23:39 +00006232 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattnere4e64b62006-04-02 02:53:43 +00006233 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
6234 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesen84935752009-02-06 23:05:02 +00006235 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattnere4e64b62006-04-02 02:53:43 +00006236 continue;
6237 }
Bill Wendlingcb9be5d2009-01-30 22:53:48 +00006238
Jay Foad583abbc2010-12-07 08:25:19 +00006239 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
6240 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingcb9be5d2009-01-30 22:53:48 +00006241
Chris Lattnere4e64b62006-04-02 02:53:43 +00006242 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad583abbc2010-12-07 08:25:19 +00006243 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattnere4e64b62006-04-02 02:53:43 +00006244 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad583abbc2010-12-07 08:25:19 +00006245 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Cheng6200c222008-02-18 23:04:32 +00006246 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Andrew Trickef9de2a2013-05-25 02:42:55 +00006247 return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(BV), VT,
Bill Wendlingcb9be5d2009-01-30 22:53:48 +00006248 Ops[0]);
Dan Gohmane1c4f992008-03-03 23:51:38 +00006249 OpVal = OpVal.lshr(DstBitSize);
Chris Lattnere4e64b62006-04-02 02:53:43 +00006250 }
6251
6252 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands7377f5f2008-02-11 10:37:04 +00006253 if (TLI.isBigEndian())
Chris Lattnere4e64b62006-04-02 02:53:43 +00006254 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
6255 }
Bill Wendlingcb9be5d2009-01-30 22:53:48 +00006256
Andrew Trickef9de2a2013-05-25 02:42:55 +00006257 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
Evan Chenga49de9d2009-02-25 22:49:59 +00006258 &Ops[0], Ops.size());
Chris Lattnere4e64b62006-04-02 02:53:43 +00006259}
6260
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006261SDValue DAGCombiner::visitFADD(SDNode *N) {
6262 SDValue N0 = N->getOperand(0);
6263 SDValue N1 = N->getOperand(1);
Nate Begeman418c6e42005-10-18 00:28:13 +00006264 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6265 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006266 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006267
Dan Gohmana8665142007-06-25 16:23:39 +00006268 // fold vector ops
Duncan Sands13237ac2008-06-06 12:08:01 +00006269 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006270 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00006271 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman80f9f072007-07-13 20:03:40 +00006272 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006273
Lang Hamesa33db652012-06-14 20:37:15 +00006274 // fold (fadd c1, c2) -> c1 + c2
Ulrich Weigand3abb3432012-10-29 18:35:49 +00006275 if (N0CFP && N1CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006276 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N1);
Nate Begeman418c6e42005-10-18 00:28:13 +00006277 // canonicalize constant to RHS
6278 if (N0CFP && !N1CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006279 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N1, N0);
Bill Wendlingcb9be5d2009-01-30 22:53:48 +00006280 // fold (fadd A, 0) -> A
Nick Lewycky50f02cb2011-12-02 22:16:29 +00006281 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6282 N1CFP->getValueAPF().isZero())
Dan Gohman1f3411d2009-01-22 21:58:43 +00006283 return N0;
Bill Wendlingcb9be5d2009-01-30 22:53:48 +00006284 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00006285 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem841c9a82012-09-20 08:53:31 +00006286 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006287 return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N0,
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006288 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingcb9be5d2009-01-30 22:53:48 +00006289 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00006290 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem841c9a82012-09-20 08:53:31 +00006291 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006292 return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N1,
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006293 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelcf0da6c2009-02-17 22:15:04 +00006294
Chris Lattner0199fd62007-01-08 23:04:05 +00006295 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky50f02cb2011-12-02 22:16:29 +00006296 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6297 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
6298 isa<ConstantFPSDNode>(N0.getOperand(1)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006299 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0.getOperand(0),
6300 DAG.getNode(ISD::FADD, SDLoc(N), VT,
Bill Wendlinga6c75ff2009-02-01 11:19:36 +00006301 N0.getOperand(1), N1));
Scott Michelcf0da6c2009-02-17 22:15:04 +00006302
Shuxin Yang93b1f122013-03-25 22:52:29 +00006303 // No FP constant should be created after legalization as Instruction
6304 // Selection pass has hard time in dealing with FP constant.
6305 //
6306 // We don't need test this condition for transformation like following, as
6307 // the DAG being transformed implies it is legal to take FP constant as
6308 // operand.
Stephen Lincfe7f352013-07-08 00:37:03 +00006309 //
Shuxin Yang93b1f122013-03-25 22:52:29 +00006310 // (fadd (fmul c, x), x) -> (fmul c+1, x)
Stephen Lincfe7f352013-07-08 00:37:03 +00006311 //
Shuxin Yang93b1f122013-03-25 22:52:29 +00006312 bool AllowNewFpConst = (Level < AfterLegalizeDAG);
6313
Owen Andersonb351c8d2012-11-01 02:00:53 +00006314 // If allow, fold (fadd (fneg x), x) -> 0.0
Shuxin Yang93b1f122013-03-25 22:52:29 +00006315 if (AllowNewFpConst && DAG.getTarget().Options.UnsafeFPMath &&
Stephen Lin8e8424e2013-07-09 00:44:49 +00006316 N0.getOpcode() == ISD::FNEG && N0.getOperand(0) == N1)
Owen Andersonb351c8d2012-11-01 02:00:53 +00006317 return DAG.getConstantFP(0.0, VT);
Owen Andersonb351c8d2012-11-01 02:00:53 +00006318
6319 // If allow, fold (fadd x, (fneg x)) -> 0.0
Shuxin Yang93b1f122013-03-25 22:52:29 +00006320 if (AllowNewFpConst && DAG.getTarget().Options.UnsafeFPMath &&
Stephen Lin8e8424e2013-07-09 00:44:49 +00006321 N1.getOpcode() == ISD::FNEG && N1.getOperand(0) == N0)
Owen Andersonb351c8d2012-11-01 02:00:53 +00006322 return DAG.getConstantFP(0.0, VT);
Owen Andersonb351c8d2012-11-01 02:00:53 +00006323
Owen Andersoncc61f872012-08-30 23:35:16 +00006324 // In unsafe math mode, we can fold chains of FADD's of the same value
6325 // into multiplications. This transform is not safe in general because
6326 // we are reducing the number of rounding steps.
6327 if (DAG.getTarget().Options.UnsafeFPMath &&
6328 TLI.isOperationLegalOrCustom(ISD::FMUL, VT) &&
6329 !N0CFP && !N1CFP) {
6330 if (N0.getOpcode() == ISD::FMUL) {
6331 ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
6332 ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
6333
Stephen Line31f2d22013-06-14 18:17:35 +00006334 // (fadd (fmul c, x), x) -> (fmul x, c+1)
Owen Andersoncc61f872012-08-30 23:35:16 +00006335 if (CFP00 && !CFP01 && N0.getOperand(1) == N1) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006336 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006337 SDValue(CFP00, 0),
6338 DAG.getConstantFP(1.0, VT));
Andrew Trickef9de2a2013-05-25 02:42:55 +00006339 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006340 N1, NewCFP);
6341 }
6342
Stephen Line31f2d22013-06-14 18:17:35 +00006343 // (fadd (fmul x, c), x) -> (fmul x, c+1)
Owen Andersoncc61f872012-08-30 23:35:16 +00006344 if (CFP01 && !CFP00 && N0.getOperand(0) == N1) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006345 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006346 SDValue(CFP01, 0),
6347 DAG.getConstantFP(1.0, VT));
Andrew Trickef9de2a2013-05-25 02:42:55 +00006348 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006349 N1, NewCFP);
6350 }
6351
Stephen Line31f2d22013-06-14 18:17:35 +00006352 // (fadd (fmul c, x), (fadd x, x)) -> (fmul x, c+2)
Owen Andersoncc61f872012-08-30 23:35:16 +00006353 if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD &&
6354 N1.getOperand(0) == N1.getOperand(1) &&
6355 N0.getOperand(1) == N1.getOperand(0)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006356 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006357 SDValue(CFP00, 0),
6358 DAG.getConstantFP(2.0, VT));
Andrew Trickef9de2a2013-05-25 02:42:55 +00006359 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006360 N0.getOperand(1), NewCFP);
6361 }
6362
Stephen Line31f2d22013-06-14 18:17:35 +00006363 // (fadd (fmul x, c), (fadd x, x)) -> (fmul x, c+2)
Owen Andersoncc61f872012-08-30 23:35:16 +00006364 if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD &&
6365 N1.getOperand(0) == N1.getOperand(1) &&
6366 N0.getOperand(0) == N1.getOperand(0)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006367 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006368 SDValue(CFP01, 0),
6369 DAG.getConstantFP(2.0, VT));
Andrew Trickef9de2a2013-05-25 02:42:55 +00006370 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006371 N0.getOperand(0), NewCFP);
6372 }
6373 }
6374
6375 if (N1.getOpcode() == ISD::FMUL) {
6376 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
6377 ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1));
6378
Stephen Line31f2d22013-06-14 18:17:35 +00006379 // (fadd x, (fmul c, x)) -> (fmul x, c+1)
Owen Andersoncc61f872012-08-30 23:35:16 +00006380 if (CFP10 && !CFP11 && N1.getOperand(1) == N0) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006381 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006382 SDValue(CFP10, 0),
6383 DAG.getConstantFP(1.0, VT));
Andrew Trickef9de2a2013-05-25 02:42:55 +00006384 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006385 N0, NewCFP);
6386 }
6387
Stephen Line31f2d22013-06-14 18:17:35 +00006388 // (fadd x, (fmul x, c)) -> (fmul x, c+1)
Owen Andersoncc61f872012-08-30 23:35:16 +00006389 if (CFP11 && !CFP10 && N1.getOperand(0) == N0) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006390 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006391 SDValue(CFP11, 0),
6392 DAG.getConstantFP(1.0, VT));
Andrew Trickef9de2a2013-05-25 02:42:55 +00006393 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006394 N0, NewCFP);
6395 }
6396
Owen Andersoncc61f872012-08-30 23:35:16 +00006397
Stephen Line31f2d22013-06-14 18:17:35 +00006398 // (fadd (fadd x, x), (fmul c, x)) -> (fmul x, c+2)
6399 if (CFP10 && !CFP11 && N0.getOpcode() == ISD::FADD &&
6400 N0.getOperand(0) == N0.getOperand(1) &&
6401 N1.getOperand(1) == N0.getOperand(0)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006402 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006403 SDValue(CFP10, 0),
6404 DAG.getConstantFP(2.0, VT));
Andrew Trickef9de2a2013-05-25 02:42:55 +00006405 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Stephen Line31f2d22013-06-14 18:17:35 +00006406 N1.getOperand(1), NewCFP);
Owen Andersoncc61f872012-08-30 23:35:16 +00006407 }
6408
Stephen Line31f2d22013-06-14 18:17:35 +00006409 // (fadd (fadd x, x), (fmul x, c)) -> (fmul x, c+2)
6410 if (CFP11 && !CFP10 && N0.getOpcode() == ISD::FADD &&
6411 N0.getOperand(0) == N0.getOperand(1) &&
6412 N1.getOperand(0) == N0.getOperand(0)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006413 SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006414 SDValue(CFP11, 0),
6415 DAG.getConstantFP(2.0, VT));
Andrew Trickef9de2a2013-05-25 02:42:55 +00006416 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Stephen Line31f2d22013-06-14 18:17:35 +00006417 N1.getOperand(0), NewCFP);
Owen Andersoncc61f872012-08-30 23:35:16 +00006418 }
6419 }
6420
Shuxin Yang93b1f122013-03-25 22:52:29 +00006421 if (N0.getOpcode() == ISD::FADD && AllowNewFpConst) {
Shuxin Yangcadd8a02013-02-02 00:22:03 +00006422 ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
Stephen Lin4e69d012013-06-14 21:33:58 +00006423 // (fadd (fadd x, x), x) -> (fmul x, 3.0)
Shuxin Yangcadd8a02013-02-02 00:22:03 +00006424 if (!CFP && N0.getOperand(0) == N0.getOperand(1) &&
Stephen Lin8e8424e2013-07-09 00:44:49 +00006425 (N0.getOperand(0) == N1))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006426 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Shuxin Yangcadd8a02013-02-02 00:22:03 +00006427 N1, DAG.getConstantFP(3.0, VT));
Shuxin Yangcadd8a02013-02-02 00:22:03 +00006428 }
6429
Shuxin Yang93b1f122013-03-25 22:52:29 +00006430 if (N1.getOpcode() == ISD::FADD && AllowNewFpConst) {
Shuxin Yangcadd8a02013-02-02 00:22:03 +00006431 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
Stephen Lin4e69d012013-06-14 21:33:58 +00006432 // (fadd x, (fadd x, x)) -> (fmul x, 3.0)
Shuxin Yangcadd8a02013-02-02 00:22:03 +00006433 if (!CFP10 && N1.getOperand(0) == N1.getOperand(1) &&
Stephen Lin8e8424e2013-07-09 00:44:49 +00006434 N1.getOperand(0) == N0)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006435 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Shuxin Yangcadd8a02013-02-02 00:22:03 +00006436 N0, DAG.getConstantFP(3.0, VT));
Shuxin Yangcadd8a02013-02-02 00:22:03 +00006437 }
6438
Stephen Lin4e69d012013-06-14 21:33:58 +00006439 // (fadd (fadd x, x), (fadd x, x)) -> (fmul x, 4.0)
Shuxin Yang93b1f122013-03-25 22:52:29 +00006440 if (AllowNewFpConst &&
6441 N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD &&
Owen Andersoncc61f872012-08-30 23:35:16 +00006442 N0.getOperand(0) == N0.getOperand(1) &&
6443 N1.getOperand(0) == N1.getOperand(1) &&
Stephen Lin8e8424e2013-07-09 00:44:49 +00006444 N0.getOperand(0) == N1.getOperand(0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006445 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Andersoncc61f872012-08-30 23:35:16 +00006446 N0.getOperand(0),
6447 DAG.getConstantFP(4.0, VT));
Owen Andersoncc61f872012-08-30 23:35:16 +00006448 }
6449
Lang Hames39fb1d02012-06-19 22:51:23 +00006450 // FADD -> FMA combines:
Lang Hamesb8650f12012-06-22 01:09:09 +00006451 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hames39fb1d02012-06-19 22:51:23 +00006452 DAG.getTarget().Options.UnsafeFPMath) &&
Stephen Lin73de7bf2013-07-09 18:16:56 +00006453 DAG.getTarget().getTargetLowering()->isFMAFasterThanFMulAndFAdd(VT) &&
6454 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT))) {
Lang Hames39fb1d02012-06-19 22:51:23 +00006455
6456 // fold (fadd (fmul x, y), z) -> (fma x, y, z)
Stephen Lin8e8424e2013-07-09 00:44:49 +00006457 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse())
Andrew Trickef9de2a2013-05-25 02:42:55 +00006458 return DAG.getNode(ISD::FMA, SDLoc(N), VT,
Lang Hames39fb1d02012-06-19 22:51:23 +00006459 N0.getOperand(0), N0.getOperand(1), N1);
Owen Andersoncc61f872012-08-30 23:35:16 +00006460
Michael Liaoec3850122012-09-01 04:09:16 +00006461 // fold (fadd x, (fmul y, z)) -> (fma y, z, x)
Lang Hames39fb1d02012-06-19 22:51:23 +00006462 // Note: Commutes FADD operands.
Stephen Lin8e8424e2013-07-09 00:44:49 +00006463 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse())
Andrew Trickef9de2a2013-05-25 02:42:55 +00006464 return DAG.getNode(ISD::FMA, SDLoc(N), VT,
Lang Hames39fb1d02012-06-19 22:51:23 +00006465 N1.getOperand(0), N1.getOperand(1), N0);
Lang Hames39fb1d02012-06-19 22:51:23 +00006466 }
6467
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006468 return SDValue();
Chris Lattner6f3b5772005-09-28 22:28:18 +00006469}
6470
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006471SDValue DAGCombiner::visitFSUB(SDNode *N) {
6472 SDValue N0 = N->getOperand(0);
6473 SDValue N1 = N->getOperand(1);
Nate Begeman418c6e42005-10-18 00:28:13 +00006474 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6475 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006476 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00006477 SDLoc dl(N);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006478
Dan Gohmana8665142007-06-25 16:23:39 +00006479 // fold vector ops
Duncan Sands13237ac2008-06-06 12:08:01 +00006480 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006481 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00006482 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman80f9f072007-07-13 20:03:40 +00006483 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006484
Nate Begeman418c6e42005-10-18 00:28:13 +00006485 // fold (fsub c1, c2) -> c1-c2
Ulrich Weigand3abb3432012-10-29 18:35:49 +00006486 if (N0CFP && N1CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006487 return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N0, N1);
Bill Wendlingcb9be5d2009-01-30 22:53:48 +00006488 // fold (fsub A, 0) -> A
Nick Lewycky50f02cb2011-12-02 22:16:29 +00006489 if (DAG.getTarget().Options.UnsafeFPMath &&
6490 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman1275e282009-01-23 19:10:37 +00006491 return N0;
Bill Wendlingcb9be5d2009-01-30 22:53:48 +00006492 // fold (fsub 0, B) -> -B
Nick Lewycky50f02cb2011-12-02 22:16:29 +00006493 if (DAG.getTarget().Options.UnsafeFPMath &&
6494 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00006495 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006496 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman1f3411d2009-01-22 21:58:43 +00006497 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Elena Demikhovsky3cb3b002012-08-01 12:06:00 +00006498 return DAG.getNode(ISD::FNEG, dl, VT, N1);
Dan Gohman9a708232007-07-02 15:48:56 +00006499 }
Bill Wendlingcb9be5d2009-01-30 22:53:48 +00006500 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00006501 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Elena Demikhovsky3cb3b002012-08-01 12:06:00 +00006502 return DAG.getNode(ISD::FADD, dl, VT, N0,
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006503 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelcf0da6c2009-02-17 22:15:04 +00006504
Bill Wendlingdf170db2012-03-15 05:12:00 +00006505 // If 'unsafe math' is enabled, fold
Owen Andersonab63d842012-05-07 20:51:25 +00006506 // (fsub x, x) -> 0.0 &
Bill Wendlingdf170db2012-03-15 05:12:00 +00006507 // (fsub x, (fadd x, y)) -> (fneg y) &
6508 // (fsub x, (fadd y, x)) -> (fneg y)
6509 if (DAG.getTarget().Options.UnsafeFPMath) {
Owen Andersonab63d842012-05-07 20:51:25 +00006510 if (N0 == N1)
6511 return DAG.getConstantFP(0.0f, VT);
6512
Bill Wendlingdf170db2012-03-15 05:12:00 +00006513 if (N1.getOpcode() == ISD::FADD) {
6514 SDValue N10 = N1->getOperand(0);
6515 SDValue N11 = N1->getOperand(1);
6516
6517 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
6518 &DAG.getTarget().Options))
6519 return GetNegatedExpression(N11, DAG, LegalOperations);
Stephen Lin10947502013-07-10 20:47:39 +00006520
Stephen Lin8e8424e2013-07-09 00:44:49 +00006521 if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
6522 &DAG.getTarget().Options))
Bill Wendlingdf170db2012-03-15 05:12:00 +00006523 return GetNegatedExpression(N10, DAG, LegalOperations);
6524 }
6525 }
6526
Lang Hames39fb1d02012-06-19 22:51:23 +00006527 // FSUB -> FMA combines:
Lang Hamesb8650f12012-06-22 01:09:09 +00006528 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hames39fb1d02012-06-19 22:51:23 +00006529 DAG.getTarget().Options.UnsafeFPMath) &&
Stephen Lin73de7bf2013-07-09 18:16:56 +00006530 DAG.getTarget().getTargetLowering()->isFMAFasterThanFMulAndFAdd(VT) &&
6531 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT))) {
Lang Hames39fb1d02012-06-19 22:51:23 +00006532
6533 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z))
Stephen Lin8e8424e2013-07-09 00:44:49 +00006534 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse())
Elena Demikhovsky3cb3b002012-08-01 12:06:00 +00006535 return DAG.getNode(ISD::FMA, dl, VT,
Lang Hames39fb1d02012-06-19 22:51:23 +00006536 N0.getOperand(0), N0.getOperand(1),
Elena Demikhovsky3cb3b002012-08-01 12:06:00 +00006537 DAG.getNode(ISD::FNEG, dl, VT, N1));
Lang Hames39fb1d02012-06-19 22:51:23 +00006538
6539 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x)
6540 // Note: Commutes FSUB operands.
Stephen Lin10947502013-07-10 20:47:39 +00006541 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse())
Elena Demikhovsky3cb3b002012-08-01 12:06:00 +00006542 return DAG.getNode(ISD::FMA, dl, VT,
6543 DAG.getNode(ISD::FNEG, dl, VT,
Lang Hames39fb1d02012-06-19 22:51:23 +00006544 N1.getOperand(0)),
6545 N1.getOperand(1), N0);
Elena Demikhovsky3cb3b002012-08-01 12:06:00 +00006546
Stephen Lin8e8424e2013-07-09 00:44:49 +00006547 // fold (fsub (fneg (fmul, x, y)), z) -> (fma (fneg x), y, (fneg z))
Stephen Lincfe7f352013-07-08 00:37:03 +00006548 if (N0.getOpcode() == ISD::FNEG &&
Elena Demikhovsky3cb3b002012-08-01 12:06:00 +00006549 N0.getOperand(0).getOpcode() == ISD::FMUL &&
6550 N0->hasOneUse() && N0.getOperand(0).hasOneUse()) {
6551 SDValue N00 = N0.getOperand(0).getOperand(0);
6552 SDValue N01 = N0.getOperand(0).getOperand(1);
6553 return DAG.getNode(ISD::FMA, dl, VT,
6554 DAG.getNode(ISD::FNEG, dl, VT, N00), N01,
6555 DAG.getNode(ISD::FNEG, dl, VT, N1));
6556 }
Lang Hames39fb1d02012-06-19 22:51:23 +00006557 }
6558
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006559 return SDValue();
Chris Lattner6f3b5772005-09-28 22:28:18 +00006560}
6561
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006562SDValue DAGCombiner::visitFMUL(SDNode *N) {
6563 SDValue N0 = N->getOperand(0);
6564 SDValue N1 = N->getOperand(1);
Nate Begemanec48a1b2005-10-17 20:40:11 +00006565 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6566 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006567 EVT VT = N->getValueType(0);
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00006568 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner6f3b5772005-09-28 22:28:18 +00006569
Dan Gohmana8665142007-06-25 16:23:39 +00006570 // fold vector ops
Duncan Sands13237ac2008-06-06 12:08:01 +00006571 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006572 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00006573 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman80f9f072007-07-13 20:03:40 +00006574 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006575
Nate Begemanec48a1b2005-10-17 20:40:11 +00006576 // fold (fmul c1, c2) -> c1*c2
Ulrich Weigand3abb3432012-10-29 18:35:49 +00006577 if (N0CFP && N1CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006578 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0, N1);
Nate Begemanec48a1b2005-10-17 20:40:11 +00006579 // canonicalize constant to RHS
Nate Begeman418c6e42005-10-18 00:28:13 +00006580 if (N0CFP && !N1CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006581 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N1, N0);
Bill Wendling3dc5d242009-01-30 22:57:07 +00006582 // fold (fmul A, 0) -> 0
Nick Lewycky50f02cb2011-12-02 22:16:29 +00006583 if (DAG.getTarget().Options.UnsafeFPMath &&
6584 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman1f3411d2009-01-22 21:58:43 +00006585 return N1;
Dan Gohman7b6b5dd2009-06-04 17:12:12 +00006586 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00006587 if (DAG.getTarget().Options.UnsafeFPMath &&
6588 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman7b6b5dd2009-06-04 17:12:12 +00006589 return N1;
Owen Andersonb5f167c2012-05-02 21:32:35 +00006590 // fold (fmul A, 1.0) -> A
6591 if (N1CFP && N1CFP->isExactlyValue(1.0))
6592 return N0;
Nate Begemanec48a1b2005-10-17 20:40:11 +00006593 // fold (fmul X, 2.0) -> (fadd X, X)
6594 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006595 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N0);
Dan Gohmanb7170912009-08-10 16:50:32 +00006596 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattnere49c9742007-05-14 22:04:50 +00006597 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman1f3411d2009-01-22 21:58:43 +00006598 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006599 return DAG.getNode(ISD::FNEG, SDLoc(N), VT, N0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006600
Bill Wendling3dc5d242009-01-30 22:57:07 +00006601 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00006602 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky50f02cb2011-12-02 22:16:29 +00006603 &DAG.getTarget().Options)) {
Stephen Lincfe7f352013-07-08 00:37:03 +00006604 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky50f02cb2011-12-02 22:16:29 +00006605 &DAG.getTarget().Options)) {
Chris Lattnere49c9742007-05-14 22:04:50 +00006606 // Both can be negated for free, check to see if at least one is cheaper
6607 // negated.
6608 if (LHSNeg == 2 || RHSNeg == 2)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006609 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006610 GetNegatedExpression(N0, DAG, LegalOperations),
6611 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattnere49c9742007-05-14 22:04:50 +00006612 }
6613 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006614
Chris Lattner0199fd62007-01-08 23:04:05 +00006615 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky50f02cb2011-12-02 22:16:29 +00006616 if (DAG.getTarget().Options.UnsafeFPMath &&
6617 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00006618 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006619 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0.getOperand(0),
6620 DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Dale Johannesen400dc2e2009-02-06 21:50:26 +00006621 N0.getOperand(1), N1));
Scott Michelcf0da6c2009-02-17 22:15:04 +00006622
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006623 return SDValue();
Chris Lattner6f3b5772005-09-28 22:28:18 +00006624}
6625
Owen Anderson41b06652012-05-02 22:17:40 +00006626SDValue DAGCombiner::visitFMA(SDNode *N) {
6627 SDValue N0 = N->getOperand(0);
6628 SDValue N1 = N->getOperand(1);
6629 SDValue N2 = N->getOperand(2);
6630 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6631 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6632 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00006633 SDLoc dl(N);
Owen Anderson41b06652012-05-02 22:17:40 +00006634
Owen Andersonb351c8d2012-11-01 02:00:53 +00006635 if (DAG.getTarget().Options.UnsafeFPMath) {
6636 if (N0CFP && N0CFP->isZero())
6637 return N2;
6638 if (N1CFP && N1CFP->isZero())
6639 return N2;
6640 }
Owen Anderson41b06652012-05-02 22:17:40 +00006641 if (N0CFP && N0CFP->isExactlyValue(1.0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006642 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N1, N2);
Owen Anderson41b06652012-05-02 22:17:40 +00006643 if (N1CFP && N1CFP->isExactlyValue(1.0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006644 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N2);
Owen Anderson41b06652012-05-02 22:17:40 +00006645
Owen Andersonc7aaf522012-05-30 18:50:39 +00006646 // Canonicalize (fma c, x, y) -> (fma x, c, y)
Owen Anderson0eda3e12012-05-30 18:54:50 +00006647 if (N0CFP && !N1CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006648 return DAG.getNode(ISD::FMA, SDLoc(N), VT, N1, N0, N2);
Owen Andersonc7aaf522012-05-30 18:50:39 +00006649
Owen Anderson90e0eaf2012-09-01 06:04:27 +00006650 // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2)
6651 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6652 N2.getOpcode() == ISD::FMUL &&
6653 N0 == N2.getOperand(0) &&
6654 N2.getOperand(1).getOpcode() == ISD::ConstantFP) {
6655 return DAG.getNode(ISD::FMUL, dl, VT, N0,
6656 DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1)));
6657 }
6658
6659
6660 // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y)
6661 if (DAG.getTarget().Options.UnsafeFPMath &&
6662 N0.getOpcode() == ISD::FMUL && N1CFP &&
6663 N0.getOperand(1).getOpcode() == ISD::ConstantFP) {
6664 return DAG.getNode(ISD::FMA, dl, VT,
6665 N0.getOperand(0),
6666 DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)),
6667 N2);
6668 }
6669
6670 // (fma x, 1, y) -> (fadd x, y)
6671 // (fma x, -1, y) -> (fadd (fneg x), y)
6672 if (N1CFP) {
6673 if (N1CFP->isExactlyValue(1.0))
6674 return DAG.getNode(ISD::FADD, dl, VT, N0, N2);
6675
6676 if (N1CFP->isExactlyValue(-1.0) &&
6677 (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) {
6678 SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0);
6679 AddToWorkList(RHSNeg.getNode());
6680 return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg);
6681 }
6682 }
6683
6684 // (fma x, c, x) -> (fmul x, (c+1))
Stephen Lin8e8424e2013-07-09 00:44:49 +00006685 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2)
6686 return DAG.getNode(ISD::FMUL, dl, VT, N0,
Owen Anderson90e0eaf2012-09-01 06:04:27 +00006687 DAG.getNode(ISD::FADD, dl, VT,
6688 N1, DAG.getConstantFP(1.0, VT)));
Owen Anderson90e0eaf2012-09-01 06:04:27 +00006689
6690 // (fma x, c, (fneg x)) -> (fmul x, (c-1))
6691 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
Stephen Lin8e8424e2013-07-09 00:44:49 +00006692 N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0)
6693 return DAG.getNode(ISD::FMUL, dl, VT, N0,
Owen Anderson90e0eaf2012-09-01 06:04:27 +00006694 DAG.getNode(ISD::FADD, dl, VT,
6695 N1, DAG.getConstantFP(-1.0, VT)));
Owen Anderson90e0eaf2012-09-01 06:04:27 +00006696
6697
Owen Anderson41b06652012-05-02 22:17:40 +00006698 return SDValue();
6699}
6700
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006701SDValue DAGCombiner::visitFDIV(SDNode *N) {
6702 SDValue N0 = N->getOperand(0);
6703 SDValue N1 = N->getOperand(1);
Nate Begeman569c4392006-01-18 22:35:16 +00006704 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6705 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006706 EVT VT = N->getValueType(0);
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00006707 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner6f3b5772005-09-28 22:28:18 +00006708
Dan Gohmana8665142007-06-25 16:23:39 +00006709 // fold vector ops
Duncan Sands13237ac2008-06-06 12:08:01 +00006710 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006711 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +00006712 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman80f9f072007-07-13 20:03:40 +00006713 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006714
Nate Begeman569c4392006-01-18 22:35:16 +00006715 // fold (fdiv c1, c2) -> c1/c2
Ulrich Weigand3abb3432012-10-29 18:35:49 +00006716 if (N0CFP && N1CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006717 return DAG.getNode(ISD::FDIV, SDLoc(N), VT, N0, N1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006718
Duncan Sands2f1dc382012-04-08 18:08:12 +00006719 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
Ulrich Weigand3abb3432012-10-29 18:35:49 +00006720 if (N1CFP && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands5f8397a2012-04-07 20:04:00 +00006721 // Compute the reciprocal 1.0 / c2.
6722 APFloat N1APF = N1CFP->getValueAPF();
6723 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
6724 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands4f530742012-04-10 20:35:27 +00006725 // Only do the transform if the reciprocal is a legal fp immediate that
6726 // isn't too nasty (eg NaN, denormal, ...).
6727 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov4d1220d2012-04-10 13:22:49 +00006728 (!LegalOperations ||
6729 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
6730 // backend)... we should handle this gracefully after Legalize.
6731 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
6732 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
6733 TLI.isFPImmLegal(Recip, VT)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006734 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0,
Duncan Sands5f8397a2012-04-07 20:04:00 +00006735 DAG.getConstantFP(Recip, VT));
6736 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006737
Bill Wendling3dc5d242009-01-30 22:57:07 +00006738 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00006739 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky50f02cb2011-12-02 22:16:29 +00006740 &DAG.getTarget().Options)) {
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00006741 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky50f02cb2011-12-02 22:16:29 +00006742 &DAG.getTarget().Options)) {
Chris Lattnere49c9742007-05-14 22:04:50 +00006743 // Both can be negated for free, check to see if at least one is cheaper
6744 // negated.
6745 if (LHSNeg == 2 || RHSNeg == 2)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006746 return DAG.getNode(ISD::FDIV, SDLoc(N), VT,
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006747 GetNegatedExpression(N0, DAG, LegalOperations),
6748 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattnere49c9742007-05-14 22:04:50 +00006749 }
6750 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006751
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006752 return SDValue();
Chris Lattner6f3b5772005-09-28 22:28:18 +00006753}
6754
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006755SDValue DAGCombiner::visitFREM(SDNode *N) {
6756 SDValue N0 = N->getOperand(0);
6757 SDValue N1 = N->getOperand(1);
Nate Begeman569c4392006-01-18 22:35:16 +00006758 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6759 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006760 EVT VT = N->getValueType(0);
Chris Lattner6f3b5772005-09-28 22:28:18 +00006761
Nate Begeman569c4392006-01-18 22:35:16 +00006762 // fold (frem c1, c2) -> fmod(c1,c2)
Ulrich Weigand3abb3432012-10-29 18:35:49 +00006763 if (N0CFP && N1CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006764 return DAG.getNode(ISD::FREM, SDLoc(N), VT, N0, N1);
Dan Gohmana8665142007-06-25 16:23:39 +00006765
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006766 return SDValue();
Chris Lattner6f3b5772005-09-28 22:28:18 +00006767}
6768
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006769SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
6770 SDValue N0 = N->getOperand(0);
6771 SDValue N1 = N->getOperand(1);
Chris Lattner3bc40502006-03-05 05:30:57 +00006772 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6773 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006774 EVT VT = N->getValueType(0);
Chris Lattner3bc40502006-03-05 05:30:57 +00006775
Ulrich Weigand3abb3432012-10-29 18:35:49 +00006776 if (N0CFP && N1CFP) // Constant fold
Andrew Trickef9de2a2013-05-25 02:42:55 +00006777 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0, N1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006778
Chris Lattner3bc40502006-03-05 05:30:57 +00006779 if (N1CFP) {
Dale Johannesenb6d2bec2007-08-26 01:18:27 +00006780 const APFloat& V = N1CFP->getValueAPF();
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00006781 // copysign(x, c1) -> fabs(x) iff ispos(c1)
6782 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman1f3411d2009-01-22 21:58:43 +00006783 if (!V.isNegative()) {
6784 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006785 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
Dan Gohman1f3411d2009-01-22 21:58:43 +00006786 } else {
6787 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006788 return DAG.getNode(ISD::FNEG, SDLoc(N), VT,
6789 DAG.getNode(ISD::FABS, SDLoc(N0), VT, N0));
Dan Gohman1f3411d2009-01-22 21:58:43 +00006790 }
Chris Lattner3bc40502006-03-05 05:30:57 +00006791 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006792
Chris Lattner3bc40502006-03-05 05:30:57 +00006793 // copysign(fabs(x), y) -> copysign(x, y)
6794 // copysign(fneg(x), y) -> copysign(x, y)
6795 // copysign(copysign(x,z), y) -> copysign(x, y)
6796 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
6797 N0.getOpcode() == ISD::FCOPYSIGN)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006798 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0bd29742009-01-30 23:15:49 +00006799 N0.getOperand(0), N1);
Chris Lattner3bc40502006-03-05 05:30:57 +00006800
6801 // copysign(x, abs(y)) -> abs(x)
6802 if (N1.getOpcode() == ISD::FABS)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006803 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006804
Chris Lattner3bc40502006-03-05 05:30:57 +00006805 // copysign(x, copysign(y,z)) -> copysign(x, z)
6806 if (N1.getOpcode() == ISD::FCOPYSIGN)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006807 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0bd29742009-01-30 23:15:49 +00006808 N0, N1.getOperand(1));
Scott Michelcf0da6c2009-02-17 22:15:04 +00006809
Chris Lattner3bc40502006-03-05 05:30:57 +00006810 // copysign(x, fp_extend(y)) -> copysign(x, y)
6811 // copysign(x, fp_round(y)) -> copysign(x, y)
6812 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006813 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0bd29742009-01-30 23:15:49 +00006814 N0, N1.getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00006815
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006816 return SDValue();
Chris Lattner3bc40502006-03-05 05:30:57 +00006817}
6818
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006819SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
6820 SDValue N0 = N->getOperand(0);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00006821 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006822 EVT VT = N->getValueType(0);
6823 EVT OpVT = N0.getValueType();
Chris Lattnerb1e66ce2008-06-26 00:16:49 +00006824
Nate Begeman21158fc2005-09-01 00:19:25 +00006825 // fold (sint_to_fp c1) -> c1fp
Ulrich Weigand3abb3432012-10-29 18:35:49 +00006826 if (N0C &&
Stuart Hastings6b4007d2011-03-02 19:36:30 +00006827 // ...but only if the target supports immediate floating-point values
Eli Friedman9d448e42011-11-12 00:35:34 +00006828 (!LegalOperations ||
Evan Cheng4c0bd962011-06-21 06:01:08 +00006829 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006830 return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006831
Chris Lattnerb1e66ce2008-06-26 00:16:49 +00006832 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
6833 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohman4aa18462009-01-28 17:46:25 +00006834 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
6835 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00006836 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnerb1e66ce2008-06-26 00:16:49 +00006837 if (DAG.SignBitIsZero(N0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006838 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0);
Chris Lattnerb1e66ce2008-06-26 00:16:49 +00006839 }
Bill Wendling0bd29742009-01-30 23:15:49 +00006840
Alp Tokercb402912014-01-24 17:20:08 +00006841 // The next optimizations are desirable only if SELECT_CC can be lowered.
Nadav Rotem90560762012-07-23 07:59:50 +00006842 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6843 // having to say they don't support SELECT_CC on every type the DAG knows
6844 // about, since there is no way to mark an opcode illegal at all value types
6845 // (See also visitSELECT)
6846 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6847 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6848 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 &&
6849 !VT.isVector() &&
6850 (!LegalOperations ||
6851 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6852 SDValue Ops[] =
6853 { N0.getOperand(0), N0.getOperand(1),
6854 DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT),
6855 N0.getOperand(2) };
Andrew Trickef9de2a2013-05-25 02:42:55 +00006856 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
Nadav Rotem90560762012-07-23 07:59:50 +00006857 }
Owen Andersond4b841f2012-07-09 20:31:12 +00006858
Nadav Rotem90560762012-07-23 07:59:50 +00006859 // fold (sint_to_fp (zext (setcc x, y, cc))) ->
6860 // (select_cc x, y, 1.0, 0.0,, cc)
6861 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
6862 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() &&
6863 (!LegalOperations ||
6864 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6865 SDValue Ops[] =
6866 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1),
6867 DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT),
6868 N0.getOperand(0).getOperand(2) };
Andrew Trickef9de2a2013-05-25 02:42:55 +00006869 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
Nadav Rotem90560762012-07-23 07:59:50 +00006870 }
Owen Andersond4b841f2012-07-09 20:31:12 +00006871 }
6872
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006873 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00006874}
6875
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006876SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
6877 SDValue N0 = N->getOperand(0);
Nate Begeman7cea6ef2005-09-02 21:18:40 +00006878 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006879 EVT VT = N->getValueType(0);
6880 EVT OpVT = N0.getValueType();
Nate Begeman569c4392006-01-18 22:35:16 +00006881
Nate Begeman21158fc2005-09-01 00:19:25 +00006882 // fold (uint_to_fp c1) -> c1fp
Ulrich Weigand3abb3432012-10-29 18:35:49 +00006883 if (N0C &&
Stuart Hastings6b4007d2011-03-02 19:36:30 +00006884 // ...but only if the target supports immediate floating-point values
Eli Friedman9d448e42011-11-12 00:35:34 +00006885 (!LegalOperations ||
Evan Cheng4c0bd962011-06-21 06:01:08 +00006886 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006887 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006888
Chris Lattnerb1e66ce2008-06-26 00:16:49 +00006889 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6890 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohman4aa18462009-01-28 17:46:25 +00006891 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6892 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00006893 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnerb1e66ce2008-06-26 00:16:49 +00006894 if (DAG.SignBitIsZero(N0))
Andrew Trickef9de2a2013-05-25 02:42:55 +00006895 return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0);
Chris Lattnerb1e66ce2008-06-26 00:16:49 +00006896 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006897
Alp Tokercb402912014-01-24 17:20:08 +00006898 // The next optimizations are desirable only if SELECT_CC can be lowered.
Nadav Rotem90560762012-07-23 07:59:50 +00006899 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6900 // having to say they don't support SELECT_CC on every type the DAG knows
6901 // about, since there is no way to mark an opcode illegal at all value types
6902 // (See also visitSELECT)
6903 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6904 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
Owen Andersond4b841f2012-07-09 20:31:12 +00006905
Nadav Rotem90560762012-07-23 07:59:50 +00006906 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() &&
6907 (!LegalOperations ||
6908 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6909 SDValue Ops[] =
6910 { N0.getOperand(0), N0.getOperand(1),
6911 DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT),
6912 N0.getOperand(2) };
Andrew Trickef9de2a2013-05-25 02:42:55 +00006913 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
Nadav Rotem90560762012-07-23 07:59:50 +00006914 }
6915 }
Owen Andersond4b841f2012-07-09 20:31:12 +00006916
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006917 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00006918}
6919
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006920SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
6921 SDValue N0 = N->getOperand(0);
Nate Begeman569c4392006-01-18 22:35:16 +00006922 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006923 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006924
Nate Begeman21158fc2005-09-01 00:19:25 +00006925 // fold (fp_to_sint c1fp) -> c1
Nate Begeman7cea6ef2005-09-02 21:18:40 +00006926 if (N0CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006927 return DAG.getNode(ISD::FP_TO_SINT, SDLoc(N), VT, N0);
Bill Wendling0bd29742009-01-30 23:15:49 +00006928
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006929 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00006930}
6931
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006932SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
6933 SDValue N0 = N->getOperand(0);
Nate Begeman569c4392006-01-18 22:35:16 +00006934 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006935 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006936
Nate Begeman21158fc2005-09-01 00:19:25 +00006937 // fold (fp_to_uint c1fp) -> c1
Ulrich Weigand3abb3432012-10-29 18:35:49 +00006938 if (N0CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006939 return DAG.getNode(ISD::FP_TO_UINT, SDLoc(N), VT, N0);
Bill Wendling0bd29742009-01-30 23:15:49 +00006940
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006941 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00006942}
6943
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006944SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
6945 SDValue N0 = N->getOperand(0);
6946 SDValue N1 = N->getOperand(1);
Nate Begeman569c4392006-01-18 22:35:16 +00006947 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006948 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006949
Nate Begeman21158fc2005-09-01 00:19:25 +00006950 // fold (fp_round c1fp) -> c1fp
Ulrich Weigand3abb3432012-10-29 18:35:49 +00006951 if (N0CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006952 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, N0, N1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006953
Chris Lattner8bb6cb72006-03-13 06:26:26 +00006954 // fold (fp_round (fp_extend x)) -> x
6955 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
6956 return N0.getOperand(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006957
Chris Lattner0feb1b02008-01-24 06:45:35 +00006958 // fold (fp_round (fp_round x)) -> (fp_round x)
6959 if (N0.getOpcode() == ISD::FP_ROUND) {
6960 // This is a value preserving truncation if both round's are.
6961 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00006962 N0.getNode()->getConstantOperandVal(1) == 1;
Andrew Trickef9de2a2013-05-25 02:42:55 +00006963 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, N0.getOperand(0),
Chris Lattner0feb1b02008-01-24 06:45:35 +00006964 DAG.getIntPtrConstant(IsTrunc));
6965 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006966
Chris Lattner8bb6cb72006-03-13 06:26:26 +00006967 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greiff304a7a2008-08-28 21:40:38 +00006968 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006969 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, SDLoc(N0), VT,
Bill Wendling0bd29742009-01-30 23:15:49 +00006970 N0.getOperand(0), N1);
Gabor Greiff304a7a2008-08-28 21:40:38 +00006971 AddToWorkList(Tmp.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00006972 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
Bill Wendling0bd29742009-01-30 23:15:49 +00006973 Tmp, N0.getOperand(1));
Chris Lattner8bb6cb72006-03-13 06:26:26 +00006974 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006975
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006976 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00006977}
6978
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006979SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6980 SDValue N0 = N->getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006981 EVT VT = N->getValueType(0);
6982 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman7cea6ef2005-09-02 21:18:40 +00006983 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006984
Nate Begeman21158fc2005-09-01 00:19:25 +00006985 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner4041ab62010-04-15 04:48:01 +00006986 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohmanec270fb2008-09-12 18:08:03 +00006987 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00006988 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, Round);
Nate Begeman21158fc2005-09-01 00:19:25 +00006989 }
Bill Wendling0bd29742009-01-30 23:15:49 +00006990
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006991 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00006992}
6993
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006994SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6995 SDValue N0 = N->getOperand(0);
Nate Begeman569c4392006-01-18 22:35:16 +00006996 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006997 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006998
Chris Lattner5919b482007-12-29 06:55:23 +00006999 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007000 if (N->hasOneUse() &&
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00007001 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007002 return SDValue();
Chris Lattner72733e52008-01-17 07:00:52 +00007003
Nate Begeman21158fc2005-09-01 00:19:25 +00007004 // fold (fp_extend c1fp) -> c1fp
Ulrich Weigand3abb3432012-10-29 18:35:49 +00007005 if (N0CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00007006 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, N0);
Chris Lattner72733e52008-01-17 07:00:52 +00007007
7008 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
7009 // value of X.
Gabor Greife12264b2008-08-30 19:29:20 +00007010 if (N0.getOpcode() == ISD::FP_ROUND
7011 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007012 SDValue In = N0.getOperand(0);
Chris Lattner72733e52008-01-17 07:00:52 +00007013 if (In.getValueType() == VT) return In;
Duncan Sands11dd4242008-06-08 20:54:56 +00007014 if (VT.bitsLT(In.getValueType()))
Andrew Trickef9de2a2013-05-25 02:42:55 +00007015 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT,
Bill Wendling0bd29742009-01-30 23:15:49 +00007016 In, N0.getOperand(1));
Andrew Trickef9de2a2013-05-25 02:42:55 +00007017 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, In);
Chris Lattner72733e52008-01-17 07:00:52 +00007018 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007019
Chris Lattner72733e52008-01-17 07:00:52 +00007020 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Hal Finkeldbc7a8a2013-10-04 22:18:12 +00007021 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00007022 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng07d53b12008-10-14 21:26:46 +00007023 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Chenge71fe34d2006-10-09 20:57:25 +00007024 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00007025 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT,
Bill Wendling0bd29742009-01-30 23:15:49 +00007026 LN0->getChain(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00007027 LN0->getBasePtr(), N0.getValueType(),
7028 LN0->getMemOperand());
Chris Lattner3d265772006-05-05 21:34:35 +00007029 CombineTo(N, ExtLoad);
Bill Wendling0bd29742009-01-30 23:15:49 +00007030 CombineTo(N0.getNode(),
Andrew Trickef9de2a2013-05-25 02:42:55 +00007031 DAG.getNode(ISD::FP_ROUND, SDLoc(N0),
Bill Wendling0bd29742009-01-30 23:15:49 +00007032 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattner3d265772006-05-05 21:34:35 +00007033 ExtLoad.getValue(1));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007034 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3d265772006-05-05 21:34:35 +00007035 }
Duncan Sands8651e9c2008-06-13 19:07:40 +00007036
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007037 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00007038}
7039
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007040SDValue DAGCombiner::visitFNEG(SDNode *N) {
7041 SDValue N0 = N->getOperand(0);
Anton Korobeynikova6faf602009-10-20 21:37:45 +00007042 EVT VT = N->getValueType(0);
Nate Begeman569c4392006-01-18 22:35:16 +00007043
Craig Topper82384612012-09-11 01:45:21 +00007044 if (VT.isVector()) {
7045 SDValue FoldedVOp = SimplifyVUnaryOp(N);
7046 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper03f39772012-09-09 22:58:45 +00007047 }
7048
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00007049 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
7050 &DAG.getTarget().Options))
Duncan Sandsdc2dac12008-11-24 14:53:14 +00007051 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman9a708232007-07-02 15:48:56 +00007052
Chris Lattner888560d2008-01-27 17:42:27 +00007053 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
7054 // constant pool values.
Owen Anderson98f2c0c2012-04-02 22:10:29 +00007055 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikova6faf602009-10-20 21:37:45 +00007056 !VT.isVector() &&
7057 N0.getNode()->hasOneUse() &&
7058 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007059 SDValue Int = N0.getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00007060 EVT IntVT = Int.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00007061 if (IntVT.isInteger() && !IntVT.isVector()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00007062 Int = DAG.getNode(ISD::XOR, SDLoc(N0), IntVT, Int,
Duncan Sands3ed76882009-02-01 18:06:53 +00007063 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greiff304a7a2008-08-28 21:40:38 +00007064 AddToWorkList(Int.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00007065 return DAG.getNode(ISD::BITCAST, SDLoc(N),
Anton Korobeynikova6faf602009-10-20 21:37:45 +00007066 VT, Int);
Chris Lattner888560d2008-01-27 17:42:27 +00007067 }
7068 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007069
Owen Anderson90e0eaf2012-09-01 06:04:27 +00007070 // (fneg (fmul c, x)) -> (fmul -c, x)
7071 if (N0.getOpcode() == ISD::FMUL) {
7072 ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
Stephen Lin8e8424e2013-07-09 00:44:49 +00007073 if (CFP1)
Andrew Trickef9de2a2013-05-25 02:42:55 +00007074 return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
Owen Anderson90e0eaf2012-09-01 06:04:27 +00007075 N0.getOperand(0),
Andrew Trickef9de2a2013-05-25 02:42:55 +00007076 DAG.getNode(ISD::FNEG, SDLoc(N), VT,
Owen Anderson90e0eaf2012-09-01 06:04:27 +00007077 N0.getOperand(1)));
Owen Anderson90e0eaf2012-09-01 06:04:27 +00007078 }
7079
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007080 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00007081}
7082
Owen Andersona40319b2012-08-13 23:32:49 +00007083SDValue DAGCombiner::visitFCEIL(SDNode *N) {
7084 SDValue N0 = N->getOperand(0);
7085 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
7086 EVT VT = N->getValueType(0);
7087
7088 // fold (fceil c1) -> fceil(c1)
Ulrich Weigand3abb3432012-10-29 18:35:49 +00007089 if (N0CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00007090 return DAG.getNode(ISD::FCEIL, SDLoc(N), VT, N0);
Owen Andersona40319b2012-08-13 23:32:49 +00007091
7092 return SDValue();
7093}
7094
7095SDValue DAGCombiner::visitFTRUNC(SDNode *N) {
7096 SDValue N0 = N->getOperand(0);
7097 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
7098 EVT VT = N->getValueType(0);
7099
7100 // fold (ftrunc c1) -> ftrunc(c1)
Ulrich Weigand3abb3432012-10-29 18:35:49 +00007101 if (N0CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00007102 return DAG.getNode(ISD::FTRUNC, SDLoc(N), VT, N0);
Owen Andersona40319b2012-08-13 23:32:49 +00007103
7104 return SDValue();
7105}
7106
7107SDValue DAGCombiner::visitFFLOOR(SDNode *N) {
7108 SDValue N0 = N->getOperand(0);
7109 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
7110 EVT VT = N->getValueType(0);
7111
7112 // fold (ffloor c1) -> ffloor(c1)
Ulrich Weigand3abb3432012-10-29 18:35:49 +00007113 if (N0CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00007114 return DAG.getNode(ISD::FFLOOR, SDLoc(N), VT, N0);
Owen Andersona40319b2012-08-13 23:32:49 +00007115
7116 return SDValue();
7117}
7118
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007119SDValue DAGCombiner::visitFABS(SDNode *N) {
7120 SDValue N0 = N->getOperand(0);
Nate Begeman569c4392006-01-18 22:35:16 +00007121 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00007122 EVT VT = N->getValueType(0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007123
Craig Topper82384612012-09-11 01:45:21 +00007124 if (VT.isVector()) {
7125 SDValue FoldedVOp = SimplifyVUnaryOp(N);
7126 if (FoldedVOp.getNode()) return FoldedVOp;
7127 }
7128
Nate Begeman21158fc2005-09-01 00:19:25 +00007129 // fold (fabs c1) -> fabs(c1)
Ulrich Weigand3abb3432012-10-29 18:35:49 +00007130 if (N0CFP)
Andrew Trickef9de2a2013-05-25 02:42:55 +00007131 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
Nate Begeman21158fc2005-09-01 00:19:25 +00007132 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner3bc40502006-03-05 05:30:57 +00007133 if (N0.getOpcode() == ISD::FABS)
Nate Begemand23739d2005-09-06 04:43:02 +00007134 return N->getOperand(0);
Nate Begeman21158fc2005-09-01 00:19:25 +00007135 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner3bc40502006-03-05 05:30:57 +00007136 // fold (fabs (fcopysign x, y)) -> (fabs x)
7137 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Andrew Trickef9de2a2013-05-25 02:42:55 +00007138 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0.getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00007139
Chris Lattner888560d2008-01-27 17:42:27 +00007140 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
7141 // constant pool values.
Stephen Lincfe7f352013-07-08 00:37:03 +00007142 if (!TLI.isFAbsFree(VT) &&
Owen Anderson98f2c0c2012-04-02 22:10:29 +00007143 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands13237ac2008-06-06 12:08:01 +00007144 N0.getOperand(0).getValueType().isInteger() &&
7145 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007146 SDValue Int = N0.getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00007147 EVT IntVT = Int.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00007148 if (IntVT.isInteger() && !IntVT.isVector()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00007149 Int = DAG.getNode(ISD::AND, SDLoc(N0), IntVT, Int,
Duncan Sands3ed76882009-02-01 18:06:53 +00007150 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greiff304a7a2008-08-28 21:40:38 +00007151 AddToWorkList(Int.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00007152 return DAG.getNode(ISD::BITCAST, SDLoc(N),
Bill Wendling306bfc22009-01-30 23:27:35 +00007153 N->getValueType(0), Int);
Chris Lattner888560d2008-01-27 17:42:27 +00007154 }
7155 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007156
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007157 return SDValue();
Nate Begeman21158fc2005-09-01 00:19:25 +00007158}
7159
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007160SDValue DAGCombiner::visitBRCOND(SDNode *N) {
7161 SDValue Chain = N->getOperand(0);
7162 SDValue N1 = N->getOperand(1);
7163 SDValue N2 = N->getOperand(2);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007164
Dan Gohman82e80012009-11-17 00:47:23 +00007165 // If N is a constant we could fold this into a fallthrough or unconditional
7166 // branch. However that doesn't happen very often in normal code, because
7167 // Instcombine/SimplifyCFG should have handled the available opportunities.
7168 // If we did this folding here, it would be necessary to update the
7169 // MachineBasicBlock CFG, which is awkward.
7170
Nate Begeman7e7f4392006-02-01 07:19:44 +00007171 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
7172 // on the target.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007173 if (N1.getOpcode() == ISD::SETCC &&
Tom Stellardb1588fc2013-03-08 15:36:57 +00007174 TLI.isOperationLegalOrCustom(ISD::BR_CC,
7175 N1.getOperand(0).getValueType())) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00007176 return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other,
Bill Wendling306bfc22009-01-30 23:27:35 +00007177 Chain, N1.getOperand(2),
Nate Begeman7e7f4392006-02-01 07:19:44 +00007178 N1.getOperand(0), N1.getOperand(1), N2);
7179 }
Bill Wendling306bfc22009-01-30 23:27:35 +00007180
Evan Chengc8d6cfd2010-10-04 22:41:01 +00007181 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
7182 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
7183 (N1.getOperand(0).hasOneUse() &&
7184 N1.getOperand(0).getOpcode() == ISD::SRL))) {
7185 SDNode *Trunc = 0;
7186 if (N1.getOpcode() == ISD::TRUNCATE) {
7187 // Look pass the truncate.
7188 Trunc = N1.getNode();
7189 N1 = N1.getOperand(0);
7190 }
Evan Cheng166a4e62010-01-06 19:38:29 +00007191
Bill Wendlingaa28be62009-03-26 06:14:09 +00007192 // Match this pattern so that we can generate simpler code:
7193 //
7194 // %a = ...
7195 // %b = and i32 %a, 2
7196 // %c = srl i32 %b, 1
7197 // brcond i32 %c ...
7198 //
7199 // into
Wesley Peck527da1b2010-11-23 03:31:01 +00007200 //
Bill Wendlingaa28be62009-03-26 06:14:09 +00007201 // %a = ...
Evan Cheng166a4e62010-01-06 19:38:29 +00007202 // %b = and i32 %a, 2
Bill Wendlingaa28be62009-03-26 06:14:09 +00007203 // %c = setcc eq %b, 0
7204 // brcond %c ...
7205 //
7206 // This applies only when the AND constant value has one bit set and the
7207 // SRL constant is equal to the log2 of the AND constant. The back-end is
7208 // smart enough to convert the result into a TEST/JMP sequence.
7209 SDValue Op0 = N1.getOperand(0);
7210 SDValue Op1 = N1.getOperand(1);
7211
7212 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlingaa28be62009-03-26 06:14:09 +00007213 Op1.getOpcode() == ISD::Constant) {
Bill Wendlingaa28be62009-03-26 06:14:09 +00007214 SDValue AndOp1 = Op0.getOperand(1);
7215
7216 if (AndOp1.getOpcode() == ISD::Constant) {
7217 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
7218
7219 if (AndConst.isPowerOf2() &&
7220 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
7221 SDValue SetCC =
Andrew Trickef9de2a2013-05-25 02:42:55 +00007222 DAG.getSetCC(SDLoc(N),
Matt Arsenault758659232013-05-18 00:21:46 +00007223 getSetCCResultType(Op0.getValueType()),
Bill Wendlingaa28be62009-03-26 06:14:09 +00007224 Op0, DAG.getConstant(0, Op0.getValueType()),
7225 ISD::SETNE);
7226
Andrew Trickef9de2a2013-05-25 02:42:55 +00007227 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, SDLoc(N),
Evan Cheng166a4e62010-01-06 19:38:29 +00007228 MVT::Other, Chain, SetCC, N2);
7229 // Don't add the new BRCond into the worklist or else SimplifySelectCC
7230 // will convert it back to (X & C1) >> C2.
7231 CombineTo(N, NewBRCond, false);
7232 // Truncate is dead.
7233 if (Trunc) {
7234 removeFromWorkList(Trunc);
7235 DAG.DeleteNode(Trunc);
7236 }
Bill Wendlingaa28be62009-03-26 06:14:09 +00007237 // Replace the uses of SRL with SETCC
Evan Cheng228c31f2010-02-27 07:36:59 +00007238 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00007239 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlingaa28be62009-03-26 06:14:09 +00007240 removeFromWorkList(N1.getNode());
7241 DAG.DeleteNode(N1.getNode());
Evan Cheng166a4e62010-01-06 19:38:29 +00007242 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlingaa28be62009-03-26 06:14:09 +00007243 }
7244 }
7245 }
Evan Chengc8d6cfd2010-10-04 22:41:01 +00007246
7247 if (Trunc)
7248 // Restore N1 if the above transformation doesn't match.
7249 N1 = N->getOperand(1);
Bill Wendlingaa28be62009-03-26 06:14:09 +00007250 }
Wesley Peck527da1b2010-11-23 03:31:01 +00007251
Evan Cheng228c31f2010-02-27 07:36:59 +00007252 // Transform br(xor(x, y)) -> br(x != y)
7253 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
7254 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
7255 SDNode *TheXor = N1.getNode();
7256 SDValue Op0 = TheXor->getOperand(0);
7257 SDValue Op1 = TheXor->getOperand(1);
7258 if (Op0.getOpcode() == Op1.getOpcode()) {
7259 // Avoid missing important xor optimizations.
7260 SDValue Tmp = visitXOR(TheXor);
Evan Cheng5652a8d2013-01-09 20:56:40 +00007261 if (Tmp.getNode()) {
7262 if (Tmp.getNode() != TheXor) {
7263 DEBUG(dbgs() << "\nReplacing.8 ";
7264 TheXor->dump(&DAG);
7265 dbgs() << "\nWith: ";
7266 Tmp.getNode()->dump(&DAG);
7267 dbgs() << '\n');
7268 WorkListRemover DeadNodes(*this);
7269 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
7270 removeFromWorkList(TheXor);
7271 DAG.DeleteNode(TheXor);
Andrew Trickef9de2a2013-05-25 02:42:55 +00007272 return DAG.getNode(ISD::BRCOND, SDLoc(N),
Evan Cheng5652a8d2013-01-09 20:56:40 +00007273 MVT::Other, Chain, Tmp, N2);
7274 }
7275
Benjamin Kramer93354432013-03-30 21:28:18 +00007276 // visitXOR has changed XOR's operands or replaced the XOR completely,
7277 // bail out.
7278 return SDValue(N, 0);
Evan Cheng228c31f2010-02-27 07:36:59 +00007279 }
7280 }
7281
7282 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
7283 bool Equal = false;
7284 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
7285 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
7286 Op0.getOpcode() == ISD::XOR) {
7287 TheXor = Op0.getNode();
7288 Equal = true;
7289 }
7290
Evan Chengc8d6cfd2010-10-04 22:41:01 +00007291 EVT SetCCVT = N1.getValueType();
Evan Cheng228c31f2010-02-27 07:36:59 +00007292 if (LegalTypes)
Matt Arsenault758659232013-05-18 00:21:46 +00007293 SetCCVT = getSetCCResultType(SetCCVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00007294 SDValue SetCC = DAG.getSetCC(SDLoc(TheXor),
Evan Cheng228c31f2010-02-27 07:36:59 +00007295 SetCCVT,
7296 Op0, Op1,
7297 Equal ? ISD::SETEQ : ISD::SETNE);
7298 // Replace the uses of XOR with SETCC
7299 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00007300 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Chengc8d6cfd2010-10-04 22:41:01 +00007301 removeFromWorkList(N1.getNode());
7302 DAG.DeleteNode(N1.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00007303 return DAG.getNode(ISD::BRCOND, SDLoc(N),
Evan Cheng228c31f2010-02-27 07:36:59 +00007304 MVT::Other, Chain, SetCC, N2);
7305 }
7306 }
Bill Wendlingaa28be62009-03-26 06:14:09 +00007307
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007308 return SDValue();
Nate Begemanc760f802005-09-19 22:34:01 +00007309}
7310
Chris Lattnera49e16f2005-10-05 06:47:48 +00007311// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
7312//
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007313SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattnera49e16f2005-10-05 06:47:48 +00007314 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007315 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007316
Dan Gohman82e80012009-11-17 00:47:23 +00007317 // If N is a constant we could fold this into a fallthrough or unconditional
7318 // branch. However that doesn't happen very often in normal code, because
7319 // Instcombine/SimplifyCFG should have handled the available opportunities.
7320 // If we did this folding here, it would be necessary to update the
7321 // MachineBasicBlock CFG, which is awkward.
7322
Duncan Sands93b66092008-06-09 11:32:28 +00007323 // Use SimplifySetCC to simplify SETCC's.
Matt Arsenault758659232013-05-18 00:21:46 +00007324 SDValue Simp = SimplifySetCC(getSetCCResultType(CondLHS.getValueType()),
Andrew Trickef9de2a2013-05-25 02:42:55 +00007325 CondLHS, CondRHS, CC->get(), SDLoc(N),
Dale Johannesenf1163e92009-02-03 00:47:48 +00007326 false);
Gabor Greiff304a7a2008-08-28 21:40:38 +00007327 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner6a1b2de2006-10-14 03:52:46 +00007328
Nate Begemanbd7df032005-10-05 21:43:42 +00007329 // fold to a simpler setcc
Gabor Greiff304a7a2008-08-28 21:40:38 +00007330 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Andrew Trickef9de2a2013-05-25 02:42:55 +00007331 return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other,
Bill Wendling306bfc22009-01-30 23:27:35 +00007332 N->getOperand(0), Simp.getOperand(2),
7333 Simp.getOperand(0), Simp.getOperand(1),
7334 N->getOperand(4));
7335
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007336 return SDValue();
Nate Begemanc760f802005-09-19 22:34:01 +00007337}
7338
Evan Chengfa832632012-01-13 01:37:24 +00007339/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
7340/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng80893ce2012-03-06 23:33:32 +00007341/// addressing mode.
Evan Chengfa832632012-01-13 01:37:24 +00007342static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
7343 SelectionDAG &DAG,
7344 const TargetLowering &TLI) {
7345 EVT VT;
7346 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
7347 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
7348 return false;
7349 VT = Use->getValueType(0);
7350 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
7351 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
7352 return false;
7353 VT = ST->getValue().getValueType();
7354 } else
7355 return false;
7356
Chandler Carruth95f83e02013-01-07 15:14:13 +00007357 TargetLowering::AddrMode AM;
Evan Chengfa832632012-01-13 01:37:24 +00007358 if (N->getOpcode() == ISD::ADD) {
7359 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
7360 if (Offset)
Evan Cheng80893ce2012-03-06 23:33:32 +00007361 // [reg +/- imm]
Evan Chengfa832632012-01-13 01:37:24 +00007362 AM.BaseOffs = Offset->getSExtValue();
7363 else
Evan Cheng80893ce2012-03-06 23:33:32 +00007364 // [reg +/- reg]
7365 AM.Scale = 1;
Evan Chengfa832632012-01-13 01:37:24 +00007366 } else if (N->getOpcode() == ISD::SUB) {
7367 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
7368 if (Offset)
Evan Cheng80893ce2012-03-06 23:33:32 +00007369 // [reg +/- imm]
Evan Chengfa832632012-01-13 01:37:24 +00007370 AM.BaseOffs = -Offset->getSExtValue();
7371 else
Evan Cheng80893ce2012-03-06 23:33:32 +00007372 // [reg +/- reg]
7373 AM.Scale = 1;
Evan Chengfa832632012-01-13 01:37:24 +00007374 } else
7375 return false;
7376
7377 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
7378}
7379
Duncan Sands075293f2008-06-15 20:12:31 +00007380/// CombineToPreIndexedLoadStore - Try turning a load / store into a
7381/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattnerffad2162006-11-11 00:39:41 +00007382/// and it has other uses besides the load / store. After the
7383/// transformation, the new indexed load / store has effectively folded
7384/// the add / subtract in and all of its other uses are redirected to the
7385/// new load / store.
7386bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman9d448e42011-11-12 00:35:34 +00007387 if (Level < AfterLegalizeDAG)
Chris Lattnerffad2162006-11-11 00:39:41 +00007388 return false;
7389
7390 bool isLoad = true;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007391 SDValue Ptr;
Owen Anderson53aa7a92009-08-10 22:56:29 +00007392 EVT VT;
Chris Lattnerffad2162006-11-11 00:39:41 +00007393 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner1ea55cf2008-01-17 19:59:44 +00007394 if (LD->isIndexed())
Evan Cheng28cf4272006-12-16 06:25:23 +00007395 return false;
Dan Gohman47a7d6f2008-01-30 00:15:11 +00007396 VT = LD->getMemoryVT();
Evan Cheng8a1d09d2007-03-07 08:07:03 +00007397 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattnerffad2162006-11-11 00:39:41 +00007398 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
7399 return false;
7400 Ptr = LD->getBasePtr();
7401 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner1ea55cf2008-01-17 19:59:44 +00007402 if (ST->isIndexed())
Evan Cheng28cf4272006-12-16 06:25:23 +00007403 return false;
Dan Gohman47a7d6f2008-01-30 00:15:11 +00007404 VT = ST->getMemoryVT();
Chris Lattnerffad2162006-11-11 00:39:41 +00007405 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
7406 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
7407 return false;
7408 Ptr = ST->getBasePtr();
7409 isLoad = false;
Bill Wendling306bfc22009-01-30 23:27:35 +00007410 } else {
Chris Lattnerffad2162006-11-11 00:39:41 +00007411 return false;
Bill Wendling306bfc22009-01-30 23:27:35 +00007412 }
Chris Lattnerffad2162006-11-11 00:39:41 +00007413
Chris Lattnereabc15c2006-11-11 00:56:29 +00007414 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
7415 // out. There is no reason to make this a preinc/predec.
7416 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greiff304a7a2008-08-28 21:40:38 +00007417 Ptr.getNode()->hasOneUse())
Chris Lattnereabc15c2006-11-11 00:56:29 +00007418 return false;
Chris Lattnerffad2162006-11-11 00:39:41 +00007419
Chris Lattnereabc15c2006-11-11 00:56:29 +00007420 // Ask the target to do addressing mode selection.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007421 SDValue BasePtr;
7422 SDValue Offset;
Chris Lattnereabc15c2006-11-11 00:56:29 +00007423 ISD::MemIndexedMode AM = ISD::UNINDEXED;
7424 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
7425 return false;
Hal Finkel25819052013-02-08 21:35:47 +00007426
7427 // Backends without true r+i pre-indexed forms may need to pass a
7428 // constant base with a variable offset so that constant coercion
7429 // will work with the patterns in canonical form.
7430 bool Swapped = false;
7431 if (isa<ConstantSDNode>(BasePtr)) {
7432 std::swap(BasePtr, Offset);
7433 Swapped = true;
7434 }
7435
Evan Cheng044a0a82007-05-03 23:52:19 +00007436 // Don't create a indexed load / store with zero offset.
7437 if (isa<ConstantSDNode>(Offset) &&
Dan Gohmanb72127a2008-03-13 22:13:53 +00007438 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Cheng044a0a82007-05-03 23:52:19 +00007439 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007440
Chris Lattnera0a80032006-11-11 01:00:15 +00007441 // Try turning it into a pre-indexed load / store except when:
Evan Chenga4d187b2007-05-24 02:35:39 +00007442 // 1) The new base ptr is a frame index.
7443 // 2) If N is a store and the new base ptr is either the same as or is a
Chris Lattnereabc15c2006-11-11 00:56:29 +00007444 // predecessor of the value being stored.
Evan Chenga4d187b2007-05-24 02:35:39 +00007445 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattnereabc15c2006-11-11 00:56:29 +00007446 // that would create a cycle.
Evan Chenga4d187b2007-05-24 02:35:39 +00007447 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattnerffad2162006-11-11 00:39:41 +00007448
Chris Lattnera0a80032006-11-11 01:00:15 +00007449 // Check #1. Preinc'ing a frame index would require copying the stack pointer
7450 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcfc05132009-05-06 18:25:01 +00007451 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattnera0a80032006-11-11 01:00:15 +00007452 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007453
Chris Lattnera0a80032006-11-11 01:00:15 +00007454 // Check #2.
Chris Lattnereabc15c2006-11-11 00:56:29 +00007455 if (!isLoad) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007456 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greiff304a7a2008-08-28 21:40:38 +00007457 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattnereabc15c2006-11-11 00:56:29 +00007458 return false;
Chris Lattnerffad2162006-11-11 00:39:41 +00007459 }
Chris Lattnereabc15c2006-11-11 00:56:29 +00007460
Hal Finkel25819052013-02-08 21:35:47 +00007461 // If the offset is a constant, there may be other adds of constants that
7462 // can be folded with this one. We should do this to avoid having to keep
7463 // a copy of the original base pointer.
7464 SmallVector<SDNode *, 16> OtherUses;
7465 if (isa<ConstantSDNode>(Offset))
7466 for (SDNode::use_iterator I = BasePtr.getNode()->use_begin(),
7467 E = BasePtr.getNode()->use_end(); I != E; ++I) {
7468 SDNode *Use = *I;
7469 if (Use == Ptr.getNode())
7470 continue;
7471
7472 if (Use->isPredecessorOf(N))
7473 continue;
7474
7475 if (Use->getOpcode() != ISD::ADD && Use->getOpcode() != ISD::SUB) {
7476 OtherUses.clear();
7477 break;
7478 }
7479
7480 SDValue Op0 = Use->getOperand(0), Op1 = Use->getOperand(1);
7481 if (Op1.getNode() == BasePtr.getNode())
7482 std::swap(Op0, Op1);
7483 assert(Op0.getNode() == BasePtr.getNode() &&
7484 "Use of ADD/SUB but not an operand");
7485
7486 if (!isa<ConstantSDNode>(Op1)) {
7487 OtherUses.clear();
7488 break;
7489 }
7490
7491 // FIXME: In some cases, we can be smarter about this.
7492 if (Op1.getValueType() != Offset.getValueType()) {
7493 OtherUses.clear();
7494 break;
7495 }
7496
7497 OtherUses.push_back(Use);
7498 }
7499
7500 if (Swapped)
7501 std::swap(BasePtr, Offset);
7502
Evan Chenga4d187b2007-05-24 02:35:39 +00007503 // Now check for #3 and #4.
Chris Lattnereabc15c2006-11-11 00:56:29 +00007504 bool RealUse = false;
Lang Hames5a004992011-07-07 04:31:51 +00007505
7506 // Caches for hasPredecessorHelper
7507 SmallPtrSet<const SDNode *, 32> Visited;
7508 SmallVector<const SDNode *, 16> Worklist;
7509
Gabor Greiff304a7a2008-08-28 21:40:38 +00007510 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7511 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman91e5dcb2008-07-27 20:43:25 +00007512 SDNode *Use = *I;
Chris Lattnereabc15c2006-11-11 00:56:29 +00007513 if (Use == N)
7514 continue;
Lang Hames5a004992011-07-07 04:31:51 +00007515 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattnereabc15c2006-11-11 00:56:29 +00007516 return false;
7517
Evan Chengfa832632012-01-13 01:37:24 +00007518 // If Ptr may be folded in addressing mode of other use, then it's
7519 // not profitable to do this transformation.
7520 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattnereabc15c2006-11-11 00:56:29 +00007521 RealUse = true;
7522 }
Bill Wendling306bfc22009-01-30 23:27:35 +00007523
Chris Lattnereabc15c2006-11-11 00:56:29 +00007524 if (!RealUse)
7525 return false;
7526
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007527 SDValue Result;
Chris Lattnereabc15c2006-11-11 00:56:29 +00007528 if (isLoad)
Andrew Trickef9de2a2013-05-25 02:42:55 +00007529 Result = DAG.getIndexedLoad(SDValue(N,0), SDLoc(N),
Bill Wendling306bfc22009-01-30 23:27:35 +00007530 BasePtr, Offset, AM);
Chris Lattnereabc15c2006-11-11 00:56:29 +00007531 else
Andrew Trickef9de2a2013-05-25 02:42:55 +00007532 Result = DAG.getIndexedStore(SDValue(N,0), SDLoc(N),
Bill Wendling306bfc22009-01-30 23:27:35 +00007533 BasePtr, Offset, AM);
Chris Lattnereabc15c2006-11-11 00:56:29 +00007534 ++PreIndexedNodes;
7535 ++NodesCombined;
David Greenefe5c3522010-01-05 01:25:00 +00007536 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +00007537 N->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +00007538 dbgs() << "\nWith: ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +00007539 Result.getNode()->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +00007540 dbgs() << '\n');
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00007541 WorkListRemover DeadNodes(*this);
Chris Lattnereabc15c2006-11-11 00:56:29 +00007542 if (isLoad) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00007543 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7544 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattnereabc15c2006-11-11 00:56:29 +00007545 } else {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00007546 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattnereabc15c2006-11-11 00:56:29 +00007547 }
7548
Chris Lattnereabc15c2006-11-11 00:56:29 +00007549 // Finally, since the node is now dead, remove it from the graph.
7550 DAG.DeleteNode(N);
7551
Hal Finkel25819052013-02-08 21:35:47 +00007552 if (Swapped)
7553 std::swap(BasePtr, Offset);
7554
7555 // Replace other uses of BasePtr that can be updated to use Ptr
7556 for (unsigned i = 0, e = OtherUses.size(); i != e; ++i) {
7557 unsigned OffsetIdx = 1;
7558 if (OtherUses[i]->getOperand(OffsetIdx).getNode() == BasePtr.getNode())
7559 OffsetIdx = 0;
7560 assert(OtherUses[i]->getOperand(!OffsetIdx).getNode() ==
7561 BasePtr.getNode() && "Expected BasePtr operand");
7562
Silviu Barangaaf7e8c32013-04-26 15:52:24 +00007563 // We need to replace ptr0 in the following expression:
7564 // x0 * offset0 + y0 * ptr0 = t0
7565 // knowing that
7566 // x1 * offset1 + y1 * ptr0 = t1 (the indexed load/store)
Stephen Lincfe7f352013-07-08 00:37:03 +00007567 //
Silviu Barangaaf7e8c32013-04-26 15:52:24 +00007568 // where x0, x1, y0 and y1 in {-1, 1} are given by the types of the
7569 // indexed load/store and the expresion that needs to be re-written.
7570 //
7571 // Therefore, we have:
7572 // t0 = (x0 * offset0 - x1 * y0 * y1 *offset1) + (y0 * y1) * t1
Hal Finkel25819052013-02-08 21:35:47 +00007573
7574 ConstantSDNode *CN =
7575 cast<ConstantSDNode>(OtherUses[i]->getOperand(OffsetIdx));
Silviu Barangaaf7e8c32013-04-26 15:52:24 +00007576 int X0, X1, Y0, Y1;
7577 APInt Offset0 = CN->getAPIntValue();
7578 APInt Offset1 = cast<ConstantSDNode>(Offset)->getAPIntValue();
Hal Finkel25819052013-02-08 21:35:47 +00007579
Silviu Barangaaf7e8c32013-04-26 15:52:24 +00007580 X0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 1) ? -1 : 1;
7581 Y0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 0) ? -1 : 1;
7582 X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1;
7583 Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1;
Hal Finkel25819052013-02-08 21:35:47 +00007584
Silviu Barangaaf7e8c32013-04-26 15:52:24 +00007585 unsigned Opcode = (Y0 * Y1 < 0) ? ISD::SUB : ISD::ADD;
7586
7587 APInt CNV = Offset0;
7588 if (X0 < 0) CNV = -CNV;
7589 if (X1 * Y0 * Y1 < 0) CNV = CNV + Offset1;
7590 else CNV = CNV - Offset1;
7591
7592 // We can now generate the new expression.
7593 SDValue NewOp1 = DAG.getConstant(CNV, CN->getValueType(0));
7594 SDValue NewOp2 = Result.getValue(isLoad ? 1 : 0);
7595
7596 SDValue NewUse = DAG.getNode(Opcode,
Andrew Trickef9de2a2013-05-25 02:42:55 +00007597 SDLoc(OtherUses[i]),
Hal Finkel25819052013-02-08 21:35:47 +00007598 OtherUses[i]->getValueType(0), NewOp1, NewOp2);
7599 DAG.ReplaceAllUsesOfValueWith(SDValue(OtherUses[i], 0), NewUse);
7600 removeFromWorkList(OtherUses[i]);
7601 DAG.DeleteNode(OtherUses[i]);
7602 }
7603
Chris Lattnereabc15c2006-11-11 00:56:29 +00007604 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00007605 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greiff304a7a2008-08-28 21:40:38 +00007606 removeFromWorkList(Ptr.getNode());
7607 DAG.DeleteNode(Ptr.getNode());
Chris Lattnereabc15c2006-11-11 00:56:29 +00007608
7609 return true;
Chris Lattnerffad2162006-11-11 00:39:41 +00007610}
7611
Duncan Sands075293f2008-06-15 20:12:31 +00007612/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattnerffad2162006-11-11 00:39:41 +00007613/// add / sub of the base pointer node into a post-indexed load / store.
7614/// The transformation folded the add / subtract into the new indexed
7615/// load / store effectively and all of its uses are redirected to the
7616/// new load / store.
7617bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman9d448e42011-11-12 00:35:34 +00007618 if (Level < AfterLegalizeDAG)
Chris Lattnerffad2162006-11-11 00:39:41 +00007619 return false;
7620
7621 bool isLoad = true;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007622 SDValue Ptr;
Owen Anderson53aa7a92009-08-10 22:56:29 +00007623 EVT VT;
Chris Lattnerffad2162006-11-11 00:39:41 +00007624 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner1ea55cf2008-01-17 19:59:44 +00007625 if (LD->isIndexed())
Evan Cheng28cf4272006-12-16 06:25:23 +00007626 return false;
Dan Gohman47a7d6f2008-01-30 00:15:11 +00007627 VT = LD->getMemoryVT();
Chris Lattnerffad2162006-11-11 00:39:41 +00007628 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
7629 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
7630 return false;
7631 Ptr = LD->getBasePtr();
7632 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner1ea55cf2008-01-17 19:59:44 +00007633 if (ST->isIndexed())
Evan Cheng28cf4272006-12-16 06:25:23 +00007634 return false;
Dan Gohman47a7d6f2008-01-30 00:15:11 +00007635 VT = ST->getMemoryVT();
Chris Lattnerffad2162006-11-11 00:39:41 +00007636 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
7637 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
7638 return false;
7639 Ptr = ST->getBasePtr();
7640 isLoad = false;
Bill Wendling306bfc22009-01-30 23:27:35 +00007641 } else {
Chris Lattnerffad2162006-11-11 00:39:41 +00007642 return false;
Bill Wendling306bfc22009-01-30 23:27:35 +00007643 }
Chris Lattnerffad2162006-11-11 00:39:41 +00007644
Gabor Greiff304a7a2008-08-28 21:40:38 +00007645 if (Ptr.getNode()->hasOneUse())
Chris Lattnereabc15c2006-11-11 00:56:29 +00007646 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007647
Gabor Greiff304a7a2008-08-28 21:40:38 +00007648 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7649 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman91e5dcb2008-07-27 20:43:25 +00007650 SDNode *Op = *I;
Chris Lattnereabc15c2006-11-11 00:56:29 +00007651 if (Op == N ||
7652 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
7653 continue;
7654
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007655 SDValue BasePtr;
7656 SDValue Offset;
Chris Lattnereabc15c2006-11-11 00:56:29 +00007657 ISD::MemIndexedMode AM = ISD::UNINDEXED;
7658 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Cheng044a0a82007-05-03 23:52:19 +00007659 // Don't create a indexed load / store with zero offset.
7660 if (isa<ConstantSDNode>(Offset) &&
Dan Gohmanb72127a2008-03-13 22:13:53 +00007661 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Cheng044a0a82007-05-03 23:52:19 +00007662 continue;
Chris Lattnerffad2162006-11-11 00:39:41 +00007663
Chris Lattnereabc15c2006-11-11 00:56:29 +00007664 // Try turning it into a post-indexed load / store except when
Evan Chengfa832632012-01-13 01:37:24 +00007665 // 1) All uses are load / store ops that use it as base ptr (and
7666 // it may be folded as addressing mmode).
Chris Lattnereabc15c2006-11-11 00:56:29 +00007667 // 2) Op must be independent of N, i.e. Op is neither a predecessor
7668 // nor a successor of N. Otherwise, if Op is folded that would
7669 // create a cycle.
7670
Evan Chengcfc05132009-05-06 18:25:01 +00007671 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
7672 continue;
7673
Chris Lattnereabc15c2006-11-11 00:56:29 +00007674 // Check for #1.
7675 bool TryNext = false;
Gabor Greiff304a7a2008-08-28 21:40:38 +00007676 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
7677 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman91e5dcb2008-07-27 20:43:25 +00007678 SDNode *Use = *II;
Gabor Greiff304a7a2008-08-28 21:40:38 +00007679 if (Use == Ptr.getNode())
Chris Lattnerffad2162006-11-11 00:39:41 +00007680 continue;
7681
Chris Lattnereabc15c2006-11-11 00:56:29 +00007682 // If all the uses are load / store addresses, then don't do the
7683 // transformation.
7684 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
7685 bool RealUse = false;
7686 for (SDNode::use_iterator III = Use->use_begin(),
7687 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman91e5dcb2008-07-27 20:43:25 +00007688 SDNode *UseUse = *III;
Stephen Lincfe7f352013-07-08 00:37:03 +00007689 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattnereabc15c2006-11-11 00:56:29 +00007690 RealUse = true;
7691 }
Chris Lattnerffad2162006-11-11 00:39:41 +00007692
Chris Lattnereabc15c2006-11-11 00:56:29 +00007693 if (!RealUse) {
7694 TryNext = true;
7695 break;
Chris Lattnerffad2162006-11-11 00:39:41 +00007696 }
7697 }
Chris Lattnereabc15c2006-11-11 00:56:29 +00007698 }
Bill Wendling306bfc22009-01-30 23:27:35 +00007699
Chris Lattnereabc15c2006-11-11 00:56:29 +00007700 if (TryNext)
7701 continue;
Chris Lattnerffad2162006-11-11 00:39:41 +00007702
Chris Lattnereabc15c2006-11-11 00:56:29 +00007703 // Check for #2
Evan Cheng567d2e52008-03-04 00:41:45 +00007704 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007705 SDValue Result = isLoad
Andrew Trickef9de2a2013-05-25 02:42:55 +00007706 ? DAG.getIndexedLoad(SDValue(N,0), SDLoc(N),
Bill Wendling306bfc22009-01-30 23:27:35 +00007707 BasePtr, Offset, AM)
Andrew Trickef9de2a2013-05-25 02:42:55 +00007708 : DAG.getIndexedStore(SDValue(N,0), SDLoc(N),
Bill Wendling306bfc22009-01-30 23:27:35 +00007709 BasePtr, Offset, AM);
Chris Lattnereabc15c2006-11-11 00:56:29 +00007710 ++PostIndexedNodes;
7711 ++NodesCombined;
David Greenefe5c3522010-01-05 01:25:00 +00007712 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +00007713 N->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +00007714 dbgs() << "\nWith: ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +00007715 Result.getNode()->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +00007716 dbgs() << '\n');
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00007717 WorkListRemover DeadNodes(*this);
Chris Lattnereabc15c2006-11-11 00:56:29 +00007718 if (isLoad) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00007719 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7720 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattnereabc15c2006-11-11 00:56:29 +00007721 } else {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00007722 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattnerffad2162006-11-11 00:39:41 +00007723 }
Chris Lattnereabc15c2006-11-11 00:56:29 +00007724
Chris Lattnereabc15c2006-11-11 00:56:29 +00007725 // Finally, since the node is now dead, remove it from the graph.
7726 DAG.DeleteNode(N);
7727
7728 // Replace the uses of Use with uses of the updated base value.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007729 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00007730 Result.getValue(isLoad ? 1 : 0));
Chris Lattnereabc15c2006-11-11 00:56:29 +00007731 removeFromWorkList(Op);
Chris Lattnereabc15c2006-11-11 00:56:29 +00007732 DAG.DeleteNode(Op);
Chris Lattnereabc15c2006-11-11 00:56:29 +00007733 return true;
Chris Lattnerffad2162006-11-11 00:39:41 +00007734 }
7735 }
7736 }
Bill Wendling306bfc22009-01-30 23:27:35 +00007737
Chris Lattnerffad2162006-11-11 00:39:41 +00007738 return false;
7739}
7740
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007741SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Chenge71fe34d2006-10-09 20:57:25 +00007742 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007743 SDValue Chain = LD->getChain();
7744 SDValue Ptr = LD->getBasePtr();
Scott Michelcf0da6c2009-02-17 22:15:04 +00007745
Evan Chenga684cd22007-05-01 00:38:21 +00007746 // If load is not volatile and there are no uses of the loaded value (and
7747 // the updated indexed value in case of indexed loads), change uses of the
7748 // chain value into uses of the chain input (i.e. delete the dead load).
7749 if (!LD->isVolatile()) {
Owen Anderson9f944592009-08-11 20:47:22 +00007750 if (N->getValueType(1) == MVT::Other) {
Evan Chengb68343c2007-05-01 08:53:39 +00007751 // Unindexed loads.
Craig Topper0515cd42012-01-07 18:31:09 +00007752 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng7be15282008-01-16 23:11:54 +00007753 // It's not safe to use the two value CombineTo variant here. e.g.
7754 // v1, chain2 = load chain1, loc
7755 // v2, chain3 = load chain2, loc
7756 // v3 = add v2, c
Chris Lattnere97fa8c2008-01-24 07:57:06 +00007757 // Now we replace use of chain2 with chain1. This makes the second load
7758 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenefe5c3522010-01-05 01:25:00 +00007759 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +00007760 N->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +00007761 dbgs() << "\nWith chain: ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +00007762 Chain.getNode()->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +00007763 dbgs() << "\n");
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00007764 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00007765 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendling306bfc22009-01-30 23:27:35 +00007766
Chris Lattnere97fa8c2008-01-24 07:57:06 +00007767 if (N->use_empty()) {
7768 removeFromWorkList(N);
7769 DAG.DeleteNode(N);
7770 }
Bill Wendling306bfc22009-01-30 23:27:35 +00007771
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007772 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng7be15282008-01-16 23:11:54 +00007773 }
Evan Chengb68343c2007-05-01 08:53:39 +00007774 } else {
7775 // Indexed loads.
Owen Anderson9f944592009-08-11 20:47:22 +00007776 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper0515cd42012-01-07 18:31:09 +00007777 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesen84935752009-02-06 23:05:02 +00007778 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng228c31f2010-02-27 07:36:59 +00007779 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +00007780 N->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +00007781 dbgs() << "\nWith: ";
Chris Lattner4dc3edd2009-08-23 06:35:02 +00007782 Undef.getNode()->dump(&DAG);
David Greenefe5c3522010-01-05 01:25:00 +00007783 dbgs() << " and 2 other values\n");
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00007784 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00007785 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007786 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00007787 DAG.getUNDEF(N->getValueType(1)));
7788 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng7be15282008-01-16 23:11:54 +00007789 removeFromWorkList(N);
Evan Cheng7be15282008-01-16 23:11:54 +00007790 DAG.DeleteNode(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007791 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Chenga684cd22007-05-01 00:38:21 +00007792 }
Evan Chenga684cd22007-05-01 00:38:21 +00007793 }
7794 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007795
Chris Lattnere260ed82005-10-10 22:04:48 +00007796 // If this load is directly stored, replace the load value with the stored
7797 // value.
7798 // TODO: Handle store large -> read small portion.
Jim Laskey0f7c3282006-10-11 17:47:52 +00007799 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Chengadb9c032011-03-11 00:48:56 +00007800 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00007801 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Chengab51cf22006-10-13 21:14:26 +00007802 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
7803 if (PrevST->getBasePtr() == Ptr &&
7804 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskey0f7c3282006-10-11 17:47:52 +00007805 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Chengab51cf22006-10-13 21:14:26 +00007806 }
Jim Laskey0f7c3282006-10-11 17:47:52 +00007807 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007808
Evan Cheng43cd9e32010-04-01 06:04:33 +00007809 // Try to infer better alignment information than the load already has.
7810 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Cheng4a5b2042011-11-28 22:37:34 +00007811 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
Owen Andersonde89ecf2013-02-05 19:24:39 +00007812 if (Align > LD->getMemOperand()->getBaseAlignment()) {
7813 SDValue NewLoad =
Andrew Trickef9de2a2013-05-25 02:42:55 +00007814 DAG.getExtLoad(LD->getExtensionType(), SDLoc(N),
Evan Cheng4a5b2042011-11-28 22:37:34 +00007815 LD->getValueType(0),
7816 Chain, Ptr, LD->getPointerInfo(),
7817 LD->getMemoryVT(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00007818 LD->isVolatile(), LD->isNonTemporal(), Align,
7819 LD->getTBAAInfo());
Owen Andersonde89ecf2013-02-05 19:24:39 +00007820 return CombineTo(N, NewLoad, SDValue(NewLoad.getNode(), 1), true);
7821 }
Evan Cheng43cd9e32010-04-01 06:04:33 +00007822 }
7823 }
7824
Hal Finkel5ef4dcc2013-08-29 03:29:55 +00007825 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA :
7826 TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
Hal Finkel9b2617a2014-01-25 17:32:39 +00007827#ifndef NDEBUG
7828 if (CombinerAAOnlyFunc.getNumOccurrences() &&
7829 CombinerAAOnlyFunc != DAG.getMachineFunction().getName())
7830 UseAA = false;
7831#endif
Hal Finkelccc18e12014-01-24 18:25:26 +00007832 if (UseAA && LD->isUnindexed()) {
Jim Laskeyd07be232006-09-25 16:29:54 +00007833 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007834 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007835
Jim Laskey708d0db2006-10-04 16:53:27 +00007836 // If there is a better chain.
Jim Laskeyd07be232006-09-25 16:29:54 +00007837 if (Chain != BetterChain) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007838 SDValue ReplLoad;
Jim Laskey0f7c3282006-10-11 17:47:52 +00007839
Jim Laskeyd07be232006-09-25 16:29:54 +00007840 // Replace the chain to void dependency.
Jim Laskey0f7c3282006-10-11 17:47:52 +00007841 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00007842 ReplLoad = DAG.getLoad(N->getValueType(0), SDLoc(LD),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00007843 BetterChain, Ptr, LD->getMemOperand());
Jim Laskey0f7c3282006-10-11 17:47:52 +00007844 } else {
Andrew Trickef9de2a2013-05-25 02:42:55 +00007845 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD),
Stuart Hastings81c43062011-02-16 16:23:55 +00007846 LD->getValueType(0),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00007847 BetterChain, Ptr, LD->getMemoryVT(),
7848 LD->getMemOperand());
Jim Laskey0f7c3282006-10-11 17:47:52 +00007849 }
Jim Laskeyd07be232006-09-25 16:29:54 +00007850
Jim Laskey708d0db2006-10-04 16:53:27 +00007851 // Create token factor to keep old chain connected.
Andrew Trickef9de2a2013-05-25 02:42:55 +00007852 SDValue Token = DAG.getNode(ISD::TokenFactor, SDLoc(N),
Owen Anderson9f944592009-08-11 20:47:22 +00007853 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peck527da1b2010-11-23 03:31:01 +00007854
Nate Begeman879d8f12009-09-15 00:18:30 +00007855 // Make sure the new and old chains are cleaned up.
7856 AddToWorkList(Token.getNode());
Wesley Peck527da1b2010-11-23 03:31:01 +00007857
Jim Laskeydcf983c2006-10-13 23:32:28 +00007858 // Replace uses with load result and token factor. Don't add users
7859 // to work list.
7860 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskeyd07be232006-09-25 16:29:54 +00007861 }
7862 }
7863
Evan Cheng357017f2006-11-03 03:06:21 +00007864 // Try transforming N to an indexed load.
Evan Cheng60c68462006-11-07 09:03:05 +00007865 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007866 return SDValue(N, 0);
Evan Cheng357017f2006-11-03 03:06:21 +00007867
Quentin Colombetde0e0622013-10-11 18:29:42 +00007868 // Try to slice up N to more direct loads if the slices are mapped to
7869 // different register banks or pairing can take place.
7870 if (SliceUpLoad(N))
7871 return SDValue(N, 0);
7872
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007873 return SDValue();
Chris Lattnere260ed82005-10-10 22:04:48 +00007874}
7875
Quentin Colombetde0e0622013-10-11 18:29:42 +00007876namespace {
7877/// \brief Helper structure used to slice a load in smaller loads.
7878/// Basically a slice is obtained from the following sequence:
7879/// Origin = load Ty1, Base
7880/// Shift = srl Ty1 Origin, CstTy Amount
7881/// Inst = trunc Shift to Ty2
7882///
7883/// Then, it will be rewriten into:
7884/// Slice = load SliceTy, Base + SliceOffset
7885/// [Inst = zext Slice to Ty2], only if SliceTy <> Ty2
7886///
7887/// SliceTy is deduced from the number of bits that are actually used to
7888/// build Inst.
7889struct LoadedSlice {
7890 /// \brief Helper structure used to compute the cost of a slice.
7891 struct Cost {
7892 /// Are we optimizing for code size.
7893 bool ForCodeSize;
7894 /// Various cost.
7895 unsigned Loads;
7896 unsigned Truncates;
7897 unsigned CrossRegisterBanksCopies;
7898 unsigned ZExts;
7899 unsigned Shift;
7900
7901 Cost(bool ForCodeSize = false)
7902 : ForCodeSize(ForCodeSize), Loads(0), Truncates(0),
7903 CrossRegisterBanksCopies(0), ZExts(0), Shift(0) {}
7904
7905 /// \brief Get the cost of one isolated slice.
7906 Cost(const LoadedSlice &LS, bool ForCodeSize = false)
7907 : ForCodeSize(ForCodeSize), Loads(1), Truncates(0),
7908 CrossRegisterBanksCopies(0), ZExts(0), Shift(0) {
7909 EVT TruncType = LS.Inst->getValueType(0);
7910 EVT LoadedType = LS.getLoadedType();
7911 if (TruncType != LoadedType &&
7912 !LS.DAG->getTargetLoweringInfo().isZExtFree(LoadedType, TruncType))
7913 ZExts = 1;
7914 }
7915
7916 /// \brief Account for slicing gain in the current cost.
7917 /// Slicing provide a few gains like removing a shift or a
7918 /// truncate. This method allows to grow the cost of the original
7919 /// load with the gain from this slice.
7920 void addSliceGain(const LoadedSlice &LS) {
7921 // Each slice saves a truncate.
7922 const TargetLowering &TLI = LS.DAG->getTargetLoweringInfo();
7923 if (!TLI.isTruncateFree(LS.Inst->getValueType(0),
7924 LS.Inst->getOperand(0).getValueType()))
7925 ++Truncates;
7926 // If there is a shift amount, this slice gets rid of it.
7927 if (LS.Shift)
7928 ++Shift;
7929 // If this slice can merge a cross register bank copy, account for it.
7930 if (LS.canMergeExpensiveCrossRegisterBankCopy())
7931 ++CrossRegisterBanksCopies;
7932 }
7933
7934 Cost &operator+=(const Cost &RHS) {
7935 Loads += RHS.Loads;
7936 Truncates += RHS.Truncates;
7937 CrossRegisterBanksCopies += RHS.CrossRegisterBanksCopies;
7938 ZExts += RHS.ZExts;
7939 Shift += RHS.Shift;
7940 return *this;
7941 }
7942
7943 bool operator==(const Cost &RHS) const {
7944 return Loads == RHS.Loads && Truncates == RHS.Truncates &&
7945 CrossRegisterBanksCopies == RHS.CrossRegisterBanksCopies &&
7946 ZExts == RHS.ZExts && Shift == RHS.Shift;
7947 }
7948
7949 bool operator!=(const Cost &RHS) const { return !(*this == RHS); }
7950
7951 bool operator<(const Cost &RHS) const {
7952 // Assume cross register banks copies are as expensive as loads.
7953 // FIXME: Do we want some more target hooks?
7954 unsigned ExpensiveOpsLHS = Loads + CrossRegisterBanksCopies;
7955 unsigned ExpensiveOpsRHS = RHS.Loads + RHS.CrossRegisterBanksCopies;
7956 // Unless we are optimizing for code size, consider the
7957 // expensive operation first.
7958 if (!ForCodeSize && ExpensiveOpsLHS != ExpensiveOpsRHS)
7959 return ExpensiveOpsLHS < ExpensiveOpsRHS;
7960 return (Truncates + ZExts + Shift + ExpensiveOpsLHS) <
7961 (RHS.Truncates + RHS.ZExts + RHS.Shift + ExpensiveOpsRHS);
7962 }
7963
7964 bool operator>(const Cost &RHS) const { return RHS < *this; }
7965
7966 bool operator<=(const Cost &RHS) const { return !(RHS < *this); }
7967
7968 bool operator>=(const Cost &RHS) const { return !(*this < RHS); }
7969 };
7970 // The last instruction that represent the slice. This should be a
7971 // truncate instruction.
7972 SDNode *Inst;
7973 // The original load instruction.
7974 LoadSDNode *Origin;
7975 // The right shift amount in bits from the original load.
7976 unsigned Shift;
7977 // The DAG from which Origin came from.
7978 // This is used to get some contextual information about legal types, etc.
7979 SelectionDAG *DAG;
7980
7981 LoadedSlice(SDNode *Inst = NULL, LoadSDNode *Origin = NULL,
7982 unsigned Shift = 0, SelectionDAG *DAG = NULL)
7983 : Inst(Inst), Origin(Origin), Shift(Shift), DAG(DAG) {}
7984
7985 LoadedSlice(const LoadedSlice &LS)
7986 : Inst(LS.Inst), Origin(LS.Origin), Shift(LS.Shift), DAG(LS.DAG) {}
7987
7988 /// \brief Get the bits used in a chunk of bits \p BitWidth large.
7989 /// \return Result is \p BitWidth and has used bits set to 1 and
7990 /// not used bits set to 0.
7991 APInt getUsedBits() const {
7992 // Reproduce the trunc(lshr) sequence:
7993 // - Start from the truncated value.
7994 // - Zero extend to the desired bit width.
7995 // - Shift left.
7996 assert(Origin && "No original load to compare against.");
7997 unsigned BitWidth = Origin->getValueSizeInBits(0);
7998 assert(Inst && "This slice is not bound to an instruction");
7999 assert(Inst->getValueSizeInBits(0) <= BitWidth &&
8000 "Extracted slice is bigger than the whole type!");
8001 APInt UsedBits(Inst->getValueSizeInBits(0), 0);
8002 UsedBits.setAllBits();
8003 UsedBits = UsedBits.zext(BitWidth);
8004 UsedBits <<= Shift;
8005 return UsedBits;
8006 }
8007
8008 /// \brief Get the size of the slice to be loaded in bytes.
8009 unsigned getLoadedSize() const {
8010 unsigned SliceSize = getUsedBits().countPopulation();
8011 assert(!(SliceSize & 0x7) && "Size is not a multiple of a byte.");
8012 return SliceSize / 8;
8013 }
8014
8015 /// \brief Get the type that will be loaded for this slice.
8016 /// Note: This may not be the final type for the slice.
8017 EVT getLoadedType() const {
8018 assert(DAG && "Missing context");
8019 LLVMContext &Ctxt = *DAG->getContext();
8020 return EVT::getIntegerVT(Ctxt, getLoadedSize() * 8);
8021 }
8022
8023 /// \brief Get the alignment of the load used for this slice.
8024 unsigned getAlignment() const {
8025 unsigned Alignment = Origin->getAlignment();
8026 unsigned Offset = getOffsetFromBase();
8027 if (Offset != 0)
8028 Alignment = MinAlign(Alignment, Alignment + Offset);
8029 return Alignment;
8030 }
8031
8032 /// \brief Check if this slice can be rewritten with legal operations.
8033 bool isLegal() const {
8034 // An invalid slice is not legal.
8035 if (!Origin || !Inst || !DAG)
8036 return false;
8037
8038 // Offsets are for indexed load only, we do not handle that.
8039 if (Origin->getOffset().getOpcode() != ISD::UNDEF)
8040 return false;
8041
8042 const TargetLowering &TLI = DAG->getTargetLoweringInfo();
8043
8044 // Check that the type is legal.
8045 EVT SliceType = getLoadedType();
8046 if (!TLI.isTypeLegal(SliceType))
8047 return false;
8048
8049 // Check that the load is legal for this type.
8050 if (!TLI.isOperationLegal(ISD::LOAD, SliceType))
8051 return false;
8052
8053 // Check that the offset can be computed.
8054 // 1. Check its type.
8055 EVT PtrType = Origin->getBasePtr().getValueType();
8056 if (PtrType == MVT::Untyped || PtrType.isExtended())
8057 return false;
8058
8059 // 2. Check that it fits in the immediate.
8060 if (!TLI.isLegalAddImmediate(getOffsetFromBase()))
8061 return false;
8062
8063 // 3. Check that the computation is legal.
8064 if (!TLI.isOperationLegal(ISD::ADD, PtrType))
8065 return false;
8066
8067 // Check that the zext is legal if it needs one.
8068 EVT TruncateType = Inst->getValueType(0);
8069 if (TruncateType != SliceType &&
8070 !TLI.isOperationLegal(ISD::ZERO_EXTEND, TruncateType))
8071 return false;
8072
8073 return true;
8074 }
8075
8076 /// \brief Get the offset in bytes of this slice in the original chunk of
8077 /// bits.
8078 /// \pre DAG != NULL.
8079 uint64_t getOffsetFromBase() const {
8080 assert(DAG && "Missing context.");
8081 bool IsBigEndian =
8082 DAG->getTargetLoweringInfo().getDataLayout()->isBigEndian();
8083 assert(!(Shift & 0x7) && "Shifts not aligned on Bytes are not supported.");
8084 uint64_t Offset = Shift / 8;
8085 unsigned TySizeInBytes = Origin->getValueSizeInBits(0) / 8;
8086 assert(!(Origin->getValueSizeInBits(0) & 0x7) &&
8087 "The size of the original loaded type is not a multiple of a"
8088 " byte.");
8089 // If Offset is bigger than TySizeInBytes, it means we are loading all
8090 // zeros. This should have been optimized before in the process.
8091 assert(TySizeInBytes > Offset &&
8092 "Invalid shift amount for given loaded size");
8093 if (IsBigEndian)
8094 Offset = TySizeInBytes - Offset - getLoadedSize();
8095 return Offset;
8096 }
8097
8098 /// \brief Generate the sequence of instructions to load the slice
8099 /// represented by this object and redirect the uses of this slice to
8100 /// this new sequence of instructions.
8101 /// \pre this->Inst && this->Origin are valid Instructions and this
8102 /// object passed the legal check: LoadedSlice::isLegal returned true.
8103 /// \return The last instruction of the sequence used to load the slice.
8104 SDValue loadSlice() const {
8105 assert(Inst && Origin && "Unable to replace a non-existing slice.");
8106 const SDValue &OldBaseAddr = Origin->getBasePtr();
8107 SDValue BaseAddr = OldBaseAddr;
8108 // Get the offset in that chunk of bytes w.r.t. the endianess.
8109 int64_t Offset = static_cast<int64_t>(getOffsetFromBase());
8110 assert(Offset >= 0 && "Offset too big to fit in int64_t!");
8111 if (Offset) {
8112 // BaseAddr = BaseAddr + Offset.
8113 EVT ArithType = BaseAddr.getValueType();
8114 BaseAddr = DAG->getNode(ISD::ADD, SDLoc(Origin), ArithType, BaseAddr,
8115 DAG->getConstant(Offset, ArithType));
8116 }
8117
8118 // Create the type of the loaded slice according to its size.
8119 EVT SliceType = getLoadedType();
8120
8121 // Create the load for the slice.
8122 SDValue LastInst = DAG->getLoad(
8123 SliceType, SDLoc(Origin), Origin->getChain(), BaseAddr,
8124 Origin->getPointerInfo().getWithOffset(Offset), Origin->isVolatile(),
8125 Origin->isNonTemporal(), Origin->isInvariant(), getAlignment());
8126 // If the final type is not the same as the loaded type, this means that
8127 // we have to pad with zero. Create a zero extend for that.
8128 EVT FinalType = Inst->getValueType(0);
8129 if (SliceType != FinalType)
8130 LastInst =
8131 DAG->getNode(ISD::ZERO_EXTEND, SDLoc(LastInst), FinalType, LastInst);
8132 return LastInst;
8133 }
8134
8135 /// \brief Check if this slice can be merged with an expensive cross register
8136 /// bank copy. E.g.,
8137 /// i = load i32
8138 /// f = bitcast i32 i to float
8139 bool canMergeExpensiveCrossRegisterBankCopy() const {
8140 if (!Inst || !Inst->hasOneUse())
8141 return false;
8142 SDNode *Use = *Inst->use_begin();
8143 if (Use->getOpcode() != ISD::BITCAST)
8144 return false;
8145 assert(DAG && "Missing context");
8146 const TargetLowering &TLI = DAG->getTargetLoweringInfo();
8147 EVT ResVT = Use->getValueType(0);
8148 const TargetRegisterClass *ResRC = TLI.getRegClassFor(ResVT.getSimpleVT());
8149 const TargetRegisterClass *ArgRC =
8150 TLI.getRegClassFor(Use->getOperand(0).getValueType().getSimpleVT());
8151 if (ArgRC == ResRC || !TLI.isOperationLegal(ISD::LOAD, ResVT))
8152 return false;
8153
8154 // At this point, we know that we perform a cross-register-bank copy.
8155 // Check if it is expensive.
8156 const TargetRegisterInfo *TRI = TLI.getTargetMachine().getRegisterInfo();
8157 // Assume bitcasts are cheap, unless both register classes do not
8158 // explicitly share a common sub class.
8159 if (!TRI || TRI->getCommonSubClass(ArgRC, ResRC))
8160 return false;
8161
8162 // Check if it will be merged with the load.
8163 // 1. Check the alignment constraint.
8164 unsigned RequiredAlignment = TLI.getDataLayout()->getABITypeAlignment(
8165 ResVT.getTypeForEVT(*DAG->getContext()));
8166
8167 if (RequiredAlignment > getAlignment())
8168 return false;
8169
8170 // 2. Check that the load is a legal operation for that type.
8171 if (!TLI.isOperationLegal(ISD::LOAD, ResVT))
8172 return false;
8173
8174 // 3. Check that we do not have a zext in the way.
8175 if (Inst->getValueType(0) != getLoadedType())
8176 return false;
8177
8178 return true;
8179 }
8180};
8181}
8182
8183/// \brief Sorts LoadedSlice according to their offset.
8184struct LoadedSliceSorter {
8185 bool operator()(const LoadedSlice &LHS, const LoadedSlice &RHS) {
8186 assert(LHS.Origin == RHS.Origin && "Different bases not implemented.");
8187 return LHS.getOffsetFromBase() < RHS.getOffsetFromBase();
8188 }
8189};
8190
8191/// \brief Check that all bits set in \p UsedBits form a dense region, i.e.,
8192/// \p UsedBits looks like 0..0 1..1 0..0.
8193static bool areUsedBitsDense(const APInt &UsedBits) {
8194 // If all the bits are one, this is dense!
8195 if (UsedBits.isAllOnesValue())
8196 return true;
8197
8198 // Get rid of the unused bits on the right.
8199 APInt NarrowedUsedBits = UsedBits.lshr(UsedBits.countTrailingZeros());
8200 // Get rid of the unused bits on the left.
8201 if (NarrowedUsedBits.countLeadingZeros())
8202 NarrowedUsedBits = NarrowedUsedBits.trunc(NarrowedUsedBits.getActiveBits());
8203 // Check that the chunk of bits is completely used.
8204 return NarrowedUsedBits.isAllOnesValue();
8205}
8206
8207/// \brief Check whether or not \p First and \p Second are next to each other
8208/// in memory. This means that there is no hole between the bits loaded
8209/// by \p First and the bits loaded by \p Second.
8210static bool areSlicesNextToEachOther(const LoadedSlice &First,
8211 const LoadedSlice &Second) {
8212 assert(First.Origin == Second.Origin && First.Origin &&
8213 "Unable to match different memory origins.");
8214 APInt UsedBits = First.getUsedBits();
8215 assert((UsedBits & Second.getUsedBits()) == 0 &&
8216 "Slices are not supposed to overlap.");
8217 UsedBits |= Second.getUsedBits();
8218 return areUsedBitsDense(UsedBits);
8219}
8220
8221/// \brief Adjust the \p GlobalLSCost according to the target
8222/// paring capabilities and the layout of the slices.
8223/// \pre \p GlobalLSCost should account for at least as many loads as
8224/// there is in the slices in \p LoadedSlices.
8225static void adjustCostForPairing(SmallVectorImpl<LoadedSlice> &LoadedSlices,
8226 LoadedSlice::Cost &GlobalLSCost) {
8227 unsigned NumberOfSlices = LoadedSlices.size();
8228 // If there is less than 2 elements, no pairing is possible.
8229 if (NumberOfSlices < 2)
8230 return;
8231
8232 // Sort the slices so that elements that are likely to be next to each
8233 // other in memory are next to each other in the list.
8234 std::sort(LoadedSlices.begin(), LoadedSlices.end(), LoadedSliceSorter());
8235 const TargetLowering &TLI = LoadedSlices[0].DAG->getTargetLoweringInfo();
8236 // First (resp. Second) is the first (resp. Second) potentially candidate
8237 // to be placed in a paired load.
8238 const LoadedSlice *First = NULL;
8239 const LoadedSlice *Second = NULL;
8240 for (unsigned CurrSlice = 0; CurrSlice < NumberOfSlices; ++CurrSlice,
8241 // Set the beginning of the pair.
8242 First = Second) {
8243
8244 Second = &LoadedSlices[CurrSlice];
8245
8246 // If First is NULL, it means we start a new pair.
8247 // Get to the next slice.
8248 if (!First)
8249 continue;
8250
8251 EVT LoadedType = First->getLoadedType();
8252
8253 // If the types of the slices are different, we cannot pair them.
8254 if (LoadedType != Second->getLoadedType())
8255 continue;
8256
8257 // Check if the target supplies paired loads for this type.
8258 unsigned RequiredAlignment = 0;
8259 if (!TLI.hasPairedLoad(LoadedType, RequiredAlignment)) {
8260 // move to the next pair, this type is hopeless.
8261 Second = NULL;
8262 continue;
8263 }
8264 // Check if we meet the alignment requirement.
8265 if (RequiredAlignment > First->getAlignment())
8266 continue;
8267
8268 // Check that both loads are next to each other in memory.
8269 if (!areSlicesNextToEachOther(*First, *Second))
8270 continue;
8271
8272 assert(GlobalLSCost.Loads > 0 && "We save more loads than we created!");
8273 --GlobalLSCost.Loads;
8274 // Move to the next pair.
8275 Second = NULL;
8276 }
8277}
8278
8279/// \brief Check the profitability of all involved LoadedSlice.
8280/// Currently, it is considered profitable if there is exactly two
8281/// involved slices (1) which are (2) next to each other in memory, and
8282/// whose cost (\see LoadedSlice::Cost) is smaller than the original load (3).
8283///
8284/// Note: The order of the elements in \p LoadedSlices may be modified, but not
8285/// the elements themselves.
8286///
8287/// FIXME: When the cost model will be mature enough, we can relax
8288/// constraints (1) and (2).
8289static bool isSlicingProfitable(SmallVectorImpl<LoadedSlice> &LoadedSlices,
8290 const APInt &UsedBits, bool ForCodeSize) {
8291 unsigned NumberOfSlices = LoadedSlices.size();
8292 if (StressLoadSlicing)
8293 return NumberOfSlices > 1;
8294
8295 // Check (1).
8296 if (NumberOfSlices != 2)
8297 return false;
8298
8299 // Check (2).
8300 if (!areUsedBitsDense(UsedBits))
8301 return false;
8302
8303 // Check (3).
8304 LoadedSlice::Cost OrigCost(ForCodeSize), GlobalSlicingCost(ForCodeSize);
8305 // The original code has one big load.
8306 OrigCost.Loads = 1;
8307 for (unsigned CurrSlice = 0; CurrSlice < NumberOfSlices; ++CurrSlice) {
8308 const LoadedSlice &LS = LoadedSlices[CurrSlice];
8309 // Accumulate the cost of all the slices.
8310 LoadedSlice::Cost SliceCost(LS, ForCodeSize);
8311 GlobalSlicingCost += SliceCost;
8312
8313 // Account as cost in the original configuration the gain obtained
8314 // with the current slices.
8315 OrigCost.addSliceGain(LS);
8316 }
8317
8318 // If the target supports paired load, adjust the cost accordingly.
8319 adjustCostForPairing(LoadedSlices, GlobalSlicingCost);
8320 return OrigCost > GlobalSlicingCost;
8321}
8322
8323/// \brief If the given load, \p LI, is used only by trunc or trunc(lshr)
8324/// operations, split it in the various pieces being extracted.
8325///
8326/// This sort of thing is introduced by SROA.
8327/// This slicing takes care not to insert overlapping loads.
8328/// \pre LI is a simple load (i.e., not an atomic or volatile load).
8329bool DAGCombiner::SliceUpLoad(SDNode *N) {
8330 if (Level < AfterLegalizeDAG)
8331 return false;
8332
8333 LoadSDNode *LD = cast<LoadSDNode>(N);
8334 if (LD->isVolatile() || !ISD::isNormalLoad(LD) ||
8335 !LD->getValueType(0).isInteger())
8336 return false;
8337
8338 // Keep track of already used bits to detect overlapping values.
8339 // In that case, we will just abort the transformation.
8340 APInt UsedBits(LD->getValueSizeInBits(0), 0);
8341
8342 SmallVector<LoadedSlice, 4> LoadedSlices;
8343
8344 // Check if this load is used as several smaller chunks of bits.
8345 // Basically, look for uses in trunc or trunc(lshr) and record a new chain
8346 // of computation for each trunc.
8347 for (SDNode::use_iterator UI = LD->use_begin(), UIEnd = LD->use_end();
8348 UI != UIEnd; ++UI) {
8349 // Skip the uses of the chain.
8350 if (UI.getUse().getResNo() != 0)
8351 continue;
8352
8353 SDNode *User = *UI;
8354 unsigned Shift = 0;
8355
8356 // Check if this is a trunc(lshr).
8357 if (User->getOpcode() == ISD::SRL && User->hasOneUse() &&
8358 isa<ConstantSDNode>(User->getOperand(1))) {
8359 Shift = cast<ConstantSDNode>(User->getOperand(1))->getZExtValue();
8360 User = *User->use_begin();
8361 }
8362
8363 // At this point, User is a Truncate, iff we encountered, trunc or
8364 // trunc(lshr).
8365 if (User->getOpcode() != ISD::TRUNCATE)
8366 return false;
8367
8368 // The width of the type must be a power of 2 and greater than 8-bits.
8369 // Otherwise the load cannot be represented in LLVM IR.
Alp Tokerf907b892013-12-05 05:44:44 +00008370 // Moreover, if we shifted with a non-8-bits multiple, the slice
Alp Tokercb402912014-01-24 17:20:08 +00008371 // will be across several bytes. We do not support that.
Quentin Colombetde0e0622013-10-11 18:29:42 +00008372 unsigned Width = User->getValueSizeInBits(0);
8373 if (Width < 8 || !isPowerOf2_32(Width) || (Shift & 0x7))
8374 return 0;
8375
8376 // Build the slice for this chain of computations.
8377 LoadedSlice LS(User, LD, Shift, &DAG);
8378 APInt CurrentUsedBits = LS.getUsedBits();
8379
8380 // Check if this slice overlaps with another.
8381 if ((CurrentUsedBits & UsedBits) != 0)
8382 return false;
8383 // Update the bits used globally.
8384 UsedBits |= CurrentUsedBits;
8385
8386 // Check if the new slice would be legal.
8387 if (!LS.isLegal())
8388 return false;
8389
8390 // Record the slice.
8391 LoadedSlices.push_back(LS);
8392 }
8393
8394 // Abort slicing if it does not seem to be profitable.
8395 if (!isSlicingProfitable(LoadedSlices, UsedBits, ForCodeSize))
8396 return false;
8397
8398 ++SlicedLoads;
8399
8400 // Rewrite each chain to use an independent load.
8401 // By construction, each chain can be represented by a unique load.
8402
8403 // Prepare the argument for the new token factor for all the slices.
8404 SmallVector<SDValue, 8> ArgChains;
8405 for (SmallVectorImpl<LoadedSlice>::const_iterator
8406 LSIt = LoadedSlices.begin(),
8407 LSItEnd = LoadedSlices.end();
8408 LSIt != LSItEnd; ++LSIt) {
8409 SDValue SliceInst = LSIt->loadSlice();
8410 CombineTo(LSIt->Inst, SliceInst, true);
8411 if (SliceInst.getNode()->getOpcode() != ISD::LOAD)
8412 SliceInst = SliceInst.getOperand(0);
8413 assert(SliceInst->getOpcode() == ISD::LOAD &&
8414 "It takes more than a zext to get to the loaded slice!!");
8415 ArgChains.push_back(SliceInst.getValue(1));
8416 }
8417
8418 SDValue Chain = DAG.getNode(ISD::TokenFactor, SDLoc(LD), MVT::Other,
8419 &ArgChains[0], ArgChains.size());
8420 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
8421 return true;
8422}
8423
Chris Lattner4041ab62010-04-15 04:48:01 +00008424/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
8425/// load is having specific bytes cleared out. If so, return the byte size
8426/// being masked out and the shift amount.
8427static std::pair<unsigned, unsigned>
8428CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
8429 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peck527da1b2010-11-23 03:31:01 +00008430
Chris Lattner4041ab62010-04-15 04:48:01 +00008431 // Check for the structure we're looking for.
8432 if (V->getOpcode() != ISD::AND ||
8433 !isa<ConstantSDNode>(V->getOperand(1)) ||
8434 !ISD::isNormalLoad(V->getOperand(0).getNode()))
8435 return Result;
Wesley Peck527da1b2010-11-23 03:31:01 +00008436
Chris Lattner3245afd2010-04-15 06:10:49 +00008437 // Check the chain and pointer.
Chris Lattner4041ab62010-04-15 04:48:01 +00008438 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattner3245afd2010-04-15 06:10:49 +00008439 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peck527da1b2010-11-23 03:31:01 +00008440
Chris Lattner3245afd2010-04-15 06:10:49 +00008441 // The store should be chained directly to the load or be an operand of a
8442 // tokenfactor.
8443 if (LD == Chain.getNode())
8444 ; // ok.
8445 else if (Chain->getOpcode() != ISD::TokenFactor)
8446 return Result; // Fail.
8447 else {
8448 bool isOk = false;
8449 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
8450 if (Chain->getOperand(i).getNode() == LD) {
8451 isOk = true;
8452 break;
8453 }
8454 if (!isOk) return Result;
8455 }
Wesley Peck527da1b2010-11-23 03:31:01 +00008456
Chris Lattner4041ab62010-04-15 04:48:01 +00008457 // This only handles simple types.
8458 if (V.getValueType() != MVT::i16 &&
8459 V.getValueType() != MVT::i32 &&
8460 V.getValueType() != MVT::i64)
8461 return Result;
8462
8463 // Check the constant mask. Invert it so that the bits being masked out are
8464 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
8465 // follow the sign bit for uniformity.
8466 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00008467 unsigned NotMaskLZ = countLeadingZeros(NotMask);
Chris Lattner4041ab62010-04-15 04:48:01 +00008468 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00008469 unsigned NotMaskTZ = countTrailingZeros(NotMask);
Chris Lattner4041ab62010-04-15 04:48:01 +00008470 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
8471 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peck527da1b2010-11-23 03:31:01 +00008472
Chris Lattner4041ab62010-04-15 04:48:01 +00008473 // See if we have a continuous run of bits. If so, we have 0*1+0*
8474 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
8475 return Result;
8476
8477 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
8478 if (V.getValueType() != MVT::i64 && NotMaskLZ)
8479 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peck527da1b2010-11-23 03:31:01 +00008480
Chris Lattner4041ab62010-04-15 04:48:01 +00008481 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
8482 switch (MaskedBytes) {
Wesley Peck527da1b2010-11-23 03:31:01 +00008483 case 1:
8484 case 2:
Chris Lattner4041ab62010-04-15 04:48:01 +00008485 case 4: break;
8486 default: return Result; // All one mask, or 5-byte mask.
8487 }
Wesley Peck527da1b2010-11-23 03:31:01 +00008488
Chris Lattner4041ab62010-04-15 04:48:01 +00008489 // Verify that the first bit starts at a multiple of mask so that the access
8490 // is aligned the same as the access width.
8491 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peck527da1b2010-11-23 03:31:01 +00008492
Chris Lattner4041ab62010-04-15 04:48:01 +00008493 Result.first = MaskedBytes;
8494 Result.second = NotMaskTZ/8;
8495 return Result;
8496}
8497
8498
8499/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
8500/// provides a value as specified by MaskInfo. If so, replace the specified
8501/// store with a narrower store of truncated IVal.
8502static SDNode *
8503ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
8504 SDValue IVal, StoreSDNode *St,
8505 DAGCombiner *DC) {
8506 unsigned NumBytes = MaskInfo.first;
8507 unsigned ByteShift = MaskInfo.second;
8508 SelectionDAG &DAG = DC->getDAG();
Wesley Peck527da1b2010-11-23 03:31:01 +00008509
Chris Lattner4041ab62010-04-15 04:48:01 +00008510 // Check to see if IVal is all zeros in the part being masked in by the 'or'
8511 // that uses this. If not, this is not a replacement.
8512 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
8513 ByteShift*8, (ByteShift+NumBytes)*8);
8514 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peck527da1b2010-11-23 03:31:01 +00008515
Chris Lattner4041ab62010-04-15 04:48:01 +00008516 // Check that it is legal on the target to do this. It is legal if the new
8517 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
8518 // legalization.
8519 MVT VT = MVT::getIntegerVT(NumBytes*8);
8520 if (!DC->isTypeLegal(VT))
8521 return 0;
Wesley Peck527da1b2010-11-23 03:31:01 +00008522
Chris Lattner4041ab62010-04-15 04:48:01 +00008523 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
8524 // shifted by ByteShift and truncated down to NumBytes.
8525 if (ByteShift)
Andrew Trickef9de2a2013-05-25 02:42:55 +00008526 IVal = DAG.getNode(ISD::SRL, SDLoc(IVal), IVal.getValueType(), IVal,
Owen Andersonb2c80da2011-02-25 21:41:48 +00008527 DAG.getConstant(ByteShift*8,
8528 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner4041ab62010-04-15 04:48:01 +00008529
8530 // Figure out the offset for the store and the alignment of the access.
8531 unsigned StOffset;
8532 unsigned NewAlign = St->getAlignment();
8533
8534 if (DAG.getTargetLoweringInfo().isLittleEndian())
8535 StOffset = ByteShift;
8536 else
8537 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peck527da1b2010-11-23 03:31:01 +00008538
Chris Lattner4041ab62010-04-15 04:48:01 +00008539 SDValue Ptr = St->getBasePtr();
8540 if (StOffset) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00008541 Ptr = DAG.getNode(ISD::ADD, SDLoc(IVal), Ptr.getValueType(),
Chris Lattner4041ab62010-04-15 04:48:01 +00008542 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
8543 NewAlign = MinAlign(NewAlign, StOffset);
8544 }
Wesley Peck527da1b2010-11-23 03:31:01 +00008545
Chris Lattner4041ab62010-04-15 04:48:01 +00008546 // Truncate down to the new size.
Andrew Trickef9de2a2013-05-25 02:42:55 +00008547 IVal = DAG.getNode(ISD::TRUNCATE, SDLoc(IVal), VT, IVal);
Wesley Peck527da1b2010-11-23 03:31:01 +00008548
Chris Lattner4041ab62010-04-15 04:48:01 +00008549 ++OpsNarrowed;
Andrew Trickef9de2a2013-05-25 02:42:55 +00008550 return DAG.getStore(St->getChain(), SDLoc(St), IVal, Ptr,
Chris Lattner676c61d2010-09-21 18:41:36 +00008551 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner4041ab62010-04-15 04:48:01 +00008552 false, false, NewAlign).getNode();
8553}
8554
Evan Chenga9cda8a2009-05-28 00:35:15 +00008555
8556/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
8557/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
8558/// of the loaded bits, try narrowing the load and store if it would end up
8559/// being a win for performance or code size.
8560SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
8561 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Cheng6673ff02009-05-28 18:41:02 +00008562 if (ST->isVolatile())
8563 return SDValue();
8564
Evan Chenga9cda8a2009-05-28 00:35:15 +00008565 SDValue Chain = ST->getChain();
8566 SDValue Value = ST->getValue();
8567 SDValue Ptr = ST->getBasePtr();
Owen Anderson53aa7a92009-08-10 22:56:29 +00008568 EVT VT = Value.getValueType();
Evan Chenga9cda8a2009-05-28 00:35:15 +00008569
8570 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Cheng6673ff02009-05-28 18:41:02 +00008571 return SDValue();
Evan Chenga9cda8a2009-05-28 00:35:15 +00008572
8573 unsigned Opc = Value.getOpcode();
Wesley Peck527da1b2010-11-23 03:31:01 +00008574
Chris Lattner4041ab62010-04-15 04:48:01 +00008575 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
8576 // is a byte mask indicating a consecutive number of bytes, check to see if
8577 // Y is known to provide just those bytes. If so, we try to replace the
8578 // load + replace + store sequence with a single (narrower) store, which makes
8579 // the load dead.
8580 if (Opc == ISD::OR) {
8581 std::pair<unsigned, unsigned> MaskedLoad;
8582 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
8583 if (MaskedLoad.first)
8584 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
8585 Value.getOperand(1), ST,this))
8586 return SDValue(NewST, 0);
Wesley Peck527da1b2010-11-23 03:31:01 +00008587
Chris Lattner4041ab62010-04-15 04:48:01 +00008588 // Or is commutative, so try swapping X and Y.
8589 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
8590 if (MaskedLoad.first)
8591 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
8592 Value.getOperand(0), ST,this))
8593 return SDValue(NewST, 0);
8594 }
Wesley Peck527da1b2010-11-23 03:31:01 +00008595
Evan Chenga9cda8a2009-05-28 00:35:15 +00008596 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
8597 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Cheng6673ff02009-05-28 18:41:02 +00008598 return SDValue();
Evan Chenga9cda8a2009-05-28 00:35:15 +00008599
8600 SDValue N0 = Value.getOperand(0);
Dan Gohman3c9b5f32010-09-02 21:18:42 +00008601 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
8602 Chain == SDValue(N0.getNode(), 1)) {
Evan Chenga9cda8a2009-05-28 00:35:15 +00008603 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerf72c3c02010-09-21 16:08:50 +00008604 if (LD->getBasePtr() != Ptr ||
8605 LD->getPointerInfo().getAddrSpace() !=
8606 ST->getPointerInfo().getAddrSpace())
Evan Cheng6673ff02009-05-28 18:41:02 +00008607 return SDValue();
Evan Chenga9cda8a2009-05-28 00:35:15 +00008608
8609 // Find the type to narrow it the load / op / store to.
8610 SDValue N1 = Value.getOperand(1);
8611 unsigned BitWidth = N1.getValueSizeInBits();
8612 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
8613 if (Opc == ISD::AND)
8614 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Cheng86cdb4b2009-05-28 23:52:18 +00008615 if (Imm == 0 || Imm.isAllOnesValue())
8616 return SDValue();
Evan Chenga9cda8a2009-05-28 00:35:15 +00008617 unsigned ShAmt = Imm.countTrailingZeros();
8618 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
8619 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson117c9e82009-08-12 00:36:31 +00008620 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Chenga9cda8a2009-05-28 00:35:15 +00008621 while (NewBW < BitWidth &&
Evan Cheng6673ff02009-05-28 18:41:02 +00008622 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Chenga9cda8a2009-05-28 00:35:15 +00008623 TLI.isNarrowingProfitable(VT, NewVT))) {
8624 NewBW = NextPowerOf2(NewBW);
Owen Anderson117c9e82009-08-12 00:36:31 +00008625 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Chenga9cda8a2009-05-28 00:35:15 +00008626 }
Evan Cheng6673ff02009-05-28 18:41:02 +00008627 if (NewBW >= BitWidth)
8628 return SDValue();
Evan Chenga9cda8a2009-05-28 00:35:15 +00008629
8630 // If the lsb changed does not start at the type bitwidth boundary,
8631 // start at the previous one.
8632 if (ShAmt % NewBW)
8633 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
Manman Ren82751a12012-12-12 01:13:50 +00008634 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt,
8635 std::min(BitWidth, ShAmt + NewBW));
Evan Chenga9cda8a2009-05-28 00:35:15 +00008636 if ((Imm & Mask) == Imm) {
8637 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
8638 if (Opc == ISD::AND)
8639 NewImm ^= APInt::getAllOnesValue(NewBW);
8640 uint64_t PtrOff = ShAmt / 8;
8641 // For big endian targets, we need to adjust the offset to the pointer to
8642 // load the correct bytes.
8643 if (TLI.isBigEndian())
Evan Cheng6673ff02009-05-28 18:41:02 +00008644 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Chenga9cda8a2009-05-28 00:35:15 +00008645
8646 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattner229907c2011-07-18 04:54:35 +00008647 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00008648 if (NewAlign < TLI.getDataLayout()->getABITypeAlignment(NewVTTy))
Evan Cheng6673ff02009-05-28 18:41:02 +00008649 return SDValue();
8650
Andrew Trickef9de2a2013-05-25 02:42:55 +00008651 SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(LD),
Evan Chenga9cda8a2009-05-28 00:35:15 +00008652 Ptr.getValueType(), Ptr,
8653 DAG.getConstant(PtrOff, Ptr.getValueType()));
Andrew Trickef9de2a2013-05-25 02:42:55 +00008654 SDValue NewLD = DAG.getLoad(NewVT, SDLoc(N0),
Evan Chenga9cda8a2009-05-28 00:35:15 +00008655 LD->getChain(), NewPtr,
Chris Lattnerf72c3c02010-09-21 16:08:50 +00008656 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene39c6d012010-02-15 17:00:31 +00008657 LD->isVolatile(), LD->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00008658 LD->isInvariant(), NewAlign,
8659 LD->getTBAAInfo());
Andrew Trickef9de2a2013-05-25 02:42:55 +00008660 SDValue NewVal = DAG.getNode(Opc, SDLoc(Value), NewVT, NewLD,
Evan Chenga9cda8a2009-05-28 00:35:15 +00008661 DAG.getConstant(NewImm, NewVT));
Andrew Trickef9de2a2013-05-25 02:42:55 +00008662 SDValue NewST = DAG.getStore(Chain, SDLoc(N),
Evan Chenga9cda8a2009-05-28 00:35:15 +00008663 NewVal, NewPtr,
Chris Lattnerf72c3c02010-09-21 16:08:50 +00008664 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene39c6d012010-02-15 17:00:31 +00008665 false, false, NewAlign);
Evan Chenga9cda8a2009-05-28 00:35:15 +00008666
8667 AddToWorkList(NewPtr.getNode());
8668 AddToWorkList(NewLD.getNode());
8669 AddToWorkList(NewVal.getNode());
8670 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00008671 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Chenga9cda8a2009-05-28 00:35:15 +00008672 ++OpsNarrowed;
8673 return NewST;
8674 }
8675 }
8676
Evan Cheng6673ff02009-05-28 18:41:02 +00008677 return SDValue();
Evan Chenga9cda8a2009-05-28 00:35:15 +00008678}
8679
Evan Chengd42641c2011-02-02 01:06:55 +00008680/// TransformFPLoadStorePair - For a given floating point load / store pair,
8681/// if the load value isn't used by any other operations, then consider
8682/// transforming the pair to integer load / store operations if the target
8683/// deems the transformation profitable.
8684SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
8685 StoreSDNode *ST = cast<StoreSDNode>(N);
8686 SDValue Chain = ST->getChain();
8687 SDValue Value = ST->getValue();
8688 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
8689 Value.hasOneUse() &&
8690 Chain == SDValue(Value.getNode(), 1)) {
8691 LoadSDNode *LD = cast<LoadSDNode>(Value);
8692 EVT VT = LD->getMemoryVT();
8693 if (!VT.isFloatingPoint() ||
8694 VT != ST->getMemoryVT() ||
8695 LD->isNonTemporal() ||
8696 ST->isNonTemporal() ||
8697 LD->getPointerInfo().getAddrSpace() != 0 ||
8698 ST->getPointerInfo().getAddrSpace() != 0)
8699 return SDValue();
8700
8701 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
8702 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
8703 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
8704 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
8705 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
8706 return SDValue();
8707
8708 unsigned LDAlign = LD->getAlignment();
8709 unsigned STAlign = ST->getAlignment();
Chris Lattner229907c2011-07-18 04:54:35 +00008710 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00008711 unsigned ABIAlign = TLI.getDataLayout()->getABITypeAlignment(IntVTTy);
Evan Chengd42641c2011-02-02 01:06:55 +00008712 if (LDAlign < ABIAlign || STAlign < ABIAlign)
8713 return SDValue();
8714
Andrew Trickef9de2a2013-05-25 02:42:55 +00008715 SDValue NewLD = DAG.getLoad(IntVT, SDLoc(Value),
Evan Chengd42641c2011-02-02 01:06:55 +00008716 LD->getChain(), LD->getBasePtr(),
8717 LD->getPointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00008718 false, false, false, LDAlign);
Evan Chengd42641c2011-02-02 01:06:55 +00008719
Andrew Trickef9de2a2013-05-25 02:42:55 +00008720 SDValue NewST = DAG.getStore(NewLD.getValue(1), SDLoc(N),
Evan Chengd42641c2011-02-02 01:06:55 +00008721 NewLD, ST->getBasePtr(),
8722 ST->getPointerInfo(),
8723 false, false, STAlign);
8724
8725 AddToWorkList(NewLD.getNode());
8726 AddToWorkList(NewST.getNode());
8727 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00008728 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Chengd42641c2011-02-02 01:06:55 +00008729 ++LdStFP2Int;
8730 return NewST;
8731 }
8732
8733 return SDValue();
8734}
8735
Arnold Schwaighofer67523662013-04-01 18:12:58 +00008736/// Helper struct to parse and store a memory address as base + index + offset.
8737/// We ignore sign extensions when it is safe to do so.
8738/// The following two expressions are not equivalent. To differentiate we need
8739/// to store whether there was a sign extension involved in the index
8740/// computation.
8741/// (load (i64 add (i64 copyfromreg %c)
8742/// (i64 signextend (add (i8 load %index)
8743/// (i8 1))))
8744/// vs
8745///
8746/// (load (i64 add (i64 copyfromreg %c)
8747/// (i64 signextend (i32 add (i32 signextend (i8 load %index))
8748/// (i32 1)))))
8749struct BaseIndexOffset {
8750 SDValue Base;
8751 SDValue Index;
8752 int64_t Offset;
8753 bool IsIndexSignExt;
8754
8755 BaseIndexOffset() : Offset(0), IsIndexSignExt(false) {}
8756
8757 BaseIndexOffset(SDValue Base, SDValue Index, int64_t Offset,
8758 bool IsIndexSignExt) :
8759 Base(Base), Index(Index), Offset(Offset), IsIndexSignExt(IsIndexSignExt) {}
8760
8761 bool equalBaseIndex(const BaseIndexOffset &Other) {
8762 return Other.Base == Base && Other.Index == Index &&
8763 Other.IsIndexSignExt == IsIndexSignExt;
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008764 }
8765
Arnold Schwaighofer67523662013-04-01 18:12:58 +00008766 /// Parses tree in Ptr for base, index, offset addresses.
8767 static BaseIndexOffset match(SDValue Ptr) {
8768 bool IsIndexSignExt = false;
8769
Juergen Ributzka3db39dc2013-08-21 21:53:38 +00008770 // We only can pattern match BASE + INDEX + OFFSET. If Ptr is not an ADD
8771 // instruction, then it could be just the BASE or everything else we don't
8772 // know how to handle. Just use Ptr as BASE and give up.
Arnold Schwaighofer67523662013-04-01 18:12:58 +00008773 if (Ptr->getOpcode() != ISD::ADD)
8774 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
8775
Juergen Ributzka3db39dc2013-08-21 21:53:38 +00008776 // We know that we have at least an ADD instruction. Try to pattern match
8777 // the simple case of BASE + OFFSET.
Arnold Schwaighofer67523662013-04-01 18:12:58 +00008778 if (isa<ConstantSDNode>(Ptr->getOperand(1))) {
8779 int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue();
8780 return BaseIndexOffset(Ptr->getOperand(0), SDValue(), Offset,
8781 IsIndexSignExt);
8782 }
8783
Juergen Ributzka3db39dc2013-08-21 21:53:38 +00008784 // Inside a loop the current BASE pointer is calculated using an ADD and a
Juergen Ributzka11c52c62013-08-28 22:33:58 +00008785 // MUL instruction. In this case Ptr is the actual BASE pointer.
Juergen Ributzka3db39dc2013-08-21 21:53:38 +00008786 // (i64 add (i64 %array_ptr)
8787 // (i64 mul (i64 %induction_var)
8788 // (i64 %element_size)))
Juergen Ributzka11c52c62013-08-28 22:33:58 +00008789 if (Ptr->getOperand(1)->getOpcode() == ISD::MUL)
Juergen Ributzka3db39dc2013-08-21 21:53:38 +00008790 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
Juergen Ributzka3db39dc2013-08-21 21:53:38 +00008791
Arnold Schwaighofer67523662013-04-01 18:12:58 +00008792 // Look at Base + Index + Offset cases.
8793 SDValue Base = Ptr->getOperand(0);
8794 SDValue IndexOffset = Ptr->getOperand(1);
8795
8796 // Skip signextends.
8797 if (IndexOffset->getOpcode() == ISD::SIGN_EXTEND) {
8798 IndexOffset = IndexOffset->getOperand(0);
8799 IsIndexSignExt = true;
8800 }
8801
8802 // Either the case of Base + Index (no offset) or something else.
8803 if (IndexOffset->getOpcode() != ISD::ADD)
8804 return BaseIndexOffset(Base, IndexOffset, 0, IsIndexSignExt);
8805
8806 // Now we have the case of Base + Index + offset.
8807 SDValue Index = IndexOffset->getOperand(0);
8808 SDValue Offset = IndexOffset->getOperand(1);
8809
8810 if (!isa<ConstantSDNode>(Offset))
8811 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
8812
8813 // Ignore signextends.
8814 if (Index->getOpcode() == ISD::SIGN_EXTEND) {
8815 Index = Index->getOperand(0);
8816 IsIndexSignExt = true;
8817 } else IsIndexSignExt = false;
8818
8819 int64_t Off = cast<ConstantSDNode>(Offset)->getSExtValue();
8820 return BaseIndexOffset(Base, Index, Off, IsIndexSignExt);
8821 }
8822};
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008823
8824/// Holds a pointer to an LSBaseSDNode as well as information on where it
8825/// is located in a sequence of memory operations connected by a chain.
8826struct MemOpLink {
8827 MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq):
8828 MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { }
8829 // Ptr to the mem node.
8830 LSBaseSDNode *MemNode;
8831 // Offset from the base ptr.
8832 int64_t OffsetFromBase;
8833 // What is the sequence number of this mem node.
8834 // Lowest mem operand in the DAG starts at zero.
8835 unsigned SequenceNum;
8836};
8837
8838/// Sorts store nodes in a link according to their offset from a shared
8839// base ptr.
8840struct ConsecutiveMemoryChainSorter {
8841 bool operator()(MemOpLink LHS, MemOpLink RHS) {
Stepan Dyatkovskiy157bb422014-01-27 09:18:31 +00008842 return
8843 LHS.OffsetFromBase < RHS.OffsetFromBase ||
8844 (LHS.OffsetFromBase == RHS.OffsetFromBase &&
8845 LHS.SequenceNum > RHS.SequenceNum);
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008846 }
8847};
8848
8849bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) {
8850 EVT MemVT = St->getMemoryVT();
8851 int64_t ElementSizeBytes = MemVT.getSizeInBits()/8;
Nadav Rotem495b1a42013-02-14 18:28:52 +00008852 bool NoVectors = DAG.getMachineFunction().getFunction()->getAttributes().
8853 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008854
8855 // Don't merge vectors into wider inputs.
8856 if (MemVT.isVector() || !MemVT.isSimple())
8857 return false;
8858
8859 // Perform an early exit check. Do not bother looking at stored values that
8860 // are not constants or loads.
8861 SDValue StoredVal = St->getValue();
8862 bool IsLoadSrc = isa<LoadSDNode>(StoredVal);
8863 if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) &&
8864 !IsLoadSrc)
8865 return false;
8866
8867 // Only look at ends of store sequences.
8868 SDValue Chain = SDValue(St, 1);
8869 if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE)
8870 return false;
8871
Arnold Schwaighofer67523662013-04-01 18:12:58 +00008872 // This holds the base pointer, index, and the offset in bytes from the base
8873 // pointer.
8874 BaseIndexOffset BasePtr = BaseIndexOffset::match(St->getBasePtr());
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008875
8876 // We must have a base and an offset.
Arnold Schwaighofer67523662013-04-01 18:12:58 +00008877 if (!BasePtr.Base.getNode())
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008878 return false;
8879
8880 // Do not handle stores to undef base pointers.
Arnold Schwaighofer67523662013-04-01 18:12:58 +00008881 if (BasePtr.Base.getOpcode() == ISD::UNDEF)
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008882 return false;
8883
Nadav Rotem307d7672012-11-29 00:00:08 +00008884 // Save the LoadSDNodes that we find in the chain.
8885 // We need to make sure that these nodes do not interfere with
8886 // any of the store nodes.
8887 SmallVector<LSBaseSDNode*, 8> AliasLoadNodes;
8888
8889 // Save the StoreSDNodes that we find in the chain.
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008890 SmallVector<MemOpLink, 8> StoreNodes;
Nadav Rotem307d7672012-11-29 00:00:08 +00008891
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008892 // Walk up the chain and look for nodes with offsets from the same
8893 // base pointer. Stop when reaching an instruction with a different kind
8894 // or instruction which has a different base pointer.
8895 unsigned Seq = 0;
8896 StoreSDNode *Index = St;
8897 while (Index) {
8898 // If the chain has more than one use, then we can't reorder the mem ops.
8899 if (Index != St && !SDValue(Index, 1)->hasOneUse())
8900 break;
8901
8902 // Find the base pointer and offset for this memory node.
Arnold Schwaighofer67523662013-04-01 18:12:58 +00008903 BaseIndexOffset Ptr = BaseIndexOffset::match(Index->getBasePtr());
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008904
8905 // Check that the base pointer is the same as the original one.
Arnold Schwaighofer67523662013-04-01 18:12:58 +00008906 if (!Ptr.equalBaseIndex(BasePtr))
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008907 break;
8908
8909 // Check that the alignment is the same.
8910 if (Index->getAlignment() != St->getAlignment())
8911 break;
8912
8913 // The memory operands must not be volatile.
8914 if (Index->isVolatile() || Index->isIndexed())
8915 break;
8916
8917 // No truncation.
8918 if (StoreSDNode *St = dyn_cast<StoreSDNode>(Index))
8919 if (St->isTruncatingStore())
8920 break;
8921
8922 // The stored memory type must be the same.
8923 if (Index->getMemoryVT() != MemVT)
8924 break;
8925
8926 // We do not allow unaligned stores because we want to prevent overriding
8927 // stores.
8928 if (Index->getAlignment()*8 != MemVT.getSizeInBits())
8929 break;
8930
8931 // We found a potential memory operand to merge.
Arnold Schwaighofer67523662013-04-01 18:12:58 +00008932 StoreNodes.push_back(MemOpLink(Index, Ptr.Offset, Seq++));
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008933
Nadav Rotem307d7672012-11-29 00:00:08 +00008934 // Find the next memory operand in the chain. If the next operand in the
8935 // chain is a store then move up and continue the scan with the next
8936 // memory operand. If the next operand is a load save it and use alias
8937 // information to check if it interferes with anything.
8938 SDNode *NextInChain = Index->getChain().getNode();
8939 while (1) {
Nadav Rotemac450eb2012-12-06 17:34:13 +00008940 if (StoreSDNode *STn = dyn_cast<StoreSDNode>(NextInChain)) {
Nadav Rotem307d7672012-11-29 00:00:08 +00008941 // We found a store node. Use it for the next iteration.
Nadav Rotemac450eb2012-12-06 17:34:13 +00008942 Index = STn;
Nadav Rotem307d7672012-11-29 00:00:08 +00008943 break;
8944 } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) {
Bill Wendling9200bb02013-11-25 18:05:22 +00008945 if (Ldn->isVolatile()) {
8946 Index = NULL;
8947 break;
8948 }
8949
Nadav Rotem307d7672012-11-29 00:00:08 +00008950 // Save the load node for later. Continue the scan.
8951 AliasLoadNodes.push_back(Ldn);
8952 NextInChain = Ldn->getChain().getNode();
8953 continue;
8954 } else {
8955 Index = NULL;
8956 break;
8957 }
8958 }
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008959 }
8960
8961 // Check if there is anything to merge.
8962 if (StoreNodes.size() < 2)
8963 return false;
8964
8965 // Sort the memory operands according to their distance from the base pointer.
8966 std::sort(StoreNodes.begin(), StoreNodes.end(),
8967 ConsecutiveMemoryChainSorter());
8968
8969 // Scan the memory operations on the chain and find the first non-consecutive
8970 // store memory address.
8971 unsigned LastConsecutiveStore = 0;
8972 int64_t StartAddress = StoreNodes[0].OffsetFromBase;
Nadav Rotemac450eb2012-12-06 17:34:13 +00008973 for (unsigned i = 0, e = StoreNodes.size(); i < e; ++i) {
8974
8975 // Check that the addresses are consecutive starting from the second
8976 // element in the list of stores.
8977 if (i > 0) {
8978 int64_t CurrAddress = StoreNodes[i].OffsetFromBase;
8979 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
8980 break;
8981 }
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008982
Nadav Rotem307d7672012-11-29 00:00:08 +00008983 bool Alias = false;
8984 // Check if this store interferes with any of the loads that we found.
8985 for (unsigned ld = 0, lde = AliasLoadNodes.size(); ld < lde; ++ld)
8986 if (isAlias(AliasLoadNodes[ld], StoreNodes[i].MemNode)) {
8987 Alias = true;
8988 break;
8989 }
Nadav Rotem307d7672012-11-29 00:00:08 +00008990 // We found a load that alias with this store. Stop the sequence.
8991 if (Alias)
8992 break;
8993
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00008994 // Mark this node as useful.
8995 LastConsecutiveStore = i;
8996 }
8997
8998 // The node with the lowest store address.
8999 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode;
9000
9001 // Store the constants into memory as one consecutive store.
9002 if (!IsLoadSrc) {
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009003 unsigned LastLegalType = 0;
Nadav Rotemb27777f2012-10-04 22:35:15 +00009004 unsigned LastLegalVectorType = 0;
9005 bool NonZero = false;
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009006 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
9007 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
9008 SDValue StoredVal = St->getValue();
Nadav Rotemb27777f2012-10-04 22:35:15 +00009009
9010 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) {
Benjamin Kramer62f7fb92012-10-05 18:19:44 +00009011 NonZero |= !C->isNullValue();
Nadav Rotemb27777f2012-10-04 22:35:15 +00009012 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) {
Benjamin Kramer62f7fb92012-10-05 18:19:44 +00009013 NonZero |= !C->getConstantFPValue()->isNullValue();
Nadav Rotemb27777f2012-10-04 22:35:15 +00009014 } else {
Alp Tokerf907b892013-12-05 05:44:44 +00009015 // Non-constant.
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009016 break;
Nadav Rotemb27777f2012-10-04 22:35:15 +00009017 }
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009018
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009019 // Find a legal type for the constant store.
9020 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
9021 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
9022 if (TLI.isTypeLegal(StoreTy))
9023 LastLegalType = i+1;
Arnold Schwaighoferd6c6e862013-04-02 15:58:51 +00009024 // Or check whether a truncstore is legal.
9025 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) ==
9026 TargetLowering::TypePromoteInteger) {
9027 EVT LegalizedStoredValueTy =
9028 TLI.getTypeToTransformTo(*DAG.getContext(), StoredVal.getValueType());
9029 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy))
9030 LastLegalType = i+1;
9031 }
Nadav Rotemb27777f2012-10-04 22:35:15 +00009032
9033 // Find a legal type for the vector store.
9034 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
9035 if (TLI.isTypeLegal(Ty))
9036 LastLegalVectorType = i + 1;
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009037 }
9038
Bob Wilson3365b802012-12-20 01:36:20 +00009039 // We only use vectors if the constant is known to be zero and the
9040 // function is not marked with the noimplicitfloat attribute.
Nadav Rotem495b1a42013-02-14 18:28:52 +00009041 if (NonZero || NoVectors)
Nadav Rotemb27777f2012-10-04 22:35:15 +00009042 LastLegalVectorType = 0;
9043
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009044 // Check if we found a legal integer type to store.
Nadav Rotemb27777f2012-10-04 22:35:15 +00009045 if (LastLegalType == 0 && LastLegalVectorType == 0)
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009046 return false;
9047
Nadav Rotem495b1a42013-02-14 18:28:52 +00009048 bool UseVector = (LastLegalVectorType > LastLegalType) && !NoVectors;
Nadav Rotemb27777f2012-10-04 22:35:15 +00009049 unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType;
9050
9051 // Make sure we have something to merge.
9052 if (NumElem < 2)
9053 return false;
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009054
9055 unsigned EarliestNodeUsed = 0;
9056 for (unsigned i=0; i < NumElem; ++i) {
9057 // Find a chain for the new wide-store operand. Notice that some
9058 // of the store nodes that we found may not be selected for inclusion
9059 // in the wide store. The chain we use needs to be the chain of the
9060 // earliest store node which is *used* and replaced by the wide store.
9061 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
9062 EarliestNodeUsed = i;
9063 }
9064
9065 // The earliest Node in the DAG.
9066 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
Andrew Trickef9de2a2013-05-25 02:42:55 +00009067 SDLoc DL(StoreNodes[0].MemNode);
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009068
Nadav Rotemb27777f2012-10-04 22:35:15 +00009069 SDValue StoredVal;
9070 if (UseVector) {
9071 // Find a legal type for the vector store.
9072 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
9073 assert(TLI.isTypeLegal(Ty) && "Illegal vector store");
9074 StoredVal = DAG.getConstant(0, Ty);
9075 } else {
9076 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
9077 APInt StoreInt(StoreBW, 0);
9078
9079 // Construct a single integer constant which is made of the smaller
9080 // constant inputs.
9081 bool IsLE = TLI.isLittleEndian();
9082 for (unsigned i = 0; i < NumElem ; ++i) {
9083 unsigned Idx = IsLE ?(NumElem - 1 - i) : i;
9084 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode);
9085 SDValue Val = St->getValue();
9086 StoreInt<<=ElementSizeBytes*8;
9087 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) {
9088 StoreInt|=C->getAPIntValue().zext(StoreBW);
9089 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) {
9090 StoreInt|= C->getValueAPF().bitcastToAPInt().zext(StoreBW);
9091 } else {
9092 assert(false && "Invalid constant element type");
9093 }
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009094 }
Nadav Rotemb27777f2012-10-04 22:35:15 +00009095
9096 // Create the new Load and Store operations.
9097 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
9098 StoredVal = DAG.getConstant(StoreInt, StoreTy);
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009099 }
9100
Nadav Rotemb27777f2012-10-04 22:35:15 +00009101 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), DL, StoredVal,
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009102 FirstInChain->getBasePtr(),
9103 FirstInChain->getPointerInfo(),
9104 false, false,
9105 FirstInChain->getAlignment());
9106
9107 // Replace the first store with the new store
9108 CombineTo(EarliestOp, NewStore);
9109 // Erase all other stores.
9110 for (unsigned i = 0; i < NumElem ; ++i) {
9111 if (StoreNodes[i].MemNode == EarliestOp)
9112 continue;
9113 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
Rafael Espindolac79532d2012-11-14 05:08:56 +00009114 // ReplaceAllUsesWith will replace all uses that existed when it was
9115 // called, but graph optimizations may cause new ones to appear. For
9116 // example, the case in pr14333 looks like
9117 //
9118 // St's chain -> St -> another store -> X
9119 //
9120 // And the only difference from St to the other store is the chain.
9121 // When we change it's chain to be St's chain they become identical,
9122 // get CSEed and the net result is that X is now a use of St.
9123 // Since we know that St is redundant, just iterate.
9124 while (!St->use_empty())
9125 DAG.ReplaceAllUsesWith(SDValue(St, 0), St->getChain());
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009126 removeFromWorkList(St);
9127 DAG.DeleteNode(St);
9128 }
9129
9130 return true;
9131 }
9132
9133 // Below we handle the case of multiple consecutive stores that
9134 // come from multiple consecutive loads. We merge them into a single
9135 // wide load and a single wide store.
9136
9137 // Look for load nodes which are used by the stored values.
9138 SmallVector<MemOpLink, 8> LoadNodes;
9139
9140 // Find acceptable loads. Loads need to have the same chain (token factor),
9141 // must not be zext, volatile, indexed, and they must be consecutive.
Arnold Schwaighofer67523662013-04-01 18:12:58 +00009142 BaseIndexOffset LdBasePtr;
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009143 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
9144 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
9145 LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue());
9146 if (!Ld) break;
9147
9148 // Loads must only have one use.
9149 if (!Ld->hasNUsesOfValue(1, 0))
9150 break;
9151
9152 // Check that the alignment is the same as the stores.
9153 if (Ld->getAlignment() != St->getAlignment())
9154 break;
9155
9156 // The memory operands must not be volatile.
9157 if (Ld->isVolatile() || Ld->isIndexed())
9158 break;
9159
9160 // We do not accept ext loads.
9161 if (Ld->getExtensionType() != ISD::NON_EXTLOAD)
9162 break;
9163
9164 // The stored memory type must be the same.
9165 if (Ld->getMemoryVT() != MemVT)
9166 break;
9167
Arnold Schwaighofer67523662013-04-01 18:12:58 +00009168 BaseIndexOffset LdPtr = BaseIndexOffset::match(Ld->getBasePtr());
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009169 // If this is not the first ptr that we check.
Arnold Schwaighofer67523662013-04-01 18:12:58 +00009170 if (LdBasePtr.Base.getNode()) {
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009171 // The base ptr must be the same.
Arnold Schwaighofer67523662013-04-01 18:12:58 +00009172 if (!LdPtr.equalBaseIndex(LdBasePtr))
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009173 break;
9174 } else {
9175 // Check that all other base pointers are the same as this one.
Arnold Schwaighofer67523662013-04-01 18:12:58 +00009176 LdBasePtr = LdPtr;
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009177 }
9178
9179 // We found a potential memory operand to merge.
Arnold Schwaighofer67523662013-04-01 18:12:58 +00009180 LoadNodes.push_back(MemOpLink(Ld, LdPtr.Offset, 0));
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009181 }
9182
9183 if (LoadNodes.size() < 2)
9184 return false;
9185
9186 // Scan the memory operations on the chain and find the first non-consecutive
9187 // load memory address. These variables hold the index in the store node
9188 // array.
9189 unsigned LastConsecutiveLoad = 0;
9190 // This variable refers to the size and not index in the array.
9191 unsigned LastLegalVectorType = 0;
9192 unsigned LastLegalIntegerType = 0;
9193 StartAddress = LoadNodes[0].OffsetFromBase;
Nadav Rotemac920662012-10-03 19:30:31 +00009194 SDValue FirstChain = LoadNodes[0].MemNode->getChain();
9195 for (unsigned i = 1; i < LoadNodes.size(); ++i) {
9196 // All loads much share the same chain.
9197 if (LoadNodes[i].MemNode->getChain() != FirstChain)
9198 break;
Nadav Rotem495b1a42013-02-14 18:28:52 +00009199
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009200 int64_t CurrAddress = LoadNodes[i].OffsetFromBase;
9201 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
9202 break;
9203 LastConsecutiveLoad = i;
9204
9205 // Find a legal type for the vector store.
9206 EVT StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
9207 if (TLI.isTypeLegal(StoreTy))
9208 LastLegalVectorType = i + 1;
9209
9210 // Find a legal type for the integer store.
9211 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
9212 StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
9213 if (TLI.isTypeLegal(StoreTy))
9214 LastLegalIntegerType = i + 1;
Arnold Schwaighoferd6c6e862013-04-02 15:58:51 +00009215 // Or check whether a truncstore and extload is legal.
9216 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) ==
9217 TargetLowering::TypePromoteInteger) {
9218 EVT LegalizedStoredValueTy =
9219 TLI.getTypeToTransformTo(*DAG.getContext(), StoreTy);
9220 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy) &&
9221 TLI.isLoadExtLegal(ISD::ZEXTLOAD, StoreTy) &&
9222 TLI.isLoadExtLegal(ISD::SEXTLOAD, StoreTy) &&
9223 TLI.isLoadExtLegal(ISD::EXTLOAD, StoreTy))
9224 LastLegalIntegerType = i+1;
9225 }
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009226 }
9227
9228 // Only use vector types if the vector type is larger than the integer type.
9229 // If they are the same, use integers.
Nadav Rotem495b1a42013-02-14 18:28:52 +00009230 bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType && !NoVectors;
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009231 unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType);
9232
9233 // We add +1 here because the LastXXX variables refer to location while
9234 // the NumElem refers to array/index size.
9235 unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1;
9236 NumElem = std::min(LastLegalType, NumElem);
9237
9238 if (NumElem < 2)
9239 return false;
9240
9241 // The earliest Node in the DAG.
9242 unsigned EarliestNodeUsed = 0;
9243 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
9244 for (unsigned i=1; i<NumElem; ++i) {
9245 // Find a chain for the new wide-store operand. Notice that some
9246 // of the store nodes that we found may not be selected for inclusion
9247 // in the wide store. The chain we use needs to be the chain of the
9248 // earliest store node which is *used* and replaced by the wide store.
9249 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
9250 EarliestNodeUsed = i;
9251 }
9252
9253 // Find if it is better to use vectors or integers to load and store
9254 // to memory.
9255 EVT JointMemOpVT;
9256 if (UseVectorTy) {
9257 JointMemOpVT = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
9258 } else {
9259 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
9260 JointMemOpVT = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
9261 }
9262
Andrew Trickef9de2a2013-05-25 02:42:55 +00009263 SDLoc LoadDL(LoadNodes[0].MemNode);
9264 SDLoc StoreDL(StoreNodes[0].MemNode);
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009265
9266 LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode);
9267 SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL,
9268 FirstLoad->getChain(),
9269 FirstLoad->getBasePtr(),
9270 FirstLoad->getPointerInfo(),
9271 false, false, false,
9272 FirstLoad->getAlignment());
9273
9274 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), StoreDL, NewLoad,
9275 FirstInChain->getBasePtr(),
9276 FirstInChain->getPointerInfo(), false, false,
9277 FirstInChain->getAlignment());
9278
Nadav Rotemac920662012-10-03 19:30:31 +00009279 // Replace one of the loads with the new load.
9280 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode);
9281 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1),
9282 SDValue(NewLoad.getNode(), 1));
9283
9284 // Remove the rest of the load chains.
9285 for (unsigned i = 1; i < NumElem ; ++i) {
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009286 // Replace all chain users of the old load nodes with the chain of the new
9287 // load node.
9288 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode);
Nadav Rotemac920662012-10-03 19:30:31 +00009289 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain());
9290 }
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009291
Nadav Rotemac920662012-10-03 19:30:31 +00009292 // Replace the first store with the new store.
9293 CombineTo(EarliestOp, NewStore);
9294 // Erase all other stores.
9295 for (unsigned i = 0; i < NumElem ; ++i) {
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009296 // Remove all Store nodes.
9297 if (StoreNodes[i].MemNode == EarliestOp)
9298 continue;
9299 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
9300 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
9301 removeFromWorkList(St);
9302 DAG.DeleteNode(St);
9303 }
9304
9305 return true;
9306}
9307
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009308SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Chengab51cf22006-10-13 21:14:26 +00009309 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009310 SDValue Chain = ST->getChain();
9311 SDValue Value = ST->getValue();
9312 SDValue Ptr = ST->getBasePtr();
Scott Michelcf0da6c2009-02-17 22:15:04 +00009313
Evan Chenga4cf58a2007-05-07 21:27:48 +00009314 // If this is a store of a bit convert, store the input value if the
Evan Chengf325c2a2007-05-09 21:49:47 +00009315 // resultant store does not need a higher alignment than the original.
Wesley Peck527da1b2010-11-23 03:31:01 +00009316 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattner1ea55cf2008-01-17 19:59:44 +00009317 ST->isUnindexed()) {
Dan Gohmane7fe80f2009-02-20 23:29:13 +00009318 unsigned OrigAlign = ST->getAlignment();
Owen Anderson53aa7a92009-08-10 22:56:29 +00009319 EVT SVT = Value.getOperand(0).getValueType();
Micah Villmowcdfe20b2012-10-08 16:38:25 +00009320 unsigned Align = TLI.getDataLayout()->
Owen Anderson117c9e82009-08-12 00:36:31 +00009321 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sands8651e9c2008-06-13 19:07:40 +00009322 if (Align <= OrigAlign &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +00009323 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohman4aa18462009-01-28 17:46:25 +00009324 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00009325 return DAG.getStore(Chain, SDLoc(N), Value.getOperand(0),
Chris Lattner676c61d2010-09-21 18:41:36 +00009326 Ptr, ST->getPointerInfo(), ST->isVolatile(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009327 ST->isNonTemporal(), OrigAlign,
9328 ST->getTBAAInfo());
Jim Laskeyd07be232006-09-25 16:29:54 +00009329 }
Owen Andersona5192842011-04-14 17:30:49 +00009330
Chris Lattner41c80e82011-04-09 02:32:02 +00009331 // Turn 'store undef, Ptr' -> nothing.
9332 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
9333 return Chain;
Duncan Sands8651e9c2008-06-13 19:07:40 +00009334
Nate Begeman8e20c762006-12-11 02:23:46 +00009335 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman8e20c762006-12-11 02:23:46 +00009336 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sands8651e9c2008-06-13 19:07:40 +00009337 // NOTE: If the original store is volatile, this transform must not increase
9338 // the number of stores. For example, on x86-32 an f64 can be stored in one
9339 // processor operation but an i64 (which is not legal) requires two. So the
9340 // transform should not be done in this case.
Evan Cheng21836982006-12-11 17:25:19 +00009341 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009342 SDValue Tmp;
Craig Topperd9c27832013-08-15 02:44:19 +00009343 switch (CFP->getSimpleValueType(0).SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00009344 default: llvm_unreachable("Unknown FP type");
Pete Cooper5b614222012-06-21 18:00:39 +00009345 case MVT::f16: // We don't do this for these yet.
9346 case MVT::f80:
Owen Anderson9f944592009-08-11 20:47:22 +00009347 case MVT::f128:
9348 case MVT::ppcf128:
Dale Johannesenaf12b572007-09-18 18:36:59 +00009349 break;
Owen Anderson9f944592009-08-11 20:47:22 +00009350 case MVT::f32:
Chris Lattner4041ab62010-04-15 04:48:01 +00009351 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson9f944592009-08-11 20:47:22 +00009352 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen028084e2007-09-12 03:30:33 +00009353 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson9f944592009-08-11 20:47:22 +00009354 bitcastToAPInt().getZExtValue(), MVT::i32);
Andrew Trickef9de2a2013-05-25 02:42:55 +00009355 return DAG.getStore(Chain, SDLoc(N), Tmp,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009356 Ptr, ST->getMemOperand());
Chris Lattnerb7524b62006-12-12 04:16:14 +00009357 }
9358 break;
Owen Anderson9f944592009-08-11 20:47:22 +00009359 case MVT::f64:
Chris Lattner4041ab62010-04-15 04:48:01 +00009360 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohman4aa18462009-01-28 17:46:25 +00009361 !ST->isVolatile()) ||
Owen Anderson9f944592009-08-11 20:47:22 +00009362 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen54306fe2008-10-09 18:53:47 +00009363 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson9f944592009-08-11 20:47:22 +00009364 getZExtValue(), MVT::i64);
Andrew Trickef9de2a2013-05-25 02:42:55 +00009365 return DAG.getStore(Chain, SDLoc(N), Tmp,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009366 Ptr, ST->getMemOperand());
Chris Lattner41c80e82011-04-09 02:32:02 +00009367 }
Owen Andersona5192842011-04-14 17:30:49 +00009368
Chris Lattner41c80e82011-04-09 02:32:02 +00009369 if (!ST->isVolatile() &&
9370 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sands1826ded2007-10-28 12:59:45 +00009371 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattnerb7524b62006-12-12 04:16:14 +00009372 // argument passing. Since this is so common, custom legalize the
9373 // 64-bit integer store into two 32-bit stores.
Dale Johannesen54306fe2008-10-09 18:53:47 +00009374 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson9f944592009-08-11 20:47:22 +00009375 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
9376 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands7377f5f2008-02-11 10:37:04 +00009377 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattnerb7524b62006-12-12 04:16:14 +00009378
Dan Gohman2af30632007-07-09 22:18:38 +00009379 unsigned Alignment = ST->getAlignment();
9380 bool isVolatile = ST->isVolatile();
David Greene39c6d012010-02-15 17:00:31 +00009381 bool isNonTemporal = ST->isNonTemporal();
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009382 const MDNode *TBAAInfo = ST->getTBAAInfo();
Dan Gohman2af30632007-07-09 22:18:38 +00009383
Andrew Trickef9de2a2013-05-25 02:42:55 +00009384 SDValue St0 = DAG.getStore(Chain, SDLoc(ST), Lo,
Chris Lattner676c61d2010-09-21 18:41:36 +00009385 Ptr, ST->getPointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00009386 isVolatile, isNonTemporal,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009387 ST->getAlignment(), TBAAInfo);
Andrew Trickef9de2a2013-05-25 02:42:55 +00009388 Ptr = DAG.getNode(ISD::ADD, SDLoc(N), Ptr.getValueType(), Ptr,
Chris Lattnerb7524b62006-12-12 04:16:14 +00009389 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sands1826ded2007-10-28 12:59:45 +00009390 Alignment = MinAlign(Alignment, 4U);
Andrew Trickef9de2a2013-05-25 02:42:55 +00009391 SDValue St1 = DAG.getStore(Chain, SDLoc(ST), Hi,
Chris Lattner676c61d2010-09-21 18:41:36 +00009392 Ptr, ST->getPointerInfo().getWithOffset(4),
9393 isVolatile, isNonTemporal,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009394 Alignment, TBAAInfo);
Andrew Trickef9de2a2013-05-25 02:42:55 +00009395 return DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other,
Bill Wendling27d9dd42009-01-30 23:36:47 +00009396 St0, St1);
Chris Lattnerb7524b62006-12-12 04:16:14 +00009397 }
Bill Wendling27d9dd42009-01-30 23:36:47 +00009398
Chris Lattnerb7524b62006-12-12 04:16:14 +00009399 break;
Evan Cheng21836982006-12-11 17:25:19 +00009400 }
Nate Begeman8e20c762006-12-11 02:23:46 +00009401 }
Nate Begeman8e20c762006-12-11 02:23:46 +00009402 }
9403
Evan Cheng43cd9e32010-04-01 06:04:33 +00009404 // Try to infer better alignment information than the store already has.
9405 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Cheng4a5b2042011-11-28 22:37:34 +00009406 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
9407 if (Align > ST->getAlignment())
Andrew Trickef9de2a2013-05-25 02:42:55 +00009408 return DAG.getTruncStore(Chain, SDLoc(N), Value,
Evan Cheng4a5b2042011-11-28 22:37:34 +00009409 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009410 ST->isVolatile(), ST->isNonTemporal(), Align,
9411 ST->getTBAAInfo());
Evan Cheng43cd9e32010-04-01 06:04:33 +00009412 }
9413 }
9414
Evan Chengd42641c2011-02-02 01:06:55 +00009415 // Try transforming a pair floating point load / store ops to integer
9416 // load / store ops.
9417 SDValue NewST = TransformFPLoadStorePair(N);
9418 if (NewST.getNode())
9419 return NewST;
9420
Hal Finkel5ef4dcc2013-08-29 03:29:55 +00009421 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA :
9422 TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
Hal Finkel9b2617a2014-01-25 17:32:39 +00009423#ifndef NDEBUG
9424 if (CombinerAAOnlyFunc.getNumOccurrences() &&
9425 CombinerAAOnlyFunc != DAG.getMachineFunction().getName())
9426 UseAA = false;
9427#endif
Hal Finkelccc18e12014-01-24 18:25:26 +00009428 if (UseAA && ST->isUnindexed()) {
Jim Laskeyd07be232006-09-25 16:29:54 +00009429 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009430 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelcf0da6c2009-02-17 22:15:04 +00009431
Jim Laskey708d0db2006-10-04 16:53:27 +00009432 // If there is a better chain.
Jim Laskeyd07be232006-09-25 16:29:54 +00009433 if (Chain != BetterChain) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009434 SDValue ReplStore;
Nate Begeman879d8f12009-09-15 00:18:30 +00009435
9436 // Replace the chain to avoid dependency.
Jim Laskey3bf4f3b2006-10-14 12:14:27 +00009437 if (ST->isTruncatingStore()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00009438 ReplStore = DAG.getTruncStore(BetterChain, SDLoc(N), Value, Ptr,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009439 ST->getMemoryVT(), ST->getMemOperand());
Jim Laskey3bf4f3b2006-10-14 12:14:27 +00009440 } else {
Andrew Trickef9de2a2013-05-25 02:42:55 +00009441 ReplStore = DAG.getStore(BetterChain, SDLoc(N), Value, Ptr,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009442 ST->getMemOperand());
Jim Laskey3bf4f3b2006-10-14 12:14:27 +00009443 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009444
Jim Laskeyd07be232006-09-25 16:29:54 +00009445 // Create token to keep both nodes around.
Andrew Trickef9de2a2013-05-25 02:42:55 +00009446 SDValue Token = DAG.getNode(ISD::TokenFactor, SDLoc(N),
Owen Anderson9f944592009-08-11 20:47:22 +00009447 MVT::Other, Chain, ReplStore);
Bill Wendling27d9dd42009-01-30 23:36:47 +00009448
Nate Begeman879d8f12009-09-15 00:18:30 +00009449 // Make sure the new and old chains are cleaned up.
9450 AddToWorkList(Token.getNode());
9451
Jim Laskeydcf983c2006-10-13 23:32:28 +00009452 // Don't add users to work list.
9453 return CombineTo(N, Token, false);
Jim Laskeyd07be232006-09-25 16:29:54 +00009454 }
Jim Laskey5d19d592006-09-21 16:28:59 +00009455 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009456
Evan Cheng33157702006-11-05 09:31:14 +00009457 // Try transforming N to an indexed store.
Evan Cheng60c68462006-11-07 09:03:05 +00009458 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009459 return SDValue(N, 0);
Evan Cheng33157702006-11-05 09:31:14 +00009460
Chris Lattner3f9c6a72007-12-29 06:26:16 +00009461 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattner1ea55cf2008-01-17 19:59:44 +00009462 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotemd2d9bdb2011-06-15 11:19:12 +00009463 Value.getValueType().isInteger()) {
Chris Lattner5e6fe052007-10-13 06:35:54 +00009464 // See if we can simplify the input to this truncstore with knowledge that
9465 // only the low bits are being used. For example:
9466 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelcf0da6c2009-02-17 22:15:04 +00009467 SDValue Shorter =
Dan Gohman1f372ed2008-02-25 21:11:39 +00009468 GetDemandedBits(Value,
Nadav Rotemd2d9bdb2011-06-15 11:19:12 +00009469 APInt::getLowBitsSet(
9470 Value.getValueType().getScalarType().getSizeInBits(),
9471 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greiff304a7a2008-08-28 21:40:38 +00009472 AddToWorkList(Value.getNode());
9473 if (Shorter.getNode())
Andrew Trickef9de2a2013-05-25 02:42:55 +00009474 return DAG.getTruncStore(Chain, SDLoc(N), Shorter,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009475 Ptr, ST->getMemoryVT(), ST->getMemOperand());
Scott Michelcf0da6c2009-02-17 22:15:04 +00009476
Chris Lattnerf47e3062007-10-13 06:58:48 +00009477 // Otherwise, see if we can simplify the operation with
9478 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohmanae2b6fb2008-02-27 00:25:32 +00009479 if (SimplifyDemandedBits(Value,
Eric Christopherd9e8eac2010-12-09 04:48:06 +00009480 APInt::getLowBitsSet(
9481 Value.getValueType().getScalarType().getSizeInBits(),
9482 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009483 return SDValue(N, 0);
Chris Lattner5e6fe052007-10-13 06:35:54 +00009484 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009485
Chris Lattner3f9c6a72007-12-29 06:26:16 +00009486 // If this is a load followed by a store to the same location, then the store
9487 // is dead/noop.
9488 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohman47a7d6f2008-01-30 00:15:11 +00009489 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattner1ea55cf2008-01-17 19:59:44 +00009490 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner51b01bf2008-01-08 23:08:06 +00009491 // There can't be any side effects between the load and store, such as
9492 // a call or store.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009493 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3f9c6a72007-12-29 06:26:16 +00009494 // The store is dead, remove it.
9495 return Chain;
9496 }
9497 }
Duncan Sands8651e9c2008-06-13 19:07:40 +00009498
Chris Lattner1ea55cf2008-01-17 19:59:44 +00009499 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
9500 // truncating store. We can do this even if this is already a truncstore.
9501 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greiff304a7a2008-08-28 21:40:38 +00009502 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattner1ea55cf2008-01-17 19:59:44 +00009503 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohman47a7d6f2008-01-30 00:15:11 +00009504 ST->getMemoryVT())) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00009505 return DAG.getTruncStore(Chain, SDLoc(N), Value.getOperand(0),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009506 Ptr, ST->getMemoryVT(), ST->getMemOperand());
Chris Lattner1ea55cf2008-01-17 19:59:44 +00009507 }
Duncan Sands8651e9c2008-06-13 19:07:40 +00009508
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009509 // Only perform this optimization before the types are legal, because we
Nadav Rotemb27777f2012-10-04 22:35:15 +00009510 // don't want to perform this optimization on every DAGCombine invocation.
Nadav Rotem1157e142012-12-02 17:14:09 +00009511 if (!LegalTypes) {
9512 bool EverChanged = false;
9513
9514 do {
9515 // There can be multiple store sequences on the same chain.
9516 // Keep trying to merge store sequences until we are unable to do so
9517 // or until we merge the last store on the chain.
9518 bool Changed = MergeConsecutiveStores(ST);
9519 EverChanged |= Changed;
9520 if (!Changed) break;
9521 } while (ST->getOpcode() != ISD::DELETED_NODE);
9522
9523 if (EverChanged)
9524 return SDValue(N, 0);
9525 }
Nadav Rotem7cbc12a2012-10-03 16:11:15 +00009526
Evan Chenga9cda8a2009-05-28 00:35:15 +00009527 return ReduceLoadOpStoreWidth(N);
Chris Lattner04c73702005-10-10 22:31:19 +00009528}
9529
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009530SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
9531 SDValue InVec = N->getOperand(0);
9532 SDValue InVal = N->getOperand(1);
9533 SDValue EltNo = N->getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00009534 SDLoc dl(N);
Scott Michelcf0da6c2009-02-17 22:15:04 +00009535
Bob Wilson42603952010-05-19 23:42:58 +00009536 // If the inserted element is an UNDEF, just use the input vector.
9537 if (InVal.getOpcode() == ISD::UNDEF)
9538 return InVec;
9539
Nadav Rotemdb2f5482011-02-12 14:40:33 +00009540 EVT VT = InVec.getValueType();
9541
Owen Andersonb2c80da2011-02-25 21:41:48 +00009542 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotemdb2f5482011-02-12 14:40:33 +00009543 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
9544 return SDValue();
9545
Eli Friedmanb7910b72011-09-09 21:04:06 +00009546 // Check that we know which element is being inserted
9547 if (!isa<ConstantSDNode>(EltNo))
9548 return SDValue();
9549 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00009550
Eli Friedmanb7910b72011-09-09 21:04:06 +00009551 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
9552 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
9553 // vector elements.
9554 SmallVector<SDValue, 8> Ops;
Quentin Colombet6bf4baa2013-07-30 00:24:09 +00009555 // Do not combine these two vectors if the output vector will not replace
9556 // the input vector.
9557 if (InVec.getOpcode() == ISD::BUILD_VECTOR && InVec.hasOneUse()) {
Eli Friedmanb7910b72011-09-09 21:04:06 +00009558 Ops.append(InVec.getNode()->op_begin(),
9559 InVec.getNode()->op_end());
9560 } else if (InVec.getOpcode() == ISD::UNDEF) {
9561 unsigned NElts = VT.getVectorNumElements();
9562 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
9563 } else {
9564 return SDValue();
Nate Begeman8d6d4b92009-04-27 18:41:29 +00009565 }
Eli Friedmanb7910b72011-09-09 21:04:06 +00009566
9567 // Insert the element
9568 if (Elt < Ops.size()) {
9569 // All the operands of BUILD_VECTOR must have the same type;
9570 // we enforce that here.
9571 EVT OpVT = Ops[0].getValueType();
9572 if (InVal.getValueType() != OpVT)
9573 InVal = OpVT.bitsGT(InVal.getValueType()) ?
9574 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
9575 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
9576 Ops[Elt] = InVal;
9577 }
9578
9579 // Return the new vector
9580 return DAG.getNode(ISD::BUILD_VECTOR, dl,
9581 VT, &Ops[0], Ops.size());
Chris Lattner5336a592006-03-19 01:27:56 +00009582}
9583
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009584SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wangca6d6de2009-01-17 00:07:25 +00009585 // (vextract (scalar_to_vector val, 0) -> val
9586 SDValue InVec = N->getOperand(0);
Nadav Rotemfb6ddee2012-01-17 21:44:01 +00009587 EVT VT = InVec.getValueType();
9588 EVT NVT = N->getValueType(0);
Mon P Wangca6d6de2009-01-17 00:07:25 +00009589
Duncan Sands6be291a2011-05-09 08:03:33 +00009590 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
9591 // Check if the result type doesn't match the inserted element type. A
9592 // SCALAR_TO_VECTOR may truncate the inserted element and the
9593 // EXTRACT_VECTOR_ELT may widen the extracted vector.
9594 SDValue InOp = InVec.getOperand(0);
Duncan Sands6be291a2011-05-09 08:03:33 +00009595 if (InOp.getValueType() != NVT) {
9596 assert(InOp.getValueType().isInteger() && NVT.isInteger());
Andrew Trickef9de2a2013-05-25 02:42:55 +00009597 return DAG.getSExtOrTrunc(InOp, SDLoc(InVec), NVT);
Duncan Sands6be291a2011-05-09 08:03:33 +00009598 }
9599 return InOp;
9600 }
Evan Cheng1120279a2008-05-13 08:35:03 +00009601
Nadav Rotemfb6ddee2012-01-17 21:44:01 +00009602 SDValue EltNo = N->getOperand(1);
9603 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
9604
9605 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
9606 // We only perform this optimization before the op legalization phase because
Nadav Rotem841c9a82012-09-20 08:53:31 +00009607 // we may introduce new vector instructions which are not backed by TD
9608 // patterns. For example on AVX, extracting elements from a wide vector
9609 // without using extract_subvector.
Nadav Rotemfb6ddee2012-01-17 21:44:01 +00009610 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
9611 && ConstEltNo && !LegalOperations) {
9612 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
9613 int NumElem = VT.getVectorNumElements();
9614 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
9615 // Find the new index to extract from.
9616 int OrigElt = SVOp->getMaskElt(Elt);
9617
9618 // Extracting an undef index is undef.
9619 if (OrigElt == -1)
9620 return DAG.getUNDEF(NVT);
9621
9622 // Select the right vector half to extract from.
9623 if (OrigElt < NumElem) {
9624 InVec = InVec->getOperand(0);
9625 } else {
9626 InVec = InVec->getOperand(1);
9627 OrigElt -= NumElem;
9628 }
9629
Tom Stellardd42c5942013-08-05 22:22:01 +00009630 EVT IndexTy = TLI.getVectorIdxTy();
Andrew Trickef9de2a2013-05-25 02:42:55 +00009631 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(N), NVT,
Jim Grosbach92f6adc2012-05-08 20:56:07 +00009632 InVec, DAG.getConstant(OrigElt, IndexTy));
Nadav Rotemfb6ddee2012-01-17 21:44:01 +00009633 }
9634
Evan Cheng1120279a2008-05-13 08:35:03 +00009635 // Perform only after legalization to ensure build_vector / vector_shuffle
9636 // optimizations have already been done.
Duncan Sandsdc2dac12008-11-24 14:53:14 +00009637 if (!LegalOperations) return SDValue();
Evan Cheng1120279a2008-05-13 08:35:03 +00009638
Mon P Wangca6d6de2009-01-17 00:07:25 +00009639 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
9640 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
9641 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng0de312d2007-10-06 08:19:55 +00009642
Nadav Rotemfb6ddee2012-01-17 21:44:01 +00009643 if (ConstEltNo) {
Eric Christopherfcc9e682010-11-03 09:36:40 +00009644 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng0de312d2007-10-06 08:19:55 +00009645 bool NewLoad = false;
Mon P Wangb5eb7202008-12-11 00:26:16 +00009646 bool BCNumEltsChanged = false;
Owen Anderson53aa7a92009-08-10 22:56:29 +00009647 EVT ExtVT = VT.getVectorElementType();
9648 EVT LVT = ExtVT;
Bill Wendling27d9dd42009-01-30 23:36:47 +00009649
Evan Cheng7bf83092012-03-13 22:00:52 +00009650 // If the result of load has to be truncated, then it's not necessarily
9651 // profitable.
Evan Chengd5f8e572012-03-13 22:16:11 +00009652 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng7bf83092012-03-13 22:00:52 +00009653 return SDValue();
9654
Wesley Peck527da1b2010-11-23 03:31:01 +00009655 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmane96286c2011-12-26 22:49:32 +00009656 // Don't duplicate a load with other uses.
9657 if (!InVec.hasOneUse())
9658 return SDValue();
9659
Owen Anderson53aa7a92009-08-10 22:56:29 +00009660 EVT BCVT = InVec.getOperand(0).getValueType();
9661 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009662 return SDValue();
Mon P Wangb5eb7202008-12-11 00:26:16 +00009663 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
9664 BCNumEltsChanged = true;
Evan Cheng1120279a2008-05-13 08:35:03 +00009665 InVec = InVec.getOperand(0);
Owen Anderson53aa7a92009-08-10 22:56:29 +00009666 ExtVT = BCVT.getVectorElementType();
Evan Cheng1120279a2008-05-13 08:35:03 +00009667 NewLoad = true;
9668 }
Evan Cheng0de312d2007-10-06 08:19:55 +00009669
Evan Cheng1120279a2008-05-13 08:35:03 +00009670 LoadSDNode *LN0 = NULL;
Nate Begeman5f829d82009-04-29 05:20:52 +00009671 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendling27d9dd42009-01-30 23:36:47 +00009672 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng1120279a2008-05-13 08:35:03 +00009673 LN0 = cast<LoadSDNode>(InVec);
Bill Wendling27d9dd42009-01-30 23:36:47 +00009674 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Anderson53aa7a92009-08-10 22:56:29 +00009675 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendling27d9dd42009-01-30 23:36:47 +00009676 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmane96286c2011-12-26 22:49:32 +00009677 // Don't duplicate a load with other uses.
9678 if (!InVec.hasOneUse())
9679 return SDValue();
9680
Evan Cheng1120279a2008-05-13 08:35:03 +00009681 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5f829d82009-04-29 05:20:52 +00009682 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng1120279a2008-05-13 08:35:03 +00009683 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
9684 // =>
9685 // (load $addr+1*size)
Scott Michelcf0da6c2009-02-17 22:15:04 +00009686
Eli Friedmane96286c2011-12-26 22:49:32 +00009687 // Don't duplicate a load with other uses.
9688 if (!InVec.hasOneUse())
9689 return SDValue();
9690
Mon P Wangb5eb7202008-12-11 00:26:16 +00009691 // If the bit convert changed the number of elements, it is unsafe
9692 // to examine the mask.
9693 if (BCNumEltsChanged)
9694 return SDValue();
Nate Begeman5f829d82009-04-29 05:20:52 +00009695
9696 // Select the input vector, guarding against out of range extract vector.
9697 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfcc9e682010-11-03 09:36:40 +00009698 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5f829d82009-04-29 05:20:52 +00009699 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
9700
Eli Friedmane96286c2011-12-26 22:49:32 +00009701 if (InVec.getOpcode() == ISD::BITCAST) {
9702 // Don't duplicate a load with other uses.
9703 if (!InVec.hasOneUse())
9704 return SDValue();
9705
Evan Cheng1120279a2008-05-13 08:35:03 +00009706 InVec = InVec.getOperand(0);
Eli Friedmane96286c2011-12-26 22:49:32 +00009707 }
Gabor Greiff304a7a2008-08-28 21:40:38 +00009708 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng1120279a2008-05-13 08:35:03 +00009709 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd87bd772010-04-08 18:49:30 +00009710 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng0de312d2007-10-06 08:19:55 +00009711 }
9712 }
Bill Wendling27d9dd42009-01-30 23:36:47 +00009713
Eli Friedmane96286c2011-12-26 22:49:32 +00009714 // Make sure we found a non-volatile load and the extractelement is
9715 // the only use.
Nadav Rotem8a7beb82011-05-11 14:40:50 +00009716 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009717 return SDValue();
Evan Cheng1120279a2008-05-13 08:35:03 +00009718
Eric Christopherc6418b12010-11-03 20:44:42 +00009719 // If Idx was -1 above, Elt is going to be -1, so just return undef.
9720 if (Elt == -1)
Eli Friedmancbd3ba92011-07-25 22:25:42 +00009721 return DAG.getUNDEF(LVT);
Eric Christopherc6418b12010-11-03 20:44:42 +00009722
Evan Cheng1120279a2008-05-13 08:35:03 +00009723 unsigned Align = LN0->getAlignment();
9724 if (NewLoad) {
9725 // Check the resultant load doesn't need a higher alignment than the
9726 // original load.
Bill Wendling27d9dd42009-01-30 23:36:47 +00009727 unsigned NewAlign =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00009728 TLI.getDataLayout()
Eric Christopherd9e8eac2010-12-09 04:48:06 +00009729 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendling27d9dd42009-01-30 23:36:47 +00009730
Dan Gohman4aa18462009-01-28 17:46:25 +00009731 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009732 return SDValue();
Bill Wendling27d9dd42009-01-30 23:36:47 +00009733
Evan Cheng1120279a2008-05-13 08:35:03 +00009734 Align = NewAlign;
9735 }
9736
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009737 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerf72c3c02010-09-21 16:08:50 +00009738 unsigned PtrOff = 0;
Wesley Peck527da1b2010-11-23 03:31:01 +00009739
Eric Christopherc6418b12010-11-03 20:44:42 +00009740 if (Elt) {
Chris Lattnerf72c3c02010-09-21 16:08:50 +00009741 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Anderson53aa7a92009-08-10 22:56:29 +00009742 EVT PtrType = NewPtr.getValueType();
Evan Cheng1120279a2008-05-13 08:35:03 +00009743 if (TLI.isBigEndian())
Duncan Sands13237ac2008-06-06 12:08:01 +00009744 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Andrew Trickef9de2a2013-05-25 02:42:55 +00009745 NewPtr = DAG.getNode(ISD::ADD, SDLoc(N), PtrType, NewPtr,
Evan Cheng1120279a2008-05-13 08:35:03 +00009746 DAG.getConstant(PtrOff, PtrType));
9747 }
Bill Wendling27d9dd42009-01-30 23:36:47 +00009748
Eli Friedmanff1eaa72011-11-16 23:50:22 +00009749 // The replacement we need to do here is a little tricky: we need to
9750 // replace an extractelement of a load with a load.
9751 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmane96286c2011-12-26 22:49:32 +00009752 // Note that this replacement assumes that the extractvalue is the only
9753 // use of the load; that's okay because we don't want to perform this
9754 // transformation in other cases anyway.
Evan Cheng7bf83092012-03-13 22:00:52 +00009755 SDValue Load;
Evan Chengd5f8e572012-03-13 22:16:11 +00009756 SDValue Chain;
Evan Cheng7bf83092012-03-13 22:00:52 +00009757 if (NVT.bitsGT(LVT)) {
9758 // If the result type of vextract is wider than the load, then issue an
9759 // extending load instead.
9760 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
9761 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
Andrew Trickef9de2a2013-05-25 02:42:55 +00009762 Load = DAG.getExtLoad(ExtType, SDLoc(N), NVT, LN0->getChain(),
Evan Cheng7bf83092012-03-13 22:00:52 +00009763 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009764 LVT, LN0->isVolatile(), LN0->isNonTemporal(),
9765 Align, LN0->getTBAAInfo());
Evan Chengd5f8e572012-03-13 22:16:11 +00009766 Chain = Load.getValue(1);
9767 } else {
Andrew Trickef9de2a2013-05-25 02:42:55 +00009768 Load = DAG.getLoad(LVT, SDLoc(N), LN0->getChain(), NewPtr,
Evan Cheng7bf83092012-03-13 22:00:52 +00009769 LN0->getPointerInfo().getWithOffset(PtrOff),
Stephen Lincfe7f352013-07-08 00:37:03 +00009770 LN0->isVolatile(), LN0->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +00009771 LN0->isInvariant(), Align, LN0->getTBAAInfo());
Evan Chengd5f8e572012-03-13 22:16:11 +00009772 Chain = Load.getValue(1);
9773 if (NVT.bitsLT(LVT))
Andrew Trickef9de2a2013-05-25 02:42:55 +00009774 Load = DAG.getNode(ISD::TRUNCATE, SDLoc(N), NVT, Load);
Evan Chengd5f8e572012-03-13 22:16:11 +00009775 else
Andrew Trickef9de2a2013-05-25 02:42:55 +00009776 Load = DAG.getNode(ISD::BITCAST, SDLoc(N), NVT, Load);
Evan Chengd5f8e572012-03-13 22:16:11 +00009777 }
Eli Friedmanff1eaa72011-11-16 23:50:22 +00009778 WorkListRemover DeadNodes(*this);
9779 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chengd5f8e572012-03-13 22:16:11 +00009780 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00009781 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedmanff1eaa72011-11-16 23:50:22 +00009782 // Since we're explcitly calling ReplaceAllUses, add the new node to the
9783 // worklist explicitly as well.
9784 AddToWorkList(Load.getNode());
Craig Topperaaeae982012-03-20 05:28:39 +00009785 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedmanff1eaa72011-11-16 23:50:22 +00009786 // Make sure to revisit this node to clean it up; it will usually be dead.
9787 AddToWorkList(N);
9788 return SDValue(N, 0);
Evan Cheng0de312d2007-10-06 08:19:55 +00009789 }
Bill Wendling27d9dd42009-01-30 23:36:47 +00009790
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009791 return SDValue();
Evan Cheng0de312d2007-10-06 08:19:55 +00009792}
Evan Cheng0de312d2007-10-06 08:19:55 +00009793
Michael Liao6d106b72012-10-23 23:06:52 +00009794// Simplify (build_vec (ext )) to (bitcast (build_vec ))
9795SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) {
9796 // We perform this optimization post type-legalization because
9797 // the type-legalizer often scalarizes integer-promoted vectors.
9798 // Performing this optimization before may create bit-casts which
9799 // will be type-legalized to complex code sequences.
9800 // We perform this optimization only before the operation legalizer because we
9801 // may introduce illegal operations.
9802 if (Level != AfterLegalizeVectorOps && Level != AfterLegalizeTypes)
9803 return SDValue();
9804
Dan Gohmana8665142007-06-25 16:23:39 +00009805 unsigned NumInScalars = N->getNumOperands();
Andrew Trickef9de2a2013-05-25 02:42:55 +00009806 SDLoc dl(N);
Owen Anderson53aa7a92009-08-10 22:56:29 +00009807 EVT VT = N->getValueType(0);
Nadav Rotema62368c2012-07-15 08:38:23 +00009808
Nadav Rotembf6568b2011-10-29 21:23:04 +00009809 // Check to see if this is a BUILD_VECTOR of a bunch of values
9810 // which come from any_extend or zero_extend nodes. If so, we can create
9811 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf3103612011-10-31 20:08:25 +00009812 // optimizations. We do not handle sign-extend because we can't fill the sign
9813 // using shuffles.
Nadav Rotembf6568b2011-10-29 21:23:04 +00009814 EVT SourceType = MVT::Other;
Craig Topper02cb0fb2012-01-17 09:09:48 +00009815 bool AllAnyExt = true;
Nadav Rotema62368c2012-07-15 08:38:23 +00009816
Craig Topper02cb0fb2012-01-17 09:09:48 +00009817 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotembf6568b2011-10-29 21:23:04 +00009818 SDValue In = N->getOperand(i);
9819 // Ignore undef inputs.
9820 if (In.getOpcode() == ISD::UNDEF) continue;
9821
9822 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
9823 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
9824
Nadav Rotemf3103612011-10-31 20:08:25 +00009825 // Abort if the element is not an extension.
Nadav Rotembf6568b2011-10-29 21:23:04 +00009826 if (!ZeroExt && !AnyExt) {
Nadav Rotemf3103612011-10-31 20:08:25 +00009827 SourceType = MVT::Other;
Nadav Rotembf6568b2011-10-29 21:23:04 +00009828 break;
9829 }
9830
9831 // The input is a ZeroExt or AnyExt. Check the original type.
9832 EVT InTy = In.getOperand(0).getValueType();
9833
9834 // Check that all of the widened source types are the same.
9835 if (SourceType == MVT::Other)
Nadav Rotemf3103612011-10-31 20:08:25 +00009836 // First time.
Nadav Rotembf6568b2011-10-29 21:23:04 +00009837 SourceType = InTy;
9838 else if (InTy != SourceType) {
9839 // Multiple income types. Abort.
Nadav Rotemf3103612011-10-31 20:08:25 +00009840 SourceType = MVT::Other;
Nadav Rotembf6568b2011-10-29 21:23:04 +00009841 break;
9842 }
9843
9844 // Check if all of the extends are ANY_EXTENDs.
Craig Topper02cb0fb2012-01-17 09:09:48 +00009845 AllAnyExt &= AnyExt;
Nadav Rotembf6568b2011-10-29 21:23:04 +00009846 }
9847
Nadav Rotemf3103612011-10-31 20:08:25 +00009848 // In order to have valid types, all of the inputs must be extended from the
9849 // same source type and all of the inputs must be any or zero extend.
9850 // Scalar sizes must be a power of two.
Michael Liao6d106b72012-10-23 23:06:52 +00009851 EVT OutScalarTy = VT.getScalarType();
Nadav Rotem34ca89a2012-02-12 15:05:31 +00009852 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf3103612011-10-31 20:08:25 +00009853 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
9854 isPowerOf2_32(SourceType.getSizeInBits());
9855
Nadav Rotem6fd1d322012-03-15 08:49:06 +00009856 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
9857 // turn into a single shuffle instruction.
Michael Liao6d106b72012-10-23 23:06:52 +00009858 if (!ValidTypes)
9859 return SDValue();
Nadav Rotembf6568b2011-10-29 21:23:04 +00009860
Michael Liao6d106b72012-10-23 23:06:52 +00009861 bool isLE = TLI.isLittleEndian();
9862 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
9863 assert(ElemRatio > 1 && "Invalid element size ratio");
9864 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
9865 DAG.getConstant(0, SourceType);
Nadav Rotembf6568b2011-10-29 21:23:04 +00009866
Michael Liao6d106b72012-10-23 23:06:52 +00009867 unsigned NewBVElems = ElemRatio * VT.getVectorNumElements();
9868 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotembf6568b2011-10-29 21:23:04 +00009869
Michael Liao6d106b72012-10-23 23:06:52 +00009870 // Populate the new build_vector
Jakub Staszaka6addc22012-10-24 00:38:25 +00009871 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Michael Liao6d106b72012-10-23 23:06:52 +00009872 SDValue Cast = N->getOperand(i);
9873 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
9874 Cast.getOpcode() == ISD::ZERO_EXTEND ||
9875 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
9876 SDValue In;
9877 if (Cast.getOpcode() == ISD::UNDEF)
9878 In = DAG.getUNDEF(SourceType);
9879 else
9880 In = Cast->getOperand(0);
9881 unsigned Index = isLE ? (i * ElemRatio) :
9882 (i * ElemRatio + (ElemRatio - 1));
Nadav Rotembf6568b2011-10-29 21:23:04 +00009883
Michael Liao6d106b72012-10-23 23:06:52 +00009884 assert(Index < Ops.size() && "Invalid index");
9885 Ops[Index] = In;
Nadav Rotembf6568b2011-10-29 21:23:04 +00009886 }
Chris Lattner5336a592006-03-19 01:27:56 +00009887
Michael Liao6d106b72012-10-23 23:06:52 +00009888 // The type of the new BUILD_VECTOR node.
9889 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
9890 assert(VecVT.getSizeInBits() == VT.getSizeInBits() &&
9891 "Invalid vector size");
9892 // Check if the new vector type is legal.
9893 if (!isTypeLegal(VecVT)) return SDValue();
9894
9895 // Make the new BUILD_VECTOR.
9896 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, &Ops[0], Ops.size());
9897
9898 // The new BUILD_VECTOR node has the potential to be further optimized.
9899 AddToWorkList(BV.getNode());
9900 // Bitcast to the desired type.
9901 return DAG.getNode(ISD::BITCAST, dl, VT, BV);
9902}
9903
Michael Liao59229792012-10-24 04:14:18 +00009904SDValue DAGCombiner::reduceBuildVecConvertToConvertBuildVec(SDNode *N) {
9905 EVT VT = N->getValueType(0);
9906
9907 unsigned NumInScalars = N->getNumOperands();
Andrew Trickef9de2a2013-05-25 02:42:55 +00009908 SDLoc dl(N);
Michael Liao59229792012-10-24 04:14:18 +00009909
9910 EVT SrcVT = MVT::Other;
9911 unsigned Opcode = ISD::DELETED_NODE;
9912 unsigned NumDefs = 0;
9913
9914 for (unsigned i = 0; i != NumInScalars; ++i) {
9915 SDValue In = N->getOperand(i);
9916 unsigned Opc = In.getOpcode();
9917
9918 if (Opc == ISD::UNDEF)
9919 continue;
9920
9921 // If all scalar values are floats and converted from integers.
9922 if (Opcode == ISD::DELETED_NODE &&
9923 (Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP)) {
9924 Opcode = Opc;
Michael Liao59229792012-10-24 04:14:18 +00009925 }
Tom Stellard567f8862013-01-02 22:13:01 +00009926
Michael Liao59229792012-10-24 04:14:18 +00009927 if (Opc != Opcode)
9928 return SDValue();
9929
9930 EVT InVT = In.getOperand(0).getValueType();
9931
9932 // If all scalar values are typed differently, bail out. It's chosen to
9933 // simplify BUILD_VECTOR of integer types.
9934 if (SrcVT == MVT::Other)
9935 SrcVT = InVT;
9936 if (SrcVT != InVT)
9937 return SDValue();
9938 NumDefs++;
9939 }
9940
9941 // If the vector has just one element defined, it's not worth to fold it into
9942 // a vectorized one.
9943 if (NumDefs < 2)
9944 return SDValue();
9945
9946 assert((Opcode == ISD::UINT_TO_FP || Opcode == ISD::SINT_TO_FP)
9947 && "Should only handle conversion from integer to float.");
9948 assert(SrcVT != MVT::Other && "Cannot determine source type!");
9949
9950 EVT NVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumInScalars);
Tom Stellard567f8862013-01-02 22:13:01 +00009951
9952 if (!TLI.isOperationLegalOrCustom(Opcode, NVT))
9953 return SDValue();
9954
Michael Liao59229792012-10-24 04:14:18 +00009955 SmallVector<SDValue, 8> Opnds;
9956 for (unsigned i = 0; i != NumInScalars; ++i) {
9957 SDValue In = N->getOperand(i);
9958
9959 if (In.getOpcode() == ISD::UNDEF)
9960 Opnds.push_back(DAG.getUNDEF(SrcVT));
9961 else
9962 Opnds.push_back(In.getOperand(0));
9963 }
9964 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT,
9965 &Opnds[0], Opnds.size());
9966 AddToWorkList(BV.getNode());
9967
9968 return DAG.getNode(Opcode, dl, VT, BV);
9969}
9970
Michael Liao6d106b72012-10-23 23:06:52 +00009971SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
9972 unsigned NumInScalars = N->getNumOperands();
Andrew Trickef9de2a2013-05-25 02:42:55 +00009973 SDLoc dl(N);
Michael Liao6d106b72012-10-23 23:06:52 +00009974 EVT VT = N->getValueType(0);
9975
9976 // A vector built entirely of undefs is undef.
9977 if (ISD::allOperandsUndef(N))
9978 return DAG.getUNDEF(VT);
9979
9980 SDValue V = reduceBuildVecExtToExtBuildVec(N);
9981 if (V.getNode())
9982 return V;
9983
Michael Liao59229792012-10-24 04:14:18 +00009984 V = reduceBuildVecConvertToConvertBuildVec(N);
9985 if (V.getNode())
9986 return V;
9987
Dan Gohmana8665142007-06-25 16:23:39 +00009988 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
9989 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
9990 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands3fb2fc62012-03-19 15:35:44 +00009991
9992 // May only combine to shuffle after legalize if shuffle is legal.
9993 if (LegalOperations &&
9994 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
9995 return SDValue();
9996
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009997 SDValue VecIn1, VecIn2;
Chris Lattnerc9992542006-03-28 20:28:38 +00009998 for (unsigned i = 0; i != NumInScalars; ++i) {
9999 // Ignore undef inputs.
10000 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelcf0da6c2009-02-17 22:15:04 +000010001
Dan Gohmana8665142007-06-25 16:23:39 +000010002 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerc9992542006-03-28 20:28:38 +000010003 // constant index, bail out.
Dan Gohmana8665142007-06-25 16:23:39 +000010004 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerc9992542006-03-28 20:28:38 +000010005 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010006 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerc9992542006-03-28 20:28:38 +000010007 break;
10008 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010009
Nadav Rotem34ca89a2012-02-12 15:05:31 +000010010 // We allow up to two distinct input vectors.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010011 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerc9992542006-03-28 20:28:38 +000010012 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
10013 continue;
Scott Michelcf0da6c2009-02-17 22:15:04 +000010014
Gabor Greiff304a7a2008-08-28 21:40:38 +000010015 if (VecIn1.getNode() == 0) {
Chris Lattnerc9992542006-03-28 20:28:38 +000010016 VecIn1 = ExtractedFromVec;
Gabor Greiff304a7a2008-08-28 21:40:38 +000010017 } else if (VecIn2.getNode() == 0) {
Chris Lattnerc9992542006-03-28 20:28:38 +000010018 VecIn2 = ExtractedFromVec;
10019 } else {
10020 // Too many inputs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010021 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerc9992542006-03-28 20:28:38 +000010022 break;
10023 }
10024 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010025
Nadav Rotem34ca89a2012-02-12 15:05:31 +000010026 // If everything is good, we can make a shuffle operation.
Gabor Greiff304a7a2008-08-28 21:40:38 +000010027 if (VecIn1.getNode()) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010028 SmallVector<int, 8> Mask;
Chris Lattnerc9992542006-03-28 20:28:38 +000010029 for (unsigned i = 0; i != NumInScalars; ++i) {
10030 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010031 Mask.push_back(-1);
Chris Lattnerc9992542006-03-28 20:28:38 +000010032 continue;
10033 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010034
Rafael Espindolab93db662009-04-24 12:40:33 +000010035 // If extracting from the first vector, just use the index directly.
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010036 SDValue Extract = N->getOperand(i);
Mon P Wang523c0852009-03-17 06:33:10 +000010037 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerc9992542006-03-28 20:28:38 +000010038 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5f829d82009-04-29 05:20:52 +000010039 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
10040 if (ExtIndex > VT.getVectorNumElements())
10041 return SDValue();
Wesley Peck527da1b2010-11-23 03:31:01 +000010042
Nate Begeman5f829d82009-04-29 05:20:52 +000010043 Mask.push_back(ExtIndex);
Chris Lattnerc9992542006-03-28 20:28:38 +000010044 continue;
10045 }
10046
10047 // Otherwise, use InIdx + VecSize
Mon P Wang523c0852009-03-17 06:33:10 +000010048 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010049 Mask.push_back(Idx+NumInScalars);
Chris Lattnerc9992542006-03-28 20:28:38 +000010050 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010051
Nadav Rotem34ca89a2012-02-12 15:05:31 +000010052 // We can't generate a shuffle node with mismatched input and output types.
10053 // Attempt to transform a single input vector to the correct type.
10054 if ((VT != VecIn1.getValueType())) {
10055 // We don't support shuffeling between TWO values of different types.
10056 if (VecIn2.getNode() != 0)
10057 return SDValue();
10058
10059 // We only support widening of vectors which are half the size of the
10060 // output registers. For example XMM->YMM widening on X86 with AVX.
10061 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
10062 return SDValue();
10063
James Molloy1e5c6112012-09-10 14:01:21 +000010064 // If the input vector type has a different base type to the output
10065 // vector type, bail out.
10066 if (VecIn1.getValueType().getVectorElementType() !=
10067 VT.getVectorElementType())
10068 return SDValue();
10069
Stepan Dyatkovskiy99120e02012-08-22 09:33:55 +000010070 // Widen the input vector by adding undef values.
Michael Liao6d106b72012-10-23 23:06:52 +000010071 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
Stepan Dyatkovskiy99120e02012-08-22 09:33:55 +000010072 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
Nadav Rotem34ca89a2012-02-12 15:05:31 +000010073 }
10074
10075 // If VecIn2 is unused then change it to undef.
10076 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
10077
Nadav Rotem841c9a82012-09-20 08:53:31 +000010078 // Check that we were able to transform all incoming values to the same
10079 // type.
Nadav Rotem0c650642012-02-13 12:42:26 +000010080 if (VecIn2.getValueType() != VecIn1.getValueType() ||
10081 VecIn1.getValueType() != VT)
10082 return SDValue();
10083
Nadav Rotem34ca89a2012-02-12 15:05:31 +000010084 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0c650642012-02-13 12:42:26 +000010085 if (!isTypeLegal(VT))
Duncan Sandsdc2dac12008-11-24 14:53:14 +000010086 return SDValue();
10087
Dan Gohmana8665142007-06-25 16:23:39 +000010088 // Return the new VECTOR_SHUFFLE node.
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010089 SDValue Ops[2];
Chris Lattnerc24a1d32006-08-08 02:23:42 +000010090 Ops[0] = VecIn1;
Nadav Rotem34ca89a2012-02-12 15:05:31 +000010091 Ops[1] = VecIn2;
Michael Liao6d106b72012-10-23 23:06:52 +000010092 return DAG.getVectorShuffle(VT, dl, Ops[0], Ops[1], &Mask[0]);
Chris Lattnerc9992542006-03-28 20:28:38 +000010093 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010094
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010095 return SDValue();
Chris Lattnerc9992542006-03-28 20:28:38 +000010096}
10097
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010098SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohmana8665142007-06-25 16:23:39 +000010099 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
10100 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
10101 // inputs come from at most two distinct vectors, turn this into a shuffle
10102 // node.
10103
10104 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendling27d9dd42009-01-30 23:36:47 +000010105 if (N->getNumOperands() == 1)
Dan Gohmana8665142007-06-25 16:23:39 +000010106 return N->getOperand(0);
Dan Gohmana8665142007-06-25 16:23:39 +000010107
Nadav Rotem01892102012-07-14 21:30:27 +000010108 // Check if all of the operands are undefs.
Nadav Rotemd369d4b2013-10-25 06:41:18 +000010109 EVT VT = N->getValueType(0);
Nadav Rotema62368c2012-07-15 08:38:23 +000010110 if (ISD::allOperandsUndef(N))
Nadav Rotemd369d4b2013-10-25 06:41:18 +000010111 return DAG.getUNDEF(VT);
10112
10113 // Optimize concat_vectors where one of the vectors is undef.
10114 if (N->getNumOperands() == 2 &&
10115 N->getOperand(1)->getOpcode() == ISD::UNDEF) {
10116 SDValue In = N->getOperand(0);
Nadav Rotem6eee0802013-12-10 01:13:59 +000010117 assert(In.getValueType().isVector() && "Must concat vectors");
Nadav Rotemd369d4b2013-10-25 06:41:18 +000010118
10119 // Transform: concat_vectors(scalar, undef) -> scalar_to_vector(sclr).
10120 if (In->getOpcode() == ISD::BITCAST &&
10121 !In->getOperand(0)->getValueType(0).isVector()) {
10122 SDValue Scalar = In->getOperand(0);
10123 EVT SclTy = Scalar->getValueType(0);
10124
10125 if (!SclTy.isFloatingPoint() && !SclTy.isInteger())
10126 return SDValue();
10127
10128 EVT NVT = EVT::getVectorVT(*DAG.getContext(), SclTy,
10129 VT.getSizeInBits() / SclTy.getSizeInBits());
10130 if (!TLI.isTypeLegal(NVT) || !TLI.isTypeLegal(Scalar.getValueType()))
10131 return SDValue();
10132
10133 SDLoc dl = SDLoc(N);
10134 SDValue Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, NVT, Scalar);
10135 return DAG.getNode(ISD::BITCAST, dl, VT, Res);
10136 }
10137 }
Nadav Rotem01892102012-07-14 21:30:27 +000010138
Robert Lougher7d9084f2014-02-11 15:42:46 +000010139 // fold (concat_vectors (BUILD_VECTOR A, B, ...), (BUILD_VECTOR C, D, ...))
10140 // -> (BUILD_VECTOR A, B, ..., C, D, ...)
10141 if (N->getNumOperands() == 2 &&
10142 N->getOperand(0).getOpcode() == ISD::BUILD_VECTOR &&
10143 N->getOperand(1).getOpcode() == ISD::BUILD_VECTOR) {
10144 EVT VT = N->getValueType(0);
10145 SDValue N0 = N->getOperand(0);
10146 SDValue N1 = N->getOperand(1);
10147 SmallVector<SDValue, 8> Opnds;
10148 unsigned BuildVecNumElts = N0.getNumOperands();
10149
10150 for (unsigned i = 0; i != BuildVecNumElts; ++i)
10151 Opnds.push_back(N0.getOperand(i));
10152 for (unsigned i = 0; i != BuildVecNumElts; ++i)
10153 Opnds.push_back(N1.getOperand(i));
10154
10155 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT, &Opnds[0],
10156 Opnds.size());
10157 }
10158
Nadav Roteme5a2dda2013-05-01 19:18:51 +000010159 // Type legalization of vectors and DAG canonicalization of SHUFFLE_VECTOR
10160 // nodes often generate nop CONCAT_VECTOR nodes.
10161 // Scan the CONCAT_VECTOR operands and look for a CONCAT operations that
10162 // place the incoming vectors at the exact same location.
10163 SDValue SingleSource = SDValue();
10164 unsigned PartNumElem = N->getOperand(0).getValueType().getVectorNumElements();
10165
10166 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
10167 SDValue Op = N->getOperand(i);
10168
10169 if (Op.getOpcode() == ISD::UNDEF)
10170 continue;
10171
10172 // Check if this is the identity extract:
10173 if (Op.getOpcode() != ISD::EXTRACT_SUBVECTOR)
10174 return SDValue();
10175
10176 // Find the single incoming vector for the extract_subvector.
10177 if (SingleSource.getNode()) {
10178 if (Op.getOperand(0) != SingleSource)
10179 return SDValue();
10180 } else {
10181 SingleSource = Op.getOperand(0);
Michael Kupersteinac868752013-05-06 08:06:13 +000010182
10183 // Check the source type is the same as the type of the result.
10184 // If not, this concat may extend the vector, so we can not
10185 // optimize it away.
10186 if (SingleSource.getValueType() != N->getValueType(0))
10187 return SDValue();
Nadav Roteme5a2dda2013-05-01 19:18:51 +000010188 }
10189
10190 unsigned IdentityIndex = i * PartNumElem;
10191 ConstantSDNode *CS = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10192 // The extract index must be constant.
10193 if (!CS)
10194 return SDValue();
Stephen Lincfe7f352013-07-08 00:37:03 +000010195
Nadav Roteme5a2dda2013-05-01 19:18:51 +000010196 // Check that we are reading from the identity index.
10197 if (CS->getZExtValue() != IdentityIndex)
10198 return SDValue();
10199 }
10200
10201 if (SingleSource.getNode())
10202 return SingleSource;
Stephen Lincfe7f352013-07-08 00:37:03 +000010203
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010204 return SDValue();
Dan Gohmana8665142007-06-25 16:23:39 +000010205}
10206
Bruno Cardoso Lopes6cb23f62011-09-20 23:19:33 +000010207SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
10208 EVT NVT = N->getValueType(0);
10209 SDValue V = N->getOperand(0);
10210
Michael Liao7a442c802012-10-17 20:48:33 +000010211 if (V->getOpcode() == ISD::CONCAT_VECTORS) {
10212 // Combine:
10213 // (extract_subvec (concat V1, V2, ...), i)
10214 // Into:
10215 // Vi if possible
Jack Carterd4e96152013-10-17 01:34:33 +000010216 // Only operand 0 is checked as 'concat' assumes all inputs of the same
10217 // type.
Michael Liao2c235802012-10-19 03:17:00 +000010218 if (V->getOperand(0).getValueType() != NVT)
10219 return SDValue();
Michael Liao7a442c802012-10-17 20:48:33 +000010220 unsigned Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
10221 unsigned NumElems = NVT.getVectorNumElements();
10222 assert((Idx % NumElems) == 0 &&
10223 "IDX in concat is not a multiple of the result vector length.");
10224 return V->getOperand(Idx / NumElems);
10225 }
10226
Michael Liaobb05a1d2013-03-25 23:47:35 +000010227 // Skip bitcasting
10228 if (V->getOpcode() == ISD::BITCAST)
10229 V = V.getOperand(0);
10230
10231 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
Andrew Trickef9de2a2013-05-25 02:42:55 +000010232 SDLoc dl(N);
Michael Liaobb05a1d2013-03-25 23:47:35 +000010233 // Handle only simple case where vector being inserted and vector
10234 // being extracted are of same type, and are half size of larger vectors.
10235 EVT BigVT = V->getOperand(0).getValueType();
10236 EVT SmallVT = V->getOperand(1).getValueType();
10237 if (!NVT.bitsEq(SmallVT) || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
10238 return SDValue();
10239
10240 // Only handle cases where both indexes are constants with the same type.
10241 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
10242 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
10243
10244 if (InsIdx && ExtIdx &&
10245 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
10246 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
10247 // Combine:
10248 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
10249 // Into:
10250 // indices are equal or bit offsets are equal => V1
10251 // otherwise => (extract_subvec V1, ExtIdx)
10252 if (InsIdx->getZExtValue() * SmallVT.getScalarType().getSizeInBits() ==
10253 ExtIdx->getZExtValue() * NVT.getScalarType().getSizeInBits())
10254 return DAG.getNode(ISD::BITCAST, dl, NVT, V->getOperand(1));
10255 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NVT,
10256 DAG.getNode(ISD::BITCAST, dl,
10257 N->getOperand(0).getValueType(),
10258 V->getOperand(0)), N->getOperand(1));
10259 }
10260 }
10261
Bruno Cardoso Lopes6cb23f62011-09-20 23:19:33 +000010262 return SDValue();
10263}
10264
Benjamin Kramerbbae9912013-04-09 17:41:43 +000010265// Tries to turn a shuffle of two CONCAT_VECTORS into a single concat.
10266static SDValue partitionShuffleOfConcats(SDNode *N, SelectionDAG &DAG) {
10267 EVT VT = N->getValueType(0);
10268 unsigned NumElts = VT.getVectorNumElements();
10269
10270 SDValue N0 = N->getOperand(0);
10271 SDValue N1 = N->getOperand(1);
10272 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
10273
10274 SmallVector<SDValue, 4> Ops;
10275 EVT ConcatVT = N0.getOperand(0).getValueType();
10276 unsigned NumElemsPerConcat = ConcatVT.getVectorNumElements();
10277 unsigned NumConcats = NumElts / NumElemsPerConcat;
10278
10279 // Look at every vector that's inserted. We're looking for exact
10280 // subvector-sized copies from a concatenated vector
10281 for (unsigned I = 0; I != NumConcats; ++I) {
10282 // Make sure we're dealing with a copy.
10283 unsigned Begin = I * NumElemsPerConcat;
Hao Liubc601962013-05-13 02:07:05 +000010284 bool AllUndef = true, NoUndef = true;
10285 for (unsigned J = Begin; J != Begin + NumElemsPerConcat; ++J) {
10286 if (SVN->getMaskElt(J) >= 0)
10287 AllUndef = false;
10288 else
10289 NoUndef = false;
Benjamin Kramerbbae9912013-04-09 17:41:43 +000010290 }
10291
Hao Liubc601962013-05-13 02:07:05 +000010292 if (NoUndef) {
Hao Liubc601962013-05-13 02:07:05 +000010293 if (SVN->getMaskElt(Begin) % NumElemsPerConcat != 0)
10294 return SDValue();
10295
10296 for (unsigned J = 1; J != NumElemsPerConcat; ++J)
10297 if (SVN->getMaskElt(Begin + J - 1) + 1 != SVN->getMaskElt(Begin + J))
10298 return SDValue();
10299
10300 unsigned FirstElt = SVN->getMaskElt(Begin) / NumElemsPerConcat;
10301 if (FirstElt < N0.getNumOperands())
10302 Ops.push_back(N0.getOperand(FirstElt));
10303 else
10304 Ops.push_back(N1.getOperand(FirstElt - N0.getNumOperands()));
10305
10306 } else if (AllUndef) {
10307 Ops.push_back(DAG.getUNDEF(N0.getOperand(0).getValueType()));
10308 } else { // Mixed with general masks and undefs, can't do optimization.
10309 return SDValue();
10310 }
Benjamin Kramerbbae9912013-04-09 17:41:43 +000010311 }
10312
Andrew Trickef9de2a2013-05-25 02:42:55 +000010313 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, Ops.data(),
Benjamin Kramerbbae9912013-04-09 17:41:43 +000010314 Ops.size());
10315}
10316
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010317SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Anderson53aa7a92009-08-10 22:56:29 +000010318 EVT VT = N->getValueType(0);
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010319 unsigned NumElts = VT.getVectorNumElements();
Chris Lattner39dcf1a2006-03-31 22:16:43 +000010320
Mon P Wang25f01062008-11-10 04:46:22 +000010321 SDValue N0 = N->getOperand(0);
Craig Topper279c77b2012-01-04 08:07:43 +000010322 SDValue N1 = N->getOperand(1);
Mon P Wang25f01062008-11-10 04:46:22 +000010323
Craig Topper5894fe42012-04-09 05:16:56 +000010324 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wang25f01062008-11-10 04:46:22 +000010325
Craig Topper279c77b2012-01-04 08:07:43 +000010326 // Canonicalize shuffle undef, undef -> undef
10327 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
10328 return DAG.getUNDEF(VT);
10329
10330 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
10331
10332 // Canonicalize shuffle v, v -> v, undef
10333 if (N0 == N1) {
10334 SmallVector<int, 8> NewMask;
10335 for (unsigned i = 0; i != NumElts; ++i) {
10336 int Idx = SVN->getMaskElt(i);
10337 if (Idx >= (int)NumElts) Idx -= NumElts;
10338 NewMask.push_back(Idx);
10339 }
Andrew Trickef9de2a2013-05-25 02:42:55 +000010340 return DAG.getVectorShuffle(VT, SDLoc(N), N0, DAG.getUNDEF(VT),
Craig Topper279c77b2012-01-04 08:07:43 +000010341 &NewMask[0]);
10342 }
10343
10344 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
10345 if (N0.getOpcode() == ISD::UNDEF) {
10346 SmallVector<int, 8> NewMask;
10347 for (unsigned i = 0; i != NumElts; ++i) {
10348 int Idx = SVN->getMaskElt(i);
Craig Toppere3ad4832012-04-09 05:55:33 +000010349 if (Idx >= 0) {
Craig Topper309dfef2013-08-08 07:38:55 +000010350 if (Idx >= (int)NumElts)
Craig Toppere3ad4832012-04-09 05:55:33 +000010351 Idx -= NumElts;
Craig Topper309dfef2013-08-08 07:38:55 +000010352 else
10353 Idx = -1; // remove reference to lhs
Craig Toppere3ad4832012-04-09 05:55:33 +000010354 }
10355 NewMask.push_back(Idx);
Craig Topper279c77b2012-01-04 08:07:43 +000010356 }
Andrew Trickef9de2a2013-05-25 02:42:55 +000010357 return DAG.getVectorShuffle(VT, SDLoc(N), N1, DAG.getUNDEF(VT),
Craig Topper279c77b2012-01-04 08:07:43 +000010358 &NewMask[0]);
10359 }
10360
10361 // Remove references to rhs if it is undef
10362 if (N1.getOpcode() == ISD::UNDEF) {
10363 bool Changed = false;
10364 SmallVector<int, 8> NewMask;
10365 for (unsigned i = 0; i != NumElts; ++i) {
10366 int Idx = SVN->getMaskElt(i);
10367 if (Idx >= (int)NumElts) {
10368 Idx = -1;
10369 Changed = true;
10370 }
10371 NewMask.push_back(Idx);
10372 }
10373 if (Changed)
Andrew Trickef9de2a2013-05-25 02:42:55 +000010374 return DAG.getVectorShuffle(VT, SDLoc(N), N0, N1, &NewMask[0]);
Craig Topper279c77b2012-01-04 08:07:43 +000010375 }
Evan Cheng8472e0c2006-07-20 22:44:41 +000010376
Bob Wilsonf63da122010-10-28 17:06:14 +000010377 // If it is a splat, check if the argument vector is another splat or a
10378 // build_vector with all scalar elements the same.
Bob Wilsonf63da122010-10-28 17:06:14 +000010379 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greiff304a7a2008-08-28 21:40:38 +000010380 SDNode *V = N0.getNode();
Evan Cheng7c970b92006-07-21 08:25:53 +000010381
Dan Gohmana8665142007-06-25 16:23:39 +000010382 // If this is a bit convert that changes the element type of the vector but
Evan Chengf3ae00a2006-10-16 22:49:37 +000010383 // not the number of vector elements, look through it. Be careful not to
10384 // look though conversions that change things like v4f32 to v2f64.
Wesley Peck527da1b2010-11-23 03:31:01 +000010385 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010386 SDValue ConvInput = V->getOperand(0);
Evan Chengb8ff2232008-07-22 20:42:56 +000010387 if (ConvInput.getValueType().isVector() &&
10388 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greiff304a7a2008-08-28 21:40:38 +000010389 V = ConvInput.getNode();
Evan Chengf3ae00a2006-10-16 22:49:37 +000010390 }
10391
Dan Gohmana8665142007-06-25 16:23:39 +000010392 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilsonf63da122010-10-28 17:06:14 +000010393 assert(V->getNumOperands() == NumElts &&
10394 "BUILD_VECTOR has wrong number of operands");
10395 SDValue Base;
10396 bool AllSame = true;
10397 for (unsigned i = 0; i != NumElts; ++i) {
10398 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
10399 Base = V->getOperand(i);
10400 break;
Evan Cheng7c970b92006-07-21 08:25:53 +000010401 }
Evan Cheng7c970b92006-07-21 08:25:53 +000010402 }
Bob Wilsonf63da122010-10-28 17:06:14 +000010403 // Splat of <u, u, u, u>, return <u, u, u, u>
10404 if (!Base.getNode())
10405 return N0;
10406 for (unsigned i = 0; i != NumElts; ++i) {
10407 if (V->getOperand(i) != Base) {
10408 AllSame = false;
10409 break;
10410 }
10411 }
10412 // Splat of <x, x, x, x>, return <x, x, x, x>
10413 if (AllSame)
10414 return N0;
Evan Cheng7c970b92006-07-21 08:25:53 +000010415 }
10416 }
Nadav Rotemb0783502012-04-01 19:31:22 +000010417
Benjamin Kramerbbae9912013-04-09 17:41:43 +000010418 if (N0.getOpcode() == ISD::CONCAT_VECTORS &&
10419 Level < AfterLegalizeVectorOps &&
10420 (N1.getOpcode() == ISD::UNDEF ||
10421 (N1.getOpcode() == ISD::CONCAT_VECTORS &&
10422 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()))) {
10423 SDValue V = partitionShuffleOfConcats(N, DAG);
10424
10425 if (V.getNode())
10426 return V;
10427 }
10428
Nadav Rotemb0783502012-04-01 19:31:22 +000010429 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotem71d07ae2012-04-07 21:19:08 +000010430 // and it reverses the swizzle of the previous shuffle then we can
10431 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotemb0783502012-04-01 19:31:22 +000010432 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
10433 N1.getOpcode() == ISD::UNDEF) {
10434
Nadav Rotemb0783502012-04-01 19:31:22 +000010435 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
10436
Nadav Rotem71d07ae2012-04-07 21:19:08 +000010437 // Shuffle nodes can only reverse shuffles with a single non-undef value.
10438 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
10439 return SDValue();
10440
Craig Topper5894fe42012-04-09 05:16:56 +000010441 // The incoming shuffle must be of the same type as the result of the
10442 // current shuffle.
10443 assert(OtherSV->getOperand(0).getValueType() == VT &&
10444 "Shuffle types don't match");
Nadav Rotemb0783502012-04-01 19:31:22 +000010445
10446 for (unsigned i = 0; i != NumElts; ++i) {
10447 int Idx = SVN->getMaskElt(i);
Craig Topper5894fe42012-04-09 05:16:56 +000010448 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotemb0783502012-04-01 19:31:22 +000010449 // Next, this index comes from the first value, which is the incoming
10450 // shuffle. Adopt the incoming index.
10451 if (Idx >= 0)
10452 Idx = OtherSV->getMaskElt(Idx);
10453
Nadav Rotem71d07ae2012-04-07 21:19:08 +000010454 // The combined shuffle must map each index to itself.
Craig Topper5894fe42012-04-09 05:16:56 +000010455 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotem71d07ae2012-04-07 21:19:08 +000010456 return SDValue();
Nadav Rotemb0783502012-04-01 19:31:22 +000010457 }
Nadav Rotem71d07ae2012-04-07 21:19:08 +000010458
10459 return OtherSV->getOperand(0);
Nadav Rotemb0783502012-04-01 19:31:22 +000010460 }
10461
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010462 return SDValue();
Chris Lattner39dcf1a2006-03-31 22:16:43 +000010463}
10464
Manman Ren413a6cb2014-01-31 01:10:35 +000010465SDValue DAGCombiner::visitINSERT_SUBVECTOR(SDNode *N) {
10466 SDValue N0 = N->getOperand(0);
10467 SDValue N2 = N->getOperand(2);
10468
10469 // If the input vector is a concatenation, and the insert replaces
10470 // one of the halves, we can optimize into a single concat_vectors.
10471 if (N0.getOpcode() == ISD::CONCAT_VECTORS &&
10472 N0->getNumOperands() == 2 && N2.getOpcode() == ISD::Constant) {
10473 APInt InsIdx = cast<ConstantSDNode>(N2)->getAPIntValue();
10474 EVT VT = N->getValueType(0);
10475
10476 // Lower half: fold (insert_subvector (concat_vectors X, Y), Z) ->
10477 // (concat_vectors Z, Y)
10478 if (InsIdx == 0)
10479 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
10480 N->getOperand(1), N0.getOperand(1));
10481
10482 // Upper half: fold (insert_subvector (concat_vectors X, Y), Z) ->
10483 // (concat_vectors X, Z)
10484 if (InsIdx == VT.getVectorNumElements()/2)
10485 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
10486 N0.getOperand(0), N->getOperand(1));
10487 }
10488
10489 return SDValue();
10490}
10491
Evan Chenga320abc2006-04-20 08:56:16 +000010492/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohmana8665142007-06-25 16:23:39 +000010493/// an AND to a vector_shuffle with the destination vector and a zero vector.
10494/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Chenga320abc2006-04-20 08:56:16 +000010495/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010496SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Anderson53aa7a92009-08-10 22:56:29 +000010497 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +000010498 SDLoc dl(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010499 SDValue LHS = N->getOperand(0);
10500 SDValue RHS = N->getOperand(1);
Dan Gohmana8665142007-06-25 16:23:39 +000010501 if (N->getOpcode() == ISD::AND) {
Wesley Peck527da1b2010-11-23 03:31:01 +000010502 if (RHS.getOpcode() == ISD::BITCAST)
Evan Chenga320abc2006-04-20 08:56:16 +000010503 RHS = RHS.getOperand(0);
Dan Gohmana8665142007-06-25 16:23:39 +000010504 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010505 SmallVector<int, 8> Indices;
10506 unsigned NumElts = RHS.getNumOperands();
Evan Chenga320abc2006-04-20 08:56:16 +000010507 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010508 SDValue Elt = RHS.getOperand(i);
Evan Chenga320abc2006-04-20 08:56:16 +000010509 if (!isa<ConstantSDNode>(Elt))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010510 return SDValue();
Craig Toppere5893f62012-04-09 05:59:53 +000010511
10512 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010513 Indices.push_back(i);
Evan Chenga320abc2006-04-20 08:56:16 +000010514 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010515 Indices.push_back(NumElts);
Evan Chenga320abc2006-04-20 08:56:16 +000010516 else
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010517 return SDValue();
Evan Chenga320abc2006-04-20 08:56:16 +000010518 }
10519
10520 // Let's see if the target supports this vector_shuffle.
Owen Anderson53aa7a92009-08-10 22:56:29 +000010521 EVT RVT = RHS.getValueType();
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010522 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010523 return SDValue();
Evan Chenga320abc2006-04-20 08:56:16 +000010524
Dan Gohmana8665142007-06-25 16:23:39 +000010525 // Return the new VECTOR_SHUFFLE node.
Dan Gohman08c0a952009-09-23 21:02:20 +000010526 EVT EltVT = RVT.getVectorElementType();
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010527 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman08c0a952009-09-23 21:02:20 +000010528 DAG.getConstant(0, EltVT));
Andrew Trickef9de2a2013-05-25 02:42:55 +000010529 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010530 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peck527da1b2010-11-23 03:31:01 +000010531 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman8d6d4b92009-04-27 18:41:29 +000010532 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peck527da1b2010-11-23 03:31:01 +000010533 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Chenga320abc2006-04-20 08:56:16 +000010534 }
10535 }
Bill Wendling31b50992009-01-30 23:59:18 +000010536
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010537 return SDValue();
Evan Chenga320abc2006-04-20 08:56:16 +000010538}
10539
Dan Gohmana8665142007-06-25 16:23:39 +000010540/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010541SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Bob Wilson54081442010-12-17 23:06:49 +000010542 assert(N->getValueType(0).isVector() &&
10543 "SimplifyVBinOp only works on vectors!");
Dan Gohmana8665142007-06-25 16:23:39 +000010544
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010545 SDValue LHS = N->getOperand(0);
10546 SDValue RHS = N->getOperand(1);
10547 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greiff304a7a2008-08-28 21:40:38 +000010548 if (Shuffle.getNode()) return Shuffle;
Evan Chenga320abc2006-04-20 08:56:16 +000010549
Dan Gohmana8665142007-06-25 16:23:39 +000010550 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattner0442a182006-04-02 03:25:57 +000010551 // this operation.
Scott Michelcf0da6c2009-02-17 22:15:04 +000010552 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohmana8665142007-06-25 16:23:39 +000010553 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Juergen Ributzka73844052014-01-13 20:51:35 +000010554 // Check if both vectors are constants. If not bail out.
Andrea Di Biagiod7c03ec2014-01-15 19:51:32 +000010555 if (!(cast<BuildVectorSDNode>(LHS)->isConstant() &&
10556 cast<BuildVectorSDNode>(RHS)->isConstant()))
Juergen Ributzka73844052014-01-13 20:51:35 +000010557 return SDValue();
10558
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010559 SmallVector<SDValue, 8> Ops;
Dan Gohmana8665142007-06-25 16:23:39 +000010560 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010561 SDValue LHSOp = LHS.getOperand(i);
10562 SDValue RHSOp = RHS.getOperand(i);
Bill Wendling31b50992009-01-30 23:59:18 +000010563
Evan Cheng64d28462006-05-31 06:08:35 +000010564 // Can't fold divide by zero.
Dan Gohmana8665142007-06-25 16:23:39 +000010565 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
10566 N->getOpcode() == ISD::FDIV) {
Evan Cheng64d28462006-05-31 06:08:35 +000010567 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greiff304a7a2008-08-28 21:40:38 +000010568 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng64d28462006-05-31 06:08:35 +000010569 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greiff304a7a2008-08-28 21:40:38 +000010570 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng64d28462006-05-31 06:08:35 +000010571 break;
10572 }
Bill Wendling31b50992009-01-30 23:59:18 +000010573
Bob Wilson54081442010-12-17 23:06:49 +000010574 EVT VT = LHSOp.getValueType();
Bob Wilson68156192011-10-18 17:34:47 +000010575 EVT RVT = RHSOp.getValueType();
10576 if (RVT != VT) {
10577 // Integer BUILD_VECTOR operands may have types larger than the element
10578 // size (e.g., when the element type is not legal). Prior to type
10579 // legalization, the types may not match between the two BUILD_VECTORS.
10580 // Truncate one of the operands to make them match.
10581 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +000010582 RHSOp = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, RHSOp);
Bob Wilson68156192011-10-18 17:34:47 +000010583 } else {
Andrew Trickef9de2a2013-05-25 02:42:55 +000010584 LHSOp = DAG.getNode(ISD::TRUNCATE, SDLoc(N), RVT, LHSOp);
Bob Wilson68156192011-10-18 17:34:47 +000010585 VT = RVT;
10586 }
10587 }
Andrew Trickef9de2a2013-05-25 02:42:55 +000010588 SDValue FoldOp = DAG.getNode(N->getOpcode(), SDLoc(LHS), VT,
Evan Cheng48f0de92010-05-18 00:03:40 +000010589 LHSOp, RHSOp);
10590 if (FoldOp.getOpcode() != ISD::UNDEF &&
10591 FoldOp.getOpcode() != ISD::Constant &&
10592 FoldOp.getOpcode() != ISD::ConstantFP)
10593 break;
10594 Ops.push_back(FoldOp);
10595 AddToWorkList(FoldOp.getNode());
Chris Lattner0442a182006-04-02 03:25:57 +000010596 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010597
Bob Wilson54081442010-12-17 23:06:49 +000010598 if (Ops.size() == LHS.getNumOperands())
Andrew Trickef9de2a2013-05-25 02:42:55 +000010599 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Bob Wilson54081442010-12-17 23:06:49 +000010600 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattner0442a182006-04-02 03:25:57 +000010601 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010602
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010603 return SDValue();
Chris Lattner0442a182006-04-02 03:25:57 +000010604}
10605
Craig Topper82384612012-09-11 01:45:21 +000010606/// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG.
10607SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) {
Craig Topper82384612012-09-11 01:45:21 +000010608 assert(N->getValueType(0).isVector() &&
10609 "SimplifyVUnaryOp only works on vectors!");
10610
10611 SDValue N0 = N->getOperand(0);
10612
10613 if (N0.getOpcode() != ISD::BUILD_VECTOR)
10614 return SDValue();
10615
10616 // Operand is a BUILD_VECTOR node, see if we can constant fold it.
10617 SmallVector<SDValue, 8> Ops;
10618 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
10619 SDValue Op = N0.getOperand(i);
10620 if (Op.getOpcode() != ISD::UNDEF &&
10621 Op.getOpcode() != ISD::ConstantFP)
10622 break;
10623 EVT EltVT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +000010624 SDValue FoldOp = DAG.getNode(N->getOpcode(), SDLoc(N0), EltVT, Op);
Craig Topper82384612012-09-11 01:45:21 +000010625 if (FoldOp.getOpcode() != ISD::UNDEF &&
10626 FoldOp.getOpcode() != ISD::ConstantFP)
10627 break;
10628 Ops.push_back(FoldOp);
10629 AddToWorkList(FoldOp.getNode());
10630 }
10631
10632 if (Ops.size() != N0.getNumOperands())
10633 return SDValue();
10634
Andrew Trickef9de2a2013-05-25 02:42:55 +000010635 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Craig Topper82384612012-09-11 01:45:21 +000010636 N0.getValueType(), &Ops[0], Ops.size());
10637}
10638
Andrew Trickef9de2a2013-05-25 02:42:55 +000010639SDValue DAGCombiner::SimplifySelect(SDLoc DL, SDValue N0,
Bill Wendling31b50992009-01-30 23:59:18 +000010640 SDValue N1, SDValue N2){
Nate Begeman2042aa52005-10-08 00:29:44 +000010641 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelcf0da6c2009-02-17 22:15:04 +000010642
Bill Wendling31b50992009-01-30 23:59:18 +000010643 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begeman2042aa52005-10-08 00:29:44 +000010644 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling31b50992009-01-30 23:59:18 +000010645
Nate Begeman2042aa52005-10-08 00:29:44 +000010646 // If we got a simplified select_cc node back from SimplifySelectCC, then
10647 // break it down into a new SETCC node, and a new SELECT node, and then return
10648 // the SELECT node, since we were called with a SELECT node.
Gabor Greiff304a7a2008-08-28 21:40:38 +000010649 if (SCC.getNode()) {
Nate Begeman2042aa52005-10-08 00:29:44 +000010650 // Check to see if we got a select_cc back (to turn into setcc/select).
10651 // Otherwise, just return whatever node we got back, like fabs.
10652 if (SCC.getOpcode() == ISD::SELECT_CC) {
Andrew Trickef9de2a2013-05-25 02:42:55 +000010653 SDValue SETCC = DAG.getNode(ISD::SETCC, SDLoc(N0),
Bill Wendling31b50992009-01-30 23:59:18 +000010654 N0.getValueType(),
Scott Michelcf0da6c2009-02-17 22:15:04 +000010655 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling31b50992009-01-30 23:59:18 +000010656 SCC.getOperand(4));
Gabor Greiff304a7a2008-08-28 21:40:38 +000010657 AddToWorkList(SETCC.getNode());
Matt Arsenaultd2f03322013-06-14 22:04:37 +000010658 return DAG.getSelect(SDLoc(SCC), SCC.getValueType(),
10659 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begeman2042aa52005-10-08 00:29:44 +000010660 }
Bill Wendling31b50992009-01-30 23:59:18 +000010661
Nate Begeman2042aa52005-10-08 00:29:44 +000010662 return SCC;
10663 }
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010664 return SDValue();
Nate Begemanc760f802005-09-19 22:34:01 +000010665}
10666
Chris Lattner6c14c352005-10-18 06:04:22 +000010667/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
10668/// are the two values being selected between, see if we can simplify the
Chris Lattner8f872d22006-05-27 00:43:02 +000010669/// select. Callers of this should assume that TheSelect is deleted if this
10670/// returns true. As such, they should return the appropriate thing (e.g. the
10671/// node) back to the top-level of the DAG combiner loop to avoid it being
10672/// looked at.
Scott Michelcf0da6c2009-02-17 22:15:04 +000010673bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010674 SDValue RHS) {
Scott Michelcf0da6c2009-02-17 22:15:04 +000010675
Nadav Rotema49a02a2011-02-11 19:57:47 +000010676 // Cannot simplify select with vector condition
10677 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
10678
Chris Lattner6c14c352005-10-18 06:04:22 +000010679 // If this is a select from two identical things, try to pull the operation
10680 // through the select.
Chris Lattner254c4452010-09-21 15:46:59 +000010681 if (LHS.getOpcode() != RHS.getOpcode() ||
10682 !LHS.hasOneUse() || !RHS.hasOneUse())
10683 return false;
Wesley Peck527da1b2010-11-23 03:31:01 +000010684
Chris Lattner254c4452010-09-21 15:46:59 +000010685 // If this is a load and the token chain is identical, replace the select
10686 // of two loads with a load through a select of the address to load from.
10687 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
10688 // constants have been dropped into the constant pool.
10689 if (LHS.getOpcode() == ISD::LOAD) {
10690 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
10691 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peck527da1b2010-11-23 03:31:01 +000010692
Chris Lattner254c4452010-09-21 15:46:59 +000010693 // Token chains must be identical.
10694 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sands8651e9c2008-06-13 19:07:40 +000010695 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner254c4452010-09-21 15:46:59 +000010696 LLD->isVolatile() || RLD->isVolatile() ||
10697 // If this is an EXTLOAD, the VT's must match.
10698 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sands12f3b3b2010-11-18 20:05:18 +000010699 // If this is an EXTLOAD, the kind of extension must match.
10700 (LLD->getExtensionType() != RLD->getExtensionType() &&
10701 // The only exception is if one of the extensions is anyext.
10702 LLD->getExtensionType() != ISD::EXTLOAD &&
10703 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohmanba8735d2009-10-31 14:14:04 +000010704 // FIXME: this discards src value information. This is
10705 // over-conservative. It would be beneficial to be able to remember
Mon P Wangec57c812010-01-11 20:12:49 +000010706 // both potential memory locations. Since we are discarding
10707 // src value info, don't do the transformation if the memory
10708 // locations are not in the default address space.
Chris Lattner254c4452010-09-21 15:46:59 +000010709 LLD->getPointerInfo().getAddrSpace() != 0 ||
Pete Cooper10a3ae72013-02-12 03:14:50 +000010710 RLD->getPointerInfo().getAddrSpace() != 0 ||
10711 !TLI.isOperationLegalOrCustom(TheSelect->getOpcode(),
10712 LLD->getBasePtr().getValueType()))
Chris Lattner254c4452010-09-21 15:46:59 +000010713 return false;
Wesley Peck527da1b2010-11-23 03:31:01 +000010714
Chris Lattnere3267522010-09-21 15:58:55 +000010715 // Check that the select condition doesn't reach either load. If so,
10716 // folding this will induce a cycle into the DAG. If not, this is safe to
10717 // xform, so create a select of the addresses.
Chris Lattner254c4452010-09-21 15:46:59 +000010718 SDValue Addr;
10719 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnere3267522010-09-21 15:58:55 +000010720 SDNode *CondNode = TheSelect->getOperand(0).getNode();
10721 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
10722 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
10723 return false;
Nadav Rotemd5f88592012-10-18 18:06:48 +000010724 // The loads must not depend on one another.
10725 if (LLD->isPredecessorOf(RLD) ||
10726 RLD->isPredecessorOf(LLD))
10727 return false;
Matt Arsenaultd2f03322013-06-14 22:04:37 +000010728 Addr = DAG.getSelect(SDLoc(TheSelect),
10729 LLD->getBasePtr().getValueType(),
10730 TheSelect->getOperand(0), LLD->getBasePtr(),
10731 RLD->getBasePtr());
Chris Lattner254c4452010-09-21 15:46:59 +000010732 } else { // Otherwise SELECT_CC
Chris Lattnere3267522010-09-21 15:58:55 +000010733 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
10734 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
10735
10736 if ((LLD->hasAnyUseOfValue(1) &&
10737 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner1cc25e82012-03-27 16:27:21 +000010738 (RLD->hasAnyUseOfValue(1) &&
10739 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnere3267522010-09-21 15:58:55 +000010740 return false;
Wesley Peck527da1b2010-11-23 03:31:01 +000010741
Andrew Trickef9de2a2013-05-25 02:42:55 +000010742 Addr = DAG.getNode(ISD::SELECT_CC, SDLoc(TheSelect),
Chris Lattnere3267522010-09-21 15:58:55 +000010743 LLD->getBasePtr().getValueType(),
10744 TheSelect->getOperand(0),
10745 TheSelect->getOperand(1),
10746 LLD->getBasePtr(), RLD->getBasePtr(),
10747 TheSelect->getOperand(4));
Chris Lattner254c4452010-09-21 15:46:59 +000010748 }
10749
Chris Lattnere3267522010-09-21 15:58:55 +000010750 SDValue Load;
10751 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
10752 Load = DAG.getLoad(TheSelect->getValueType(0),
Andrew Trickef9de2a2013-05-25 02:42:55 +000010753 SDLoc(TheSelect),
Richard Sandiford39c1ce42013-10-28 11:17:59 +000010754 // FIXME: Discards pointer and TBAA info.
Chris Lattnere3267522010-09-21 15:58:55 +000010755 LLD->getChain(), Addr, MachinePointerInfo(),
10756 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +000010757 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnere3267522010-09-21 15:58:55 +000010758 } else {
Duncan Sandsc92331b2010-11-18 21:16:28 +000010759 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
10760 RLD->getExtensionType() : LLD->getExtensionType(),
Andrew Trickef9de2a2013-05-25 02:42:55 +000010761 SDLoc(TheSelect),
Stuart Hastings81c43062011-02-16 16:23:55 +000010762 TheSelect->getValueType(0),
Richard Sandiford39c1ce42013-10-28 11:17:59 +000010763 // FIXME: Discards pointer and TBAA info.
Chris Lattnere3267522010-09-21 15:58:55 +000010764 LLD->getChain(), Addr, MachinePointerInfo(),
10765 LLD->getMemoryVT(), LLD->isVolatile(),
10766 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner6c14c352005-10-18 06:04:22 +000010767 }
Chris Lattnere3267522010-09-21 15:58:55 +000010768
10769 // Users of the select now use the result of the load.
10770 CombineTo(TheSelect, Load);
10771
10772 // Users of the old loads now use the new load's chain. We know the
10773 // old-load value is dead now.
10774 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
10775 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
10776 return true;
Chris Lattner6c14c352005-10-18 06:04:22 +000010777 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010778
Chris Lattner6c14c352005-10-18 06:04:22 +000010779 return false;
10780}
10781
Chris Lattner43d63772009-03-11 05:08:08 +000010782/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
10783/// where 'cond' is the comparison specified by CC.
Andrew Trickef9de2a2013-05-25 02:42:55 +000010784SDValue DAGCombiner::SimplifySelectCC(SDLoc DL, SDValue N0, SDValue N1,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010785 SDValue N2, SDValue N3,
10786 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner43d63772009-03-11 05:08:08 +000010787 // (x ? y : y) -> y.
10788 if (N2 == N3) return N2;
Wesley Peck527da1b2010-11-23 03:31:01 +000010789
Owen Anderson53aa7a92009-08-10 22:56:29 +000010790 EVT VT = N2.getValueType();
Gabor Greiff304a7a2008-08-28 21:40:38 +000010791 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
10792 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
10793 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begeman2042aa52005-10-08 00:29:44 +000010794
10795 // Determine if the condition we're dealing with is constant
Matt Arsenault758659232013-05-18 00:21:46 +000010796 SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()),
Dale Johannesenf1163e92009-02-03 00:47:48 +000010797 N0, N1, CC, DL, false);
Gabor Greiff304a7a2008-08-28 21:40:38 +000010798 if (SCC.getNode()) AddToWorkList(SCC.getNode());
10799 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begeman2042aa52005-10-08 00:29:44 +000010800
10801 // fold select_cc true, x, y -> x
Dan Gohmanb72127a2008-03-13 22:13:53 +000010802 if (SCCC && !SCCC->isNullValue())
Nate Begeman2042aa52005-10-08 00:29:44 +000010803 return N2;
10804 // fold select_cc false, x, y -> y
Dan Gohmanb72127a2008-03-13 22:13:53 +000010805 if (SCCC && SCCC->isNullValue())
Nate Begeman2042aa52005-10-08 00:29:44 +000010806 return N3;
Scott Michelcf0da6c2009-02-17 22:15:04 +000010807
Nate Begeman2042aa52005-10-08 00:29:44 +000010808 // Check to see if we can simplify the select into an fabs node
10809 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
10810 // Allow either -0.0 or 0.0
Dale Johannesen2cfcf702007-08-25 22:10:57 +000010811 if (CFP->getValueAPF().isZero()) {
Nate Begeman2042aa52005-10-08 00:29:44 +000010812 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
10813 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
10814 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
10815 N2 == N3.getOperand(0))
Bill Wendling31b50992009-01-30 23:59:18 +000010816 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelcf0da6c2009-02-17 22:15:04 +000010817
Nate Begeman2042aa52005-10-08 00:29:44 +000010818 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
10819 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
10820 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
10821 N2.getOperand(0) == N3)
Bill Wendling31b50992009-01-30 23:59:18 +000010822 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begeman2042aa52005-10-08 00:29:44 +000010823 }
10824 }
Wesley Peck527da1b2010-11-23 03:31:01 +000010825
Chris Lattner43d63772009-03-11 05:08:08 +000010826 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
10827 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
10828 // in it. This is a win when the constant is not otherwise available because
10829 // it replaces two constant pool loads with one. We only do this if the FP
10830 // type is known to be legal, because if it isn't, then we are before legalize
10831 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wangc8671562009-03-14 00:25:19 +000010832 // messing with soft float) and if the ConstantFP is not legal, because if
10833 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner43d63772009-03-11 05:08:08 +000010834 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
10835 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
10836 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wangc8671562009-03-14 00:25:19 +000010837 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
10838 TargetLowering::Legal) &&
Chris Lattner43d63772009-03-11 05:08:08 +000010839 // If both constants have multiple uses, then we won't need to do an
10840 // extra load, they are likely around in registers for other users.
10841 (TV->hasOneUse() || FV->hasOneUse())) {
10842 Constant *Elts[] = {
10843 const_cast<ConstantFP*>(FV->getConstantFPValue()),
10844 const_cast<ConstantFP*>(TV->getConstantFPValue())
10845 };
Chris Lattner229907c2011-07-18 04:54:35 +000010846 Type *FPTy = Elts[0]->getType();
Micah Villmowcdfe20b2012-10-08 16:38:25 +000010847 const DataLayout &TD = *TLI.getDataLayout();
Wesley Peck527da1b2010-11-23 03:31:01 +000010848
Chris Lattner43d63772009-03-11 05:08:08 +000010849 // Create a ConstantArray of the two constants.
Jay Foad83be3612011-06-22 09:24:39 +000010850 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner43d63772009-03-11 05:08:08 +000010851 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
10852 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1fb8aed2009-03-13 07:51:59 +000010853 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner43d63772009-03-11 05:08:08 +000010854
10855 // Get the offsets to the 0 and 1 element of the array so that we can
10856 // select between them.
10857 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sandsaf9eaa82009-05-09 07:06:46 +000010858 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner43d63772009-03-11 05:08:08 +000010859 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peck527da1b2010-11-23 03:31:01 +000010860
Chris Lattner43d63772009-03-11 05:08:08 +000010861 SDValue Cond = DAG.getSetCC(DL,
Matt Arsenault758659232013-05-18 00:21:46 +000010862 getSetCCResultType(N0.getValueType()),
Chris Lattner43d63772009-03-11 05:08:08 +000010863 N0, N1, CC);
Dan Gohmane83e1b22011-09-22 23:01:29 +000010864 AddToWorkList(Cond.getNode());
Matt Arsenaultd2f03322013-06-14 22:04:37 +000010865 SDValue CstOffset = DAG.getSelect(DL, Zero.getValueType(),
10866 Cond, One, Zero);
Dan Gohmane83e1b22011-09-22 23:01:29 +000010867 AddToWorkList(CstOffset.getNode());
Tom Stellard838e2342013-08-26 15:06:10 +000010868 CPIdx = DAG.getNode(ISD::ADD, DL, CPIdx.getValueType(), CPIdx,
Chris Lattner43d63772009-03-11 05:08:08 +000010869 CstOffset);
Dan Gohmane83e1b22011-09-22 23:01:29 +000010870 AddToWorkList(CPIdx.getNode());
Chris Lattner43d63772009-03-11 05:08:08 +000010871 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +000010872 MachinePointerInfo::getConstantPool(), false,
Pete Cooper82cd9e82011-11-08 18:42:53 +000010873 false, false, Alignment);
Chris Lattner43d63772009-03-11 05:08:08 +000010874
10875 }
Wesley Peck527da1b2010-11-23 03:31:01 +000010876 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010877
Nate Begeman2042aa52005-10-08 00:29:44 +000010878 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling31b50992009-01-30 23:59:18 +000010879 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnerc8cd62d2006-09-20 06:41:35 +000010880 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohmanb72127a2008-03-13 22:13:53 +000010881 (N1C->isNullValue() || // (a < 0) ? b : 0
10882 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Anderson53aa7a92009-08-10 22:56:29 +000010883 EVT XType = N0.getValueType();
10884 EVT AType = N2.getValueType();
Duncan Sands11dd4242008-06-08 20:54:56 +000010885 if (XType.bitsGE(AType)) {
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +000010886 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman6828ed92005-10-10 21:26:48 +000010887 // single-bit constant.
Dan Gohmanb72127a2008-03-13 22:13:53 +000010888 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
10889 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands13237ac2008-06-06 12:08:01 +000010890 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Andersonb2c80da2011-02-25 21:41:48 +000010891 SDValue ShCt = DAG.getConstant(ShCtV,
10892 getShiftAmountTy(N0.getValueType()));
Andrew Trickef9de2a2013-05-25 02:42:55 +000010893 SDValue Shift = DAG.getNode(ISD::SRL, SDLoc(N0),
Bill Wendling31b50992009-01-30 23:59:18 +000010894 XType, N0, ShCt);
Gabor Greiff304a7a2008-08-28 21:40:38 +000010895 AddToWorkList(Shift.getNode());
Bill Wendling31b50992009-01-30 23:59:18 +000010896
Duncan Sands11dd4242008-06-08 20:54:56 +000010897 if (XType.bitsGT(AType)) {
Bill Wendling3b585af2009-01-31 03:12:48 +000010898 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greiff304a7a2008-08-28 21:40:38 +000010899 AddToWorkList(Shift.getNode());
Nate Begeman2042aa52005-10-08 00:29:44 +000010900 }
Bill Wendling31b50992009-01-30 23:59:18 +000010901
10902 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begeman2042aa52005-10-08 00:29:44 +000010903 }
Bill Wendling31b50992009-01-30 23:59:18 +000010904
Andrew Trickef9de2a2013-05-25 02:42:55 +000010905 SDValue Shift = DAG.getNode(ISD::SRA, SDLoc(N0),
Bill Wendling31b50992009-01-30 23:59:18 +000010906 XType, N0,
10907 DAG.getConstant(XType.getSizeInBits()-1,
Owen Andersonb2c80da2011-02-25 21:41:48 +000010908 getShiftAmountTy(N0.getValueType())));
Gabor Greiff304a7a2008-08-28 21:40:38 +000010909 AddToWorkList(Shift.getNode());
Bill Wendling31b50992009-01-30 23:59:18 +000010910
Duncan Sands11dd4242008-06-08 20:54:56 +000010911 if (XType.bitsGT(AType)) {
Bill Wendling3b585af2009-01-31 03:12:48 +000010912 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greiff304a7a2008-08-28 21:40:38 +000010913 AddToWorkList(Shift.getNode());
Nate Begeman2042aa52005-10-08 00:29:44 +000010914 }
Bill Wendling31b50992009-01-30 23:59:18 +000010915
10916 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begeman2042aa52005-10-08 00:29:44 +000010917 }
10918 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010919
Owen Anderson3231d132010-09-22 22:58:22 +000010920 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
10921 // where y is has a single bit set.
10922 // A plaintext description would be, we can turn the SELECT_CC into an AND
10923 // when the condition can be materialized as an all-ones register. Any
10924 // single bit-test can be materialized as an all-ones register with
10925 // shift-left and shift-right-arith.
10926 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
10927 N0->getValueType(0) == VT &&
Wesley Peck527da1b2010-11-23 03:31:01 +000010928 N1C && N1C->isNullValue() &&
Owen Anderson3231d132010-09-22 22:58:22 +000010929 N2C && N2C->isNullValue()) {
10930 SDValue AndLHS = N0->getOperand(0);
10931 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
10932 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
10933 // Shift the tested bit over the sign bit.
10934 APInt AndMask = ConstAndRHS->getAPIntValue();
10935 SDValue ShlAmt =
Owen Andersonb2c80da2011-02-25 21:41:48 +000010936 DAG.getConstant(AndMask.countLeadingZeros(),
10937 getShiftAmountTy(AndLHS.getValueType()));
Andrew Trickef9de2a2013-05-25 02:42:55 +000010938 SDValue Shl = DAG.getNode(ISD::SHL, SDLoc(N0), VT, AndLHS, ShlAmt);
Wesley Peck527da1b2010-11-23 03:31:01 +000010939
Owen Anderson3231d132010-09-22 22:58:22 +000010940 // Now arithmetic right shift it all the way over, so the result is either
10941 // all-ones, or zero.
10942 SDValue ShrAmt =
Owen Andersonb2c80da2011-02-25 21:41:48 +000010943 DAG.getConstant(AndMask.getBitWidth()-1,
10944 getShiftAmountTy(Shl.getValueType()));
Andrew Trickef9de2a2013-05-25 02:42:55 +000010945 SDValue Shr = DAG.getNode(ISD::SRA, SDLoc(N0), VT, Shl, ShrAmt);
Wesley Peck527da1b2010-11-23 03:31:01 +000010946
Owen Anderson3231d132010-09-22 22:58:22 +000010947 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
10948 }
10949 }
10950
Nate Begeman6828ed92005-10-10 21:26:48 +000010951 // fold select C, 16, 0 -> shl C, 4
Dan Gohmanb72127a2008-03-13 22:13:53 +000010952 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sandsf2641e12011-09-06 19:07:46 +000010953 TLI.getBooleanContents(N0.getValueType().isVector()) ==
10954 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelcf0da6c2009-02-17 22:15:04 +000010955
Chris Lattnera083ffc2007-04-11 06:50:51 +000010956 // If the caller doesn't want us to simplify this into a zext of a compare,
10957 // don't do it.
Dan Gohmanb72127a2008-03-13 22:13:53 +000010958 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010959 return SDValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +000010960
Nate Begeman6828ed92005-10-10 21:26:48 +000010961 // Get a SetCC of the condition
Owen Anderson15fd6ac2012-11-03 00:17:26 +000010962 // NOTE: Don't create a SETCC if it's not legal on this target.
10963 if (!LegalOperations ||
10964 TLI.isOperationLegal(ISD::SETCC,
Matt Arsenault758659232013-05-18 00:21:46 +000010965 LegalTypes ? getSetCCResultType(N0.getValueType()) : MVT::i1)) {
Owen Anderson15fd6ac2012-11-03 00:17:26 +000010966 SDValue Temp, SCC;
10967 // cast from setcc result type to select result type
10968 if (LegalTypes) {
Matt Arsenault758659232013-05-18 00:21:46 +000010969 SCC = DAG.getSetCC(DL, getSetCCResultType(N0.getValueType()),
Owen Anderson15fd6ac2012-11-03 00:17:26 +000010970 N0, N1, CC);
10971 if (N2.getValueType().bitsLT(SCC.getValueType()))
Andrew Trickef9de2a2013-05-25 02:42:55 +000010972 Temp = DAG.getZeroExtendInReg(SCC, SDLoc(N2),
Owen Anderson15fd6ac2012-11-03 00:17:26 +000010973 N2.getValueType());
10974 else
Andrew Trickef9de2a2013-05-25 02:42:55 +000010975 Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2),
Owen Anderson15fd6ac2012-11-03 00:17:26 +000010976 N2.getValueType(), SCC);
10977 } else {
Andrew Trickef9de2a2013-05-25 02:42:55 +000010978 SCC = DAG.getSetCC(SDLoc(N0), MVT::i1, N0, N1, CC);
10979 Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2),
Bill Wendling31b50992009-01-30 23:59:18 +000010980 N2.getValueType(), SCC);
Owen Anderson15fd6ac2012-11-03 00:17:26 +000010981 }
10982
10983 AddToWorkList(SCC.getNode());
10984 AddToWorkList(Temp.getNode());
10985
10986 if (N2C->getAPIntValue() == 1)
10987 return Temp;
10988
10989 // shl setcc result by log2 n2c
Jack Carterd4e96152013-10-17 01:34:33 +000010990 return DAG.getNode(
10991 ISD::SHL, DL, N2.getValueType(), Temp,
10992 DAG.getConstant(N2C->getAPIntValue().logBase2(),
10993 getShiftAmountTy(Temp.getValueType())));
Nate Begemanabac6162006-02-18 02:40:58 +000010994 }
Nate Begeman6828ed92005-10-10 21:26:48 +000010995 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010996
Nate Begeman2042aa52005-10-08 00:29:44 +000010997 // Check to see if this is the equivalent of setcc
10998 // FIXME: Turn all of these into setcc if setcc if setcc is legal
10999 // otherwise, go ahead with the folds.
Dan Gohmanb72127a2008-03-13 22:13:53 +000011000 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Anderson53aa7a92009-08-10 22:56:29 +000011001 EVT XType = N0.getValueType();
Duncan Sandsdc2dac12008-11-24 14:53:14 +000011002 if (!LegalOperations ||
Matt Arsenault758659232013-05-18 00:21:46 +000011003 TLI.isOperationLegal(ISD::SETCC, getSetCCResultType(XType))) {
11004 SDValue Res = DAG.getSetCC(DL, getSetCCResultType(XType), N0, N1, CC);
Nate Begeman2042aa52005-10-08 00:29:44 +000011005 if (Res.getValueType() != VT)
Bill Wendling31b50992009-01-30 23:59:18 +000011006 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begeman2042aa52005-10-08 00:29:44 +000011007 return Res;
11008 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000011009
Bill Wendling31b50992009-01-30 23:59:18 +000011010 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelcf0da6c2009-02-17 22:15:04 +000011011 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sandsdc2dac12008-11-24 14:53:14 +000011012 (!LegalOperations ||
Duncan Sandsb1bfff52008-06-14 17:48:34 +000011013 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Andrew Trickef9de2a2013-05-25 02:42:55 +000011014 SDValue Ctlz = DAG.getNode(ISD::CTLZ, SDLoc(N0), XType, N0);
Scott Michelcf0da6c2009-02-17 22:15:04 +000011015 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands13237ac2008-06-06 12:08:01 +000011016 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Andersonb2c80da2011-02-25 21:41:48 +000011017 getShiftAmountTy(Ctlz.getValueType())));
Nate Begeman2042aa52005-10-08 00:29:44 +000011018 }
Bill Wendling31b50992009-01-30 23:59:18 +000011019 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelcf0da6c2009-02-17 22:15:04 +000011020 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Andrew Trickef9de2a2013-05-25 02:42:55 +000011021 SDValue NegN0 = DAG.getNode(ISD::SUB, SDLoc(N0),
Bill Wendling31b50992009-01-30 23:59:18 +000011022 XType, DAG.getConstant(0, XType), N0);
Andrew Trickef9de2a2013-05-25 02:42:55 +000011023 SDValue NotN0 = DAG.getNOT(SDLoc(N0), N0, XType);
Bill Wendling31b50992009-01-30 23:59:18 +000011024 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlinga6c75ff2009-02-01 11:19:36 +000011025 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands13237ac2008-06-06 12:08:01 +000011026 DAG.getConstant(XType.getSizeInBits()-1,
Owen Andersonb2c80da2011-02-25 21:41:48 +000011027 getShiftAmountTy(XType)));
Nate Begeman2042aa52005-10-08 00:29:44 +000011028 }
Bill Wendling31b50992009-01-30 23:59:18 +000011029 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begeman2042aa52005-10-08 00:29:44 +000011030 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Andrew Trickef9de2a2013-05-25 02:42:55 +000011031 SDValue Sign = DAG.getNode(ISD::SRL, SDLoc(N0), XType, N0,
Bill Wendling31b50992009-01-30 23:59:18 +000011032 DAG.getConstant(XType.getSizeInBits()-1,
Owen Andersonb2c80da2011-02-25 21:41:48 +000011033 getShiftAmountTy(N0.getValueType())));
Bill Wendling31b50992009-01-30 23:59:18 +000011034 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begeman2042aa52005-10-08 00:29:44 +000011035 }
11036 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000011037
Benjamin Kramer0ae3f082010-07-08 12:09:56 +000011038 // Check to see if this is an integer abs.
11039 // select_cc setg[te] X, 0, X, -X ->
11040 // select_cc setgt X, -1, X, -X ->
11041 // select_cc setl[te] X, 0, -X, X ->
11042 // select_cc setlt X, 1, -X, X ->
Nate Begeman2042aa52005-10-08 00:29:44 +000011043 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramer0ae3f082010-07-08 12:09:56 +000011044 if (N1C) {
11045 ConstantSDNode *SubC = NULL;
11046 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
11047 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
11048 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
11049 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
11050 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
11051 (N1C->isOne() && CC == ISD::SETLT)) &&
11052 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
11053 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
11054
Owen Anderson53aa7a92009-08-10 22:56:29 +000011055 EVT XType = N0.getValueType();
Benjamin Kramer0ae3f082010-07-08 12:09:56 +000011056 if (SubC && SubC->isNullValue() && XType.isInteger()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +000011057 SDValue Shift = DAG.getNode(ISD::SRA, SDLoc(N0), XType,
Benjamin Kramer0ae3f082010-07-08 12:09:56 +000011058 N0,
11059 DAG.getConstant(XType.getSizeInBits()-1,
Owen Andersonb2c80da2011-02-25 21:41:48 +000011060 getShiftAmountTy(N0.getValueType())));
Andrew Trickef9de2a2013-05-25 02:42:55 +000011061 SDValue Add = DAG.getNode(ISD::ADD, SDLoc(N0),
Benjamin Kramer0ae3f082010-07-08 12:09:56 +000011062 XType, N0, Shift);
11063 AddToWorkList(Shift.getNode());
11064 AddToWorkList(Add.getNode());
11065 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begeman2042aa52005-10-08 00:29:44 +000011066 }
11067 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000011068
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011069 return SDValue();
Nate Begemanc760f802005-09-19 22:34:01 +000011070}
11071
Evan Cheng92658d52007-02-08 22:13:59 +000011072/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Anderson53aa7a92009-08-10 22:56:29 +000011073SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011074 SDValue N1, ISD::CondCode Cond,
Andrew Trickef9de2a2013-05-25 02:42:55 +000011075 SDLoc DL, bool foldBooleans) {
Scott Michelcf0da6c2009-02-17 22:15:04 +000011076 TargetLowering::DAGCombinerInfo
Nadav Rotemb1dd5242012-12-27 06:47:41 +000011077 DagCombineInfo(DAG, Level, false, this);
Dale Johannesenf1163e92009-02-03 00:47:48 +000011078 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman24a7eca2005-09-16 00:54:12 +000011079}
11080
Nate Begemanc6f067a2005-10-20 02:15:44 +000011081/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
11082/// return a DAG expression to select that will generate the same value by
11083/// multiplying by a magic number. See:
11084/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011085SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth0e57b2c2006-06-12 16:07:18 +000011086 std::vector<SDNode*> Built;
Richard Osborne561fac42011-11-07 17:09:05 +000011087 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharth1dc9ec52006-05-16 17:42:15 +000011088
Andrew Lenharth0e57b2c2006-06-12 16:07:18 +000011089 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharth1dc9ec52006-05-16 17:42:15 +000011090 ii != ee; ++ii)
11091 AddToWorkList(*ii);
11092 return S;
Nate Begemanc6f067a2005-10-20 02:15:44 +000011093}
11094
11095/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
11096/// return a DAG expression to select that will generate the same value by
11097/// multiplying by a magic number. See:
11098/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011099SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth0e57b2c2006-06-12 16:07:18 +000011100 std::vector<SDNode*> Built;
Richard Osborne561fac42011-11-07 17:09:05 +000011101 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begemanc6f067a2005-10-20 02:15:44 +000011102
Andrew Lenharth0e57b2c2006-06-12 16:07:18 +000011103 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharth1dc9ec52006-05-16 17:42:15 +000011104 ii != ee; ++ii)
11105 AddToWorkList(*ii);
11106 return S;
Nate Begemanc6f067a2005-10-20 02:15:44 +000011107}
11108
Nate Begeman18150d52009-09-25 06:05:26 +000011109/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopherd9e8eac2010-12-09 04:48:06 +000011110// to alias with anything but itself. Provides base object and offset as
11111// results.
Nate Begeman18150d52009-09-25 06:05:26 +000011112static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Roman Divacky93383442012-09-05 22:15:49 +000011113 const GlobalValue *&GV, const void *&CV) {
Jim Laskey0463e082006-10-07 23:37:56 +000011114 // Assume it is a primitive operation.
Nate Begeman18150d52009-09-25 06:05:26 +000011115 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +000011116
Jim Laskey0463e082006-10-07 23:37:56 +000011117 // If it's an adding a simple constant then integrate the offset.
11118 if (Base.getOpcode() == ISD::ADD) {
11119 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
11120 Base = Base.getOperand(0);
Dan Gohmaneffb8942008-09-12 16:56:44 +000011121 Offset += C->getZExtValue();
Jim Laskey0463e082006-10-07 23:37:56 +000011122 }
11123 }
Wesley Peck527da1b2010-11-23 03:31:01 +000011124
Nate Begeman18150d52009-09-25 06:05:26 +000011125 // Return the underlying GlobalValue, and update the Offset. Return false
11126 // for GlobalAddressSDNode since the same GlobalAddress may be represented
11127 // by multiple nodes with different offsets.
11128 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
11129 GV = G->getGlobal();
11130 Offset += G->getOffset();
11131 return false;
11132 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000011133
Nate Begeman18150d52009-09-25 06:05:26 +000011134 // Return the underlying Constant value, and update the Offset. Return false
11135 // for ConstantSDNodes since the same constant pool entry may be represented
11136 // by multiple nodes with different offsets.
11137 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
Roman Divacky93383442012-09-05 22:15:49 +000011138 CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal()
11139 : (const void *)C->getConstVal();
Nate Begeman18150d52009-09-25 06:05:26 +000011140 Offset += C->getOffset();
11141 return false;
11142 }
Jim Laskey0463e082006-10-07 23:37:56 +000011143 // If it's any of the following then it can't alias with anything but itself.
Nate Begeman18150d52009-09-25 06:05:26 +000011144 return isa<FrameIndexSDNode>(Base);
Jim Laskey0463e082006-10-07 23:37:56 +000011145}
11146
11147/// isAlias - Return true if there is any possibility that the two addresses
11148/// overlap.
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011149bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1, bool IsVolatile1,
Jim Laskeya15b0eb2006-10-18 12:29:57 +000011150 const Value *SrcValue1, int SrcValueOffset1,
Nate Begeman879d8f12009-09-15 00:18:30 +000011151 unsigned SrcValueAlign1,
Dan Gohmana94cc6d2010-10-20 00:31:05 +000011152 const MDNode *TBAAInfo1,
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011153 SDValue Ptr2, int64_t Size2, bool IsVolatile2,
Nate Begeman879d8f12009-09-15 00:18:30 +000011154 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmana94cc6d2010-10-20 00:31:05 +000011155 unsigned SrcValueAlign2,
11156 const MDNode *TBAAInfo2) const {
Jim Laskey0463e082006-10-07 23:37:56 +000011157 // If they are the same then they must be aliases.
11158 if (Ptr1 == Ptr2) return true;
Scott Michelcf0da6c2009-02-17 22:15:04 +000011159
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011160 // If they are both volatile then they cannot be reordered.
11161 if (IsVolatile1 && IsVolatile2) return true;
11162
Jim Laskey0463e082006-10-07 23:37:56 +000011163 // Gather base node and offset information.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011164 SDValue Base1, Base2;
Jim Laskey0463e082006-10-07 23:37:56 +000011165 int64_t Offset1, Offset2;
Dan Gohmanbcaf6812010-04-15 01:51:59 +000011166 const GlobalValue *GV1, *GV2;
Roman Divacky93383442012-09-05 22:15:49 +000011167 const void *CV1, *CV2;
Nate Begeman18150d52009-09-25 06:05:26 +000011168 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
11169 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelcf0da6c2009-02-17 22:15:04 +000011170
Nate Begeman18150d52009-09-25 06:05:26 +000011171 // If they have a same base address then check to see if they overlap.
11172 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling31b50992009-01-30 23:59:18 +000011173 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelcf0da6c2009-02-17 22:15:04 +000011174
Owen Anderson272ff942010-09-20 20:39:59 +000011175 // It is possible for different frame indices to alias each other, mostly
11176 // when tail call optimization reuses return address slots for arguments.
11177 // To catch this case, look up the actual index of frame indices to compute
11178 // the real alias relationship.
11179 if (isFrameIndex1 && isFrameIndex2) {
11180 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11181 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
11182 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
11183 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
11184 }
11185
Wesley Peck527da1b2010-11-23 03:31:01 +000011186 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson272ff942010-09-20 20:39:59 +000011187 // we know they cannot alias.
Nate Begeman18150d52009-09-25 06:05:26 +000011188 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
11189 return false;
Jim Laskeya15b0eb2006-10-18 12:29:57 +000011190
Nate Begeman879d8f12009-09-15 00:18:30 +000011191 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
11192 // compared to the size and offset of the access, we may be able to prove they
11193 // do not alias. This check is conservative for now to catch cases created by
11194 // splitting vector types.
11195 if ((SrcValueAlign1 == SrcValueAlign2) &&
11196 (SrcValueOffset1 != SrcValueOffset2) &&
11197 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
11198 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
11199 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peck527da1b2010-11-23 03:31:01 +000011200
Nate Begeman879d8f12009-09-15 00:18:30 +000011201 // There is no overlap between these relatively aligned accesses of similar
11202 // size, return no alias.
11203 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
11204 return false;
11205 }
Wesley Peck527da1b2010-11-23 03:31:01 +000011206
Hal Finkel5ef4dcc2013-08-29 03:29:55 +000011207 bool UseAA = CombinerGlobalAA.getNumOccurrences() > 0 ? CombinerGlobalAA :
11208 TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
Hal Finkel9b2617a2014-01-25 17:32:39 +000011209#ifndef NDEBUG
11210 if (CombinerAAOnlyFunc.getNumOccurrences() &&
11211 CombinerAAOnlyFunc != DAG.getMachineFunction().getName())
11212 UseAA = false;
11213#endif
Hal Finkel31658832013-09-15 02:19:49 +000011214 if (UseAA && SrcValue1 && SrcValue2) {
Jim Laskey55e4dca2006-10-18 19:08:31 +000011215 // Use alias analysis information.
Dan Gohman9625d812007-08-27 16:32:11 +000011216 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
11217 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
11218 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelcf0da6c2009-02-17 22:15:04 +000011219 AliasAnalysis::AliasResult AAResult =
Hal Finkeldbebb522014-01-25 19:24:54 +000011220 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1,
11221 UseTBAA ? TBAAInfo1 : 0),
11222 AliasAnalysis::Location(SrcValue2, Overlap2,
11223 UseTBAA ? TBAAInfo2 : 0));
Jim Laskey55e4dca2006-10-18 19:08:31 +000011224 if (AAResult == AliasAnalysis::NoAlias)
11225 return false;
11226 }
Jim Laskeya15b0eb2006-10-18 12:29:57 +000011227
11228 // Otherwise we have to assume they alias.
11229 return true;
Jim Laskey0463e082006-10-07 23:37:56 +000011230}
11231
Nadav Rotem307d7672012-11-29 00:00:08 +000011232bool DAGCombiner::isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1) {
11233 SDValue Ptr0, Ptr1;
11234 int64_t Size0, Size1;
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011235 bool IsVolatile0, IsVolatile1;
Nadav Rotem307d7672012-11-29 00:00:08 +000011236 const Value *SrcValue0, *SrcValue1;
11237 int SrcValueOffset0, SrcValueOffset1;
11238 unsigned SrcValueAlign0, SrcValueAlign1;
11239 const MDNode *SrcTBAAInfo0, *SrcTBAAInfo1;
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011240 FindAliasInfo(Op0, Ptr0, Size0, IsVolatile0, SrcValue0, SrcValueOffset0,
Nadav Rotem307d7672012-11-29 00:00:08 +000011241 SrcValueAlign0, SrcTBAAInfo0);
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011242 FindAliasInfo(Op1, Ptr1, Size1, IsVolatile1, SrcValue1, SrcValueOffset1,
Nadav Rotem307d7672012-11-29 00:00:08 +000011243 SrcValueAlign1, SrcTBAAInfo1);
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011244 return isAlias(Ptr0, Size0, IsVolatile0, SrcValue0, SrcValueOffset0,
Nadav Rotemac450eb2012-12-06 17:34:13 +000011245 SrcValueAlign0, SrcTBAAInfo0,
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011246 Ptr1, Size1, IsVolatile1, SrcValue1, SrcValueOffset1,
Nadav Rotemac450eb2012-12-06 17:34:13 +000011247 SrcValueAlign1, SrcTBAAInfo1);
Nadav Rotem307d7672012-11-29 00:00:08 +000011248}
11249
Jim Laskey0463e082006-10-07 23:37:56 +000011250/// FindAliasInfo - Extracts the relevant alias information from the memory
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011251/// node. Returns true if the operand was a nonvolatile load.
Jim Laskey08edf332006-10-11 13:47:09 +000011252bool DAGCombiner::FindAliasInfo(SDNode *N,
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011253 SDValue &Ptr, int64_t &Size, bool &IsVolatile,
Benjamin Kramer5a377e22012-01-15 11:50:43 +000011254 const Value *&SrcValue,
11255 int &SrcValueOffset,
11256 unsigned &SrcValueAlign,
11257 const MDNode *&TBAAInfo) const {
11258 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
11259
11260 Ptr = LS->getBasePtr();
11261 Size = LS->getMemoryVT().getSizeInBits() >> 3;
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011262 IsVolatile = LS->isVolatile();
Benjamin Kramer5a377e22012-01-15 11:50:43 +000011263 SrcValue = LS->getSrcValue();
11264 SrcValueOffset = LS->getSrcValueOffset();
11265 SrcValueAlign = LS->getOriginalAlignment();
11266 TBAAInfo = LS->getTBAAInfo();
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011267 return isa<LoadSDNode>(LS) && !IsVolatile;
Jim Laskey0463e082006-10-07 23:37:56 +000011268}
11269
Jim Laskey708d0db2006-10-04 16:53:27 +000011270/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
11271/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011272void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
Craig Topperb94011f2013-07-14 04:42:23 +000011273 SmallVectorImpl<SDValue> &Aliases) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011274 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begeman879d8f12009-09-15 00:18:30 +000011275 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelcf0da6c2009-02-17 22:15:04 +000011276
Jim Laskeyd07be232006-09-25 16:29:54 +000011277 // Get alias information for node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011278 SDValue Ptr;
Nate Begeman879d8f12009-09-15 00:18:30 +000011279 int64_t Size;
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011280 bool IsVolatile;
Nate Begeman879d8f12009-09-15 00:18:30 +000011281 const Value *SrcValue;
11282 int SrcValueOffset;
11283 unsigned SrcValueAlign;
Dan Gohmana94cc6d2010-10-20 00:31:05 +000011284 const MDNode *SrcTBAAInfo;
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011285 bool IsLoad = FindAliasInfo(N, Ptr, Size, IsVolatile, SrcValue,
11286 SrcValueOffset, SrcValueAlign, SrcTBAAInfo);
Jim Laskeyd07be232006-09-25 16:29:54 +000011287
Jim Laskey708d0db2006-10-04 16:53:27 +000011288 // Starting off.
Jim Laskey6549d222006-10-05 15:07:25 +000011289 Chains.push_back(OriginalChain);
Nate Begemana3ed9ed2009-10-12 05:53:58 +000011290 unsigned Depth = 0;
Wesley Peck527da1b2010-11-23 03:31:01 +000011291
Jim Laskey6549d222006-10-05 15:07:25 +000011292 // Look at each chain and determine if it is an alias. If so, add it to the
11293 // aliases list. If not, then continue up the chain looking for the next
Scott Michelcf0da6c2009-02-17 22:15:04 +000011294 // candidate.
Jim Laskey6549d222006-10-05 15:07:25 +000011295 while (!Chains.empty()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011296 SDValue Chain = Chains.back();
Jim Laskey6549d222006-10-05 15:07:25 +000011297 Chains.pop_back();
Wesley Peck527da1b2010-11-23 03:31:01 +000011298
11299 // For TokenFactor nodes, look at each operand and only continue up the
11300 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begemana3ed9ed2009-10-12 05:53:58 +000011301 // find more and revert to original chain since the xform is unlikely to be
11302 // profitable.
Wesley Peck527da1b2010-11-23 03:31:01 +000011303 //
11304 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begemana3ed9ed2009-10-12 05:53:58 +000011305 // chain we found before we hit a tokenfactor rather than the original
11306 // chain.
11307 if (Depth > 6 || Aliases.size() == 2) {
11308 Aliases.clear();
11309 Aliases.push_back(OriginalChain);
Hal Finkel51a98382014-01-24 20:12:02 +000011310 return;
Nate Begemana3ed9ed2009-10-12 05:53:58 +000011311 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000011312
Nate Begeman879d8f12009-09-15 00:18:30 +000011313 // Don't bother if we've been before.
11314 if (!Visited.insert(Chain.getNode()))
11315 continue;
Scott Michelcf0da6c2009-02-17 22:15:04 +000011316
Jim Laskey6549d222006-10-05 15:07:25 +000011317 switch (Chain.getOpcode()) {
11318 case ISD::EntryToken:
11319 // Entry token is ideal chain operand, but handled in FindBetterChain.
11320 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +000011321
Jim Laskey6549d222006-10-05 15:07:25 +000011322 case ISD::LOAD:
11323 case ISD::STORE: {
11324 // Get alias information for Chain.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011325 SDValue OpPtr;
Nate Begeman879d8f12009-09-15 00:18:30 +000011326 int64_t OpSize;
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011327 bool OpIsVolatile;
Nate Begeman879d8f12009-09-15 00:18:30 +000011328 const Value *OpSrcValue;
11329 int OpSrcValueOffset;
11330 unsigned OpSrcValueAlign;
Dan Gohmana94cc6d2010-10-20 00:31:05 +000011331 const MDNode *OpSrcTBAAInfo;
Gabor Greiff304a7a2008-08-28 21:40:38 +000011332 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011333 OpIsVolatile, OpSrcValue, OpSrcValueOffset,
Dan Gohmana94cc6d2010-10-20 00:31:05 +000011334 OpSrcValueAlign,
11335 OpSrcTBAAInfo);
Scott Michelcf0da6c2009-02-17 22:15:04 +000011336
Jim Laskey6549d222006-10-05 15:07:25 +000011337 // If chain is alias then stop here.
11338 if (!(IsLoad && IsOpLoad) &&
Richard Sandiford981fdeb2013-10-28 12:00:00 +000011339 isAlias(Ptr, Size, IsVolatile, SrcValue, SrcValueOffset,
11340 SrcValueAlign, SrcTBAAInfo,
11341 OpPtr, OpSize, OpIsVolatile, OpSrcValue, OpSrcValueOffset,
Dan Gohmana94cc6d2010-10-20 00:31:05 +000011342 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskey6549d222006-10-05 15:07:25 +000011343 Aliases.push_back(Chain);
11344 } else {
11345 // Look further up the chain.
Scott Michelcf0da6c2009-02-17 22:15:04 +000011346 Chains.push_back(Chain.getOperand(0));
Nate Begemana3ed9ed2009-10-12 05:53:58 +000011347 ++Depth;
Jim Laskeyd07be232006-09-25 16:29:54 +000011348 }
Jim Laskey6549d222006-10-05 15:07:25 +000011349 break;
11350 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000011351
Jim Laskey6549d222006-10-05 15:07:25 +000011352 case ISD::TokenFactor:
Nate Begeman879d8f12009-09-15 00:18:30 +000011353 // We have to check each of the operands of the token factor for "small"
11354 // token factors, so we queue them up. Adding the operands to the queue
11355 // (stack) in reverse order maintains the original order and increases the
11356 // likelihood that getNode will find a matching token factor (CSE.)
11357 if (Chain.getNumOperands() > 16) {
11358 Aliases.push_back(Chain);
11359 break;
11360 }
Jim Laskey6549d222006-10-05 15:07:25 +000011361 for (unsigned n = Chain.getNumOperands(); n;)
11362 Chains.push_back(Chain.getOperand(--n));
Nate Begemana3ed9ed2009-10-12 05:53:58 +000011363 ++Depth;
Jim Laskey6549d222006-10-05 15:07:25 +000011364 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +000011365
Jim Laskey6549d222006-10-05 15:07:25 +000011366 default:
11367 // For all other instructions we will just have to take what we can get.
11368 Aliases.push_back(Chain);
11369 break;
Jim Laskeyd07be232006-09-25 16:29:54 +000011370 }
11371 }
Hal Finkel51a98382014-01-24 20:12:02 +000011372
11373 // We need to be careful here to also search for aliases through the
11374 // value operand of a store, etc. Consider the following situation:
11375 // Token1 = ...
11376 // L1 = load Token1, %52
11377 // S1 = store Token1, L1, %51
11378 // L2 = load Token1, %52+8
11379 // S2 = store Token1, L2, %51+8
11380 // Token2 = Token(S1, S2)
11381 // L3 = load Token2, %53
11382 // S3 = store Token2, L3, %52
11383 // L4 = load Token2, %53+8
11384 // S4 = store Token2, L4, %52+8
11385 // If we search for aliases of S3 (which loads address %52), and we look
11386 // only through the chain, then we'll miss the trivial dependence on L1
11387 // (which also loads from %52). We then might change all loads and
11388 // stores to use Token1 as their chain operand, which could result in
11389 // copying %53 into %52 before copying %52 into %51 (which should
11390 // happen first).
11391 //
11392 // The problem is, however, that searching for such data dependencies
11393 // can become expensive, and the cost is not directly related to the
11394 // chain depth. Instead, we'll rule out such configurations here by
11395 // insisting that we've visited all chain users (except for users
11396 // of the original chain, which is not necessary). When doing this,
11397 // we need to look through nodes we don't care about (otherwise, things
11398 // like register copies will interfere with trivial cases).
11399
11400 SmallVector<const SDNode *, 16> Worklist;
11401 for (SmallPtrSet<SDNode *, 16>::iterator I = Visited.begin(),
11402 IE = Visited.end(); I != IE; ++I)
11403 if (*I != OriginalChain.getNode())
11404 Worklist.push_back(*I);
11405
11406 while (!Worklist.empty()) {
11407 const SDNode *M = Worklist.pop_back_val();
11408
11409 // We have already visited M, and want to make sure we've visited any uses
11410 // of M that we care about. For uses that we've not visisted, and don't
11411 // care about, queue them to the worklist.
11412
11413 for (SDNode::use_iterator UI = M->use_begin(),
11414 UIE = M->use_end(); UI != UIE; ++UI)
11415 if (UI.getUse().getValueType() == MVT::Other && Visited.insert(*UI)) {
11416 if (isa<MemIntrinsicSDNode>(*UI) || isa<MemSDNode>(*UI)) {
11417 // We've not visited this use, and we care about it (it could have an
11418 // ordering dependency with the original node).
11419 Aliases.clear();
11420 Aliases.push_back(OriginalChain);
11421 return;
11422 }
11423
11424 // We've not visited this use, but we don't care about it. Mark it as
11425 // visited and enqueue it to the worklist.
11426 Worklist.push_back(*UI);
11427 }
11428 }
Jim Laskey708d0db2006-10-04 16:53:27 +000011429}
11430
11431/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
11432/// for a better chain (aliasing node.)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011433SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
11434 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelcf0da6c2009-02-17 22:15:04 +000011435
Jim Laskey708d0db2006-10-04 16:53:27 +000011436 // Accumulate all the aliases to this node.
11437 GatherAllAliases(N, OldChain, Aliases);
Scott Michelcf0da6c2009-02-17 22:15:04 +000011438
Dan Gohman4298df62011-05-17 22:20:36 +000011439 // If no operands then chain to entry token.
11440 if (Aliases.size() == 0)
Jim Laskey708d0db2006-10-04 16:53:27 +000011441 return DAG.getEntryNode();
Dan Gohman4298df62011-05-17 22:20:36 +000011442
11443 // If a single operand then chain to it. We don't need to revisit it.
11444 if (Aliases.size() == 1)
Jim Laskey708d0db2006-10-04 16:53:27 +000011445 return Aliases[0];
Wesley Peck527da1b2010-11-23 03:31:01 +000011446
Jim Laskey708d0db2006-10-04 16:53:27 +000011447 // Construct a custom tailored token factor.
Andrew Trickef9de2a2013-05-25 02:42:55 +000011448 return DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other,
Nate Begeman879d8f12009-09-15 00:18:30 +000011449 &Aliases[0], Aliases.size());
Jim Laskeyd07be232006-09-25 16:29:54 +000011450}
11451
Nate Begeman21158fc2005-09-01 00:19:25 +000011452// SelectionDAG::Combine - This is the entry point for the file.
11453//
Bill Wendling084669a2009-04-29 00:15:41 +000011454void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling026e5d72009-04-29 23:29:43 +000011455 CodeGenOpt::Level OptLevel) {
Nate Begeman21158fc2005-09-01 00:19:25 +000011456 /// run - This is the main entry point to this class.
11457 ///
Bill Wendling084669a2009-04-29 00:15:41 +000011458 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman21158fc2005-09-01 00:19:25 +000011459}