blob: 9e02c7be7103d0ca565d153b2d0fcdf7aeeedd22 [file] [log] [blame]
Nate Begeman4ebd8052005-09-01 23:24:04 +00001//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
Nate Begeman1d4d4142005-09-01 00:19:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begeman1d4d4142005-09-01 00:19:25 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass combines dag nodes to form fewer, simpler DAG nodes. It can be run
11// both before and after the DAG is legalized.
Scott Michelfdc40a02009-02-17 22:15:04 +000012//
Dan Gohman41287002009-04-25 17:09:45 +000013// This pass is not a substitute for the LLVM IR instcombine pass. This pass is
14// primarily intended to handle simplification opportunities that are implicit
15// in the LLVM IR and exposed by the various codegen lowering phases.
16//
Nate Begeman1d4d4142005-09-01 00:19:25 +000017//===----------------------------------------------------------------------===//
18
19#define DEBUG_TYPE "dagcombine"
Nate Begeman1d4d4142005-09-01 00:19:25 +000020#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000021#include "llvm/ADT/SmallPtrSet.h"
22#include "llvm/ADT/Statistic.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000023#include "llvm/Analysis/AliasAnalysis.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineFunction.h"
26#include "llvm/DataLayout.h"
27#include "llvm/DerivedTypes.h"
28#include "llvm/LLVMContext.h"
Jim Laskeyd1aed7a2006-09-21 16:28:59 +000029#include "llvm/Support/CommandLine.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000030#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000031#include "llvm/Support/ErrorHandling.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000032#include "llvm/Support/MathExtras.h"
Chris Lattnerbbbfa992009-08-23 06:35:02 +000033#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000034#include "llvm/Target/TargetLowering.h"
35#include "llvm/Target/TargetMachine.h"
36#include "llvm/Target/TargetOptions.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000037#include <algorithm>
Nate Begeman1d4d4142005-09-01 00:19:25 +000038using namespace llvm;
39
Chris Lattnercd3245a2006-12-19 22:41:21 +000040STATISTIC(NodesCombined , "Number of dag nodes combined");
41STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
42STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
Evan Cheng8b944d32009-05-28 00:35:15 +000043STATISTIC(OpsNarrowed , "Number of load/op/store narrowed");
Evan Cheng31959b12011-02-02 01:06:55 +000044STATISTIC(LdStFP2Int , "Number of fp load/store pairs transformed to int");
Chris Lattnercd3245a2006-12-19 22:41:21 +000045
Nate Begeman1d4d4142005-09-01 00:19:25 +000046namespace {
Jim Laskey71382342006-10-07 23:37:56 +000047 static cl::opt<bool>
Owen Anderson0dcc8142010-09-19 21:01:26 +000048 CombinerAA("combiner-alias-analysis", cl::Hidden,
Jim Laskey26f7fa72006-10-17 19:33:52 +000049 cl::desc("Turn on alias analysis during testing"));
Jim Laskey3ad175b2006-10-12 15:22:24 +000050
Jim Laskey07a27092006-10-18 19:08:31 +000051 static cl::opt<bool>
52 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
53 cl::desc("Include global information in alias analysis"));
54
Jim Laskeybc588b82006-10-05 15:07:25 +000055//------------------------------ DAGCombiner ---------------------------------//
56
Nick Lewycky6726b6d2009-10-25 06:33:48 +000057 class DAGCombiner {
Nate Begeman1d4d4142005-09-01 00:19:25 +000058 SelectionDAG &DAG;
Dan Gohman79ce2762009-01-15 19:20:50 +000059 const TargetLowering &TLI;
Duncan Sands25cf2272008-11-24 14:53:14 +000060 CombineLevel Level;
Bill Wendling98a366d2009-04-29 23:29:43 +000061 CodeGenOpt::Level OptLevel;
Duncan Sands25cf2272008-11-24 14:53:14 +000062 bool LegalOperations;
63 bool LegalTypes;
Nate Begeman1d4d4142005-09-01 00:19:25 +000064
65 // Worklist of all of the nodes that need to be simplified.
James Molloy6660c052012-02-16 09:17:04 +000066 //
67 // This has the semantics that when adding to the worklist,
68 // the item added must be next to be processed. It should
69 // also only appear once. The naive approach to this takes
70 // linear time.
71 //
72 // To reduce the insert/remove time to logarithmic, we use
73 // a set and a vector to maintain our worklist.
74 //
75 // The set contains the items on the worklist, but does not
76 // maintain the order they should be visited.
77 //
78 // The vector maintains the order nodes should be visited, but may
79 // contain duplicate or removed nodes. When choosing a node to
80 // visit, we pop off the order stack until we find an item that is
81 // also in the contents set. All operations are O(log N).
82 SmallPtrSet<SDNode*, 64> WorkListContents;
Benjamin Kramerd5f76902012-03-10 00:23:58 +000083 SmallVector<SDNode*, 64> WorkListOrder;
Nate Begeman1d4d4142005-09-01 00:19:25 +000084
Jim Laskeyc7c3f112006-10-16 20:52:31 +000085 // AA - Used for DAG load/store alias analysis.
86 AliasAnalysis &AA;
87
Nate Begeman1d4d4142005-09-01 00:19:25 +000088 /// AddUsersToWorkList - When an instruction is simplified, add all users of
89 /// the instruction to the work lists because they might get more simplified
90 /// now.
91 ///
92 void AddUsersToWorkList(SDNode *N) {
93 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000094 UI != UE; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +000095 AddToWorkList(*UI);
Nate Begeman1d4d4142005-09-01 00:19:25 +000096 }
97
Dan Gohman389079b2007-10-08 17:57:15 +000098 /// visit - call the node-specific routine that knows how to fold each
99 /// particular type of node.
Dan Gohman475871a2008-07-27 21:46:04 +0000100 SDValue visit(SDNode *N);
Dan Gohman389079b2007-10-08 17:57:15 +0000101
Chris Lattner24664722006-03-01 04:53:38 +0000102 public:
James Molloy6afa3f72012-02-16 09:48:07 +0000103 /// AddToWorkList - Add to the work list making sure its instance is at the
James Molloy6660c052012-02-16 09:17:04 +0000104 /// back (next to be processed.)
Chris Lattner5750df92006-03-01 04:03:14 +0000105 void AddToWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000106 WorkListContents.insert(N);
107 WorkListOrder.push_back(N);
Chris Lattner5750df92006-03-01 04:03:14 +0000108 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000109
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000110 /// removeFromWorkList - remove all instances of N from the worklist.
111 ///
112 void removeFromWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000113 WorkListContents.erase(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000114 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000115
Dan Gohman475871a2008-07-27 21:46:04 +0000116 SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000117 bool AddTo = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000118
Dan Gohman475871a2008-07-27 21:46:04 +0000119 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) {
Jim Laskey274062c2006-10-13 23:32:28 +0000120 return CombineTo(N, &Res, 1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000121 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000122
Dan Gohman475871a2008-07-27 21:46:04 +0000123 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000124 bool AddTo = true) {
Dan Gohman475871a2008-07-27 21:46:04 +0000125 SDValue To[] = { Res0, Res1 };
Jim Laskey274062c2006-10-13 23:32:28 +0000126 return CombineTo(N, To, 2, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000127 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000128
129 void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO);
Scott Michelfdc40a02009-02-17 22:15:04 +0000130
131 private:
132
Chris Lattner012f2412006-02-17 21:58:01 +0000133 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000134 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000135 /// propagation. If so, return true.
Dan Gohman475871a2008-07-27 21:46:04 +0000136 bool SimplifyDemandedBits(SDValue Op) {
Dan Gohman87862e72009-12-11 21:31:27 +0000137 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
138 APInt Demanded = APInt::getAllOnesValue(BitWidth);
Dan Gohman7b8d4a92008-02-27 00:25:32 +0000139 return SimplifyDemandedBits(Op, Demanded);
140 }
141
Dan Gohman475871a2008-07-27 21:46:04 +0000142 bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded);
Chris Lattner87514ca2005-10-10 22:31:19 +0000143
Chris Lattner448f2192006-11-11 00:39:41 +0000144 bool CombineToPreIndexedLoadStore(SDNode *N);
145 bool CombineToPostIndexedLoadStore(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000146
Evan Cheng95c57ea2010-04-24 04:43:44 +0000147 void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad);
148 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
149 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
150 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000151 SDValue PromoteIntBinOp(SDValue Op);
Evan Cheng07c4e102010-04-22 20:19:46 +0000152 SDValue PromoteIntShiftOp(SDValue Op);
Evan Cheng4c26e932010-04-19 19:29:22 +0000153 SDValue PromoteExtend(SDValue Op);
154 bool PromoteLoad(SDValue Op);
Scott Michelfdc40a02009-02-17 22:15:04 +0000155
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +0000156 void ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
157 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
158 ISD::NodeType ExtType);
159
Dan Gohman389079b2007-10-08 17:57:15 +0000160 /// combine - call the node-specific routine that knows how to fold each
161 /// particular type of node. If that doesn't do anything, try the
162 /// target-specific DAG combines.
Dan Gohman475871a2008-07-27 21:46:04 +0000163 SDValue combine(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000164
165 // Visitation implementation - Implement dag node combining for different
166 // node types. The semantics are as follows:
167 // Return Value:
Evan Cheng17a568b2008-08-29 22:21:44 +0000168 // SDValue.getNode() == 0 - No change was made
169 // SDValue.getNode() == N - N was replaced, is dead and has been handled.
170 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000171 //
Dan Gohman475871a2008-07-27 21:46:04 +0000172 SDValue visitTokenFactor(SDNode *N);
173 SDValue visitMERGE_VALUES(SDNode *N);
174 SDValue visitADD(SDNode *N);
175 SDValue visitSUB(SDNode *N);
176 SDValue visitADDC(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000177 SDValue visitSUBC(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000178 SDValue visitADDE(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000179 SDValue visitSUBE(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000180 SDValue visitMUL(SDNode *N);
181 SDValue visitSDIV(SDNode *N);
182 SDValue visitUDIV(SDNode *N);
183 SDValue visitSREM(SDNode *N);
184 SDValue visitUREM(SDNode *N);
185 SDValue visitMULHU(SDNode *N);
186 SDValue visitMULHS(SDNode *N);
187 SDValue visitSMUL_LOHI(SDNode *N);
188 SDValue visitUMUL_LOHI(SDNode *N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +0000189 SDValue visitSMULO(SDNode *N);
190 SDValue visitUMULO(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000191 SDValue visitSDIVREM(SDNode *N);
192 SDValue visitUDIVREM(SDNode *N);
193 SDValue visitAND(SDNode *N);
194 SDValue visitOR(SDNode *N);
195 SDValue visitXOR(SDNode *N);
196 SDValue SimplifyVBinOp(SDNode *N);
Craig Topperdd201ff2012-09-11 01:45:21 +0000197 SDValue SimplifyVUnaryOp(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000198 SDValue visitSHL(SDNode *N);
199 SDValue visitSRA(SDNode *N);
200 SDValue visitSRL(SDNode *N);
201 SDValue visitCTLZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000202 SDValue visitCTLZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000203 SDValue visitCTTZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000204 SDValue visitCTTZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000205 SDValue visitCTPOP(SDNode *N);
206 SDValue visitSELECT(SDNode *N);
207 SDValue visitSELECT_CC(SDNode *N);
208 SDValue visitSETCC(SDNode *N);
209 SDValue visitSIGN_EXTEND(SDNode *N);
210 SDValue visitZERO_EXTEND(SDNode *N);
211 SDValue visitANY_EXTEND(SDNode *N);
212 SDValue visitSIGN_EXTEND_INREG(SDNode *N);
213 SDValue visitTRUNCATE(SDNode *N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000214 SDValue visitBITCAST(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000215 SDValue visitBUILD_PAIR(SDNode *N);
216 SDValue visitFADD(SDNode *N);
217 SDValue visitFSUB(SDNode *N);
218 SDValue visitFMUL(SDNode *N);
Owen Anderson062c0a52012-05-02 22:17:40 +0000219 SDValue visitFMA(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000220 SDValue visitFDIV(SDNode *N);
221 SDValue visitFREM(SDNode *N);
222 SDValue visitFCOPYSIGN(SDNode *N);
223 SDValue visitSINT_TO_FP(SDNode *N);
224 SDValue visitUINT_TO_FP(SDNode *N);
225 SDValue visitFP_TO_SINT(SDNode *N);
226 SDValue visitFP_TO_UINT(SDNode *N);
227 SDValue visitFP_ROUND(SDNode *N);
228 SDValue visitFP_ROUND_INREG(SDNode *N);
229 SDValue visitFP_EXTEND(SDNode *N);
230 SDValue visitFNEG(SDNode *N);
231 SDValue visitFABS(SDNode *N);
Owen Anderson7c626d32012-08-13 23:32:49 +0000232 SDValue visitFCEIL(SDNode *N);
233 SDValue visitFTRUNC(SDNode *N);
234 SDValue visitFFLOOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000235 SDValue visitBRCOND(SDNode *N);
236 SDValue visitBR_CC(SDNode *N);
237 SDValue visitLOAD(SDNode *N);
238 SDValue visitSTORE(SDNode *N);
239 SDValue visitINSERT_VECTOR_ELT(SDNode *N);
240 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
241 SDValue visitBUILD_VECTOR(SDNode *N);
242 SDValue visitCONCAT_VECTORS(SDNode *N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +0000243 SDValue visitEXTRACT_SUBVECTOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000244 SDValue visitVECTOR_SHUFFLE(SDNode *N);
Jim Grosbach9a526492010-06-23 16:07:42 +0000245 SDValue visitMEMBARRIER(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000246
Dan Gohman475871a2008-07-27 21:46:04 +0000247 SDValue XformToShuffleWithZero(SDNode *N);
Bill Wendling35247c32009-01-30 00:45:56 +0000248 SDValue ReassociateOps(unsigned Opc, DebugLoc DL, SDValue LHS, SDValue RHS);
Scott Michelfdc40a02009-02-17 22:15:04 +0000249
Dan Gohman475871a2008-07-27 21:46:04 +0000250 SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
Chris Lattnere70da202007-12-06 07:33:36 +0000251
Dan Gohman475871a2008-07-27 21:46:04 +0000252 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
253 SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Bill Wendling836ca7d2009-01-30 23:59:18 +0000254 SDValue SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2);
Scott Michelfdc40a02009-02-17 22:15:04 +0000255 SDValue SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2,
256 SDValue N3, ISD::CondCode CC,
Bill Wendling836ca7d2009-01-30 23:59:18 +0000257 bool NotExtCompare = false);
Owen Andersone50ed302009-08-10 22:56:29 +0000258 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +0000259 DebugLoc DL, bool foldBooleans = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000260 SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Chris Lattner5eee4272008-01-26 01:09:19 +0000261 unsigned HiOp);
Owen Andersone50ed302009-08-10 22:56:29 +0000262 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000263 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
Dan Gohman475871a2008-07-27 21:46:04 +0000264 SDValue BuildSDIV(SDNode *N);
265 SDValue BuildUDIV(SDNode *N);
Evan Cheng9568e5c2011-06-21 06:01:08 +0000266 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
267 bool DemandHighBits = true);
268 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
Bill Wendling317bd702009-01-30 21:14:50 +0000269 SDNode *MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL);
Dan Gohman475871a2008-07-27 21:46:04 +0000270 SDValue ReduceLoadWidth(SDNode *N);
Evan Cheng8b944d32009-05-28 00:35:15 +0000271 SDValue ReduceLoadOpStoreWidth(SDNode *N);
Evan Cheng31959b12011-02-02 01:06:55 +0000272 SDValue TransformFPLoadStorePair(SDNode *N);
Michael Liaofac14ab2012-10-23 23:06:52 +0000273 SDValue reduceBuildVecExtToExtBuildVec(SDNode *N);
Michael Liao1a5cc712012-10-24 04:14:18 +0000274 SDValue reduceBuildVecConvertToConvertBuildVec(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000275
Dan Gohman475871a2008-07-27 21:46:04 +0000276 SDValue GetDemandedBits(SDValue V, const APInt &Mask);
Scott Michelfdc40a02009-02-17 22:15:04 +0000277
Jim Laskey6ff23e52006-10-04 16:53:27 +0000278 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
279 /// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000280 void GatherAllAliases(SDNode *N, SDValue OriginalChain,
281 SmallVector<SDValue, 8> &Aliases);
Jim Laskey6ff23e52006-10-04 16:53:27 +0000282
Jim Laskey096c22e2006-10-18 12:29:57 +0000283 /// isAlias - Return true if there is any possibility that the two addresses
284 /// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +0000285 bool isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +0000286 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000287 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000288 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +0000289 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000290 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000291 unsigned SrcValueAlign2,
292 const MDNode *TBAAInfo2) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000293
Nadav Rotem90e11dc2012-11-29 00:00:08 +0000294 /// isAlias - Return true if there is any possibility that the two addresses
295 /// overlap.
296 bool isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1);
297
Jim Laskey7ca56af2006-10-11 13:47:09 +0000298 /// FindAliasInfo - Extracts the relevant alias information from the memory
299 /// node. Returns true if the operand was a load.
300 bool FindAliasInfo(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000301 SDValue &Ptr, int64_t &Size,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000302 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000303 unsigned &SrcValueAlignment,
304 const MDNode *&TBAAInfo) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000305
Jim Laskey279f0532006-09-25 16:29:54 +0000306 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000307 /// looking for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +0000308 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands92abc622009-01-31 15:50:11 +0000309
Nadav Rotemc653de62012-10-03 16:11:15 +0000310 /// Merge consecutive store operations into a wide store.
311 /// This optimization uses wide integers or vectors when possible.
312 /// \return True if some memory operations were changed.
313 bool MergeConsecutiveStores(StoreSDNode *N);
314
Chris Lattner2392ae72010-04-15 04:48:01 +0000315 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000316 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000317 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000318 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000319
Nate Begeman1d4d4142005-09-01 00:19:25 +0000320 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000321 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000322
Chris Lattner2392ae72010-04-15 04:48:01 +0000323 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000324
Chris Lattner2392ae72010-04-15 04:48:01 +0000325 /// getShiftAmountTy - Returns a type large enough to hold any valid
326 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000327 EVT getShiftAmountTy(EVT LHSTy) {
328 return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000329 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000330
Chris Lattner2392ae72010-04-15 04:48:01 +0000331 /// isTypeLegal - This method returns true if we are running before type
332 /// legalization or if the specified VT is legal.
333 bool isTypeLegal(const EVT &VT) {
334 if (!LegalTypes) return true;
335 return TLI.isTypeLegal(VT);
336 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000337 };
338}
339
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000340
341namespace {
342/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
343/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000344class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000345 DAGCombiner &DC;
346public:
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000347 explicit WorkListRemover(DAGCombiner &dc)
348 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000349
Duncan Sandsedfcf592008-06-11 11:42:12 +0000350 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000351 DC.removeFromWorkList(N);
352 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000353};
354}
355
Chris Lattner24664722006-03-01 04:53:38 +0000356//===----------------------------------------------------------------------===//
357// TargetLowering::DAGCombinerInfo implementation
358//===----------------------------------------------------------------------===//
359
360void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
361 ((DAGCombiner*)DC)->AddToWorkList(N);
362}
363
Cameron Zwariched3caf92011-04-02 02:40:26 +0000364void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
365 ((DAGCombiner*)DC)->removeFromWorkList(N);
366}
367
Dan Gohman475871a2008-07-27 21:46:04 +0000368SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000369CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
370 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000371}
372
Dan Gohman475871a2008-07-27 21:46:04 +0000373SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000374CombineTo(SDNode *N, SDValue Res, bool AddTo) {
375 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000376}
377
378
Dan Gohman475871a2008-07-27 21:46:04 +0000379SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000380CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
381 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000382}
383
Dan Gohmane5af2d32009-01-29 01:59:02 +0000384void TargetLowering::DAGCombinerInfo::
385CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
386 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
387}
Chris Lattner24664722006-03-01 04:53:38 +0000388
Chris Lattner24664722006-03-01 04:53:38 +0000389//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000390// Helper Functions
391//===----------------------------------------------------------------------===//
392
393/// isNegatibleForFree - Return 1 if we can compute the negated form of the
394/// specified expression for the same cost as the expression itself, or 2 if we
395/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000396static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000397 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000398 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000399 unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000400 // fneg is removable even if it has multiple uses.
401 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000402
Chris Lattner29446522007-05-14 22:04:50 +0000403 // Don't allow anything with multiple uses.
404 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000405
Chris Lattner3adf9512007-05-25 02:19:06 +0000406 // Don't recurse exponentially.
407 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000408
Chris Lattner29446522007-05-14 22:04:50 +0000409 switch (Op.getOpcode()) {
410 default: return false;
411 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000412 // Don't invert constant FP values after legalize. The negated constant
413 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000414 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000415 case ISD::FADD:
416 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000417 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000418
Owen Andersonafd3d562012-03-06 00:29:31 +0000419 // After operation legalization, it might not be legal to create new FSUBs.
420 if (LegalOperations &&
421 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
422 return 0;
423
Craig Topper956342b2012-09-09 22:58:45 +0000424 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000425 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
426 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000427 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000428 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000429 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000430 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000431 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000432 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000433 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000434
Bill Wendlingd34470c2009-01-30 23:10:18 +0000435 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000436 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000437
Chris Lattner29446522007-05-14 22:04:50 +0000438 case ISD::FMUL:
439 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000440 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000441
Bill Wendlingd34470c2009-01-30 23:10:18 +0000442 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000443 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
444 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000445 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000446
Owen Andersonafd3d562012-03-06 00:29:31 +0000447 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000448 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000449
Chris Lattner29446522007-05-14 22:04:50 +0000450 case ISD::FP_EXTEND:
451 case ISD::FP_ROUND:
452 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000453 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000454 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000455 }
456}
457
458/// GetNegatedExpression - If isNegatibleForFree returns true, this function
459/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000460static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000461 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000462 // fneg is removable even if it has multiple uses.
463 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000464
Chris Lattner29446522007-05-14 22:04:50 +0000465 // Don't allow anything with multiple uses.
466 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000467
Chris Lattner3adf9512007-05-25 02:19:06 +0000468 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000469 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000470 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000471 case ISD::ConstantFP: {
472 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
473 V.changeSign();
474 return DAG.getConstantFP(V, Op.getValueType());
475 }
Chris Lattner29446522007-05-14 22:04:50 +0000476 case ISD::FADD:
477 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000478 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000479
Bill Wendlingd34470c2009-01-30 23:10:18 +0000480 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000481 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000482 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000483 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000484 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000485 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000486 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000487 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000488 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Bill Wendling35247c32009-01-30 00:45:56 +0000489 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000490 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000491 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000492 Op.getOperand(0));
493 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000494 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000495 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000496
Bill Wendlingd34470c2009-01-30 23:10:18 +0000497 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000498 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000499 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000500 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000501
Bill Wendlingd34470c2009-01-30 23:10:18 +0000502 // fold (fneg (fsub A, B)) -> (fsub B, A)
Bill Wendling35247c32009-01-30 00:45:56 +0000503 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
504 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000505
Chris Lattner29446522007-05-14 22:04:50 +0000506 case ISD::FMUL:
507 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000508 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000509
Bill Wendlingd34470c2009-01-30 23:10:18 +0000510 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000511 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000512 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000513 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000514 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000515 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000516 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000517 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000518
Bill Wendlingd34470c2009-01-30 23:10:18 +0000519 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Bill Wendling35247c32009-01-30 00:45:56 +0000520 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000521 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000522 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000523 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000524
Chris Lattner29446522007-05-14 22:04:50 +0000525 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000526 case ISD::FSIN:
Bill Wendling35247c32009-01-30 00:45:56 +0000527 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000528 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000529 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000530 case ISD::FP_ROUND:
Bill Wendling35247c32009-01-30 00:45:56 +0000531 return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000532 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000533 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000534 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000535 }
536}
Chris Lattner24664722006-03-01 04:53:38 +0000537
538
Nate Begeman4ebd8052005-09-01 23:24:04 +0000539// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
540// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000541// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000542// nodes based on the type of node we are checking. This simplifies life a
543// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000544static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
545 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000546 if (N.getOpcode() == ISD::SETCC) {
547 LHS = N.getOperand(0);
548 RHS = N.getOperand(1);
549 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000550 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000551 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000552 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000553 N.getOperand(2).getOpcode() == ISD::Constant &&
554 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000555 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000556 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
557 LHS = N.getOperand(0);
558 RHS = N.getOperand(1);
559 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000560 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000561 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000562 return false;
563}
564
Nate Begeman99801192005-09-07 23:25:52 +0000565// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
566// one use. If this is true, it allows the users to invert the operation for
567// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000568static bool isOneUseSetCC(SDValue N) {
569 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000570 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000571 return true;
572 return false;
573}
574
Bill Wendling35247c32009-01-30 00:45:56 +0000575SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
576 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000577 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000578 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
579 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000580 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000581 SDValue OpNode =
582 DAG.FoldConstantArithmetic(Opc, VT,
583 cast<ConstantSDNode>(N0.getOperand(1)),
584 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000585 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000586 }
587 if (N0.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000588 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendling35247c32009-01-30 00:45:56 +0000589 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
590 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000591 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000592 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000593 }
594 }
Bill Wendling35247c32009-01-30 00:45:56 +0000595
Nate Begemancd4d58c2006-02-03 06:46:56 +0000596 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
597 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000598 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000599 SDValue OpNode =
600 DAG.FoldConstantArithmetic(Opc, VT,
601 cast<ConstantSDNode>(N1.getOperand(1)),
602 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000603 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000604 }
605 if (N1.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000606 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendlingd69c3142009-01-30 02:23:43 +0000607 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000608 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000609 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000610 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000611 }
612 }
Bill Wendling35247c32009-01-30 00:45:56 +0000613
Dan Gohman475871a2008-07-27 21:46:04 +0000614 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000615}
616
Dan Gohman475871a2008-07-27 21:46:04 +0000617SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
618 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000619 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
620 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000621 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000622 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000623 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000624 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000625 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000626 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000627 assert((!To[i].getNode() ||
628 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000629 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000630 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000631 DAG.ReplaceAllUsesWith(N, To);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000632 if (AddTo) {
633 // Push the new nodes and any users onto the worklist
634 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000635 if (To[i].getNode()) {
636 AddToWorkList(To[i].getNode());
637 AddUsersToWorkList(To[i].getNode());
638 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000639 }
640 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000641
Dan Gohmandbe664a2009-01-19 21:44:21 +0000642 // Finally, if the node is now dead, remove it from the graph. The node
643 // may not be dead if the replacement process recursively simplified to
644 // something else needing this node.
645 if (N->use_empty()) {
646 // Nodes can be reintroduced into the worklist. Make sure we do not
647 // process a node that has been replaced.
648 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000649
Dan Gohmandbe664a2009-01-19 21:44:21 +0000650 // Finally, since the node is now dead, remove it from the graph.
651 DAG.DeleteNode(N);
652 }
Dan Gohman475871a2008-07-27 21:46:04 +0000653 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000654}
655
Evan Chenge5b51ac2010-04-17 06:13:15 +0000656void DAGCombiner::
657CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000658 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000659 // are deleted, make sure to remove them from our worklist.
660 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000661 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000662
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000663 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000664 AddToWorkList(TLO.New.getNode());
665 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000666
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000667 // Finally, if the node is now dead, remove it from the graph. The node
668 // may not be dead if the replacement process recursively simplified to
669 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000670 if (TLO.Old.getNode()->use_empty()) {
671 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000672
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000673 // If the operands of this node are only used by the node, they will now
674 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000675 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
676 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
677 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000678
Gabor Greifba36cb52008-08-28 21:40:38 +0000679 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000680 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000681}
682
683/// SimplifyDemandedBits - Check the specified integer node value to see if
684/// it can be simplified or if things it uses can be simplified by bit
685/// propagation. If so, return true.
686bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000687 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000688 APInt KnownZero, KnownOne;
689 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
690 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000691
Dan Gohmane5af2d32009-01-29 01:59:02 +0000692 // Revisit the node.
693 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000694
Dan Gohmane5af2d32009-01-29 01:59:02 +0000695 // Replace the old value with the new one.
696 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000697 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000698 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000699 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000700 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000701 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000702
Dan Gohmane5af2d32009-01-29 01:59:02 +0000703 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000704 return true;
705}
706
Evan Cheng95c57ea2010-04-24 04:43:44 +0000707void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
708 DebugLoc dl = Load->getDebugLoc();
709 EVT VT = Load->getValueType(0);
710 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000711
Evan Cheng95c57ea2010-04-24 04:43:44 +0000712 DEBUG(dbgs() << "\nReplacing.9 ";
713 Load->dump(&DAG);
714 dbgs() << "\nWith: ";
715 Trunc.getNode()->dump(&DAG);
716 dbgs() << '\n');
717 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000718 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
719 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
Evan Cheng95c57ea2010-04-24 04:43:44 +0000720 removeFromWorkList(Load);
721 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000722 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000723}
724
725SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
726 Replace = false;
Evan Cheng4c26e932010-04-19 19:29:22 +0000727 DebugLoc dl = Op.getDebugLoc();
Evan Chenge5b51ac2010-04-17 06:13:15 +0000728 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000729 EVT MemVT = LD->getMemoryVT();
730 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000731 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000732 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000733 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000734 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000735 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000736 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000737 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000738 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000739 LD->isNonTemporal(), LD->getAlignment());
740 }
741
Evan Cheng4c26e932010-04-19 19:29:22 +0000742 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000743 switch (Opc) {
744 default: break;
745 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000746 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000747 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000748 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000749 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000750 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000751 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000752 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000753 case ISD::Constant: {
754 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000755 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000756 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000757 }
Evan Chengcaf77402010-04-23 19:10:30 +0000758 }
759
760 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000761 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000762 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000763}
764
Evan Cheng95c57ea2010-04-24 04:43:44 +0000765SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000766 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
767 return SDValue();
768 EVT OldVT = Op.getValueType();
769 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000770 bool Replace = false;
771 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
772 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000773 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000774 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000775
776 if (Replace)
777 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
778 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000779 DAG.getValueType(OldVT));
780}
781
Evan Cheng95c57ea2010-04-24 04:43:44 +0000782SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000783 EVT OldVT = Op.getValueType();
784 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000785 bool Replace = false;
786 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
787 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000788 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000789 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000790
791 if (Replace)
792 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
793 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000794}
795
Evan Cheng64b7bf72010-04-16 06:14:10 +0000796/// PromoteIntBinOp - Promote the specified integer binary operation if the
797/// target indicates it is beneficial. e.g. On x86, it's usually better to
798/// promote i16 operations to i32 since i16 instructions are longer.
799SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
800 if (!LegalOperations)
801 return SDValue();
802
803 EVT VT = Op.getValueType();
804 if (VT.isVector() || !VT.isInteger())
805 return SDValue();
806
Evan Chenge5b51ac2010-04-17 06:13:15 +0000807 // If operation type is 'undesirable', e.g. i16 on x86, consider
808 // promoting it.
809 unsigned Opc = Op.getOpcode();
810 if (TLI.isTypeDesirableForOp(Opc, VT))
811 return SDValue();
812
Evan Cheng64b7bf72010-04-16 06:14:10 +0000813 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000814 // Consult target whether it is a good idea to promote this operation and
815 // what's the right type to promote it to.
816 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000817 assert(PVT != VT && "Don't know what type to promote to!");
818
Evan Cheng95c57ea2010-04-24 04:43:44 +0000819 bool Replace0 = false;
820 SDValue N0 = Op.getOperand(0);
821 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
822 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000823 return SDValue();
824
Evan Cheng95c57ea2010-04-24 04:43:44 +0000825 bool Replace1 = false;
826 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000827 SDValue NN1;
828 if (N0 == N1)
829 NN1 = NN0;
830 else {
831 NN1 = PromoteOperand(N1, PVT, Replace1);
832 if (NN1.getNode() == 0)
833 return SDValue();
834 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000835
Evan Cheng95c57ea2010-04-24 04:43:44 +0000836 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000837 if (NN1.getNode())
838 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000839
840 if (Replace0)
841 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
842 if (Replace1)
843 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000844
Evan Chengac7eae52010-04-27 19:48:13 +0000845 DEBUG(dbgs() << "\nPromoting ";
846 Op.getNode()->dump(&DAG));
Evan Cheng07c4e102010-04-22 20:19:46 +0000847 DebugLoc dl = Op.getDebugLoc();
848 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000849 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000850 }
851 return SDValue();
852}
853
854/// PromoteIntShiftOp - Promote the specified integer shift operation if the
855/// target indicates it is beneficial. e.g. On x86, it's usually better to
856/// promote i16 operations to i32 since i16 instructions are longer.
857SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
858 if (!LegalOperations)
859 return SDValue();
860
861 EVT VT = Op.getValueType();
862 if (VT.isVector() || !VT.isInteger())
863 return SDValue();
864
865 // If operation type is 'undesirable', e.g. i16 on x86, consider
866 // promoting it.
867 unsigned Opc = Op.getOpcode();
868 if (TLI.isTypeDesirableForOp(Opc, VT))
869 return SDValue();
870
871 EVT PVT = VT;
872 // Consult target whether it is a good idea to promote this operation and
873 // what's the right type to promote it to.
874 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
875 assert(PVT != VT && "Don't know what type to promote to!");
876
Evan Cheng95c57ea2010-04-24 04:43:44 +0000877 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000878 SDValue N0 = Op.getOperand(0);
879 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000880 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000881 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000882 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000883 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000884 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000885 if (N0.getNode() == 0)
886 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000887
Evan Chenge5b51ac2010-04-17 06:13:15 +0000888 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000889 if (Replace)
890 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000891
Evan Chengac7eae52010-04-27 19:48:13 +0000892 DEBUG(dbgs() << "\nPromoting ";
893 Op.getNode()->dump(&DAG));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000894 DebugLoc dl = Op.getDebugLoc();
895 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000896 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000897 }
898 return SDValue();
899}
900
Evan Cheng4c26e932010-04-19 19:29:22 +0000901SDValue DAGCombiner::PromoteExtend(SDValue Op) {
902 if (!LegalOperations)
903 return SDValue();
904
905 EVT VT = Op.getValueType();
906 if (VT.isVector() || !VT.isInteger())
907 return SDValue();
908
909 // If operation type is 'undesirable', e.g. i16 on x86, consider
910 // promoting it.
911 unsigned Opc = Op.getOpcode();
912 if (TLI.isTypeDesirableForOp(Opc, VT))
913 return SDValue();
914
915 EVT PVT = VT;
916 // Consult target whether it is a good idea to promote this operation and
917 // what's the right type to promote it to.
918 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
919 assert(PVT != VT && "Don't know what type to promote to!");
920 // fold (aext (aext x)) -> (aext x)
921 // fold (aext (zext x)) -> (zext x)
922 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000923 DEBUG(dbgs() << "\nPromoting ";
924 Op.getNode()->dump(&DAG));
Evan Cheng4c26e932010-04-19 19:29:22 +0000925 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
926 }
927 return SDValue();
928}
929
930bool DAGCombiner::PromoteLoad(SDValue Op) {
931 if (!LegalOperations)
932 return false;
933
934 EVT VT = Op.getValueType();
935 if (VT.isVector() || !VT.isInteger())
936 return false;
937
938 // If operation type is 'undesirable', e.g. i16 on x86, consider
939 // promoting it.
940 unsigned Opc = Op.getOpcode();
941 if (TLI.isTypeDesirableForOp(Opc, VT))
942 return false;
943
944 EVT PVT = VT;
945 // Consult target whether it is a good idea to promote this operation and
946 // what's the right type to promote it to.
947 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
948 assert(PVT != VT && "Don't know what type to promote to!");
949
950 DebugLoc dl = Op.getDebugLoc();
951 SDNode *N = Op.getNode();
952 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000953 EVT MemVT = LD->getMemoryVT();
954 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000955 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000956 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000957 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000958 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000959 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000960 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000961 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000962 LD->isNonTemporal(), LD->getAlignment());
963 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
964
Evan Cheng95c57ea2010-04-24 04:43:44 +0000965 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000966 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000967 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000968 Result.getNode()->dump(&DAG);
969 dbgs() << '\n');
970 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000971 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
972 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
Evan Cheng4c26e932010-04-19 19:29:22 +0000973 removeFromWorkList(N);
974 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000975 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000976 return true;
977 }
978 return false;
979}
980
Evan Chenge5b51ac2010-04-17 06:13:15 +0000981
Chris Lattner29446522007-05-14 22:04:50 +0000982//===----------------------------------------------------------------------===//
983// Main DAG Combiner implementation
984//===----------------------------------------------------------------------===//
985
Duncan Sands25cf2272008-11-24 14:53:14 +0000986void DAGCombiner::Run(CombineLevel AtLevel) {
987 // set the instance variables, so that the various visit routines may use it.
988 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +0000989 LegalOperations = Level >= AfterLegalizeVectorOps;
990 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +0000991
Evan Cheng17a568b2008-08-29 22:21:44 +0000992 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +0000993 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
994 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +0000995 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +0000996
Evan Cheng17a568b2008-08-29 22:21:44 +0000997 // Create a dummy node (which is not added to allnodes), that adds a reference
998 // to the root node, preventing it from being deleted, and tracking any
999 // changes of the root.
1000 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +00001001
Jim Laskey26f7fa72006-10-17 19:33:52 +00001002 // The root of the dag may dangle to deleted nodes until the dag combiner is
1003 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +00001004 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00001005
James Molloy6660c052012-02-16 09:17:04 +00001006 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +00001007 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +00001008 while (!WorkListContents.empty()) {
1009 SDNode *N;
1010 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1011 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1012 // worklist *should* contain, and check the node we want to visit is should
1013 // actually be visited.
1014 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001015 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001016 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001017
Evan Cheng17a568b2008-08-29 22:21:44 +00001018 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1019 // N is deleted from the DAG, since they too may now be dead or may have a
1020 // reduced number of uses, allowing other xforms.
1021 if (N->use_empty() && N != &Dummy) {
1022 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1023 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001024
Evan Cheng17a568b2008-08-29 22:21:44 +00001025 DAG.DeleteNode(N);
1026 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001027 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001028
Evan Cheng17a568b2008-08-29 22:21:44 +00001029 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001030
Evan Cheng17a568b2008-08-29 22:21:44 +00001031 if (RV.getNode() == 0)
1032 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001033
Evan Cheng17a568b2008-08-29 22:21:44 +00001034 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001035
Evan Cheng17a568b2008-08-29 22:21:44 +00001036 // If we get back the same node we passed in, rather than a new node or
1037 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001038 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001039 // mechanics for us, we have no work to do in this case.
1040 if (RV.getNode() == N)
1041 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001042
Evan Cheng17a568b2008-08-29 22:21:44 +00001043 assert(N->getOpcode() != ISD::DELETED_NODE &&
1044 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1045 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001046
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001047 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001048 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001049 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001050 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001051 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001052
Devang Patel9728ea22011-05-23 22:04:42 +00001053 // Transfer debug value.
1054 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001055 WorkListRemover DeadNodes(*this);
1056 if (N->getNumValues() == RV.getNode()->getNumValues())
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001057 DAG.ReplaceAllUsesWith(N, RV.getNode());
Evan Cheng17a568b2008-08-29 22:21:44 +00001058 else {
1059 assert(N->getValueType(0) == RV.getValueType() &&
1060 N->getNumValues() == 1 && "Type mismatch");
1061 SDValue OpV = RV;
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001062 DAG.ReplaceAllUsesWith(N, &OpV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001063 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001064
Evan Cheng17a568b2008-08-29 22:21:44 +00001065 // Push the new node and any users onto the worklist
1066 AddToWorkList(RV.getNode());
1067 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001068
Evan Cheng17a568b2008-08-29 22:21:44 +00001069 // Add any uses of the old node to the worklist in case this node is the
1070 // last one that uses them. They may become dead after this node is
1071 // deleted.
1072 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1073 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001074
Dan Gohmandbe664a2009-01-19 21:44:21 +00001075 // Finally, if the node is now dead, remove it from the graph. The node
1076 // may not be dead if the replacement process recursively simplified to
1077 // something else needing this node.
1078 if (N->use_empty()) {
1079 // Nodes can be reintroduced into the worklist. Make sure we do not
1080 // process a node that has been replaced.
1081 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001082
Dan Gohmandbe664a2009-01-19 21:44:21 +00001083 // Finally, since the node is now dead, remove it from the graph.
1084 DAG.DeleteNode(N);
1085 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001086 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001087
Chris Lattner95038592005-10-05 06:35:28 +00001088 // If the root changed (e.g. it was a dead load, update the root).
1089 DAG.setRoot(Dummy.getValue());
Hal Finkel31490ba2012-04-16 03:33:22 +00001090 DAG.RemoveDeadNodes();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001091}
1092
Dan Gohman475871a2008-07-27 21:46:04 +00001093SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001094 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001095 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001096 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001097 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001098 case ISD::ADD: return visitADD(N);
1099 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001100 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001101 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001102 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001103 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001104 case ISD::MUL: return visitMUL(N);
1105 case ISD::SDIV: return visitSDIV(N);
1106 case ISD::UDIV: return visitUDIV(N);
1107 case ISD::SREM: return visitSREM(N);
1108 case ISD::UREM: return visitUREM(N);
1109 case ISD::MULHU: return visitMULHU(N);
1110 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001111 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1112 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001113 case ISD::SMULO: return visitSMULO(N);
1114 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001115 case ISD::SDIVREM: return visitSDIVREM(N);
1116 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001117 case ISD::AND: return visitAND(N);
1118 case ISD::OR: return visitOR(N);
1119 case ISD::XOR: return visitXOR(N);
1120 case ISD::SHL: return visitSHL(N);
1121 case ISD::SRA: return visitSRA(N);
1122 case ISD::SRL: return visitSRL(N);
1123 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001124 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001125 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001126 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001127 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001128 case ISD::SELECT: return visitSELECT(N);
1129 case ISD::SELECT_CC: return visitSELECT_CC(N);
1130 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001131 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1132 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001133 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001134 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1135 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001136 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001137 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001138 case ISD::FADD: return visitFADD(N);
1139 case ISD::FSUB: return visitFSUB(N);
1140 case ISD::FMUL: return visitFMUL(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00001141 case ISD::FMA: return visitFMA(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001142 case ISD::FDIV: return visitFDIV(N);
1143 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001144 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001145 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1146 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1147 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1148 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1149 case ISD::FP_ROUND: return visitFP_ROUND(N);
1150 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1151 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1152 case ISD::FNEG: return visitFNEG(N);
1153 case ISD::FABS: return visitFABS(N);
Owen Anderson7c626d32012-08-13 23:32:49 +00001154 case ISD::FFLOOR: return visitFFLOOR(N);
1155 case ISD::FCEIL: return visitFCEIL(N);
1156 case ISD::FTRUNC: return visitFTRUNC(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001157 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001158 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001159 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001160 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001161 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001162 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001163 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1164 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001165 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001166 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001167 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001168 }
Dan Gohman475871a2008-07-27 21:46:04 +00001169 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001170}
1171
Dan Gohman475871a2008-07-27 21:46:04 +00001172SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001173 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001174
1175 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001176 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001177 assert(N->getOpcode() != ISD::DELETED_NODE &&
1178 "Node was deleted but visit returned NULL!");
1179
1180 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1181 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1182
1183 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001184 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001185 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001186
1187 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1188 }
1189 }
1190
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001191 // If nothing happened still, try promoting the operation.
1192 if (RV.getNode() == 0) {
1193 switch (N->getOpcode()) {
1194 default: break;
1195 case ISD::ADD:
1196 case ISD::SUB:
1197 case ISD::MUL:
1198 case ISD::AND:
1199 case ISD::OR:
1200 case ISD::XOR:
1201 RV = PromoteIntBinOp(SDValue(N, 0));
1202 break;
1203 case ISD::SHL:
1204 case ISD::SRA:
1205 case ISD::SRL:
1206 RV = PromoteIntShiftOp(SDValue(N, 0));
1207 break;
1208 case ISD::SIGN_EXTEND:
1209 case ISD::ZERO_EXTEND:
1210 case ISD::ANY_EXTEND:
1211 RV = PromoteExtend(SDValue(N, 0));
1212 break;
1213 case ISD::LOAD:
1214 if (PromoteLoad(SDValue(N, 0)))
1215 RV = SDValue(N, 0);
1216 break;
1217 }
1218 }
1219
Scott Michelfdc40a02009-02-17 22:15:04 +00001220 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001221 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001222 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001223 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1224 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001225 SDValue N0 = N->getOperand(0);
1226 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001227
Evan Cheng08b11732008-03-22 01:55:50 +00001228 // Constant operands are canonicalized to RHS.
1229 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001230 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001231 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1232 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001233 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001234 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001235 }
1236 }
1237
Dan Gohman389079b2007-10-08 17:57:15 +00001238 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001239}
Dan Gohman389079b2007-10-08 17:57:15 +00001240
Chris Lattner6270f682006-10-08 22:57:01 +00001241/// getInputChainForNode - Given a node, return its input chain if it has one,
1242/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001243static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001244 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001245 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001246 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001247 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001248 return N->getOperand(NumOps-1);
1249 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001250 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001251 return N->getOperand(i);
1252 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001253 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001254}
1255
Dan Gohman475871a2008-07-27 21:46:04 +00001256SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001257 // If N has two operands, where one has an input chain equal to the other,
1258 // the 'other' chain is redundant.
1259 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001260 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001261 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001262 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001263 return N->getOperand(1);
1264 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001265
Chris Lattnerc76d4412007-05-16 06:37:59 +00001266 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001267 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001268 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001269 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001270
Jim Laskey6ff23e52006-10-04 16:53:27 +00001271 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001272 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001273
Jim Laskey71382342006-10-07 23:37:56 +00001274 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001275 // encountered.
1276 for (unsigned i = 0; i < TFs.size(); ++i) {
1277 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001278
Jim Laskey6ff23e52006-10-04 16:53:27 +00001279 // Check each of the operands.
1280 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001281 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001282
Jim Laskey6ff23e52006-10-04 16:53:27 +00001283 switch (Op.getOpcode()) {
1284 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001285 // Entry tokens don't need to be added to the list. They are
1286 // rededundant.
1287 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001288 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001289
Jim Laskey6ff23e52006-10-04 16:53:27 +00001290 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001291 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001292 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001293 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001294 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001295 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001296 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001297 Changed = true;
1298 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001299 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001300 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001301
Jim Laskey6ff23e52006-10-04 16:53:27 +00001302 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001303 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001304 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001305 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001306 else
1307 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001308 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001309 }
1310 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001311 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001312
Dan Gohman475871a2008-07-27 21:46:04 +00001313 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001314
1315 // If we've change things around then replace token factor.
1316 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001317 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001318 // The entry token is the only possible outcome.
1319 Result = DAG.getEntryNode();
1320 } else {
1321 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001322 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001323 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001324 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001325
Jim Laskey274062c2006-10-13 23:32:28 +00001326 // Don't add users to work list.
1327 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001328 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001329
Jim Laskey6ff23e52006-10-04 16:53:27 +00001330 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001331}
1332
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001333/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001334SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001335 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001336 // Replacing results may cause a different MERGE_VALUES to suddenly
1337 // be CSE'd with N, and carry its uses with it. Iterate until no
1338 // uses remain, to ensure that the node can be safely deleted.
Pete Cooper3affd9e2012-06-20 19:35:43 +00001339 // First add the users of this node to the work list so that they
1340 // can be tried again once they have new operands.
1341 AddUsersToWorkList(N);
Dan Gohman00edf392009-08-10 23:43:19 +00001342 do {
1343 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001344 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
Dan Gohman00edf392009-08-10 23:43:19 +00001345 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001346 removeFromWorkList(N);
1347 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001348 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001349}
1350
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001351static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001352SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1353 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001354 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001355 SDValue N00 = N0.getOperand(0);
1356 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001357 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001358
Gabor Greifba36cb52008-08-28 21:40:38 +00001359 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001360 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001361 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1362 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1363 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1364 N00.getOperand(0), N01),
1365 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1366 N00.getOperand(1), N01));
1367 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001368 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001369
Dan Gohman475871a2008-07-27 21:46:04 +00001370 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001371}
1372
Dan Gohman475871a2008-07-27 21:46:04 +00001373SDValue DAGCombiner::visitADD(SDNode *N) {
1374 SDValue N0 = N->getOperand(0);
1375 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001376 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1377 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001378 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001379
1380 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001381 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001382 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001383 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper48b509c2012-12-10 08:12:29 +00001384
1385 // fold (add x, 0) -> x, vector edition
1386 if (ISD::isBuildVectorAllZeros(N1.getNode()))
1387 return N0;
1388 if (ISD::isBuildVectorAllZeros(N0.getNode()))
1389 return N1;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001390 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001391
Dan Gohman613e0d82007-07-03 14:03:57 +00001392 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001393 if (N0.getOpcode() == ISD::UNDEF)
1394 return N0;
1395 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001396 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001397 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001398 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001399 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001400 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001401 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001402 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001403 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001404 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001405 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001406 // fold (add Sym, c) -> Sym+c
1407 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001408 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001409 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001410 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001411 GA->getOffset() +
1412 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001413 // fold ((c1-A)+c2) -> (c1+c2)-A
1414 if (N1C && N0.getOpcode() == ISD::SUB)
1415 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001416 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001417 DAG.getConstant(N1C->getAPIntValue()+
1418 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001419 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001420 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001421 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001422 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001423 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001424 // fold ((0-A) + B) -> B-A
1425 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1426 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001427 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001428 // fold (A + (0-B)) -> A-B
1429 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1430 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001431 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001432 // fold (A+(B-A)) -> B
1433 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001434 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001435 // fold ((B-A)+A) -> B
1436 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1437 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001438 // fold (A+(B-(A+C))) to (B-C)
1439 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001440 N0 == N1.getOperand(1).getOperand(0))
1441 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001442 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001443 // fold (A+(B-(C+A))) to (B-C)
1444 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001445 N0 == N1.getOperand(1).getOperand(1))
1446 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001447 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001448 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001449 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1450 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001451 N0 == N1.getOperand(0).getOperand(1))
1452 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1453 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001454
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001455 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1456 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1457 SDValue N00 = N0.getOperand(0);
1458 SDValue N01 = N0.getOperand(1);
1459 SDValue N10 = N1.getOperand(0);
1460 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001461
1462 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1463 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1464 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1465 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001466 }
Chris Lattner947c2892006-03-13 06:51:27 +00001467
Dan Gohman475871a2008-07-27 21:46:04 +00001468 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1469 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001470
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001471 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001472 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001473 APInt LHSZero, LHSOne;
1474 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001475 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001476
Dan Gohman948d8ea2008-02-20 16:33:30 +00001477 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001478 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001479
Chris Lattner947c2892006-03-13 06:51:27 +00001480 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1481 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001482 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001483 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001484 }
1485 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001486
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001487 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001488 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001489 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001490 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001491 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001492 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001493 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001494 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001495 }
1496
Dan Gohmancd9e1552010-01-19 23:30:49 +00001497 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1498 if (N1.getOpcode() == ISD::SHL &&
1499 N1.getOperand(0).getOpcode() == ISD::SUB)
1500 if (ConstantSDNode *C =
1501 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1502 if (C->getAPIntValue() == 0)
1503 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1504 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1505 N1.getOperand(0).getOperand(1),
1506 N1.getOperand(1)));
1507 if (N0.getOpcode() == ISD::SHL &&
1508 N0.getOperand(0).getOpcode() == ISD::SUB)
1509 if (ConstantSDNode *C =
1510 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1511 if (C->getAPIntValue() == 0)
1512 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1513 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1514 N0.getOperand(0).getOperand(1),
1515 N0.getOperand(1)));
1516
Owen Andersonbc146b02010-09-21 20:42:50 +00001517 if (N1.getOpcode() == ISD::AND) {
1518 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001519 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001520 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1521 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001522
Owen Andersonbc146b02010-09-21 20:42:50 +00001523 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1524 // and similar xforms where the inner op is either ~0 or 0.
1525 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1526 DebugLoc DL = N->getDebugLoc();
1527 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1528 }
1529 }
1530
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001531 // add (sext i1), X -> sub X, (zext i1)
1532 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1533 N0.getOperand(0).getValueType() == MVT::i1 &&
1534 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1535 DebugLoc DL = N->getDebugLoc();
1536 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1537 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1538 }
1539
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001540 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001541}
1542
Dan Gohman475871a2008-07-27 21:46:04 +00001543SDValue DAGCombiner::visitADDC(SDNode *N) {
1544 SDValue N0 = N->getOperand(0);
1545 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001546 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1547 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001548 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001549
Chris Lattner91153682007-03-04 20:03:15 +00001550 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001551 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001552 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001553 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001554 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001555
Chris Lattner91153682007-03-04 20:03:15 +00001556 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001557 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001558 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001559
Chris Lattnerb6541762007-03-04 20:40:38 +00001560 // fold (addc x, 0) -> x + no carry out
1561 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001562 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001563 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001564
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001565 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001566 APInt LHSZero, LHSOne;
1567 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001568 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001569
Dan Gohman948d8ea2008-02-20 16:33:30 +00001570 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001571 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001572
Chris Lattnerb6541762007-03-04 20:40:38 +00001573 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1574 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001575 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendling14036c02009-01-30 02:38:00 +00001576 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001577 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001578 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001579 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001580
Dan Gohman475871a2008-07-27 21:46:04 +00001581 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001582}
1583
Dan Gohman475871a2008-07-27 21:46:04 +00001584SDValue DAGCombiner::visitADDE(SDNode *N) {
1585 SDValue N0 = N->getOperand(0);
1586 SDValue N1 = N->getOperand(1);
1587 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001588 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1589 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001590
Chris Lattner91153682007-03-04 20:03:15 +00001591 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001592 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001593 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1594 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001595
Chris Lattnerb6541762007-03-04 20:40:38 +00001596 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001597 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001598 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001599
Dan Gohman475871a2008-07-27 21:46:04 +00001600 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001601}
1602
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001603// Since it may not be valid to emit a fold to zero for vector initializers
1604// check if we can before folding.
1605static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001606 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001607 if (!VT.isVector()) {
1608 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001609 }
1610 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001611 // Produce a vector of zeros.
1612 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1613 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1614 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1615 &Ops[0], Ops.size());
1616 }
1617 return SDValue();
1618}
1619
Dan Gohman475871a2008-07-27 21:46:04 +00001620SDValue DAGCombiner::visitSUB(SDNode *N) {
1621 SDValue N0 = N->getOperand(0);
1622 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001623 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1624 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001625 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1626 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001627 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001628
Dan Gohman7f321562007-06-25 16:23:39 +00001629 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001630 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001631 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001632 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper48b509c2012-12-10 08:12:29 +00001633
1634 // fold (sub x, 0) -> x, vector edition
1635 if (ISD::isBuildVectorAllZeros(N1.getNode()))
1636 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001637 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001638
Chris Lattner854077d2005-10-17 01:07:11 +00001639 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001640 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001641 if (N0 == N1)
1642 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001643 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001644 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001645 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001646 // fold (sub x, c) -> (add x, -c)
1647 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001648 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001649 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001650 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1651 if (N0C && N0C->isAllOnesValue())
1652 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001653 // fold A-(A-B) -> B
1654 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1655 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001656 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001657 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001658 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001659 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001660 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001661 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001662 // fold C2-(A+C1) -> (C2-C1)-A
1663 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00001664 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(),
1665 VT);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001666 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
Bill Wendling96cb1122012-07-19 00:04:14 +00001667 N1.getOperand(0));
Eric Christopher7332e6e2011-07-14 01:12:15 +00001668 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001669 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001670 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001671 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1672 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001673 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001674 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1675 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001676 // fold ((A+(C+B))-B) -> A+C
1677 if (N0.getOpcode() == ISD::ADD &&
1678 N0.getOperand(1).getOpcode() == ISD::ADD &&
1679 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001680 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1681 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001682 // fold ((A-(B-C))-C) -> A-B
1683 if (N0.getOpcode() == ISD::SUB &&
1684 N0.getOperand(1).getOpcode() == ISD::SUB &&
1685 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001686 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1687 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001688
Dan Gohman613e0d82007-07-03 14:03:57 +00001689 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001690 if (N0.getOpcode() == ISD::UNDEF)
1691 return N0;
1692 if (N1.getOpcode() == ISD::UNDEF)
1693 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001694
Dan Gohman6520e202008-10-18 02:06:02 +00001695 // If the relocation model supports it, consider symbol offsets.
1696 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001697 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001698 // fold (sub Sym, c) -> Sym-c
1699 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001700 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001701 GA->getOffset() -
1702 (uint64_t)N1C->getSExtValue());
1703 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1704 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1705 if (GA->getGlobal() == GB->getGlobal())
1706 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1707 VT);
1708 }
1709
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001710 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001711}
1712
Craig Toppercc274522012-01-07 09:06:39 +00001713SDValue DAGCombiner::visitSUBC(SDNode *N) {
1714 SDValue N0 = N->getOperand(0);
1715 SDValue N1 = N->getOperand(1);
1716 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1717 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1718 EVT VT = N0.getValueType();
1719
1720 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001721 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001722 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1723 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1724 MVT::Glue));
1725
1726 // fold (subc x, x) -> 0 + no borrow
1727 if (N0 == N1)
1728 return CombineTo(N, DAG.getConstant(0, VT),
1729 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1730 MVT::Glue));
1731
1732 // fold (subc x, 0) -> x + no borrow
1733 if (N1C && N1C->isNullValue())
1734 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1735 MVT::Glue));
1736
1737 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1738 if (N0C && N0C->isAllOnesValue())
1739 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1740 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1741 MVT::Glue));
1742
1743 return SDValue();
1744}
1745
1746SDValue DAGCombiner::visitSUBE(SDNode *N) {
1747 SDValue N0 = N->getOperand(0);
1748 SDValue N1 = N->getOperand(1);
1749 SDValue CarryIn = N->getOperand(2);
1750
1751 // fold (sube x, y, false) -> (subc x, y)
1752 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1753 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1754
1755 return SDValue();
1756}
1757
Dan Gohman475871a2008-07-27 21:46:04 +00001758SDValue DAGCombiner::visitMUL(SDNode *N) {
1759 SDValue N0 = N->getOperand(0);
1760 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001761 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1762 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001763 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001764
Dan Gohman7f321562007-06-25 16:23:39 +00001765 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001766 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001767 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001768 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001769 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001770
Dan Gohman613e0d82007-07-03 14:03:57 +00001771 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001772 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001773 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001774 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001775 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001776 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001777 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001778 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001779 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001780 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001781 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001782 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001783 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001784 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001785 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1786 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001787 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001788 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001789 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001790 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001791 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001792 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001793 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1794 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001795 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001796 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001797 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1798 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001799 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001800 DAG.getConstant(Log2Val,
1801 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001802 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001803 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001804 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001805 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001806 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1807 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001808 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001809 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1810 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001811 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001812
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001813 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1814 // use.
1815 {
Dan Gohman475871a2008-07-27 21:46:04 +00001816 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001817 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1818 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001819 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001820 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001821 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001822 isa<ConstantSDNode>(N1.getOperand(1)) &&
1823 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001824 Sh = N1; Y = N0;
1825 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001826
Gabor Greifba36cb52008-08-28 21:40:38 +00001827 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001828 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1829 Sh.getOperand(0), Y);
1830 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1831 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001832 }
1833 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001834
Chris Lattnera1deca32006-03-04 23:33:26 +00001835 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001836 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001837 isa<ConstantSDNode>(N0.getOperand(1)))
1838 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1839 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1840 N0.getOperand(0), N1),
1841 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1842 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001843
Nate Begemancd4d58c2006-02-03 06:46:56 +00001844 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001845 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001846 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001847 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001848
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001849 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001850}
1851
Dan Gohman475871a2008-07-27 21:46:04 +00001852SDValue DAGCombiner::visitSDIV(SDNode *N) {
1853 SDValue N0 = N->getOperand(0);
1854 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001855 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1856 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001857 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001858
Dan Gohman7f321562007-06-25 16:23:39 +00001859 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001860 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001861 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001862 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001863 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001864
Nate Begeman1d4d4142005-09-01 00:19:25 +00001865 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001866 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001867 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001868 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001869 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001870 return N0;
1871 // fold (sdiv X, -1) -> 0-X
1872 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001873 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1874 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001875 // If we know the sign bits of both operands are zero, strength reduce to a
1876 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001877 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001878 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001879 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1880 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001881 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001882 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001883 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001884 (N1C->getAPIntValue().isPowerOf2() ||
1885 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001886 // If dividing by powers of two is cheap, then don't perform the following
1887 // fold.
1888 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001889 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001890
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001891 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001892
Chris Lattner8f4880b2006-02-16 08:02:36 +00001893 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001894 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1895 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001896 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001897 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001898
Chris Lattner8f4880b2006-02-16 08:02:36 +00001899 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001900 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1901 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001902 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001903 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001904 AddToWorkList(SRL.getNode());
1905 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001906 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001907 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001908
Nate Begeman405e3ec2005-10-21 00:02:42 +00001909 // If we're dividing by a positive value, we're done. Otherwise, we must
1910 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001911 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001912 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001913
Gabor Greifba36cb52008-08-28 21:40:38 +00001914 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001915 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1916 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001917 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001918
Nate Begeman69575232005-10-20 02:15:44 +00001919 // if integer divide is expensive and we satisfy the requirements, emit an
1920 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001921 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001922 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001923 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001924 }
Dan Gohman7f321562007-06-25 16:23:39 +00001925
Dan Gohman613e0d82007-07-03 14:03:57 +00001926 // undef / X -> 0
1927 if (N0.getOpcode() == ISD::UNDEF)
1928 return DAG.getConstant(0, VT);
1929 // X / undef -> undef
1930 if (N1.getOpcode() == ISD::UNDEF)
1931 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001932
Dan Gohman475871a2008-07-27 21:46:04 +00001933 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001934}
1935
Dan Gohman475871a2008-07-27 21:46:04 +00001936SDValue DAGCombiner::visitUDIV(SDNode *N) {
1937 SDValue N0 = N->getOperand(0);
1938 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001939 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1940 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001941 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001942
Dan Gohman7f321562007-06-25 16:23:39 +00001943 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001944 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001945 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001946 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001947 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001948
Nate Begeman1d4d4142005-09-01 00:19:25 +00001949 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001950 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001951 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001952 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001953 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001954 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001955 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001956 getShiftAmountTy(N0.getValueType())));
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001957 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001958 if (N1.getOpcode() == ISD::SHL) {
1959 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001960 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001961 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001962 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1963 N1.getOperand(1),
1964 DAG.getConstant(SHC->getAPIntValue()
1965 .logBase2(),
1966 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001967 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001968 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001969 }
1970 }
1971 }
Nate Begeman69575232005-10-20 02:15:44 +00001972 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001973 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001974 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001975 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001976 }
Dan Gohman7f321562007-06-25 16:23:39 +00001977
Dan Gohman613e0d82007-07-03 14:03:57 +00001978 // undef / X -> 0
1979 if (N0.getOpcode() == ISD::UNDEF)
1980 return DAG.getConstant(0, VT);
1981 // X / undef -> undef
1982 if (N1.getOpcode() == ISD::UNDEF)
1983 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001984
Dan Gohman475871a2008-07-27 21:46:04 +00001985 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001986}
1987
Dan Gohman475871a2008-07-27 21:46:04 +00001988SDValue DAGCombiner::visitSREM(SDNode *N) {
1989 SDValue N0 = N->getOperand(0);
1990 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001991 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1992 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001993 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001994
Nate Begeman1d4d4142005-09-01 00:19:25 +00001995 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001996 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001997 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001998 // If we know the sign bits of both operands are zero, strength reduce to a
1999 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00002000 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002001 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002002 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00002003 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002004
Dan Gohman77003042007-11-26 23:46:11 +00002005 // If X/C can be simplified by the division-by-constant logic, lower
2006 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002007 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002008 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002009 AddToWorkList(Div.getNode());
2010 SDValue OptimizedDiv = combine(Div.getNode());
2011 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002012 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2013 OptimizedDiv, N1);
2014 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002015 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002016 return Sub;
2017 }
Chris Lattner26d29902006-10-12 20:58:32 +00002018 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002019
Dan Gohman613e0d82007-07-03 14:03:57 +00002020 // undef % X -> 0
2021 if (N0.getOpcode() == ISD::UNDEF)
2022 return DAG.getConstant(0, VT);
2023 // X % undef -> undef
2024 if (N1.getOpcode() == ISD::UNDEF)
2025 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002026
Dan Gohman475871a2008-07-27 21:46:04 +00002027 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002028}
2029
Dan Gohman475871a2008-07-27 21:46:04 +00002030SDValue DAGCombiner::visitUREM(SDNode *N) {
2031 SDValue N0 = N->getOperand(0);
2032 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002033 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2034 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002035 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002036
Nate Begeman1d4d4142005-09-01 00:19:25 +00002037 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002038 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002039 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002040 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002041 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002042 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002043 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002044 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2045 if (N1.getOpcode() == ISD::SHL) {
2046 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002047 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002048 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002049 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002050 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002051 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002052 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002053 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002054 }
2055 }
2056 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002057
Dan Gohman77003042007-11-26 23:46:11 +00002058 // If X/C can be simplified by the division-by-constant logic, lower
2059 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002060 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002061 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002062 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002063 SDValue OptimizedDiv = combine(Div.getNode());
2064 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002065 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2066 OptimizedDiv, N1);
2067 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002068 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002069 return Sub;
2070 }
Chris Lattner26d29902006-10-12 20:58:32 +00002071 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002072
Dan Gohman613e0d82007-07-03 14:03:57 +00002073 // undef % X -> 0
2074 if (N0.getOpcode() == ISD::UNDEF)
2075 return DAG.getConstant(0, VT);
2076 // X % undef -> undef
2077 if (N1.getOpcode() == ISD::UNDEF)
2078 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002079
Dan Gohman475871a2008-07-27 21:46:04 +00002080 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002081}
2082
Dan Gohman475871a2008-07-27 21:46:04 +00002083SDValue DAGCombiner::visitMULHS(SDNode *N) {
2084 SDValue N0 = N->getOperand(0);
2085 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002086 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002087 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002088 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002089
Nate Begeman1d4d4142005-09-01 00:19:25 +00002090 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002091 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002092 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002093 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002094 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002095 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2096 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002097 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002098 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002099 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002100 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002101
Chris Lattnerde1c3602010-12-13 08:39:01 +00002102 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2103 // plus a shift.
2104 if (VT.isSimple() && !VT.isVector()) {
2105 MVT Simple = VT.getSimpleVT();
2106 unsigned SimpleSize = Simple.getSizeInBits();
2107 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2108 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2109 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2110 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2111 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002112 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002113 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002114 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2115 }
2116 }
Owen Anderson95771af2011-02-25 21:41:48 +00002117
Dan Gohman475871a2008-07-27 21:46:04 +00002118 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002119}
2120
Dan Gohman475871a2008-07-27 21:46:04 +00002121SDValue DAGCombiner::visitMULHU(SDNode *N) {
2122 SDValue N0 = N->getOperand(0);
2123 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002124 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002125 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002126 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002127
Nate Begeman1d4d4142005-09-01 00:19:25 +00002128 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002129 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002130 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002131 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002132 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002133 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002134 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002135 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002136 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002137
Chris Lattnerde1c3602010-12-13 08:39:01 +00002138 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2139 // plus a shift.
2140 if (VT.isSimple() && !VT.isVector()) {
2141 MVT Simple = VT.getSimpleVT();
2142 unsigned SimpleSize = Simple.getSizeInBits();
2143 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2144 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2145 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2146 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2147 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2148 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002149 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002150 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2151 }
2152 }
Owen Anderson95771af2011-02-25 21:41:48 +00002153
Dan Gohman475871a2008-07-27 21:46:04 +00002154 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002155}
2156
Dan Gohman389079b2007-10-08 17:57:15 +00002157/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2158/// compute two values. LoOp and HiOp give the opcodes for the two computations
2159/// that are being performed. Return true if a simplification was made.
2160///
Scott Michelfdc40a02009-02-17 22:15:04 +00002161SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002162 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002163 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002164 bool HiExists = N->hasAnyUseOfValue(1);
2165 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002166 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002167 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002168 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2169 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002170 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002171 }
2172
2173 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002174 bool LoExists = N->hasAnyUseOfValue(0);
2175 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002176 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002177 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002178 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2179 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002180 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002181 }
2182
Evan Cheng44711942007-11-08 09:25:29 +00002183 // If both halves are used, return as it is.
2184 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002185 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002186
2187 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002188 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002189 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2190 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002191 AddToWorkList(Lo.getNode());
2192 SDValue LoOpt = combine(Lo.getNode());
2193 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002194 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002195 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002196 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002197 }
2198
Evan Cheng44711942007-11-08 09:25:29 +00002199 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002200 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002201 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002202 AddToWorkList(Hi.getNode());
2203 SDValue HiOpt = combine(Hi.getNode());
2204 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002205 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002206 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002207 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002208 }
Bill Wendling826d1142009-01-30 03:08:40 +00002209
Dan Gohman475871a2008-07-27 21:46:04 +00002210 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002211}
2212
Dan Gohman475871a2008-07-27 21:46:04 +00002213SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2214 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002215 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002216
Chris Lattner33e77d32010-12-15 06:04:19 +00002217 EVT VT = N->getValueType(0);
2218 DebugLoc DL = N->getDebugLoc();
2219
2220 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2221 // plus a shift.
2222 if (VT.isSimple() && !VT.isVector()) {
2223 MVT Simple = VT.getSimpleVT();
2224 unsigned SimpleSize = Simple.getSizeInBits();
2225 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2226 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2227 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2228 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2229 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2230 // Compute the high part as N1.
2231 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002232 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002233 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2234 // Compute the low part as N0.
2235 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2236 return CombineTo(N, Lo, Hi);
2237 }
2238 }
Owen Anderson95771af2011-02-25 21:41:48 +00002239
Dan Gohman475871a2008-07-27 21:46:04 +00002240 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002241}
2242
Dan Gohman475871a2008-07-27 21:46:04 +00002243SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2244 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002245 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002246
Chris Lattner33e77d32010-12-15 06:04:19 +00002247 EVT VT = N->getValueType(0);
2248 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002249
Chris Lattner33e77d32010-12-15 06:04:19 +00002250 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2251 // plus a shift.
2252 if (VT.isSimple() && !VT.isVector()) {
2253 MVT Simple = VT.getSimpleVT();
2254 unsigned SimpleSize = Simple.getSizeInBits();
2255 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2256 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2257 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2258 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2259 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2260 // Compute the high part as N1.
2261 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002262 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002263 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2264 // Compute the low part as N0.
2265 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2266 return CombineTo(N, Lo, Hi);
2267 }
2268 }
Owen Anderson95771af2011-02-25 21:41:48 +00002269
Dan Gohman475871a2008-07-27 21:46:04 +00002270 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002271}
2272
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002273SDValue DAGCombiner::visitSMULO(SDNode *N) {
2274 // (smulo x, 2) -> (saddo x, x)
2275 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2276 if (C2->getAPIntValue() == 2)
2277 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2278 N->getOperand(0), N->getOperand(0));
2279
2280 return SDValue();
2281}
2282
2283SDValue DAGCombiner::visitUMULO(SDNode *N) {
2284 // (umulo x, 2) -> (uaddo x, x)
2285 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2286 if (C2->getAPIntValue() == 2)
2287 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2288 N->getOperand(0), N->getOperand(0));
2289
2290 return SDValue();
2291}
2292
Dan Gohman475871a2008-07-27 21:46:04 +00002293SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2294 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002295 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002296
Dan Gohman475871a2008-07-27 21:46:04 +00002297 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002298}
2299
Dan Gohman475871a2008-07-27 21:46:04 +00002300SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2301 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002302 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002303
Dan Gohman475871a2008-07-27 21:46:04 +00002304 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002305}
2306
Chris Lattner35e5c142006-05-05 05:51:50 +00002307/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2308/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002309SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2310 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002311 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002312 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002313
Dan Gohmanff00a552010-01-14 03:08:49 +00002314 // Bail early if none of these transforms apply.
2315 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2316
Chris Lattner540121f2006-05-05 06:31:05 +00002317 // For each of OP in AND/OR/XOR:
2318 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2319 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2320 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002321 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002322 //
2323 // do not sink logical op inside of a vector extend, since it may combine
2324 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002325 EVT Op0VT = N0.getOperand(0).getValueType();
2326 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002327 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002328 // Avoid infinite looping with PromoteIntBinOp.
2329 (N0.getOpcode() == ISD::ANY_EXTEND &&
2330 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002331 (N0.getOpcode() == ISD::TRUNCATE &&
2332 (!TLI.isZExtFree(VT, Op0VT) ||
2333 !TLI.isTruncateFree(Op0VT, VT)) &&
2334 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002335 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002336 Op0VT == N1.getOperand(0).getValueType() &&
2337 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002338 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2339 N0.getOperand(0).getValueType(),
2340 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002341 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002342 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002343 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002344
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002345 // For each of OP in SHL/SRL/SRA/AND...
2346 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2347 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2348 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002349 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002350 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002351 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002352 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2353 N0.getOperand(0).getValueType(),
2354 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002355 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002356 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2357 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002358 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002359
Nadav Rotem4ac90812012-04-01 19:31:22 +00002360 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2361 // Only perform this optimization after type legalization and before
2362 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2363 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2364 // we don't want to undo this promotion.
2365 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2366 // on scalars.
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002367 if ((N0.getOpcode() == ISD::BITCAST ||
2368 N0.getOpcode() == ISD::SCALAR_TO_VECTOR) &&
2369 Level == AfterLegalizeTypes) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002370 SDValue In0 = N0.getOperand(0);
2371 SDValue In1 = N1.getOperand(0);
2372 EVT In0Ty = In0.getValueType();
2373 EVT In1Ty = In1.getValueType();
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002374 DebugLoc DL = N->getDebugLoc();
2375 // If both incoming values are integers, and the original types are the
2376 // same.
Nadav Rotem4ac90812012-04-01 19:31:22 +00002377 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002378 SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1);
2379 SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002380 AddToWorkList(Op.getNode());
2381 return BC;
2382 }
2383 }
2384
2385 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2386 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2387 // If both shuffles use the same mask, and both shuffle within a single
2388 // vector, then it is worthwhile to move the swizzle after the operation.
2389 // The type-legalizer generates this pattern when loading illegal
2390 // vector types from memory. In many cases this allows additional shuffle
2391 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002392 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2393 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2394 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002395 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2396 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002397
2398 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2399 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002400
2401 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002402
2403 // Check that both shuffles use the same mask. The masks are known to be of
2404 // the same length because the result vector type is the same.
2405 bool SameMask = true;
2406 for (unsigned i = 0; i != NumElts; ++i) {
2407 int Idx0 = SVN0->getMaskElt(i);
2408 int Idx1 = SVN1->getMaskElt(i);
2409 if (Idx0 != Idx1) {
2410 SameMask = false;
2411 break;
2412 }
2413 }
2414
Craig Topperf9204232012-04-09 07:19:09 +00002415 if (SameMask) {
2416 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT,
2417 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002418 AddToWorkList(Op.getNode());
Craig Topperf9204232012-04-09 07:19:09 +00002419 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op,
2420 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002421 }
2422 }
Craig Topperf9204232012-04-09 07:19:09 +00002423
Dan Gohman475871a2008-07-27 21:46:04 +00002424 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002425}
2426
Dan Gohman475871a2008-07-27 21:46:04 +00002427SDValue DAGCombiner::visitAND(SDNode *N) {
2428 SDValue N0 = N->getOperand(0);
2429 SDValue N1 = N->getOperand(1);
2430 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002431 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2432 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002433 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002434 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002435
Dan Gohman7f321562007-06-25 16:23:39 +00002436 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002437 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002438 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002439 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00002440
2441 // fold (and x, 0) -> 0, vector edition
2442 if (ISD::isBuildVectorAllZeros(N0.getNode()))
2443 return N0;
2444 if (ISD::isBuildVectorAllZeros(N1.getNode()))
2445 return N1;
2446
2447 // fold (and x, -1) -> x, vector edition
2448 if (ISD::isBuildVectorAllOnes(N0.getNode()))
2449 return N1;
2450 if (ISD::isBuildVectorAllOnes(N1.getNode()))
2451 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002452 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002453
Dan Gohman613e0d82007-07-03 14:03:57 +00002454 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002455 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002456 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002457 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002458 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002459 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002460 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002461 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002462 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002463 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002464 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002465 return N0;
2466 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002467 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002468 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002469 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002470 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002471 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002472 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002473 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002474 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002475 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002476 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002477 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002478 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002479 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2480 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002481 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002482 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002483 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002484 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002485 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2486 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002487
Chris Lattner1ec05d12006-03-01 21:47:21 +00002488 // Replace uses of the AND with uses of the Zero extend node.
2489 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002490
Chris Lattner3603cd62006-02-02 07:17:31 +00002491 // We actually want to replace all uses of the any_extend with the
2492 // zero_extend, to avoid duplicating things. This will later cause this
2493 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002494 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002495 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002496 }
2497 }
James Molloy6259dcd2012-02-20 12:02:38 +00002498 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2499 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2500 // already be zero by virtue of the width of the base type of the load.
2501 //
2502 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2503 // more cases.
2504 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2505 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2506 N0.getOpcode() == ISD::LOAD) {
2507 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2508 N0 : N0.getOperand(0) );
2509
2510 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2511 // This can be a pure constant or a vector splat, in which case we treat the
2512 // vector as a scalar and use the splat value.
2513 APInt Constant = APInt::getNullValue(1);
2514 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2515 Constant = C->getAPIntValue();
2516 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2517 APInt SplatValue, SplatUndef;
2518 unsigned SplatBitSize;
2519 bool HasAnyUndefs;
2520 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2521 SplatBitSize, HasAnyUndefs);
2522 if (IsSplat) {
2523 // Undef bits can contribute to a possible optimisation if set, so
2524 // set them.
2525 SplatValue |= SplatUndef;
2526
2527 // The splat value may be something like "0x00FFFFFF", which means 0 for
2528 // the first vector value and FF for the rest, repeating. We need a mask
2529 // that will apply equally to all members of the vector, so AND all the
2530 // lanes of the constant together.
2531 EVT VT = Vector->getValueType(0);
2532 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002533
2534 // If the splat value has been compressed to a bitlength lower
2535 // than the size of the vector lane, we need to re-expand it to
2536 // the lane size.
2537 if (BitWidth > SplatBitSize)
2538 for (SplatValue = SplatValue.zextOrTrunc(BitWidth);
2539 SplatBitSize < BitWidth;
2540 SplatBitSize = SplatBitSize * 2)
2541 SplatValue |= SplatValue.shl(SplatBitSize);
2542
James Molloy6259dcd2012-02-20 12:02:38 +00002543 Constant = APInt::getAllOnesValue(BitWidth);
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002544 for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i)
James Molloy6259dcd2012-02-20 12:02:38 +00002545 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2546 }
2547 }
2548
2549 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2550 // actually legal and isn't going to get expanded, else this is a false
2551 // optimisation.
2552 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2553 Load->getMemoryVT());
2554
2555 // Resize the constant to the same size as the original memory access before
2556 // extension. If it is still the AllOnesValue then this AND is completely
2557 // unneeded.
2558 Constant =
2559 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2560
2561 bool B;
2562 switch (Load->getExtensionType()) {
2563 default: B = false; break;
2564 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2565 case ISD::ZEXTLOAD:
2566 case ISD::NON_EXTLOAD: B = true; break;
2567 }
2568
2569 if (B && Constant.isAllOnesValue()) {
2570 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2571 // preserve semantics once we get rid of the AND.
2572 SDValue NewLoad(Load, 0);
2573 if (Load->getExtensionType() == ISD::EXTLOAD) {
2574 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2575 Load->getValueType(0), Load->getDebugLoc(),
2576 Load->getChain(), Load->getBasePtr(),
2577 Load->getOffset(), Load->getMemoryVT(),
2578 Load->getMemOperand());
2579 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
Hal Finkeld65e4632012-06-20 15:42:48 +00002580 if (Load->getNumValues() == 3) {
2581 // PRE/POST_INC loads have 3 values.
2582 SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1),
2583 NewLoad.getValue(2) };
2584 CombineTo(Load, To, 3, true);
2585 } else {
2586 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2587 }
James Molloy6259dcd2012-02-20 12:02:38 +00002588 }
2589
2590 // Fold the AND away, taking care not to fold to the old load node if we
2591 // replaced it.
2592 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2593
2594 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2595 }
2596 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002597 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2598 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2599 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2600 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002601
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002602 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002603 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002604 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002605 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002606 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2607 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002608 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002609 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002610 }
Bill Wendling2627a882009-01-30 20:43:18 +00002611 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002612 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002613 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2614 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002615 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002616 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002617 }
Bill Wendling2627a882009-01-30 20:43:18 +00002618 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002619 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002620 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2621 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002622 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002623 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002624 }
2625 }
2626 // canonicalize equivalent to ll == rl
2627 if (LL == RR && LR == RL) {
2628 Op1 = ISD::getSetCCSwappedOperands(Op1);
2629 std::swap(RL, RR);
2630 }
2631 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002632 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002633 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002634 if (Result != ISD::SETCC_INVALID &&
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00002635 (!LegalOperations ||
2636 TLI.isCondCodeLegal(Result, LL.getSimpleValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002637 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2638 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002639 }
2640 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002641
Bill Wendling2627a882009-01-30 20:43:18 +00002642 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002643 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002644 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002645 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002646 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002647
Nate Begemande996292006-02-03 22:24:05 +00002648 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2649 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002650 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002651 SimplifyDemandedBits(SDValue(N, 0)))
2652 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002653
Nate Begemanded49632005-10-13 03:11:28 +00002654 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002655 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002656 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002657 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002658 // If we zero all the possible extended bits, then we can turn this into
2659 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002660 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002661 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002662 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002663 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002664 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002665 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002666 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002667 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002668 LN0->isVolatile(), LN0->isNonTemporal(),
2669 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002670 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002671 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002672 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002673 }
2674 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002675 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002676 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002677 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002678 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002679 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002680 // If we zero all the possible extended bits, then we can turn this into
2681 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002682 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002683 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002684 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002685 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002686 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002687 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002688 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002689 LN0->getBasePtr(), LN0->getPointerInfo(),
2690 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002691 LN0->isVolatile(), LN0->isNonTemporal(),
2692 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002693 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002694 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002695 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002696 }
2697 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002698
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002699 // fold (and (load x), 255) -> (zextload x, i8)
2700 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002701 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2702 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2703 (N0.getOpcode() == ISD::ANY_EXTEND &&
2704 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2705 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2706 LoadSDNode *LN0 = HasAnyExt
2707 ? cast<LoadSDNode>(N0.getOperand(0))
2708 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002709 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002710 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002711 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002712 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2713 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2714 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002715
Evan Chengd40d03e2010-01-06 19:38:29 +00002716 if (ExtVT == LoadedVT &&
2717 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002718 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002719
2720 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002721 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002722 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002723 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002724 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2725 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002726 AddToWorkList(N);
2727 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2728 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2729 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002730
Chris Lattneref7634c2010-01-07 21:53:27 +00002731 // Do not change the width of a volatile load.
2732 // Do not generate loads of non-round integer types since these can
2733 // be expensive (and would be wrong if the type is not byte sized).
2734 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2735 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2736 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002737
Chris Lattneref7634c2010-01-07 21:53:27 +00002738 unsigned Alignment = LN0->getAlignment();
2739 SDValue NewPtr = LN0->getBasePtr();
2740
2741 // For big endian targets, we need to add an offset to the pointer
2742 // to load the correct bytes. For little endian systems, we merely
2743 // need to read fewer bytes from the same pointer.
2744 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002745 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2746 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2747 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002748 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2749 NewPtr, DAG.getConstant(PtrOff, PtrType));
2750 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002751 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002752
2753 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002754
Chris Lattneref7634c2010-01-07 21:53:27 +00002755 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2756 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002757 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002758 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002759 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002760 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2761 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002762 AddToWorkList(N);
2763 CombineTo(LN0, Load, Load.getValue(1));
2764 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002765 }
Evan Cheng466685d2006-10-09 20:57:25 +00002766 }
Chris Lattner15045b62006-02-28 06:35:35 +00002767 }
2768 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002769
Evan Chenga9e13ba2012-07-17 18:54:11 +00002770 if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
2771 VT.getSizeInBits() <= 64) {
2772 if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2773 APInt ADDC = ADDI->getAPIntValue();
2774 if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2775 // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal
2776 // immediate for an add, but it is legal if its top c2 bits are set,
2777 // transform the ADD so the immediate doesn't need to be materialized
2778 // in a register.
2779 if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
2780 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
2781 SRLI->getZExtValue());
2782 if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) {
2783 ADDC |= Mask;
2784 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2785 SDValue NewAdd =
2786 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
2787 N0.getOperand(0), DAG.getConstant(ADDC, VT));
2788 CombineTo(N0.getNode(), NewAdd);
2789 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2790 }
2791 }
2792 }
2793 }
2794 }
2795 }
Evan Chenga9e13ba2012-07-17 18:54:11 +00002796
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002797 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002798}
2799
Evan Cheng9568e5c2011-06-21 06:01:08 +00002800/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2801///
2802SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2803 bool DemandHighBits) {
2804 if (!LegalOperations)
2805 return SDValue();
2806
2807 EVT VT = N->getValueType(0);
2808 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2809 return SDValue();
2810 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2811 return SDValue();
2812
2813 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2814 bool LookPassAnd0 = false;
2815 bool LookPassAnd1 = false;
2816 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2817 std::swap(N0, N1);
2818 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2819 std::swap(N0, N1);
2820 if (N0.getOpcode() == ISD::AND) {
2821 if (!N0.getNode()->hasOneUse())
2822 return SDValue();
2823 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2824 if (!N01C || N01C->getZExtValue() != 0xFF00)
2825 return SDValue();
2826 N0 = N0.getOperand(0);
2827 LookPassAnd0 = true;
2828 }
2829
2830 if (N1.getOpcode() == ISD::AND) {
2831 if (!N1.getNode()->hasOneUse())
2832 return SDValue();
2833 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2834 if (!N11C || N11C->getZExtValue() != 0xFF)
2835 return SDValue();
2836 N1 = N1.getOperand(0);
2837 LookPassAnd1 = true;
2838 }
2839
2840 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2841 std::swap(N0, N1);
2842 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2843 return SDValue();
2844 if (!N0.getNode()->hasOneUse() ||
2845 !N1.getNode()->hasOneUse())
2846 return SDValue();
2847
2848 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2849 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2850 if (!N01C || !N11C)
2851 return SDValue();
2852 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2853 return SDValue();
2854
2855 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2856 SDValue N00 = N0->getOperand(0);
2857 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2858 if (!N00.getNode()->hasOneUse())
2859 return SDValue();
2860 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2861 if (!N001C || N001C->getZExtValue() != 0xFF)
2862 return SDValue();
2863 N00 = N00.getOperand(0);
2864 LookPassAnd0 = true;
2865 }
2866
2867 SDValue N10 = N1->getOperand(0);
2868 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2869 if (!N10.getNode()->hasOneUse())
2870 return SDValue();
2871 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2872 if (!N101C || N101C->getZExtValue() != 0xFF00)
2873 return SDValue();
2874 N10 = N10.getOperand(0);
2875 LookPassAnd1 = true;
2876 }
2877
2878 if (N00 != N10)
2879 return SDValue();
2880
2881 // Make sure everything beyond the low halfword is zero since the SRL 16
2882 // will clear the top bits.
2883 unsigned OpSizeInBits = VT.getSizeInBits();
2884 if (DemandHighBits && OpSizeInBits > 16 &&
2885 (!LookPassAnd0 || !LookPassAnd1) &&
2886 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2887 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002888
Evan Cheng9568e5c2011-06-21 06:01:08 +00002889 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2890 if (OpSizeInBits > 16)
2891 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2892 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2893 return Res;
2894}
2895
2896/// isBSwapHWordElement - Return true if the specified node is an element
2897/// that makes up a 32-bit packed halfword byteswap. i.e.
2898/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2899static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2900 if (!N.getNode()->hasOneUse())
2901 return false;
2902
2903 unsigned Opc = N.getOpcode();
2904 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2905 return false;
2906
2907 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2908 if (!N1C)
2909 return false;
2910
2911 unsigned Num;
2912 switch (N1C->getZExtValue()) {
2913 default:
2914 return false;
2915 case 0xFF: Num = 0; break;
2916 case 0xFF00: Num = 1; break;
2917 case 0xFF0000: Num = 2; break;
2918 case 0xFF000000: Num = 3; break;
2919 }
2920
2921 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2922 SDValue N0 = N.getOperand(0);
2923 if (Opc == ISD::AND) {
2924 if (Num == 0 || Num == 2) {
2925 // (x >> 8) & 0xff
2926 // (x >> 8) & 0xff0000
2927 if (N0.getOpcode() != ISD::SRL)
2928 return false;
2929 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2930 if (!C || C->getZExtValue() != 8)
2931 return false;
2932 } else {
2933 // (x << 8) & 0xff00
2934 // (x << 8) & 0xff000000
2935 if (N0.getOpcode() != ISD::SHL)
2936 return false;
2937 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2938 if (!C || C->getZExtValue() != 8)
2939 return false;
2940 }
2941 } else if (Opc == ISD::SHL) {
2942 // (x & 0xff) << 8
2943 // (x & 0xff0000) << 8
2944 if (Num != 0 && Num != 2)
2945 return false;
2946 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2947 if (!C || C->getZExtValue() != 8)
2948 return false;
2949 } else { // Opc == ISD::SRL
2950 // (x & 0xff00) >> 8
2951 // (x & 0xff000000) >> 8
2952 if (Num != 1 && Num != 3)
2953 return false;
2954 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2955 if (!C || C->getZExtValue() != 8)
2956 return false;
2957 }
2958
2959 if (Parts[Num])
2960 return false;
2961
2962 Parts[Num] = N0.getOperand(0).getNode();
2963 return true;
2964}
2965
2966/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2967/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2968/// => (rotl (bswap x), 16)
2969SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2970 if (!LegalOperations)
2971 return SDValue();
2972
2973 EVT VT = N->getValueType(0);
2974 if (VT != MVT::i32)
2975 return SDValue();
2976 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2977 return SDValue();
2978
2979 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2980 // Look for either
2981 // (or (or (and), (and)), (or (and), (and)))
2982 // (or (or (or (and), (and)), (and)), (and))
2983 if (N0.getOpcode() != ISD::OR)
2984 return SDValue();
2985 SDValue N00 = N0.getOperand(0);
2986 SDValue N01 = N0.getOperand(1);
2987
Evan Cheng9a65a012012-12-13 01:34:32 +00002988 if (N1.getOpcode() == ISD::OR &&
2989 N00.getNumOperands() == 2 && N01.getNumOperands() == 2) {
Evan Cheng9568e5c2011-06-21 06:01:08 +00002990 // (or (or (and), (and)), (or (and), (and)))
2991 SDValue N000 = N00.getOperand(0);
2992 if (!isBSwapHWordElement(N000, Parts))
2993 return SDValue();
2994
2995 SDValue N001 = N00.getOperand(1);
2996 if (!isBSwapHWordElement(N001, Parts))
2997 return SDValue();
2998 SDValue N010 = N01.getOperand(0);
2999 if (!isBSwapHWordElement(N010, Parts))
3000 return SDValue();
3001 SDValue N011 = N01.getOperand(1);
3002 if (!isBSwapHWordElement(N011, Parts))
3003 return SDValue();
3004 } else {
3005 // (or (or (or (and), (and)), (and)), (and))
3006 if (!isBSwapHWordElement(N1, Parts))
3007 return SDValue();
3008 if (!isBSwapHWordElement(N01, Parts))
3009 return SDValue();
3010 if (N00.getOpcode() != ISD::OR)
3011 return SDValue();
3012 SDValue N000 = N00.getOperand(0);
3013 if (!isBSwapHWordElement(N000, Parts))
3014 return SDValue();
3015 SDValue N001 = N00.getOperand(1);
3016 if (!isBSwapHWordElement(N001, Parts))
3017 return SDValue();
3018 }
3019
3020 // Make sure the parts are all coming from the same node.
3021 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
3022 return SDValue();
3023
3024 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
3025 SDValue(Parts[0],0));
3026
3027 // Result of the bswap should be rotated by 16. If it's not legal, than
3028 // do (x << 16) | (x >> 16).
3029 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
3030 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
3031 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
Craig Topper0eb5dad2012-09-29 07:18:53 +00003032 if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
Evan Cheng9568e5c2011-06-21 06:01:08 +00003033 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
3034 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
3035 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
3036 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
3037}
3038
Dan Gohman475871a2008-07-27 21:46:04 +00003039SDValue DAGCombiner::visitOR(SDNode *N) {
3040 SDValue N0 = N->getOperand(0);
3041 SDValue N1 = N->getOperand(1);
3042 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00003043 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3044 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003045 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003046
Dan Gohman7f321562007-06-25 16:23:39 +00003047 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003048 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003049 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003050 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00003051
3052 // fold (or x, 0) -> x, vector edition
3053 if (ISD::isBuildVectorAllZeros(N0.getNode()))
3054 return N1;
3055 if (ISD::isBuildVectorAllZeros(N1.getNode()))
3056 return N0;
3057
3058 // fold (or x, -1) -> -1, vector edition
3059 if (ISD::isBuildVectorAllOnes(N0.getNode()))
3060 return N0;
3061 if (ISD::isBuildVectorAllOnes(N1.getNode()))
3062 return N1;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003063 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003064
Dan Gohman613e0d82007-07-03 14:03:57 +00003065 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00003066 if (!LegalOperations &&
3067 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00003068 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
3069 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
3070 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003071 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003072 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003073 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003074 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003075 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00003076 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003077 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003078 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003079 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003080 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003081 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003082 return N1;
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003083 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003084 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003085 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00003086
3087 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
3088 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
3089 if (BSwap.getNode() != 0)
3090 return BSwap;
3091 BSwap = MatchBSwapHWordLow(N, N0, N1);
3092 if (BSwap.getNode() != 0)
3093 return BSwap;
3094
Nate Begemancd4d58c2006-02-03 06:46:56 +00003095 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00003096 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003097 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003098 return ROR;
3099 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003100 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003101 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003102 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003103 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003104 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003105 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
3106 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3107 N0.getOperand(0), N1),
3108 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003109 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003110 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3111 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3112 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3113 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003114
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003115 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003116 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003117 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3118 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003119 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003120 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003121 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
3122 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003123 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003124 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003125 }
Bill Wendling09025642009-01-30 20:59:34 +00003126 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3127 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003128 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003129 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003130 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
3131 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003132 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003133 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003134 }
3135 }
3136 // canonicalize equivalent to ll == rl
3137 if (LL == RR && LR == RL) {
3138 Op1 = ISD::getSetCCSwappedOperands(Op1);
3139 std::swap(RL, RR);
3140 }
3141 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003142 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003143 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003144 if (Result != ISD::SETCC_INVALID &&
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00003145 (!LegalOperations ||
3146 TLI.isCondCodeLegal(Result, LL.getSimpleValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00003147 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
3148 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003149 }
3150 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003151
Bill Wendling09025642009-01-30 20:59:34 +00003152 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003153 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003154 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003155 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003156 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003157
Bill Wendling09025642009-01-30 20:59:34 +00003158 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003159 if (N0.getOpcode() == ISD::AND &&
3160 N1.getOpcode() == ISD::AND &&
3161 N0.getOperand(1).getOpcode() == ISD::Constant &&
3162 N1.getOperand(1).getOpcode() == ISD::Constant &&
3163 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003164 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003165 // We can only do this xform if we know that bits from X that are set in C2
3166 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003167 const APInt &LHSMask =
3168 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3169 const APInt &RHSMask =
3170 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003171
Dan Gohmanea859be2007-06-22 14:59:07 +00003172 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3173 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003174 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3175 N0.getOperand(0), N1.getOperand(0));
3176 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3177 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003178 }
3179 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003180
Chris Lattner516b9622006-09-14 20:50:57 +00003181 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003182 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003183 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003184
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003185 // Simplify the operands using demanded-bits information.
3186 if (!VT.isVector() &&
3187 SimplifyDemandedBits(SDValue(N, 0)))
3188 return SDValue(N, 0);
3189
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003190 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003191}
3192
Chris Lattner516b9622006-09-14 20:50:57 +00003193/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003194static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003195 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003196 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003197 Mask = Op.getOperand(1);
3198 Op = Op.getOperand(0);
3199 } else {
3200 return false;
3201 }
3202 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003203
Chris Lattner516b9622006-09-14 20:50:57 +00003204 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3205 Shift = Op;
3206 return true;
3207 }
Bill Wendling09025642009-01-30 20:59:34 +00003208
Scott Michelfdc40a02009-02-17 22:15:04 +00003209 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003210}
3211
Chris Lattner516b9622006-09-14 20:50:57 +00003212// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3213// idioms for rotate, and if the target supports rotation instructions, generate
3214// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003215SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003216 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003217 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003218 if (!TLI.isTypeLegal(VT)) return 0;
3219
3220 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003221 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3222 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003223 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003224
Chris Lattner516b9622006-09-14 20:50:57 +00003225 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003226 SDValue LHSShift; // The shift.
3227 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003228 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3229 return 0; // Not part of a rotate.
3230
Dan Gohman475871a2008-07-27 21:46:04 +00003231 SDValue RHSShift; // The shift.
3232 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003233 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3234 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003235
Chris Lattner516b9622006-09-14 20:50:57 +00003236 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3237 return 0; // Not shifting the same value.
3238
3239 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3240 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003241
Chris Lattner516b9622006-09-14 20:50:57 +00003242 // Canonicalize shl to left side in a shl/srl pair.
3243 if (RHSShift.getOpcode() == ISD::SHL) {
3244 std::swap(LHS, RHS);
3245 std::swap(LHSShift, RHSShift);
3246 std::swap(LHSMask , RHSMask );
3247 }
3248
Duncan Sands83ec4b62008-06-06 12:08:01 +00003249 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003250 SDValue LHSShiftArg = LHSShift.getOperand(0);
3251 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3252 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003253
3254 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3255 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003256 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3257 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003258 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3259 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003260 if ((LShVal + RShVal) != OpSizeInBits)
3261 return 0;
3262
Craig Topper32b73432012-09-29 06:54:22 +00003263 SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3264 LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003265
Chris Lattner516b9622006-09-14 20:50:57 +00003266 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003267 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003268 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003269
Gabor Greifba36cb52008-08-28 21:40:38 +00003270 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003271 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3272 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003273 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003274 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003275 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3276 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003277 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003278
Bill Wendling317bd702009-01-30 21:14:50 +00003279 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003280 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003281
Gabor Greifba36cb52008-08-28 21:40:38 +00003282 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003283 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003284
Chris Lattner516b9622006-09-14 20:50:57 +00003285 // If there is a mask here, and we have a variable shift, we can't be sure
3286 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003287 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003288 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003289
Chris Lattner516b9622006-09-14 20:50:57 +00003290 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3291 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003292 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3293 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003294 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003295 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003296 if (SUBC->getAPIntValue() == OpSizeInBits) {
Craig Topper32b73432012-09-29 06:54:22 +00003297 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, LHSShiftArg,
3298 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003299 }
Chris Lattner516b9622006-09-14 20:50:57 +00003300 }
3301 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003302
Chris Lattner516b9622006-09-14 20:50:57 +00003303 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3304 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003305 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3306 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003307 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003308 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003309 if (SUBC->getAPIntValue() == OpSizeInBits) {
Craig Topper32b73432012-09-29 06:54:22 +00003310 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg,
3311 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003312 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003313 }
3314 }
3315
Dan Gohman74feef22008-10-17 01:23:35 +00003316 // Look for sign/zext/any-extended or truncate cases:
Craig Topper0eb5dad2012-09-29 07:18:53 +00003317 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3318 LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3319 LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3320 LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
3321 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3322 RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3323 RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3324 RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003325 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3326 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003327 if (RExtOp0.getOpcode() == ISD::SUB &&
3328 RExtOp0.getOperand(1) == LExtOp0) {
3329 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003330 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003331 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003332 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003333 if (ConstantSDNode *SUBC =
3334 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003335 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003336 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3337 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003338 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003339 }
3340 }
3341 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3342 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003343 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003344 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003345 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003346 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003347 if (ConstantSDNode *SUBC =
3348 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003349 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003350 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3351 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003352 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003353 }
3354 }
Chris Lattner516b9622006-09-14 20:50:57 +00003355 }
3356 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003357
Chris Lattner516b9622006-09-14 20:50:57 +00003358 return 0;
3359}
3360
Dan Gohman475871a2008-07-27 21:46:04 +00003361SDValue DAGCombiner::visitXOR(SDNode *N) {
3362 SDValue N0 = N->getOperand(0);
3363 SDValue N1 = N->getOperand(1);
3364 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003365 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3366 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003367 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003368
Dan Gohman7f321562007-06-25 16:23:39 +00003369 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003370 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003371 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003372 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00003373
3374 // fold (xor x, 0) -> x, vector edition
3375 if (ISD::isBuildVectorAllZeros(N0.getNode()))
3376 return N1;
3377 if (ISD::isBuildVectorAllZeros(N1.getNode()))
3378 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003379 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003380
Evan Cheng26471c42008-03-25 20:08:07 +00003381 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3382 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3383 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003384 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003385 if (N0.getOpcode() == ISD::UNDEF)
3386 return N0;
3387 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003388 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003389 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003390 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003391 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003392 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003393 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003394 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003395 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003396 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003397 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003398 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003399 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003400 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003401 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003402
Nate Begeman1d4d4142005-09-01 00:19:25 +00003403 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003404 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003405 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003406 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3407 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003408
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00003409 if (!LegalOperations ||
3410 TLI.isCondCodeLegal(NotCC, LHS.getSimpleValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003411 switch (N0.getOpcode()) {
3412 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003413 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003414 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003415 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003416 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003417 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003418 N0.getOperand(3), NotCC);
3419 }
3420 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003421 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003422
Chris Lattner61c5ff42007-09-10 21:39:07 +00003423 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003424 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003425 N0.getNode()->hasOneUse() &&
3426 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003427 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003428 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003429 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003430 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003431 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003432 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003433
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003434 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003435 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003436 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003437 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003438 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3439 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003440 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3441 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003442 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003443 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003444 }
3445 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003446 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003447 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003448 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003449 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003450 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3451 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003452 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3453 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003454 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003455 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003456 }
3457 }
Bill Wendling317bd702009-01-30 21:14:50 +00003458 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003459 if (N1C && N0.getOpcode() == ISD::XOR) {
3460 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3461 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3462 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003463 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3464 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003465 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003466 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003467 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3468 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003469 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003470 }
3471 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003472 if (N0 == N1)
3473 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003474
Chris Lattner35e5c142006-05-05 05:51:50 +00003475 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3476 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003477 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003478 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003479 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003480
Chris Lattner3e104b12006-04-08 04:15:24 +00003481 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003482 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003483 SimplifyDemandedBits(SDValue(N, 0)))
3484 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003485
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003486 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003487}
3488
Chris Lattnere70da202007-12-06 07:33:36 +00003489/// visitShiftByConstant - Handle transforms common to the three shifts, when
3490/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003491SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003492 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003493 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003494
Chris Lattnere70da202007-12-06 07:33:36 +00003495 // We want to pull some binops through shifts, so that we have (and (shift))
3496 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3497 // thing happens with address calculations, so it's important to canonicalize
3498 // it.
3499 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003500
Chris Lattnere70da202007-12-06 07:33:36 +00003501 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003502 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003503 case ISD::OR:
3504 case ISD::XOR:
3505 HighBitSet = false; // We can only transform sra if the high bit is clear.
3506 break;
3507 case ISD::AND:
3508 HighBitSet = true; // We can only transform sra if the high bit is set.
3509 break;
3510 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003511 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003512 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003513 HighBitSet = false; // We can only transform sra if the high bit is clear.
3514 break;
3515 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003516
Chris Lattnere70da202007-12-06 07:33:36 +00003517 // We require the RHS of the binop to be a constant as well.
3518 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003519 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003520
3521 // FIXME: disable this unless the input to the binop is a shift by a constant.
3522 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003523 //
Bill Wendling88103372009-01-30 21:37:17 +00003524 // void foo(int *X, int i) { X[i & 1235] = 1; }
3525 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003526 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003527 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003528 BinOpLHSVal->getOpcode() != ISD::SRA &&
3529 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3530 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003531 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003532
Owen Andersone50ed302009-08-10 22:56:29 +00003533 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003534
Bill Wendling88103372009-01-30 21:37:17 +00003535 // If this is a signed shift right, and the high bit is modified by the
3536 // logical operation, do not perform the transformation. The highBitSet
3537 // boolean indicates the value of the high bit of the constant which would
3538 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003539 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003540 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3541 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003542 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003543 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003544
Chris Lattnere70da202007-12-06 07:33:36 +00003545 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003546 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3547 N->getValueType(0),
3548 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003549
3550 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003551 SDValue NewShift = DAG.getNode(N->getOpcode(),
3552 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003553 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003554
3555 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003556 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003557}
3558
Dan Gohman475871a2008-07-27 21:46:04 +00003559SDValue DAGCombiner::visitSHL(SDNode *N) {
3560 SDValue N0 = N->getOperand(0);
3561 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003562 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3563 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003564 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003565 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003566
Nate Begeman1d4d4142005-09-01 00:19:25 +00003567 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003568 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003569 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003570 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003571 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003572 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003573 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003574 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003575 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003576 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003577 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003578 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003579 // fold (shl undef, x) -> 0
3580 if (N0.getOpcode() == ISD::UNDEF)
3581 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003582 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003583 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003584 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003585 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003586 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003587 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003588 N1.getOperand(0).getOpcode() == ISD::AND &&
3589 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003590 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003591 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003592 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003593 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003594 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003595 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003596 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003597 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3598 DAG.getNode(ISD::TRUNCATE,
3599 N->getDebugLoc(),
3600 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003601 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003602 }
3603 }
3604
Dan Gohman475871a2008-07-27 21:46:04 +00003605 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3606 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003607
3608 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003609 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003610 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003611 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3612 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003613 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003614 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003615 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003616 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003617 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003618
3619 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3620 // For this to be valid, the second form must not preserve any of the bits
3621 // that are shifted out by the inner shift in the first form. This means
3622 // the outer shift size must be >= the number of bits added by the ext.
3623 // As a corollary, we don't care what kind of ext it is.
3624 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3625 N0.getOpcode() == ISD::ANY_EXTEND ||
3626 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3627 N0.getOperand(0).getOpcode() == ISD::SHL &&
3628 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003629 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003630 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3631 uint64_t c2 = N1C->getZExtValue();
3632 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3633 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3634 if (c2 >= OpSizeInBits - InnerShiftSize) {
3635 if (c1 + c2 >= OpSizeInBits)
3636 return DAG.getConstant(0, VT);
3637 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3638 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3639 N0.getOperand(0)->getOperand(0)),
3640 DAG.getConstant(c1 + c2, N1.getValueType()));
3641 }
3642 }
3643
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003644 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3645 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003646 // Only fold this if the inner shift has no other uses -- if it does, folding
3647 // this will increase the total number of instructions.
3648 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003649 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003650 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003651 if (c1 < VT.getSizeInBits()) {
3652 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003653 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3654 VT.getSizeInBits() - c1);
3655 SDValue Shift;
3656 if (c2 > c1) {
3657 Mask = Mask.shl(c2-c1);
3658 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3659 DAG.getConstant(c2-c1, N1.getValueType()));
3660 } else {
3661 Mask = Mask.lshr(c1-c2);
3662 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3663 DAG.getConstant(c1-c2, N1.getValueType()));
3664 }
3665 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3666 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003667 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003668 }
Bill Wendling88103372009-01-30 21:37:17 +00003669 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003670 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3671 SDValue HiBitsMask =
3672 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3673 VT.getSizeInBits() -
3674 N1C->getZExtValue()),
3675 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003676 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003677 HiBitsMask);
3678 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003679
Evan Chenge5b51ac2010-04-17 06:13:15 +00003680 if (N1C) {
3681 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3682 if (NewSHL.getNode())
3683 return NewSHL;
3684 }
3685
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003686 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003687}
3688
Dan Gohman475871a2008-07-27 21:46:04 +00003689SDValue DAGCombiner::visitSRA(SDNode *N) {
3690 SDValue N0 = N->getOperand(0);
3691 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003692 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3693 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003694 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003695 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003696
Bill Wendling88103372009-01-30 21:37:17 +00003697 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003698 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003699 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003700 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003701 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003702 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003703 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003704 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003705 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003706 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003707 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003708 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003709 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003710 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003711 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003712 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3713 // sext_inreg.
3714 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003715 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003716 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3717 if (VT.isVector())
3718 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3719 ExtVT, VT.getVectorNumElements());
3720 if ((!LegalOperations ||
3721 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003722 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003723 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003724 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003725
Bill Wendling88103372009-01-30 21:37:17 +00003726 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003727 if (N1C && N0.getOpcode() == ISD::SRA) {
3728 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003729 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003730 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003731 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003732 DAG.getConstant(Sum, N1C->getValueType(0)));
3733 }
3734 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003735
Bill Wendling88103372009-01-30 21:37:17 +00003736 // fold (sra (shl X, m), (sub result_size, n))
3737 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003738 // result_size - n != m.
3739 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003740 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003741 if (N0.getOpcode() == ISD::SHL) {
3742 // Get the two constanst of the shifts, CN0 = m, CN = n.
3743 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3744 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003745 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003746 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003747 EVT::getIntegerVT(*DAG.getContext(),
3748 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003749 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003750 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003751
Scott Michelfdc40a02009-02-17 22:15:04 +00003752 // If the shift is not a no-op (in which case this should be just a sign
3753 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003754 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003755 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003756 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003757 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3758 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003759 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003760
Owen Anderson95771af2011-02-25 21:41:48 +00003761 SDValue Amt = DAG.getConstant(ShiftAmt,
3762 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003763 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3764 N0.getOperand(0), Amt);
3765 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3766 Shift);
3767 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3768 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003769 }
3770 }
3771 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003772
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003773 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003774 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003775 N1.getOperand(0).getOpcode() == ISD::AND &&
3776 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003777 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003778 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003779 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003780 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003781 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003782 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003783 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003784 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003785 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003786 DAG.getNode(ISD::TRUNCATE,
3787 N->getDebugLoc(),
3788 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003789 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003790 }
3791 }
3792
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003793 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3794 // if c1 is equal to the number of bits the trunc removes
3795 if (N0.getOpcode() == ISD::TRUNCATE &&
3796 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3797 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3798 N0.getOperand(0).hasOneUse() &&
3799 N0.getOperand(0).getOperand(1).hasOneUse() &&
3800 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3801 EVT LargeVT = N0.getOperand(0).getValueType();
3802 ConstantSDNode *LargeShiftAmt =
3803 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3804
3805 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3806 LargeShiftAmt->getZExtValue()) {
3807 SDValue Amt =
3808 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003809 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003810 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3811 N0.getOperand(0).getOperand(0), Amt);
3812 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3813 }
3814 }
3815
Scott Michelfdc40a02009-02-17 22:15:04 +00003816 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003817 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3818 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003819
3820
Nate Begeman1d4d4142005-09-01 00:19:25 +00003821 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003822 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003823 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003824
Evan Chenge5b51ac2010-04-17 06:13:15 +00003825 if (N1C) {
3826 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3827 if (NewSRA.getNode())
3828 return NewSRA;
3829 }
3830
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003831 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003832}
3833
Dan Gohman475871a2008-07-27 21:46:04 +00003834SDValue DAGCombiner::visitSRL(SDNode *N) {
3835 SDValue N0 = N->getOperand(0);
3836 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003837 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3838 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003839 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003840 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003841
Nate Begeman1d4d4142005-09-01 00:19:25 +00003842 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003843 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003844 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003845 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003846 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003847 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003848 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003849 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003850 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003851 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003852 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003853 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003854 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003855 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003856 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003857 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003858
Bill Wendling88103372009-01-30 21:37:17 +00003859 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003860 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003861 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003862 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3863 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003864 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003865 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003866 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003867 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003868 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003869
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003870 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003871 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3872 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003873 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003874 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003875 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3876 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003877 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3878 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003879 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003880 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003881 if (c1 + OpSizeInBits == InnerShiftSize) {
3882 if (c1 + c2 >= InnerShiftSize)
3883 return DAG.getConstant(0, VT);
3884 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003885 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003886 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003887 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003888 }
3889 }
3890
Chris Lattnerefcddc32010-04-15 05:28:43 +00003891 // fold (srl (shl x, c), c) -> (and x, cst2)
3892 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3893 N0.getValueSizeInBits() <= 64) {
3894 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3895 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3896 DAG.getConstant(~0ULL >> ShAmt, VT));
3897 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003898
Scott Michelfdc40a02009-02-17 22:15:04 +00003899
Chris Lattner06afe072006-05-05 22:53:17 +00003900 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3901 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3902 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003903 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003904 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003905 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003906
Evan Chenge5b51ac2010-04-17 06:13:15 +00003907 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003908 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003909 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003910 N0.getOperand(0),
3911 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003912 AddToWorkList(SmallShift.getNode());
3913 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3914 }
Chris Lattner06afe072006-05-05 22:53:17 +00003915 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003916
Chris Lattner3657ffe2006-10-12 20:23:19 +00003917 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3918 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003919 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003920 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003921 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003922 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003923
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003924 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003925 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003926 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003927 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003928 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003929
Chris Lattner350bec02006-04-02 06:11:11 +00003930 // If any of the input bits are KnownOne, then the input couldn't be all
3931 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003932 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003933
Chris Lattner350bec02006-04-02 06:11:11 +00003934 // If all of the bits input the to ctlz node are known to be zero, then
3935 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003936 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00003937 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003938
Chris Lattner350bec02006-04-02 06:11:11 +00003939 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003940 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003941 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003942 // could be set on input to the CTLZ node. If this bit is set, the SRL
3943 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3944 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003945 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003946 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003947
Chris Lattner350bec02006-04-02 06:11:11 +00003948 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003949 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003950 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003951 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003952 }
Bill Wendling88103372009-01-30 21:37:17 +00003953
3954 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3955 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003956 }
3957 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003958
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003959 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003960 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003961 N1.getOperand(0).getOpcode() == ISD::AND &&
3962 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003963 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003964 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003965 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003966 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003967 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003968 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003969 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003970 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003971 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003972 DAG.getNode(ISD::TRUNCATE,
3973 N->getDebugLoc(),
3974 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003975 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003976 }
3977 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003978
Chris Lattner61a4c072007-04-18 03:06:49 +00003979 // fold operands of srl based on knowledge that the low bits are not
3980 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003981 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3982 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003983
Evan Cheng9ab2b982009-12-18 21:31:31 +00003984 if (N1C) {
3985 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3986 if (NewSRL.getNode())
3987 return NewSRL;
3988 }
3989
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003990 // Attempt to convert a srl of a load into a narrower zero-extending load.
3991 SDValue NarrowLoad = ReduceLoadWidth(N);
3992 if (NarrowLoad.getNode())
3993 return NarrowLoad;
3994
Evan Cheng9ab2b982009-12-18 21:31:31 +00003995 // Here is a common situation. We want to optimize:
3996 //
3997 // %a = ...
3998 // %b = and i32 %a, 2
3999 // %c = srl i32 %b, 1
4000 // brcond i32 %c ...
4001 //
4002 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004003 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00004004 // %a = ...
4005 // %b = and %a, 2
4006 // %c = setcc eq %b, 0
4007 // brcond %c ...
4008 //
4009 // However when after the source operand of SRL is optimized into AND, the SRL
4010 // itself may not be optimized further. Look for it and add the BRCOND into
4011 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00004012 if (N->hasOneUse()) {
4013 SDNode *Use = *N->use_begin();
4014 if (Use->getOpcode() == ISD::BRCOND)
4015 AddToWorkList(Use);
4016 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
4017 // Also look pass the truncate.
4018 Use = *Use->use_begin();
4019 if (Use->getOpcode() == ISD::BRCOND)
4020 AddToWorkList(Use);
4021 }
4022 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00004023
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004024 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00004025}
4026
Dan Gohman475871a2008-07-27 21:46:04 +00004027SDValue DAGCombiner::visitCTLZ(SDNode *N) {
4028 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004029 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004030
4031 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004032 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004033 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004034 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004035}
4036
Chandler Carruth63974b22011-12-13 01:56:10 +00004037SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
4038 SDValue N0 = N->getOperand(0);
4039 EVT VT = N->getValueType(0);
4040
4041 // fold (ctlz_zero_undef c1) -> c2
4042 if (isa<ConstantSDNode>(N0))
4043 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
4044 return SDValue();
4045}
4046
Dan Gohman475871a2008-07-27 21:46:04 +00004047SDValue DAGCombiner::visitCTTZ(SDNode *N) {
4048 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004049 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004050
Nate Begeman1d4d4142005-09-01 00:19:25 +00004051 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004052 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004053 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004054 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004055}
4056
Chandler Carruth63974b22011-12-13 01:56:10 +00004057SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
4058 SDValue N0 = N->getOperand(0);
4059 EVT VT = N->getValueType(0);
4060
4061 // fold (cttz_zero_undef c1) -> c2
4062 if (isa<ConstantSDNode>(N0))
4063 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
4064 return SDValue();
4065}
4066
Dan Gohman475871a2008-07-27 21:46:04 +00004067SDValue DAGCombiner::visitCTPOP(SDNode *N) {
4068 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004069 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004070
Nate Begeman1d4d4142005-09-01 00:19:25 +00004071 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004072 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004073 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004074 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004075}
4076
Dan Gohman475871a2008-07-27 21:46:04 +00004077SDValue DAGCombiner::visitSELECT(SDNode *N) {
4078 SDValue N0 = N->getOperand(0);
4079 SDValue N1 = N->getOperand(1);
4080 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004081 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4082 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4083 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00004084 EVT VT = N->getValueType(0);
4085 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00004086
Bill Wendling34584e62009-01-30 22:02:18 +00004087 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004088 if (N1 == N2)
4089 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004090 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004091 if (N0C && !N0C->isNullValue())
4092 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004093 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00004094 if (N0C && N0C->isNullValue())
4095 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004096 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004097 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00004098 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4099 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004100 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004101 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004102 (VT0.isInteger() &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00004103 TLI.getBooleanContents(false) ==
4104 TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004105 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004106 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004107 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00004108 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
4109 N0, DAG.getConstant(1, VT0));
4110 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
4111 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004112 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004113 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00004114 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
4115 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004116 }
Bill Wendling34584e62009-01-30 22:02:18 +00004117 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004118 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00004119 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004120 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004121 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004122 }
Bill Wendling34584e62009-01-30 22:02:18 +00004123 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004124 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004125 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004126 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004127 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004128 }
Bill Wendling34584e62009-01-30 22:02:18 +00004129 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004130 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00004131 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
4132 // fold (select X, X, Y) -> (or X, Y)
4133 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004134 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00004135 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4136 // fold (select X, Y, X) -> (and X, Y)
4137 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004138 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00004139 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004140
Chris Lattner40c62d52005-10-18 06:04:22 +00004141 // If we can fold this based on the true/false value, do so.
4142 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004143 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004144
Nate Begeman44728a72005-09-19 22:34:01 +00004145 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004146 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004147 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004148 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004149 // having to say they don't support SELECT_CC on every type the DAG knows
4150 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004151 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004152 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004153 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4154 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004155 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004156 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004157 }
Bill Wendling34584e62009-01-30 22:02:18 +00004158
Dan Gohman475871a2008-07-27 21:46:04 +00004159 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004160}
4161
Dan Gohman475871a2008-07-27 21:46:04 +00004162SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4163 SDValue N0 = N->getOperand(0);
4164 SDValue N1 = N->getOperand(1);
4165 SDValue N2 = N->getOperand(2);
4166 SDValue N3 = N->getOperand(3);
4167 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004168 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004169
Nate Begeman44728a72005-09-19 22:34:01 +00004170 // fold select_cc lhs, rhs, x, x, cc -> x
4171 if (N2 == N3)
4172 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004173
Chris Lattner5f42a242006-09-20 06:19:26 +00004174 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004175 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004176 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004177 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004178
Gabor Greifba36cb52008-08-28 21:40:38 +00004179 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004180 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004181 return N2; // cond always true -> true val
4182 else
4183 return N3; // cond always false -> false val
4184 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004185
Chris Lattner5f42a242006-09-20 06:19:26 +00004186 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004187 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004188 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4189 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004190 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004191
Chris Lattner40c62d52005-10-18 06:04:22 +00004192 // If we can fold this based on the true/false value, do so.
4193 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004194 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004195
Nate Begeman44728a72005-09-19 22:34:01 +00004196 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004197 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004198}
4199
Dan Gohman475871a2008-07-27 21:46:04 +00004200SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004201 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004202 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4203 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004204}
4205
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004206// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004207// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004208// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004209// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004210static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004211 unsigned ExtOpc,
4212 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004213 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004214 bool HasCopyToRegUses = false;
4215 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004216 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4217 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004218 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004219 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004220 if (User == N)
4221 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004222 if (UI.getUse().getResNo() != N0.getResNo())
4223 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004224 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004225 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004226 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4227 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4228 // Sign bits will be lost after a zext.
4229 return false;
4230 bool Add = false;
4231 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004232 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004233 if (UseOp == N0)
4234 continue;
4235 if (!isa<ConstantSDNode>(UseOp))
4236 return false;
4237 Add = true;
4238 }
4239 if (Add)
4240 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004241 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004242 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004243 // If truncates aren't free and there are users we can't
4244 // extend, it isn't worthwhile.
4245 if (!isTruncFree)
4246 return false;
4247 // Remember if this value is live-out.
4248 if (User->getOpcode() == ISD::CopyToReg)
4249 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004250 }
4251
4252 if (HasCopyToRegUses) {
4253 bool BothLiveOut = false;
4254 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4255 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004256 SDUse &Use = UI.getUse();
4257 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4258 BothLiveOut = true;
4259 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004260 }
4261 }
4262 if (BothLiveOut)
4263 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004264 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004265 return ExtendNodes.size();
4266 }
4267 return true;
4268}
4269
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004270void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4271 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4272 ISD::NodeType ExtType) {
4273 // Extend SetCC uses if necessary.
4274 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4275 SDNode *SetCC = SetCCs[i];
4276 SmallVector<SDValue, 4> Ops;
4277
4278 for (unsigned j = 0; j != 2; ++j) {
4279 SDValue SOp = SetCC->getOperand(j);
4280 if (SOp == Trunc)
4281 Ops.push_back(ExtLoad);
4282 else
4283 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4284 }
4285
4286 Ops.push_back(SetCC->getOperand(2));
4287 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4288 &Ops[0], Ops.size()));
4289 }
4290}
4291
Dan Gohman475871a2008-07-27 21:46:04 +00004292SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4293 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004294 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004295
Nate Begeman1d4d4142005-09-01 00:19:25 +00004296 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004297 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004298 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004299
Nate Begeman1d4d4142005-09-01 00:19:25 +00004300 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004301 // fold (sext (aext x)) -> (sext x)
4302 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004303 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4304 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004305
Chris Lattner22558872007-02-26 03:13:59 +00004306 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004307 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4308 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004309 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4310 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004311 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4312 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004313 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004314 // CombineTo deleted the truncate, if needed, but not what's under it.
4315 AddToWorkList(oye);
4316 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004317 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004318 }
Evan Chengc88138f2007-03-22 01:54:19 +00004319
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004320 // See if the value being truncated is already sign extended. If so, just
4321 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004322 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004323 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4324 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4325 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004326 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004327
Chris Lattner22558872007-02-26 03:13:59 +00004328 if (OpBits == DestBits) {
4329 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4330 // bits, it is already ready.
4331 if (NumSignBits > DestBits-MidBits)
4332 return Op;
4333 } else if (OpBits < DestBits) {
4334 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4335 // bits, just sext from i32.
4336 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004337 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004338 } else {
4339 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4340 // bits, just truncate to i32.
4341 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004342 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004343 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004344
Chris Lattner22558872007-02-26 03:13:59 +00004345 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004346 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4347 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004348 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004349 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004350 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004351 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4352 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004353 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004354 }
Chris Lattner6007b842006-09-21 06:00:20 +00004355 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004356
Evan Cheng110dec22005-12-14 02:19:23 +00004357 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004358 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004359 // on vectors in one instruction. We only perform this transformation on
4360 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004361 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004362 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004363 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004364 bool DoXform = true;
4365 SmallVector<SDNode*, 4> SetCCs;
4366 if (!N0.hasOneUse())
4367 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4368 if (DoXform) {
4369 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004370 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004371 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004372 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004373 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004374 LN0->isVolatile(), LN0->isNonTemporal(),
4375 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004376 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004377 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4378 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004379 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004380 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4381 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004382 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004383 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004384 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004385
4386 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4387 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004388 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4389 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004390 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004391 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004392 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004393 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004394 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004395 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004396 LN0->getBasePtr(), LN0->getPointerInfo(),
4397 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004398 LN0->isVolatile(), LN0->isNonTemporal(),
4399 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004400 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004401 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004402 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4403 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004404 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004405 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004406 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004407 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004408
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004409 // fold (sext (and/or/xor (load x), cst)) ->
4410 // (and/or/xor (sextload x), (sext cst))
4411 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4412 N0.getOpcode() == ISD::XOR) &&
4413 isa<LoadSDNode>(N0.getOperand(0)) &&
4414 N0.getOperand(1).getOpcode() == ISD::Constant &&
4415 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4416 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4417 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4418 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4419 bool DoXform = true;
4420 SmallVector<SDNode*, 4> SetCCs;
4421 if (!N0.hasOneUse())
4422 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4423 SetCCs, TLI);
4424 if (DoXform) {
4425 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4426 LN0->getChain(), LN0->getBasePtr(),
4427 LN0->getPointerInfo(),
4428 LN0->getMemoryVT(),
4429 LN0->isVolatile(),
4430 LN0->isNonTemporal(),
4431 LN0->getAlignment());
4432 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4433 Mask = Mask.sext(VT.getSizeInBits());
4434 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4435 ExtLoad, DAG.getConstant(Mask, VT));
4436 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4437 N0.getOperand(0).getDebugLoc(),
4438 N0.getOperand(0).getValueType(), ExtLoad);
4439 CombineTo(N, And);
4440 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4441 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4442 ISD::SIGN_EXTEND);
4443 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4444 }
4445 }
4446 }
4447
Chris Lattner20a35c32007-04-11 05:32:27 +00004448 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004449 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004450 // Only do this before legalize for now.
4451 if (VT.isVector() && !LegalOperations) {
4452 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004453 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4454 // of the same size as the compared operands. Only optimize sext(setcc())
4455 // if this is the case.
4456 EVT SVT = TLI.getSetCCResultType(N0VT);
4457
4458 // We know that the # elements of the results is the same as the
4459 // # elements of the compare (and the # elements of the compare result
4460 // for that matter). Check to see that they are the same size. If so,
4461 // we know that the element size of the sext'd result matches the
4462 // element size of the compare operands.
4463 if (VT.getSizeInBits() == SVT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004464 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004465 N0.getOperand(1),
4466 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004467 // If the desired elements are smaller or larger than the source
4468 // elements we can use a matching integer vector type and then
4469 // truncate/sign extend
Craig Topper0eb5dad2012-09-29 07:18:53 +00004470 EVT MatchingElementType =
4471 EVT::getIntegerVT(*DAG.getContext(),
4472 N0VT.getScalarType().getSizeInBits());
4473 EVT MatchingVectorType =
4474 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4475 N0VT.getVectorNumElements());
Nadav Rotem2e506192012-04-11 08:26:11 +00004476
Craig Topper0eb5dad2012-09-29 07:18:53 +00004477 if (SVT == MatchingVectorType) {
4478 SDValue VsetCC = DAG.getSetCC(N->getDebugLoc(), MatchingVectorType,
4479 N0.getOperand(0), N0.getOperand(1),
4480 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4481 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Dan Gohman3ce89f42010-04-30 17:19:19 +00004482 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004483 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004484
Chris Lattner2b7a2712009-07-08 00:31:33 +00004485 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004486 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004487 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004488 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004489 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004490 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004491 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004492 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004493 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004494 if (!LegalOperations ||
4495 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4496 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4497 DAG.getSetCC(N->getDebugLoc(),
4498 TLI.getSetCCResultType(VT),
4499 N0.getOperand(0), N0.getOperand(1),
4500 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4501 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004502 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004503
Dan Gohman8f0ad582008-04-28 16:58:24 +00004504 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004505 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004506 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004507 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004508
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004509 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004510}
4511
Rafael Espindoladecbc432012-04-09 16:06:03 +00004512// isTruncateOf - If N is a truncate of some other value, return true, record
4513// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4514// This function computes KnownZero to avoid a duplicated call to
4515// ComputeMaskedBits in the caller.
4516static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4517 APInt &KnownZero) {
4518 APInt KnownOne;
4519 if (N->getOpcode() == ISD::TRUNCATE) {
4520 Op = N->getOperand(0);
4521 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4522 return true;
4523 }
4524
4525 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4526 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4527 return false;
4528
4529 SDValue Op0 = N->getOperand(0);
4530 SDValue Op1 = N->getOperand(1);
4531 assert(Op0.getValueType() == Op1.getValueType());
4532
4533 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4534 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004535 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004536 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004537 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004538 Op = Op0;
4539 else
4540 return false;
4541
4542 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4543
4544 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4545 return false;
4546
4547 return true;
4548}
4549
Dan Gohman475871a2008-07-27 21:46:04 +00004550SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4551 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004552 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004553
Nate Begeman1d4d4142005-09-01 00:19:25 +00004554 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004555 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004556 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004557 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004558 // fold (zext (aext x)) -> (zext x)
4559 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004560 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4561 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004562
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004563 // fold (zext (truncate x)) -> (zext x) or
4564 // (zext (truncate x)) -> (truncate x)
4565 // This is valid when the truncated bits of x are already zero.
4566 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004567 SDValue Op;
4568 APInt KnownZero;
4569 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4570 APInt TruncatedBits =
4571 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4572 APInt(Op.getValueSizeInBits(), 0) :
4573 APInt::getBitsSet(Op.getValueSizeInBits(),
4574 N0.getValueSizeInBits(),
4575 std::min(Op.getValueSizeInBits(),
4576 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004577 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004578 if (VT.bitsGT(Op.getValueType()))
4579 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4580 if (VT.bitsLT(Op.getValueType()))
4581 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4582
4583 return Op;
4584 }
4585 }
4586
Evan Chengc88138f2007-03-22 01:54:19 +00004587 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4588 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004589 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004590 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4591 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004592 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4593 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004594 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004595 // CombineTo deleted the truncate, if needed, but not what's under it.
4596 AddToWorkList(oye);
4597 }
Eli Friedmane545d382011-04-16 23:25:34 +00004598 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004599 }
Evan Chengc88138f2007-03-22 01:54:19 +00004600 }
4601
Chris Lattner6007b842006-09-21 06:00:20 +00004602 // fold (zext (truncate x)) -> (and x, mask)
4603 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004604 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004605
4606 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4607 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4608 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4609 if (NarrowLoad.getNode()) {
4610 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4611 if (NarrowLoad.getNode() != N0.getNode()) {
4612 CombineTo(N0.getNode(), NarrowLoad);
4613 // CombineTo deleted the truncate, if needed, but not what's under it.
4614 AddToWorkList(oye);
4615 }
4616 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4617 }
4618
Dan Gohman475871a2008-07-27 21:46:04 +00004619 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004620 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004621 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004622 AddToWorkList(Op.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004623 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004624 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004625 AddToWorkList(Op.getNode());
Chris Lattner6007b842006-09-21 06:00:20 +00004626 }
Dan Gohman87862e72009-12-11 21:31:27 +00004627 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4628 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004629 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004630
Dan Gohman97121ba2009-04-08 00:15:30 +00004631 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4632 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004633 if (N0.getOpcode() == ISD::AND &&
4634 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004635 N0.getOperand(1).getOpcode() == ISD::Constant &&
4636 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4637 N0.getValueType()) ||
4638 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004639 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004640 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004641 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004642 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004643 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004644 }
Dan Gohman220a8232008-03-03 23:51:38 +00004645 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004646 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004647 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4648 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004649 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004650
Evan Cheng110dec22005-12-14 02:19:23 +00004651 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004652 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004653 // on vectors in one instruction. We only perform this transformation on
4654 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004655 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004656 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004657 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004658 bool DoXform = true;
4659 SmallVector<SDNode*, 4> SetCCs;
4660 if (!N0.hasOneUse())
4661 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4662 if (DoXform) {
4663 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004664 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004665 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004666 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004667 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004668 LN0->isVolatile(), LN0->isNonTemporal(),
4669 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004670 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004671 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4672 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004673 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004674
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004675 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4676 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004677 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004678 }
Evan Cheng110dec22005-12-14 02:19:23 +00004679 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004680
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004681 // fold (zext (and/or/xor (load x), cst)) ->
4682 // (and/or/xor (zextload x), (zext cst))
4683 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4684 N0.getOpcode() == ISD::XOR) &&
4685 isa<LoadSDNode>(N0.getOperand(0)) &&
4686 N0.getOperand(1).getOpcode() == ISD::Constant &&
4687 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4688 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4689 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4690 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4691 bool DoXform = true;
4692 SmallVector<SDNode*, 4> SetCCs;
4693 if (!N0.hasOneUse())
4694 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4695 SetCCs, TLI);
4696 if (DoXform) {
4697 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4698 LN0->getChain(), LN0->getBasePtr(),
4699 LN0->getPointerInfo(),
4700 LN0->getMemoryVT(),
4701 LN0->isVolatile(),
4702 LN0->isNonTemporal(),
4703 LN0->getAlignment());
4704 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4705 Mask = Mask.zext(VT.getSizeInBits());
4706 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4707 ExtLoad, DAG.getConstant(Mask, VT));
4708 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4709 N0.getOperand(0).getDebugLoc(),
4710 N0.getOperand(0).getValueType(), ExtLoad);
4711 CombineTo(N, And);
4712 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4713 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4714 ISD::ZERO_EXTEND);
4715 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4716 }
4717 }
4718 }
4719
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004720 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4721 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004722 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4723 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004724 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004725 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004726 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004727 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004728 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004729 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004730 LN0->getBasePtr(), LN0->getPointerInfo(),
4731 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004732 LN0->isVolatile(), LN0->isNonTemporal(),
4733 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004734 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004735 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004736 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4737 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004738 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004739 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004740 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004741 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004742
Chris Lattner20a35c32007-04-11 05:32:27 +00004743 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004744 if (!LegalOperations && VT.isVector()) {
4745 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4746 // Only do this before legalize for now.
4747 EVT N0VT = N0.getOperand(0).getValueType();
4748 EVT EltVT = VT.getVectorElementType();
4749 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4750 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004751 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004752 // We know that the # elements of the results is the same as the
4753 // # elements of the compare (and the # elements of the compare result
4754 // for that matter). Check to see that they are the same size. If so,
4755 // we know that the element size of the sext'd result matches the
4756 // element size of the compare operands.
4757 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004758 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004759 N0.getOperand(1),
4760 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4761 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4762 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004763
4764 // If the desired elements are smaller or larger than the source
4765 // elements we can use a matching integer vector type and then
4766 // truncate/sign extend
4767 EVT MatchingElementType =
4768 EVT::getIntegerVT(*DAG.getContext(),
4769 N0VT.getScalarType().getSizeInBits());
4770 EVT MatchingVectorType =
4771 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4772 N0VT.getVectorNumElements());
4773 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004774 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004775 N0.getOperand(1),
4776 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4777 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4778 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4779 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4780 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004781 }
4782
4783 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004784 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004785 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004786 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004787 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004788 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004789 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004790
Evan Cheng9818c042009-12-15 03:00:32 +00004791 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004792 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004793 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004794 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4795 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004796 SDValue ShAmt = N0.getOperand(1);
4797 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004798 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004799 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004800 // If the original shl may be shifting out bits, do not perform this
4801 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004802 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4803 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4804 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004805 return SDValue();
4806 }
Chris Lattnere0751182011-02-13 19:09:16 +00004807
4808 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004809
4810 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004811 if (VT.getSizeInBits() >= 256)
4812 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004813
Chris Lattnere0751182011-02-13 19:09:16 +00004814 return DAG.getNode(N0.getOpcode(), DL, VT,
4815 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4816 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004817 }
4818
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004819 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004820}
4821
Dan Gohman475871a2008-07-27 21:46:04 +00004822SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4823 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004824 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004825
Chris Lattner5ffc0662006-05-05 05:58:59 +00004826 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004827 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004828 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004829 // fold (aext (aext x)) -> (aext x)
4830 // fold (aext (zext x)) -> (zext x)
4831 // fold (aext (sext x)) -> (sext x)
4832 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4833 N0.getOpcode() == ISD::ZERO_EXTEND ||
4834 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004835 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004836
Evan Chengc88138f2007-03-22 01:54:19 +00004837 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4838 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4839 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004840 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4841 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004842 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4843 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004844 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004845 // CombineTo deleted the truncate, if needed, but not what's under it.
4846 AddToWorkList(oye);
4847 }
Eli Friedmane545d382011-04-16 23:25:34 +00004848 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004849 }
Evan Chengc88138f2007-03-22 01:54:19 +00004850 }
4851
Chris Lattner84750582006-09-20 06:29:17 +00004852 // fold (aext (truncate x))
4853 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004854 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004855 if (TruncOp.getValueType() == VT)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00004856 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004857 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004858 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4859 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004860 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004861
Dan Gohman97121ba2009-04-08 00:15:30 +00004862 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4863 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004864 if (N0.getOpcode() == ISD::AND &&
4865 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004866 N0.getOperand(1).getOpcode() == ISD::Constant &&
4867 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4868 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004869 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004870 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004871 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004872 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004873 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004874 }
Dan Gohman220a8232008-03-03 23:51:38 +00004875 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004876 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004877 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4878 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004879 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004880
Chris Lattner5ffc0662006-05-05 05:58:59 +00004881 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004882 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004883 // on vectors in one instruction. We only perform this transformation on
4884 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004885 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004886 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004887 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004888 bool DoXform = true;
4889 SmallVector<SDNode*, 4> SetCCs;
4890 if (!N0.hasOneUse())
4891 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4892 if (DoXform) {
4893 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004894 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004895 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004896 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004897 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004898 LN0->isVolatile(), LN0->isNonTemporal(),
4899 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004900 CombineTo(N, ExtLoad);
4901 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4902 N0.getValueType(), ExtLoad);
4903 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004904 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4905 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004906 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4907 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004908 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004909
Chris Lattner5ffc0662006-05-05 05:58:59 +00004910 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4911 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4912 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004913 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004914 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004915 N0.hasOneUse()) {
4916 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004917 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004918 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4919 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004920 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004921 LN0->isVolatile(), LN0->isNonTemporal(),
4922 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004923 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004924 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004925 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4926 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004927 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004928 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004929 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004930
Chris Lattner20a35c32007-04-11 05:32:27 +00004931 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004932 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4933 // Only do this before legalize for now.
4934 if (VT.isVector() && !LegalOperations) {
4935 EVT N0VT = N0.getOperand(0).getValueType();
4936 // We know that the # elements of the results is the same as the
4937 // # elements of the compare (and the # elements of the compare result
4938 // for that matter). Check to see that they are the same size. If so,
4939 // we know that the element size of the sext'd result matches the
4940 // element size of the compare operands.
4941 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004942 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004943 N0.getOperand(1),
4944 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004945 // If the desired elements are smaller or larger than the source
4946 // elements we can use a matching integer vector type and then
4947 // truncate/sign extend
4948 else {
Duncan Sands34727662010-07-12 08:16:59 +00004949 EVT MatchingElementType =
4950 EVT::getIntegerVT(*DAG.getContext(),
4951 N0VT.getScalarType().getSizeInBits());
4952 EVT MatchingVectorType =
4953 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4954 N0VT.getVectorNumElements());
4955 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004956 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004957 N0.getOperand(1),
4958 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4959 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004960 }
4961 }
4962
4963 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004964 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004965 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004966 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004967 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004968 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004969 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004970 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004971
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004972 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004973}
4974
Chris Lattner2b4c2792007-10-13 06:35:54 +00004975/// GetDemandedBits - See if the specified operand can be simplified with the
4976/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004977/// simpler operand, otherwise return a null SDValue.
4978SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004979 switch (V.getOpcode()) {
4980 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004981 case ISD::Constant: {
4982 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4983 assert(CV != 0 && "Const value should be ConstSDNode.");
4984 const APInt &CVal = CV->getAPIntValue();
4985 APInt NewVal = CVal & Mask;
4986 if (NewVal != CVal) {
4987 return DAG.getConstant(NewVal, V.getValueType());
4988 }
4989 break;
4990 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004991 case ISD::OR:
4992 case ISD::XOR:
4993 // If the LHS or RHS don't contribute bits to the or, drop them.
4994 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4995 return V.getOperand(1);
4996 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4997 return V.getOperand(0);
4998 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004999 case ISD::SRL:
5000 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005001 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00005002 break;
5003 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
5004 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005005 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00005006
Dan Gohmancc91d632009-01-03 19:22:06 +00005007 // Watch out for shift count overflow though.
5008 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005009 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00005010 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00005011 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00005012 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00005013 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00005014 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00005015 }
Dan Gohman475871a2008-07-27 21:46:04 +00005016 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00005017}
5018
Evan Chengc88138f2007-03-22 01:54:19 +00005019/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
5020/// bits and then truncated to a narrower type and where N is a multiple
5021/// of number of bits of the narrower type, transform it to a narrower load
5022/// from address + N / num of bits of new type. If the result is to be
5023/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00005024SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00005025 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005026
Evan Chengc88138f2007-03-22 01:54:19 +00005027 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00005028 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005029 EVT VT = N->getValueType(0);
5030 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00005031
Dan Gohman7f8613e2008-08-14 20:04:46 +00005032 // This transformation isn't valid for vector loads.
5033 if (VT.isVector())
5034 return SDValue();
5035
Dan Gohmand1996362010-01-09 02:13:55 +00005036 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00005037 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00005038 if (Opc == ISD::SIGN_EXTEND_INREG) {
5039 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00005040 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005041 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00005042 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005043 ExtType = ISD::ZEXTLOAD;
5044 N0 = SDValue(N, 0);
5045 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
5046 if (!N01) return SDValue();
5047 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
5048 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00005049 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00005050 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
5051 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005052
Owen Andersone50ed302009-08-10 22:56:29 +00005053 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00005054
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005055 // Do not generate loads of non-round integer types since these can
5056 // be expensive (and would be wrong if the type is not byte sized).
5057 if (!ExtVT.isRound())
5058 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005059
Evan Chengc88138f2007-03-22 01:54:19 +00005060 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005061 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00005062 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005063 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005064 // Is the shift amount a multiple of size of VT?
5065 if ((ShAmt & (EVTBits-1)) == 0) {
5066 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00005067 // Is the load width a multiple of size of VT?
5068 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005069 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005070 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005071
Chris Lattnercbf68df2010-12-22 08:02:57 +00005072 // At this point, we must have a load or else we can't do the transform.
5073 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005074
Chandler Carruth1c49fda2012-12-11 00:36:57 +00005075 // Because a SRL must be assumed to *need* to zero-extend the high bits
5076 // (as opposed to anyext the high bits), we can't combine the zextload
5077 // lowering of SRL and an sextload.
5078 if (cast<LoadSDNode>(N0)->getExtensionType() == ISD::SEXTLOAD)
5079 return SDValue();
5080
Chris Lattner2831a192010-10-01 05:36:09 +00005081 // If the shift amount is larger than the input type then we're not
5082 // accessing any of the loaded bytes. If the load was a zextload/extload
5083 // then the result of the shift+trunc is zero/undef (handled elsewhere).
Chris Lattnercbf68df2010-12-22 08:02:57 +00005084 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00005085 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005086 }
5087 }
5088
Dan Gohman394d6292010-11-03 01:47:46 +00005089 // If the load is shifted left (and the result isn't shifted back right),
5090 // we can fold the truncate through the shift.
5091 unsigned ShLeftAmt = 0;
5092 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00005093 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00005094 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5095 ShLeftAmt = N01->getZExtValue();
5096 N0 = N0.getOperand(0);
5097 }
5098 }
Owen Anderson95771af2011-02-25 21:41:48 +00005099
Chris Lattner4c32bc22010-12-22 07:36:50 +00005100 // If we haven't found a load, we can't narrow it. Don't transform one with
5101 // multiple uses, this would require adding a new load.
5102 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
5103 // Don't change the width of a volatile load.
5104 cast<LoadSDNode>(N0)->isVolatile())
5105 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005106
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005107 // Verify that we are actually reducing a load width here.
5108 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005109 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005110
Chris Lattner4c32bc22010-12-22 07:36:50 +00005111 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5112 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005113
Evan Cheng16436df2012-06-26 01:19:33 +00005114 if (PtrType == MVT::Untyped || PtrType.isExtended())
5115 // It's not possible to generate a constant of extended or untyped type.
5116 return SDValue();
5117
Chris Lattner4c32bc22010-12-22 07:36:50 +00005118 // For big endian targets, we need to adjust the offset to the pointer to
5119 // load the correct bytes.
5120 if (TLI.isBigEndian()) {
5121 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5122 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5123 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005124 }
5125
Chris Lattner4c32bc22010-12-22 07:36:50 +00005126 uint64_t PtrOff = ShAmt / 8;
5127 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
5128 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
5129 PtrType, LN0->getBasePtr(),
5130 DAG.getConstant(PtrOff, PtrType));
5131 AddToWorkList(NewPtr.getNode());
5132
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005133 SDValue Load;
5134 if (ExtType == ISD::NON_EXTLOAD)
5135 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
5136 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005137 LN0->isVolatile(), LN0->isNonTemporal(),
5138 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005139 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00005140 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005141 LN0->getPointerInfo().getWithOffset(PtrOff),
5142 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5143 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005144
5145 // Replace the old load's chain with the new load's chain.
5146 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005147 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005148
5149 // Shift the result left, if we've swallowed a left shift.
5150 SDValue Result = Load;
5151 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005152 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005153 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5154 ShImmTy = VT;
5155 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
5156 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
5157 }
5158
5159 // Return the new loaded value.
5160 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005161}
5162
Dan Gohman475871a2008-07-27 21:46:04 +00005163SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5164 SDValue N0 = N->getOperand(0);
5165 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005166 EVT VT = N->getValueType(0);
5167 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005168 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005169 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005170
Nate Begeman1d4d4142005-09-01 00:19:25 +00005171 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005172 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00005173 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005174
Chris Lattner541a24f2006-05-06 22:43:44 +00005175 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005176 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005177 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005178
Nate Begeman646d7e22005-09-02 21:18:40 +00005179 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5180 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00005181 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00005182 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5183 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00005184 }
Chris Lattner4b37e872006-05-08 21:18:59 +00005185
Dan Gohman75dcf082008-07-31 00:50:31 +00005186 // fold (sext_in_reg (sext x)) -> (sext x)
5187 // fold (sext_in_reg (aext x)) -> (sext x)
5188 // if x is small enough.
5189 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5190 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005191 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5192 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00005193 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005194 }
5195
Chris Lattner95a5e052007-04-17 19:03:21 +00005196 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005197 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005198 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005199
Chris Lattner95a5e052007-04-17 19:03:21 +00005200 // fold operands of sext_in_reg based on knowledge that the top bits are not
5201 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005202 if (SimplifyDemandedBits(SDValue(N, 0)))
5203 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005204
Evan Chengc88138f2007-03-22 01:54:19 +00005205 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5206 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005207 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005208 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005209 return NarrowLoad;
5210
Bill Wendling8509c902009-01-30 22:33:24 +00005211 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005212 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005213 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5214 if (N0.getOpcode() == ISD::SRL) {
5215 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005216 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005217 // We can turn this into an SRA iff the input to the SRL is already sign
Chris Lattner4b37e872006-05-08 21:18:59 +00005218 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005219 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005220 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005221 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5222 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005223 }
5224 }
Evan Chengc88138f2007-03-22 01:54:19 +00005225
Nate Begemanded49632005-10-13 03:11:28 +00005226 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005227 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005228 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005229 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005230 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005231 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005232 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005233 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005234 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005235 LN0->getBasePtr(), LN0->getPointerInfo(),
5236 EVT,
David Greene1e559442010-02-15 17:00:31 +00005237 LN0->isVolatile(), LN0->isNonTemporal(),
5238 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005239 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005240 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Elena Demikhovsky4b977312012-12-19 07:50:20 +00005241 AddToWorkList(ExtLoad.getNode());
Dan Gohman475871a2008-07-27 21:46:04 +00005242 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005243 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005244 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005245 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005246 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005247 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005248 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005249 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005250 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005251 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005252 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005253 LN0->getBasePtr(), LN0->getPointerInfo(),
5254 EVT,
David Greene1e559442010-02-15 17:00:31 +00005255 LN0->isVolatile(), LN0->isNonTemporal(),
5256 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005257 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005258 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005259 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005260 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005261
5262 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5263 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5264 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5265 N0.getOperand(1), false);
5266 if (BSwap.getNode() != 0)
5267 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5268 BSwap, N1);
5269 }
5270
Dan Gohman475871a2008-07-27 21:46:04 +00005271 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005272}
5273
Dan Gohman475871a2008-07-27 21:46:04 +00005274SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5275 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005276 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005277 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005278
5279 // noop truncate
5280 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005281 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005282 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005283 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005284 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005285 // fold (truncate (truncate x)) -> (truncate x)
5286 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005287 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005288 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005289 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5290 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005291 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005292 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005293 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005294 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5295 N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005296 if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005297 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005298 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005299 // if the source and dest are the same type, we can drop both the extend
5300 // and the truncate.
5301 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005302 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005303
Nadav Rotemcc870a82012-02-05 11:39:23 +00005304 // Fold extract-and-trunc into a narrow extract. For example:
5305 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5306 // i32 y = TRUNCATE(i64 x)
5307 // -- becomes --
5308 // v16i8 b = BITCAST (v2i64 val)
5309 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5310 //
5311 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005312 // creates this pattern) and before operation legalization after which
5313 // we need to be more careful about the vector instructions that we generate.
5314 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5315 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5316
5317 EVT VecTy = N0.getOperand(0).getValueType();
5318 EVT ExTy = N0.getValueType();
5319 EVT TrTy = N->getValueType(0);
5320
5321 unsigned NumElem = VecTy.getVectorNumElements();
5322 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5323
5324 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5325 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5326
5327 SDValue EltNo = N0->getOperand(1);
5328 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5329 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005330 EVT IndexTy = N0->getOperand(1).getValueType();
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005331 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5332
5333 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5334 NVT, N0.getOperand(0));
5335
5336 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5337 N->getDebugLoc(), TrTy, V,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005338 DAG.getConstant(Index, IndexTy));
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005339 }
5340 }
5341
Chris Lattner2b4c2792007-10-13 06:35:54 +00005342 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005343 // only the low bits are being used.
5344 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005345 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005346 // may have different active low bits.
5347 if (!VT.isVector()) {
5348 SDValue Shorter =
5349 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5350 VT.getSizeInBits()));
5351 if (Shorter.getNode())
5352 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5353 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005354 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005355 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005356 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5357 SDValue Reduced = ReduceLoadWidth(N);
5358 if (Reduced.getNode())
5359 return Reduced;
5360 }
Michael Liao07edaf32012-10-17 23:45:54 +00005361 // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)),
5362 // where ... are all 'undef'.
5363 if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) {
5364 SmallVector<EVT, 8> VTs;
5365 SDValue V;
5366 unsigned Idx = 0;
5367 unsigned NumDefs = 0;
5368
5369 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
5370 SDValue X = N0.getOperand(i);
5371 if (X.getOpcode() != ISD::UNDEF) {
5372 V = X;
5373 Idx = i;
5374 NumDefs++;
5375 }
5376 // Stop if more than one members are non-undef.
5377 if (NumDefs > 1)
5378 break;
5379 VTs.push_back(EVT::getVectorVT(*DAG.getContext(),
5380 VT.getVectorElementType(),
5381 X.getValueType().getVectorNumElements()));
5382 }
5383
5384 if (NumDefs == 0)
5385 return DAG.getUNDEF(VT);
5386
5387 if (NumDefs == 1) {
5388 assert(V.getNode() && "The single defined operand is empty!");
5389 SmallVector<SDValue, 8> Opnds;
5390 for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
5391 if (i != Idx) {
5392 Opnds.push_back(DAG.getUNDEF(VTs[i]));
5393 continue;
5394 }
5395 SDValue NV = DAG.getNode(ISD::TRUNCATE, V.getDebugLoc(), VTs[i], V);
5396 AddToWorkList(NV.getNode());
5397 Opnds.push_back(NV);
5398 }
5399 return DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
5400 &Opnds[0], Opnds.size());
5401 }
5402 }
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005403
5404 // Simplify the operands using demanded-bits information.
5405 if (!VT.isVector() &&
5406 SimplifyDemandedBits(SDValue(N, 0)))
5407 return SDValue(N, 0);
5408
Evan Chenge5b51ac2010-04-17 06:13:15 +00005409 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005410}
5411
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005412static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005413 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005414 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005415 return Elt.getNode();
5416 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005417}
5418
5419/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005420/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005421SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005422 assert(N->getOpcode() == ISD::BUILD_PAIR);
5423
Nate Begemanabc01992009-06-05 21:37:30 +00005424 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5425 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005426 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5427 LD1->getPointerInfo().getAddrSpace() !=
5428 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005429 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005430 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005431
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005432 if (ISD::isNON_EXTLoad(LD2) &&
5433 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005434 // If both are volatile this would reduce the number of volatile loads.
5435 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005436 !LD1->isVolatile() &&
5437 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005438 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005439 unsigned Align = LD1->getAlignment();
Micah Villmow3574eca2012-10-08 16:38:25 +00005440 unsigned NewAlign = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005441 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005442
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005443 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005444 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005445 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005446 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005447 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005448 }
Bill Wendling67a67682009-01-30 22:44:24 +00005449
Dan Gohman475871a2008-07-27 21:46:04 +00005450 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005451}
5452
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005453SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005454 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005455 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005456
Dan Gohman7f321562007-06-25 16:23:39 +00005457 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5458 // Only do this before legalize, since afterward the target may be depending
5459 // on the bitconvert.
5460 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005461 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005462 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005463 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005464 bool isSimple = true;
5465 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5466 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5467 N0.getOperand(i).getOpcode() != ISD::Constant &&
5468 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005469 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005470 break;
5471 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005472
Owen Andersone50ed302009-08-10 22:56:29 +00005473 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005474 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005475 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005476 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005477 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005478 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005479
Dan Gohman3dd168d2008-09-05 01:58:21 +00005480 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005481 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005482 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005483 if (Res.getNode() != N) {
5484 if (!LegalOperations ||
5485 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5486 return Res;
5487
5488 // Folding it resulted in an illegal node, and it's too late to
5489 // do that. Clean up the old node and forego the transformation.
5490 // Ideally this won't happen very often, because instcombine
5491 // and the earlier dagcombine runs (where illegal nodes are
5492 // permitted) should have folded most of them already.
5493 DAG.DeleteNode(Res.getNode());
5494 }
Chris Lattner94683772005-12-23 05:30:37 +00005495 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005496
Bill Wendling67a67682009-01-30 22:44:24 +00005497 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005498 if (N0.getOpcode() == ISD::BITCAST)
5499 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005500 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005501
Chris Lattner57104102005-12-23 05:44:41 +00005502 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005503 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005504 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005505 // Do not change the width of a volatile load.
5506 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005507 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005508 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Micah Villmow3574eca2012-10-08 16:38:25 +00005509 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005510 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005511 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005512
Evan Cheng59d5b682007-05-07 21:27:48 +00005513 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005514 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005515 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005516 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005517 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005518 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005519 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005520 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005521 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005522 Load.getValue(1));
5523 return Load;
5524 }
Chris Lattner57104102005-12-23 05:44:41 +00005525 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005526
Bill Wendling67a67682009-01-30 22:44:24 +00005527 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5528 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005529 // This often reduces constant pool loads.
Owen Anderson29f60f32012-04-02 22:10:29 +00005530 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) ||
5531 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) &&
Nadav Rotem91a7e012012-09-13 14:54:28 +00005532 N0.getNode()->hasOneUse() && VT.isInteger() &&
5533 !VT.isVector() && !N0.getValueType().isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005534 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005535 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005536 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005537
Duncan Sands83ec4b62008-06-06 12:08:01 +00005538 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005539 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005540 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5541 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005542 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005543 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5544 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005545 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005546
Bill Wendling67a67682009-01-30 22:44:24 +00005547 // fold (bitconvert (fcopysign cst, x)) ->
5548 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5549 // Note that we don't handle (copysign x, cst) because this can always be
5550 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005551 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005552 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005553 VT.isInteger() && !VT.isVector()) {
5554 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005555 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005556 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005557 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005558 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005559 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005560
Duncan Sands25cf2272008-11-24 14:53:14 +00005561 // If X has a different width than the result/lhs, sext it or truncate it.
5562 unsigned VTWidth = VT.getSizeInBits();
5563 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005564 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005565 AddToWorkList(X.getNode());
5566 } else if (OrigXWidth > VTWidth) {
5567 // To get the sign bit in the right place, we have to shift it right
5568 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005569 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005570 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005571 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5572 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005573 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005574 AddToWorkList(X.getNode());
5575 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005576
Duncan Sands25cf2272008-11-24 14:53:14 +00005577 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005578 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005579 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005580 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005581
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005582 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005583 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005584 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005585 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005586 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005587
Bill Wendling67a67682009-01-30 22:44:24 +00005588 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005589 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005590 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005591
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005592 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005593 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005594 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5595 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005596 return CombineLD;
5597 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005598
Dan Gohman475871a2008-07-27 21:46:04 +00005599 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005600}
5601
Dan Gohman475871a2008-07-27 21:46:04 +00005602SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005603 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005604 return CombineConsecutiveLoads(N, VT);
5605}
5606
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005607/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005608/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005609/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005610SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005611ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005612 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005613
Chris Lattner6258fb22006-04-02 02:53:43 +00005614 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005615 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005616
Duncan Sands83ec4b62008-06-06 12:08:01 +00005617 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5618 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005619
Chris Lattner6258fb22006-04-02 02:53:43 +00005620 // If this is a conversion of N elements of one type to N elements of another
5621 // type, convert each element. This handles FP<->INT cases.
5622 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005623 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5624 BV->getValueType(0).getVectorNumElements());
5625
5626 // Due to the FP element handling below calling this routine recursively,
5627 // we can end up with a scalar-to-vector node here.
5628 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005629 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5630 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005631 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005632
Dan Gohman475871a2008-07-27 21:46:04 +00005633 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005634 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005635 SDValue Op = BV->getOperand(i);
5636 // If the vector element type is not legal, the BUILD_VECTOR operands
5637 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005638 if (Op.getValueType() != SrcEltVT)
5639 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005640 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005641 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005642 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005643 }
Evan Chenga87008d2009-02-25 22:49:59 +00005644 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5645 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005646 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005647
Chris Lattner6258fb22006-04-02 02:53:43 +00005648 // Otherwise, we're growing or shrinking the elements. To avoid having to
5649 // handle annoying details of growing/shrinking FP values, we convert them to
5650 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005651 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005652 // Convert the input float vector to a int vector where the elements are the
5653 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005654 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005655 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005656 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005657 SrcEltVT = IntVT;
5658 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005659
Chris Lattner6258fb22006-04-02 02:53:43 +00005660 // Now we know the input is an integer vector. If the output is a FP type,
5661 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005662 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005663 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005664 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005665 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005666
Chris Lattner6258fb22006-04-02 02:53:43 +00005667 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005668 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005669 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005670
Chris Lattner6258fb22006-04-02 02:53:43 +00005671 // Okay, we know the src/dst types are both integers of differing types.
5672 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005673 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005674 if (SrcBitSize < DstBitSize) {
5675 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005676
Dan Gohman475871a2008-07-27 21:46:04 +00005677 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005678 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005679 i += NumInputsPerOutput) {
5680 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005681 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005682 bool EltIsUndef = true;
5683 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5684 // Shift the previously computed bits over.
5685 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005686 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005687 if (Op.getOpcode() == ISD::UNDEF) continue;
5688 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005689
Jay Foad40f8f622010-12-07 08:25:19 +00005690 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005691 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005692 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005693
Chris Lattner6258fb22006-04-02 02:53:43 +00005694 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005695 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005696 else
5697 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5698 }
5699
Owen Anderson23b9b192009-08-12 00:36:31 +00005700 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005701 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5702 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005703 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005704
Chris Lattner6258fb22006-04-02 02:53:43 +00005705 // Finally, this must be the case where we are shrinking elements: each input
5706 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005707 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005708 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005709 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5710 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005711 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005712
Dan Gohman7f321562007-06-25 16:23:39 +00005713 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005714 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5715 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005716 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005717 continue;
5718 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005719
Jay Foad40f8f622010-12-07 08:25:19 +00005720 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5721 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005722
Chris Lattner6258fb22006-04-02 02:53:43 +00005723 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005724 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005725 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005726 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005727 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005728 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5729 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005730 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005731 }
5732
5733 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005734 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005735 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5736 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005737
Evan Chenga87008d2009-02-25 22:49:59 +00005738 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5739 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005740}
5741
Dan Gohman475871a2008-07-27 21:46:04 +00005742SDValue DAGCombiner::visitFADD(SDNode *N) {
5743 SDValue N0 = N->getOperand(0);
5744 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005745 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5746 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005747 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005748
Dan Gohman7f321562007-06-25 16:23:39 +00005749 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005750 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005751 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005752 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005753 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005754
Lang Hames01806942012-06-14 20:37:15 +00005755 // fold (fadd c1, c2) -> c1 + c2
Ulrich Weigande669c932012-10-29 18:35:49 +00005756 if (N0CFP && N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005757 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005758 // canonicalize constant to RHS
5759 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005760 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5761 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005762 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5763 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005764 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005765 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005766 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005767 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005768 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005769 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005770 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005771 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005772 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005773 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005774 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005775
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005776 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005777 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5778 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5779 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005780 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005781 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5782 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005783
Owen Anderson607ebde2012-11-01 02:00:53 +00005784 // If allow, fold (fadd (fneg x), x) -> 0.0
5785 if (DAG.getTarget().Options.UnsafeFPMath &&
5786 N0.getOpcode() == ISD::FNEG && N0.getOperand(0) == N1) {
5787 return DAG.getConstantFP(0.0, VT);
5788 }
5789
5790 // If allow, fold (fadd x, (fneg x)) -> 0.0
5791 if (DAG.getTarget().Options.UnsafeFPMath &&
5792 N1.getOpcode() == ISD::FNEG && N1.getOperand(0) == N0) {
5793 return DAG.getConstantFP(0.0, VT);
5794 }
5795
Owen Anderson43da6c72012-08-30 23:35:16 +00005796 // In unsafe math mode, we can fold chains of FADD's of the same value
5797 // into multiplications. This transform is not safe in general because
5798 // we are reducing the number of rounding steps.
5799 if (DAG.getTarget().Options.UnsafeFPMath &&
5800 TLI.isOperationLegalOrCustom(ISD::FMUL, VT) &&
5801 !N0CFP && !N1CFP) {
5802 if (N0.getOpcode() == ISD::FMUL) {
5803 ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
5804 ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
5805
5806 // (fadd (fmul c, x), x) -> (fmul c+1, x)
5807 if (CFP00 && !CFP01 && N0.getOperand(1) == N1) {
5808 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5809 SDValue(CFP00, 0),
5810 DAG.getConstantFP(1.0, VT));
5811 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5812 N1, NewCFP);
5813 }
5814
5815 // (fadd (fmul x, c), x) -> (fmul c+1, x)
5816 if (CFP01 && !CFP00 && N0.getOperand(0) == N1) {
5817 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5818 SDValue(CFP01, 0),
5819 DAG.getConstantFP(1.0, VT));
5820 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5821 N1, NewCFP);
5822 }
5823
5824 // (fadd (fadd x, x), x) -> (fmul 3.0, x)
5825 if (!CFP00 && !CFP01 && N0.getOperand(0) == N0.getOperand(1) &&
5826 N0.getOperand(0) == N1) {
5827 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5828 N1, DAG.getConstantFP(3.0, VT));
5829 }
5830
5831 // (fadd (fmul c, x), (fadd x, x)) -> (fmul c+2, x)
5832 if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD &&
5833 N1.getOperand(0) == N1.getOperand(1) &&
5834 N0.getOperand(1) == N1.getOperand(0)) {
5835 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5836 SDValue(CFP00, 0),
5837 DAG.getConstantFP(2.0, VT));
5838 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5839 N0.getOperand(1), NewCFP);
5840 }
5841
5842 // (fadd (fmul x, c), (fadd x, x)) -> (fmul c+2, x)
5843 if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD &&
5844 N1.getOperand(0) == N1.getOperand(1) &&
5845 N0.getOperand(0) == N1.getOperand(0)) {
5846 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5847 SDValue(CFP01, 0),
5848 DAG.getConstantFP(2.0, VT));
5849 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5850 N0.getOperand(0), NewCFP);
5851 }
5852 }
5853
5854 if (N1.getOpcode() == ISD::FMUL) {
5855 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
5856 ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1));
5857
5858 // (fadd x, (fmul c, x)) -> (fmul c+1, x)
5859 if (CFP10 && !CFP11 && N1.getOperand(1) == N0) {
5860 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5861 SDValue(CFP10, 0),
5862 DAG.getConstantFP(1.0, VT));
5863 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5864 N0, NewCFP);
5865 }
5866
5867 // (fadd x, (fmul x, c)) -> (fmul c+1, x)
5868 if (CFP11 && !CFP10 && N1.getOperand(0) == N0) {
5869 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5870 SDValue(CFP11, 0),
5871 DAG.getConstantFP(1.0, VT));
5872 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5873 N0, NewCFP);
5874 }
5875
5876 // (fadd x, (fadd x, x)) -> (fmul 3.0, x)
5877 if (!CFP10 && !CFP11 && N1.getOperand(0) == N1.getOperand(1) &&
5878 N1.getOperand(0) == N0) {
5879 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5880 N0, DAG.getConstantFP(3.0, VT));
5881 }
5882
5883 // (fadd (fadd x, x), (fmul c, x)) -> (fmul c+2, x)
5884 if (CFP10 && !CFP11 && N1.getOpcode() == ISD::FADD &&
5885 N1.getOperand(0) == N1.getOperand(1) &&
5886 N0.getOperand(1) == N1.getOperand(0)) {
5887 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5888 SDValue(CFP10, 0),
5889 DAG.getConstantFP(2.0, VT));
5890 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5891 N0.getOperand(1), NewCFP);
5892 }
5893
5894 // (fadd (fadd x, x), (fmul x, c)) -> (fmul c+2, x)
5895 if (CFP11 && !CFP10 && N1.getOpcode() == ISD::FADD &&
5896 N1.getOperand(0) == N1.getOperand(1) &&
5897 N0.getOperand(0) == N1.getOperand(0)) {
5898 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5899 SDValue(CFP11, 0),
5900 DAG.getConstantFP(2.0, VT));
5901 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5902 N0.getOperand(0), NewCFP);
5903 }
5904 }
5905
5906 // (fadd (fadd x, x), (fadd x, x)) -> (fmul 4.0, x)
5907 if (N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD &&
5908 N0.getOperand(0) == N0.getOperand(1) &&
5909 N1.getOperand(0) == N1.getOperand(1) &&
5910 N0.getOperand(0) == N1.getOperand(0)) {
5911 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5912 N0.getOperand(0),
5913 DAG.getConstantFP(4.0, VT));
5914 }
5915 }
5916
Lang Hamesd693caf2012-06-19 22:51:23 +00005917 // FADD -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005918 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005919 DAG.getTarget().Options.UnsafeFPMath) &&
5920 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005921 TLI.isOperationLegalOrCustom(ISD::FMA, VT)) {
Lang Hamesd693caf2012-06-19 22:51:23 +00005922
5923 // fold (fadd (fmul x, y), z) -> (fma x, y, z)
5924 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
5925 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5926 N0.getOperand(0), N0.getOperand(1), N1);
5927 }
Owen Anderson43da6c72012-08-30 23:35:16 +00005928
Michael Liaob79bff52012-09-01 04:09:16 +00005929 // fold (fadd x, (fmul y, z)) -> (fma y, z, x)
Lang Hamesd693caf2012-06-19 22:51:23 +00005930 // Note: Commutes FADD operands.
5931 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
5932 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5933 N1.getOperand(0), N1.getOperand(1), N0);
5934 }
5935 }
5936
Dan Gohman475871a2008-07-27 21:46:04 +00005937 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005938}
5939
Dan Gohman475871a2008-07-27 21:46:04 +00005940SDValue DAGCombiner::visitFSUB(SDNode *N) {
5941 SDValue N0 = N->getOperand(0);
5942 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005943 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5944 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005945 EVT VT = N->getValueType(0);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005946 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005947
Dan Gohman7f321562007-06-25 16:23:39 +00005948 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005949 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005950 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005951 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005952 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005953
Nate Begemana0e221d2005-10-18 00:28:13 +00005954 // fold (fsub c1, c2) -> c1-c2
Ulrich Weigande669c932012-10-29 18:35:49 +00005955 if (N0CFP && N1CFP)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005956 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005957 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005958 if (DAG.getTarget().Options.UnsafeFPMath &&
5959 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005960 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005961 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005962 if (DAG.getTarget().Options.UnsafeFPMath &&
5963 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005964 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005965 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005966 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005967 return DAG.getNode(ISD::FNEG, dl, VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005968 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005969 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005970 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005971 return DAG.getNode(ISD::FADD, dl, VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005972 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005973
Bill Wendling5a894342012-03-15 05:12:00 +00005974 // If 'unsafe math' is enabled, fold
Owen Anderson713e9532012-05-07 20:51:25 +00005975 // (fsub x, x) -> 0.0 &
Bill Wendling5a894342012-03-15 05:12:00 +00005976 // (fsub x, (fadd x, y)) -> (fneg y) &
5977 // (fsub x, (fadd y, x)) -> (fneg y)
5978 if (DAG.getTarget().Options.UnsafeFPMath) {
Owen Anderson713e9532012-05-07 20:51:25 +00005979 if (N0 == N1)
5980 return DAG.getConstantFP(0.0f, VT);
5981
Bill Wendling5a894342012-03-15 05:12:00 +00005982 if (N1.getOpcode() == ISD::FADD) {
5983 SDValue N10 = N1->getOperand(0);
5984 SDValue N11 = N1->getOperand(1);
5985
5986 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
5987 &DAG.getTarget().Options))
5988 return GetNegatedExpression(N11, DAG, LegalOperations);
5989 else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
5990 &DAG.getTarget().Options))
5991 return GetNegatedExpression(N10, DAG, LegalOperations);
5992 }
5993 }
5994
Lang Hamesd693caf2012-06-19 22:51:23 +00005995 // FSUB -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005996 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005997 DAG.getTarget().Options.UnsafeFPMath) &&
5998 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005999 TLI.isOperationLegalOrCustom(ISD::FMA, VT)) {
Lang Hamesd693caf2012-06-19 22:51:23 +00006000
6001 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z))
6002 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006003 return DAG.getNode(ISD::FMA, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006004 N0.getOperand(0), N0.getOperand(1),
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006005 DAG.getNode(ISD::FNEG, dl, VT, N1));
Lang Hamesd693caf2012-06-19 22:51:23 +00006006 }
6007
6008 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x)
6009 // Note: Commutes FSUB operands.
6010 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006011 return DAG.getNode(ISD::FMA, dl, VT,
6012 DAG.getNode(ISD::FNEG, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006013 N1.getOperand(0)),
6014 N1.getOperand(1), N0);
6015 }
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006016
6017 // fold (fsub (-(fmul, x, y)), z) -> (fma (fneg x), y, (fneg z))
6018 if (N0.getOpcode() == ISD::FNEG &&
6019 N0.getOperand(0).getOpcode() == ISD::FMUL &&
6020 N0->hasOneUse() && N0.getOperand(0).hasOneUse()) {
6021 SDValue N00 = N0.getOperand(0).getOperand(0);
6022 SDValue N01 = N0.getOperand(0).getOperand(1);
6023 return DAG.getNode(ISD::FMA, dl, VT,
6024 DAG.getNode(ISD::FNEG, dl, VT, N00), N01,
6025 DAG.getNode(ISD::FNEG, dl, VT, N1));
6026 }
Lang Hamesd693caf2012-06-19 22:51:23 +00006027 }
6028
Dan Gohman475871a2008-07-27 21:46:04 +00006029 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006030}
6031
Dan Gohman475871a2008-07-27 21:46:04 +00006032SDValue DAGCombiner::visitFMUL(SDNode *N) {
6033 SDValue N0 = N->getOperand(0);
6034 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00006035 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6036 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006037 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006038 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006039
Dan Gohman7f321562007-06-25 16:23:39 +00006040 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006041 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006042 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006043 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006044 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006045
Nate Begeman11af4ea2005-10-17 20:40:11 +00006046 // fold (fmul c1, c2) -> c1*c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006047 if (N0CFP && N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006048 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00006049 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00006050 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006051 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
6052 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006053 if (DAG.getTarget().Options.UnsafeFPMath &&
6054 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00006055 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00006056 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006057 if (DAG.getTarget().Options.UnsafeFPMath &&
6058 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00006059 return N1;
Owen Anderson363e4b92012-05-02 21:32:35 +00006060 // fold (fmul A, 1.0) -> A
6061 if (N1CFP && N1CFP->isExactlyValue(1.0))
6062 return N0;
Nate Begeman11af4ea2005-10-17 20:40:11 +00006063 // fold (fmul X, 2.0) -> (fadd X, X)
6064 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006065 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00006066 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00006067 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00006068 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006069 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006070
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006071 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006072 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006073 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006074 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006075 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006076 // Both can be negated for free, check to see if at least one is cheaper
6077 // negated.
6078 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006079 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006080 GetNegatedExpression(N0, DAG, LegalOperations),
6081 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006082 }
6083 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006084
Chris Lattnerddae4bd2007-01-08 23:04:05 +00006085 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006086 if (DAG.getTarget().Options.UnsafeFPMath &&
6087 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006088 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006089 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00006090 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00006091 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006092
Dan Gohman475871a2008-07-27 21:46:04 +00006093 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006094}
6095
Owen Anderson062c0a52012-05-02 22:17:40 +00006096SDValue DAGCombiner::visitFMA(SDNode *N) {
6097 SDValue N0 = N->getOperand(0);
6098 SDValue N1 = N->getOperand(1);
6099 SDValue N2 = N->getOperand(2);
6100 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6101 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6102 EVT VT = N->getValueType(0);
Owen Anderson58d57292012-09-01 06:04:27 +00006103 DebugLoc dl = N->getDebugLoc();
Owen Anderson062c0a52012-05-02 22:17:40 +00006104
Owen Anderson607ebde2012-11-01 02:00:53 +00006105 if (DAG.getTarget().Options.UnsafeFPMath) {
6106 if (N0CFP && N0CFP->isZero())
6107 return N2;
6108 if (N1CFP && N1CFP->isZero())
6109 return N2;
6110 }
Owen Anderson062c0a52012-05-02 22:17:40 +00006111 if (N0CFP && N0CFP->isExactlyValue(1.0))
6112 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N2);
6113 if (N1CFP && N1CFP->isExactlyValue(1.0))
6114 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N2);
6115
Owen Anderson85ef6f42012-05-30 18:50:39 +00006116 // Canonicalize (fma c, x, y) -> (fma x, c, y)
Owen Andersonf917d202012-05-30 18:54:50 +00006117 if (N0CFP && !N1CFP)
Owen Anderson85ef6f42012-05-30 18:50:39 +00006118 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, N1, N0, N2);
6119
Owen Anderson58d57292012-09-01 06:04:27 +00006120 // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2)
6121 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6122 N2.getOpcode() == ISD::FMUL &&
6123 N0 == N2.getOperand(0) &&
6124 N2.getOperand(1).getOpcode() == ISD::ConstantFP) {
6125 return DAG.getNode(ISD::FMUL, dl, VT, N0,
6126 DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1)));
6127 }
6128
6129
6130 // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y)
6131 if (DAG.getTarget().Options.UnsafeFPMath &&
6132 N0.getOpcode() == ISD::FMUL && N1CFP &&
6133 N0.getOperand(1).getOpcode() == ISD::ConstantFP) {
6134 return DAG.getNode(ISD::FMA, dl, VT,
6135 N0.getOperand(0),
6136 DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)),
6137 N2);
6138 }
6139
6140 // (fma x, 1, y) -> (fadd x, y)
6141 // (fma x, -1, y) -> (fadd (fneg x), y)
6142 if (N1CFP) {
6143 if (N1CFP->isExactlyValue(1.0))
6144 return DAG.getNode(ISD::FADD, dl, VT, N0, N2);
6145
6146 if (N1CFP->isExactlyValue(-1.0) &&
6147 (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) {
6148 SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0);
6149 AddToWorkList(RHSNeg.getNode());
6150 return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg);
6151 }
6152 }
6153
6154 // (fma x, c, x) -> (fmul x, (c+1))
6155 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2) {
6156 return DAG.getNode(ISD::FMUL, dl, VT,
6157 N0,
6158 DAG.getNode(ISD::FADD, dl, VT,
6159 N1, DAG.getConstantFP(1.0, VT)));
6160 }
6161
6162 // (fma x, c, (fneg x)) -> (fmul x, (c-1))
6163 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6164 N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0) {
6165 return DAG.getNode(ISD::FMUL, dl, VT,
6166 N0,
6167 DAG.getNode(ISD::FADD, dl, VT,
6168 N1, DAG.getConstantFP(-1.0, VT)));
6169 }
6170
6171
Owen Anderson062c0a52012-05-02 22:17:40 +00006172 return SDValue();
6173}
6174
Dan Gohman475871a2008-07-27 21:46:04 +00006175SDValue DAGCombiner::visitFDIV(SDNode *N) {
6176 SDValue N0 = N->getOperand(0);
6177 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006178 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6179 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006180 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006181 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006182
Dan Gohman7f321562007-06-25 16:23:39 +00006183 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006184 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006185 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006186 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006187 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006188
Nate Begemana148d982006-01-18 22:35:16 +00006189 // fold (fdiv c1, c2) -> c1/c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006190 if (N0CFP && N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006191 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006192
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00006193 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
Ulrich Weigande669c932012-10-29 18:35:49 +00006194 if (N1CFP && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00006195 // Compute the reciprocal 1.0 / c2.
6196 APFloat N1APF = N1CFP->getValueAPF();
6197 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
6198 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00006199 // Only do the transform if the reciprocal is a legal fp immediate that
6200 // isn't too nasty (eg NaN, denormal, ...).
6201 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00006202 (!LegalOperations ||
6203 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
6204 // backend)... we should handle this gracefully after Legalize.
6205 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
6206 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
6207 TLI.isFPImmLegal(Recip, VT)))
Duncan Sands961d6662012-04-07 20:04:00 +00006208 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0,
6209 DAG.getConstantFP(Recip, VT));
6210 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006211
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006212 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006213 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006214 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006215 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006216 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006217 // Both can be negated for free, check to see if at least one is cheaper
6218 // negated.
6219 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00006220 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006221 GetNegatedExpression(N0, DAG, LegalOperations),
6222 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006223 }
6224 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006225
Dan Gohman475871a2008-07-27 21:46:04 +00006226 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006227}
6228
Dan Gohman475871a2008-07-27 21:46:04 +00006229SDValue DAGCombiner::visitFREM(SDNode *N) {
6230 SDValue N0 = N->getOperand(0);
6231 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006232 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6233 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006234 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00006235
Nate Begemana148d982006-01-18 22:35:16 +00006236 // fold (frem c1, c2) -> fmod(c1,c2)
Ulrich Weigande669c932012-10-29 18:35:49 +00006237 if (N0CFP && N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006238 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00006239
Dan Gohman475871a2008-07-27 21:46:04 +00006240 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006241}
6242
Dan Gohman475871a2008-07-27 21:46:04 +00006243SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
6244 SDValue N0 = N->getOperand(0);
6245 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00006246 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6247 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006248 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00006249
Ulrich Weigande669c932012-10-29 18:35:49 +00006250 if (N0CFP && N1CFP) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00006251 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006252
Chris Lattner12d83032006-03-05 05:30:57 +00006253 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00006254 const APFloat& V = N1CFP->getValueAPF();
Sylvestre Ledru94c22712012-09-27 10:14:43 +00006255 // copysign(x, c1) -> fabs(x) iff ispos(c1)
6256 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00006257 if (!V.isNegative()) {
6258 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006259 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00006260 } else {
6261 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006262 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00006263 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00006264 }
Chris Lattner12d83032006-03-05 05:30:57 +00006265 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006266
Chris Lattner12d83032006-03-05 05:30:57 +00006267 // copysign(fabs(x), y) -> copysign(x, y)
6268 // copysign(fneg(x), y) -> copysign(x, y)
6269 // copysign(copysign(x,z), y) -> copysign(x, y)
6270 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
6271 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006272 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6273 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00006274
6275 // copysign(x, abs(y)) -> abs(x)
6276 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006277 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006278
Chris Lattner12d83032006-03-05 05:30:57 +00006279 // copysign(x, copysign(y,z)) -> copysign(x, z)
6280 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006281 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6282 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006283
Chris Lattner12d83032006-03-05 05:30:57 +00006284 // copysign(x, fp_extend(y)) -> copysign(x, y)
6285 // copysign(x, fp_round(y)) -> copysign(x, y)
6286 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006287 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6288 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006289
Dan Gohman475871a2008-07-27 21:46:04 +00006290 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00006291}
6292
Dan Gohman475871a2008-07-27 21:46:04 +00006293SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
6294 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006295 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006296 EVT VT = N->getValueType(0);
6297 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00006298
Nate Begeman1d4d4142005-09-01 00:19:25 +00006299 // fold (sint_to_fp c1) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006300 if (N0C &&
Stuart Hastings7e334182011-03-02 19:36:30 +00006301 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006302 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006303 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006304 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006305
Chris Lattnercda88752008-06-26 00:16:49 +00006306 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
6307 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006308 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
6309 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006310 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006311 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006312 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006313 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006314
Nadav Rotemed1a3352012-07-23 07:59:50 +00006315 // The next optimizations are desireable only if SELECT_CC can be lowered.
6316 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6317 // having to say they don't support SELECT_CC on every type the DAG knows
6318 // about, since there is no way to mark an opcode illegal at all value types
6319 // (See also visitSELECT)
6320 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6321 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6322 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 &&
6323 !VT.isVector() &&
6324 (!LegalOperations ||
6325 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6326 SDValue Ops[] =
6327 { N0.getOperand(0), N0.getOperand(1),
6328 DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT),
6329 N0.getOperand(2) };
6330 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6331 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006332
Nadav Rotemed1a3352012-07-23 07:59:50 +00006333 // fold (sint_to_fp (zext (setcc x, y, cc))) ->
6334 // (select_cc x, y, 1.0, 0.0,, cc)
6335 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
6336 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() &&
6337 (!LegalOperations ||
6338 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6339 SDValue Ops[] =
6340 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1),
6341 DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT),
6342 N0.getOperand(0).getOperand(2) };
6343 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6344 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006345 }
6346
Dan Gohman475871a2008-07-27 21:46:04 +00006347 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006348}
6349
Dan Gohman475871a2008-07-27 21:46:04 +00006350SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
6351 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006352 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006353 EVT VT = N->getValueType(0);
6354 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00006355
Nate Begeman1d4d4142005-09-01 00:19:25 +00006356 // fold (uint_to_fp c1) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006357 if (N0C &&
Stuart Hastings7e334182011-03-02 19:36:30 +00006358 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006359 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006360 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006361 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006362
Chris Lattnercda88752008-06-26 00:16:49 +00006363 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6364 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006365 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6366 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006367 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006368 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006369 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006370 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006371
Nadav Rotemed1a3352012-07-23 07:59:50 +00006372 // The next optimizations are desireable only if SELECT_CC can be lowered.
6373 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6374 // having to say they don't support SELECT_CC on every type the DAG knows
6375 // about, since there is no way to mark an opcode illegal at all value types
6376 // (See also visitSELECT)
6377 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6378 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
Owen Andersond9bf71f2012-07-09 20:31:12 +00006379
Nadav Rotemed1a3352012-07-23 07:59:50 +00006380 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() &&
6381 (!LegalOperations ||
6382 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6383 SDValue Ops[] =
6384 { N0.getOperand(0), N0.getOperand(1),
6385 DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT),
6386 N0.getOperand(2) };
6387 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6388 }
6389 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006390
Dan Gohman475871a2008-07-27 21:46:04 +00006391 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006392}
6393
Dan Gohman475871a2008-07-27 21:46:04 +00006394SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
6395 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006396 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006397 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006398
Nate Begeman1d4d4142005-09-01 00:19:25 +00006399 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00006400 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006401 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
6402
Dan Gohman475871a2008-07-27 21:46:04 +00006403 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006404}
6405
Dan Gohman475871a2008-07-27 21:46:04 +00006406SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
6407 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006408 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006409 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006410
Nate Begeman1d4d4142005-09-01 00:19:25 +00006411 // fold (fp_to_uint c1fp) -> c1
Ulrich Weigande669c932012-10-29 18:35:49 +00006412 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006413 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
6414
Dan Gohman475871a2008-07-27 21:46:04 +00006415 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006416}
6417
Dan Gohman475871a2008-07-27 21:46:04 +00006418SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
6419 SDValue N0 = N->getOperand(0);
6420 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006421 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006422 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006423
Nate Begeman1d4d4142005-09-01 00:19:25 +00006424 // fold (fp_round c1fp) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006425 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006426 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006427
Chris Lattner79dbea52006-03-13 06:26:26 +00006428 // fold (fp_round (fp_extend x)) -> x
6429 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
6430 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006431
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006432 // fold (fp_round (fp_round x)) -> (fp_round x)
6433 if (N0.getOpcode() == ISD::FP_ROUND) {
6434 // This is a value preserving truncation if both round's are.
6435 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006436 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00006437 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006438 DAG.getIntPtrConstant(IsTrunc));
6439 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006440
Chris Lattner79dbea52006-03-13 06:26:26 +00006441 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00006442 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00006443 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
6444 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00006445 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00006446 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6447 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00006448 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006449
Dan Gohman475871a2008-07-27 21:46:04 +00006450 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006451}
6452
Dan Gohman475871a2008-07-27 21:46:04 +00006453SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6454 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006455 EVT VT = N->getValueType(0);
6456 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00006457 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006458
Nate Begeman1d4d4142005-09-01 00:19:25 +00006459 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00006460 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00006461 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006462 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006463 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006464
Dan Gohman475871a2008-07-27 21:46:04 +00006465 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006466}
6467
Dan Gohman475871a2008-07-27 21:46:04 +00006468SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6469 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006470 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006471 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006472
Chris Lattner5938bef2007-12-29 06:55:23 +00006473 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00006474 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00006475 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00006476 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006477
Nate Begeman1d4d4142005-09-01 00:19:25 +00006478 // fold (fp_extend c1fp) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006479 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006480 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006481
6482 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6483 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006484 if (N0.getOpcode() == ISD::FP_ROUND
6485 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006486 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006487 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006488 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006489 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
6490 In, N0.getOperand(1));
6491 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006492 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006493
Chris Lattner0bd48932008-01-17 07:00:52 +00006494 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006495 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006496 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006497 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006498 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00006499 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006500 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006501 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006502 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006503 LN0->isVolatile(), LN0->isNonTemporal(),
6504 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006505 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006506 CombineTo(N0.getNode(),
6507 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
6508 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006509 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006510 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006511 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006512
Dan Gohman475871a2008-07-27 21:46:04 +00006513 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006514}
6515
Dan Gohman475871a2008-07-27 21:46:04 +00006516SDValue DAGCombiner::visitFNEG(SDNode *N) {
6517 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006518 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006519
Craig Topperdd201ff2012-09-11 01:45:21 +00006520 if (VT.isVector()) {
6521 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6522 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper956342b2012-09-09 22:58:45 +00006523 }
6524
Owen Andersonafd3d562012-03-06 00:29:31 +00006525 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6526 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006527 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006528
Chris Lattner3bd39d42008-01-27 17:42:27 +00006529 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6530 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006531 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006532 !VT.isVector() &&
6533 N0.getNode()->hasOneUse() &&
6534 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006535 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006536 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006537 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006538 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
6539 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006540 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006541 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006542 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006543 }
6544 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006545
Owen Anderson58d57292012-09-01 06:04:27 +00006546 // (fneg (fmul c, x)) -> (fmul -c, x)
6547 if (N0.getOpcode() == ISD::FMUL) {
6548 ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
6549 if (CFP1) {
6550 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
6551 N0.getOperand(0),
6552 DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
6553 N0.getOperand(1)));
6554 }
6555 }
6556
Dan Gohman475871a2008-07-27 21:46:04 +00006557 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006558}
6559
Owen Anderson7c626d32012-08-13 23:32:49 +00006560SDValue DAGCombiner::visitFCEIL(SDNode *N) {
6561 SDValue N0 = N->getOperand(0);
6562 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6563 EVT VT = N->getValueType(0);
6564
6565 // fold (fceil c1) -> fceil(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006566 if (N0CFP)
Owen Anderson7c626d32012-08-13 23:32:49 +00006567 return DAG.getNode(ISD::FCEIL, N->getDebugLoc(), VT, N0);
6568
6569 return SDValue();
6570}
6571
6572SDValue DAGCombiner::visitFTRUNC(SDNode *N) {
6573 SDValue N0 = N->getOperand(0);
6574 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6575 EVT VT = N->getValueType(0);
6576
6577 // fold (ftrunc c1) -> ftrunc(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006578 if (N0CFP)
Owen Anderson7c626d32012-08-13 23:32:49 +00006579 return DAG.getNode(ISD::FTRUNC, N->getDebugLoc(), VT, N0);
6580
6581 return SDValue();
6582}
6583
6584SDValue DAGCombiner::visitFFLOOR(SDNode *N) {
6585 SDValue N0 = N->getOperand(0);
6586 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6587 EVT VT = N->getValueType(0);
6588
6589 // fold (ffloor c1) -> ffloor(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006590 if (N0CFP)
Owen Anderson7c626d32012-08-13 23:32:49 +00006591 return DAG.getNode(ISD::FFLOOR, N->getDebugLoc(), VT, N0);
6592
6593 return SDValue();
6594}
6595
Dan Gohman475871a2008-07-27 21:46:04 +00006596SDValue DAGCombiner::visitFABS(SDNode *N) {
6597 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006598 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006599 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006600
Craig Topperdd201ff2012-09-11 01:45:21 +00006601 if (VT.isVector()) {
6602 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6603 if (FoldedVOp.getNode()) return FoldedVOp;
6604 }
6605
Nate Begeman1d4d4142005-09-01 00:19:25 +00006606 // fold (fabs c1) -> fabs(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006607 if (N0CFP)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006608 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006609 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006610 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006611 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006612 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006613 // fold (fabs (fcopysign x, y)) -> (fabs x)
6614 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006615 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006616
Chris Lattner3bd39d42008-01-27 17:42:27 +00006617 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6618 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006619 if (!TLI.isFAbsFree(VT) &&
6620 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006621 N0.getOperand(0).getValueType().isInteger() &&
6622 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006623 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006624 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006625 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006626 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006627 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006628 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006629 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006630 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006631 }
6632 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006633
Dan Gohman475871a2008-07-27 21:46:04 +00006634 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006635}
6636
Dan Gohman475871a2008-07-27 21:46:04 +00006637SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6638 SDValue Chain = N->getOperand(0);
6639 SDValue N1 = N->getOperand(1);
6640 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006641
Dan Gohmane0f06c72009-11-17 00:47:23 +00006642 // If N is a constant we could fold this into a fallthrough or unconditional
6643 // branch. However that doesn't happen very often in normal code, because
6644 // Instcombine/SimplifyCFG should have handled the available opportunities.
6645 // If we did this folding here, it would be necessary to update the
6646 // MachineBasicBlock CFG, which is awkward.
6647
Nate Begeman750ac1b2006-02-01 07:19:44 +00006648 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6649 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006650 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006651 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
6652 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006653 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006654 N1.getOperand(0), N1.getOperand(1), N2);
6655 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006656
Evan Cheng2a135ae2010-10-04 22:41:01 +00006657 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6658 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6659 (N1.getOperand(0).hasOneUse() &&
6660 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6661 SDNode *Trunc = 0;
6662 if (N1.getOpcode() == ISD::TRUNCATE) {
6663 // Look pass the truncate.
6664 Trunc = N1.getNode();
6665 N1 = N1.getOperand(0);
6666 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006667
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006668 // Match this pattern so that we can generate simpler code:
6669 //
6670 // %a = ...
6671 // %b = and i32 %a, 2
6672 // %c = srl i32 %b, 1
6673 // brcond i32 %c ...
6674 //
6675 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006676 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006677 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006678 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006679 // %c = setcc eq %b, 0
6680 // brcond %c ...
6681 //
6682 // This applies only when the AND constant value has one bit set and the
6683 // SRL constant is equal to the log2 of the AND constant. The back-end is
6684 // smart enough to convert the result into a TEST/JMP sequence.
6685 SDValue Op0 = N1.getOperand(0);
6686 SDValue Op1 = N1.getOperand(1);
6687
6688 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006689 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006690 SDValue AndOp1 = Op0.getOperand(1);
6691
6692 if (AndOp1.getOpcode() == ISD::Constant) {
6693 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6694
6695 if (AndConst.isPowerOf2() &&
6696 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6697 SDValue SetCC =
6698 DAG.getSetCC(N->getDebugLoc(),
6699 TLI.getSetCCResultType(Op0.getValueType()),
6700 Op0, DAG.getConstant(0, Op0.getValueType()),
6701 ISD::SETNE);
6702
Evan Chengd40d03e2010-01-06 19:38:29 +00006703 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6704 MVT::Other, Chain, SetCC, N2);
6705 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6706 // will convert it back to (X & C1) >> C2.
6707 CombineTo(N, NewBRCond, false);
6708 // Truncate is dead.
6709 if (Trunc) {
6710 removeFromWorkList(Trunc);
6711 DAG.DeleteNode(Trunc);
6712 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006713 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006714 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006715 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006716 removeFromWorkList(N1.getNode());
6717 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006718 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006719 }
6720 }
6721 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006722
6723 if (Trunc)
6724 // Restore N1 if the above transformation doesn't match.
6725 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006726 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006727
Evan Cheng2c755ba2010-02-27 07:36:59 +00006728 // Transform br(xor(x, y)) -> br(x != y)
6729 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6730 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6731 SDNode *TheXor = N1.getNode();
6732 SDValue Op0 = TheXor->getOperand(0);
6733 SDValue Op1 = TheXor->getOperand(1);
6734 if (Op0.getOpcode() == Op1.getOpcode()) {
6735 // Avoid missing important xor optimizations.
6736 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00006737 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006738 DEBUG(dbgs() << "\nReplacing.8 ";
6739 TheXor->dump(&DAG);
6740 dbgs() << "\nWith: ";
6741 Tmp.getNode()->dump(&DAG);
6742 dbgs() << '\n');
6743 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006744 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
Evan Cheng2c755ba2010-02-27 07:36:59 +00006745 removeFromWorkList(TheXor);
6746 DAG.DeleteNode(TheXor);
6747 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6748 MVT::Other, Chain, Tmp, N2);
6749 }
6750 }
6751
6752 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6753 bool Equal = false;
6754 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6755 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6756 Op0.getOpcode() == ISD::XOR) {
6757 TheXor = Op0.getNode();
6758 Equal = true;
6759 }
6760
Evan Cheng2a135ae2010-10-04 22:41:01 +00006761 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006762 if (LegalTypes)
6763 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6764 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6765 SetCCVT,
6766 Op0, Op1,
6767 Equal ? ISD::SETEQ : ISD::SETNE);
6768 // Replace the uses of XOR with SETCC
6769 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006770 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006771 removeFromWorkList(N1.getNode());
6772 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006773 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6774 MVT::Other, Chain, SetCC, N2);
6775 }
6776 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006777
Dan Gohman475871a2008-07-27 21:46:04 +00006778 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006779}
6780
Chris Lattner3ea0b472005-10-05 06:47:48 +00006781// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6782//
Dan Gohman475871a2008-07-27 21:46:04 +00006783SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006784 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006785 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006786
Dan Gohmane0f06c72009-11-17 00:47:23 +00006787 // If N is a constant we could fold this into a fallthrough or unconditional
6788 // branch. However that doesn't happen very often in normal code, because
6789 // Instcombine/SimplifyCFG should have handled the available opportunities.
6790 // If we did this folding here, it would be necessary to update the
6791 // MachineBasicBlock CFG, which is awkward.
6792
Duncan Sands8eab8a22008-06-09 11:32:28 +00006793 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006794 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006795 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6796 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006797 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006798
Nate Begemane17daeb2005-10-05 21:43:42 +00006799 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006800 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006801 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006802 N->getOperand(0), Simp.getOperand(2),
6803 Simp.getOperand(0), Simp.getOperand(1),
6804 N->getOperand(4));
6805
Dan Gohman475871a2008-07-27 21:46:04 +00006806 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006807}
6808
Evan Chengc4b527a2012-01-13 01:37:24 +00006809/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6810/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00006811/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00006812static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6813 SelectionDAG &DAG,
6814 const TargetLowering &TLI) {
6815 EVT VT;
6816 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6817 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6818 return false;
6819 VT = Use->getValueType(0);
6820 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6821 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6822 return false;
6823 VT = ST->getValue().getValueType();
6824 } else
6825 return false;
6826
Nadav Rotemad6aedc2012-10-08 23:06:34 +00006827 AddrMode AM;
Evan Chengc4b527a2012-01-13 01:37:24 +00006828 if (N->getOpcode() == ISD::ADD) {
6829 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6830 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006831 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006832 AM.BaseOffs = Offset->getSExtValue();
6833 else
Evan Cheng03be3622012-03-06 23:33:32 +00006834 // [reg +/- reg]
6835 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006836 } else if (N->getOpcode() == ISD::SUB) {
6837 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6838 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006839 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006840 AM.BaseOffs = -Offset->getSExtValue();
6841 else
Evan Cheng03be3622012-03-06 23:33:32 +00006842 // [reg +/- reg]
6843 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006844 } else
6845 return false;
6846
6847 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6848}
6849
Duncan Sandsec87aa82008-06-15 20:12:31 +00006850/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6851/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006852/// and it has other uses besides the load / store. After the
6853/// transformation, the new indexed load / store has effectively folded
6854/// the add / subtract in and all of its other uses are redirected to the
6855/// new load / store.
6856bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006857 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006858 return false;
6859
6860 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006861 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006862 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006863 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006864 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006865 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006866 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006867 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006868 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6869 return false;
6870 Ptr = LD->getBasePtr();
6871 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006872 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006873 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006874 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006875 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6876 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6877 return false;
6878 Ptr = ST->getBasePtr();
6879 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006880 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006881 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006882 }
Chris Lattner448f2192006-11-11 00:39:41 +00006883
Chris Lattner9f1794e2006-11-11 00:56:29 +00006884 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6885 // out. There is no reason to make this a preinc/predec.
6886 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006887 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006888 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006889
Chris Lattner9f1794e2006-11-11 00:56:29 +00006890 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006891 SDValue BasePtr;
6892 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006893 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6894 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6895 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006896 // Don't create a indexed load / store with zero offset.
6897 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006898 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006899 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006900
Chris Lattner41e53fd2006-11-11 01:00:15 +00006901 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006902 // 1) The new base ptr is a frame index.
6903 // 2) If N is a store and the new base ptr is either the same as or is a
Chris Lattner9f1794e2006-11-11 00:56:29 +00006904 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006905 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006906 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006907 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006908
Chris Lattner41e53fd2006-11-11 01:00:15 +00006909 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6910 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006911 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006912 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006913
Chris Lattner41e53fd2006-11-11 01:00:15 +00006914 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006915 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006916 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006917 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006918 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006919 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006920
Evan Chengc843abe2007-05-24 02:35:39 +00006921 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006922 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006923
6924 // Caches for hasPredecessorHelper
6925 SmallPtrSet<const SDNode *, 32> Visited;
6926 SmallVector<const SDNode *, 16> Worklist;
6927
Gabor Greifba36cb52008-08-28 21:40:38 +00006928 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6929 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006930 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006931 if (Use == N)
6932 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006933 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006934 return false;
6935
Evan Chengc4b527a2012-01-13 01:37:24 +00006936 // If Ptr may be folded in addressing mode of other use, then it's
6937 // not profitable to do this transformation.
6938 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006939 RealUse = true;
6940 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006941
Chris Lattner9f1794e2006-11-11 00:56:29 +00006942 if (!RealUse)
6943 return false;
6944
Dan Gohman475871a2008-07-27 21:46:04 +00006945 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006946 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006947 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6948 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006949 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006950 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6951 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006952 ++PreIndexedNodes;
6953 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006954 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006955 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006956 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006957 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006958 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006959 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006960 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006961 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6962 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006963 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006964 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006965 }
6966
Chris Lattner9f1794e2006-11-11 00:56:29 +00006967 // Finally, since the node is now dead, remove it from the graph.
6968 DAG.DeleteNode(N);
6969
6970 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006971 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greifba36cb52008-08-28 21:40:38 +00006972 removeFromWorkList(Ptr.getNode());
6973 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006974
6975 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006976}
6977
Duncan Sandsec87aa82008-06-15 20:12:31 +00006978/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006979/// add / sub of the base pointer node into a post-indexed load / store.
6980/// The transformation folded the add / subtract into the new indexed
6981/// load / store effectively and all of its uses are redirected to the
6982/// new load / store.
6983bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006984 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006985 return false;
6986
6987 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006988 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006989 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006990 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006991 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006992 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006993 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006994 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6995 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6996 return false;
6997 Ptr = LD->getBasePtr();
6998 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006999 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007000 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007001 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00007002 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
7003 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
7004 return false;
7005 Ptr = ST->getBasePtr();
7006 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007007 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00007008 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007009 }
Chris Lattner448f2192006-11-11 00:39:41 +00007010
Gabor Greifba36cb52008-08-28 21:40:38 +00007011 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00007012 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007013
Gabor Greifba36cb52008-08-28 21:40:38 +00007014 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7015 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00007016 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007017 if (Op == N ||
7018 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
7019 continue;
7020
Dan Gohman475871a2008-07-27 21:46:04 +00007021 SDValue BasePtr;
7022 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007023 ISD::MemIndexedMode AM = ISD::UNINDEXED;
7024 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00007025 // Don't create a indexed load / store with zero offset.
7026 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00007027 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00007028 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00007029
Chris Lattner9f1794e2006-11-11 00:56:29 +00007030 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00007031 // 1) All uses are load / store ops that use it as base ptr (and
7032 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00007033 // 2) Op must be independent of N, i.e. Op is neither a predecessor
7034 // nor a successor of N. Otherwise, if Op is folded that would
7035 // create a cycle.
7036
Evan Chengcaab1292009-05-06 18:25:01 +00007037 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
7038 continue;
7039
Chris Lattner9f1794e2006-11-11 00:56:29 +00007040 // Check for #1.
7041 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00007042 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
7043 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00007044 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00007045 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00007046 continue;
7047
Chris Lattner9f1794e2006-11-11 00:56:29 +00007048 // If all the uses are load / store addresses, then don't do the
7049 // transformation.
7050 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
7051 bool RealUse = false;
7052 for (SDNode::use_iterator III = Use->use_begin(),
7053 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00007054 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00007055 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007056 RealUse = true;
7057 }
Chris Lattner448f2192006-11-11 00:39:41 +00007058
Chris Lattner9f1794e2006-11-11 00:56:29 +00007059 if (!RealUse) {
7060 TryNext = true;
7061 break;
Chris Lattner448f2192006-11-11 00:39:41 +00007062 }
7063 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007064 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007065
Chris Lattner9f1794e2006-11-11 00:56:29 +00007066 if (TryNext)
7067 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00007068
Chris Lattner9f1794e2006-11-11 00:56:29 +00007069 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00007070 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00007071 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00007072 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
7073 BasePtr, Offset, AM)
7074 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
7075 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007076 ++PostIndexedNodes;
7077 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00007078 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007079 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007080 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007081 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007082 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007083 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007084 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007085 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7086 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007087 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007088 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner448f2192006-11-11 00:39:41 +00007089 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007090
Chris Lattner9f1794e2006-11-11 00:56:29 +00007091 // Finally, since the node is now dead, remove it from the graph.
7092 DAG.DeleteNode(N);
7093
7094 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00007095 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007096 Result.getValue(isLoad ? 1 : 0));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007097 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007098 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007099 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00007100 }
7101 }
7102 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007103
Chris Lattner448f2192006-11-11 00:39:41 +00007104 return false;
7105}
7106
Dan Gohman475871a2008-07-27 21:46:04 +00007107SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00007108 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007109 SDValue Chain = LD->getChain();
7110 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007111
Evan Cheng45a7ca92007-05-01 00:38:21 +00007112 // If load is not volatile and there are no uses of the loaded value (and
7113 // the updated indexed value in case of indexed loads), change uses of the
7114 // chain value into uses of the chain input (i.e. delete the dead load).
7115 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007116 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00007117 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00007118 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00007119 // It's not safe to use the two value CombineTo variant here. e.g.
7120 // v1, chain2 = load chain1, loc
7121 // v2, chain3 = load chain2, loc
7122 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00007123 // Now we replace use of chain2 with chain1. This makes the second load
7124 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00007125 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007126 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007127 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007128 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007129 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007130 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007131 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendlingc0debad2009-01-30 23:27:35 +00007132
Chris Lattner125991a2008-01-24 07:57:06 +00007133 if (N->use_empty()) {
7134 removeFromWorkList(N);
7135 DAG.DeleteNode(N);
7136 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007137
Dan Gohman475871a2008-07-27 21:46:04 +00007138 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00007139 }
Evan Cheng498f5592007-05-01 08:53:39 +00007140 } else {
7141 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00007142 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00007143 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007144 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00007145 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007146 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007147 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007148 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007149 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007150 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007151 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman475871a2008-07-27 21:46:04 +00007152 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007153 DAG.getUNDEF(N->getValueType(1)));
7154 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng02c42852008-01-16 23:11:54 +00007155 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00007156 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007157 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00007158 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00007159 }
7160 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007161
Chris Lattner01a22022005-10-10 22:04:48 +00007162 // If this load is directly stored, replace the load value with the stored
7163 // value.
7164 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007165 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00007166 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007167 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007168 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
7169 if (PrevST->getBasePtr() == Ptr &&
7170 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007171 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00007172 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007173 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007174
Evan Cheng255f20f2010-04-01 06:04:33 +00007175 // Try to infer better alignment information than the load already has.
7176 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007177 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7178 if (Align > LD->getAlignment())
7179 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
7180 LD->getValueType(0),
7181 Chain, Ptr, LD->getPointerInfo(),
7182 LD->getMemoryVT(),
7183 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007184 }
7185 }
7186
Jim Laskey7ca56af2006-10-11 13:47:09 +00007187 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007188 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007189 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007190
Jim Laskey6ff23e52006-10-04 16:53:27 +00007191 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007192 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007193 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007194
Jim Laskey279f0532006-09-25 16:29:54 +00007195 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007196 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00007197 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00007198 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007199 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007200 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007201 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00007202 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
7203 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00007204 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007205 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007206 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007207 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00007208 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007209 }
Jim Laskey279f0532006-09-25 16:29:54 +00007210
Jim Laskey6ff23e52006-10-04 16:53:27 +00007211 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00007212 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007213 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007214
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007215 // Make sure the new and old chains are cleaned up.
7216 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007217
Jim Laskey274062c2006-10-13 23:32:28 +00007218 // Replace uses with load result and token factor. Don't add users
7219 // to work list.
7220 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007221 }
7222 }
7223
Evan Cheng7fc033a2006-11-03 03:06:21 +00007224 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007225 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007226 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00007227
Dan Gohman475871a2008-07-27 21:46:04 +00007228 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00007229}
7230
Chris Lattner2392ae72010-04-15 04:48:01 +00007231/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
7232/// load is having specific bytes cleared out. If so, return the byte size
7233/// being masked out and the shift amount.
7234static std::pair<unsigned, unsigned>
7235CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
7236 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007237
Chris Lattner2392ae72010-04-15 04:48:01 +00007238 // Check for the structure we're looking for.
7239 if (V->getOpcode() != ISD::AND ||
7240 !isa<ConstantSDNode>(V->getOperand(1)) ||
7241 !ISD::isNormalLoad(V->getOperand(0).getNode()))
7242 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007243
Chris Lattnere6987582010-04-15 06:10:49 +00007244 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00007245 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00007246 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007247
Chris Lattnere6987582010-04-15 06:10:49 +00007248 // The store should be chained directly to the load or be an operand of a
7249 // tokenfactor.
7250 if (LD == Chain.getNode())
7251 ; // ok.
7252 else if (Chain->getOpcode() != ISD::TokenFactor)
7253 return Result; // Fail.
7254 else {
7255 bool isOk = false;
7256 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
7257 if (Chain->getOperand(i).getNode() == LD) {
7258 isOk = true;
7259 break;
7260 }
7261 if (!isOk) return Result;
7262 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007263
Chris Lattner2392ae72010-04-15 04:48:01 +00007264 // This only handles simple types.
7265 if (V.getValueType() != MVT::i16 &&
7266 V.getValueType() != MVT::i32 &&
7267 V.getValueType() != MVT::i64)
7268 return Result;
7269
7270 // Check the constant mask. Invert it so that the bits being masked out are
7271 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
7272 // follow the sign bit for uniformity.
7273 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
7274 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
7275 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
7276 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
7277 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
7278 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007279
Chris Lattner2392ae72010-04-15 04:48:01 +00007280 // See if we have a continuous run of bits. If so, we have 0*1+0*
7281 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
7282 return Result;
7283
7284 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
7285 if (V.getValueType() != MVT::i64 && NotMaskLZ)
7286 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007287
Chris Lattner2392ae72010-04-15 04:48:01 +00007288 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
7289 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007290 case 1:
7291 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00007292 case 4: break;
7293 default: return Result; // All one mask, or 5-byte mask.
7294 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007295
Chris Lattner2392ae72010-04-15 04:48:01 +00007296 // Verify that the first bit starts at a multiple of mask so that the access
7297 // is aligned the same as the access width.
7298 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007299
Chris Lattner2392ae72010-04-15 04:48:01 +00007300 Result.first = MaskedBytes;
7301 Result.second = NotMaskTZ/8;
7302 return Result;
7303}
7304
7305
7306/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
7307/// provides a value as specified by MaskInfo. If so, replace the specified
7308/// store with a narrower store of truncated IVal.
7309static SDNode *
7310ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
7311 SDValue IVal, StoreSDNode *St,
7312 DAGCombiner *DC) {
7313 unsigned NumBytes = MaskInfo.first;
7314 unsigned ByteShift = MaskInfo.second;
7315 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007316
Chris Lattner2392ae72010-04-15 04:48:01 +00007317 // Check to see if IVal is all zeros in the part being masked in by the 'or'
7318 // that uses this. If not, this is not a replacement.
7319 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
7320 ByteShift*8, (ByteShift+NumBytes)*8);
7321 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007322
Chris Lattner2392ae72010-04-15 04:48:01 +00007323 // Check that it is legal on the target to do this. It is legal if the new
7324 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
7325 // legalization.
7326 MVT VT = MVT::getIntegerVT(NumBytes*8);
7327 if (!DC->isTypeLegal(VT))
7328 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007329
Chris Lattner2392ae72010-04-15 04:48:01 +00007330 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
7331 // shifted by ByteShift and truncated down to NumBytes.
7332 if (ByteShift)
7333 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00007334 DAG.getConstant(ByteShift*8,
7335 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00007336
7337 // Figure out the offset for the store and the alignment of the access.
7338 unsigned StOffset;
7339 unsigned NewAlign = St->getAlignment();
7340
7341 if (DAG.getTargetLoweringInfo().isLittleEndian())
7342 StOffset = ByteShift;
7343 else
7344 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007345
Chris Lattner2392ae72010-04-15 04:48:01 +00007346 SDValue Ptr = St->getBasePtr();
7347 if (StOffset) {
7348 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
7349 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
7350 NewAlign = MinAlign(NewAlign, StOffset);
7351 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007352
Chris Lattner2392ae72010-04-15 04:48:01 +00007353 // Truncate down to the new size.
7354 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007355
Chris Lattner2392ae72010-04-15 04:48:01 +00007356 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007357 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007358 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00007359 false, false, NewAlign).getNode();
7360}
7361
Evan Cheng8b944d32009-05-28 00:35:15 +00007362
7363/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
7364/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
7365/// of the loaded bits, try narrowing the load and store if it would end up
7366/// being a win for performance or code size.
7367SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
7368 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00007369 if (ST->isVolatile())
7370 return SDValue();
7371
Evan Cheng8b944d32009-05-28 00:35:15 +00007372 SDValue Chain = ST->getChain();
7373 SDValue Value = ST->getValue();
7374 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00007375 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00007376
7377 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00007378 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007379
7380 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007381
Chris Lattner2392ae72010-04-15 04:48:01 +00007382 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
7383 // is a byte mask indicating a consecutive number of bytes, check to see if
7384 // Y is known to provide just those bytes. If so, we try to replace the
7385 // load + replace + store sequence with a single (narrower) store, which makes
7386 // the load dead.
7387 if (Opc == ISD::OR) {
7388 std::pair<unsigned, unsigned> MaskedLoad;
7389 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
7390 if (MaskedLoad.first)
7391 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7392 Value.getOperand(1), ST,this))
7393 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007394
Chris Lattner2392ae72010-04-15 04:48:01 +00007395 // Or is commutative, so try swapping X and Y.
7396 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
7397 if (MaskedLoad.first)
7398 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7399 Value.getOperand(0), ST,this))
7400 return SDValue(NewST, 0);
7401 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007402
Evan Cheng8b944d32009-05-28 00:35:15 +00007403 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
7404 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00007405 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007406
7407 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00007408 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
7409 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00007410 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00007411 if (LD->getBasePtr() != Ptr ||
7412 LD->getPointerInfo().getAddrSpace() !=
7413 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00007414 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007415
7416 // Find the type to narrow it the load / op / store to.
7417 SDValue N1 = Value.getOperand(1);
7418 unsigned BitWidth = N1.getValueSizeInBits();
7419 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
7420 if (Opc == ISD::AND)
7421 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00007422 if (Imm == 0 || Imm.isAllOnesValue())
7423 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007424 unsigned ShAmt = Imm.countTrailingZeros();
7425 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
7426 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00007427 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007428 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00007429 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00007430 TLI.isNarrowingProfitable(VT, NewVT))) {
7431 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00007432 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007433 }
Evan Chengcdcecc02009-05-28 18:41:02 +00007434 if (NewBW >= BitWidth)
7435 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007436
7437 // If the lsb changed does not start at the type bitwidth boundary,
7438 // start at the previous one.
7439 if (ShAmt % NewBW)
7440 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
Manman Ren981b9632012-12-12 01:13:50 +00007441 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt,
7442 std::min(BitWidth, ShAmt + NewBW));
Evan Cheng8b944d32009-05-28 00:35:15 +00007443 if ((Imm & Mask) == Imm) {
7444 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
7445 if (Opc == ISD::AND)
7446 NewImm ^= APInt::getAllOnesValue(NewBW);
7447 uint64_t PtrOff = ShAmt / 8;
7448 // For big endian targets, we need to adjust the offset to the pointer to
7449 // load the correct bytes.
7450 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00007451 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00007452
7453 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007454 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007455 if (NewAlign < TLI.getDataLayout()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00007456 return SDValue();
7457
Evan Cheng8b944d32009-05-28 00:35:15 +00007458 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
7459 Ptr.getValueType(), Ptr,
7460 DAG.getConstant(PtrOff, Ptr.getValueType()));
7461 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
7462 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007463 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007464 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007465 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007466 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
7467 DAG.getConstant(NewImm, NewVT));
7468 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
7469 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007470 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007471 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007472
7473 AddToWorkList(NewPtr.getNode());
7474 AddToWorkList(NewLD.getNode());
7475 AddToWorkList(NewVal.getNode());
7476 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007477 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Cheng8b944d32009-05-28 00:35:15 +00007478 ++OpsNarrowed;
7479 return NewST;
7480 }
7481 }
7482
Evan Chengcdcecc02009-05-28 18:41:02 +00007483 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007484}
7485
Evan Cheng31959b12011-02-02 01:06:55 +00007486/// TransformFPLoadStorePair - For a given floating point load / store pair,
7487/// if the load value isn't used by any other operations, then consider
7488/// transforming the pair to integer load / store operations if the target
7489/// deems the transformation profitable.
7490SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
7491 StoreSDNode *ST = cast<StoreSDNode>(N);
7492 SDValue Chain = ST->getChain();
7493 SDValue Value = ST->getValue();
7494 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
7495 Value.hasOneUse() &&
7496 Chain == SDValue(Value.getNode(), 1)) {
7497 LoadSDNode *LD = cast<LoadSDNode>(Value);
7498 EVT VT = LD->getMemoryVT();
7499 if (!VT.isFloatingPoint() ||
7500 VT != ST->getMemoryVT() ||
7501 LD->isNonTemporal() ||
7502 ST->isNonTemporal() ||
7503 LD->getPointerInfo().getAddrSpace() != 0 ||
7504 ST->getPointerInfo().getAddrSpace() != 0)
7505 return SDValue();
7506
7507 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
7508 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
7509 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
7510 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
7511 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
7512 return SDValue();
7513
7514 unsigned LDAlign = LD->getAlignment();
7515 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007516 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007517 unsigned ABIAlign = TLI.getDataLayout()->getABITypeAlignment(IntVTTy);
Evan Cheng31959b12011-02-02 01:06:55 +00007518 if (LDAlign < ABIAlign || STAlign < ABIAlign)
7519 return SDValue();
7520
7521 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
7522 LD->getChain(), LD->getBasePtr(),
7523 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007524 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00007525
7526 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
7527 NewLD, ST->getBasePtr(),
7528 ST->getPointerInfo(),
7529 false, false, STAlign);
7530
7531 AddToWorkList(NewLD.getNode());
7532 AddToWorkList(NewST.getNode());
7533 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007534 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Cheng31959b12011-02-02 01:06:55 +00007535 ++LdStFP2Int;
7536 return NewST;
7537 }
7538
7539 return SDValue();
7540}
7541
Nadav Rotemc653de62012-10-03 16:11:15 +00007542/// Returns the base pointer and an integer offset from that object.
7543static std::pair<SDValue, int64_t> GetPointerBaseAndOffset(SDValue Ptr) {
7544 if (Ptr->getOpcode() == ISD::ADD && isa<ConstantSDNode>(Ptr->getOperand(1))) {
7545 int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue();
7546 SDValue Base = Ptr->getOperand(0);
7547 return std::make_pair(Base, Offset);
7548 }
7549
7550 return std::make_pair(Ptr, 0);
7551}
7552
7553/// Holds a pointer to an LSBaseSDNode as well as information on where it
7554/// is located in a sequence of memory operations connected by a chain.
7555struct MemOpLink {
7556 MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq):
7557 MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { }
7558 // Ptr to the mem node.
7559 LSBaseSDNode *MemNode;
7560 // Offset from the base ptr.
7561 int64_t OffsetFromBase;
7562 // What is the sequence number of this mem node.
7563 // Lowest mem operand in the DAG starts at zero.
7564 unsigned SequenceNum;
7565};
7566
7567/// Sorts store nodes in a link according to their offset from a shared
7568// base ptr.
7569struct ConsecutiveMemoryChainSorter {
7570 bool operator()(MemOpLink LHS, MemOpLink RHS) {
7571 return LHS.OffsetFromBase < RHS.OffsetFromBase;
7572 }
7573};
7574
7575bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) {
7576 EVT MemVT = St->getMemoryVT();
7577 int64_t ElementSizeBytes = MemVT.getSizeInBits()/8;
7578
7579 // Don't merge vectors into wider inputs.
7580 if (MemVT.isVector() || !MemVT.isSimple())
7581 return false;
7582
7583 // Perform an early exit check. Do not bother looking at stored values that
7584 // are not constants or loads.
7585 SDValue StoredVal = St->getValue();
7586 bool IsLoadSrc = isa<LoadSDNode>(StoredVal);
7587 if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) &&
7588 !IsLoadSrc)
7589 return false;
7590
7591 // Only look at ends of store sequences.
7592 SDValue Chain = SDValue(St, 1);
7593 if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE)
7594 return false;
7595
7596 // This holds the base pointer and the offset in bytes from the base pointer.
7597 std::pair<SDValue, int64_t> BasePtr =
7598 GetPointerBaseAndOffset(St->getBasePtr());
7599
7600 // We must have a base and an offset.
7601 if (!BasePtr.first.getNode())
7602 return false;
7603
7604 // Do not handle stores to undef base pointers.
7605 if (BasePtr.first.getOpcode() == ISD::UNDEF)
7606 return false;
7607
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007608 // Save the LoadSDNodes that we find in the chain.
7609 // We need to make sure that these nodes do not interfere with
7610 // any of the store nodes.
7611 SmallVector<LSBaseSDNode*, 8> AliasLoadNodes;
7612
7613 // Save the StoreSDNodes that we find in the chain.
Nadav Rotemc653de62012-10-03 16:11:15 +00007614 SmallVector<MemOpLink, 8> StoreNodes;
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007615
Nadav Rotemc653de62012-10-03 16:11:15 +00007616 // Walk up the chain and look for nodes with offsets from the same
7617 // base pointer. Stop when reaching an instruction with a different kind
7618 // or instruction which has a different base pointer.
7619 unsigned Seq = 0;
7620 StoreSDNode *Index = St;
7621 while (Index) {
7622 // If the chain has more than one use, then we can't reorder the mem ops.
7623 if (Index != St && !SDValue(Index, 1)->hasOneUse())
7624 break;
7625
7626 // Find the base pointer and offset for this memory node.
7627 std::pair<SDValue, int64_t> Ptr =
7628 GetPointerBaseAndOffset(Index->getBasePtr());
7629
7630 // Check that the base pointer is the same as the original one.
7631 if (Ptr.first.getNode() != BasePtr.first.getNode())
7632 break;
7633
7634 // Check that the alignment is the same.
7635 if (Index->getAlignment() != St->getAlignment())
7636 break;
7637
7638 // The memory operands must not be volatile.
7639 if (Index->isVolatile() || Index->isIndexed())
7640 break;
7641
7642 // No truncation.
7643 if (StoreSDNode *St = dyn_cast<StoreSDNode>(Index))
7644 if (St->isTruncatingStore())
7645 break;
7646
7647 // The stored memory type must be the same.
7648 if (Index->getMemoryVT() != MemVT)
7649 break;
7650
7651 // We do not allow unaligned stores because we want to prevent overriding
7652 // stores.
7653 if (Index->getAlignment()*8 != MemVT.getSizeInBits())
7654 break;
7655
7656 // We found a potential memory operand to merge.
7657 StoreNodes.push_back(MemOpLink(Index, Ptr.second, Seq++));
7658
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007659 // Find the next memory operand in the chain. If the next operand in the
7660 // chain is a store then move up and continue the scan with the next
7661 // memory operand. If the next operand is a load save it and use alias
7662 // information to check if it interferes with anything.
7663 SDNode *NextInChain = Index->getChain().getNode();
7664 while (1) {
Nadav Rotemdde785c2012-12-06 17:34:13 +00007665 if (StoreSDNode *STn = dyn_cast<StoreSDNode>(NextInChain)) {
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007666 // We found a store node. Use it for the next iteration.
Nadav Rotemdde785c2012-12-06 17:34:13 +00007667 Index = STn;
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007668 break;
7669 } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) {
7670 // Save the load node for later. Continue the scan.
7671 AliasLoadNodes.push_back(Ldn);
7672 NextInChain = Ldn->getChain().getNode();
7673 continue;
7674 } else {
7675 Index = NULL;
7676 break;
7677 }
7678 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007679 }
7680
7681 // Check if there is anything to merge.
7682 if (StoreNodes.size() < 2)
7683 return false;
7684
7685 // Sort the memory operands according to their distance from the base pointer.
7686 std::sort(StoreNodes.begin(), StoreNodes.end(),
7687 ConsecutiveMemoryChainSorter());
7688
7689 // Scan the memory operations on the chain and find the first non-consecutive
7690 // store memory address.
7691 unsigned LastConsecutiveStore = 0;
7692 int64_t StartAddress = StoreNodes[0].OffsetFromBase;
Nadav Rotemdde785c2012-12-06 17:34:13 +00007693 for (unsigned i = 0, e = StoreNodes.size(); i < e; ++i) {
7694
7695 // Check that the addresses are consecutive starting from the second
7696 // element in the list of stores.
7697 if (i > 0) {
7698 int64_t CurrAddress = StoreNodes[i].OffsetFromBase;
7699 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
7700 break;
7701 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007702
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007703 bool Alias = false;
7704 // Check if this store interferes with any of the loads that we found.
7705 for (unsigned ld = 0, lde = AliasLoadNodes.size(); ld < lde; ++ld)
7706 if (isAlias(AliasLoadNodes[ld], StoreNodes[i].MemNode)) {
7707 Alias = true;
7708 break;
7709 }
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007710 // We found a load that alias with this store. Stop the sequence.
7711 if (Alias)
7712 break;
7713
Nadav Rotemc653de62012-10-03 16:11:15 +00007714 // Mark this node as useful.
7715 LastConsecutiveStore = i;
7716 }
7717
7718 // The node with the lowest store address.
7719 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode;
7720
7721 // Store the constants into memory as one consecutive store.
7722 if (!IsLoadSrc) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007723 unsigned LastLegalType = 0;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007724 unsigned LastLegalVectorType = 0;
7725 bool NonZero = false;
Nadav Rotemc653de62012-10-03 16:11:15 +00007726 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
7727 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7728 SDValue StoredVal = St->getValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007729
7730 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00007731 NonZero |= !C->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007732 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00007733 NonZero |= !C->getConstantFPValue()->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007734 } else {
7735 // Non constant.
Nadav Rotemc653de62012-10-03 16:11:15 +00007736 break;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007737 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007738
Nadav Rotemc653de62012-10-03 16:11:15 +00007739 // Find a legal type for the constant store.
7740 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
7741 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7742 if (TLI.isTypeLegal(StoreTy))
7743 LastLegalType = i+1;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007744
7745 // Find a legal type for the vector store.
7746 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
7747 if (TLI.isTypeLegal(Ty))
7748 LastLegalVectorType = i + 1;
Nadav Rotemc653de62012-10-03 16:11:15 +00007749 }
7750
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007751 // We only use vectors if the constant is known to be zero.
7752 if (NonZero)
7753 LastLegalVectorType = 0;
7754
Nadav Rotemc653de62012-10-03 16:11:15 +00007755 // Check if we found a legal integer type to store.
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007756 if (LastLegalType == 0 && LastLegalVectorType == 0)
Nadav Rotemc653de62012-10-03 16:11:15 +00007757 return false;
7758
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007759 bool UseVector = LastLegalVectorType > LastLegalType;
7760 unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType;
7761
7762 // Make sure we have something to merge.
7763 if (NumElem < 2)
7764 return false;
Nadav Rotemc653de62012-10-03 16:11:15 +00007765
7766 unsigned EarliestNodeUsed = 0;
7767 for (unsigned i=0; i < NumElem; ++i) {
7768 // Find a chain for the new wide-store operand. Notice that some
7769 // of the store nodes that we found may not be selected for inclusion
7770 // in the wide store. The chain we use needs to be the chain of the
7771 // earliest store node which is *used* and replaced by the wide store.
7772 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
7773 EarliestNodeUsed = i;
7774 }
7775
7776 // The earliest Node in the DAG.
7777 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
Nadav Rotemc653de62012-10-03 16:11:15 +00007778 DebugLoc DL = StoreNodes[0].MemNode->getDebugLoc();
Nadav Rotemc653de62012-10-03 16:11:15 +00007779
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007780 SDValue StoredVal;
7781 if (UseVector) {
7782 // Find a legal type for the vector store.
7783 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
7784 assert(TLI.isTypeLegal(Ty) && "Illegal vector store");
7785 StoredVal = DAG.getConstant(0, Ty);
7786 } else {
7787 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
7788 APInt StoreInt(StoreBW, 0);
7789
7790 // Construct a single integer constant which is made of the smaller
7791 // constant inputs.
7792 bool IsLE = TLI.isLittleEndian();
7793 for (unsigned i = 0; i < NumElem ; ++i) {
7794 unsigned Idx = IsLE ?(NumElem - 1 - i) : i;
7795 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode);
7796 SDValue Val = St->getValue();
7797 StoreInt<<=ElementSizeBytes*8;
7798 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) {
7799 StoreInt|=C->getAPIntValue().zext(StoreBW);
7800 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) {
7801 StoreInt|= C->getValueAPF().bitcastToAPInt().zext(StoreBW);
7802 } else {
7803 assert(false && "Invalid constant element type");
7804 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007805 }
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007806
7807 // Create the new Load and Store operations.
7808 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7809 StoredVal = DAG.getConstant(StoreInt, StoreTy);
Nadav Rotemc653de62012-10-03 16:11:15 +00007810 }
7811
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007812 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), DL, StoredVal,
Nadav Rotemc653de62012-10-03 16:11:15 +00007813 FirstInChain->getBasePtr(),
7814 FirstInChain->getPointerInfo(),
7815 false, false,
7816 FirstInChain->getAlignment());
7817
7818 // Replace the first store with the new store
7819 CombineTo(EarliestOp, NewStore);
7820 // Erase all other stores.
7821 for (unsigned i = 0; i < NumElem ; ++i) {
7822 if (StoreNodes[i].MemNode == EarliestOp)
7823 continue;
7824 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
Rafael Espindola8e2b8ae2012-11-14 05:08:56 +00007825 // ReplaceAllUsesWith will replace all uses that existed when it was
7826 // called, but graph optimizations may cause new ones to appear. For
7827 // example, the case in pr14333 looks like
7828 //
7829 // St's chain -> St -> another store -> X
7830 //
7831 // And the only difference from St to the other store is the chain.
7832 // When we change it's chain to be St's chain they become identical,
7833 // get CSEed and the net result is that X is now a use of St.
7834 // Since we know that St is redundant, just iterate.
7835 while (!St->use_empty())
7836 DAG.ReplaceAllUsesWith(SDValue(St, 0), St->getChain());
Nadav Rotemc653de62012-10-03 16:11:15 +00007837 removeFromWorkList(St);
7838 DAG.DeleteNode(St);
7839 }
7840
7841 return true;
7842 }
7843
7844 // Below we handle the case of multiple consecutive stores that
7845 // come from multiple consecutive loads. We merge them into a single
7846 // wide load and a single wide store.
7847
7848 // Look for load nodes which are used by the stored values.
7849 SmallVector<MemOpLink, 8> LoadNodes;
7850
7851 // Find acceptable loads. Loads need to have the same chain (token factor),
7852 // must not be zext, volatile, indexed, and they must be consecutive.
7853 SDValue LdBasePtr;
7854 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
7855 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7856 LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue());
7857 if (!Ld) break;
7858
7859 // Loads must only have one use.
7860 if (!Ld->hasNUsesOfValue(1, 0))
7861 break;
7862
7863 // Check that the alignment is the same as the stores.
7864 if (Ld->getAlignment() != St->getAlignment())
7865 break;
7866
7867 // The memory operands must not be volatile.
7868 if (Ld->isVolatile() || Ld->isIndexed())
7869 break;
7870
7871 // We do not accept ext loads.
7872 if (Ld->getExtensionType() != ISD::NON_EXTLOAD)
7873 break;
7874
7875 // The stored memory type must be the same.
7876 if (Ld->getMemoryVT() != MemVT)
7877 break;
7878
7879 std::pair<SDValue, int64_t> LdPtr =
7880 GetPointerBaseAndOffset(Ld->getBasePtr());
7881
7882 // If this is not the first ptr that we check.
7883 if (LdBasePtr.getNode()) {
7884 // The base ptr must be the same.
7885 if (LdPtr.first != LdBasePtr)
7886 break;
7887 } else {
7888 // Check that all other base pointers are the same as this one.
7889 LdBasePtr = LdPtr.first;
7890 }
7891
7892 // We found a potential memory operand to merge.
7893 LoadNodes.push_back(MemOpLink(Ld, LdPtr.second, 0));
7894 }
7895
7896 if (LoadNodes.size() < 2)
7897 return false;
7898
7899 // Scan the memory operations on the chain and find the first non-consecutive
7900 // load memory address. These variables hold the index in the store node
7901 // array.
7902 unsigned LastConsecutiveLoad = 0;
7903 // This variable refers to the size and not index in the array.
7904 unsigned LastLegalVectorType = 0;
7905 unsigned LastLegalIntegerType = 0;
7906 StartAddress = LoadNodes[0].OffsetFromBase;
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007907 SDValue FirstChain = LoadNodes[0].MemNode->getChain();
7908 for (unsigned i = 1; i < LoadNodes.size(); ++i) {
7909 // All loads much share the same chain.
7910 if (LoadNodes[i].MemNode->getChain() != FirstChain)
7911 break;
7912
Nadav Rotemc653de62012-10-03 16:11:15 +00007913 int64_t CurrAddress = LoadNodes[i].OffsetFromBase;
7914 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
7915 break;
7916 LastConsecutiveLoad = i;
7917
7918 // Find a legal type for the vector store.
7919 EVT StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
7920 if (TLI.isTypeLegal(StoreTy))
7921 LastLegalVectorType = i + 1;
7922
7923 // Find a legal type for the integer store.
7924 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
7925 StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7926 if (TLI.isTypeLegal(StoreTy))
7927 LastLegalIntegerType = i + 1;
7928 }
7929
7930 // Only use vector types if the vector type is larger than the integer type.
7931 // If they are the same, use integers.
7932 bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType;
7933 unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType);
7934
7935 // We add +1 here because the LastXXX variables refer to location while
7936 // the NumElem refers to array/index size.
7937 unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1;
7938 NumElem = std::min(LastLegalType, NumElem);
7939
7940 if (NumElem < 2)
7941 return false;
7942
7943 // The earliest Node in the DAG.
7944 unsigned EarliestNodeUsed = 0;
7945 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
7946 for (unsigned i=1; i<NumElem; ++i) {
7947 // Find a chain for the new wide-store operand. Notice that some
7948 // of the store nodes that we found may not be selected for inclusion
7949 // in the wide store. The chain we use needs to be the chain of the
7950 // earliest store node which is *used* and replaced by the wide store.
7951 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
7952 EarliestNodeUsed = i;
7953 }
7954
7955 // Find if it is better to use vectors or integers to load and store
7956 // to memory.
7957 EVT JointMemOpVT;
7958 if (UseVectorTy) {
7959 JointMemOpVT = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
7960 } else {
7961 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
7962 JointMemOpVT = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7963 }
7964
7965 DebugLoc LoadDL = LoadNodes[0].MemNode->getDebugLoc();
7966 DebugLoc StoreDL = StoreNodes[0].MemNode->getDebugLoc();
7967
7968 LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode);
7969 SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL,
7970 FirstLoad->getChain(),
7971 FirstLoad->getBasePtr(),
7972 FirstLoad->getPointerInfo(),
7973 false, false, false,
7974 FirstLoad->getAlignment());
7975
7976 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), StoreDL, NewLoad,
7977 FirstInChain->getBasePtr(),
7978 FirstInChain->getPointerInfo(), false, false,
7979 FirstInChain->getAlignment());
7980
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007981 // Replace one of the loads with the new load.
7982 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode);
7983 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1),
7984 SDValue(NewLoad.getNode(), 1));
7985
7986 // Remove the rest of the load chains.
7987 for (unsigned i = 1; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007988 // Replace all chain users of the old load nodes with the chain of the new
7989 // load node.
7990 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode);
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007991 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain());
7992 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007993
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007994 // Replace the first store with the new store.
7995 CombineTo(EarliestOp, NewStore);
7996 // Erase all other stores.
7997 for (unsigned i = 0; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007998 // Remove all Store nodes.
7999 if (StoreNodes[i].MemNode == EarliestOp)
8000 continue;
8001 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8002 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
8003 removeFromWorkList(St);
8004 DAG.DeleteNode(St);
8005 }
8006
8007 return true;
8008}
8009
Dan Gohman475871a2008-07-27 21:46:04 +00008010SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00008011 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00008012 SDValue Chain = ST->getChain();
8013 SDValue Value = ST->getValue();
8014 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00008015
Evan Cheng59d5b682007-05-07 21:27:48 +00008016 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00008017 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008018 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008019 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00008020 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008021 EVT SVT = Value.getOperand(0).getValueType();
Micah Villmow3574eca2012-10-08 16:38:25 +00008022 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00008023 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008024 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008025 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008026 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00008027 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00008028 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008029 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00008030 }
Owen Andersona34d9362011-04-14 17:30:49 +00008031
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008032 // Turn 'store undef, Ptr' -> nothing.
8033 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
8034 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008035
Nate Begeman2cbba892006-12-11 02:23:46 +00008036 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00008037 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008038 // NOTE: If the original store is volatile, this transform must not increase
8039 // the number of stores. For example, on x86-32 an f64 can be stored in one
8040 // processor operation but an i64 (which is not legal) requires two. So the
8041 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00008042 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00008043 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008044 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008045 default: llvm_unreachable("Unknown FP type");
Pete Cooper438c0402012-06-21 18:00:39 +00008046 case MVT::f16: // We don't do this for these yet.
8047 case MVT::f80:
Owen Anderson825b72b2009-08-11 20:47:22 +00008048 case MVT::f128:
8049 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00008050 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008051 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00008052 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00008053 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00008054 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00008055 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00008056 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008057 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008058 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00008059 }
8060 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008061 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00008062 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008063 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00008064 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00008065 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00008066 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00008067 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008068 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008069 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008070 }
Owen Andersona34d9362011-04-14 17:30:49 +00008071
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008072 if (!ST->isVolatile() &&
8073 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00008074 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00008075 // argument passing. Since this is so common, custom legalize the
8076 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00008077 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00008078 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
8079 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00008080 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00008081
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00008082 unsigned Alignment = ST->getAlignment();
8083 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00008084 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00008085
Bill Wendlingc144a572009-01-30 23:36:47 +00008086 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008087 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008088 isVolatile, isNonTemporal,
8089 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00008090 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00008091 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00008092 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00008093 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008094 Ptr, ST->getPointerInfo().getWithOffset(4),
8095 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00008096 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00008097 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00008098 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00008099 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008100
Chris Lattner62be1a72006-12-12 04:16:14 +00008101 break;
Evan Cheng25ece662006-12-11 17:25:19 +00008102 }
Nate Begeman2cbba892006-12-11 02:23:46 +00008103 }
Nate Begeman2cbba892006-12-11 02:23:46 +00008104 }
8105
Evan Cheng255f20f2010-04-01 06:04:33 +00008106 // Try to infer better alignment information than the store already has.
8107 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00008108 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
8109 if (Align > ST->getAlignment())
8110 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
8111 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
8112 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00008113 }
8114 }
8115
Evan Cheng31959b12011-02-02 01:06:55 +00008116 // Try transforming a pair floating point load / store ops to integer
8117 // load / store ops.
8118 SDValue NewST = TransformFPLoadStorePair(N);
8119 if (NewST.getNode())
8120 return NewST;
8121
Scott Michelfdc40a02009-02-17 22:15:04 +00008122 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00008123 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008124 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00008125
Jim Laskey6ff23e52006-10-04 16:53:27 +00008126 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00008127 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00008128 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008129
8130 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008131 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00008132 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008133 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008134 ST->getMemoryVT(), ST->isVolatile(),
8135 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008136 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00008137 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008138 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008139 ST->isVolatile(), ST->isNonTemporal(),
8140 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008141 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008142
Jim Laskey279f0532006-09-25 16:29:54 +00008143 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00008144 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008145 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00008146
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008147 // Make sure the new and old chains are cleaned up.
8148 AddToWorkList(Token.getNode());
8149
Jim Laskey274062c2006-10-13 23:32:28 +00008150 // Don't add users to work list.
8151 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00008152 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00008153 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008154
Evan Cheng33dbedc2006-11-05 09:31:14 +00008155 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00008156 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00008157 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00008158
Chris Lattner3c872852007-12-29 06:26:16 +00008159 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00008160 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00008161 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00008162 // See if we can simplify the input to this truncstore with knowledge that
8163 // only the low bits are being used. For example:
8164 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00008165 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00008166 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00008167 APInt::getLowBitsSet(
8168 Value.getValueType().getScalarType().getSizeInBits(),
8169 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00008170 AddToWorkList(Value.getNode());
8171 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00008172 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008173 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008174 ST->isVolatile(), ST->isNonTemporal(),
8175 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00008176
Chris Lattnere33544c2007-10-13 06:58:48 +00008177 // Otherwise, see if we can simplify the operation with
8178 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00008179 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00008180 APInt::getLowBitsSet(
8181 Value.getValueType().getScalarType().getSizeInBits(),
8182 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00008183 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00008184 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008185
Chris Lattner3c872852007-12-29 06:26:16 +00008186 // If this is a load followed by a store to the same location, then the store
8187 // is dead/noop.
8188 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008189 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008190 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00008191 // There can't be any side effects between the load and store, such as
8192 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00008193 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00008194 // The store is dead, remove it.
8195 return Chain;
8196 }
8197 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008198
Chris Lattnerddf89562008-01-17 19:59:44 +00008199 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
8200 // truncating store. We can do this even if this is already a truncstore.
8201 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00008202 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008203 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008204 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00008205 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008206 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008207 ST->isVolatile(), ST->isNonTemporal(),
8208 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00008209 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008210
Nadav Rotemc653de62012-10-03 16:11:15 +00008211 // Only perform this optimization before the types are legal, because we
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008212 // don't want to perform this optimization on every DAGCombine invocation.
Nadav Rotema569a802012-12-02 17:14:09 +00008213 if (!LegalTypes) {
8214 bool EverChanged = false;
8215
8216 do {
8217 // There can be multiple store sequences on the same chain.
8218 // Keep trying to merge store sequences until we are unable to do so
8219 // or until we merge the last store on the chain.
8220 bool Changed = MergeConsecutiveStores(ST);
8221 EverChanged |= Changed;
8222 if (!Changed) break;
8223 } while (ST->getOpcode() != ISD::DELETED_NODE);
8224
8225 if (EverChanged)
8226 return SDValue(N, 0);
8227 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008228
Evan Cheng8b944d32009-05-28 00:35:15 +00008229 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00008230}
8231
Dan Gohman475871a2008-07-27 21:46:04 +00008232SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
8233 SDValue InVec = N->getOperand(0);
8234 SDValue InVal = N->getOperand(1);
8235 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00008236 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008237
Bob Wilson492fd452010-05-19 23:42:58 +00008238 // If the inserted element is an UNDEF, just use the input vector.
8239 if (InVal.getOpcode() == ISD::UNDEF)
8240 return InVec;
8241
Nadav Rotem609d54e2011-02-12 14:40:33 +00008242 EVT VT = InVec.getValueType();
8243
Owen Anderson95771af2011-02-25 21:41:48 +00008244 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00008245 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
8246 return SDValue();
8247
Eli Friedman9db817f2011-09-09 21:04:06 +00008248 // Check that we know which element is being inserted
8249 if (!isa<ConstantSDNode>(EltNo))
8250 return SDValue();
8251 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008252
Eli Friedman9db817f2011-09-09 21:04:06 +00008253 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
8254 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
8255 // vector elements.
8256 SmallVector<SDValue, 8> Ops;
8257 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
8258 Ops.append(InVec.getNode()->op_begin(),
8259 InVec.getNode()->op_end());
8260 } else if (InVec.getOpcode() == ISD::UNDEF) {
8261 unsigned NElts = VT.getVectorNumElements();
8262 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
8263 } else {
8264 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008265 }
Eli Friedman9db817f2011-09-09 21:04:06 +00008266
8267 // Insert the element
8268 if (Elt < Ops.size()) {
8269 // All the operands of BUILD_VECTOR must have the same type;
8270 // we enforce that here.
8271 EVT OpVT = Ops[0].getValueType();
8272 if (InVal.getValueType() != OpVT)
8273 InVal = OpVT.bitsGT(InVal.getValueType()) ?
8274 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
8275 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
8276 Ops[Elt] = InVal;
8277 }
8278
8279 // Return the new vector
8280 return DAG.getNode(ISD::BUILD_VECTOR, dl,
8281 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00008282}
8283
Dan Gohman475871a2008-07-27 21:46:04 +00008284SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008285 // (vextract (scalar_to_vector val, 0) -> val
8286 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00008287 EVT VT = InVec.getValueType();
8288 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008289
Duncan Sandsc356f332011-05-09 08:03:33 +00008290 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
8291 // Check if the result type doesn't match the inserted element type. A
8292 // SCALAR_TO_VECTOR may truncate the inserted element and the
8293 // EXTRACT_VECTOR_ELT may widen the extracted vector.
8294 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00008295 if (InOp.getValueType() != NVT) {
8296 assert(InOp.getValueType().isInteger() && NVT.isInteger());
8297 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
8298 }
8299 return InOp;
8300 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008301
Nadav Rotemba05c912012-01-17 21:44:01 +00008302 SDValue EltNo = N->getOperand(1);
8303 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
8304
8305 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
8306 // We only perform this optimization before the op legalization phase because
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008307 // we may introduce new vector instructions which are not backed by TD
8308 // patterns. For example on AVX, extracting elements from a wide vector
8309 // without using extract_subvector.
Nadav Rotemba05c912012-01-17 21:44:01 +00008310 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
8311 && ConstEltNo && !LegalOperations) {
8312 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
8313 int NumElem = VT.getVectorNumElements();
8314 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
8315 // Find the new index to extract from.
8316 int OrigElt = SVOp->getMaskElt(Elt);
8317
8318 // Extracting an undef index is undef.
8319 if (OrigElt == -1)
8320 return DAG.getUNDEF(NVT);
8321
8322 // Select the right vector half to extract from.
8323 if (OrigElt < NumElem) {
8324 InVec = InVec->getOperand(0);
8325 } else {
8326 InVec = InVec->getOperand(1);
8327 OrigElt -= NumElem;
8328 }
8329
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008330 EVT IndexTy = N->getOperand(1).getValueType();
Nadav Rotemba05c912012-01-17 21:44:01 +00008331 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008332 InVec, DAG.getConstant(OrigElt, IndexTy));
Nadav Rotemba05c912012-01-17 21:44:01 +00008333 }
8334
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008335 // Perform only after legalization to ensure build_vector / vector_shuffle
8336 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00008337 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008338
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008339 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
8340 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
8341 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00008342
Nadav Rotemba05c912012-01-17 21:44:01 +00008343 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00008344 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00008345 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00008346 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00008347 EVT ExtVT = VT.getVectorElementType();
8348 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00008349
Evan Cheng84387ea2012-03-13 22:00:52 +00008350 // If the result of load has to be truncated, then it's not necessarily
8351 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00008352 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00008353 return SDValue();
8354
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008355 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008356 // Don't duplicate a load with other uses.
8357 if (!InVec.hasOneUse())
8358 return SDValue();
8359
Owen Andersone50ed302009-08-10 22:56:29 +00008360 EVT BCVT = InVec.getOperand(0).getValueType();
8361 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008362 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00008363 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
8364 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008365 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00008366 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008367 NewLoad = true;
8368 }
Evan Cheng513da432007-10-06 08:19:55 +00008369
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008370 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00008371 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00008372 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008373 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00008374 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00008375 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00008376 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008377 // Don't duplicate a load with other uses.
8378 if (!InVec.hasOneUse())
8379 return SDValue();
8380
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008381 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00008382 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008383 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
8384 // =>
8385 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00008386
Eli Friedmand6e25602011-12-26 22:49:32 +00008387 // Don't duplicate a load with other uses.
8388 if (!InVec.hasOneUse())
8389 return SDValue();
8390
Mon P Wanga60b5232008-12-11 00:26:16 +00008391 // If the bit convert changed the number of elements, it is unsafe
8392 // to examine the mask.
8393 if (BCNumEltsChanged)
8394 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00008395
8396 // Select the input vector, guarding against out of range extract vector.
8397 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00008398 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00008399 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
8400
Eli Friedmand6e25602011-12-26 22:49:32 +00008401 if (InVec.getOpcode() == ISD::BITCAST) {
8402 // Don't duplicate a load with other uses.
8403 if (!InVec.hasOneUse())
8404 return SDValue();
8405
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008406 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00008407 }
Gabor Greifba36cb52008-08-28 21:40:38 +00008408 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008409 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00008410 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00008411 }
8412 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008413
Eli Friedmand6e25602011-12-26 22:49:32 +00008414 // Make sure we found a non-volatile load and the extractelement is
8415 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00008416 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00008417 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008418
Eric Christopherd81f17a2010-11-03 20:44:42 +00008419 // If Idx was -1 above, Elt is going to be -1, so just return undef.
8420 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00008421 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00008422
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008423 unsigned Align = LN0->getAlignment();
8424 if (NewLoad) {
8425 // Check the resultant load doesn't need a higher alignment than the
8426 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00008427 unsigned NewAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00008428 TLI.getDataLayout()
Eric Christopher503a64d2010-12-09 04:48:06 +00008429 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00008430
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008431 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008432 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00008433
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008434 Align = NewAlign;
8435 }
8436
Dan Gohman475871a2008-07-27 21:46:04 +00008437 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00008438 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008439
Eric Christopherd81f17a2010-11-03 20:44:42 +00008440 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00008441 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00008442 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008443 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00008444 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00008445 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008446 DAG.getConstant(PtrOff, PtrType));
8447 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008448
Eli Friedman4db4add2011-11-16 23:50:22 +00008449 // The replacement we need to do here is a little tricky: we need to
8450 // replace an extractelement of a load with a load.
8451 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00008452 // Note that this replacement assumes that the extractvalue is the only
8453 // use of the load; that's okay because we don't want to perform this
8454 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00008455 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00008456 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00008457 if (NVT.bitsGT(LVT)) {
8458 // If the result type of vextract is wider than the load, then issue an
8459 // extending load instead.
8460 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
8461 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
8462 Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(),
8463 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
8464 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008465 Chain = Load.getValue(1);
8466 } else {
Evan Cheng84387ea2012-03-13 22:00:52 +00008467 Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
8468 LN0->getPointerInfo().getWithOffset(PtrOff),
8469 LN0->isVolatile(), LN0->isNonTemporal(),
8470 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008471 Chain = Load.getValue(1);
8472 if (NVT.bitsLT(LVT))
8473 Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load);
8474 else
8475 Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load);
8476 }
Eli Friedman4db4add2011-11-16 23:50:22 +00008477 WorkListRemover DeadNodes(*this);
8478 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00008479 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00008480 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedman4db4add2011-11-16 23:50:22 +00008481 // Since we're explcitly calling ReplaceAllUses, add the new node to the
8482 // worklist explicitly as well.
8483 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00008484 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00008485 // Make sure to revisit this node to clean it up; it will usually be dead.
8486 AddToWorkList(N);
8487 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00008488 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008489
Dan Gohman475871a2008-07-27 21:46:04 +00008490 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00008491}
Evan Cheng513da432007-10-06 08:19:55 +00008492
Michael Liaofac14ab2012-10-23 23:06:52 +00008493// Simplify (build_vec (ext )) to (bitcast (build_vec ))
8494SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) {
8495 // We perform this optimization post type-legalization because
8496 // the type-legalizer often scalarizes integer-promoted vectors.
8497 // Performing this optimization before may create bit-casts which
8498 // will be type-legalized to complex code sequences.
8499 // We perform this optimization only before the operation legalizer because we
8500 // may introduce illegal operations.
8501 if (Level != AfterLegalizeVectorOps && Level != AfterLegalizeTypes)
8502 return SDValue();
8503
Dan Gohman7f321562007-06-25 16:23:39 +00008504 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008505 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008506 EVT VT = N->getValueType(0);
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008507
Nadav Rotemb00418a2011-10-29 21:23:04 +00008508 // Check to see if this is a BUILD_VECTOR of a bunch of values
8509 // which come from any_extend or zero_extend nodes. If so, we can create
8510 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00008511 // optimizations. We do not handle sign-extend because we can't fill the sign
8512 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008513 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00008514 bool AllAnyExt = true;
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008515
Craig Topperd3b58892012-01-17 09:09:48 +00008516 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00008517 SDValue In = N->getOperand(i);
8518 // Ignore undef inputs.
8519 if (In.getOpcode() == ISD::UNDEF) continue;
8520
8521 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
8522 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
8523
Nadav Rotemf47368b2011-10-31 20:08:25 +00008524 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008525 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00008526 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008527 break;
8528 }
8529
8530 // The input is a ZeroExt or AnyExt. Check the original type.
8531 EVT InTy = In.getOperand(0).getValueType();
8532
8533 // Check that all of the widened source types are the same.
8534 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00008535 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008536 SourceType = InTy;
8537 else if (InTy != SourceType) {
8538 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00008539 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008540 break;
8541 }
8542
8543 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00008544 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008545 }
8546
Nadav Rotemf47368b2011-10-31 20:08:25 +00008547 // In order to have valid types, all of the inputs must be extended from the
8548 // same source type and all of the inputs must be any or zero extend.
8549 // Scalar sizes must be a power of two.
Michael Liaofac14ab2012-10-23 23:06:52 +00008550 EVT OutScalarTy = VT.getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008551 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00008552 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
8553 isPowerOf2_32(SourceType.getSizeInBits());
8554
Nadav Rotem6431ff92012-03-15 08:49:06 +00008555 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
8556 // turn into a single shuffle instruction.
Michael Liaofac14ab2012-10-23 23:06:52 +00008557 if (!ValidTypes)
8558 return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008559
Michael Liaofac14ab2012-10-23 23:06:52 +00008560 bool isLE = TLI.isLittleEndian();
8561 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
8562 assert(ElemRatio > 1 && "Invalid element size ratio");
8563 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
8564 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008565
Michael Liaofac14ab2012-10-23 23:06:52 +00008566 unsigned NewBVElems = ElemRatio * VT.getVectorNumElements();
8567 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008568
Michael Liaofac14ab2012-10-23 23:06:52 +00008569 // Populate the new build_vector
Jakub Staszakadf38912012-10-24 00:38:25 +00008570 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Michael Liaofac14ab2012-10-23 23:06:52 +00008571 SDValue Cast = N->getOperand(i);
8572 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
8573 Cast.getOpcode() == ISD::ZERO_EXTEND ||
8574 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
8575 SDValue In;
8576 if (Cast.getOpcode() == ISD::UNDEF)
8577 In = DAG.getUNDEF(SourceType);
8578 else
8579 In = Cast->getOperand(0);
8580 unsigned Index = isLE ? (i * ElemRatio) :
8581 (i * ElemRatio + (ElemRatio - 1));
Nadav Rotemb00418a2011-10-29 21:23:04 +00008582
Michael Liaofac14ab2012-10-23 23:06:52 +00008583 assert(Index < Ops.size() && "Invalid index");
8584 Ops[Index] = In;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008585 }
Chris Lattnerca242442006-03-19 01:27:56 +00008586
Michael Liaofac14ab2012-10-23 23:06:52 +00008587 // The type of the new BUILD_VECTOR node.
8588 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
8589 assert(VecVT.getSizeInBits() == VT.getSizeInBits() &&
8590 "Invalid vector size");
8591 // Check if the new vector type is legal.
8592 if (!isTypeLegal(VecVT)) return SDValue();
8593
8594 // Make the new BUILD_VECTOR.
8595 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, &Ops[0], Ops.size());
8596
8597 // The new BUILD_VECTOR node has the potential to be further optimized.
8598 AddToWorkList(BV.getNode());
8599 // Bitcast to the desired type.
8600 return DAG.getNode(ISD::BITCAST, dl, VT, BV);
8601}
8602
Michael Liao1a5cc712012-10-24 04:14:18 +00008603SDValue DAGCombiner::reduceBuildVecConvertToConvertBuildVec(SDNode *N) {
8604 EVT VT = N->getValueType(0);
8605
8606 unsigned NumInScalars = N->getNumOperands();
8607 DebugLoc dl = N->getDebugLoc();
8608
8609 EVT SrcVT = MVT::Other;
8610 unsigned Opcode = ISD::DELETED_NODE;
8611 unsigned NumDefs = 0;
8612
8613 for (unsigned i = 0; i != NumInScalars; ++i) {
8614 SDValue In = N->getOperand(i);
8615 unsigned Opc = In.getOpcode();
8616
8617 if (Opc == ISD::UNDEF)
8618 continue;
8619
8620 // If all scalar values are floats and converted from integers.
8621 if (Opcode == ISD::DELETED_NODE &&
8622 (Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP)) {
8623 Opcode = Opc;
8624 // If not supported by target, bail out.
8625 if (TLI.getOperationAction(Opcode, VT) != TargetLowering::Legal &&
8626 TLI.getOperationAction(Opcode, VT) != TargetLowering::Custom)
8627 return SDValue();
8628 }
8629 if (Opc != Opcode)
8630 return SDValue();
8631
8632 EVT InVT = In.getOperand(0).getValueType();
8633
8634 // If all scalar values are typed differently, bail out. It's chosen to
8635 // simplify BUILD_VECTOR of integer types.
8636 if (SrcVT == MVT::Other)
8637 SrcVT = InVT;
8638 if (SrcVT != InVT)
8639 return SDValue();
8640 NumDefs++;
8641 }
8642
8643 // If the vector has just one element defined, it's not worth to fold it into
8644 // a vectorized one.
8645 if (NumDefs < 2)
8646 return SDValue();
8647
8648 assert((Opcode == ISD::UINT_TO_FP || Opcode == ISD::SINT_TO_FP)
8649 && "Should only handle conversion from integer to float.");
8650 assert(SrcVT != MVT::Other && "Cannot determine source type!");
8651
8652 EVT NVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumInScalars);
8653 SmallVector<SDValue, 8> Opnds;
8654 for (unsigned i = 0; i != NumInScalars; ++i) {
8655 SDValue In = N->getOperand(i);
8656
8657 if (In.getOpcode() == ISD::UNDEF)
8658 Opnds.push_back(DAG.getUNDEF(SrcVT));
8659 else
8660 Opnds.push_back(In.getOperand(0));
8661 }
8662 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT,
8663 &Opnds[0], Opnds.size());
8664 AddToWorkList(BV.getNode());
8665
8666 return DAG.getNode(Opcode, dl, VT, BV);
8667}
8668
Michael Liaofac14ab2012-10-23 23:06:52 +00008669SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
8670 unsigned NumInScalars = N->getNumOperands();
8671 DebugLoc dl = N->getDebugLoc();
8672 EVT VT = N->getValueType(0);
8673
8674 // A vector built entirely of undefs is undef.
8675 if (ISD::allOperandsUndef(N))
8676 return DAG.getUNDEF(VT);
8677
8678 SDValue V = reduceBuildVecExtToExtBuildVec(N);
8679 if (V.getNode())
8680 return V;
8681
Michael Liao1a5cc712012-10-24 04:14:18 +00008682 V = reduceBuildVecConvertToConvertBuildVec(N);
8683 if (V.getNode())
8684 return V;
8685
Dan Gohman7f321562007-06-25 16:23:39 +00008686 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
8687 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
8688 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00008689
8690 // May only combine to shuffle after legalize if shuffle is legal.
8691 if (LegalOperations &&
8692 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
8693 return SDValue();
8694
Dan Gohman475871a2008-07-27 21:46:04 +00008695 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00008696 for (unsigned i = 0; i != NumInScalars; ++i) {
8697 // Ignore undef inputs.
8698 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008699
Dan Gohman7f321562007-06-25 16:23:39 +00008700 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00008701 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00008702 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00008703 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00008704 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008705 break;
8706 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008707
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008708 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00008709 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008710 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
8711 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008712
Gabor Greifba36cb52008-08-28 21:40:38 +00008713 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00008714 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00008715 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00008716 VecIn2 = ExtractedFromVec;
8717 } else {
8718 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008719 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008720 break;
8721 }
8722 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008723
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008724 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00008725 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008726 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00008727 for (unsigned i = 0; i != NumInScalars; ++i) {
8728 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008729 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008730 continue;
8731 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008732
Rafael Espindola15684b22009-04-24 12:40:33 +00008733 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00008734 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00008735 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008736 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00008737 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
8738 if (ExtIndex > VT.getVectorNumElements())
8739 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008740
Nate Begeman5a5ca152009-04-29 05:20:52 +00008741 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008742 continue;
8743 }
8744
8745 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00008746 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008747 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008748 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008749
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008750 // We can't generate a shuffle node with mismatched input and output types.
8751 // Attempt to transform a single input vector to the correct type.
8752 if ((VT != VecIn1.getValueType())) {
8753 // We don't support shuffeling between TWO values of different types.
8754 if (VecIn2.getNode() != 0)
8755 return SDValue();
8756
8757 // We only support widening of vectors which are half the size of the
8758 // output registers. For example XMM->YMM widening on X86 with AVX.
8759 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
8760 return SDValue();
8761
James Molloy8cd08bf2012-09-10 14:01:21 +00008762 // If the input vector type has a different base type to the output
8763 // vector type, bail out.
8764 if (VecIn1.getValueType().getVectorElementType() !=
8765 VT.getVectorElementType())
8766 return SDValue();
8767
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00008768 // Widen the input vector by adding undef values.
Michael Liaofac14ab2012-10-23 23:06:52 +00008769 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00008770 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008771 }
8772
8773 // If VecIn2 is unused then change it to undef.
8774 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
8775
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008776 // Check that we were able to transform all incoming values to the same
8777 // type.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00008778 if (VecIn2.getValueType() != VecIn1.getValueType() ||
8779 VecIn1.getValueType() != VT)
8780 return SDValue();
8781
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008782 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00008783 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00008784 return SDValue();
8785
Dan Gohman7f321562007-06-25 16:23:39 +00008786 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00008787 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00008788 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008789 Ops[1] = VecIn2;
Michael Liaofac14ab2012-10-23 23:06:52 +00008790 return DAG.getVectorShuffle(VT, dl, Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008791 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008792
Dan Gohman475871a2008-07-27 21:46:04 +00008793 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00008794}
8795
Dan Gohman475871a2008-07-27 21:46:04 +00008796SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00008797 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
8798 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
8799 // inputs come from at most two distinct vectors, turn this into a shuffle
8800 // node.
8801
8802 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00008803 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00008804 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00008805
Nadav Rotemb7e230d2012-07-14 21:30:27 +00008806 // Check if all of the operands are undefs.
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008807 if (ISD::allOperandsUndef(N))
Nadav Rotemb7e230d2012-07-14 21:30:27 +00008808 return DAG.getUNDEF(N->getValueType(0));
8809
Dan Gohman475871a2008-07-27 21:46:04 +00008810 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00008811}
8812
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008813SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
8814 EVT NVT = N->getValueType(0);
8815 SDValue V = N->getOperand(0);
8816
8817 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
8818 // Handle only simple case where vector being inserted and vector
8819 // being extracted are of same type, and are half size of larger vectors.
8820 EVT BigVT = V->getOperand(0).getValueType();
8821 EVT SmallVT = V->getOperand(1).getValueType();
8822 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
8823 return SDValue();
8824
Eli Friedman26323442011-12-07 00:11:56 +00008825 // Only handle cases where both indexes are constants with the same type.
Michael Liao13429e22012-10-17 20:48:33 +00008826 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
8827 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008828
Eli Friedman26323442011-12-07 00:11:56 +00008829 if (InsIdx && ExtIdx &&
8830 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
8831 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
8832 // Combine:
8833 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
8834 // Into:
8835 // indices are equal => V1
8836 // otherwise => (extract_subvec V1, ExtIdx)
8837 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
8838 return V->getOperand(1);
8839 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
8840 V->getOperand(0), N->getOperand(1));
8841 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008842 }
8843
Michael Liao13429e22012-10-17 20:48:33 +00008844 if (V->getOpcode() == ISD::CONCAT_VECTORS) {
8845 // Combine:
8846 // (extract_subvec (concat V1, V2, ...), i)
8847 // Into:
8848 // Vi if possible
Michael Liao9aecdb52012-10-19 03:17:00 +00008849 // Only operand 0 is checked as 'concat' assumes all inputs of the same type.
8850 if (V->getOperand(0).getValueType() != NVT)
8851 return SDValue();
Michael Liao13429e22012-10-17 20:48:33 +00008852 unsigned Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
8853 unsigned NumElems = NVT.getVectorNumElements();
8854 assert((Idx % NumElems) == 0 &&
8855 "IDX in concat is not a multiple of the result vector length.");
8856 return V->getOperand(Idx / NumElems);
8857 }
8858
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008859 return SDValue();
8860}
8861
Dan Gohman475871a2008-07-27 21:46:04 +00008862SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00008863 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00008864 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00008865
Mon P Wangaeb06d22008-11-10 04:46:22 +00008866 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00008867 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00008868
Craig Topperae1bec52012-04-09 05:16:56 +00008869 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00008870
Craig Topper481b79c2012-01-04 08:07:43 +00008871 // Canonicalize shuffle undef, undef -> undef
8872 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
8873 return DAG.getUNDEF(VT);
8874
8875 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
8876
8877 // Canonicalize shuffle v, v -> v, undef
8878 if (N0 == N1) {
8879 SmallVector<int, 8> NewMask;
8880 for (unsigned i = 0; i != NumElts; ++i) {
8881 int Idx = SVN->getMaskElt(i);
8882 if (Idx >= (int)NumElts) Idx -= NumElts;
8883 NewMask.push_back(Idx);
8884 }
8885 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
8886 &NewMask[0]);
8887 }
8888
8889 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
8890 if (N0.getOpcode() == ISD::UNDEF) {
8891 SmallVector<int, 8> NewMask;
8892 for (unsigned i = 0; i != NumElts; ++i) {
8893 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00008894 if (Idx >= 0) {
8895 if (Idx < (int)NumElts)
8896 Idx += NumElts;
8897 else
8898 Idx -= NumElts;
8899 }
8900 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00008901 }
8902 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
8903 &NewMask[0]);
8904 }
8905
8906 // Remove references to rhs if it is undef
8907 if (N1.getOpcode() == ISD::UNDEF) {
8908 bool Changed = false;
8909 SmallVector<int, 8> NewMask;
8910 for (unsigned i = 0; i != NumElts; ++i) {
8911 int Idx = SVN->getMaskElt(i);
8912 if (Idx >= (int)NumElts) {
8913 Idx = -1;
8914 Changed = true;
8915 }
8916 NewMask.push_back(Idx);
8917 }
8918 if (Changed)
8919 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
8920 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00008921
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008922 // If it is a splat, check if the argument vector is another splat or a
8923 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008924 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00008925 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00008926
Dan Gohman7f321562007-06-25 16:23:39 +00008927 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00008928 // not the number of vector elements, look through it. Be careful not to
8929 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008930 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00008931 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00008932 if (ConvInput.getValueType().isVector() &&
8933 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00008934 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00008935 }
8936
Dan Gohman7f321562007-06-25 16:23:39 +00008937 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008938 assert(V->getNumOperands() == NumElts &&
8939 "BUILD_VECTOR has wrong number of operands");
8940 SDValue Base;
8941 bool AllSame = true;
8942 for (unsigned i = 0; i != NumElts; ++i) {
8943 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
8944 Base = V->getOperand(i);
8945 break;
Evan Cheng917ec982006-07-21 08:25:53 +00008946 }
Evan Cheng917ec982006-07-21 08:25:53 +00008947 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008948 // Splat of <u, u, u, u>, return <u, u, u, u>
8949 if (!Base.getNode())
8950 return N0;
8951 for (unsigned i = 0; i != NumElts; ++i) {
8952 if (V->getOperand(i) != Base) {
8953 AllSame = false;
8954 break;
8955 }
8956 }
8957 // Splat of <x, x, x, x>, return <x, x, x, x>
8958 if (AllSame)
8959 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00008960 }
8961 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00008962
8963 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008964 // and it reverses the swizzle of the previous shuffle then we can
8965 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00008966 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
8967 N1.getOpcode() == ISD::UNDEF) {
8968
Nadav Rotem4ac90812012-04-01 19:31:22 +00008969 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
8970
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008971 // Shuffle nodes can only reverse shuffles with a single non-undef value.
8972 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
8973 return SDValue();
8974
Craig Topperae1bec52012-04-09 05:16:56 +00008975 // The incoming shuffle must be of the same type as the result of the
8976 // current shuffle.
8977 assert(OtherSV->getOperand(0).getValueType() == VT &&
8978 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00008979
8980 for (unsigned i = 0; i != NumElts; ++i) {
8981 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00008982 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00008983 // Next, this index comes from the first value, which is the incoming
8984 // shuffle. Adopt the incoming index.
8985 if (Idx >= 0)
8986 Idx = OtherSV->getMaskElt(Idx);
8987
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008988 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00008989 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008990 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00008991 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008992
8993 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00008994 }
8995
Dan Gohman475871a2008-07-27 21:46:04 +00008996 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00008997}
8998
Jim Grosbach9a526492010-06-23 16:07:42 +00008999SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
9000 if (!TLI.getShouldFoldAtomicFences())
9001 return SDValue();
9002
9003 SDValue atomic = N->getOperand(0);
9004 switch (atomic.getOpcode()) {
9005 case ISD::ATOMIC_CMP_SWAP:
9006 case ISD::ATOMIC_SWAP:
9007 case ISD::ATOMIC_LOAD_ADD:
9008 case ISD::ATOMIC_LOAD_SUB:
9009 case ISD::ATOMIC_LOAD_AND:
9010 case ISD::ATOMIC_LOAD_OR:
9011 case ISD::ATOMIC_LOAD_XOR:
9012 case ISD::ATOMIC_LOAD_NAND:
9013 case ISD::ATOMIC_LOAD_MIN:
9014 case ISD::ATOMIC_LOAD_MAX:
9015 case ISD::ATOMIC_LOAD_UMIN:
9016 case ISD::ATOMIC_LOAD_UMAX:
9017 break;
9018 default:
9019 return SDValue();
9020 }
9021
9022 SDValue fence = atomic.getOperand(0);
9023 if (fence.getOpcode() != ISD::MEMBARRIER)
9024 return SDValue();
9025
9026 switch (atomic.getOpcode()) {
9027 case ISD::ATOMIC_CMP_SWAP:
9028 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
9029 fence.getOperand(0),
9030 atomic.getOperand(1), atomic.getOperand(2),
9031 atomic.getOperand(3)), atomic.getResNo());
9032 case ISD::ATOMIC_SWAP:
9033 case ISD::ATOMIC_LOAD_ADD:
9034 case ISD::ATOMIC_LOAD_SUB:
9035 case ISD::ATOMIC_LOAD_AND:
9036 case ISD::ATOMIC_LOAD_OR:
9037 case ISD::ATOMIC_LOAD_XOR:
9038 case ISD::ATOMIC_LOAD_NAND:
9039 case ISD::ATOMIC_LOAD_MIN:
9040 case ISD::ATOMIC_LOAD_MAX:
9041 case ISD::ATOMIC_LOAD_UMIN:
9042 case ISD::ATOMIC_LOAD_UMAX:
9043 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
9044 fence.getOperand(0),
9045 atomic.getOperand(1), atomic.getOperand(2)),
9046 atomic.getResNo());
9047 default:
9048 return SDValue();
9049 }
9050}
9051
Evan Cheng44f1f092006-04-20 08:56:16 +00009052/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00009053/// an AND to a vector_shuffle with the destination vector and a zero vector.
9054/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00009055/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00009056SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00009057 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00009058 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00009059 SDValue LHS = N->getOperand(0);
9060 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00009061 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009062 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00009063 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00009064 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00009065 SmallVector<int, 8> Indices;
9066 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00009067 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00009068 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00009069 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00009070 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00009071
9072 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00009073 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00009074 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00009075 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00009076 else
Dan Gohman475871a2008-07-27 21:46:04 +00009077 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009078 }
9079
9080 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00009081 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00009082 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00009083 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009084
Dan Gohman7f321562007-06-25 16:23:39 +00009085 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00009086 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00009087 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00009088 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00009089 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
9090 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009091 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00009092 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009093 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00009094 }
9095 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009096
Dan Gohman475871a2008-07-27 21:46:04 +00009097 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009098}
9099
Dan Gohman7f321562007-06-25 16:23:39 +00009100/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00009101SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00009102 // After legalize, the target may be depending on adds and other
9103 // binary ops to provide legal ways to construct constants or other
9104 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00009105 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00009106
Bob Wilsond7273432010-12-17 23:06:49 +00009107 assert(N->getValueType(0).isVector() &&
9108 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00009109
Dan Gohman475871a2008-07-27 21:46:04 +00009110 SDValue LHS = N->getOperand(0);
9111 SDValue RHS = N->getOperand(1);
9112 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00009113 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00009114
Dan Gohman7f321562007-06-25 16:23:39 +00009115 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00009116 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00009117 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00009118 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00009119 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00009120 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00009121 SDValue LHSOp = LHS.getOperand(i);
9122 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00009123 // If these two elements can't be folded, bail out.
9124 if ((LHSOp.getOpcode() != ISD::UNDEF &&
9125 LHSOp.getOpcode() != ISD::Constant &&
9126 LHSOp.getOpcode() != ISD::ConstantFP) ||
9127 (RHSOp.getOpcode() != ISD::UNDEF &&
9128 RHSOp.getOpcode() != ISD::Constant &&
9129 RHSOp.getOpcode() != ISD::ConstantFP))
9130 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00009131
Evan Cheng7b336a82006-05-31 06:08:35 +00009132 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00009133 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
9134 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00009135 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00009136 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00009137 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00009138 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00009139 break;
9140 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009141
Bob Wilsond7273432010-12-17 23:06:49 +00009142 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00009143 EVT RVT = RHSOp.getValueType();
9144 if (RVT != VT) {
9145 // Integer BUILD_VECTOR operands may have types larger than the element
9146 // size (e.g., when the element type is not legal). Prior to type
9147 // legalization, the types may not match between the two BUILD_VECTORS.
9148 // Truncate one of the operands to make them match.
9149 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
9150 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
9151 } else {
9152 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
9153 VT = RVT;
9154 }
9155 }
Bob Wilsond7273432010-12-17 23:06:49 +00009156 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00009157 LHSOp, RHSOp);
9158 if (FoldOp.getOpcode() != ISD::UNDEF &&
9159 FoldOp.getOpcode() != ISD::Constant &&
9160 FoldOp.getOpcode() != ISD::ConstantFP)
9161 break;
9162 Ops.push_back(FoldOp);
9163 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00009164 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009165
Bob Wilsond7273432010-12-17 23:06:49 +00009166 if (Ops.size() == LHS.getNumOperands())
9167 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
9168 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00009169 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009170
Dan Gohman475871a2008-07-27 21:46:04 +00009171 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00009172}
9173
Craig Topperdd201ff2012-09-11 01:45:21 +00009174/// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG.
9175SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) {
9176 // After legalize, the target may be depending on adds and other
9177 // binary ops to provide legal ways to construct constants or other
9178 // things. Simplifying them may result in a loss of legality.
9179 if (LegalOperations) return SDValue();
9180
9181 assert(N->getValueType(0).isVector() &&
9182 "SimplifyVUnaryOp only works on vectors!");
9183
9184 SDValue N0 = N->getOperand(0);
9185
9186 if (N0.getOpcode() != ISD::BUILD_VECTOR)
9187 return SDValue();
9188
9189 // Operand is a BUILD_VECTOR node, see if we can constant fold it.
9190 SmallVector<SDValue, 8> Ops;
9191 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
9192 SDValue Op = N0.getOperand(i);
9193 if (Op.getOpcode() != ISD::UNDEF &&
9194 Op.getOpcode() != ISD::ConstantFP)
9195 break;
9196 EVT EltVT = Op.getValueType();
9197 SDValue FoldOp = DAG.getNode(N->getOpcode(), N0.getDebugLoc(), EltVT, Op);
9198 if (FoldOp.getOpcode() != ISD::UNDEF &&
9199 FoldOp.getOpcode() != ISD::ConstantFP)
9200 break;
9201 Ops.push_back(FoldOp);
9202 AddToWorkList(FoldOp.getNode());
9203 }
9204
9205 if (Ops.size() != N0.getNumOperands())
9206 return SDValue();
9207
9208 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
9209 N0.getValueType(), &Ops[0], Ops.size());
9210}
9211
Bill Wendling836ca7d2009-01-30 23:59:18 +00009212SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
9213 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00009214 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00009215
Bill Wendling836ca7d2009-01-30 23:59:18 +00009216 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00009217 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009218
Nate Begemanf845b452005-10-08 00:29:44 +00009219 // If we got a simplified select_cc node back from SimplifySelectCC, then
9220 // break it down into a new SETCC node, and a new SELECT node, and then return
9221 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00009222 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009223 // Check to see if we got a select_cc back (to turn into setcc/select).
9224 // Otherwise, just return whatever node we got back, like fabs.
9225 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009226 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
9227 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009228 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009229 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00009230 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009231 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
9232 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00009233 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009234
Nate Begemanf845b452005-10-08 00:29:44 +00009235 return SCC;
9236 }
Dan Gohman475871a2008-07-27 21:46:04 +00009237 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00009238}
9239
Chris Lattner40c62d52005-10-18 06:04:22 +00009240/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
9241/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00009242/// select. Callers of this should assume that TheSelect is deleted if this
9243/// returns true. As such, they should return the appropriate thing (e.g. the
9244/// node) back to the top-level of the DAG combiner loop to avoid it being
9245/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00009246bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00009247 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009248
Nadav Rotemf94fdb62011-02-11 19:57:47 +00009249 // Cannot simplify select with vector condition
9250 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
9251
Chris Lattner40c62d52005-10-18 06:04:22 +00009252 // If this is a select from two identical things, try to pull the operation
9253 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00009254 if (LHS.getOpcode() != RHS.getOpcode() ||
9255 !LHS.hasOneUse() || !RHS.hasOneUse())
9256 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009257
Chris Lattner18061612010-09-21 15:46:59 +00009258 // If this is a load and the token chain is identical, replace the select
9259 // of two loads with a load through a select of the address to load from.
9260 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
9261 // constants have been dropped into the constant pool.
9262 if (LHS.getOpcode() == ISD::LOAD) {
9263 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
9264 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009265
Chris Lattner18061612010-09-21 15:46:59 +00009266 // Token chains must be identical.
9267 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00009268 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00009269 LLD->isVolatile() || RLD->isVolatile() ||
9270 // If this is an EXTLOAD, the VT's must match.
9271 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00009272 // If this is an EXTLOAD, the kind of extension must match.
9273 (LLD->getExtensionType() != RLD->getExtensionType() &&
9274 // The only exception is if one of the extensions is anyext.
9275 LLD->getExtensionType() != ISD::EXTLOAD &&
9276 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00009277 // FIXME: this discards src value information. This is
9278 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00009279 // both potential memory locations. Since we are discarding
9280 // src value info, don't do the transformation if the memory
9281 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00009282 LLD->getPointerInfo().getAddrSpace() != 0 ||
9283 RLD->getPointerInfo().getAddrSpace() != 0)
9284 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009285
Chris Lattnerf1658062010-09-21 15:58:55 +00009286 // Check that the select condition doesn't reach either load. If so,
9287 // folding this will induce a cycle into the DAG. If not, this is safe to
9288 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00009289 SDValue Addr;
9290 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00009291 SDNode *CondNode = TheSelect->getOperand(0).getNode();
9292 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
9293 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
9294 return false;
Nadav Rotem1c5bf3f2012-10-18 18:06:48 +00009295 // The loads must not depend on one another.
9296 if (LLD->isPredecessorOf(RLD) ||
9297 RLD->isPredecessorOf(LLD))
9298 return false;
Chris Lattnerf1658062010-09-21 15:58:55 +00009299 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
9300 LLD->getBasePtr().getValueType(),
9301 TheSelect->getOperand(0), LLD->getBasePtr(),
9302 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00009303 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00009304 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
9305 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
9306
9307 if ((LLD->hasAnyUseOfValue(1) &&
9308 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00009309 (RLD->hasAnyUseOfValue(1) &&
9310 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00009311 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009312
Chris Lattnerf1658062010-09-21 15:58:55 +00009313 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
9314 LLD->getBasePtr().getValueType(),
9315 TheSelect->getOperand(0),
9316 TheSelect->getOperand(1),
9317 LLD->getBasePtr(), RLD->getBasePtr(),
9318 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00009319 }
9320
Chris Lattnerf1658062010-09-21 15:58:55 +00009321 SDValue Load;
9322 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
9323 Load = DAG.getLoad(TheSelect->getValueType(0),
9324 TheSelect->getDebugLoc(),
9325 // FIXME: Discards pointer info.
9326 LLD->getChain(), Addr, MachinePointerInfo(),
9327 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009328 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00009329 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00009330 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
9331 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00009332 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00009333 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00009334 // FIXME: Discards pointer info.
9335 LLD->getChain(), Addr, MachinePointerInfo(),
9336 LLD->getMemoryVT(), LLD->isVolatile(),
9337 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00009338 }
Chris Lattnerf1658062010-09-21 15:58:55 +00009339
9340 // Users of the select now use the result of the load.
9341 CombineTo(TheSelect, Load);
9342
9343 // Users of the old loads now use the new load's chain. We know the
9344 // old-load value is dead now.
9345 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
9346 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
9347 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00009348 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009349
Chris Lattner40c62d52005-10-18 06:04:22 +00009350 return false;
9351}
9352
Chris Lattner600fec32009-03-11 05:08:08 +00009353/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
9354/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00009355SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00009356 SDValue N2, SDValue N3,
9357 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00009358 // (x ? y : y) -> y.
9359 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009360
Owen Andersone50ed302009-08-10 22:56:29 +00009361 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00009362 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
9363 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
9364 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009365
9366 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00009367 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009368 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00009369 if (SCC.getNode()) AddToWorkList(SCC.getNode());
9370 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009371
9372 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00009373 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009374 return N2;
9375 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00009376 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009377 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00009378
Nate Begemanf845b452005-10-08 00:29:44 +00009379 // Check to see if we can simplify the select into an fabs node
9380 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
9381 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00009382 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009383 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
9384 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
9385 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
9386 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009387 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009388
Nate Begemanf845b452005-10-08 00:29:44 +00009389 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
9390 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
9391 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
9392 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009393 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00009394 }
9395 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009396
Chris Lattner600fec32009-03-11 05:08:08 +00009397 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
9398 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
9399 // in it. This is a win when the constant is not otherwise available because
9400 // it replaces two constant pool loads with one. We only do this if the FP
9401 // type is known to be legal, because if it isn't, then we are before legalize
9402 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00009403 // messing with soft float) and if the ConstantFP is not legal, because if
9404 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00009405 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
9406 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
9407 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00009408 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
9409 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00009410 // If both constants have multiple uses, then we won't need to do an
9411 // extra load, they are likely around in registers for other users.
9412 (TV->hasOneUse() || FV->hasOneUse())) {
9413 Constant *Elts[] = {
9414 const_cast<ConstantFP*>(FV->getConstantFPValue()),
9415 const_cast<ConstantFP*>(TV->getConstantFPValue())
9416 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009417 Type *FPTy = Elts[0]->getType();
Micah Villmow3574eca2012-10-08 16:38:25 +00009418 const DataLayout &TD = *TLI.getDataLayout();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009419
Chris Lattner600fec32009-03-11 05:08:08 +00009420 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00009421 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00009422 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
9423 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00009424 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00009425
9426 // Get the offsets to the 0 and 1 element of the array so that we can
9427 // select between them.
9428 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00009429 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00009430 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009431
Chris Lattner600fec32009-03-11 05:08:08 +00009432 SDValue Cond = DAG.getSetCC(DL,
9433 TLI.getSetCCResultType(N0.getValueType()),
9434 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00009435 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009436 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
9437 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00009438 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009439 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
9440 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00009441 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009442 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00009443 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00009444 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00009445
9446 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009447 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009448
Nate Begemanf845b452005-10-08 00:29:44 +00009449 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00009450 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00009451 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00009452 (N1C->isNullValue() || // (a < 0) ? b : 0
9453 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00009454 EVT XType = N0.getValueType();
9455 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00009456 if (XType.bitsGE(AType)) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00009457 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00009458 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00009459 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
9460 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00009461 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00009462 SDValue ShCt = DAG.getConstant(ShCtV,
9463 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00009464 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009465 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00009466 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009467
Duncan Sands8e4eb092008-06-08 20:54:56 +00009468 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009469 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009470 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009471 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009472
9473 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009474 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009475
Bill Wendling9729c5a2009-01-31 03:12:48 +00009476 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009477 XType, N0,
9478 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009479 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00009480 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009481
Duncan Sands8e4eb092008-06-08 20:54:56 +00009482 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009483 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009484 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009485 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009486
9487 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009488 }
9489 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009490
Owen Andersoned1088a2010-09-22 22:58:22 +00009491 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
9492 // where y is has a single bit set.
9493 // A plaintext description would be, we can turn the SELECT_CC into an AND
9494 // when the condition can be materialized as an all-ones register. Any
9495 // single bit-test can be materialized as an all-ones register with
9496 // shift-left and shift-right-arith.
9497 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
9498 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009499 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00009500 N2C && N2C->isNullValue()) {
9501 SDValue AndLHS = N0->getOperand(0);
9502 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
9503 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
9504 // Shift the tested bit over the sign bit.
9505 APInt AndMask = ConstAndRHS->getAPIntValue();
9506 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00009507 DAG.getConstant(AndMask.countLeadingZeros(),
9508 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00009509 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009510
Owen Andersoned1088a2010-09-22 22:58:22 +00009511 // Now arithmetic right shift it all the way over, so the result is either
9512 // all-ones, or zero.
9513 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00009514 DAG.getConstant(AndMask.getBitWidth()-1,
9515 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00009516 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009517
Owen Andersoned1088a2010-09-22 22:58:22 +00009518 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
9519 }
9520 }
9521
Nate Begeman07ed4172005-10-10 21:26:48 +00009522 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00009523 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00009524 TLI.getBooleanContents(N0.getValueType().isVector()) ==
9525 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009526
Chris Lattner1eba01e2007-04-11 06:50:51 +00009527 // If the caller doesn't want us to simplify this into a zext of a compare,
9528 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00009529 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00009530 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00009531
Nate Begeman07ed4172005-10-10 21:26:48 +00009532 // Get a SetCC of the condition
Owen Andersonefcc1ae2012-11-03 00:17:26 +00009533 // NOTE: Don't create a SETCC if it's not legal on this target.
9534 if (!LegalOperations ||
9535 TLI.isOperationLegal(ISD::SETCC,
9536 LegalTypes ? TLI.getSetCCResultType(N0.getValueType()) : MVT::i1)) {
9537 SDValue Temp, SCC;
9538 // cast from setcc result type to select result type
9539 if (LegalTypes) {
9540 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
9541 N0, N1, CC);
9542 if (N2.getValueType().bitsLT(SCC.getValueType()))
9543 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(),
9544 N2.getValueType());
9545 else
9546 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
9547 N2.getValueType(), SCC);
9548 } else {
9549 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00009550 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009551 N2.getValueType(), SCC);
Owen Andersonefcc1ae2012-11-03 00:17:26 +00009552 }
9553
9554 AddToWorkList(SCC.getNode());
9555 AddToWorkList(Temp.getNode());
9556
9557 if (N2C->getAPIntValue() == 1)
9558 return Temp;
9559
9560 // shl setcc result by log2 n2c
9561 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
9562 DAG.getConstant(N2C->getAPIntValue().logBase2(),
9563 getShiftAmountTy(Temp.getValueType())));
Nate Begemanb0d04a72006-02-18 02:40:58 +00009564 }
Nate Begeman07ed4172005-10-10 21:26:48 +00009565 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009566
Nate Begemanf845b452005-10-08 00:29:44 +00009567 // Check to see if this is the equivalent of setcc
9568 // FIXME: Turn all of these into setcc if setcc if setcc is legal
9569 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00009570 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00009571 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00009572 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00009573 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009574 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00009575 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009576 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00009577 return Res;
9578 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009579
Bill Wendling836ca7d2009-01-30 23:59:18 +00009580 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00009581 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00009582 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00009583 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009584 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009585 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00009586 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00009587 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00009588 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009589 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00009590 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009591 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
9592 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00009593 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00009594 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00009595 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00009596 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009597 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00009598 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009599 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00009600 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009601 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00009602 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009603 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00009604 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00009605 }
9606 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009607
Benjamin Kramercde51102010-07-08 12:09:56 +00009608 // Check to see if this is an integer abs.
9609 // select_cc setg[te] X, 0, X, -X ->
9610 // select_cc setgt X, -1, X, -X ->
9611 // select_cc setl[te] X, 0, -X, X ->
9612 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00009613 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00009614 if (N1C) {
9615 ConstantSDNode *SubC = NULL;
9616 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
9617 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
9618 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
9619 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
9620 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
9621 (N1C->isOne() && CC == ISD::SETLT)) &&
9622 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
9623 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
9624
Owen Andersone50ed302009-08-10 22:56:29 +00009625 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00009626 if (SubC && SubC->isNullValue() && XType.isInteger()) {
9627 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
9628 N0,
9629 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009630 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00009631 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
9632 XType, N0, Shift);
9633 AddToWorkList(Shift.getNode());
9634 AddToWorkList(Add.getNode());
9635 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00009636 }
9637 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009638
Dan Gohman475871a2008-07-27 21:46:04 +00009639 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00009640}
9641
Evan Chengfa1eb272007-02-08 22:13:59 +00009642/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00009643SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00009644 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009645 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009646 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00009647 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009648 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00009649}
9650
Nate Begeman69575232005-10-20 02:15:44 +00009651/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
9652/// return a DAG expression to select that will generate the same value by
9653/// multiplying by a magic number. See:
9654/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00009655SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00009656 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00009657 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009658
Andrew Lenharth232c9102006-06-12 16:07:18 +00009659 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009660 ii != ee; ++ii)
9661 AddToWorkList(*ii);
9662 return S;
Nate Begeman69575232005-10-20 02:15:44 +00009663}
9664
9665/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
9666/// return a DAG expression to select that will generate the same value by
9667/// multiplying by a magic number. See:
9668/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00009669SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00009670 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00009671 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00009672
Andrew Lenharth232c9102006-06-12 16:07:18 +00009673 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009674 ii != ee; ++ii)
9675 AddToWorkList(*ii);
9676 return S;
Nate Begeman69575232005-10-20 02:15:44 +00009677}
9678
Nate Begemancc66cdd2009-09-25 06:05:26 +00009679/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00009680// to alias with anything but itself. Provides base object and offset as
9681// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009682static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Roman Divacky2943e372012-09-05 22:15:49 +00009683 const GlobalValue *&GV, const void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00009684 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009685 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00009686
Jim Laskey71382342006-10-07 23:37:56 +00009687 // If it's an adding a simple constant then integrate the offset.
9688 if (Base.getOpcode() == ISD::ADD) {
9689 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
9690 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00009691 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00009692 }
9693 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009694
Nate Begemancc66cdd2009-09-25 06:05:26 +00009695 // Return the underlying GlobalValue, and update the Offset. Return false
9696 // for GlobalAddressSDNode since the same GlobalAddress may be represented
9697 // by multiple nodes with different offsets.
9698 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
9699 GV = G->getGlobal();
9700 Offset += G->getOffset();
9701 return false;
9702 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009703
Nate Begemancc66cdd2009-09-25 06:05:26 +00009704 // Return the underlying Constant value, and update the Offset. Return false
9705 // for ConstantSDNodes since the same constant pool entry may be represented
9706 // by multiple nodes with different offsets.
9707 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
Roman Divacky2943e372012-09-05 22:15:49 +00009708 CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal()
9709 : (const void *)C->getConstVal();
Nate Begemancc66cdd2009-09-25 06:05:26 +00009710 Offset += C->getOffset();
9711 return false;
9712 }
Jim Laskey71382342006-10-07 23:37:56 +00009713 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009714 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00009715}
9716
9717/// isAlias - Return true if there is any possibility that the two addresses
9718/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00009719bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00009720 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009721 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009722 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00009723 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009724 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009725 unsigned SrcValueAlign2,
9726 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00009727 // If they are the same then they must be aliases.
9728 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00009729
Jim Laskey71382342006-10-07 23:37:56 +00009730 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00009731 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00009732 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00009733 const GlobalValue *GV1, *GV2;
Roman Divacky2943e372012-09-05 22:15:49 +00009734 const void *CV1, *CV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00009735 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
9736 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009737
Nate Begemancc66cdd2009-09-25 06:05:26 +00009738 // If they have a same base address then check to see if they overlap.
9739 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009740 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009741
Owen Anderson4a9f1502010-09-20 20:39:59 +00009742 // It is possible for different frame indices to alias each other, mostly
9743 // when tail call optimization reuses return address slots for arguments.
9744 // To catch this case, look up the actual index of frame indices to compute
9745 // the real alias relationship.
9746 if (isFrameIndex1 && isFrameIndex2) {
9747 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9748 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
9749 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
9750 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
9751 }
9752
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009753 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00009754 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009755 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
9756 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00009757
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009758 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
9759 // compared to the size and offset of the access, we may be able to prove they
9760 // do not alias. This check is conservative for now to catch cases created by
9761 // splitting vector types.
9762 if ((SrcValueAlign1 == SrcValueAlign2) &&
9763 (SrcValueOffset1 != SrcValueOffset2) &&
9764 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
9765 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
9766 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009767
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009768 // There is no overlap between these relatively aligned accesses of similar
9769 // size, return no alias.
9770 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
9771 return false;
9772 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009773
Jim Laskey07a27092006-10-18 19:08:31 +00009774 if (CombinerGlobalAA) {
9775 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00009776 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
9777 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
9778 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00009779 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009780 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
9781 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00009782 if (AAResult == AliasAnalysis::NoAlias)
9783 return false;
9784 }
Jim Laskey096c22e2006-10-18 12:29:57 +00009785
9786 // Otherwise we have to assume they alias.
9787 return true;
Jim Laskey71382342006-10-07 23:37:56 +00009788}
9789
Nadav Rotem90e11dc2012-11-29 00:00:08 +00009790bool DAGCombiner::isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1) {
9791 SDValue Ptr0, Ptr1;
9792 int64_t Size0, Size1;
9793 const Value *SrcValue0, *SrcValue1;
9794 int SrcValueOffset0, SrcValueOffset1;
9795 unsigned SrcValueAlign0, SrcValueAlign1;
9796 const MDNode *SrcTBAAInfo0, *SrcTBAAInfo1;
9797 FindAliasInfo(Op0, Ptr0, Size0, SrcValue0, SrcValueOffset0,
9798 SrcValueAlign0, SrcTBAAInfo0);
9799 FindAliasInfo(Op1, Ptr1, Size1, SrcValue1, SrcValueOffset1,
9800 SrcValueAlign1, SrcTBAAInfo1);
9801 return isAlias(Ptr0, Size0, SrcValue0, SrcValueOffset0,
Nadav Rotemdde785c2012-12-06 17:34:13 +00009802 SrcValueAlign0, SrcTBAAInfo0,
9803 Ptr1, Size1, SrcValue1, SrcValueOffset1,
9804 SrcValueAlign1, SrcTBAAInfo1);
Nadav Rotem90e11dc2012-11-29 00:00:08 +00009805}
9806
Jim Laskey71382342006-10-07 23:37:56 +00009807/// FindAliasInfo - Extracts the relevant alias information from the memory
9808/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00009809bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00009810 SDValue &Ptr, int64_t &Size,
9811 const Value *&SrcValue,
9812 int &SrcValueOffset,
9813 unsigned &SrcValueAlign,
9814 const MDNode *&TBAAInfo) const {
9815 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
9816
9817 Ptr = LS->getBasePtr();
9818 Size = LS->getMemoryVT().getSizeInBits() >> 3;
9819 SrcValue = LS->getSrcValue();
9820 SrcValueOffset = LS->getSrcValueOffset();
9821 SrcValueAlign = LS->getOriginalAlignment();
9822 TBAAInfo = LS->getTBAAInfo();
9823 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00009824}
9825
Jim Laskey6ff23e52006-10-04 16:53:27 +00009826/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
9827/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00009828void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
9829 SmallVector<SDValue, 8> &Aliases) {
9830 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009831 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00009832
Jim Laskey279f0532006-09-25 16:29:54 +00009833 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00009834 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009835 int64_t Size;
9836 const Value *SrcValue;
9837 int SrcValueOffset;
9838 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009839 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009840 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009841 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00009842
Jim Laskey6ff23e52006-10-04 16:53:27 +00009843 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00009844 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00009845 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009846
Jim Laskeybc588b82006-10-05 15:07:25 +00009847 // Look at each chain and determine if it is an alias. If so, add it to the
9848 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00009849 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00009850 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00009851 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00009852 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009853
9854 // For TokenFactor nodes, look at each operand and only continue up the
9855 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00009856 // find more and revert to original chain since the xform is unlikely to be
9857 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009858 //
9859 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00009860 // chain we found before we hit a tokenfactor rather than the original
9861 // chain.
9862 if (Depth > 6 || Aliases.size() == 2) {
9863 Aliases.clear();
9864 Aliases.push_back(OriginalChain);
9865 break;
9866 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009867
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009868 // Don't bother if we've been before.
9869 if (!Visited.insert(Chain.getNode()))
9870 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00009871
Jim Laskeybc588b82006-10-05 15:07:25 +00009872 switch (Chain.getOpcode()) {
9873 case ISD::EntryToken:
9874 // Entry token is ideal chain operand, but handled in FindBetterChain.
9875 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00009876
Jim Laskeybc588b82006-10-05 15:07:25 +00009877 case ISD::LOAD:
9878 case ISD::STORE: {
9879 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00009880 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009881 int64_t OpSize;
9882 const Value *OpSrcValue;
9883 int OpSrcValueOffset;
9884 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009885 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00009886 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009887 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009888 OpSrcValueAlign,
9889 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00009890
Jim Laskeybc588b82006-10-05 15:07:25 +00009891 // If chain is alias then stop here.
9892 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009893 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009894 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009895 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009896 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00009897 Aliases.push_back(Chain);
9898 } else {
9899 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00009900 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00009901 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00009902 }
Jim Laskeybc588b82006-10-05 15:07:25 +00009903 break;
9904 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009905
Jim Laskeybc588b82006-10-05 15:07:25 +00009906 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009907 // We have to check each of the operands of the token factor for "small"
9908 // token factors, so we queue them up. Adding the operands to the queue
9909 // (stack) in reverse order maintains the original order and increases the
9910 // likelihood that getNode will find a matching token factor (CSE.)
9911 if (Chain.getNumOperands() > 16) {
9912 Aliases.push_back(Chain);
9913 break;
9914 }
Jim Laskeybc588b82006-10-05 15:07:25 +00009915 for (unsigned n = Chain.getNumOperands(); n;)
9916 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00009917 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00009918 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00009919
Jim Laskeybc588b82006-10-05 15:07:25 +00009920 default:
9921 // For all other instructions we will just have to take what we can get.
9922 Aliases.push_back(Chain);
9923 break;
Jim Laskey279f0532006-09-25 16:29:54 +00009924 }
9925 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00009926}
9927
9928/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
9929/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00009930SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
9931 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00009932
Jim Laskey6ff23e52006-10-04 16:53:27 +00009933 // Accumulate all the aliases to this node.
9934 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00009935
Dan Gohman71dc7c92011-05-17 22:20:36 +00009936 // If no operands then chain to entry token.
9937 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00009938 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00009939
9940 // If a single operand then chain to it. We don't need to revisit it.
9941 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00009942 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009943
Jim Laskey6ff23e52006-10-04 16:53:27 +00009944 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009945 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009946 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00009947}
9948
Nate Begeman1d4d4142005-09-01 00:19:25 +00009949// SelectionDAG::Combine - This is the entry point for the file.
9950//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00009951void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00009952 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00009953 /// run - This is the main entry point to this class.
9954 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00009955 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00009956}