blob: 23821e6f603576e0bac82364e0aec7f69f329fda [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 Lattner600fec32009-03-11 05:08:08 +000021#include "llvm/DerivedTypes.h"
Owen Andersona90b3dc2009-07-15 21:51:10 +000022#include "llvm/LLVMContext.h"
Chris Lattner00161a62008-01-25 07:20:16 +000023#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000025#include "llvm/Analysis/AliasAnalysis.h"
Micah Villmow3574eca2012-10-08 16:38:25 +000026#include "llvm/DataLayout.h"
Nate Begeman1d4d4142005-09-01 00:19:25 +000027#include "llvm/Target/TargetLowering.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000028#include "llvm/Target/TargetMachine.h"
Chris Lattnerddae4bd2007-01-08 23:04:05 +000029#include "llvm/Target/TargetOptions.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000030#include "llvm/ADT/SmallPtrSet.h"
31#include "llvm/ADT/Statistic.h"
Jim Laskeyd1aed7a2006-09-21 16:28:59 +000032#include "llvm/Support/CommandLine.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000033#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000034#include "llvm/Support/ErrorHandling.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000035#include "llvm/Support/MathExtras.h"
Chris Lattnerbbbfa992009-08-23 06:35:02 +000036#include "llvm/Support/raw_ostream.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
Jim Laskey7ca56af2006-10-11 13:47:09 +0000294 /// FindAliasInfo - Extracts the relevant alias information from the memory
295 /// node. Returns true if the operand was a load.
296 bool FindAliasInfo(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000297 SDValue &Ptr, int64_t &Size,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000298 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000299 unsigned &SrcValueAlignment,
300 const MDNode *&TBAAInfo) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000301
Jim Laskey279f0532006-09-25 16:29:54 +0000302 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000303 /// looking for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +0000304 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands92abc622009-01-31 15:50:11 +0000305
Nadav Rotemc653de62012-10-03 16:11:15 +0000306 /// Merge consecutive store operations into a wide store.
307 /// This optimization uses wide integers or vectors when possible.
308 /// \return True if some memory operations were changed.
309 bool MergeConsecutiveStores(StoreSDNode *N);
310
Chris Lattner2392ae72010-04-15 04:48:01 +0000311 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000312 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000313 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000314 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000315
Nate Begeman1d4d4142005-09-01 00:19:25 +0000316 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000317 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000318
Chris Lattner2392ae72010-04-15 04:48:01 +0000319 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000320
Chris Lattner2392ae72010-04-15 04:48:01 +0000321 /// getShiftAmountTy - Returns a type large enough to hold any valid
322 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000323 EVT getShiftAmountTy(EVT LHSTy) {
324 return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000325 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000326
Chris Lattner2392ae72010-04-15 04:48:01 +0000327 /// isTypeLegal - This method returns true if we are running before type
328 /// legalization or if the specified VT is legal.
329 bool isTypeLegal(const EVT &VT) {
330 if (!LegalTypes) return true;
331 return TLI.isTypeLegal(VT);
332 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000333 };
334}
335
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000336
337namespace {
338/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
339/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000340class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000341 DAGCombiner &DC;
342public:
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000343 explicit WorkListRemover(DAGCombiner &dc)
344 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000345
Duncan Sandsedfcf592008-06-11 11:42:12 +0000346 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000347 DC.removeFromWorkList(N);
348 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000349};
350}
351
Chris Lattner24664722006-03-01 04:53:38 +0000352//===----------------------------------------------------------------------===//
353// TargetLowering::DAGCombinerInfo implementation
354//===----------------------------------------------------------------------===//
355
356void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
357 ((DAGCombiner*)DC)->AddToWorkList(N);
358}
359
Cameron Zwariched3caf92011-04-02 02:40:26 +0000360void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
361 ((DAGCombiner*)DC)->removeFromWorkList(N);
362}
363
Dan Gohman475871a2008-07-27 21:46:04 +0000364SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000365CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
366 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000367}
368
Dan Gohman475871a2008-07-27 21:46:04 +0000369SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000370CombineTo(SDNode *N, SDValue Res, bool AddTo) {
371 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000372}
373
374
Dan Gohman475871a2008-07-27 21:46:04 +0000375SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000376CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
377 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000378}
379
Dan Gohmane5af2d32009-01-29 01:59:02 +0000380void TargetLowering::DAGCombinerInfo::
381CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
382 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
383}
Chris Lattner24664722006-03-01 04:53:38 +0000384
Chris Lattner24664722006-03-01 04:53:38 +0000385//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000386// Helper Functions
387//===----------------------------------------------------------------------===//
388
389/// isNegatibleForFree - Return 1 if we can compute the negated form of the
390/// specified expression for the same cost as the expression itself, or 2 if we
391/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000392static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000393 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000394 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000395 unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000396 // fneg is removable even if it has multiple uses.
397 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000398
Chris Lattner29446522007-05-14 22:04:50 +0000399 // Don't allow anything with multiple uses.
400 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000401
Chris Lattner3adf9512007-05-25 02:19:06 +0000402 // Don't recurse exponentially.
403 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000404
Chris Lattner29446522007-05-14 22:04:50 +0000405 switch (Op.getOpcode()) {
406 default: return false;
407 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000408 // Don't invert constant FP values after legalize. The negated constant
409 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000410 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000411 case ISD::FADD:
412 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000413 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000414
Owen Andersonafd3d562012-03-06 00:29:31 +0000415 // After operation legalization, it might not be legal to create new FSUBs.
416 if (LegalOperations &&
417 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
418 return 0;
419
Craig Topper956342b2012-09-09 22:58:45 +0000420 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000421 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
422 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000423 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000424 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000425 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000426 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000427 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000428 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000429 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000430
Bill Wendlingd34470c2009-01-30 23:10:18 +0000431 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000432 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000433
Chris Lattner29446522007-05-14 22:04:50 +0000434 case ISD::FMUL:
435 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000436 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000437
Bill Wendlingd34470c2009-01-30 23:10:18 +0000438 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000439 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
440 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000441 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000442
Owen Andersonafd3d562012-03-06 00:29:31 +0000443 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000444 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000445
Chris Lattner29446522007-05-14 22:04:50 +0000446 case ISD::FP_EXTEND:
447 case ISD::FP_ROUND:
448 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000449 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000450 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000451 }
452}
453
454/// GetNegatedExpression - If isNegatibleForFree returns true, this function
455/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000456static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000457 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000458 // fneg is removable even if it has multiple uses.
459 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000460
Chris Lattner29446522007-05-14 22:04:50 +0000461 // Don't allow anything with multiple uses.
462 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000463
Chris Lattner3adf9512007-05-25 02:19:06 +0000464 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000465 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000466 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000467 case ISD::ConstantFP: {
468 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
469 V.changeSign();
470 return DAG.getConstantFP(V, Op.getValueType());
471 }
Chris Lattner29446522007-05-14 22:04:50 +0000472 case ISD::FADD:
473 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000474 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000475
Bill Wendlingd34470c2009-01-30 23:10:18 +0000476 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000477 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000478 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000479 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000480 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000481 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000482 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000483 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000484 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Bill Wendling35247c32009-01-30 00:45:56 +0000485 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000486 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000487 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000488 Op.getOperand(0));
489 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000490 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000491 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000492
Bill Wendlingd34470c2009-01-30 23:10:18 +0000493 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000494 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000495 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000496 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000497
Bill Wendlingd34470c2009-01-30 23:10:18 +0000498 // fold (fneg (fsub A, B)) -> (fsub B, A)
Bill Wendling35247c32009-01-30 00:45:56 +0000499 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
500 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000501
Chris Lattner29446522007-05-14 22:04:50 +0000502 case ISD::FMUL:
503 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000504 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000505
Bill Wendlingd34470c2009-01-30 23:10:18 +0000506 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000507 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000508 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000509 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000510 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000511 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000512 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000513 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000514
Bill Wendlingd34470c2009-01-30 23:10:18 +0000515 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Bill Wendling35247c32009-01-30 00:45:56 +0000516 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000517 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000518 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000519 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000520
Chris Lattner29446522007-05-14 22:04:50 +0000521 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000522 case ISD::FSIN:
Bill Wendling35247c32009-01-30 00:45:56 +0000523 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000524 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000525 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000526 case ISD::FP_ROUND:
Bill Wendling35247c32009-01-30 00:45:56 +0000527 return DAG.getNode(ISD::FP_ROUND, 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 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000531 }
532}
Chris Lattner24664722006-03-01 04:53:38 +0000533
534
Nate Begeman4ebd8052005-09-01 23:24:04 +0000535// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
536// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000537// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000538// nodes based on the type of node we are checking. This simplifies life a
539// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000540static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
541 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000542 if (N.getOpcode() == ISD::SETCC) {
543 LHS = N.getOperand(0);
544 RHS = N.getOperand(1);
545 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000546 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000547 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000548 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000549 N.getOperand(2).getOpcode() == ISD::Constant &&
550 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000551 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000552 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
553 LHS = N.getOperand(0);
554 RHS = N.getOperand(1);
555 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000556 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000557 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000558 return false;
559}
560
Nate Begeman99801192005-09-07 23:25:52 +0000561// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
562// one use. If this is true, it allows the users to invert the operation for
563// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000564static bool isOneUseSetCC(SDValue N) {
565 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000566 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000567 return true;
568 return false;
569}
570
Bill Wendling35247c32009-01-30 00:45:56 +0000571SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
572 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000573 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000574 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
575 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000576 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000577 SDValue OpNode =
578 DAG.FoldConstantArithmetic(Opc, VT,
579 cast<ConstantSDNode>(N0.getOperand(1)),
580 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000581 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000582 }
583 if (N0.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000584 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendling35247c32009-01-30 00:45:56 +0000585 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
586 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000587 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000588 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000589 }
590 }
Bill Wendling35247c32009-01-30 00:45:56 +0000591
Nate Begemancd4d58c2006-02-03 06:46:56 +0000592 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
593 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000594 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000595 SDValue OpNode =
596 DAG.FoldConstantArithmetic(Opc, VT,
597 cast<ConstantSDNode>(N1.getOperand(1)),
598 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000599 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000600 }
601 if (N1.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000602 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendlingd69c3142009-01-30 02:23:43 +0000603 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000604 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000605 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000606 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000607 }
608 }
Bill Wendling35247c32009-01-30 00:45:56 +0000609
Dan Gohman475871a2008-07-27 21:46:04 +0000610 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000611}
612
Dan Gohman475871a2008-07-27 21:46:04 +0000613SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
614 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000615 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
616 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000617 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000618 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000619 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000620 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000621 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000622 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000623 assert((!To[i].getNode() ||
624 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000625 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000626 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000627 DAG.ReplaceAllUsesWith(N, To);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000628 if (AddTo) {
629 // Push the new nodes and any users onto the worklist
630 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000631 if (To[i].getNode()) {
632 AddToWorkList(To[i].getNode());
633 AddUsersToWorkList(To[i].getNode());
634 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000635 }
636 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000637
Dan Gohmandbe664a2009-01-19 21:44:21 +0000638 // Finally, if the node is now dead, remove it from the graph. The node
639 // may not be dead if the replacement process recursively simplified to
640 // something else needing this node.
641 if (N->use_empty()) {
642 // Nodes can be reintroduced into the worklist. Make sure we do not
643 // process a node that has been replaced.
644 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000645
Dan Gohmandbe664a2009-01-19 21:44:21 +0000646 // Finally, since the node is now dead, remove it from the graph.
647 DAG.DeleteNode(N);
648 }
Dan Gohman475871a2008-07-27 21:46:04 +0000649 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000650}
651
Evan Chenge5b51ac2010-04-17 06:13:15 +0000652void DAGCombiner::
653CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000654 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000655 // are deleted, make sure to remove them from our worklist.
656 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000657 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000658
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000659 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000660 AddToWorkList(TLO.New.getNode());
661 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000662
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000663 // Finally, if the node is now dead, remove it from the graph. The node
664 // may not be dead if the replacement process recursively simplified to
665 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000666 if (TLO.Old.getNode()->use_empty()) {
667 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000668
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000669 // If the operands of this node are only used by the node, they will now
670 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000671 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
672 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
673 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000674
Gabor Greifba36cb52008-08-28 21:40:38 +0000675 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000676 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000677}
678
679/// SimplifyDemandedBits - Check the specified integer node value to see if
680/// it can be simplified or if things it uses can be simplified by bit
681/// propagation. If so, return true.
682bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000683 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000684 APInt KnownZero, KnownOne;
685 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
686 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000687
Dan Gohmane5af2d32009-01-29 01:59:02 +0000688 // Revisit the node.
689 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000690
Dan Gohmane5af2d32009-01-29 01:59:02 +0000691 // Replace the old value with the new one.
692 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000693 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000694 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000695 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000696 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000697 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000698
Dan Gohmane5af2d32009-01-29 01:59:02 +0000699 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000700 return true;
701}
702
Evan Cheng95c57ea2010-04-24 04:43:44 +0000703void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
704 DebugLoc dl = Load->getDebugLoc();
705 EVT VT = Load->getValueType(0);
706 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000707
Evan Cheng95c57ea2010-04-24 04:43:44 +0000708 DEBUG(dbgs() << "\nReplacing.9 ";
709 Load->dump(&DAG);
710 dbgs() << "\nWith: ";
711 Trunc.getNode()->dump(&DAG);
712 dbgs() << '\n');
713 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000714 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
715 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
Evan Cheng95c57ea2010-04-24 04:43:44 +0000716 removeFromWorkList(Load);
717 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000718 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000719}
720
721SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
722 Replace = false;
Evan Cheng4c26e932010-04-19 19:29:22 +0000723 DebugLoc dl = Op.getDebugLoc();
Evan Chenge5b51ac2010-04-17 06:13:15 +0000724 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000725 EVT MemVT = LD->getMemoryVT();
726 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000727 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000728 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000729 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000730 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000731 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000732 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000733 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000734 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000735 LD->isNonTemporal(), LD->getAlignment());
736 }
737
Evan Cheng4c26e932010-04-19 19:29:22 +0000738 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000739 switch (Opc) {
740 default: break;
741 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000742 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000743 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000744 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000745 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000746 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000747 ZExtPromoteOperand(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::Constant: {
750 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000751 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000752 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000753 }
Evan Chengcaf77402010-04-23 19:10:30 +0000754 }
755
756 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000757 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000758 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000759}
760
Evan Cheng95c57ea2010-04-24 04:43:44 +0000761SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000762 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
763 return SDValue();
764 EVT OldVT = Op.getValueType();
765 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000766 bool Replace = false;
767 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
768 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000769 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000770 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000771
772 if (Replace)
773 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
774 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000775 DAG.getValueType(OldVT));
776}
777
Evan Cheng95c57ea2010-04-24 04:43:44 +0000778SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000779 EVT OldVT = Op.getValueType();
780 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000781 bool Replace = false;
782 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
783 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000784 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000785 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000786
787 if (Replace)
788 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
789 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000790}
791
Evan Cheng64b7bf72010-04-16 06:14:10 +0000792/// PromoteIntBinOp - Promote the specified integer binary operation if the
793/// target indicates it is beneficial. e.g. On x86, it's usually better to
794/// promote i16 operations to i32 since i16 instructions are longer.
795SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
796 if (!LegalOperations)
797 return SDValue();
798
799 EVT VT = Op.getValueType();
800 if (VT.isVector() || !VT.isInteger())
801 return SDValue();
802
Evan Chenge5b51ac2010-04-17 06:13:15 +0000803 // If operation type is 'undesirable', e.g. i16 on x86, consider
804 // promoting it.
805 unsigned Opc = Op.getOpcode();
806 if (TLI.isTypeDesirableForOp(Opc, VT))
807 return SDValue();
808
Evan Cheng64b7bf72010-04-16 06:14:10 +0000809 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000810 // Consult target whether it is a good idea to promote this operation and
811 // what's the right type to promote it to.
812 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000813 assert(PVT != VT && "Don't know what type to promote to!");
814
Evan Cheng95c57ea2010-04-24 04:43:44 +0000815 bool Replace0 = false;
816 SDValue N0 = Op.getOperand(0);
817 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
818 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000819 return SDValue();
820
Evan Cheng95c57ea2010-04-24 04:43:44 +0000821 bool Replace1 = false;
822 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000823 SDValue NN1;
824 if (N0 == N1)
825 NN1 = NN0;
826 else {
827 NN1 = PromoteOperand(N1, PVT, Replace1);
828 if (NN1.getNode() == 0)
829 return SDValue();
830 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000831
Evan Cheng95c57ea2010-04-24 04:43:44 +0000832 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000833 if (NN1.getNode())
834 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000835
836 if (Replace0)
837 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
838 if (Replace1)
839 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000840
Evan Chengac7eae52010-04-27 19:48:13 +0000841 DEBUG(dbgs() << "\nPromoting ";
842 Op.getNode()->dump(&DAG));
Evan Cheng07c4e102010-04-22 20:19:46 +0000843 DebugLoc dl = Op.getDebugLoc();
844 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000845 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000846 }
847 return SDValue();
848}
849
850/// PromoteIntShiftOp - Promote the specified integer shift operation if the
851/// target indicates it is beneficial. e.g. On x86, it's usually better to
852/// promote i16 operations to i32 since i16 instructions are longer.
853SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
854 if (!LegalOperations)
855 return SDValue();
856
857 EVT VT = Op.getValueType();
858 if (VT.isVector() || !VT.isInteger())
859 return SDValue();
860
861 // If operation type is 'undesirable', e.g. i16 on x86, consider
862 // promoting it.
863 unsigned Opc = Op.getOpcode();
864 if (TLI.isTypeDesirableForOp(Opc, VT))
865 return SDValue();
866
867 EVT PVT = VT;
868 // Consult target whether it is a good idea to promote this operation and
869 // what's the right type to promote it to.
870 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
871 assert(PVT != VT && "Don't know what type to promote to!");
872
Evan Cheng95c57ea2010-04-24 04:43:44 +0000873 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000874 SDValue N0 = Op.getOperand(0);
875 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000876 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000877 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000878 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000879 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000880 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000881 if (N0.getNode() == 0)
882 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000883
Evan Chenge5b51ac2010-04-17 06:13:15 +0000884 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000885 if (Replace)
886 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000887
Evan Chengac7eae52010-04-27 19:48:13 +0000888 DEBUG(dbgs() << "\nPromoting ";
889 Op.getNode()->dump(&DAG));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000890 DebugLoc dl = Op.getDebugLoc();
891 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000892 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000893 }
894 return SDValue();
895}
896
Evan Cheng4c26e932010-04-19 19:29:22 +0000897SDValue DAGCombiner::PromoteExtend(SDValue Op) {
898 if (!LegalOperations)
899 return SDValue();
900
901 EVT VT = Op.getValueType();
902 if (VT.isVector() || !VT.isInteger())
903 return SDValue();
904
905 // If operation type is 'undesirable', e.g. i16 on x86, consider
906 // promoting it.
907 unsigned Opc = Op.getOpcode();
908 if (TLI.isTypeDesirableForOp(Opc, VT))
909 return SDValue();
910
911 EVT PVT = VT;
912 // Consult target whether it is a good idea to promote this operation and
913 // what's the right type to promote it to.
914 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
915 assert(PVT != VT && "Don't know what type to promote to!");
916 // fold (aext (aext x)) -> (aext x)
917 // fold (aext (zext x)) -> (zext x)
918 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000919 DEBUG(dbgs() << "\nPromoting ";
920 Op.getNode()->dump(&DAG));
Evan Cheng4c26e932010-04-19 19:29:22 +0000921 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
922 }
923 return SDValue();
924}
925
926bool DAGCombiner::PromoteLoad(SDValue Op) {
927 if (!LegalOperations)
928 return false;
929
930 EVT VT = Op.getValueType();
931 if (VT.isVector() || !VT.isInteger())
932 return false;
933
934 // If operation type is 'undesirable', e.g. i16 on x86, consider
935 // promoting it.
936 unsigned Opc = Op.getOpcode();
937 if (TLI.isTypeDesirableForOp(Opc, VT))
938 return false;
939
940 EVT PVT = VT;
941 // Consult target whether it is a good idea to promote this operation and
942 // what's the right type to promote it to.
943 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
944 assert(PVT != VT && "Don't know what type to promote to!");
945
946 DebugLoc dl = Op.getDebugLoc();
947 SDNode *N = Op.getNode();
948 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000949 EVT MemVT = LD->getMemoryVT();
950 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000951 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000952 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000953 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000954 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000955 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000956 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000957 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000958 LD->isNonTemporal(), LD->getAlignment());
959 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
960
Evan Cheng95c57ea2010-04-24 04:43:44 +0000961 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000962 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000963 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000964 Result.getNode()->dump(&DAG);
965 dbgs() << '\n');
966 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000967 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
968 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
Evan Cheng4c26e932010-04-19 19:29:22 +0000969 removeFromWorkList(N);
970 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000971 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000972 return true;
973 }
974 return false;
975}
976
Evan Chenge5b51ac2010-04-17 06:13:15 +0000977
Chris Lattner29446522007-05-14 22:04:50 +0000978//===----------------------------------------------------------------------===//
979// Main DAG Combiner implementation
980//===----------------------------------------------------------------------===//
981
Duncan Sands25cf2272008-11-24 14:53:14 +0000982void DAGCombiner::Run(CombineLevel AtLevel) {
983 // set the instance variables, so that the various visit routines may use it.
984 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +0000985 LegalOperations = Level >= AfterLegalizeVectorOps;
986 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +0000987
Evan Cheng17a568b2008-08-29 22:21:44 +0000988 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +0000989 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
990 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +0000991 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +0000992
Evan Cheng17a568b2008-08-29 22:21:44 +0000993 // Create a dummy node (which is not added to allnodes), that adds a reference
994 // to the root node, preventing it from being deleted, and tracking any
995 // changes of the root.
996 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +0000997
Jim Laskey26f7fa72006-10-17 19:33:52 +0000998 // The root of the dag may dangle to deleted nodes until the dag combiner is
999 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +00001000 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00001001
James Molloy6660c052012-02-16 09:17:04 +00001002 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +00001003 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +00001004 while (!WorkListContents.empty()) {
1005 SDNode *N;
1006 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1007 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1008 // worklist *should* contain, and check the node we want to visit is should
1009 // actually be visited.
1010 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001011 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001012 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001013
Evan Cheng17a568b2008-08-29 22:21:44 +00001014 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1015 // N is deleted from the DAG, since they too may now be dead or may have a
1016 // reduced number of uses, allowing other xforms.
1017 if (N->use_empty() && N != &Dummy) {
1018 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1019 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001020
Evan Cheng17a568b2008-08-29 22:21:44 +00001021 DAG.DeleteNode(N);
1022 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001023 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001024
Evan Cheng17a568b2008-08-29 22:21:44 +00001025 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001026
Evan Cheng17a568b2008-08-29 22:21:44 +00001027 if (RV.getNode() == 0)
1028 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001029
Evan Cheng17a568b2008-08-29 22:21:44 +00001030 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001031
Evan Cheng17a568b2008-08-29 22:21:44 +00001032 // If we get back the same node we passed in, rather than a new node or
1033 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001034 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001035 // mechanics for us, we have no work to do in this case.
1036 if (RV.getNode() == N)
1037 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001038
Evan Cheng17a568b2008-08-29 22:21:44 +00001039 assert(N->getOpcode() != ISD::DELETED_NODE &&
1040 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1041 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001042
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001043 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001044 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001045 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001046 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001047 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001048
Devang Patel9728ea22011-05-23 22:04:42 +00001049 // Transfer debug value.
1050 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001051 WorkListRemover DeadNodes(*this);
1052 if (N->getNumValues() == RV.getNode()->getNumValues())
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001053 DAG.ReplaceAllUsesWith(N, RV.getNode());
Evan Cheng17a568b2008-08-29 22:21:44 +00001054 else {
1055 assert(N->getValueType(0) == RV.getValueType() &&
1056 N->getNumValues() == 1 && "Type mismatch");
1057 SDValue OpV = RV;
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001058 DAG.ReplaceAllUsesWith(N, &OpV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001059 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001060
Evan Cheng17a568b2008-08-29 22:21:44 +00001061 // Push the new node and any users onto the worklist
1062 AddToWorkList(RV.getNode());
1063 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001064
Evan Cheng17a568b2008-08-29 22:21:44 +00001065 // Add any uses of the old node to the worklist in case this node is the
1066 // last one that uses them. They may become dead after this node is
1067 // deleted.
1068 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1069 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001070
Dan Gohmandbe664a2009-01-19 21:44:21 +00001071 // Finally, if the node is now dead, remove it from the graph. The node
1072 // may not be dead if the replacement process recursively simplified to
1073 // something else needing this node.
1074 if (N->use_empty()) {
1075 // Nodes can be reintroduced into the worklist. Make sure we do not
1076 // process a node that has been replaced.
1077 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001078
Dan Gohmandbe664a2009-01-19 21:44:21 +00001079 // Finally, since the node is now dead, remove it from the graph.
1080 DAG.DeleteNode(N);
1081 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001082 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001083
Chris Lattner95038592005-10-05 06:35:28 +00001084 // If the root changed (e.g. it was a dead load, update the root).
1085 DAG.setRoot(Dummy.getValue());
Hal Finkel31490ba2012-04-16 03:33:22 +00001086 DAG.RemoveDeadNodes();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001087}
1088
Dan Gohman475871a2008-07-27 21:46:04 +00001089SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001090 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001091 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001092 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001093 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001094 case ISD::ADD: return visitADD(N);
1095 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001096 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001097 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001098 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001099 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001100 case ISD::MUL: return visitMUL(N);
1101 case ISD::SDIV: return visitSDIV(N);
1102 case ISD::UDIV: return visitUDIV(N);
1103 case ISD::SREM: return visitSREM(N);
1104 case ISD::UREM: return visitUREM(N);
1105 case ISD::MULHU: return visitMULHU(N);
1106 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001107 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1108 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001109 case ISD::SMULO: return visitSMULO(N);
1110 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001111 case ISD::SDIVREM: return visitSDIVREM(N);
1112 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001113 case ISD::AND: return visitAND(N);
1114 case ISD::OR: return visitOR(N);
1115 case ISD::XOR: return visitXOR(N);
1116 case ISD::SHL: return visitSHL(N);
1117 case ISD::SRA: return visitSRA(N);
1118 case ISD::SRL: return visitSRL(N);
1119 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001120 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001121 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001122 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001123 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001124 case ISD::SELECT: return visitSELECT(N);
1125 case ISD::SELECT_CC: return visitSELECT_CC(N);
1126 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001127 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1128 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001129 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001130 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1131 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001132 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001133 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001134 case ISD::FADD: return visitFADD(N);
1135 case ISD::FSUB: return visitFSUB(N);
1136 case ISD::FMUL: return visitFMUL(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00001137 case ISD::FMA: return visitFMA(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001138 case ISD::FDIV: return visitFDIV(N);
1139 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001140 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001141 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1142 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1143 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1144 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1145 case ISD::FP_ROUND: return visitFP_ROUND(N);
1146 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1147 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1148 case ISD::FNEG: return visitFNEG(N);
1149 case ISD::FABS: return visitFABS(N);
Owen Anderson7c626d32012-08-13 23:32:49 +00001150 case ISD::FFLOOR: return visitFFLOOR(N);
1151 case ISD::FCEIL: return visitFCEIL(N);
1152 case ISD::FTRUNC: return visitFTRUNC(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001153 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001154 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001155 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001156 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001157 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001158 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001159 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1160 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001161 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001162 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001163 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001164 }
Dan Gohman475871a2008-07-27 21:46:04 +00001165 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001166}
1167
Dan Gohman475871a2008-07-27 21:46:04 +00001168SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001169 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001170
1171 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001172 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001173 assert(N->getOpcode() != ISD::DELETED_NODE &&
1174 "Node was deleted but visit returned NULL!");
1175
1176 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1177 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1178
1179 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001180 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001181 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001182
1183 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1184 }
1185 }
1186
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001187 // If nothing happened still, try promoting the operation.
1188 if (RV.getNode() == 0) {
1189 switch (N->getOpcode()) {
1190 default: break;
1191 case ISD::ADD:
1192 case ISD::SUB:
1193 case ISD::MUL:
1194 case ISD::AND:
1195 case ISD::OR:
1196 case ISD::XOR:
1197 RV = PromoteIntBinOp(SDValue(N, 0));
1198 break;
1199 case ISD::SHL:
1200 case ISD::SRA:
1201 case ISD::SRL:
1202 RV = PromoteIntShiftOp(SDValue(N, 0));
1203 break;
1204 case ISD::SIGN_EXTEND:
1205 case ISD::ZERO_EXTEND:
1206 case ISD::ANY_EXTEND:
1207 RV = PromoteExtend(SDValue(N, 0));
1208 break;
1209 case ISD::LOAD:
1210 if (PromoteLoad(SDValue(N, 0)))
1211 RV = SDValue(N, 0);
1212 break;
1213 }
1214 }
1215
Scott Michelfdc40a02009-02-17 22:15:04 +00001216 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001217 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001218 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001219 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1220 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001221 SDValue N0 = N->getOperand(0);
1222 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001223
Evan Cheng08b11732008-03-22 01:55:50 +00001224 // Constant operands are canonicalized to RHS.
1225 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001226 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001227 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1228 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001229 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001230 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001231 }
1232 }
1233
Dan Gohman389079b2007-10-08 17:57:15 +00001234 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001235}
Dan Gohman389079b2007-10-08 17:57:15 +00001236
Chris Lattner6270f682006-10-08 22:57:01 +00001237/// getInputChainForNode - Given a node, return its input chain if it has one,
1238/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001239static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001240 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001241 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001242 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001243 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001244 return N->getOperand(NumOps-1);
1245 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001246 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001247 return N->getOperand(i);
1248 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001249 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001250}
1251
Dan Gohman475871a2008-07-27 21:46:04 +00001252SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001253 // If N has two operands, where one has an input chain equal to the other,
1254 // the 'other' chain is redundant.
1255 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001256 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001257 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001258 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001259 return N->getOperand(1);
1260 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001261
Chris Lattnerc76d4412007-05-16 06:37:59 +00001262 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001263 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001264 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001265 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001266
Jim Laskey6ff23e52006-10-04 16:53:27 +00001267 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001268 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001269
Jim Laskey71382342006-10-07 23:37:56 +00001270 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001271 // encountered.
1272 for (unsigned i = 0; i < TFs.size(); ++i) {
1273 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001274
Jim Laskey6ff23e52006-10-04 16:53:27 +00001275 // Check each of the operands.
1276 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001277 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001278
Jim Laskey6ff23e52006-10-04 16:53:27 +00001279 switch (Op.getOpcode()) {
1280 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001281 // Entry tokens don't need to be added to the list. They are
1282 // rededundant.
1283 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001284 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001285
Jim Laskey6ff23e52006-10-04 16:53:27 +00001286 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001287 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001288 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001289 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001290 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001291 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001292 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001293 Changed = true;
1294 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001295 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001296 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001297
Jim Laskey6ff23e52006-10-04 16:53:27 +00001298 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001299 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001300 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001301 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001302 else
1303 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001304 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001305 }
1306 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001307 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001308
Dan Gohman475871a2008-07-27 21:46:04 +00001309 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001310
1311 // If we've change things around then replace token factor.
1312 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001313 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001314 // The entry token is the only possible outcome.
1315 Result = DAG.getEntryNode();
1316 } else {
1317 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001318 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001319 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001320 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001321
Jim Laskey274062c2006-10-13 23:32:28 +00001322 // Don't add users to work list.
1323 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001324 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001325
Jim Laskey6ff23e52006-10-04 16:53:27 +00001326 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001327}
1328
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001329/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001330SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001331 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001332 // Replacing results may cause a different MERGE_VALUES to suddenly
1333 // be CSE'd with N, and carry its uses with it. Iterate until no
1334 // uses remain, to ensure that the node can be safely deleted.
Pete Cooper3affd9e2012-06-20 19:35:43 +00001335 // First add the users of this node to the work list so that they
1336 // can be tried again once they have new operands.
1337 AddUsersToWorkList(N);
Dan Gohman00edf392009-08-10 23:43:19 +00001338 do {
1339 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001340 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
Dan Gohman00edf392009-08-10 23:43:19 +00001341 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001342 removeFromWorkList(N);
1343 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001344 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001345}
1346
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001347static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001348SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1349 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001350 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001351 SDValue N00 = N0.getOperand(0);
1352 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001353 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001354
Gabor Greifba36cb52008-08-28 21:40:38 +00001355 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001356 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001357 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1358 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1359 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1360 N00.getOperand(0), N01),
1361 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1362 N00.getOperand(1), N01));
1363 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001364 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001365
Dan Gohman475871a2008-07-27 21:46:04 +00001366 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001367}
1368
Dan Gohman475871a2008-07-27 21:46:04 +00001369SDValue DAGCombiner::visitADD(SDNode *N) {
1370 SDValue N0 = N->getOperand(0);
1371 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001372 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1373 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001374 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001375
1376 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001377 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001378 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001379 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001380 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001381
Dan Gohman613e0d82007-07-03 14:03:57 +00001382 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001383 if (N0.getOpcode() == ISD::UNDEF)
1384 return N0;
1385 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001386 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001387 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001388 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001389 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001390 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001391 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001392 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001393 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001394 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001395 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001396 // fold (add Sym, c) -> Sym+c
1397 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001398 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001399 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001400 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001401 GA->getOffset() +
1402 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001403 // fold ((c1-A)+c2) -> (c1+c2)-A
1404 if (N1C && N0.getOpcode() == ISD::SUB)
1405 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001406 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001407 DAG.getConstant(N1C->getAPIntValue()+
1408 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001409 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001410 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001411 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001412 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001413 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001414 // fold ((0-A) + B) -> B-A
1415 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1416 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001417 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001418 // fold (A + (0-B)) -> A-B
1419 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1420 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001421 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001422 // fold (A+(B-A)) -> B
1423 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001424 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001425 // fold ((B-A)+A) -> B
1426 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1427 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001428 // fold (A+(B-(A+C))) to (B-C)
1429 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001430 N0 == N1.getOperand(1).getOperand(0))
1431 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001432 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001433 // fold (A+(B-(C+A))) to (B-C)
1434 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001435 N0 == N1.getOperand(1).getOperand(1))
1436 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001437 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001438 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001439 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1440 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001441 N0 == N1.getOperand(0).getOperand(1))
1442 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1443 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001444
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001445 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1446 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1447 SDValue N00 = N0.getOperand(0);
1448 SDValue N01 = N0.getOperand(1);
1449 SDValue N10 = N1.getOperand(0);
1450 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001451
1452 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1453 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1454 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1455 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001456 }
Chris Lattner947c2892006-03-13 06:51:27 +00001457
Dan Gohman475871a2008-07-27 21:46:04 +00001458 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1459 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001460
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001461 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001462 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001463 APInt LHSZero, LHSOne;
1464 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001465 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001466
Dan Gohman948d8ea2008-02-20 16:33:30 +00001467 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001468 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001469
Chris Lattner947c2892006-03-13 06:51:27 +00001470 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1471 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001472 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001473 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001474 }
1475 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001476
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001477 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001478 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001479 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001480 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001481 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001482 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001483 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001484 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001485 }
1486
Dan Gohmancd9e1552010-01-19 23:30:49 +00001487 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1488 if (N1.getOpcode() == ISD::SHL &&
1489 N1.getOperand(0).getOpcode() == ISD::SUB)
1490 if (ConstantSDNode *C =
1491 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1492 if (C->getAPIntValue() == 0)
1493 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1494 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1495 N1.getOperand(0).getOperand(1),
1496 N1.getOperand(1)));
1497 if (N0.getOpcode() == ISD::SHL &&
1498 N0.getOperand(0).getOpcode() == ISD::SUB)
1499 if (ConstantSDNode *C =
1500 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1501 if (C->getAPIntValue() == 0)
1502 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1503 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1504 N0.getOperand(0).getOperand(1),
1505 N0.getOperand(1)));
1506
Owen Andersonbc146b02010-09-21 20:42:50 +00001507 if (N1.getOpcode() == ISD::AND) {
1508 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001509 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001510 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1511 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001512
Owen Andersonbc146b02010-09-21 20:42:50 +00001513 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1514 // and similar xforms where the inner op is either ~0 or 0.
1515 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1516 DebugLoc DL = N->getDebugLoc();
1517 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1518 }
1519 }
1520
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001521 // add (sext i1), X -> sub X, (zext i1)
1522 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1523 N0.getOperand(0).getValueType() == MVT::i1 &&
1524 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1525 DebugLoc DL = N->getDebugLoc();
1526 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1527 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1528 }
1529
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001530 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001531}
1532
Dan Gohman475871a2008-07-27 21:46:04 +00001533SDValue DAGCombiner::visitADDC(SDNode *N) {
1534 SDValue N0 = N->getOperand(0);
1535 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001536 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1537 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001538 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001539
Chris Lattner91153682007-03-04 20:03:15 +00001540 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001541 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001542 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001543 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001544 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001545
Chris Lattner91153682007-03-04 20:03:15 +00001546 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001547 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001548 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001549
Chris Lattnerb6541762007-03-04 20:40:38 +00001550 // fold (addc x, 0) -> x + no carry out
1551 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001552 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001553 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001554
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001555 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001556 APInt LHSZero, LHSOne;
1557 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001558 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001559
Dan Gohman948d8ea2008-02-20 16:33:30 +00001560 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001561 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001562
Chris Lattnerb6541762007-03-04 20:40:38 +00001563 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1564 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001565 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendling14036c02009-01-30 02:38:00 +00001566 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001567 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001568 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001569 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001570
Dan Gohman475871a2008-07-27 21:46:04 +00001571 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001572}
1573
Dan Gohman475871a2008-07-27 21:46:04 +00001574SDValue DAGCombiner::visitADDE(SDNode *N) {
1575 SDValue N0 = N->getOperand(0);
1576 SDValue N1 = N->getOperand(1);
1577 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001578 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1579 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001580
Chris Lattner91153682007-03-04 20:03:15 +00001581 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001582 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001583 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1584 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001585
Chris Lattnerb6541762007-03-04 20:40:38 +00001586 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001587 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001588 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001589
Dan Gohman475871a2008-07-27 21:46:04 +00001590 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001591}
1592
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001593// Since it may not be valid to emit a fold to zero for vector initializers
1594// check if we can before folding.
1595static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001596 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001597 if (!VT.isVector()) {
1598 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001599 }
1600 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001601 // Produce a vector of zeros.
1602 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1603 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1604 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1605 &Ops[0], Ops.size());
1606 }
1607 return SDValue();
1608}
1609
Dan Gohman475871a2008-07-27 21:46:04 +00001610SDValue DAGCombiner::visitSUB(SDNode *N) {
1611 SDValue N0 = N->getOperand(0);
1612 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001613 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1614 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001615 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1616 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001617 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001618
Dan Gohman7f321562007-06-25 16:23:39 +00001619 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001620 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001621 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001622 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001623 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001624
Chris Lattner854077d2005-10-17 01:07:11 +00001625 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001626 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001627 if (N0 == N1)
1628 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001629 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001630 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001631 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001632 // fold (sub x, c) -> (add x, -c)
1633 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001634 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001635 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001636 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1637 if (N0C && N0C->isAllOnesValue())
1638 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001639 // fold A-(A-B) -> B
1640 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1641 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001642 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001643 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001644 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001645 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001646 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001647 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001648 // fold C2-(A+C1) -> (C2-C1)-A
1649 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00001650 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(),
1651 VT);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001652 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
Bill Wendling96cb1122012-07-19 00:04:14 +00001653 N1.getOperand(0));
Eric Christopher7332e6e2011-07-14 01:12:15 +00001654 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001655 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001656 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001657 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1658 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001659 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001660 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1661 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001662 // fold ((A+(C+B))-B) -> A+C
1663 if (N0.getOpcode() == ISD::ADD &&
1664 N0.getOperand(1).getOpcode() == ISD::ADD &&
1665 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001666 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1667 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001668 // fold ((A-(B-C))-C) -> A-B
1669 if (N0.getOpcode() == ISD::SUB &&
1670 N0.getOperand(1).getOpcode() == ISD::SUB &&
1671 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001672 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1673 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001674
Dan Gohman613e0d82007-07-03 14:03:57 +00001675 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001676 if (N0.getOpcode() == ISD::UNDEF)
1677 return N0;
1678 if (N1.getOpcode() == ISD::UNDEF)
1679 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001680
Dan Gohman6520e202008-10-18 02:06:02 +00001681 // If the relocation model supports it, consider symbol offsets.
1682 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001683 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001684 // fold (sub Sym, c) -> Sym-c
1685 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001686 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001687 GA->getOffset() -
1688 (uint64_t)N1C->getSExtValue());
1689 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1690 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1691 if (GA->getGlobal() == GB->getGlobal())
1692 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1693 VT);
1694 }
1695
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001696 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001697}
1698
Craig Toppercc274522012-01-07 09:06:39 +00001699SDValue DAGCombiner::visitSUBC(SDNode *N) {
1700 SDValue N0 = N->getOperand(0);
1701 SDValue N1 = N->getOperand(1);
1702 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1703 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1704 EVT VT = N0.getValueType();
1705
1706 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001707 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001708 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1709 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1710 MVT::Glue));
1711
1712 // fold (subc x, x) -> 0 + no borrow
1713 if (N0 == N1)
1714 return CombineTo(N, DAG.getConstant(0, VT),
1715 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1716 MVT::Glue));
1717
1718 // fold (subc x, 0) -> x + no borrow
1719 if (N1C && N1C->isNullValue())
1720 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1721 MVT::Glue));
1722
1723 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1724 if (N0C && N0C->isAllOnesValue())
1725 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1726 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1727 MVT::Glue));
1728
1729 return SDValue();
1730}
1731
1732SDValue DAGCombiner::visitSUBE(SDNode *N) {
1733 SDValue N0 = N->getOperand(0);
1734 SDValue N1 = N->getOperand(1);
1735 SDValue CarryIn = N->getOperand(2);
1736
1737 // fold (sube x, y, false) -> (subc x, y)
1738 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1739 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1740
1741 return SDValue();
1742}
1743
Dan Gohman475871a2008-07-27 21:46:04 +00001744SDValue DAGCombiner::visitMUL(SDNode *N) {
1745 SDValue N0 = N->getOperand(0);
1746 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001747 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1748 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001749 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001750
Dan Gohman7f321562007-06-25 16:23:39 +00001751 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001752 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001753 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001754 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001755 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001756
Dan Gohman613e0d82007-07-03 14:03:57 +00001757 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001758 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001759 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001760 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001761 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001762 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001763 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001764 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001765 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001766 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001767 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001768 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001769 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001770 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001771 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1772 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001773 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001774 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001775 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001776 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001777 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001778 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001779 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1780 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001781 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001782 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001783 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1784 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001785 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001786 DAG.getConstant(Log2Val,
1787 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001788 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001789 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001790 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001791 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001792 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1793 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001794 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001795 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1796 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001797 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001798
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001799 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1800 // use.
1801 {
Dan Gohman475871a2008-07-27 21:46:04 +00001802 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001803 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1804 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001805 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001806 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001807 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001808 isa<ConstantSDNode>(N1.getOperand(1)) &&
1809 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001810 Sh = N1; Y = N0;
1811 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001812
Gabor Greifba36cb52008-08-28 21:40:38 +00001813 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001814 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1815 Sh.getOperand(0), Y);
1816 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1817 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001818 }
1819 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001820
Chris Lattnera1deca32006-03-04 23:33:26 +00001821 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001822 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001823 isa<ConstantSDNode>(N0.getOperand(1)))
1824 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1825 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1826 N0.getOperand(0), N1),
1827 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1828 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001829
Nate Begemancd4d58c2006-02-03 06:46:56 +00001830 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001831 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001832 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001833 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001834
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001835 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001836}
1837
Dan Gohman475871a2008-07-27 21:46:04 +00001838SDValue DAGCombiner::visitSDIV(SDNode *N) {
1839 SDValue N0 = N->getOperand(0);
1840 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001841 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1842 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001843 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001844
Dan Gohman7f321562007-06-25 16:23:39 +00001845 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001846 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001847 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001848 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001849 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001850
Nate Begeman1d4d4142005-09-01 00:19:25 +00001851 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001852 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001853 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001854 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001855 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001856 return N0;
1857 // fold (sdiv X, -1) -> 0-X
1858 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001859 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1860 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001861 // If we know the sign bits of both operands are zero, strength reduce to a
1862 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001863 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001864 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001865 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1866 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001867 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001868 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001869 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001870 (N1C->getAPIntValue().isPowerOf2() ||
1871 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001872 // If dividing by powers of two is cheap, then don't perform the following
1873 // fold.
1874 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001875 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001876
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001877 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001878
Chris Lattner8f4880b2006-02-16 08:02:36 +00001879 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001880 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1881 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001882 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001883 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001884
Chris Lattner8f4880b2006-02-16 08:02:36 +00001885 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001886 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1887 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001888 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001889 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001890 AddToWorkList(SRL.getNode());
1891 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001892 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001893 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001894
Nate Begeman405e3ec2005-10-21 00:02:42 +00001895 // If we're dividing by a positive value, we're done. Otherwise, we must
1896 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001897 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001898 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001899
Gabor Greifba36cb52008-08-28 21:40:38 +00001900 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001901 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1902 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001903 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001904
Nate Begeman69575232005-10-20 02:15:44 +00001905 // if integer divide is expensive and we satisfy the requirements, emit an
1906 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001907 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001908 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001909 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001910 }
Dan Gohman7f321562007-06-25 16:23:39 +00001911
Dan Gohman613e0d82007-07-03 14:03:57 +00001912 // undef / X -> 0
1913 if (N0.getOpcode() == ISD::UNDEF)
1914 return DAG.getConstant(0, VT);
1915 // X / undef -> undef
1916 if (N1.getOpcode() == ISD::UNDEF)
1917 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001918
Dan Gohman475871a2008-07-27 21:46:04 +00001919 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001920}
1921
Dan Gohman475871a2008-07-27 21:46:04 +00001922SDValue DAGCombiner::visitUDIV(SDNode *N) {
1923 SDValue N0 = N->getOperand(0);
1924 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001925 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1926 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001927 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001928
Dan Gohman7f321562007-06-25 16:23:39 +00001929 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001930 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001931 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001932 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001933 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001934
Nate Begeman1d4d4142005-09-01 00:19:25 +00001935 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001936 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001937 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001938 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001939 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001940 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001941 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001942 getShiftAmountTy(N0.getValueType())));
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001943 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001944 if (N1.getOpcode() == ISD::SHL) {
1945 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001946 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001947 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001948 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1949 N1.getOperand(1),
1950 DAG.getConstant(SHC->getAPIntValue()
1951 .logBase2(),
1952 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001953 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001954 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001955 }
1956 }
1957 }
Nate Begeman69575232005-10-20 02:15:44 +00001958 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001959 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001960 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001961 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001962 }
Dan Gohman7f321562007-06-25 16:23:39 +00001963
Dan Gohman613e0d82007-07-03 14:03:57 +00001964 // undef / X -> 0
1965 if (N0.getOpcode() == ISD::UNDEF)
1966 return DAG.getConstant(0, VT);
1967 // X / undef -> undef
1968 if (N1.getOpcode() == ISD::UNDEF)
1969 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001970
Dan Gohman475871a2008-07-27 21:46:04 +00001971 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001972}
1973
Dan Gohman475871a2008-07-27 21:46:04 +00001974SDValue DAGCombiner::visitSREM(SDNode *N) {
1975 SDValue N0 = N->getOperand(0);
1976 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001977 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1978 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001979 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001980
Nate Begeman1d4d4142005-09-01 00:19:25 +00001981 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001982 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001983 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001984 // If we know the sign bits of both operands are zero, strength reduce to a
1985 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001986 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001987 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001988 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00001989 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001990
Dan Gohman77003042007-11-26 23:46:11 +00001991 // If X/C can be simplified by the division-by-constant logic, lower
1992 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001993 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001994 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001995 AddToWorkList(Div.getNode());
1996 SDValue OptimizedDiv = combine(Div.getNode());
1997 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001998 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1999 OptimizedDiv, N1);
2000 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002001 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002002 return Sub;
2003 }
Chris Lattner26d29902006-10-12 20:58:32 +00002004 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002005
Dan Gohman613e0d82007-07-03 14:03:57 +00002006 // undef % X -> 0
2007 if (N0.getOpcode() == ISD::UNDEF)
2008 return DAG.getConstant(0, VT);
2009 // X % undef -> undef
2010 if (N1.getOpcode() == ISD::UNDEF)
2011 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002012
Dan Gohman475871a2008-07-27 21:46:04 +00002013 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002014}
2015
Dan Gohman475871a2008-07-27 21:46:04 +00002016SDValue DAGCombiner::visitUREM(SDNode *N) {
2017 SDValue N0 = N->getOperand(0);
2018 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002019 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2020 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002021 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002022
Nate Begeman1d4d4142005-09-01 00:19:25 +00002023 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002024 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002025 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002026 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002027 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002028 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002029 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002030 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2031 if (N1.getOpcode() == ISD::SHL) {
2032 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002033 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002034 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002035 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002036 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002037 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002038 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002039 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002040 }
2041 }
2042 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002043
Dan Gohman77003042007-11-26 23:46:11 +00002044 // If X/C can be simplified by the division-by-constant logic, lower
2045 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002046 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002047 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002048 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002049 SDValue OptimizedDiv = combine(Div.getNode());
2050 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002051 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2052 OptimizedDiv, N1);
2053 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002054 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002055 return Sub;
2056 }
Chris Lattner26d29902006-10-12 20:58:32 +00002057 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002058
Dan Gohman613e0d82007-07-03 14:03:57 +00002059 // undef % X -> 0
2060 if (N0.getOpcode() == ISD::UNDEF)
2061 return DAG.getConstant(0, VT);
2062 // X % undef -> undef
2063 if (N1.getOpcode() == ISD::UNDEF)
2064 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002065
Dan Gohman475871a2008-07-27 21:46:04 +00002066 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002067}
2068
Dan Gohman475871a2008-07-27 21:46:04 +00002069SDValue DAGCombiner::visitMULHS(SDNode *N) {
2070 SDValue N0 = N->getOperand(0);
2071 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002072 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002073 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002074 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002075
Nate Begeman1d4d4142005-09-01 00:19:25 +00002076 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002077 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002078 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002079 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002080 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002081 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2082 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002083 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002084 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002085 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002086 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002087
Chris Lattnerde1c3602010-12-13 08:39:01 +00002088 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2089 // plus a shift.
2090 if (VT.isSimple() && !VT.isVector()) {
2091 MVT Simple = VT.getSimpleVT();
2092 unsigned SimpleSize = Simple.getSizeInBits();
2093 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2094 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2095 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2096 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2097 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002098 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002099 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002100 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2101 }
2102 }
Owen Anderson95771af2011-02-25 21:41:48 +00002103
Dan Gohman475871a2008-07-27 21:46:04 +00002104 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002105}
2106
Dan Gohman475871a2008-07-27 21:46:04 +00002107SDValue DAGCombiner::visitMULHU(SDNode *N) {
2108 SDValue N0 = N->getOperand(0);
2109 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002110 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002111 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002112 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002113
Nate Begeman1d4d4142005-09-01 00:19:25 +00002114 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002115 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002116 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002117 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002118 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002119 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002120 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002121 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002122 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002123
Chris Lattnerde1c3602010-12-13 08:39:01 +00002124 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2125 // plus a shift.
2126 if (VT.isSimple() && !VT.isVector()) {
2127 MVT Simple = VT.getSimpleVT();
2128 unsigned SimpleSize = Simple.getSizeInBits();
2129 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2130 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2131 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2132 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2133 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2134 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002135 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002136 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2137 }
2138 }
Owen Anderson95771af2011-02-25 21:41:48 +00002139
Dan Gohman475871a2008-07-27 21:46:04 +00002140 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002141}
2142
Dan Gohman389079b2007-10-08 17:57:15 +00002143/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2144/// compute two values. LoOp and HiOp give the opcodes for the two computations
2145/// that are being performed. Return true if a simplification was made.
2146///
Scott Michelfdc40a02009-02-17 22:15:04 +00002147SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002148 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002149 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002150 bool HiExists = N->hasAnyUseOfValue(1);
2151 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002152 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002153 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002154 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2155 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002156 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002157 }
2158
2159 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002160 bool LoExists = N->hasAnyUseOfValue(0);
2161 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002162 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002163 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002164 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2165 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002166 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002167 }
2168
Evan Cheng44711942007-11-08 09:25:29 +00002169 // If both halves are used, return as it is.
2170 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002171 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002172
2173 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002174 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002175 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2176 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002177 AddToWorkList(Lo.getNode());
2178 SDValue LoOpt = combine(Lo.getNode());
2179 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002180 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002181 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002182 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002183 }
2184
Evan Cheng44711942007-11-08 09:25:29 +00002185 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002186 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002187 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002188 AddToWorkList(Hi.getNode());
2189 SDValue HiOpt = combine(Hi.getNode());
2190 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002191 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002192 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002193 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002194 }
Bill Wendling826d1142009-01-30 03:08:40 +00002195
Dan Gohman475871a2008-07-27 21:46:04 +00002196 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002197}
2198
Dan Gohman475871a2008-07-27 21:46:04 +00002199SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2200 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002201 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002202
Chris Lattner33e77d32010-12-15 06:04:19 +00002203 EVT VT = N->getValueType(0);
2204 DebugLoc DL = N->getDebugLoc();
2205
2206 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2207 // plus a shift.
2208 if (VT.isSimple() && !VT.isVector()) {
2209 MVT Simple = VT.getSimpleVT();
2210 unsigned SimpleSize = Simple.getSizeInBits();
2211 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2212 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2213 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2214 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2215 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2216 // Compute the high part as N1.
2217 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002218 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002219 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2220 // Compute the low part as N0.
2221 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2222 return CombineTo(N, Lo, Hi);
2223 }
2224 }
Owen Anderson95771af2011-02-25 21:41:48 +00002225
Dan Gohman475871a2008-07-27 21:46:04 +00002226 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002227}
2228
Dan Gohman475871a2008-07-27 21:46:04 +00002229SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2230 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002231 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002232
Chris Lattner33e77d32010-12-15 06:04:19 +00002233 EVT VT = N->getValueType(0);
2234 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002235
Chris Lattner33e77d32010-12-15 06:04:19 +00002236 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2237 // plus a shift.
2238 if (VT.isSimple() && !VT.isVector()) {
2239 MVT Simple = VT.getSimpleVT();
2240 unsigned SimpleSize = Simple.getSizeInBits();
2241 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2242 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2243 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2244 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2245 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2246 // Compute the high part as N1.
2247 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002248 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002249 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2250 // Compute the low part as N0.
2251 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2252 return CombineTo(N, Lo, Hi);
2253 }
2254 }
Owen Anderson95771af2011-02-25 21:41:48 +00002255
Dan Gohman475871a2008-07-27 21:46:04 +00002256 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002257}
2258
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002259SDValue DAGCombiner::visitSMULO(SDNode *N) {
2260 // (smulo x, 2) -> (saddo x, x)
2261 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2262 if (C2->getAPIntValue() == 2)
2263 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2264 N->getOperand(0), N->getOperand(0));
2265
2266 return SDValue();
2267}
2268
2269SDValue DAGCombiner::visitUMULO(SDNode *N) {
2270 // (umulo x, 2) -> (uaddo x, x)
2271 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2272 if (C2->getAPIntValue() == 2)
2273 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2274 N->getOperand(0), N->getOperand(0));
2275
2276 return SDValue();
2277}
2278
Dan Gohman475871a2008-07-27 21:46:04 +00002279SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2280 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002281 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002282
Dan Gohman475871a2008-07-27 21:46:04 +00002283 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002284}
2285
Dan Gohman475871a2008-07-27 21:46:04 +00002286SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2287 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002288 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002289
Dan Gohman475871a2008-07-27 21:46:04 +00002290 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002291}
2292
Chris Lattner35e5c142006-05-05 05:51:50 +00002293/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2294/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002295SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2296 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002297 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002298 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002299
Dan Gohmanff00a552010-01-14 03:08:49 +00002300 // Bail early if none of these transforms apply.
2301 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2302
Chris Lattner540121f2006-05-05 06:31:05 +00002303 // For each of OP in AND/OR/XOR:
2304 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2305 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2306 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002307 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002308 //
2309 // do not sink logical op inside of a vector extend, since it may combine
2310 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002311 EVT Op0VT = N0.getOperand(0).getValueType();
2312 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002313 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002314 // Avoid infinite looping with PromoteIntBinOp.
2315 (N0.getOpcode() == ISD::ANY_EXTEND &&
2316 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002317 (N0.getOpcode() == ISD::TRUNCATE &&
2318 (!TLI.isZExtFree(VT, Op0VT) ||
2319 !TLI.isTruncateFree(Op0VT, VT)) &&
2320 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002321 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002322 Op0VT == N1.getOperand(0).getValueType() &&
2323 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002324 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2325 N0.getOperand(0).getValueType(),
2326 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002327 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002328 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002329 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002330
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002331 // For each of OP in SHL/SRL/SRA/AND...
2332 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2333 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2334 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002335 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002336 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002337 N0.getOperand(1) == N1.getOperand(1)) {
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,
2343 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002344 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002345
Nadav Rotem4ac90812012-04-01 19:31:22 +00002346 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2347 // Only perform this optimization after type legalization and before
2348 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2349 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2350 // we don't want to undo this promotion.
2351 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2352 // on scalars.
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002353 if ((N0.getOpcode() == ISD::BITCAST ||
2354 N0.getOpcode() == ISD::SCALAR_TO_VECTOR) &&
2355 Level == AfterLegalizeTypes) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002356 SDValue In0 = N0.getOperand(0);
2357 SDValue In1 = N1.getOperand(0);
2358 EVT In0Ty = In0.getValueType();
2359 EVT In1Ty = In1.getValueType();
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002360 DebugLoc DL = N->getDebugLoc();
2361 // If both incoming values are integers, and the original types are the
2362 // same.
Nadav Rotem4ac90812012-04-01 19:31:22 +00002363 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002364 SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1);
2365 SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002366 AddToWorkList(Op.getNode());
2367 return BC;
2368 }
2369 }
2370
2371 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2372 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2373 // If both shuffles use the same mask, and both shuffle within a single
2374 // vector, then it is worthwhile to move the swizzle after the operation.
2375 // The type-legalizer generates this pattern when loading illegal
2376 // vector types from memory. In many cases this allows additional shuffle
2377 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002378 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2379 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2380 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002381 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2382 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002383
2384 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2385 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002386
2387 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002388
2389 // Check that both shuffles use the same mask. The masks are known to be of
2390 // the same length because the result vector type is the same.
2391 bool SameMask = true;
2392 for (unsigned i = 0; i != NumElts; ++i) {
2393 int Idx0 = SVN0->getMaskElt(i);
2394 int Idx1 = SVN1->getMaskElt(i);
2395 if (Idx0 != Idx1) {
2396 SameMask = false;
2397 break;
2398 }
2399 }
2400
Craig Topperf9204232012-04-09 07:19:09 +00002401 if (SameMask) {
2402 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT,
2403 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002404 AddToWorkList(Op.getNode());
Craig Topperf9204232012-04-09 07:19:09 +00002405 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op,
2406 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002407 }
2408 }
Craig Topperf9204232012-04-09 07:19:09 +00002409
Dan Gohman475871a2008-07-27 21:46:04 +00002410 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002411}
2412
Dan Gohman475871a2008-07-27 21:46:04 +00002413SDValue DAGCombiner::visitAND(SDNode *N) {
2414 SDValue N0 = N->getOperand(0);
2415 SDValue N1 = N->getOperand(1);
2416 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002417 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2418 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002419 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002420 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002421
Dan Gohman7f321562007-06-25 16:23:39 +00002422 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002423 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002424 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002425 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002426 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002427
Dan Gohman613e0d82007-07-03 14:03:57 +00002428 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002429 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002430 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002431 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002432 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002433 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002434 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002435 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002436 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002437 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002438 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002439 return N0;
2440 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002441 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002442 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002443 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002444 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002445 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002446 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002447 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002448 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002449 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002450 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002451 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002452 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002453 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2454 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002455 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002456 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002457 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002458 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002459 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2460 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002461
Chris Lattner1ec05d12006-03-01 21:47:21 +00002462 // Replace uses of the AND with uses of the Zero extend node.
2463 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002464
Chris Lattner3603cd62006-02-02 07:17:31 +00002465 // We actually want to replace all uses of the any_extend with the
2466 // zero_extend, to avoid duplicating things. This will later cause this
2467 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002468 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002469 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002470 }
2471 }
James Molloy6259dcd2012-02-20 12:02:38 +00002472 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2473 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2474 // already be zero by virtue of the width of the base type of the load.
2475 //
2476 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2477 // more cases.
2478 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2479 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2480 N0.getOpcode() == ISD::LOAD) {
2481 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2482 N0 : N0.getOperand(0) );
2483
2484 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2485 // This can be a pure constant or a vector splat, in which case we treat the
2486 // vector as a scalar and use the splat value.
2487 APInt Constant = APInt::getNullValue(1);
2488 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2489 Constant = C->getAPIntValue();
2490 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2491 APInt SplatValue, SplatUndef;
2492 unsigned SplatBitSize;
2493 bool HasAnyUndefs;
2494 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2495 SplatBitSize, HasAnyUndefs);
2496 if (IsSplat) {
2497 // Undef bits can contribute to a possible optimisation if set, so
2498 // set them.
2499 SplatValue |= SplatUndef;
2500
2501 // The splat value may be something like "0x00FFFFFF", which means 0 for
2502 // the first vector value and FF for the rest, repeating. We need a mask
2503 // that will apply equally to all members of the vector, so AND all the
2504 // lanes of the constant together.
2505 EVT VT = Vector->getValueType(0);
2506 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002507
2508 // If the splat value has been compressed to a bitlength lower
2509 // than the size of the vector lane, we need to re-expand it to
2510 // the lane size.
2511 if (BitWidth > SplatBitSize)
2512 for (SplatValue = SplatValue.zextOrTrunc(BitWidth);
2513 SplatBitSize < BitWidth;
2514 SplatBitSize = SplatBitSize * 2)
2515 SplatValue |= SplatValue.shl(SplatBitSize);
2516
James Molloy6259dcd2012-02-20 12:02:38 +00002517 Constant = APInt::getAllOnesValue(BitWidth);
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002518 for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i)
James Molloy6259dcd2012-02-20 12:02:38 +00002519 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2520 }
2521 }
2522
2523 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2524 // actually legal and isn't going to get expanded, else this is a false
2525 // optimisation.
2526 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2527 Load->getMemoryVT());
2528
2529 // Resize the constant to the same size as the original memory access before
2530 // extension. If it is still the AllOnesValue then this AND is completely
2531 // unneeded.
2532 Constant =
2533 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2534
2535 bool B;
2536 switch (Load->getExtensionType()) {
2537 default: B = false; break;
2538 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2539 case ISD::ZEXTLOAD:
2540 case ISD::NON_EXTLOAD: B = true; break;
2541 }
2542
2543 if (B && Constant.isAllOnesValue()) {
2544 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2545 // preserve semantics once we get rid of the AND.
2546 SDValue NewLoad(Load, 0);
2547 if (Load->getExtensionType() == ISD::EXTLOAD) {
2548 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2549 Load->getValueType(0), Load->getDebugLoc(),
2550 Load->getChain(), Load->getBasePtr(),
2551 Load->getOffset(), Load->getMemoryVT(),
2552 Load->getMemOperand());
2553 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
Hal Finkeld65e4632012-06-20 15:42:48 +00002554 if (Load->getNumValues() == 3) {
2555 // PRE/POST_INC loads have 3 values.
2556 SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1),
2557 NewLoad.getValue(2) };
2558 CombineTo(Load, To, 3, true);
2559 } else {
2560 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2561 }
James Molloy6259dcd2012-02-20 12:02:38 +00002562 }
2563
2564 // Fold the AND away, taking care not to fold to the old load node if we
2565 // replaced it.
2566 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2567
2568 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2569 }
2570 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002571 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2572 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2573 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2574 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002575
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002576 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002577 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002578 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002579 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002580 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2581 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002582 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002583 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002584 }
Bill Wendling2627a882009-01-30 20:43:18 +00002585 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002586 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002587 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2588 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002589 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002590 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002591 }
Bill Wendling2627a882009-01-30 20:43:18 +00002592 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002593 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002594 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2595 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002596 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002597 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002598 }
2599 }
2600 // canonicalize equivalent to ll == rl
2601 if (LL == RR && LR == RL) {
2602 Op1 = ISD::getSetCCSwappedOperands(Op1);
2603 std::swap(RL, RR);
2604 }
2605 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002606 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002607 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002608 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002609 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002610 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2611 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002612 }
2613 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002614
Bill Wendling2627a882009-01-30 20:43:18 +00002615 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002616 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002617 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002618 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002619 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002620
Nate Begemande996292006-02-03 22:24:05 +00002621 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2622 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002623 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002624 SimplifyDemandedBits(SDValue(N, 0)))
2625 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002626
Nate Begemanded49632005-10-13 03:11:28 +00002627 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002628 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002629 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002630 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002631 // If we zero all the possible extended bits, then we can turn this into
2632 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002633 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002634 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002635 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002636 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002637 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002638 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002639 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002640 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002641 LN0->isVolatile(), LN0->isNonTemporal(),
2642 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002643 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002644 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002645 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002646 }
2647 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002648 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002649 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002650 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002651 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002652 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002653 // If we zero all the possible extended bits, then we can turn this into
2654 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002655 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002656 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002657 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002658 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002659 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002660 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002661 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002662 LN0->getBasePtr(), LN0->getPointerInfo(),
2663 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002664 LN0->isVolatile(), LN0->isNonTemporal(),
2665 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002666 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002667 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002668 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002669 }
2670 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002671
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002672 // fold (and (load x), 255) -> (zextload x, i8)
2673 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002674 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2675 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2676 (N0.getOpcode() == ISD::ANY_EXTEND &&
2677 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2678 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2679 LoadSDNode *LN0 = HasAnyExt
2680 ? cast<LoadSDNode>(N0.getOperand(0))
2681 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002682 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002683 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002684 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002685 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2686 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2687 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002688
Evan Chengd40d03e2010-01-06 19:38:29 +00002689 if (ExtVT == LoadedVT &&
2690 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002691 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002692
2693 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002694 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002695 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002696 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002697 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2698 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002699 AddToWorkList(N);
2700 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2701 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2702 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002703
Chris Lattneref7634c2010-01-07 21:53:27 +00002704 // Do not change the width of a volatile load.
2705 // Do not generate loads of non-round integer types since these can
2706 // be expensive (and would be wrong if the type is not byte sized).
2707 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2708 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2709 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002710
Chris Lattneref7634c2010-01-07 21:53:27 +00002711 unsigned Alignment = LN0->getAlignment();
2712 SDValue NewPtr = LN0->getBasePtr();
2713
2714 // For big endian targets, we need to add an offset to the pointer
2715 // to load the correct bytes. For little endian systems, we merely
2716 // need to read fewer bytes from the same pointer.
2717 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002718 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2719 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2720 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002721 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2722 NewPtr, DAG.getConstant(PtrOff, PtrType));
2723 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002724 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002725
2726 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002727
Chris Lattneref7634c2010-01-07 21:53:27 +00002728 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2729 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002730 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002731 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002732 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002733 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2734 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002735 AddToWorkList(N);
2736 CombineTo(LN0, Load, Load.getValue(1));
2737 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002738 }
Evan Cheng466685d2006-10-09 20:57:25 +00002739 }
Chris Lattner15045b62006-02-28 06:35:35 +00002740 }
2741 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002742
Evan Chenga9e13ba2012-07-17 18:54:11 +00002743 if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
2744 VT.getSizeInBits() <= 64) {
2745 if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2746 APInt ADDC = ADDI->getAPIntValue();
2747 if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2748 // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal
2749 // immediate for an add, but it is legal if its top c2 bits are set,
2750 // transform the ADD so the immediate doesn't need to be materialized
2751 // in a register.
2752 if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
2753 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
2754 SRLI->getZExtValue());
2755 if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) {
2756 ADDC |= Mask;
2757 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2758 SDValue NewAdd =
2759 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
2760 N0.getOperand(0), DAG.getConstant(ADDC, VT));
2761 CombineTo(N0.getNode(), NewAdd);
2762 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2763 }
2764 }
2765 }
2766 }
2767 }
2768 }
2769
2770
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002771 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002772}
2773
Evan Cheng9568e5c2011-06-21 06:01:08 +00002774/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2775///
2776SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2777 bool DemandHighBits) {
2778 if (!LegalOperations)
2779 return SDValue();
2780
2781 EVT VT = N->getValueType(0);
2782 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2783 return SDValue();
2784 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2785 return SDValue();
2786
2787 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2788 bool LookPassAnd0 = false;
2789 bool LookPassAnd1 = false;
2790 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2791 std::swap(N0, N1);
2792 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2793 std::swap(N0, N1);
2794 if (N0.getOpcode() == ISD::AND) {
2795 if (!N0.getNode()->hasOneUse())
2796 return SDValue();
2797 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2798 if (!N01C || N01C->getZExtValue() != 0xFF00)
2799 return SDValue();
2800 N0 = N0.getOperand(0);
2801 LookPassAnd0 = true;
2802 }
2803
2804 if (N1.getOpcode() == ISD::AND) {
2805 if (!N1.getNode()->hasOneUse())
2806 return SDValue();
2807 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2808 if (!N11C || N11C->getZExtValue() != 0xFF)
2809 return SDValue();
2810 N1 = N1.getOperand(0);
2811 LookPassAnd1 = true;
2812 }
2813
2814 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2815 std::swap(N0, N1);
2816 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2817 return SDValue();
2818 if (!N0.getNode()->hasOneUse() ||
2819 !N1.getNode()->hasOneUse())
2820 return SDValue();
2821
2822 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2823 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2824 if (!N01C || !N11C)
2825 return SDValue();
2826 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2827 return SDValue();
2828
2829 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2830 SDValue N00 = N0->getOperand(0);
2831 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2832 if (!N00.getNode()->hasOneUse())
2833 return SDValue();
2834 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2835 if (!N001C || N001C->getZExtValue() != 0xFF)
2836 return SDValue();
2837 N00 = N00.getOperand(0);
2838 LookPassAnd0 = true;
2839 }
2840
2841 SDValue N10 = N1->getOperand(0);
2842 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2843 if (!N10.getNode()->hasOneUse())
2844 return SDValue();
2845 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2846 if (!N101C || N101C->getZExtValue() != 0xFF00)
2847 return SDValue();
2848 N10 = N10.getOperand(0);
2849 LookPassAnd1 = true;
2850 }
2851
2852 if (N00 != N10)
2853 return SDValue();
2854
2855 // Make sure everything beyond the low halfword is zero since the SRL 16
2856 // will clear the top bits.
2857 unsigned OpSizeInBits = VT.getSizeInBits();
2858 if (DemandHighBits && OpSizeInBits > 16 &&
2859 (!LookPassAnd0 || !LookPassAnd1) &&
2860 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2861 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002862
Evan Cheng9568e5c2011-06-21 06:01:08 +00002863 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2864 if (OpSizeInBits > 16)
2865 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2866 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2867 return Res;
2868}
2869
2870/// isBSwapHWordElement - Return true if the specified node is an element
2871/// that makes up a 32-bit packed halfword byteswap. i.e.
2872/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2873static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2874 if (!N.getNode()->hasOneUse())
2875 return false;
2876
2877 unsigned Opc = N.getOpcode();
2878 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2879 return false;
2880
2881 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2882 if (!N1C)
2883 return false;
2884
2885 unsigned Num;
2886 switch (N1C->getZExtValue()) {
2887 default:
2888 return false;
2889 case 0xFF: Num = 0; break;
2890 case 0xFF00: Num = 1; break;
2891 case 0xFF0000: Num = 2; break;
2892 case 0xFF000000: Num = 3; break;
2893 }
2894
2895 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2896 SDValue N0 = N.getOperand(0);
2897 if (Opc == ISD::AND) {
2898 if (Num == 0 || Num == 2) {
2899 // (x >> 8) & 0xff
2900 // (x >> 8) & 0xff0000
2901 if (N0.getOpcode() != ISD::SRL)
2902 return false;
2903 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2904 if (!C || C->getZExtValue() != 8)
2905 return false;
2906 } else {
2907 // (x << 8) & 0xff00
2908 // (x << 8) & 0xff000000
2909 if (N0.getOpcode() != ISD::SHL)
2910 return false;
2911 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2912 if (!C || C->getZExtValue() != 8)
2913 return false;
2914 }
2915 } else if (Opc == ISD::SHL) {
2916 // (x & 0xff) << 8
2917 // (x & 0xff0000) << 8
2918 if (Num != 0 && Num != 2)
2919 return false;
2920 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2921 if (!C || C->getZExtValue() != 8)
2922 return false;
2923 } else { // Opc == ISD::SRL
2924 // (x & 0xff00) >> 8
2925 // (x & 0xff000000) >> 8
2926 if (Num != 1 && Num != 3)
2927 return false;
2928 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2929 if (!C || C->getZExtValue() != 8)
2930 return false;
2931 }
2932
2933 if (Parts[Num])
2934 return false;
2935
2936 Parts[Num] = N0.getOperand(0).getNode();
2937 return true;
2938}
2939
2940/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2941/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2942/// => (rotl (bswap x), 16)
2943SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2944 if (!LegalOperations)
2945 return SDValue();
2946
2947 EVT VT = N->getValueType(0);
2948 if (VT != MVT::i32)
2949 return SDValue();
2950 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2951 return SDValue();
2952
2953 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2954 // Look for either
2955 // (or (or (and), (and)), (or (and), (and)))
2956 // (or (or (or (and), (and)), (and)), (and))
2957 if (N0.getOpcode() != ISD::OR)
2958 return SDValue();
2959 SDValue N00 = N0.getOperand(0);
2960 SDValue N01 = N0.getOperand(1);
2961
2962 if (N1.getOpcode() == ISD::OR) {
2963 // (or (or (and), (and)), (or (and), (and)))
2964 SDValue N000 = N00.getOperand(0);
2965 if (!isBSwapHWordElement(N000, Parts))
2966 return SDValue();
2967
2968 SDValue N001 = N00.getOperand(1);
2969 if (!isBSwapHWordElement(N001, Parts))
2970 return SDValue();
2971 SDValue N010 = N01.getOperand(0);
2972 if (!isBSwapHWordElement(N010, Parts))
2973 return SDValue();
2974 SDValue N011 = N01.getOperand(1);
2975 if (!isBSwapHWordElement(N011, Parts))
2976 return SDValue();
2977 } else {
2978 // (or (or (or (and), (and)), (and)), (and))
2979 if (!isBSwapHWordElement(N1, Parts))
2980 return SDValue();
2981 if (!isBSwapHWordElement(N01, Parts))
2982 return SDValue();
2983 if (N00.getOpcode() != ISD::OR)
2984 return SDValue();
2985 SDValue N000 = N00.getOperand(0);
2986 if (!isBSwapHWordElement(N000, Parts))
2987 return SDValue();
2988 SDValue N001 = N00.getOperand(1);
2989 if (!isBSwapHWordElement(N001, Parts))
2990 return SDValue();
2991 }
2992
2993 // Make sure the parts are all coming from the same node.
2994 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2995 return SDValue();
2996
2997 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
2998 SDValue(Parts[0],0));
2999
3000 // Result of the bswap should be rotated by 16. If it's not legal, than
3001 // do (x << 16) | (x >> 16).
3002 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
3003 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
3004 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
Craig Topper0eb5dad2012-09-29 07:18:53 +00003005 if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
Evan Cheng9568e5c2011-06-21 06:01:08 +00003006 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
3007 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
3008 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
3009 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
3010}
3011
Dan Gohman475871a2008-07-27 21:46:04 +00003012SDValue DAGCombiner::visitOR(SDNode *N) {
3013 SDValue N0 = N->getOperand(0);
3014 SDValue N1 = N->getOperand(1);
3015 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00003016 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3017 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003018 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003019
Dan Gohman7f321562007-06-25 16:23:39 +00003020 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003021 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003022 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003023 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003024 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003025
Dan Gohman613e0d82007-07-03 14:03:57 +00003026 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00003027 if (!LegalOperations &&
3028 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00003029 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
3030 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
3031 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003032 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003033 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003034 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003035 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003036 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00003037 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003038 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003039 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003040 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003041 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003042 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003043 return N1;
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003044 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003045 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003046 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00003047
3048 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
3049 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
3050 if (BSwap.getNode() != 0)
3051 return BSwap;
3052 BSwap = MatchBSwapHWordLow(N, N0, N1);
3053 if (BSwap.getNode() != 0)
3054 return BSwap;
3055
Nate Begemancd4d58c2006-02-03 06:46:56 +00003056 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00003057 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003058 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003059 return ROR;
3060 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003061 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003062 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003063 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003064 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003065 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003066 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
3067 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3068 N0.getOperand(0), N1),
3069 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003070 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003071 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3072 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3073 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3074 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003075
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003076 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003077 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003078 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3079 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003080 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003081 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003082 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
3083 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003084 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003085 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003086 }
Bill Wendling09025642009-01-30 20:59:34 +00003087 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3088 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003089 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003090 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003091 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
3092 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003093 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003094 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003095 }
3096 }
3097 // canonicalize equivalent to ll == rl
3098 if (LL == RR && LR == RL) {
3099 Op1 = ISD::getSetCCSwappedOperands(Op1);
3100 std::swap(RL, RR);
3101 }
3102 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003103 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003104 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003105 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00003106 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00003107 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
3108 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003109 }
3110 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003111
Bill Wendling09025642009-01-30 20:59:34 +00003112 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003113 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003114 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003115 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003116 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003117
Bill Wendling09025642009-01-30 20:59:34 +00003118 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003119 if (N0.getOpcode() == ISD::AND &&
3120 N1.getOpcode() == ISD::AND &&
3121 N0.getOperand(1).getOpcode() == ISD::Constant &&
3122 N1.getOperand(1).getOpcode() == ISD::Constant &&
3123 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003124 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003125 // We can only do this xform if we know that bits from X that are set in C2
3126 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003127 const APInt &LHSMask =
3128 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3129 const APInt &RHSMask =
3130 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003131
Dan Gohmanea859be2007-06-22 14:59:07 +00003132 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3133 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003134 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3135 N0.getOperand(0), N1.getOperand(0));
3136 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3137 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003138 }
3139 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003140
Chris Lattner516b9622006-09-14 20:50:57 +00003141 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003142 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003143 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003144
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003145 // Simplify the operands using demanded-bits information.
3146 if (!VT.isVector() &&
3147 SimplifyDemandedBits(SDValue(N, 0)))
3148 return SDValue(N, 0);
3149
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003150 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003151}
3152
Chris Lattner516b9622006-09-14 20:50:57 +00003153/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003154static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003155 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003156 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003157 Mask = Op.getOperand(1);
3158 Op = Op.getOperand(0);
3159 } else {
3160 return false;
3161 }
3162 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003163
Chris Lattner516b9622006-09-14 20:50:57 +00003164 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3165 Shift = Op;
3166 return true;
3167 }
Bill Wendling09025642009-01-30 20:59:34 +00003168
Scott Michelfdc40a02009-02-17 22:15:04 +00003169 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003170}
3171
Chris Lattner516b9622006-09-14 20:50:57 +00003172// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3173// idioms for rotate, and if the target supports rotation instructions, generate
3174// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003175SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003176 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003177 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003178 if (!TLI.isTypeLegal(VT)) return 0;
3179
3180 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003181 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3182 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003183 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003184
Chris Lattner516b9622006-09-14 20:50:57 +00003185 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003186 SDValue LHSShift; // The shift.
3187 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003188 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3189 return 0; // Not part of a rotate.
3190
Dan Gohman475871a2008-07-27 21:46:04 +00003191 SDValue RHSShift; // The shift.
3192 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003193 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3194 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003195
Chris Lattner516b9622006-09-14 20:50:57 +00003196 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3197 return 0; // Not shifting the same value.
3198
3199 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3200 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003201
Chris Lattner516b9622006-09-14 20:50:57 +00003202 // Canonicalize shl to left side in a shl/srl pair.
3203 if (RHSShift.getOpcode() == ISD::SHL) {
3204 std::swap(LHS, RHS);
3205 std::swap(LHSShift, RHSShift);
3206 std::swap(LHSMask , RHSMask );
3207 }
3208
Duncan Sands83ec4b62008-06-06 12:08:01 +00003209 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003210 SDValue LHSShiftArg = LHSShift.getOperand(0);
3211 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3212 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003213
3214 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3215 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003216 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3217 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003218 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3219 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003220 if ((LShVal + RShVal) != OpSizeInBits)
3221 return 0;
3222
Craig Topper32b73432012-09-29 06:54:22 +00003223 SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3224 LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003225
Chris Lattner516b9622006-09-14 20:50:57 +00003226 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003227 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003228 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003229
Gabor Greifba36cb52008-08-28 21:40:38 +00003230 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003231 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3232 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003233 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003234 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003235 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3236 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003237 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003238
Bill Wendling317bd702009-01-30 21:14:50 +00003239 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003240 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003241
Gabor Greifba36cb52008-08-28 21:40:38 +00003242 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003243 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003244
Chris Lattner516b9622006-09-14 20:50:57 +00003245 // If there is a mask here, and we have a variable shift, we can't be sure
3246 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003247 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003248 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003249
Chris Lattner516b9622006-09-14 20:50:57 +00003250 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3251 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003252 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3253 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003254 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003255 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003256 if (SUBC->getAPIntValue() == OpSizeInBits) {
Craig Topper32b73432012-09-29 06:54:22 +00003257 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, LHSShiftArg,
3258 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003259 }
Chris Lattner516b9622006-09-14 20:50:57 +00003260 }
3261 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003262
Chris Lattner516b9622006-09-14 20:50:57 +00003263 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3264 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003265 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3266 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003267 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003268 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003269 if (SUBC->getAPIntValue() == OpSizeInBits) {
Craig Topper32b73432012-09-29 06:54:22 +00003270 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg,
3271 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003272 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003273 }
3274 }
3275
Dan Gohman74feef22008-10-17 01:23:35 +00003276 // Look for sign/zext/any-extended or truncate cases:
Craig Topper0eb5dad2012-09-29 07:18:53 +00003277 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3278 LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3279 LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3280 LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
3281 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3282 RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3283 RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3284 RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003285 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3286 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003287 if (RExtOp0.getOpcode() == ISD::SUB &&
3288 RExtOp0.getOperand(1) == LExtOp0) {
3289 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003290 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003291 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003292 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003293 if (ConstantSDNode *SUBC =
3294 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003295 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003296 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3297 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003298 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003299 }
3300 }
3301 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3302 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003303 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003304 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003305 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003306 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003307 if (ConstantSDNode *SUBC =
3308 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003309 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003310 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3311 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003312 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003313 }
3314 }
Chris Lattner516b9622006-09-14 20:50:57 +00003315 }
3316 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003317
Chris Lattner516b9622006-09-14 20:50:57 +00003318 return 0;
3319}
3320
Dan Gohman475871a2008-07-27 21:46:04 +00003321SDValue DAGCombiner::visitXOR(SDNode *N) {
3322 SDValue N0 = N->getOperand(0);
3323 SDValue N1 = N->getOperand(1);
3324 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003325 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3326 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003327 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003328
Dan Gohman7f321562007-06-25 16:23:39 +00003329 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003330 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003331 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003332 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003333 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003334
Evan Cheng26471c42008-03-25 20:08:07 +00003335 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3336 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3337 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003338 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003339 if (N0.getOpcode() == ISD::UNDEF)
3340 return N0;
3341 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003342 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003343 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003344 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003345 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003346 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003347 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003348 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003349 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003350 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003351 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003352 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003353 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003354 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003355 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003356
Nate Begeman1d4d4142005-09-01 00:19:25 +00003357 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003358 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003359 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003360 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3361 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003362
Duncan Sands25cf2272008-11-24 14:53:14 +00003363 if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003364 switch (N0.getOpcode()) {
3365 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003366 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003367 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003368 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003369 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003370 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003371 N0.getOperand(3), NotCC);
3372 }
3373 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003374 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003375
Chris Lattner61c5ff42007-09-10 21:39:07 +00003376 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003377 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003378 N0.getNode()->hasOneUse() &&
3379 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003380 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003381 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003382 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003383 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003384 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003385 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003386
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003387 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003388 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003389 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003390 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003391 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3392 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003393 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3394 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003395 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003396 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003397 }
3398 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003399 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003400 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003401 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003402 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003403 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3404 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003405 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3406 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003407 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003408 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003409 }
3410 }
Bill Wendling317bd702009-01-30 21:14:50 +00003411 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003412 if (N1C && N0.getOpcode() == ISD::XOR) {
3413 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3414 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3415 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003416 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3417 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003418 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003419 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003420 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3421 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003422 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003423 }
3424 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003425 if (N0 == N1)
3426 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003427
Chris Lattner35e5c142006-05-05 05:51:50 +00003428 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3429 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003430 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003431 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003432 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003433
Chris Lattner3e104b12006-04-08 04:15:24 +00003434 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003435 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003436 SimplifyDemandedBits(SDValue(N, 0)))
3437 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003438
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003439 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003440}
3441
Chris Lattnere70da202007-12-06 07:33:36 +00003442/// visitShiftByConstant - Handle transforms common to the three shifts, when
3443/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003444SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003445 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003446 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003447
Chris Lattnere70da202007-12-06 07:33:36 +00003448 // We want to pull some binops through shifts, so that we have (and (shift))
3449 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3450 // thing happens with address calculations, so it's important to canonicalize
3451 // it.
3452 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003453
Chris Lattnere70da202007-12-06 07:33:36 +00003454 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003455 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003456 case ISD::OR:
3457 case ISD::XOR:
3458 HighBitSet = false; // We can only transform sra if the high bit is clear.
3459 break;
3460 case ISD::AND:
3461 HighBitSet = true; // We can only transform sra if the high bit is set.
3462 break;
3463 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003464 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003465 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003466 HighBitSet = false; // We can only transform sra if the high bit is clear.
3467 break;
3468 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003469
Chris Lattnere70da202007-12-06 07:33:36 +00003470 // We require the RHS of the binop to be a constant as well.
3471 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003472 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003473
3474 // FIXME: disable this unless the input to the binop is a shift by a constant.
3475 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003476 //
Bill Wendling88103372009-01-30 21:37:17 +00003477 // void foo(int *X, int i) { X[i & 1235] = 1; }
3478 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003479 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003480 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003481 BinOpLHSVal->getOpcode() != ISD::SRA &&
3482 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3483 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003484 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003485
Owen Andersone50ed302009-08-10 22:56:29 +00003486 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003487
Bill Wendling88103372009-01-30 21:37:17 +00003488 // If this is a signed shift right, and the high bit is modified by the
3489 // logical operation, do not perform the transformation. The highBitSet
3490 // boolean indicates the value of the high bit of the constant which would
3491 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003492 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003493 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3494 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003495 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003496 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003497
Chris Lattnere70da202007-12-06 07:33:36 +00003498 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003499 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3500 N->getValueType(0),
3501 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003502
3503 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003504 SDValue NewShift = DAG.getNode(N->getOpcode(),
3505 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003506 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003507
3508 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003509 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003510}
3511
Dan Gohman475871a2008-07-27 21:46:04 +00003512SDValue DAGCombiner::visitSHL(SDNode *N) {
3513 SDValue N0 = N->getOperand(0);
3514 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003515 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3516 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003517 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003518 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003519
Nate Begeman1d4d4142005-09-01 00:19:25 +00003520 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003521 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003522 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003523 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003524 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003525 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003526 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003527 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003528 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003529 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003530 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003531 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003532 // fold (shl undef, x) -> 0
3533 if (N0.getOpcode() == ISD::UNDEF)
3534 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003535 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003536 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003537 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003538 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003539 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003540 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003541 N1.getOperand(0).getOpcode() == ISD::AND &&
3542 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003543 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003544 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003545 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003546 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003547 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003548 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003549 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003550 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3551 DAG.getNode(ISD::TRUNCATE,
3552 N->getDebugLoc(),
3553 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003554 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003555 }
3556 }
3557
Dan Gohman475871a2008-07-27 21:46:04 +00003558 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3559 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003560
3561 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003562 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003563 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003564 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3565 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003566 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003567 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003568 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003569 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003570 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003571
3572 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3573 // For this to be valid, the second form must not preserve any of the bits
3574 // that are shifted out by the inner shift in the first form. This means
3575 // the outer shift size must be >= the number of bits added by the ext.
3576 // As a corollary, we don't care what kind of ext it is.
3577 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3578 N0.getOpcode() == ISD::ANY_EXTEND ||
3579 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3580 N0.getOperand(0).getOpcode() == ISD::SHL &&
3581 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003582 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003583 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3584 uint64_t c2 = N1C->getZExtValue();
3585 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3586 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3587 if (c2 >= OpSizeInBits - InnerShiftSize) {
3588 if (c1 + c2 >= OpSizeInBits)
3589 return DAG.getConstant(0, VT);
3590 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3591 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3592 N0.getOperand(0)->getOperand(0)),
3593 DAG.getConstant(c1 + c2, N1.getValueType()));
3594 }
3595 }
3596
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003597 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3598 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003599 // Only fold this if the inner shift has no other uses -- if it does, folding
3600 // this will increase the total number of instructions.
3601 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003602 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003603 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003604 if (c1 < VT.getSizeInBits()) {
3605 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003606 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3607 VT.getSizeInBits() - c1);
3608 SDValue Shift;
3609 if (c2 > c1) {
3610 Mask = Mask.shl(c2-c1);
3611 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3612 DAG.getConstant(c2-c1, N1.getValueType()));
3613 } else {
3614 Mask = Mask.lshr(c1-c2);
3615 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3616 DAG.getConstant(c1-c2, N1.getValueType()));
3617 }
3618 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3619 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003620 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003621 }
Bill Wendling88103372009-01-30 21:37:17 +00003622 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003623 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3624 SDValue HiBitsMask =
3625 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3626 VT.getSizeInBits() -
3627 N1C->getZExtValue()),
3628 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003629 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003630 HiBitsMask);
3631 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003632
Evan Chenge5b51ac2010-04-17 06:13:15 +00003633 if (N1C) {
3634 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3635 if (NewSHL.getNode())
3636 return NewSHL;
3637 }
3638
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003639 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003640}
3641
Dan Gohman475871a2008-07-27 21:46:04 +00003642SDValue DAGCombiner::visitSRA(SDNode *N) {
3643 SDValue N0 = N->getOperand(0);
3644 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003645 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3646 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003647 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003648 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003649
Bill Wendling88103372009-01-30 21:37:17 +00003650 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003651 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003652 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003653 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003654 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003655 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003656 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003657 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003658 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003659 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003660 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003661 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003662 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003663 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003664 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003665 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3666 // sext_inreg.
3667 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003668 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003669 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3670 if (VT.isVector())
3671 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3672 ExtVT, VT.getVectorNumElements());
3673 if ((!LegalOperations ||
3674 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003675 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003676 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003677 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003678
Bill Wendling88103372009-01-30 21:37:17 +00003679 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003680 if (N1C && N0.getOpcode() == ISD::SRA) {
3681 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003682 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003683 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003684 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003685 DAG.getConstant(Sum, N1C->getValueType(0)));
3686 }
3687 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003688
Bill Wendling88103372009-01-30 21:37:17 +00003689 // fold (sra (shl X, m), (sub result_size, n))
3690 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003691 // result_size - n != m.
3692 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003693 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003694 if (N0.getOpcode() == ISD::SHL) {
3695 // Get the two constanst of the shifts, CN0 = m, CN = n.
3696 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3697 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003698 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003699 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003700 EVT::getIntegerVT(*DAG.getContext(),
3701 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003702 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003703 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003704
Scott Michelfdc40a02009-02-17 22:15:04 +00003705 // If the shift is not a no-op (in which case this should be just a sign
3706 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003707 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003708 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003709 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003710 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3711 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003712 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003713
Owen Anderson95771af2011-02-25 21:41:48 +00003714 SDValue Amt = DAG.getConstant(ShiftAmt,
3715 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003716 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3717 N0.getOperand(0), Amt);
3718 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3719 Shift);
3720 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3721 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003722 }
3723 }
3724 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003725
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003726 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003727 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003728 N1.getOperand(0).getOpcode() == ISD::AND &&
3729 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003730 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003731 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003732 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003733 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003734 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003735 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003736 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003737 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003738 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003739 DAG.getNode(ISD::TRUNCATE,
3740 N->getDebugLoc(),
3741 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003742 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003743 }
3744 }
3745
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003746 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3747 // if c1 is equal to the number of bits the trunc removes
3748 if (N0.getOpcode() == ISD::TRUNCATE &&
3749 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3750 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3751 N0.getOperand(0).hasOneUse() &&
3752 N0.getOperand(0).getOperand(1).hasOneUse() &&
3753 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3754 EVT LargeVT = N0.getOperand(0).getValueType();
3755 ConstantSDNode *LargeShiftAmt =
3756 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3757
3758 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3759 LargeShiftAmt->getZExtValue()) {
3760 SDValue Amt =
3761 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003762 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003763 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3764 N0.getOperand(0).getOperand(0), Amt);
3765 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3766 }
3767 }
3768
Scott Michelfdc40a02009-02-17 22:15:04 +00003769 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003770 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3771 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003772
3773
Nate Begeman1d4d4142005-09-01 00:19:25 +00003774 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003775 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003776 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003777
Evan Chenge5b51ac2010-04-17 06:13:15 +00003778 if (N1C) {
3779 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3780 if (NewSRA.getNode())
3781 return NewSRA;
3782 }
3783
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003784 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003785}
3786
Dan Gohman475871a2008-07-27 21:46:04 +00003787SDValue DAGCombiner::visitSRL(SDNode *N) {
3788 SDValue N0 = N->getOperand(0);
3789 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003790 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3791 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003792 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003793 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003794
Nate Begeman1d4d4142005-09-01 00:19:25 +00003795 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003796 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003797 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003798 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003799 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003800 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003801 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003802 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003803 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003804 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003805 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003806 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003807 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003808 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003809 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003810 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003811
Bill Wendling88103372009-01-30 21:37:17 +00003812 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003813 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003814 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003815 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3816 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003817 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003818 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003819 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003820 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003821 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003822
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003823 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003824 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3825 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003826 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003827 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003828 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3829 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003830 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3831 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003832 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003833 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003834 if (c1 + OpSizeInBits == InnerShiftSize) {
3835 if (c1 + c2 >= InnerShiftSize)
3836 return DAG.getConstant(0, VT);
3837 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003838 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003839 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003840 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003841 }
3842 }
3843
Chris Lattnerefcddc32010-04-15 05:28:43 +00003844 // fold (srl (shl x, c), c) -> (and x, cst2)
3845 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3846 N0.getValueSizeInBits() <= 64) {
3847 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3848 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3849 DAG.getConstant(~0ULL >> ShAmt, VT));
3850 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003851
Scott Michelfdc40a02009-02-17 22:15:04 +00003852
Chris Lattner06afe072006-05-05 22:53:17 +00003853 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3854 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3855 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003856 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003857 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003858 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003859
Evan Chenge5b51ac2010-04-17 06:13:15 +00003860 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003861 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003862 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003863 N0.getOperand(0),
3864 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003865 AddToWorkList(SmallShift.getNode());
3866 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3867 }
Chris Lattner06afe072006-05-05 22:53:17 +00003868 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003869
Chris Lattner3657ffe2006-10-12 20:23:19 +00003870 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3871 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003872 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003873 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003874 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003875 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003876
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003877 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003878 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003879 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003880 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003881 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003882
Chris Lattner350bec02006-04-02 06:11:11 +00003883 // If any of the input bits are KnownOne, then the input couldn't be all
3884 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003885 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003886
Chris Lattner350bec02006-04-02 06:11:11 +00003887 // If all of the bits input the to ctlz node are known to be zero, then
3888 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003889 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00003890 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003891
Chris Lattner350bec02006-04-02 06:11:11 +00003892 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003893 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003894 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003895 // could be set on input to the CTLZ node. If this bit is set, the SRL
3896 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3897 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003898 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003899 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003900
Chris Lattner350bec02006-04-02 06:11:11 +00003901 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003902 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003903 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003904 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003905 }
Bill Wendling88103372009-01-30 21:37:17 +00003906
3907 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3908 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003909 }
3910 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003911
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003912 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003913 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003914 N1.getOperand(0).getOpcode() == ISD::AND &&
3915 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003916 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003917 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003918 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003919 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003920 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003921 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003922 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003923 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003924 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003925 DAG.getNode(ISD::TRUNCATE,
3926 N->getDebugLoc(),
3927 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003928 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003929 }
3930 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003931
Chris Lattner61a4c072007-04-18 03:06:49 +00003932 // fold operands of srl based on knowledge that the low bits are not
3933 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003934 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3935 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003936
Evan Cheng9ab2b982009-12-18 21:31:31 +00003937 if (N1C) {
3938 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3939 if (NewSRL.getNode())
3940 return NewSRL;
3941 }
3942
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003943 // Attempt to convert a srl of a load into a narrower zero-extending load.
3944 SDValue NarrowLoad = ReduceLoadWidth(N);
3945 if (NarrowLoad.getNode())
3946 return NarrowLoad;
3947
Evan Cheng9ab2b982009-12-18 21:31:31 +00003948 // Here is a common situation. We want to optimize:
3949 //
3950 // %a = ...
3951 // %b = and i32 %a, 2
3952 // %c = srl i32 %b, 1
3953 // brcond i32 %c ...
3954 //
3955 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003956 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00003957 // %a = ...
3958 // %b = and %a, 2
3959 // %c = setcc eq %b, 0
3960 // brcond %c ...
3961 //
3962 // However when after the source operand of SRL is optimized into AND, the SRL
3963 // itself may not be optimized further. Look for it and add the BRCOND into
3964 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00003965 if (N->hasOneUse()) {
3966 SDNode *Use = *N->use_begin();
3967 if (Use->getOpcode() == ISD::BRCOND)
3968 AddToWorkList(Use);
3969 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3970 // Also look pass the truncate.
3971 Use = *Use->use_begin();
3972 if (Use->getOpcode() == ISD::BRCOND)
3973 AddToWorkList(Use);
3974 }
3975 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00003976
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003977 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00003978}
3979
Dan Gohman475871a2008-07-27 21:46:04 +00003980SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3981 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003982 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003983
3984 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003985 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003986 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003987 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003988}
3989
Chandler Carruth63974b22011-12-13 01:56:10 +00003990SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
3991 SDValue N0 = N->getOperand(0);
3992 EVT VT = N->getValueType(0);
3993
3994 // fold (ctlz_zero_undef c1) -> c2
3995 if (isa<ConstantSDNode>(N0))
3996 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3997 return SDValue();
3998}
3999
Dan Gohman475871a2008-07-27 21:46:04 +00004000SDValue DAGCombiner::visitCTTZ(SDNode *N) {
4001 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004002 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004003
Nate Begeman1d4d4142005-09-01 00:19:25 +00004004 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004005 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004006 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004007 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004008}
4009
Chandler Carruth63974b22011-12-13 01:56:10 +00004010SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
4011 SDValue N0 = N->getOperand(0);
4012 EVT VT = N->getValueType(0);
4013
4014 // fold (cttz_zero_undef c1) -> c2
4015 if (isa<ConstantSDNode>(N0))
4016 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
4017 return SDValue();
4018}
4019
Dan Gohman475871a2008-07-27 21:46:04 +00004020SDValue DAGCombiner::visitCTPOP(SDNode *N) {
4021 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004022 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004023
Nate Begeman1d4d4142005-09-01 00:19:25 +00004024 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004025 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004026 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004027 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004028}
4029
Dan Gohman475871a2008-07-27 21:46:04 +00004030SDValue DAGCombiner::visitSELECT(SDNode *N) {
4031 SDValue N0 = N->getOperand(0);
4032 SDValue N1 = N->getOperand(1);
4033 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004034 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4035 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4036 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00004037 EVT VT = N->getValueType(0);
4038 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00004039
Bill Wendling34584e62009-01-30 22:02:18 +00004040 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004041 if (N1 == N2)
4042 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004043 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004044 if (N0C && !N0C->isNullValue())
4045 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004046 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00004047 if (N0C && N0C->isNullValue())
4048 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004049 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004050 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00004051 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4052 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004053 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004054 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004055 (VT0.isInteger() &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00004056 TLI.getBooleanContents(false) ==
4057 TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004058 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004059 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004060 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00004061 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
4062 N0, DAG.getConstant(1, VT0));
4063 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
4064 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004065 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004066 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00004067 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
4068 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004069 }
Bill Wendling34584e62009-01-30 22:02:18 +00004070 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004071 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00004072 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004073 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004074 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004075 }
Bill Wendling34584e62009-01-30 22:02:18 +00004076 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004077 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004078 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004079 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004080 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004081 }
Bill Wendling34584e62009-01-30 22:02:18 +00004082 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004083 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00004084 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
4085 // fold (select X, X, Y) -> (or X, Y)
4086 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004087 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00004088 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4089 // fold (select X, Y, X) -> (and X, Y)
4090 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004091 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00004092 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004093
Chris Lattner40c62d52005-10-18 06:04:22 +00004094 // If we can fold this based on the true/false value, do so.
4095 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004096 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004097
Nate Begeman44728a72005-09-19 22:34:01 +00004098 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004099 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004100 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004101 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004102 // having to say they don't support SELECT_CC on every type the DAG knows
4103 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004104 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004105 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004106 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4107 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004108 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004109 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004110 }
Bill Wendling34584e62009-01-30 22:02:18 +00004111
Dan Gohman475871a2008-07-27 21:46:04 +00004112 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004113}
4114
Dan Gohman475871a2008-07-27 21:46:04 +00004115SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4116 SDValue N0 = N->getOperand(0);
4117 SDValue N1 = N->getOperand(1);
4118 SDValue N2 = N->getOperand(2);
4119 SDValue N3 = N->getOperand(3);
4120 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004121 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004122
Nate Begeman44728a72005-09-19 22:34:01 +00004123 // fold select_cc lhs, rhs, x, x, cc -> x
4124 if (N2 == N3)
4125 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004126
Chris Lattner5f42a242006-09-20 06:19:26 +00004127 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004128 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004129 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004130 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004131
Gabor Greifba36cb52008-08-28 21:40:38 +00004132 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004133 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004134 return N2; // cond always true -> true val
4135 else
4136 return N3; // cond always false -> false val
4137 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004138
Chris Lattner5f42a242006-09-20 06:19:26 +00004139 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004140 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004141 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4142 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004143 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004144
Chris Lattner40c62d52005-10-18 06:04:22 +00004145 // If we can fold this based on the true/false value, do so.
4146 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004147 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004148
Nate Begeman44728a72005-09-19 22:34:01 +00004149 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004150 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004151}
4152
Dan Gohman475871a2008-07-27 21:46:04 +00004153SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004154 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004155 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4156 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004157}
4158
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004159// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004160// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004161// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004162// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004163static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004164 unsigned ExtOpc,
4165 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004166 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004167 bool HasCopyToRegUses = false;
4168 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004169 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4170 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004171 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004172 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004173 if (User == N)
4174 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004175 if (UI.getUse().getResNo() != N0.getResNo())
4176 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004177 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004178 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004179 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4180 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4181 // Sign bits will be lost after a zext.
4182 return false;
4183 bool Add = false;
4184 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004185 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004186 if (UseOp == N0)
4187 continue;
4188 if (!isa<ConstantSDNode>(UseOp))
4189 return false;
4190 Add = true;
4191 }
4192 if (Add)
4193 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004194 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004195 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004196 // If truncates aren't free and there are users we can't
4197 // extend, it isn't worthwhile.
4198 if (!isTruncFree)
4199 return false;
4200 // Remember if this value is live-out.
4201 if (User->getOpcode() == ISD::CopyToReg)
4202 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004203 }
4204
4205 if (HasCopyToRegUses) {
4206 bool BothLiveOut = false;
4207 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4208 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004209 SDUse &Use = UI.getUse();
4210 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4211 BothLiveOut = true;
4212 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004213 }
4214 }
4215 if (BothLiveOut)
4216 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004217 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004218 return ExtendNodes.size();
4219 }
4220 return true;
4221}
4222
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004223void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4224 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4225 ISD::NodeType ExtType) {
4226 // Extend SetCC uses if necessary.
4227 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4228 SDNode *SetCC = SetCCs[i];
4229 SmallVector<SDValue, 4> Ops;
4230
4231 for (unsigned j = 0; j != 2; ++j) {
4232 SDValue SOp = SetCC->getOperand(j);
4233 if (SOp == Trunc)
4234 Ops.push_back(ExtLoad);
4235 else
4236 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4237 }
4238
4239 Ops.push_back(SetCC->getOperand(2));
4240 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4241 &Ops[0], Ops.size()));
4242 }
4243}
4244
Dan Gohman475871a2008-07-27 21:46:04 +00004245SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4246 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004247 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004248
Nate Begeman1d4d4142005-09-01 00:19:25 +00004249 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004250 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004251 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004252
Nate Begeman1d4d4142005-09-01 00:19:25 +00004253 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004254 // fold (sext (aext x)) -> (sext x)
4255 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004256 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4257 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004258
Chris Lattner22558872007-02-26 03:13:59 +00004259 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004260 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4261 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004262 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4263 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004264 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4265 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004266 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004267 // CombineTo deleted the truncate, if needed, but not what's under it.
4268 AddToWorkList(oye);
4269 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004270 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004271 }
Evan Chengc88138f2007-03-22 01:54:19 +00004272
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004273 // See if the value being truncated is already sign extended. If so, just
4274 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004275 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004276 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4277 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4278 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004279 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004280
Chris Lattner22558872007-02-26 03:13:59 +00004281 if (OpBits == DestBits) {
4282 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4283 // bits, it is already ready.
4284 if (NumSignBits > DestBits-MidBits)
4285 return Op;
4286 } else if (OpBits < DestBits) {
4287 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4288 // bits, just sext from i32.
4289 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004290 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004291 } else {
4292 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4293 // bits, just truncate to i32.
4294 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004295 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004296 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004297
Chris Lattner22558872007-02-26 03:13:59 +00004298 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004299 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4300 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004301 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004302 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004303 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004304 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4305 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004306 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004307 }
Chris Lattner6007b842006-09-21 06:00:20 +00004308 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004309
Evan Cheng110dec22005-12-14 02:19:23 +00004310 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004311 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004312 // on vectors in one instruction. We only perform this transformation on
4313 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004314 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004315 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004316 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004317 bool DoXform = true;
4318 SmallVector<SDNode*, 4> SetCCs;
4319 if (!N0.hasOneUse())
4320 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4321 if (DoXform) {
4322 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004323 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004324 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004325 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004326 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004327 LN0->isVolatile(), LN0->isNonTemporal(),
4328 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004329 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004330 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4331 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004332 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004333 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4334 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004335 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004336 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004337 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004338
4339 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4340 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004341 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4342 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004343 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004344 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004345 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004346 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004347 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004348 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004349 LN0->getBasePtr(), LN0->getPointerInfo(),
4350 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004351 LN0->isVolatile(), LN0->isNonTemporal(),
4352 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004353 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004354 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004355 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4356 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004357 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004358 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004359 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004360 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004361
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004362 // fold (sext (and/or/xor (load x), cst)) ->
4363 // (and/or/xor (sextload x), (sext cst))
4364 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4365 N0.getOpcode() == ISD::XOR) &&
4366 isa<LoadSDNode>(N0.getOperand(0)) &&
4367 N0.getOperand(1).getOpcode() == ISD::Constant &&
4368 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4369 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4370 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4371 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4372 bool DoXform = true;
4373 SmallVector<SDNode*, 4> SetCCs;
4374 if (!N0.hasOneUse())
4375 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4376 SetCCs, TLI);
4377 if (DoXform) {
4378 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4379 LN0->getChain(), LN0->getBasePtr(),
4380 LN0->getPointerInfo(),
4381 LN0->getMemoryVT(),
4382 LN0->isVolatile(),
4383 LN0->isNonTemporal(),
4384 LN0->getAlignment());
4385 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4386 Mask = Mask.sext(VT.getSizeInBits());
4387 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4388 ExtLoad, DAG.getConstant(Mask, VT));
4389 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4390 N0.getOperand(0).getDebugLoc(),
4391 N0.getOperand(0).getValueType(), ExtLoad);
4392 CombineTo(N, And);
4393 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4394 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4395 ISD::SIGN_EXTEND);
4396 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4397 }
4398 }
4399 }
4400
Chris Lattner20a35c32007-04-11 05:32:27 +00004401 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004402 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004403 // Only do this before legalize for now.
4404 if (VT.isVector() && !LegalOperations) {
4405 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004406 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4407 // of the same size as the compared operands. Only optimize sext(setcc())
4408 // if this is the case.
4409 EVT SVT = TLI.getSetCCResultType(N0VT);
4410
4411 // We know that the # elements of the results is the same as the
4412 // # elements of the compare (and the # elements of the compare result
4413 // for that matter). Check to see that they are the same size. If so,
4414 // we know that the element size of the sext'd result matches the
4415 // element size of the compare operands.
4416 if (VT.getSizeInBits() == SVT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004417 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004418 N0.getOperand(1),
4419 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004420 // If the desired elements are smaller or larger than the source
4421 // elements we can use a matching integer vector type and then
4422 // truncate/sign extend
Craig Topper0eb5dad2012-09-29 07:18:53 +00004423 EVT MatchingElementType =
4424 EVT::getIntegerVT(*DAG.getContext(),
4425 N0VT.getScalarType().getSizeInBits());
4426 EVT MatchingVectorType =
4427 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4428 N0VT.getVectorNumElements());
Nadav Rotem2e506192012-04-11 08:26:11 +00004429
Craig Topper0eb5dad2012-09-29 07:18:53 +00004430 if (SVT == MatchingVectorType) {
4431 SDValue VsetCC = DAG.getSetCC(N->getDebugLoc(), MatchingVectorType,
4432 N0.getOperand(0), N0.getOperand(1),
4433 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4434 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Dan Gohman3ce89f42010-04-30 17:19:19 +00004435 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004436 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004437
Chris Lattner2b7a2712009-07-08 00:31:33 +00004438 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004439 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004440 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004441 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004442 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004443 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004444 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004445 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004446 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004447 if (!LegalOperations ||
4448 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4449 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4450 DAG.getSetCC(N->getDebugLoc(),
4451 TLI.getSetCCResultType(VT),
4452 N0.getOperand(0), N0.getOperand(1),
4453 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4454 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004455 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004456
Dan Gohman8f0ad582008-04-28 16:58:24 +00004457 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004458 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004459 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004460 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004461
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004462 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004463}
4464
Rafael Espindoladecbc432012-04-09 16:06:03 +00004465// isTruncateOf - If N is a truncate of some other value, return true, record
4466// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4467// This function computes KnownZero to avoid a duplicated call to
4468// ComputeMaskedBits in the caller.
4469static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4470 APInt &KnownZero) {
4471 APInt KnownOne;
4472 if (N->getOpcode() == ISD::TRUNCATE) {
4473 Op = N->getOperand(0);
4474 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4475 return true;
4476 }
4477
4478 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4479 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4480 return false;
4481
4482 SDValue Op0 = N->getOperand(0);
4483 SDValue Op1 = N->getOperand(1);
4484 assert(Op0.getValueType() == Op1.getValueType());
4485
4486 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4487 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004488 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004489 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004490 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004491 Op = Op0;
4492 else
4493 return false;
4494
4495 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4496
4497 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4498 return false;
4499
4500 return true;
4501}
4502
Dan Gohman475871a2008-07-27 21:46:04 +00004503SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4504 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004505 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004506
Nate Begeman1d4d4142005-09-01 00:19:25 +00004507 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004508 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004509 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004510 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004511 // fold (zext (aext x)) -> (zext x)
4512 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004513 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4514 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004515
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004516 // fold (zext (truncate x)) -> (zext x) or
4517 // (zext (truncate x)) -> (truncate x)
4518 // This is valid when the truncated bits of x are already zero.
4519 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004520 SDValue Op;
4521 APInt KnownZero;
4522 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4523 APInt TruncatedBits =
4524 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4525 APInt(Op.getValueSizeInBits(), 0) :
4526 APInt::getBitsSet(Op.getValueSizeInBits(),
4527 N0.getValueSizeInBits(),
4528 std::min(Op.getValueSizeInBits(),
4529 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004530 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004531 if (VT.bitsGT(Op.getValueType()))
4532 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4533 if (VT.bitsLT(Op.getValueType()))
4534 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4535
4536 return Op;
4537 }
4538 }
4539
Evan Chengc88138f2007-03-22 01:54:19 +00004540 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4541 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004542 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004543 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4544 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004545 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4546 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004547 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004548 // CombineTo deleted the truncate, if needed, but not what's under it.
4549 AddToWorkList(oye);
4550 }
Eli Friedmane545d382011-04-16 23:25:34 +00004551 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004552 }
Evan Chengc88138f2007-03-22 01:54:19 +00004553 }
4554
Chris Lattner6007b842006-09-21 06:00:20 +00004555 // fold (zext (truncate x)) -> (and x, mask)
4556 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004557 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004558
4559 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4560 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4561 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4562 if (NarrowLoad.getNode()) {
4563 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4564 if (NarrowLoad.getNode() != N0.getNode()) {
4565 CombineTo(N0.getNode(), NarrowLoad);
4566 // CombineTo deleted the truncate, if needed, but not what's under it.
4567 AddToWorkList(oye);
4568 }
4569 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4570 }
4571
Dan Gohman475871a2008-07-27 21:46:04 +00004572 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004573 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004574 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004575 AddToWorkList(Op.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004576 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004577 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004578 AddToWorkList(Op.getNode());
Chris Lattner6007b842006-09-21 06:00:20 +00004579 }
Dan Gohman87862e72009-12-11 21:31:27 +00004580 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4581 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004582 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004583
Dan Gohman97121ba2009-04-08 00:15:30 +00004584 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4585 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004586 if (N0.getOpcode() == ISD::AND &&
4587 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004588 N0.getOperand(1).getOpcode() == ISD::Constant &&
4589 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4590 N0.getValueType()) ||
4591 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004592 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004593 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004594 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004595 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004596 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004597 }
Dan Gohman220a8232008-03-03 23:51:38 +00004598 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004599 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004600 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4601 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004602 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004603
Evan Cheng110dec22005-12-14 02:19:23 +00004604 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004605 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004606 // on vectors in one instruction. We only perform this transformation on
4607 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004608 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004609 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004610 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004611 bool DoXform = true;
4612 SmallVector<SDNode*, 4> SetCCs;
4613 if (!N0.hasOneUse())
4614 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4615 if (DoXform) {
4616 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004617 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004618 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004619 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004620 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004621 LN0->isVolatile(), LN0->isNonTemporal(),
4622 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004623 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004624 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4625 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004626 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004627
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004628 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4629 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004630 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004631 }
Evan Cheng110dec22005-12-14 02:19:23 +00004632 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004633
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004634 // fold (zext (and/or/xor (load x), cst)) ->
4635 // (and/or/xor (zextload x), (zext cst))
4636 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4637 N0.getOpcode() == ISD::XOR) &&
4638 isa<LoadSDNode>(N0.getOperand(0)) &&
4639 N0.getOperand(1).getOpcode() == ISD::Constant &&
4640 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4641 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4642 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4643 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4644 bool DoXform = true;
4645 SmallVector<SDNode*, 4> SetCCs;
4646 if (!N0.hasOneUse())
4647 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4648 SetCCs, TLI);
4649 if (DoXform) {
4650 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4651 LN0->getChain(), LN0->getBasePtr(),
4652 LN0->getPointerInfo(),
4653 LN0->getMemoryVT(),
4654 LN0->isVolatile(),
4655 LN0->isNonTemporal(),
4656 LN0->getAlignment());
4657 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4658 Mask = Mask.zext(VT.getSizeInBits());
4659 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4660 ExtLoad, DAG.getConstant(Mask, VT));
4661 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4662 N0.getOperand(0).getDebugLoc(),
4663 N0.getOperand(0).getValueType(), ExtLoad);
4664 CombineTo(N, And);
4665 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4666 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4667 ISD::ZERO_EXTEND);
4668 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4669 }
4670 }
4671 }
4672
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004673 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4674 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004675 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4676 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004677 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004678 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004679 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004680 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004681 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004682 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004683 LN0->getBasePtr(), LN0->getPointerInfo(),
4684 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004685 LN0->isVolatile(), LN0->isNonTemporal(),
4686 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004687 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004688 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004689 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4690 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004691 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004692 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004693 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004694 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004695
Chris Lattner20a35c32007-04-11 05:32:27 +00004696 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004697 if (!LegalOperations && VT.isVector()) {
4698 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4699 // Only do this before legalize for now.
4700 EVT N0VT = N0.getOperand(0).getValueType();
4701 EVT EltVT = VT.getVectorElementType();
4702 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4703 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004704 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004705 // We know that the # elements of the results is the same as the
4706 // # elements of the compare (and the # elements of the compare result
4707 // for that matter). Check to see that they are the same size. If so,
4708 // we know that the element size of the sext'd result matches the
4709 // element size of the compare operands.
4710 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004711 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004712 N0.getOperand(1),
4713 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4714 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4715 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004716
4717 // If the desired elements are smaller or larger than the source
4718 // elements we can use a matching integer vector type and then
4719 // truncate/sign extend
4720 EVT MatchingElementType =
4721 EVT::getIntegerVT(*DAG.getContext(),
4722 N0VT.getScalarType().getSizeInBits());
4723 EVT MatchingVectorType =
4724 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4725 N0VT.getVectorNumElements());
4726 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004727 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004728 N0.getOperand(1),
4729 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4730 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4731 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4732 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4733 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004734 }
4735
4736 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004737 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004738 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004739 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004740 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004741 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004742 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004743
Evan Cheng9818c042009-12-15 03:00:32 +00004744 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004745 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004746 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004747 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4748 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004749 SDValue ShAmt = N0.getOperand(1);
4750 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004751 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004752 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004753 // If the original shl may be shifting out bits, do not perform this
4754 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004755 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4756 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4757 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004758 return SDValue();
4759 }
Chris Lattnere0751182011-02-13 19:09:16 +00004760
4761 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004762
4763 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004764 if (VT.getSizeInBits() >= 256)
4765 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004766
Chris Lattnere0751182011-02-13 19:09:16 +00004767 return DAG.getNode(N0.getOpcode(), DL, VT,
4768 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4769 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004770 }
4771
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004772 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004773}
4774
Dan Gohman475871a2008-07-27 21:46:04 +00004775SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4776 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004777 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004778
Chris Lattner5ffc0662006-05-05 05:58:59 +00004779 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004780 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004781 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004782 // fold (aext (aext x)) -> (aext x)
4783 // fold (aext (zext x)) -> (zext x)
4784 // fold (aext (sext x)) -> (sext x)
4785 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4786 N0.getOpcode() == ISD::ZERO_EXTEND ||
4787 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004788 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004789
Evan Chengc88138f2007-03-22 01:54:19 +00004790 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4791 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4792 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004793 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4794 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004795 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4796 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004797 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004798 // CombineTo deleted the truncate, if needed, but not what's under it.
4799 AddToWorkList(oye);
4800 }
Eli Friedmane545d382011-04-16 23:25:34 +00004801 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004802 }
Evan Chengc88138f2007-03-22 01:54:19 +00004803 }
4804
Chris Lattner84750582006-09-20 06:29:17 +00004805 // fold (aext (truncate x))
4806 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004807 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004808 if (TruncOp.getValueType() == VT)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00004809 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004810 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004811 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4812 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004813 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004814
Dan Gohman97121ba2009-04-08 00:15:30 +00004815 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4816 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004817 if (N0.getOpcode() == ISD::AND &&
4818 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004819 N0.getOperand(1).getOpcode() == ISD::Constant &&
4820 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4821 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004822 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004823 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004824 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004825 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004826 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004827 }
Dan Gohman220a8232008-03-03 23:51:38 +00004828 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004829 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004830 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4831 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004832 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004833
Chris Lattner5ffc0662006-05-05 05:58:59 +00004834 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004835 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004836 // on vectors in one instruction. We only perform this transformation on
4837 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004838 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004839 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004840 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004841 bool DoXform = true;
4842 SmallVector<SDNode*, 4> SetCCs;
4843 if (!N0.hasOneUse())
4844 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4845 if (DoXform) {
4846 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004847 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004848 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004849 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004850 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004851 LN0->isVolatile(), LN0->isNonTemporal(),
4852 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004853 CombineTo(N, ExtLoad);
4854 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4855 N0.getValueType(), ExtLoad);
4856 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004857 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4858 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004859 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4860 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004861 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004862
Chris Lattner5ffc0662006-05-05 05:58:59 +00004863 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4864 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4865 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004866 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004867 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004868 N0.hasOneUse()) {
4869 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004870 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004871 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4872 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004873 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004874 LN0->isVolatile(), LN0->isNonTemporal(),
4875 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004876 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004877 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004878 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4879 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004880 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004881 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004882 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004883
Chris Lattner20a35c32007-04-11 05:32:27 +00004884 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004885 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4886 // Only do this before legalize for now.
4887 if (VT.isVector() && !LegalOperations) {
4888 EVT N0VT = N0.getOperand(0).getValueType();
4889 // We know that the # elements of the results is the same as the
4890 // # elements of the compare (and the # elements of the compare result
4891 // for that matter). Check to see that they are the same size. If so,
4892 // we know that the element size of the sext'd result matches the
4893 // element size of the compare operands.
4894 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004895 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004896 N0.getOperand(1),
4897 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004898 // If the desired elements are smaller or larger than the source
4899 // elements we can use a matching integer vector type and then
4900 // truncate/sign extend
4901 else {
Duncan Sands34727662010-07-12 08:16:59 +00004902 EVT MatchingElementType =
4903 EVT::getIntegerVT(*DAG.getContext(),
4904 N0VT.getScalarType().getSizeInBits());
4905 EVT MatchingVectorType =
4906 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4907 N0VT.getVectorNumElements());
4908 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004909 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004910 N0.getOperand(1),
4911 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4912 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004913 }
4914 }
4915
4916 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004917 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004918 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004919 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004920 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004921 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004922 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004923 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004924
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004925 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004926}
4927
Chris Lattner2b4c2792007-10-13 06:35:54 +00004928/// GetDemandedBits - See if the specified operand can be simplified with the
4929/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004930/// simpler operand, otherwise return a null SDValue.
4931SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004932 switch (V.getOpcode()) {
4933 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004934 case ISD::Constant: {
4935 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4936 assert(CV != 0 && "Const value should be ConstSDNode.");
4937 const APInt &CVal = CV->getAPIntValue();
4938 APInt NewVal = CVal & Mask;
4939 if (NewVal != CVal) {
4940 return DAG.getConstant(NewVal, V.getValueType());
4941 }
4942 break;
4943 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004944 case ISD::OR:
4945 case ISD::XOR:
4946 // If the LHS or RHS don't contribute bits to the or, drop them.
4947 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4948 return V.getOperand(1);
4949 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4950 return V.getOperand(0);
4951 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004952 case ISD::SRL:
4953 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00004954 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00004955 break;
4956 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4957 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004958 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00004959
Dan Gohmancc91d632009-01-03 19:22:06 +00004960 // Watch out for shift count overflow though.
4961 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004962 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00004963 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00004964 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004965 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00004966 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00004967 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004968 }
Dan Gohman475871a2008-07-27 21:46:04 +00004969 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00004970}
4971
Evan Chengc88138f2007-03-22 01:54:19 +00004972/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4973/// bits and then truncated to a narrower type and where N is a multiple
4974/// of number of bits of the narrower type, transform it to a narrower load
4975/// from address + N / num of bits of new type. If the result is to be
4976/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00004977SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00004978 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004979
Evan Chengc88138f2007-03-22 01:54:19 +00004980 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00004981 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004982 EVT VT = N->getValueType(0);
4983 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00004984
Dan Gohman7f8613e2008-08-14 20:04:46 +00004985 // This transformation isn't valid for vector loads.
4986 if (VT.isVector())
4987 return SDValue();
4988
Dan Gohmand1996362010-01-09 02:13:55 +00004989 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00004990 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00004991 if (Opc == ISD::SIGN_EXTEND_INREG) {
4992 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00004993 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004994 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00004995 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004996 ExtType = ISD::ZEXTLOAD;
4997 N0 = SDValue(N, 0);
4998 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
4999 if (!N01) return SDValue();
5000 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
5001 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00005002 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00005003 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
5004 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005005
Owen Andersone50ed302009-08-10 22:56:29 +00005006 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00005007
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005008 // Do not generate loads of non-round integer types since these can
5009 // be expensive (and would be wrong if the type is not byte sized).
5010 if (!ExtVT.isRound())
5011 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005012
Evan Chengc88138f2007-03-22 01:54:19 +00005013 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005014 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00005015 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005016 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005017 // Is the shift amount a multiple of size of VT?
5018 if ((ShAmt & (EVTBits-1)) == 0) {
5019 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00005020 // Is the load width a multiple of size of VT?
5021 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005022 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005023 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005024
Chris Lattnercbf68df2010-12-22 08:02:57 +00005025 // At this point, we must have a load or else we can't do the transform.
5026 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005027
Chris Lattner2831a192010-10-01 05:36:09 +00005028 // If the shift amount is larger than the input type then we're not
5029 // accessing any of the loaded bytes. If the load was a zextload/extload
5030 // then the result of the shift+trunc is zero/undef (handled elsewhere).
5031 // If the load was a sextload then the result is a splat of the sign bit
5032 // of the extended byte. This is not worth optimizing for.
Chris Lattnercbf68df2010-12-22 08:02:57 +00005033 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00005034 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005035 }
5036 }
5037
Dan Gohman394d6292010-11-03 01:47:46 +00005038 // If the load is shifted left (and the result isn't shifted back right),
5039 // we can fold the truncate through the shift.
5040 unsigned ShLeftAmt = 0;
5041 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00005042 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00005043 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5044 ShLeftAmt = N01->getZExtValue();
5045 N0 = N0.getOperand(0);
5046 }
5047 }
Owen Anderson95771af2011-02-25 21:41:48 +00005048
Chris Lattner4c32bc22010-12-22 07:36:50 +00005049 // If we haven't found a load, we can't narrow it. Don't transform one with
5050 // multiple uses, this would require adding a new load.
5051 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
5052 // Don't change the width of a volatile load.
5053 cast<LoadSDNode>(N0)->isVolatile())
5054 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005055
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005056 // Verify that we are actually reducing a load width here.
5057 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005058 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005059
Chris Lattner4c32bc22010-12-22 07:36:50 +00005060 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5061 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005062
Evan Cheng16436df2012-06-26 01:19:33 +00005063 if (PtrType == MVT::Untyped || PtrType.isExtended())
5064 // It's not possible to generate a constant of extended or untyped type.
5065 return SDValue();
5066
Chris Lattner4c32bc22010-12-22 07:36:50 +00005067 // For big endian targets, we need to adjust the offset to the pointer to
5068 // load the correct bytes.
5069 if (TLI.isBigEndian()) {
5070 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5071 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5072 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005073 }
5074
Chris Lattner4c32bc22010-12-22 07:36:50 +00005075 uint64_t PtrOff = ShAmt / 8;
5076 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
5077 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
5078 PtrType, LN0->getBasePtr(),
5079 DAG.getConstant(PtrOff, PtrType));
5080 AddToWorkList(NewPtr.getNode());
5081
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005082 SDValue Load;
5083 if (ExtType == ISD::NON_EXTLOAD)
5084 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
5085 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005086 LN0->isVolatile(), LN0->isNonTemporal(),
5087 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005088 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00005089 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005090 LN0->getPointerInfo().getWithOffset(PtrOff),
5091 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5092 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005093
5094 // Replace the old load's chain with the new load's chain.
5095 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005096 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005097
5098 // Shift the result left, if we've swallowed a left shift.
5099 SDValue Result = Load;
5100 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005101 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005102 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5103 ShImmTy = VT;
5104 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
5105 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
5106 }
5107
5108 // Return the new loaded value.
5109 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005110}
5111
Dan Gohman475871a2008-07-27 21:46:04 +00005112SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5113 SDValue N0 = N->getOperand(0);
5114 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005115 EVT VT = N->getValueType(0);
5116 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005117 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005118 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005119
Nate Begeman1d4d4142005-09-01 00:19:25 +00005120 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005121 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00005122 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005123
Chris Lattner541a24f2006-05-06 22:43:44 +00005124 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005125 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005126 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005127
Nate Begeman646d7e22005-09-02 21:18:40 +00005128 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5129 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00005130 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00005131 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5132 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00005133 }
Chris Lattner4b37e872006-05-08 21:18:59 +00005134
Dan Gohman75dcf082008-07-31 00:50:31 +00005135 // fold (sext_in_reg (sext x)) -> (sext x)
5136 // fold (sext_in_reg (aext x)) -> (sext x)
5137 // if x is small enough.
5138 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5139 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005140 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5141 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00005142 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005143 }
5144
Chris Lattner95a5e052007-04-17 19:03:21 +00005145 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005146 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005147 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005148
Chris Lattner95a5e052007-04-17 19:03:21 +00005149 // fold operands of sext_in_reg based on knowledge that the top bits are not
5150 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005151 if (SimplifyDemandedBits(SDValue(N, 0)))
5152 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005153
Evan Chengc88138f2007-03-22 01:54:19 +00005154 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5155 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005156 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005157 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005158 return NarrowLoad;
5159
Bill Wendling8509c902009-01-30 22:33:24 +00005160 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005161 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005162 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5163 if (N0.getOpcode() == ISD::SRL) {
5164 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005165 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005166 // We can turn this into an SRA iff the input to the SRL is already sign
Chris Lattner4b37e872006-05-08 21:18:59 +00005167 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005168 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005169 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005170 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5171 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005172 }
5173 }
Evan Chengc88138f2007-03-22 01:54:19 +00005174
Nate Begemanded49632005-10-13 03:11:28 +00005175 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005176 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005177 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005178 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005179 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005180 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005181 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005182 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005183 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005184 LN0->getBasePtr(), LN0->getPointerInfo(),
5185 EVT,
David Greene1e559442010-02-15 17:00:31 +00005186 LN0->isVolatile(), LN0->isNonTemporal(),
5187 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005188 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005189 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005190 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005191 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005192 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005193 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005194 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005195 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005196 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005197 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005198 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005199 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005200 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005201 LN0->getBasePtr(), LN0->getPointerInfo(),
5202 EVT,
David Greene1e559442010-02-15 17:00:31 +00005203 LN0->isVolatile(), LN0->isNonTemporal(),
5204 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005205 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005206 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005207 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005208 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005209
5210 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5211 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5212 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5213 N0.getOperand(1), false);
5214 if (BSwap.getNode() != 0)
5215 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5216 BSwap, N1);
5217 }
5218
Dan Gohman475871a2008-07-27 21:46:04 +00005219 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005220}
5221
Dan Gohman475871a2008-07-27 21:46:04 +00005222SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5223 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005224 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005225 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005226
5227 // noop truncate
5228 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005229 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005230 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005231 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005232 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005233 // fold (truncate (truncate x)) -> (truncate x)
5234 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005235 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005236 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005237 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5238 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005239 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005240 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005241 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005242 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5243 N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005244 if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005245 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005246 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005247 // if the source and dest are the same type, we can drop both the extend
5248 // and the truncate.
5249 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005250 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005251
Nadav Rotemcc870a82012-02-05 11:39:23 +00005252 // Fold extract-and-trunc into a narrow extract. For example:
5253 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5254 // i32 y = TRUNCATE(i64 x)
5255 // -- becomes --
5256 // v16i8 b = BITCAST (v2i64 val)
5257 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5258 //
5259 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005260 // creates this pattern) and before operation legalization after which
5261 // we need to be more careful about the vector instructions that we generate.
5262 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5263 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5264
5265 EVT VecTy = N0.getOperand(0).getValueType();
5266 EVT ExTy = N0.getValueType();
5267 EVT TrTy = N->getValueType(0);
5268
5269 unsigned NumElem = VecTy.getVectorNumElements();
5270 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5271
5272 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5273 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5274
5275 SDValue EltNo = N0->getOperand(1);
5276 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5277 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005278 EVT IndexTy = N0->getOperand(1).getValueType();
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005279 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5280
5281 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5282 NVT, N0.getOperand(0));
5283
5284 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5285 N->getDebugLoc(), TrTy, V,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005286 DAG.getConstant(Index, IndexTy));
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005287 }
5288 }
5289
Chris Lattner2b4c2792007-10-13 06:35:54 +00005290 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005291 // only the low bits are being used.
5292 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005293 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005294 // may have different active low bits.
5295 if (!VT.isVector()) {
5296 SDValue Shorter =
5297 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5298 VT.getSizeInBits()));
5299 if (Shorter.getNode())
5300 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5301 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005302 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005303 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005304 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5305 SDValue Reduced = ReduceLoadWidth(N);
5306 if (Reduced.getNode())
5307 return Reduced;
5308 }
Michael Liao07edaf32012-10-17 23:45:54 +00005309 // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)),
5310 // where ... are all 'undef'.
5311 if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) {
5312 SmallVector<EVT, 8> VTs;
5313 SDValue V;
5314 unsigned Idx = 0;
5315 unsigned NumDefs = 0;
5316
5317 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
5318 SDValue X = N0.getOperand(i);
5319 if (X.getOpcode() != ISD::UNDEF) {
5320 V = X;
5321 Idx = i;
5322 NumDefs++;
5323 }
5324 // Stop if more than one members are non-undef.
5325 if (NumDefs > 1)
5326 break;
5327 VTs.push_back(EVT::getVectorVT(*DAG.getContext(),
5328 VT.getVectorElementType(),
5329 X.getValueType().getVectorNumElements()));
5330 }
5331
5332 if (NumDefs == 0)
5333 return DAG.getUNDEF(VT);
5334
5335 if (NumDefs == 1) {
5336 assert(V.getNode() && "The single defined operand is empty!");
5337 SmallVector<SDValue, 8> Opnds;
5338 for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
5339 if (i != Idx) {
5340 Opnds.push_back(DAG.getUNDEF(VTs[i]));
5341 continue;
5342 }
5343 SDValue NV = DAG.getNode(ISD::TRUNCATE, V.getDebugLoc(), VTs[i], V);
5344 AddToWorkList(NV.getNode());
5345 Opnds.push_back(NV);
5346 }
5347 return DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
5348 &Opnds[0], Opnds.size());
5349 }
5350 }
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005351
5352 // Simplify the operands using demanded-bits information.
5353 if (!VT.isVector() &&
5354 SimplifyDemandedBits(SDValue(N, 0)))
5355 return SDValue(N, 0);
5356
Evan Chenge5b51ac2010-04-17 06:13:15 +00005357 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005358}
5359
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005360static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005361 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005362 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005363 return Elt.getNode();
5364 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005365}
5366
5367/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005368/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005369SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005370 assert(N->getOpcode() == ISD::BUILD_PAIR);
5371
Nate Begemanabc01992009-06-05 21:37:30 +00005372 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5373 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005374 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5375 LD1->getPointerInfo().getAddrSpace() !=
5376 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005377 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005378 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005379
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005380 if (ISD::isNON_EXTLoad(LD2) &&
5381 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005382 // If both are volatile this would reduce the number of volatile loads.
5383 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005384 !LD1->isVolatile() &&
5385 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005386 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005387 unsigned Align = LD1->getAlignment();
Micah Villmow3574eca2012-10-08 16:38:25 +00005388 unsigned NewAlign = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005389 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005390
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005391 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005392 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005393 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005394 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005395 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005396 }
Bill Wendling67a67682009-01-30 22:44:24 +00005397
Dan Gohman475871a2008-07-27 21:46:04 +00005398 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005399}
5400
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005401SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005402 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005403 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005404
Dan Gohman7f321562007-06-25 16:23:39 +00005405 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5406 // Only do this before legalize, since afterward the target may be depending
5407 // on the bitconvert.
5408 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005409 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005410 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005411 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005412 bool isSimple = true;
5413 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5414 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5415 N0.getOperand(i).getOpcode() != ISD::Constant &&
5416 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005417 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005418 break;
5419 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005420
Owen Andersone50ed302009-08-10 22:56:29 +00005421 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005422 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005423 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005424 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005425 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005426 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005427
Dan Gohman3dd168d2008-09-05 01:58:21 +00005428 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005429 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005430 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005431 if (Res.getNode() != N) {
5432 if (!LegalOperations ||
5433 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5434 return Res;
5435
5436 // Folding it resulted in an illegal node, and it's too late to
5437 // do that. Clean up the old node and forego the transformation.
5438 // Ideally this won't happen very often, because instcombine
5439 // and the earlier dagcombine runs (where illegal nodes are
5440 // permitted) should have folded most of them already.
5441 DAG.DeleteNode(Res.getNode());
5442 }
Chris Lattner94683772005-12-23 05:30:37 +00005443 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005444
Bill Wendling67a67682009-01-30 22:44:24 +00005445 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005446 if (N0.getOpcode() == ISD::BITCAST)
5447 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005448 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005449
Chris Lattner57104102005-12-23 05:44:41 +00005450 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005451 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005452 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005453 // Do not change the width of a volatile load.
5454 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005455 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005456 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Micah Villmow3574eca2012-10-08 16:38:25 +00005457 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005458 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005459 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005460
Evan Cheng59d5b682007-05-07 21:27:48 +00005461 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005462 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005463 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005464 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005465 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005466 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005467 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005468 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005469 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005470 Load.getValue(1));
5471 return Load;
5472 }
Chris Lattner57104102005-12-23 05:44:41 +00005473 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005474
Bill Wendling67a67682009-01-30 22:44:24 +00005475 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5476 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005477 // This often reduces constant pool loads.
Owen Anderson29f60f32012-04-02 22:10:29 +00005478 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) ||
5479 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) &&
Nadav Rotem91a7e012012-09-13 14:54:28 +00005480 N0.getNode()->hasOneUse() && VT.isInteger() &&
5481 !VT.isVector() && !N0.getValueType().isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005482 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005483 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005484 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005485
Duncan Sands83ec4b62008-06-06 12:08:01 +00005486 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005487 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005488 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5489 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005490 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005491 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5492 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005493 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005494
Bill Wendling67a67682009-01-30 22:44:24 +00005495 // fold (bitconvert (fcopysign cst, x)) ->
5496 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5497 // Note that we don't handle (copysign x, cst) because this can always be
5498 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005499 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005500 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005501 VT.isInteger() && !VT.isVector()) {
5502 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005503 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005504 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005505 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005506 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005507 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005508
Duncan Sands25cf2272008-11-24 14:53:14 +00005509 // If X has a different width than the result/lhs, sext it or truncate it.
5510 unsigned VTWidth = VT.getSizeInBits();
5511 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005512 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005513 AddToWorkList(X.getNode());
5514 } else if (OrigXWidth > VTWidth) {
5515 // To get the sign bit in the right place, we have to shift it right
5516 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005517 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005518 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005519 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5520 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005521 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005522 AddToWorkList(X.getNode());
5523 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005524
Duncan Sands25cf2272008-11-24 14:53:14 +00005525 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005526 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005527 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005528 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005529
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005530 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005531 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005532 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005533 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005534 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005535
Bill Wendling67a67682009-01-30 22:44:24 +00005536 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005537 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005538 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005539
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005540 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005541 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005542 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5543 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005544 return CombineLD;
5545 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005546
Dan Gohman475871a2008-07-27 21:46:04 +00005547 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005548}
5549
Dan Gohman475871a2008-07-27 21:46:04 +00005550SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005551 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005552 return CombineConsecutiveLoads(N, VT);
5553}
5554
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005555/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005556/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005557/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005558SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005559ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005560 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005561
Chris Lattner6258fb22006-04-02 02:53:43 +00005562 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005563 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005564
Duncan Sands83ec4b62008-06-06 12:08:01 +00005565 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5566 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005567
Chris Lattner6258fb22006-04-02 02:53:43 +00005568 // If this is a conversion of N elements of one type to N elements of another
5569 // type, convert each element. This handles FP<->INT cases.
5570 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005571 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5572 BV->getValueType(0).getVectorNumElements());
5573
5574 // Due to the FP element handling below calling this routine recursively,
5575 // we can end up with a scalar-to-vector node here.
5576 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005577 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5578 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005579 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005580
Dan Gohman475871a2008-07-27 21:46:04 +00005581 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005582 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005583 SDValue Op = BV->getOperand(i);
5584 // If the vector element type is not legal, the BUILD_VECTOR operands
5585 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005586 if (Op.getValueType() != SrcEltVT)
5587 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005588 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005589 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005590 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005591 }
Evan Chenga87008d2009-02-25 22:49:59 +00005592 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5593 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005594 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005595
Chris Lattner6258fb22006-04-02 02:53:43 +00005596 // Otherwise, we're growing or shrinking the elements. To avoid having to
5597 // handle annoying details of growing/shrinking FP values, we convert them to
5598 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005599 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005600 // Convert the input float vector to a int vector where the elements are the
5601 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005602 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005603 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005604 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005605 SrcEltVT = IntVT;
5606 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005607
Chris Lattner6258fb22006-04-02 02:53:43 +00005608 // Now we know the input is an integer vector. If the output is a FP type,
5609 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005610 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005611 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005612 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005613 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005614
Chris Lattner6258fb22006-04-02 02:53:43 +00005615 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005616 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005617 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005618
Chris Lattner6258fb22006-04-02 02:53:43 +00005619 // Okay, we know the src/dst types are both integers of differing types.
5620 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005621 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005622 if (SrcBitSize < DstBitSize) {
5623 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005624
Dan Gohman475871a2008-07-27 21:46:04 +00005625 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005626 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005627 i += NumInputsPerOutput) {
5628 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005629 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005630 bool EltIsUndef = true;
5631 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5632 // Shift the previously computed bits over.
5633 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005634 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005635 if (Op.getOpcode() == ISD::UNDEF) continue;
5636 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005637
Jay Foad40f8f622010-12-07 08:25:19 +00005638 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005639 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005640 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005641
Chris Lattner6258fb22006-04-02 02:53:43 +00005642 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005643 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005644 else
5645 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5646 }
5647
Owen Anderson23b9b192009-08-12 00:36:31 +00005648 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005649 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5650 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005651 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005652
Chris Lattner6258fb22006-04-02 02:53:43 +00005653 // Finally, this must be the case where we are shrinking elements: each input
5654 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005655 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005656 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005657 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5658 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005659 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005660
Dan Gohman7f321562007-06-25 16:23:39 +00005661 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005662 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5663 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005664 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005665 continue;
5666 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005667
Jay Foad40f8f622010-12-07 08:25:19 +00005668 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5669 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005670
Chris Lattner6258fb22006-04-02 02:53:43 +00005671 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005672 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005673 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005674 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005675 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005676 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5677 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005678 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005679 }
5680
5681 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005682 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005683 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5684 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005685
Evan Chenga87008d2009-02-25 22:49:59 +00005686 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5687 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005688}
5689
Dan Gohman475871a2008-07-27 21:46:04 +00005690SDValue DAGCombiner::visitFADD(SDNode *N) {
5691 SDValue N0 = N->getOperand(0);
5692 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005693 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5694 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005695 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005696
Dan Gohman7f321562007-06-25 16:23:39 +00005697 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005698 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005699 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005700 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005701 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005702
Lang Hames01806942012-06-14 20:37:15 +00005703 // fold (fadd c1, c2) -> c1 + c2
Ulrich Weigande669c932012-10-29 18:35:49 +00005704 if (N0CFP && N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005705 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005706 // canonicalize constant to RHS
5707 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005708 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5709 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005710 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5711 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005712 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005713 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005714 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005715 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005716 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005717 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005718 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005719 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005720 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005721 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005722 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005723
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005724 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005725 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5726 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5727 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005728 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005729 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5730 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005731
Owen Anderson43da6c72012-08-30 23:35:16 +00005732 // In unsafe math mode, we can fold chains of FADD's of the same value
5733 // into multiplications. This transform is not safe in general because
5734 // we are reducing the number of rounding steps.
5735 if (DAG.getTarget().Options.UnsafeFPMath &&
5736 TLI.isOperationLegalOrCustom(ISD::FMUL, VT) &&
5737 !N0CFP && !N1CFP) {
5738 if (N0.getOpcode() == ISD::FMUL) {
5739 ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
5740 ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
5741
5742 // (fadd (fmul c, x), x) -> (fmul c+1, x)
5743 if (CFP00 && !CFP01 && N0.getOperand(1) == N1) {
5744 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5745 SDValue(CFP00, 0),
5746 DAG.getConstantFP(1.0, VT));
5747 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5748 N1, NewCFP);
5749 }
5750
5751 // (fadd (fmul x, c), x) -> (fmul c+1, x)
5752 if (CFP01 && !CFP00 && N0.getOperand(0) == N1) {
5753 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5754 SDValue(CFP01, 0),
5755 DAG.getConstantFP(1.0, VT));
5756 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5757 N1, NewCFP);
5758 }
5759
5760 // (fadd (fadd x, x), x) -> (fmul 3.0, x)
5761 if (!CFP00 && !CFP01 && N0.getOperand(0) == N0.getOperand(1) &&
5762 N0.getOperand(0) == N1) {
5763 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5764 N1, DAG.getConstantFP(3.0, VT));
5765 }
5766
5767 // (fadd (fmul c, x), (fadd x, x)) -> (fmul c+2, x)
5768 if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD &&
5769 N1.getOperand(0) == N1.getOperand(1) &&
5770 N0.getOperand(1) == N1.getOperand(0)) {
5771 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5772 SDValue(CFP00, 0),
5773 DAG.getConstantFP(2.0, VT));
5774 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5775 N0.getOperand(1), NewCFP);
5776 }
5777
5778 // (fadd (fmul x, c), (fadd x, x)) -> (fmul c+2, x)
5779 if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD &&
5780 N1.getOperand(0) == N1.getOperand(1) &&
5781 N0.getOperand(0) == N1.getOperand(0)) {
5782 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5783 SDValue(CFP01, 0),
5784 DAG.getConstantFP(2.0, VT));
5785 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5786 N0.getOperand(0), NewCFP);
5787 }
5788 }
5789
5790 if (N1.getOpcode() == ISD::FMUL) {
5791 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
5792 ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1));
5793
5794 // (fadd x, (fmul c, x)) -> (fmul c+1, x)
5795 if (CFP10 && !CFP11 && N1.getOperand(1) == N0) {
5796 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5797 SDValue(CFP10, 0),
5798 DAG.getConstantFP(1.0, VT));
5799 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5800 N0, NewCFP);
5801 }
5802
5803 // (fadd x, (fmul x, c)) -> (fmul c+1, x)
5804 if (CFP11 && !CFP10 && N1.getOperand(0) == N0) {
5805 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5806 SDValue(CFP11, 0),
5807 DAG.getConstantFP(1.0, VT));
5808 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5809 N0, NewCFP);
5810 }
5811
5812 // (fadd x, (fadd x, x)) -> (fmul 3.0, x)
5813 if (!CFP10 && !CFP11 && N1.getOperand(0) == N1.getOperand(1) &&
5814 N1.getOperand(0) == N0) {
5815 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5816 N0, DAG.getConstantFP(3.0, VT));
5817 }
5818
5819 // (fadd (fadd x, x), (fmul c, x)) -> (fmul c+2, x)
5820 if (CFP10 && !CFP11 && N1.getOpcode() == ISD::FADD &&
5821 N1.getOperand(0) == N1.getOperand(1) &&
5822 N0.getOperand(1) == N1.getOperand(0)) {
5823 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5824 SDValue(CFP10, 0),
5825 DAG.getConstantFP(2.0, VT));
5826 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5827 N0.getOperand(1), NewCFP);
5828 }
5829
5830 // (fadd (fadd x, x), (fmul x, c)) -> (fmul c+2, x)
5831 if (CFP11 && !CFP10 && N1.getOpcode() == ISD::FADD &&
5832 N1.getOperand(0) == N1.getOperand(1) &&
5833 N0.getOperand(0) == N1.getOperand(0)) {
5834 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5835 SDValue(CFP11, 0),
5836 DAG.getConstantFP(2.0, VT));
5837 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5838 N0.getOperand(0), NewCFP);
5839 }
5840 }
5841
5842 // (fadd (fadd x, x), (fadd x, x)) -> (fmul 4.0, x)
5843 if (N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD &&
5844 N0.getOperand(0) == N0.getOperand(1) &&
5845 N1.getOperand(0) == N1.getOperand(1) &&
5846 N0.getOperand(0) == N1.getOperand(0)) {
5847 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5848 N0.getOperand(0),
5849 DAG.getConstantFP(4.0, VT));
5850 }
5851 }
5852
Lang Hamesd693caf2012-06-19 22:51:23 +00005853 // FADD -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005854 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005855 DAG.getTarget().Options.UnsafeFPMath) &&
5856 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005857 TLI.isOperationLegalOrCustom(ISD::FMA, VT)) {
Lang Hamesd693caf2012-06-19 22:51:23 +00005858
5859 // fold (fadd (fmul x, y), z) -> (fma x, y, z)
5860 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
5861 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5862 N0.getOperand(0), N0.getOperand(1), N1);
5863 }
Owen Anderson43da6c72012-08-30 23:35:16 +00005864
Michael Liaob79bff52012-09-01 04:09:16 +00005865 // fold (fadd x, (fmul y, z)) -> (fma y, z, x)
Lang Hamesd693caf2012-06-19 22:51:23 +00005866 // Note: Commutes FADD operands.
5867 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
5868 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5869 N1.getOperand(0), N1.getOperand(1), N0);
5870 }
5871 }
5872
Dan Gohman475871a2008-07-27 21:46:04 +00005873 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005874}
5875
Dan Gohman475871a2008-07-27 21:46:04 +00005876SDValue DAGCombiner::visitFSUB(SDNode *N) {
5877 SDValue N0 = N->getOperand(0);
5878 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005879 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5880 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005881 EVT VT = N->getValueType(0);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005882 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005883
Dan Gohman7f321562007-06-25 16:23:39 +00005884 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005885 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005886 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005887 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005888 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005889
Nate Begemana0e221d2005-10-18 00:28:13 +00005890 // fold (fsub c1, c2) -> c1-c2
Ulrich Weigande669c932012-10-29 18:35:49 +00005891 if (N0CFP && N1CFP)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005892 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005893 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005894 if (DAG.getTarget().Options.UnsafeFPMath &&
5895 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005896 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005897 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005898 if (DAG.getTarget().Options.UnsafeFPMath &&
5899 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005900 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005901 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005902 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005903 return DAG.getNode(ISD::FNEG, dl, VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005904 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005905 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005906 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005907 return DAG.getNode(ISD::FADD, dl, VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005908 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005909
Bill Wendling5a894342012-03-15 05:12:00 +00005910 // If 'unsafe math' is enabled, fold
Owen Anderson713e9532012-05-07 20:51:25 +00005911 // (fsub x, x) -> 0.0 &
Bill Wendling5a894342012-03-15 05:12:00 +00005912 // (fsub x, (fadd x, y)) -> (fneg y) &
5913 // (fsub x, (fadd y, x)) -> (fneg y)
5914 if (DAG.getTarget().Options.UnsafeFPMath) {
Owen Anderson713e9532012-05-07 20:51:25 +00005915 if (N0 == N1)
5916 return DAG.getConstantFP(0.0f, VT);
5917
Bill Wendling5a894342012-03-15 05:12:00 +00005918 if (N1.getOpcode() == ISD::FADD) {
5919 SDValue N10 = N1->getOperand(0);
5920 SDValue N11 = N1->getOperand(1);
5921
5922 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
5923 &DAG.getTarget().Options))
5924 return GetNegatedExpression(N11, DAG, LegalOperations);
5925 else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
5926 &DAG.getTarget().Options))
5927 return GetNegatedExpression(N10, DAG, LegalOperations);
5928 }
5929 }
5930
Lang Hamesd693caf2012-06-19 22:51:23 +00005931 // FSUB -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005932 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005933 DAG.getTarget().Options.UnsafeFPMath) &&
5934 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005935 TLI.isOperationLegalOrCustom(ISD::FMA, VT)) {
Lang Hamesd693caf2012-06-19 22:51:23 +00005936
5937 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z))
5938 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005939 return DAG.getNode(ISD::FMA, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00005940 N0.getOperand(0), N0.getOperand(1),
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005941 DAG.getNode(ISD::FNEG, dl, VT, N1));
Lang Hamesd693caf2012-06-19 22:51:23 +00005942 }
5943
5944 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x)
5945 // Note: Commutes FSUB operands.
5946 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005947 return DAG.getNode(ISD::FMA, dl, VT,
5948 DAG.getNode(ISD::FNEG, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00005949 N1.getOperand(0)),
5950 N1.getOperand(1), N0);
5951 }
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005952
5953 // fold (fsub (-(fmul, x, y)), z) -> (fma (fneg x), y, (fneg z))
5954 if (N0.getOpcode() == ISD::FNEG &&
5955 N0.getOperand(0).getOpcode() == ISD::FMUL &&
5956 N0->hasOneUse() && N0.getOperand(0).hasOneUse()) {
5957 SDValue N00 = N0.getOperand(0).getOperand(0);
5958 SDValue N01 = N0.getOperand(0).getOperand(1);
5959 return DAG.getNode(ISD::FMA, dl, VT,
5960 DAG.getNode(ISD::FNEG, dl, VT, N00), N01,
5961 DAG.getNode(ISD::FNEG, dl, VT, N1));
5962 }
Lang Hamesd693caf2012-06-19 22:51:23 +00005963 }
5964
Dan Gohman475871a2008-07-27 21:46:04 +00005965 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005966}
5967
Dan Gohman475871a2008-07-27 21:46:04 +00005968SDValue DAGCombiner::visitFMUL(SDNode *N) {
5969 SDValue N0 = N->getOperand(0);
5970 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005971 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5972 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005973 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005974 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005975
Dan Gohman7f321562007-06-25 16:23:39 +00005976 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005977 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005978 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005979 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005980 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005981
Nate Begeman11af4ea2005-10-17 20:40:11 +00005982 // fold (fmul c1, c2) -> c1*c2
Ulrich Weigande669c932012-10-29 18:35:49 +00005983 if (N0CFP && N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005984 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005985 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00005986 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005987 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5988 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005989 if (DAG.getTarget().Options.UnsafeFPMath &&
5990 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005991 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00005992 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005993 if (DAG.getTarget().Options.UnsafeFPMath &&
5994 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00005995 return N1;
Owen Anderson363e4b92012-05-02 21:32:35 +00005996 // fold (fmul A, 1.0) -> A
5997 if (N1CFP && N1CFP->isExactlyValue(1.0))
5998 return N0;
Nate Begeman11af4ea2005-10-17 20:40:11 +00005999 // fold (fmul X, 2.0) -> (fadd X, X)
6000 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006001 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00006002 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00006003 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00006004 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006005 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006006
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006007 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006008 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006009 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006010 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006011 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006012 // Both can be negated for free, check to see if at least one is cheaper
6013 // negated.
6014 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006015 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006016 GetNegatedExpression(N0, DAG, LegalOperations),
6017 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006018 }
6019 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006020
Chris Lattnerddae4bd2007-01-08 23:04:05 +00006021 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006022 if (DAG.getTarget().Options.UnsafeFPMath &&
6023 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006024 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006025 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00006026 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00006027 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006028
Dan Gohman475871a2008-07-27 21:46:04 +00006029 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006030}
6031
Owen Anderson062c0a52012-05-02 22:17:40 +00006032SDValue DAGCombiner::visitFMA(SDNode *N) {
6033 SDValue N0 = N->getOperand(0);
6034 SDValue N1 = N->getOperand(1);
6035 SDValue N2 = N->getOperand(2);
6036 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6037 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6038 EVT VT = N->getValueType(0);
Owen Anderson58d57292012-09-01 06:04:27 +00006039 DebugLoc dl = N->getDebugLoc();
Owen Anderson062c0a52012-05-02 22:17:40 +00006040
6041 if (N0CFP && N0CFP->isExactlyValue(1.0))
6042 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N2);
6043 if (N1CFP && N1CFP->isExactlyValue(1.0))
6044 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N2);
6045
Owen Anderson85ef6f42012-05-30 18:50:39 +00006046 // Canonicalize (fma c, x, y) -> (fma x, c, y)
Owen Andersonf917d202012-05-30 18:54:50 +00006047 if (N0CFP && !N1CFP)
Owen Anderson85ef6f42012-05-30 18:50:39 +00006048 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, N1, N0, N2);
6049
Owen Anderson58d57292012-09-01 06:04:27 +00006050 // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2)
6051 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6052 N2.getOpcode() == ISD::FMUL &&
6053 N0 == N2.getOperand(0) &&
6054 N2.getOperand(1).getOpcode() == ISD::ConstantFP) {
6055 return DAG.getNode(ISD::FMUL, dl, VT, N0,
6056 DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1)));
6057 }
6058
6059
6060 // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y)
6061 if (DAG.getTarget().Options.UnsafeFPMath &&
6062 N0.getOpcode() == ISD::FMUL && N1CFP &&
6063 N0.getOperand(1).getOpcode() == ISD::ConstantFP) {
6064 return DAG.getNode(ISD::FMA, dl, VT,
6065 N0.getOperand(0),
6066 DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)),
6067 N2);
6068 }
6069
6070 // (fma x, 1, y) -> (fadd x, y)
6071 // (fma x, -1, y) -> (fadd (fneg x), y)
6072 if (N1CFP) {
6073 if (N1CFP->isExactlyValue(1.0))
6074 return DAG.getNode(ISD::FADD, dl, VT, N0, N2);
6075
6076 if (N1CFP->isExactlyValue(-1.0) &&
6077 (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) {
6078 SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0);
6079 AddToWorkList(RHSNeg.getNode());
6080 return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg);
6081 }
6082 }
6083
6084 // (fma x, c, x) -> (fmul x, (c+1))
6085 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2) {
6086 return DAG.getNode(ISD::FMUL, dl, VT,
6087 N0,
6088 DAG.getNode(ISD::FADD, dl, VT,
6089 N1, DAG.getConstantFP(1.0, VT)));
6090 }
6091
6092 // (fma x, c, (fneg x)) -> (fmul x, (c-1))
6093 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6094 N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0) {
6095 return DAG.getNode(ISD::FMUL, dl, VT,
6096 N0,
6097 DAG.getNode(ISD::FADD, dl, VT,
6098 N1, DAG.getConstantFP(-1.0, VT)));
6099 }
6100
6101
Owen Anderson062c0a52012-05-02 22:17:40 +00006102 return SDValue();
6103}
6104
Dan Gohman475871a2008-07-27 21:46:04 +00006105SDValue DAGCombiner::visitFDIV(SDNode *N) {
6106 SDValue N0 = N->getOperand(0);
6107 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006108 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6109 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006110 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006111 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006112
Dan Gohman7f321562007-06-25 16:23:39 +00006113 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006114 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006115 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006116 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006117 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006118
Nate Begemana148d982006-01-18 22:35:16 +00006119 // fold (fdiv c1, c2) -> c1/c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006120 if (N0CFP && N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006121 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006122
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00006123 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
Ulrich Weigande669c932012-10-29 18:35:49 +00006124 if (N1CFP && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00006125 // Compute the reciprocal 1.0 / c2.
6126 APFloat N1APF = N1CFP->getValueAPF();
6127 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
6128 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00006129 // Only do the transform if the reciprocal is a legal fp immediate that
6130 // isn't too nasty (eg NaN, denormal, ...).
6131 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00006132 (!LegalOperations ||
6133 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
6134 // backend)... we should handle this gracefully after Legalize.
6135 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
6136 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
6137 TLI.isFPImmLegal(Recip, VT)))
Duncan Sands961d6662012-04-07 20:04:00 +00006138 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0,
6139 DAG.getConstantFP(Recip, VT));
6140 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006141
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006142 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006143 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006144 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006145 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006146 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006147 // Both can be negated for free, check to see if at least one is cheaper
6148 // negated.
6149 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00006150 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006151 GetNegatedExpression(N0, DAG, LegalOperations),
6152 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006153 }
6154 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006155
Dan Gohman475871a2008-07-27 21:46:04 +00006156 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006157}
6158
Dan Gohman475871a2008-07-27 21:46:04 +00006159SDValue DAGCombiner::visitFREM(SDNode *N) {
6160 SDValue N0 = N->getOperand(0);
6161 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006162 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6163 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006164 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00006165
Nate Begemana148d982006-01-18 22:35:16 +00006166 // fold (frem c1, c2) -> fmod(c1,c2)
Ulrich Weigande669c932012-10-29 18:35:49 +00006167 if (N0CFP && N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006168 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00006169
Dan Gohman475871a2008-07-27 21:46:04 +00006170 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006171}
6172
Dan Gohman475871a2008-07-27 21:46:04 +00006173SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
6174 SDValue N0 = N->getOperand(0);
6175 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00006176 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6177 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006178 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00006179
Ulrich Weigande669c932012-10-29 18:35:49 +00006180 if (N0CFP && N1CFP) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00006181 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006182
Chris Lattner12d83032006-03-05 05:30:57 +00006183 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00006184 const APFloat& V = N1CFP->getValueAPF();
Sylvestre Ledru94c22712012-09-27 10:14:43 +00006185 // copysign(x, c1) -> fabs(x) iff ispos(c1)
6186 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00006187 if (!V.isNegative()) {
6188 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006189 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00006190 } else {
6191 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006192 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00006193 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00006194 }
Chris Lattner12d83032006-03-05 05:30:57 +00006195 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006196
Chris Lattner12d83032006-03-05 05:30:57 +00006197 // copysign(fabs(x), y) -> copysign(x, y)
6198 // copysign(fneg(x), y) -> copysign(x, y)
6199 // copysign(copysign(x,z), y) -> copysign(x, y)
6200 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
6201 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006202 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6203 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00006204
6205 // copysign(x, abs(y)) -> abs(x)
6206 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006207 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006208
Chris Lattner12d83032006-03-05 05:30:57 +00006209 // copysign(x, copysign(y,z)) -> copysign(x, z)
6210 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006211 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6212 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006213
Chris Lattner12d83032006-03-05 05:30:57 +00006214 // copysign(x, fp_extend(y)) -> copysign(x, y)
6215 // copysign(x, fp_round(y)) -> copysign(x, y)
6216 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006217 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6218 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006219
Dan Gohman475871a2008-07-27 21:46:04 +00006220 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00006221}
6222
Dan Gohman475871a2008-07-27 21:46:04 +00006223SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
6224 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006225 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006226 EVT VT = N->getValueType(0);
6227 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00006228
Nate Begeman1d4d4142005-09-01 00:19:25 +00006229 // fold (sint_to_fp c1) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006230 if (N0C &&
Stuart Hastings7e334182011-03-02 19:36:30 +00006231 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006232 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006233 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006234 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006235
Chris Lattnercda88752008-06-26 00:16:49 +00006236 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
6237 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006238 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
6239 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006240 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006241 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006242 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006243 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006244
Nadav Rotemed1a3352012-07-23 07:59:50 +00006245 // The next optimizations are desireable only if SELECT_CC can be lowered.
6246 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6247 // having to say they don't support SELECT_CC on every type the DAG knows
6248 // about, since there is no way to mark an opcode illegal at all value types
6249 // (See also visitSELECT)
6250 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6251 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6252 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 &&
6253 !VT.isVector() &&
6254 (!LegalOperations ||
6255 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6256 SDValue Ops[] =
6257 { N0.getOperand(0), N0.getOperand(1),
6258 DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT),
6259 N0.getOperand(2) };
6260 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6261 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006262
Nadav Rotemed1a3352012-07-23 07:59:50 +00006263 // fold (sint_to_fp (zext (setcc x, y, cc))) ->
6264 // (select_cc x, y, 1.0, 0.0,, cc)
6265 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
6266 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() &&
6267 (!LegalOperations ||
6268 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6269 SDValue Ops[] =
6270 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1),
6271 DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT),
6272 N0.getOperand(0).getOperand(2) };
6273 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6274 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006275 }
6276
Dan Gohman475871a2008-07-27 21:46:04 +00006277 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006278}
6279
Dan Gohman475871a2008-07-27 21:46:04 +00006280SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
6281 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006282 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006283 EVT VT = N->getValueType(0);
6284 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00006285
Nate Begeman1d4d4142005-09-01 00:19:25 +00006286 // fold (uint_to_fp c1) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006287 if (N0C &&
Stuart Hastings7e334182011-03-02 19:36:30 +00006288 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006289 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006290 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006291 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006292
Chris Lattnercda88752008-06-26 00:16:49 +00006293 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6294 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006295 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6296 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006297 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006298 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006299 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006300 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006301
Nadav Rotemed1a3352012-07-23 07:59:50 +00006302 // The next optimizations are desireable only if SELECT_CC can be lowered.
6303 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6304 // having to say they don't support SELECT_CC on every type the DAG knows
6305 // about, since there is no way to mark an opcode illegal at all value types
6306 // (See also visitSELECT)
6307 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6308 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
Owen Andersond9bf71f2012-07-09 20:31:12 +00006309
Nadav Rotemed1a3352012-07-23 07:59:50 +00006310 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() &&
6311 (!LegalOperations ||
6312 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6313 SDValue Ops[] =
6314 { N0.getOperand(0), N0.getOperand(1),
6315 DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT),
6316 N0.getOperand(2) };
6317 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6318 }
6319 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006320
Dan Gohman475871a2008-07-27 21:46:04 +00006321 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006322}
6323
Dan Gohman475871a2008-07-27 21:46:04 +00006324SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
6325 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006326 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006327 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006328
Nate Begeman1d4d4142005-09-01 00:19:25 +00006329 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00006330 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006331 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
6332
Dan Gohman475871a2008-07-27 21:46:04 +00006333 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006334}
6335
Dan Gohman475871a2008-07-27 21:46:04 +00006336SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
6337 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006338 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006339 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006340
Nate Begeman1d4d4142005-09-01 00:19:25 +00006341 // fold (fp_to_uint c1fp) -> c1
Ulrich Weigande669c932012-10-29 18:35:49 +00006342 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006343 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
6344
Dan Gohman475871a2008-07-27 21:46:04 +00006345 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006346}
6347
Dan Gohman475871a2008-07-27 21:46:04 +00006348SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
6349 SDValue N0 = N->getOperand(0);
6350 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006351 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006352 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006353
Nate Begeman1d4d4142005-09-01 00:19:25 +00006354 // fold (fp_round c1fp) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006355 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006356 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006357
Chris Lattner79dbea52006-03-13 06:26:26 +00006358 // fold (fp_round (fp_extend x)) -> x
6359 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
6360 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006361
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006362 // fold (fp_round (fp_round x)) -> (fp_round x)
6363 if (N0.getOpcode() == ISD::FP_ROUND) {
6364 // This is a value preserving truncation if both round's are.
6365 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006366 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00006367 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006368 DAG.getIntPtrConstant(IsTrunc));
6369 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006370
Chris Lattner79dbea52006-03-13 06:26:26 +00006371 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00006372 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00006373 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
6374 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00006375 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00006376 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6377 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00006378 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006379
Dan Gohman475871a2008-07-27 21:46:04 +00006380 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006381}
6382
Dan Gohman475871a2008-07-27 21:46:04 +00006383SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6384 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006385 EVT VT = N->getValueType(0);
6386 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00006387 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006388
Nate Begeman1d4d4142005-09-01 00:19:25 +00006389 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00006390 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00006391 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006392 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006393 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006394
Dan Gohman475871a2008-07-27 21:46:04 +00006395 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006396}
6397
Dan Gohman475871a2008-07-27 21:46:04 +00006398SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6399 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006400 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006401 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006402
Chris Lattner5938bef2007-12-29 06:55:23 +00006403 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00006404 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00006405 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00006406 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006407
Nate Begeman1d4d4142005-09-01 00:19:25 +00006408 // fold (fp_extend c1fp) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006409 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006410 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006411
6412 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6413 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006414 if (N0.getOpcode() == ISD::FP_ROUND
6415 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006416 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006417 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006418 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006419 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
6420 In, N0.getOperand(1));
6421 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006422 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006423
Chris Lattner0bd48932008-01-17 07:00:52 +00006424 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006425 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006426 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006427 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006428 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00006429 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006430 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006431 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006432 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006433 LN0->isVolatile(), LN0->isNonTemporal(),
6434 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006435 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006436 CombineTo(N0.getNode(),
6437 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
6438 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006439 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006440 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006441 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006442
Dan Gohman475871a2008-07-27 21:46:04 +00006443 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006444}
6445
Dan Gohman475871a2008-07-27 21:46:04 +00006446SDValue DAGCombiner::visitFNEG(SDNode *N) {
6447 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006448 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006449
Craig Topperdd201ff2012-09-11 01:45:21 +00006450 if (VT.isVector()) {
6451 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6452 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper956342b2012-09-09 22:58:45 +00006453 }
6454
Owen Andersonafd3d562012-03-06 00:29:31 +00006455 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6456 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006457 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006458
Chris Lattner3bd39d42008-01-27 17:42:27 +00006459 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6460 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006461 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006462 !VT.isVector() &&
6463 N0.getNode()->hasOneUse() &&
6464 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006465 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006466 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006467 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006468 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
6469 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006470 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006471 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006472 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006473 }
6474 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006475
Owen Anderson58d57292012-09-01 06:04:27 +00006476 // (fneg (fmul c, x)) -> (fmul -c, x)
6477 if (N0.getOpcode() == ISD::FMUL) {
6478 ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
6479 if (CFP1) {
6480 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
6481 N0.getOperand(0),
6482 DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
6483 N0.getOperand(1)));
6484 }
6485 }
6486
Dan Gohman475871a2008-07-27 21:46:04 +00006487 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006488}
6489
Owen Anderson7c626d32012-08-13 23:32:49 +00006490SDValue DAGCombiner::visitFCEIL(SDNode *N) {
6491 SDValue N0 = N->getOperand(0);
6492 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6493 EVT VT = N->getValueType(0);
6494
6495 // fold (fceil c1) -> fceil(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006496 if (N0CFP)
Owen Anderson7c626d32012-08-13 23:32:49 +00006497 return DAG.getNode(ISD::FCEIL, N->getDebugLoc(), VT, N0);
6498
6499 return SDValue();
6500}
6501
6502SDValue DAGCombiner::visitFTRUNC(SDNode *N) {
6503 SDValue N0 = N->getOperand(0);
6504 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6505 EVT VT = N->getValueType(0);
6506
6507 // fold (ftrunc c1) -> ftrunc(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006508 if (N0CFP)
Owen Anderson7c626d32012-08-13 23:32:49 +00006509 return DAG.getNode(ISD::FTRUNC, N->getDebugLoc(), VT, N0);
6510
6511 return SDValue();
6512}
6513
6514SDValue DAGCombiner::visitFFLOOR(SDNode *N) {
6515 SDValue N0 = N->getOperand(0);
6516 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6517 EVT VT = N->getValueType(0);
6518
6519 // fold (ffloor c1) -> ffloor(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006520 if (N0CFP)
Owen Anderson7c626d32012-08-13 23:32:49 +00006521 return DAG.getNode(ISD::FFLOOR, N->getDebugLoc(), VT, N0);
6522
6523 return SDValue();
6524}
6525
Dan Gohman475871a2008-07-27 21:46:04 +00006526SDValue DAGCombiner::visitFABS(SDNode *N) {
6527 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006528 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006529 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006530
Craig Topperdd201ff2012-09-11 01:45:21 +00006531 if (VT.isVector()) {
6532 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6533 if (FoldedVOp.getNode()) return FoldedVOp;
6534 }
6535
Nate Begeman1d4d4142005-09-01 00:19:25 +00006536 // fold (fabs c1) -> fabs(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006537 if (N0CFP)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006538 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006539 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006540 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006541 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006542 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006543 // fold (fabs (fcopysign x, y)) -> (fabs x)
6544 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006545 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006546
Chris Lattner3bd39d42008-01-27 17:42:27 +00006547 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6548 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006549 if (!TLI.isFAbsFree(VT) &&
6550 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006551 N0.getOperand(0).getValueType().isInteger() &&
6552 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006553 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006554 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006555 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006556 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006557 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006558 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006559 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006560 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006561 }
6562 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006563
Dan Gohman475871a2008-07-27 21:46:04 +00006564 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006565}
6566
Dan Gohman475871a2008-07-27 21:46:04 +00006567SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6568 SDValue Chain = N->getOperand(0);
6569 SDValue N1 = N->getOperand(1);
6570 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006571
Dan Gohmane0f06c72009-11-17 00:47:23 +00006572 // If N is a constant we could fold this into a fallthrough or unconditional
6573 // branch. However that doesn't happen very often in normal code, because
6574 // Instcombine/SimplifyCFG should have handled the available opportunities.
6575 // If we did this folding here, it would be necessary to update the
6576 // MachineBasicBlock CFG, which is awkward.
6577
Nate Begeman750ac1b2006-02-01 07:19:44 +00006578 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6579 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006580 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006581 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
6582 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006583 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006584 N1.getOperand(0), N1.getOperand(1), N2);
6585 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006586
Evan Cheng2a135ae2010-10-04 22:41:01 +00006587 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6588 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6589 (N1.getOperand(0).hasOneUse() &&
6590 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6591 SDNode *Trunc = 0;
6592 if (N1.getOpcode() == ISD::TRUNCATE) {
6593 // Look pass the truncate.
6594 Trunc = N1.getNode();
6595 N1 = N1.getOperand(0);
6596 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006597
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006598 // Match this pattern so that we can generate simpler code:
6599 //
6600 // %a = ...
6601 // %b = and i32 %a, 2
6602 // %c = srl i32 %b, 1
6603 // brcond i32 %c ...
6604 //
6605 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006606 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006607 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006608 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006609 // %c = setcc eq %b, 0
6610 // brcond %c ...
6611 //
6612 // This applies only when the AND constant value has one bit set and the
6613 // SRL constant is equal to the log2 of the AND constant. The back-end is
6614 // smart enough to convert the result into a TEST/JMP sequence.
6615 SDValue Op0 = N1.getOperand(0);
6616 SDValue Op1 = N1.getOperand(1);
6617
6618 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006619 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006620 SDValue AndOp1 = Op0.getOperand(1);
6621
6622 if (AndOp1.getOpcode() == ISD::Constant) {
6623 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6624
6625 if (AndConst.isPowerOf2() &&
6626 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6627 SDValue SetCC =
6628 DAG.getSetCC(N->getDebugLoc(),
6629 TLI.getSetCCResultType(Op0.getValueType()),
6630 Op0, DAG.getConstant(0, Op0.getValueType()),
6631 ISD::SETNE);
6632
Evan Chengd40d03e2010-01-06 19:38:29 +00006633 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6634 MVT::Other, Chain, SetCC, N2);
6635 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6636 // will convert it back to (X & C1) >> C2.
6637 CombineTo(N, NewBRCond, false);
6638 // Truncate is dead.
6639 if (Trunc) {
6640 removeFromWorkList(Trunc);
6641 DAG.DeleteNode(Trunc);
6642 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006643 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006644 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006645 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006646 removeFromWorkList(N1.getNode());
6647 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006648 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006649 }
6650 }
6651 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006652
6653 if (Trunc)
6654 // Restore N1 if the above transformation doesn't match.
6655 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006656 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006657
Evan Cheng2c755ba2010-02-27 07:36:59 +00006658 // Transform br(xor(x, y)) -> br(x != y)
6659 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6660 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6661 SDNode *TheXor = N1.getNode();
6662 SDValue Op0 = TheXor->getOperand(0);
6663 SDValue Op1 = TheXor->getOperand(1);
6664 if (Op0.getOpcode() == Op1.getOpcode()) {
6665 // Avoid missing important xor optimizations.
6666 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00006667 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006668 DEBUG(dbgs() << "\nReplacing.8 ";
6669 TheXor->dump(&DAG);
6670 dbgs() << "\nWith: ";
6671 Tmp.getNode()->dump(&DAG);
6672 dbgs() << '\n');
6673 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006674 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
Evan Cheng2c755ba2010-02-27 07:36:59 +00006675 removeFromWorkList(TheXor);
6676 DAG.DeleteNode(TheXor);
6677 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6678 MVT::Other, Chain, Tmp, N2);
6679 }
6680 }
6681
6682 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6683 bool Equal = false;
6684 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6685 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6686 Op0.getOpcode() == ISD::XOR) {
6687 TheXor = Op0.getNode();
6688 Equal = true;
6689 }
6690
Evan Cheng2a135ae2010-10-04 22:41:01 +00006691 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006692 if (LegalTypes)
6693 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6694 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6695 SetCCVT,
6696 Op0, Op1,
6697 Equal ? ISD::SETEQ : ISD::SETNE);
6698 // Replace the uses of XOR with SETCC
6699 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006700 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006701 removeFromWorkList(N1.getNode());
6702 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006703 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6704 MVT::Other, Chain, SetCC, N2);
6705 }
6706 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006707
Dan Gohman475871a2008-07-27 21:46:04 +00006708 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006709}
6710
Chris Lattner3ea0b472005-10-05 06:47:48 +00006711// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6712//
Dan Gohman475871a2008-07-27 21:46:04 +00006713SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006714 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006715 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006716
Dan Gohmane0f06c72009-11-17 00:47:23 +00006717 // If N is a constant we could fold this into a fallthrough or unconditional
6718 // branch. However that doesn't happen very often in normal code, because
6719 // Instcombine/SimplifyCFG should have handled the available opportunities.
6720 // If we did this folding here, it would be necessary to update the
6721 // MachineBasicBlock CFG, which is awkward.
6722
Duncan Sands8eab8a22008-06-09 11:32:28 +00006723 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006724 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006725 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6726 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006727 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006728
Nate Begemane17daeb2005-10-05 21:43:42 +00006729 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006730 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006731 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006732 N->getOperand(0), Simp.getOperand(2),
6733 Simp.getOperand(0), Simp.getOperand(1),
6734 N->getOperand(4));
6735
Dan Gohman475871a2008-07-27 21:46:04 +00006736 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006737}
6738
Evan Chengc4b527a2012-01-13 01:37:24 +00006739/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6740/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00006741/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00006742static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6743 SelectionDAG &DAG,
6744 const TargetLowering &TLI) {
6745 EVT VT;
6746 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6747 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6748 return false;
6749 VT = Use->getValueType(0);
6750 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6751 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6752 return false;
6753 VT = ST->getValue().getValueType();
6754 } else
6755 return false;
6756
Nadav Rotemad6aedc2012-10-08 23:06:34 +00006757 AddrMode AM;
Evan Chengc4b527a2012-01-13 01:37:24 +00006758 if (N->getOpcode() == ISD::ADD) {
6759 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6760 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006761 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006762 AM.BaseOffs = Offset->getSExtValue();
6763 else
Evan Cheng03be3622012-03-06 23:33:32 +00006764 // [reg +/- reg]
6765 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006766 } else if (N->getOpcode() == ISD::SUB) {
6767 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6768 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006769 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006770 AM.BaseOffs = -Offset->getSExtValue();
6771 else
Evan Cheng03be3622012-03-06 23:33:32 +00006772 // [reg +/- reg]
6773 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006774 } else
6775 return false;
6776
6777 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6778}
6779
Duncan Sandsec87aa82008-06-15 20:12:31 +00006780/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6781/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006782/// and it has other uses besides the load / store. After the
6783/// transformation, the new indexed load / store has effectively folded
6784/// the add / subtract in and all of its other uses are redirected to the
6785/// new load / store.
6786bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006787 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006788 return false;
6789
6790 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006791 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006792 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006793 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006794 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006795 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006796 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006797 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006798 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6799 return false;
6800 Ptr = LD->getBasePtr();
6801 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006802 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006803 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006804 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006805 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6806 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6807 return false;
6808 Ptr = ST->getBasePtr();
6809 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006810 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006811 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006812 }
Chris Lattner448f2192006-11-11 00:39:41 +00006813
Chris Lattner9f1794e2006-11-11 00:56:29 +00006814 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6815 // out. There is no reason to make this a preinc/predec.
6816 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006817 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006818 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006819
Chris Lattner9f1794e2006-11-11 00:56:29 +00006820 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006821 SDValue BasePtr;
6822 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006823 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6824 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6825 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006826 // Don't create a indexed load / store with zero offset.
6827 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006828 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006829 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006830
Chris Lattner41e53fd2006-11-11 01:00:15 +00006831 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006832 // 1) The new base ptr is a frame index.
6833 // 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 +00006834 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006835 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006836 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006837 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006838
Chris Lattner41e53fd2006-11-11 01:00:15 +00006839 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6840 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006841 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006842 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006843
Chris Lattner41e53fd2006-11-11 01:00:15 +00006844 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006845 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006846 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006847 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006848 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006849 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006850
Evan Chengc843abe2007-05-24 02:35:39 +00006851 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006852 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006853
6854 // Caches for hasPredecessorHelper
6855 SmallPtrSet<const SDNode *, 32> Visited;
6856 SmallVector<const SDNode *, 16> Worklist;
6857
Gabor Greifba36cb52008-08-28 21:40:38 +00006858 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6859 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006860 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006861 if (Use == N)
6862 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006863 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006864 return false;
6865
Evan Chengc4b527a2012-01-13 01:37:24 +00006866 // If Ptr may be folded in addressing mode of other use, then it's
6867 // not profitable to do this transformation.
6868 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006869 RealUse = true;
6870 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006871
Chris Lattner9f1794e2006-11-11 00:56:29 +00006872 if (!RealUse)
6873 return false;
6874
Dan Gohman475871a2008-07-27 21:46:04 +00006875 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006876 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006877 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6878 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006879 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006880 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6881 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006882 ++PreIndexedNodes;
6883 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006884 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006885 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006886 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006887 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006888 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006889 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006890 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006891 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6892 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006893 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006894 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006895 }
6896
Chris Lattner9f1794e2006-11-11 00:56:29 +00006897 // Finally, since the node is now dead, remove it from the graph.
6898 DAG.DeleteNode(N);
6899
6900 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006901 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greifba36cb52008-08-28 21:40:38 +00006902 removeFromWorkList(Ptr.getNode());
6903 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006904
6905 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006906}
6907
Duncan Sandsec87aa82008-06-15 20:12:31 +00006908/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006909/// add / sub of the base pointer node into a post-indexed load / store.
6910/// The transformation folded the add / subtract into the new indexed
6911/// load / store effectively and all of its uses are redirected to the
6912/// new load / store.
6913bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006914 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006915 return false;
6916
6917 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006918 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006919 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006920 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006921 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006922 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006923 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006924 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6925 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6926 return false;
6927 Ptr = LD->getBasePtr();
6928 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006929 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006930 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006931 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006932 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6933 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6934 return false;
6935 Ptr = ST->getBasePtr();
6936 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006937 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006938 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006939 }
Chris Lattner448f2192006-11-11 00:39:41 +00006940
Gabor Greifba36cb52008-08-28 21:40:38 +00006941 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006942 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006943
Gabor Greifba36cb52008-08-28 21:40:38 +00006944 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6945 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006946 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006947 if (Op == N ||
6948 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6949 continue;
6950
Dan Gohman475871a2008-07-27 21:46:04 +00006951 SDValue BasePtr;
6952 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006953 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6954 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00006955 // Don't create a indexed load / store with zero offset.
6956 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006957 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006958 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006959
Chris Lattner9f1794e2006-11-11 00:56:29 +00006960 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00006961 // 1) All uses are load / store ops that use it as base ptr (and
6962 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00006963 // 2) Op must be independent of N, i.e. Op is neither a predecessor
6964 // nor a successor of N. Otherwise, if Op is folded that would
6965 // create a cycle.
6966
Evan Chengcaab1292009-05-06 18:25:01 +00006967 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6968 continue;
6969
Chris Lattner9f1794e2006-11-11 00:56:29 +00006970 // Check for #1.
6971 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006972 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6973 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00006974 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00006975 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00006976 continue;
6977
Chris Lattner9f1794e2006-11-11 00:56:29 +00006978 // If all the uses are load / store addresses, then don't do the
6979 // transformation.
6980 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6981 bool RealUse = false;
6982 for (SDNode::use_iterator III = Use->use_begin(),
6983 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00006984 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00006985 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006986 RealUse = true;
6987 }
Chris Lattner448f2192006-11-11 00:39:41 +00006988
Chris Lattner9f1794e2006-11-11 00:56:29 +00006989 if (!RealUse) {
6990 TryNext = true;
6991 break;
Chris Lattner448f2192006-11-11 00:39:41 +00006992 }
6993 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006994 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006995
Chris Lattner9f1794e2006-11-11 00:56:29 +00006996 if (TryNext)
6997 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006998
Chris Lattner9f1794e2006-11-11 00:56:29 +00006999 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00007000 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00007001 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00007002 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
7003 BasePtr, Offset, AM)
7004 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
7005 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007006 ++PostIndexedNodes;
7007 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00007008 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007009 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007010 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007011 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007012 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007013 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007014 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007015 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7016 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007017 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007018 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner448f2192006-11-11 00:39:41 +00007019 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007020
Chris Lattner9f1794e2006-11-11 00:56:29 +00007021 // Finally, since the node is now dead, remove it from the graph.
7022 DAG.DeleteNode(N);
7023
7024 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00007025 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007026 Result.getValue(isLoad ? 1 : 0));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007027 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007028 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007029 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00007030 }
7031 }
7032 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007033
Chris Lattner448f2192006-11-11 00:39:41 +00007034 return false;
7035}
7036
Dan Gohman475871a2008-07-27 21:46:04 +00007037SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00007038 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007039 SDValue Chain = LD->getChain();
7040 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007041
Evan Cheng45a7ca92007-05-01 00:38:21 +00007042 // If load is not volatile and there are no uses of the loaded value (and
7043 // the updated indexed value in case of indexed loads), change uses of the
7044 // chain value into uses of the chain input (i.e. delete the dead load).
7045 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007046 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00007047 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00007048 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00007049 // It's not safe to use the two value CombineTo variant here. e.g.
7050 // v1, chain2 = load chain1, loc
7051 // v2, chain3 = load chain2, loc
7052 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00007053 // Now we replace use of chain2 with chain1. This makes the second load
7054 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00007055 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007056 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007057 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007058 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007059 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007060 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007061 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendlingc0debad2009-01-30 23:27:35 +00007062
Chris Lattner125991a2008-01-24 07:57:06 +00007063 if (N->use_empty()) {
7064 removeFromWorkList(N);
7065 DAG.DeleteNode(N);
7066 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007067
Dan Gohman475871a2008-07-27 21:46:04 +00007068 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00007069 }
Evan Cheng498f5592007-05-01 08:53:39 +00007070 } else {
7071 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00007072 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00007073 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007074 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00007075 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007076 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007077 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007078 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007079 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007080 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007081 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman475871a2008-07-27 21:46:04 +00007082 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007083 DAG.getUNDEF(N->getValueType(1)));
7084 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng02c42852008-01-16 23:11:54 +00007085 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00007086 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007087 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00007088 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00007089 }
7090 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007091
Chris Lattner01a22022005-10-10 22:04:48 +00007092 // If this load is directly stored, replace the load value with the stored
7093 // value.
7094 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007095 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00007096 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007097 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007098 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
7099 if (PrevST->getBasePtr() == Ptr &&
7100 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007101 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00007102 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007103 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007104
Evan Cheng255f20f2010-04-01 06:04:33 +00007105 // Try to infer better alignment information than the load already has.
7106 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007107 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7108 if (Align > LD->getAlignment())
7109 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
7110 LD->getValueType(0),
7111 Chain, Ptr, LD->getPointerInfo(),
7112 LD->getMemoryVT(),
7113 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007114 }
7115 }
7116
Jim Laskey7ca56af2006-10-11 13:47:09 +00007117 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007118 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007119 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007120
Jim Laskey6ff23e52006-10-04 16:53:27 +00007121 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007122 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007123 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007124
Jim Laskey279f0532006-09-25 16:29:54 +00007125 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007126 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00007127 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00007128 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007129 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007130 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007131 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00007132 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
7133 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00007134 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007135 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007136 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007137 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00007138 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007139 }
Jim Laskey279f0532006-09-25 16:29:54 +00007140
Jim Laskey6ff23e52006-10-04 16:53:27 +00007141 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00007142 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007143 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007144
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007145 // Make sure the new and old chains are cleaned up.
7146 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007147
Jim Laskey274062c2006-10-13 23:32:28 +00007148 // Replace uses with load result and token factor. Don't add users
7149 // to work list.
7150 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007151 }
7152 }
7153
Evan Cheng7fc033a2006-11-03 03:06:21 +00007154 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007155 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007156 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00007157
Dan Gohman475871a2008-07-27 21:46:04 +00007158 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00007159}
7160
Chris Lattner2392ae72010-04-15 04:48:01 +00007161/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
7162/// load is having specific bytes cleared out. If so, return the byte size
7163/// being masked out and the shift amount.
7164static std::pair<unsigned, unsigned>
7165CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
7166 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007167
Chris Lattner2392ae72010-04-15 04:48:01 +00007168 // Check for the structure we're looking for.
7169 if (V->getOpcode() != ISD::AND ||
7170 !isa<ConstantSDNode>(V->getOperand(1)) ||
7171 !ISD::isNormalLoad(V->getOperand(0).getNode()))
7172 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007173
Chris Lattnere6987582010-04-15 06:10:49 +00007174 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00007175 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00007176 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007177
Chris Lattnere6987582010-04-15 06:10:49 +00007178 // The store should be chained directly to the load or be an operand of a
7179 // tokenfactor.
7180 if (LD == Chain.getNode())
7181 ; // ok.
7182 else if (Chain->getOpcode() != ISD::TokenFactor)
7183 return Result; // Fail.
7184 else {
7185 bool isOk = false;
7186 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
7187 if (Chain->getOperand(i).getNode() == LD) {
7188 isOk = true;
7189 break;
7190 }
7191 if (!isOk) return Result;
7192 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007193
Chris Lattner2392ae72010-04-15 04:48:01 +00007194 // This only handles simple types.
7195 if (V.getValueType() != MVT::i16 &&
7196 V.getValueType() != MVT::i32 &&
7197 V.getValueType() != MVT::i64)
7198 return Result;
7199
7200 // Check the constant mask. Invert it so that the bits being masked out are
7201 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
7202 // follow the sign bit for uniformity.
7203 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
7204 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
7205 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
7206 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
7207 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
7208 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007209
Chris Lattner2392ae72010-04-15 04:48:01 +00007210 // See if we have a continuous run of bits. If so, we have 0*1+0*
7211 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
7212 return Result;
7213
7214 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
7215 if (V.getValueType() != MVT::i64 && NotMaskLZ)
7216 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007217
Chris Lattner2392ae72010-04-15 04:48:01 +00007218 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
7219 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007220 case 1:
7221 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00007222 case 4: break;
7223 default: return Result; // All one mask, or 5-byte mask.
7224 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007225
Chris Lattner2392ae72010-04-15 04:48:01 +00007226 // Verify that the first bit starts at a multiple of mask so that the access
7227 // is aligned the same as the access width.
7228 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007229
Chris Lattner2392ae72010-04-15 04:48:01 +00007230 Result.first = MaskedBytes;
7231 Result.second = NotMaskTZ/8;
7232 return Result;
7233}
7234
7235
7236/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
7237/// provides a value as specified by MaskInfo. If so, replace the specified
7238/// store with a narrower store of truncated IVal.
7239static SDNode *
7240ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
7241 SDValue IVal, StoreSDNode *St,
7242 DAGCombiner *DC) {
7243 unsigned NumBytes = MaskInfo.first;
7244 unsigned ByteShift = MaskInfo.second;
7245 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007246
Chris Lattner2392ae72010-04-15 04:48:01 +00007247 // Check to see if IVal is all zeros in the part being masked in by the 'or'
7248 // that uses this. If not, this is not a replacement.
7249 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
7250 ByteShift*8, (ByteShift+NumBytes)*8);
7251 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007252
Chris Lattner2392ae72010-04-15 04:48:01 +00007253 // Check that it is legal on the target to do this. It is legal if the new
7254 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
7255 // legalization.
7256 MVT VT = MVT::getIntegerVT(NumBytes*8);
7257 if (!DC->isTypeLegal(VT))
7258 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007259
Chris Lattner2392ae72010-04-15 04:48:01 +00007260 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
7261 // shifted by ByteShift and truncated down to NumBytes.
7262 if (ByteShift)
7263 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00007264 DAG.getConstant(ByteShift*8,
7265 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00007266
7267 // Figure out the offset for the store and the alignment of the access.
7268 unsigned StOffset;
7269 unsigned NewAlign = St->getAlignment();
7270
7271 if (DAG.getTargetLoweringInfo().isLittleEndian())
7272 StOffset = ByteShift;
7273 else
7274 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007275
Chris Lattner2392ae72010-04-15 04:48:01 +00007276 SDValue Ptr = St->getBasePtr();
7277 if (StOffset) {
7278 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
7279 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
7280 NewAlign = MinAlign(NewAlign, StOffset);
7281 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007282
Chris Lattner2392ae72010-04-15 04:48:01 +00007283 // Truncate down to the new size.
7284 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007285
Chris Lattner2392ae72010-04-15 04:48:01 +00007286 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007287 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007288 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00007289 false, false, NewAlign).getNode();
7290}
7291
Evan Cheng8b944d32009-05-28 00:35:15 +00007292
7293/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
7294/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
7295/// of the loaded bits, try narrowing the load and store if it would end up
7296/// being a win for performance or code size.
7297SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
7298 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00007299 if (ST->isVolatile())
7300 return SDValue();
7301
Evan Cheng8b944d32009-05-28 00:35:15 +00007302 SDValue Chain = ST->getChain();
7303 SDValue Value = ST->getValue();
7304 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00007305 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00007306
7307 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00007308 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007309
7310 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007311
Chris Lattner2392ae72010-04-15 04:48:01 +00007312 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
7313 // is a byte mask indicating a consecutive number of bytes, check to see if
7314 // Y is known to provide just those bytes. If so, we try to replace the
7315 // load + replace + store sequence with a single (narrower) store, which makes
7316 // the load dead.
7317 if (Opc == ISD::OR) {
7318 std::pair<unsigned, unsigned> MaskedLoad;
7319 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
7320 if (MaskedLoad.first)
7321 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7322 Value.getOperand(1), ST,this))
7323 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007324
Chris Lattner2392ae72010-04-15 04:48:01 +00007325 // Or is commutative, so try swapping X and Y.
7326 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
7327 if (MaskedLoad.first)
7328 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7329 Value.getOperand(0), ST,this))
7330 return SDValue(NewST, 0);
7331 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007332
Evan Cheng8b944d32009-05-28 00:35:15 +00007333 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
7334 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00007335 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007336
7337 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00007338 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
7339 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00007340 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00007341 if (LD->getBasePtr() != Ptr ||
7342 LD->getPointerInfo().getAddrSpace() !=
7343 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00007344 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007345
7346 // Find the type to narrow it the load / op / store to.
7347 SDValue N1 = Value.getOperand(1);
7348 unsigned BitWidth = N1.getValueSizeInBits();
7349 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
7350 if (Opc == ISD::AND)
7351 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00007352 if (Imm == 0 || Imm.isAllOnesValue())
7353 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007354 unsigned ShAmt = Imm.countTrailingZeros();
7355 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
7356 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00007357 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007358 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00007359 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00007360 TLI.isNarrowingProfitable(VT, NewVT))) {
7361 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00007362 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007363 }
Evan Chengcdcecc02009-05-28 18:41:02 +00007364 if (NewBW >= BitWidth)
7365 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007366
7367 // If the lsb changed does not start at the type bitwidth boundary,
7368 // start at the previous one.
7369 if (ShAmt % NewBW)
7370 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
7371 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
7372 if ((Imm & Mask) == Imm) {
7373 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
7374 if (Opc == ISD::AND)
7375 NewImm ^= APInt::getAllOnesValue(NewBW);
7376 uint64_t PtrOff = ShAmt / 8;
7377 // For big endian targets, we need to adjust the offset to the pointer to
7378 // load the correct bytes.
7379 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00007380 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00007381
7382 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007383 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007384 if (NewAlign < TLI.getDataLayout()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00007385 return SDValue();
7386
Evan Cheng8b944d32009-05-28 00:35:15 +00007387 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
7388 Ptr.getValueType(), Ptr,
7389 DAG.getConstant(PtrOff, Ptr.getValueType()));
7390 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
7391 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007392 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007393 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007394 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007395 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
7396 DAG.getConstant(NewImm, NewVT));
7397 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
7398 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007399 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007400 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007401
7402 AddToWorkList(NewPtr.getNode());
7403 AddToWorkList(NewLD.getNode());
7404 AddToWorkList(NewVal.getNode());
7405 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007406 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Cheng8b944d32009-05-28 00:35:15 +00007407 ++OpsNarrowed;
7408 return NewST;
7409 }
7410 }
7411
Evan Chengcdcecc02009-05-28 18:41:02 +00007412 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007413}
7414
Evan Cheng31959b12011-02-02 01:06:55 +00007415/// TransformFPLoadStorePair - For a given floating point load / store pair,
7416/// if the load value isn't used by any other operations, then consider
7417/// transforming the pair to integer load / store operations if the target
7418/// deems the transformation profitable.
7419SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
7420 StoreSDNode *ST = cast<StoreSDNode>(N);
7421 SDValue Chain = ST->getChain();
7422 SDValue Value = ST->getValue();
7423 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
7424 Value.hasOneUse() &&
7425 Chain == SDValue(Value.getNode(), 1)) {
7426 LoadSDNode *LD = cast<LoadSDNode>(Value);
7427 EVT VT = LD->getMemoryVT();
7428 if (!VT.isFloatingPoint() ||
7429 VT != ST->getMemoryVT() ||
7430 LD->isNonTemporal() ||
7431 ST->isNonTemporal() ||
7432 LD->getPointerInfo().getAddrSpace() != 0 ||
7433 ST->getPointerInfo().getAddrSpace() != 0)
7434 return SDValue();
7435
7436 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
7437 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
7438 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
7439 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
7440 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
7441 return SDValue();
7442
7443 unsigned LDAlign = LD->getAlignment();
7444 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007445 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007446 unsigned ABIAlign = TLI.getDataLayout()->getABITypeAlignment(IntVTTy);
Evan Cheng31959b12011-02-02 01:06:55 +00007447 if (LDAlign < ABIAlign || STAlign < ABIAlign)
7448 return SDValue();
7449
7450 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
7451 LD->getChain(), LD->getBasePtr(),
7452 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007453 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00007454
7455 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
7456 NewLD, ST->getBasePtr(),
7457 ST->getPointerInfo(),
7458 false, false, STAlign);
7459
7460 AddToWorkList(NewLD.getNode());
7461 AddToWorkList(NewST.getNode());
7462 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007463 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Cheng31959b12011-02-02 01:06:55 +00007464 ++LdStFP2Int;
7465 return NewST;
7466 }
7467
7468 return SDValue();
7469}
7470
Nadav Rotemc653de62012-10-03 16:11:15 +00007471/// Returns the base pointer and an integer offset from that object.
7472static std::pair<SDValue, int64_t> GetPointerBaseAndOffset(SDValue Ptr) {
7473 if (Ptr->getOpcode() == ISD::ADD && isa<ConstantSDNode>(Ptr->getOperand(1))) {
7474 int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue();
7475 SDValue Base = Ptr->getOperand(0);
7476 return std::make_pair(Base, Offset);
7477 }
7478
7479 return std::make_pair(Ptr, 0);
7480}
7481
7482/// Holds a pointer to an LSBaseSDNode as well as information on where it
7483/// is located in a sequence of memory operations connected by a chain.
7484struct MemOpLink {
7485 MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq):
7486 MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { }
7487 // Ptr to the mem node.
7488 LSBaseSDNode *MemNode;
7489 // Offset from the base ptr.
7490 int64_t OffsetFromBase;
7491 // What is the sequence number of this mem node.
7492 // Lowest mem operand in the DAG starts at zero.
7493 unsigned SequenceNum;
7494};
7495
7496/// Sorts store nodes in a link according to their offset from a shared
7497// base ptr.
7498struct ConsecutiveMemoryChainSorter {
7499 bool operator()(MemOpLink LHS, MemOpLink RHS) {
7500 return LHS.OffsetFromBase < RHS.OffsetFromBase;
7501 }
7502};
7503
7504bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) {
7505 EVT MemVT = St->getMemoryVT();
7506 int64_t ElementSizeBytes = MemVT.getSizeInBits()/8;
7507
7508 // Don't merge vectors into wider inputs.
7509 if (MemVT.isVector() || !MemVT.isSimple())
7510 return false;
7511
7512 // Perform an early exit check. Do not bother looking at stored values that
7513 // are not constants or loads.
7514 SDValue StoredVal = St->getValue();
7515 bool IsLoadSrc = isa<LoadSDNode>(StoredVal);
7516 if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) &&
7517 !IsLoadSrc)
7518 return false;
7519
7520 // Only look at ends of store sequences.
7521 SDValue Chain = SDValue(St, 1);
7522 if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE)
7523 return false;
7524
7525 // This holds the base pointer and the offset in bytes from the base pointer.
7526 std::pair<SDValue, int64_t> BasePtr =
7527 GetPointerBaseAndOffset(St->getBasePtr());
7528
7529 // We must have a base and an offset.
7530 if (!BasePtr.first.getNode())
7531 return false;
7532
7533 // Do not handle stores to undef base pointers.
7534 if (BasePtr.first.getOpcode() == ISD::UNDEF)
7535 return false;
7536
7537 SmallVector<MemOpLink, 8> StoreNodes;
7538 // Walk up the chain and look for nodes with offsets from the same
7539 // base pointer. Stop when reaching an instruction with a different kind
7540 // or instruction which has a different base pointer.
7541 unsigned Seq = 0;
7542 StoreSDNode *Index = St;
7543 while (Index) {
7544 // If the chain has more than one use, then we can't reorder the mem ops.
7545 if (Index != St && !SDValue(Index, 1)->hasOneUse())
7546 break;
7547
7548 // Find the base pointer and offset for this memory node.
7549 std::pair<SDValue, int64_t> Ptr =
7550 GetPointerBaseAndOffset(Index->getBasePtr());
7551
7552 // Check that the base pointer is the same as the original one.
7553 if (Ptr.first.getNode() != BasePtr.first.getNode())
7554 break;
7555
7556 // Check that the alignment is the same.
7557 if (Index->getAlignment() != St->getAlignment())
7558 break;
7559
7560 // The memory operands must not be volatile.
7561 if (Index->isVolatile() || Index->isIndexed())
7562 break;
7563
7564 // No truncation.
7565 if (StoreSDNode *St = dyn_cast<StoreSDNode>(Index))
7566 if (St->isTruncatingStore())
7567 break;
7568
7569 // The stored memory type must be the same.
7570 if (Index->getMemoryVT() != MemVT)
7571 break;
7572
7573 // We do not allow unaligned stores because we want to prevent overriding
7574 // stores.
7575 if (Index->getAlignment()*8 != MemVT.getSizeInBits())
7576 break;
7577
7578 // We found a potential memory operand to merge.
7579 StoreNodes.push_back(MemOpLink(Index, Ptr.second, Seq++));
7580
7581 // Move up the chain to the next memory operation.
7582 Index = dyn_cast<StoreSDNode>(Index->getChain().getNode());
7583 }
7584
7585 // Check if there is anything to merge.
7586 if (StoreNodes.size() < 2)
7587 return false;
7588
7589 // Sort the memory operands according to their distance from the base pointer.
7590 std::sort(StoreNodes.begin(), StoreNodes.end(),
7591 ConsecutiveMemoryChainSorter());
7592
7593 // Scan the memory operations on the chain and find the first non-consecutive
7594 // store memory address.
7595 unsigned LastConsecutiveStore = 0;
7596 int64_t StartAddress = StoreNodes[0].OffsetFromBase;
7597 for (unsigned i=1; i<StoreNodes.size(); ++i) {
7598 int64_t CurrAddress = StoreNodes[i].OffsetFromBase;
7599 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
7600 break;
7601
7602 // Mark this node as useful.
7603 LastConsecutiveStore = i;
7604 }
7605
7606 // The node with the lowest store address.
7607 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode;
7608
7609 // Store the constants into memory as one consecutive store.
7610 if (!IsLoadSrc) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007611 unsigned LastLegalType = 0;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007612 unsigned LastLegalVectorType = 0;
7613 bool NonZero = false;
Nadav Rotemc653de62012-10-03 16:11:15 +00007614 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
7615 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7616 SDValue StoredVal = St->getValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007617
7618 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00007619 NonZero |= !C->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007620 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00007621 NonZero |= !C->getConstantFPValue()->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007622 } else {
7623 // Non constant.
Nadav Rotemc653de62012-10-03 16:11:15 +00007624 break;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007625 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007626
Nadav Rotemc653de62012-10-03 16:11:15 +00007627 // Find a legal type for the constant store.
7628 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
7629 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7630 if (TLI.isTypeLegal(StoreTy))
7631 LastLegalType = i+1;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007632
7633 // Find a legal type for the vector store.
7634 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
7635 if (TLI.isTypeLegal(Ty))
7636 LastLegalVectorType = i + 1;
Nadav Rotemc653de62012-10-03 16:11:15 +00007637 }
7638
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007639 // We only use vectors if the constant is known to be zero.
7640 if (NonZero)
7641 LastLegalVectorType = 0;
7642
Nadav Rotemc653de62012-10-03 16:11:15 +00007643 // Check if we found a legal integer type to store.
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007644 if (LastLegalType == 0 && LastLegalVectorType == 0)
Nadav Rotemc653de62012-10-03 16:11:15 +00007645 return false;
7646
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007647 bool UseVector = LastLegalVectorType > LastLegalType;
7648 unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType;
7649
7650 // Make sure we have something to merge.
7651 if (NumElem < 2)
7652 return false;
Nadav Rotemc653de62012-10-03 16:11:15 +00007653
7654 unsigned EarliestNodeUsed = 0;
7655 for (unsigned i=0; i < NumElem; ++i) {
7656 // Find a chain for the new wide-store operand. Notice that some
7657 // of the store nodes that we found may not be selected for inclusion
7658 // in the wide store. The chain we use needs to be the chain of the
7659 // earliest store node which is *used* and replaced by the wide store.
7660 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
7661 EarliestNodeUsed = i;
7662 }
7663
7664 // The earliest Node in the DAG.
7665 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
Nadav Rotemc653de62012-10-03 16:11:15 +00007666 DebugLoc DL = StoreNodes[0].MemNode->getDebugLoc();
Nadav Rotemc653de62012-10-03 16:11:15 +00007667
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007668 SDValue StoredVal;
7669 if (UseVector) {
7670 // Find a legal type for the vector store.
7671 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
7672 assert(TLI.isTypeLegal(Ty) && "Illegal vector store");
7673 StoredVal = DAG.getConstant(0, Ty);
7674 } else {
7675 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
7676 APInt StoreInt(StoreBW, 0);
7677
7678 // Construct a single integer constant which is made of the smaller
7679 // constant inputs.
7680 bool IsLE = TLI.isLittleEndian();
7681 for (unsigned i = 0; i < NumElem ; ++i) {
7682 unsigned Idx = IsLE ?(NumElem - 1 - i) : i;
7683 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode);
7684 SDValue Val = St->getValue();
7685 StoreInt<<=ElementSizeBytes*8;
7686 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) {
7687 StoreInt|=C->getAPIntValue().zext(StoreBW);
7688 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) {
7689 StoreInt|= C->getValueAPF().bitcastToAPInt().zext(StoreBW);
7690 } else {
7691 assert(false && "Invalid constant element type");
7692 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007693 }
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007694
7695 // Create the new Load and Store operations.
7696 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7697 StoredVal = DAG.getConstant(StoreInt, StoreTy);
Nadav Rotemc653de62012-10-03 16:11:15 +00007698 }
7699
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007700 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), DL, StoredVal,
Nadav Rotemc653de62012-10-03 16:11:15 +00007701 FirstInChain->getBasePtr(),
7702 FirstInChain->getPointerInfo(),
7703 false, false,
7704 FirstInChain->getAlignment());
7705
7706 // Replace the first store with the new store
7707 CombineTo(EarliestOp, NewStore);
7708 // Erase all other stores.
7709 for (unsigned i = 0; i < NumElem ; ++i) {
7710 if (StoreNodes[i].MemNode == EarliestOp)
7711 continue;
7712 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7713 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
7714 removeFromWorkList(St);
7715 DAG.DeleteNode(St);
7716 }
7717
7718 return true;
7719 }
7720
7721 // Below we handle the case of multiple consecutive stores that
7722 // come from multiple consecutive loads. We merge them into a single
7723 // wide load and a single wide store.
7724
7725 // Look for load nodes which are used by the stored values.
7726 SmallVector<MemOpLink, 8> LoadNodes;
7727
7728 // Find acceptable loads. Loads need to have the same chain (token factor),
7729 // must not be zext, volatile, indexed, and they must be consecutive.
7730 SDValue LdBasePtr;
7731 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
7732 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7733 LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue());
7734 if (!Ld) break;
7735
7736 // Loads must only have one use.
7737 if (!Ld->hasNUsesOfValue(1, 0))
7738 break;
7739
7740 // Check that the alignment is the same as the stores.
7741 if (Ld->getAlignment() != St->getAlignment())
7742 break;
7743
7744 // The memory operands must not be volatile.
7745 if (Ld->isVolatile() || Ld->isIndexed())
7746 break;
7747
7748 // We do not accept ext loads.
7749 if (Ld->getExtensionType() != ISD::NON_EXTLOAD)
7750 break;
7751
7752 // The stored memory type must be the same.
7753 if (Ld->getMemoryVT() != MemVT)
7754 break;
7755
7756 std::pair<SDValue, int64_t> LdPtr =
7757 GetPointerBaseAndOffset(Ld->getBasePtr());
7758
7759 // If this is not the first ptr that we check.
7760 if (LdBasePtr.getNode()) {
7761 // The base ptr must be the same.
7762 if (LdPtr.first != LdBasePtr)
7763 break;
7764 } else {
7765 // Check that all other base pointers are the same as this one.
7766 LdBasePtr = LdPtr.first;
7767 }
7768
7769 // We found a potential memory operand to merge.
7770 LoadNodes.push_back(MemOpLink(Ld, LdPtr.second, 0));
7771 }
7772
7773 if (LoadNodes.size() < 2)
7774 return false;
7775
7776 // Scan the memory operations on the chain and find the first non-consecutive
7777 // load memory address. These variables hold the index in the store node
7778 // array.
7779 unsigned LastConsecutiveLoad = 0;
7780 // This variable refers to the size and not index in the array.
7781 unsigned LastLegalVectorType = 0;
7782 unsigned LastLegalIntegerType = 0;
7783 StartAddress = LoadNodes[0].OffsetFromBase;
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007784 SDValue FirstChain = LoadNodes[0].MemNode->getChain();
7785 for (unsigned i = 1; i < LoadNodes.size(); ++i) {
7786 // All loads much share the same chain.
7787 if (LoadNodes[i].MemNode->getChain() != FirstChain)
7788 break;
7789
Nadav Rotemc653de62012-10-03 16:11:15 +00007790 int64_t CurrAddress = LoadNodes[i].OffsetFromBase;
7791 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
7792 break;
7793 LastConsecutiveLoad = i;
7794
7795 // Find a legal type for the vector store.
7796 EVT StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
7797 if (TLI.isTypeLegal(StoreTy))
7798 LastLegalVectorType = i + 1;
7799
7800 // Find a legal type for the integer store.
7801 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
7802 StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7803 if (TLI.isTypeLegal(StoreTy))
7804 LastLegalIntegerType = i + 1;
7805 }
7806
7807 // Only use vector types if the vector type is larger than the integer type.
7808 // If they are the same, use integers.
7809 bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType;
7810 unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType);
7811
7812 // We add +1 here because the LastXXX variables refer to location while
7813 // the NumElem refers to array/index size.
7814 unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1;
7815 NumElem = std::min(LastLegalType, NumElem);
7816
7817 if (NumElem < 2)
7818 return false;
7819
7820 // The earliest Node in the DAG.
7821 unsigned EarliestNodeUsed = 0;
7822 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
7823 for (unsigned i=1; i<NumElem; ++i) {
7824 // Find a chain for the new wide-store operand. Notice that some
7825 // of the store nodes that we found may not be selected for inclusion
7826 // in the wide store. The chain we use needs to be the chain of the
7827 // earliest store node which is *used* and replaced by the wide store.
7828 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
7829 EarliestNodeUsed = i;
7830 }
7831
7832 // Find if it is better to use vectors or integers to load and store
7833 // to memory.
7834 EVT JointMemOpVT;
7835 if (UseVectorTy) {
7836 JointMemOpVT = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
7837 } else {
7838 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
7839 JointMemOpVT = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7840 }
7841
7842 DebugLoc LoadDL = LoadNodes[0].MemNode->getDebugLoc();
7843 DebugLoc StoreDL = StoreNodes[0].MemNode->getDebugLoc();
7844
7845 LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode);
7846 SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL,
7847 FirstLoad->getChain(),
7848 FirstLoad->getBasePtr(),
7849 FirstLoad->getPointerInfo(),
7850 false, false, false,
7851 FirstLoad->getAlignment());
7852
7853 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), StoreDL, NewLoad,
7854 FirstInChain->getBasePtr(),
7855 FirstInChain->getPointerInfo(), false, false,
7856 FirstInChain->getAlignment());
7857
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007858 // Replace one of the loads with the new load.
7859 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode);
7860 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1),
7861 SDValue(NewLoad.getNode(), 1));
7862
7863 // Remove the rest of the load chains.
7864 for (unsigned i = 1; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007865 // Replace all chain users of the old load nodes with the chain of the new
7866 // load node.
7867 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode);
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007868 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain());
7869 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007870
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007871 // Replace the first store with the new store.
7872 CombineTo(EarliestOp, NewStore);
7873 // Erase all other stores.
7874 for (unsigned i = 0; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007875 // Remove all Store nodes.
7876 if (StoreNodes[i].MemNode == EarliestOp)
7877 continue;
7878 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7879 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
7880 removeFromWorkList(St);
7881 DAG.DeleteNode(St);
7882 }
7883
7884 return true;
7885}
7886
Dan Gohman475871a2008-07-27 21:46:04 +00007887SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007888 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007889 SDValue Chain = ST->getChain();
7890 SDValue Value = ST->getValue();
7891 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007892
Evan Cheng59d5b682007-05-07 21:27:48 +00007893 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00007894 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007895 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007896 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00007897 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00007898 EVT SVT = Value.getOperand(0).getValueType();
Micah Villmow3574eca2012-10-08 16:38:25 +00007899 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00007900 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007901 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00007902 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007903 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00007904 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00007905 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007906 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00007907 }
Owen Andersona34d9362011-04-14 17:30:49 +00007908
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007909 // Turn 'store undef, Ptr' -> nothing.
7910 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
7911 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007912
Nate Begeman2cbba892006-12-11 02:23:46 +00007913 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00007914 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007915 // NOTE: If the original store is volatile, this transform must not increase
7916 // the number of stores. For example, on x86-32 an f64 can be stored in one
7917 // processor operation but an i64 (which is not legal) requires two. So the
7918 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00007919 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00007920 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00007921 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007922 default: llvm_unreachable("Unknown FP type");
Pete Cooper438c0402012-06-21 18:00:39 +00007923 case MVT::f16: // We don't do this for these yet.
7924 case MVT::f80:
Owen Anderson825b72b2009-08-11 20:47:22 +00007925 case MVT::f128:
7926 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00007927 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007928 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00007929 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007930 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00007931 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00007932 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00007933 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007934 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007935 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00007936 }
7937 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007938 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00007939 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007940 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007941 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00007942 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00007943 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00007944 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007945 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007946 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007947 }
Owen Andersona34d9362011-04-14 17:30:49 +00007948
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007949 if (!ST->isVolatile() &&
7950 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00007951 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00007952 // argument passing. Since this is so common, custom legalize the
7953 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00007954 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007955 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
7956 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00007957 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00007958
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007959 unsigned Alignment = ST->getAlignment();
7960 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00007961 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007962
Bill Wendlingc144a572009-01-30 23:36:47 +00007963 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007964 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007965 isVolatile, isNonTemporal,
7966 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00007967 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00007968 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00007969 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00007970 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007971 Ptr, ST->getPointerInfo().getWithOffset(4),
7972 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00007973 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00007974 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00007975 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00007976 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007977
Chris Lattner62be1a72006-12-12 04:16:14 +00007978 break;
Evan Cheng25ece662006-12-11 17:25:19 +00007979 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007980 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007981 }
7982
Evan Cheng255f20f2010-04-01 06:04:33 +00007983 // Try to infer better alignment information than the store already has.
7984 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007985 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7986 if (Align > ST->getAlignment())
7987 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
7988 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
7989 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007990 }
7991 }
7992
Evan Cheng31959b12011-02-02 01:06:55 +00007993 // Try transforming a pair floating point load / store ops to integer
7994 // load / store ops.
7995 SDValue NewST = TransformFPLoadStorePair(N);
7996 if (NewST.getNode())
7997 return NewST;
7998
Scott Michelfdc40a02009-02-17 22:15:04 +00007999 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00008000 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008001 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00008002
Jim Laskey6ff23e52006-10-04 16:53:27 +00008003 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00008004 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00008005 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008006
8007 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008008 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00008009 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008010 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008011 ST->getMemoryVT(), ST->isVolatile(),
8012 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008013 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00008014 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008015 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008016 ST->isVolatile(), ST->isNonTemporal(),
8017 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008018 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008019
Jim Laskey279f0532006-09-25 16:29:54 +00008020 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00008021 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008022 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00008023
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008024 // Make sure the new and old chains are cleaned up.
8025 AddToWorkList(Token.getNode());
8026
Jim Laskey274062c2006-10-13 23:32:28 +00008027 // Don't add users to work list.
8028 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00008029 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00008030 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008031
Evan Cheng33dbedc2006-11-05 09:31:14 +00008032 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00008033 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00008034 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00008035
Chris Lattner3c872852007-12-29 06:26:16 +00008036 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00008037 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00008038 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00008039 // See if we can simplify the input to this truncstore with knowledge that
8040 // only the low bits are being used. For example:
8041 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00008042 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00008043 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00008044 APInt::getLowBitsSet(
8045 Value.getValueType().getScalarType().getSizeInBits(),
8046 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00008047 AddToWorkList(Value.getNode());
8048 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00008049 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008050 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008051 ST->isVolatile(), ST->isNonTemporal(),
8052 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00008053
Chris Lattnere33544c2007-10-13 06:58:48 +00008054 // Otherwise, see if we can simplify the operation with
8055 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00008056 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00008057 APInt::getLowBitsSet(
8058 Value.getValueType().getScalarType().getSizeInBits(),
8059 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00008060 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00008061 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008062
Chris Lattner3c872852007-12-29 06:26:16 +00008063 // If this is a load followed by a store to the same location, then the store
8064 // is dead/noop.
8065 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008066 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008067 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00008068 // There can't be any side effects between the load and store, such as
8069 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00008070 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00008071 // The store is dead, remove it.
8072 return Chain;
8073 }
8074 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008075
Chris Lattnerddf89562008-01-17 19:59:44 +00008076 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
8077 // truncating store. We can do this even if this is already a truncstore.
8078 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00008079 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008080 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008081 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00008082 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008083 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008084 ST->isVolatile(), ST->isNonTemporal(),
8085 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00008086 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008087
Nadav Rotemc653de62012-10-03 16:11:15 +00008088 // Only perform this optimization before the types are legal, because we
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008089 // don't want to perform this optimization on every DAGCombine invocation.
Nadav Rotemc653de62012-10-03 16:11:15 +00008090 if (!LegalTypes && MergeConsecutiveStores(ST))
8091 return SDValue(N, 0);
8092
Evan Cheng8b944d32009-05-28 00:35:15 +00008093 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00008094}
8095
Dan Gohman475871a2008-07-27 21:46:04 +00008096SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
8097 SDValue InVec = N->getOperand(0);
8098 SDValue InVal = N->getOperand(1);
8099 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00008100 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008101
Bob Wilson492fd452010-05-19 23:42:58 +00008102 // If the inserted element is an UNDEF, just use the input vector.
8103 if (InVal.getOpcode() == ISD::UNDEF)
8104 return InVec;
8105
Nadav Rotem609d54e2011-02-12 14:40:33 +00008106 EVT VT = InVec.getValueType();
8107
Owen Anderson95771af2011-02-25 21:41:48 +00008108 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00008109 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
8110 return SDValue();
8111
Eli Friedman9db817f2011-09-09 21:04:06 +00008112 // Check that we know which element is being inserted
8113 if (!isa<ConstantSDNode>(EltNo))
8114 return SDValue();
8115 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008116
Eli Friedman9db817f2011-09-09 21:04:06 +00008117 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
8118 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
8119 // vector elements.
8120 SmallVector<SDValue, 8> Ops;
8121 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
8122 Ops.append(InVec.getNode()->op_begin(),
8123 InVec.getNode()->op_end());
8124 } else if (InVec.getOpcode() == ISD::UNDEF) {
8125 unsigned NElts = VT.getVectorNumElements();
8126 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
8127 } else {
8128 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008129 }
Eli Friedman9db817f2011-09-09 21:04:06 +00008130
8131 // Insert the element
8132 if (Elt < Ops.size()) {
8133 // All the operands of BUILD_VECTOR must have the same type;
8134 // we enforce that here.
8135 EVT OpVT = Ops[0].getValueType();
8136 if (InVal.getValueType() != OpVT)
8137 InVal = OpVT.bitsGT(InVal.getValueType()) ?
8138 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
8139 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
8140 Ops[Elt] = InVal;
8141 }
8142
8143 // Return the new vector
8144 return DAG.getNode(ISD::BUILD_VECTOR, dl,
8145 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00008146}
8147
Dan Gohman475871a2008-07-27 21:46:04 +00008148SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008149 // (vextract (scalar_to_vector val, 0) -> val
8150 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00008151 EVT VT = InVec.getValueType();
8152 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008153
Duncan Sandsc356f332011-05-09 08:03:33 +00008154 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
8155 // Check if the result type doesn't match the inserted element type. A
8156 // SCALAR_TO_VECTOR may truncate the inserted element and the
8157 // EXTRACT_VECTOR_ELT may widen the extracted vector.
8158 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00008159 if (InOp.getValueType() != NVT) {
8160 assert(InOp.getValueType().isInteger() && NVT.isInteger());
8161 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
8162 }
8163 return InOp;
8164 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008165
Nadav Rotemba05c912012-01-17 21:44:01 +00008166 SDValue EltNo = N->getOperand(1);
8167 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
8168
8169 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
8170 // We only perform this optimization before the op legalization phase because
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008171 // we may introduce new vector instructions which are not backed by TD
8172 // patterns. For example on AVX, extracting elements from a wide vector
8173 // without using extract_subvector.
Nadav Rotemba05c912012-01-17 21:44:01 +00008174 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
8175 && ConstEltNo && !LegalOperations) {
8176 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
8177 int NumElem = VT.getVectorNumElements();
8178 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
8179 // Find the new index to extract from.
8180 int OrigElt = SVOp->getMaskElt(Elt);
8181
8182 // Extracting an undef index is undef.
8183 if (OrigElt == -1)
8184 return DAG.getUNDEF(NVT);
8185
8186 // Select the right vector half to extract from.
8187 if (OrigElt < NumElem) {
8188 InVec = InVec->getOperand(0);
8189 } else {
8190 InVec = InVec->getOperand(1);
8191 OrigElt -= NumElem;
8192 }
8193
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008194 EVT IndexTy = N->getOperand(1).getValueType();
Nadav Rotemba05c912012-01-17 21:44:01 +00008195 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008196 InVec, DAG.getConstant(OrigElt, IndexTy));
Nadav Rotemba05c912012-01-17 21:44:01 +00008197 }
8198
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008199 // Perform only after legalization to ensure build_vector / vector_shuffle
8200 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00008201 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008202
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008203 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
8204 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
8205 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00008206
Nadav Rotemba05c912012-01-17 21:44:01 +00008207 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00008208 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00008209 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00008210 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00008211 EVT ExtVT = VT.getVectorElementType();
8212 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00008213
Evan Cheng84387ea2012-03-13 22:00:52 +00008214 // If the result of load has to be truncated, then it's not necessarily
8215 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00008216 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00008217 return SDValue();
8218
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008219 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008220 // Don't duplicate a load with other uses.
8221 if (!InVec.hasOneUse())
8222 return SDValue();
8223
Owen Andersone50ed302009-08-10 22:56:29 +00008224 EVT BCVT = InVec.getOperand(0).getValueType();
8225 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008226 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00008227 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
8228 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008229 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00008230 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008231 NewLoad = true;
8232 }
Evan Cheng513da432007-10-06 08:19:55 +00008233
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008234 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00008235 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00008236 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008237 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00008238 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00008239 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00008240 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008241 // Don't duplicate a load with other uses.
8242 if (!InVec.hasOneUse())
8243 return SDValue();
8244
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008245 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00008246 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008247 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
8248 // =>
8249 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00008250
Eli Friedmand6e25602011-12-26 22:49:32 +00008251 // Don't duplicate a load with other uses.
8252 if (!InVec.hasOneUse())
8253 return SDValue();
8254
Mon P Wanga60b5232008-12-11 00:26:16 +00008255 // If the bit convert changed the number of elements, it is unsafe
8256 // to examine the mask.
8257 if (BCNumEltsChanged)
8258 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00008259
8260 // Select the input vector, guarding against out of range extract vector.
8261 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00008262 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00008263 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
8264
Eli Friedmand6e25602011-12-26 22:49:32 +00008265 if (InVec.getOpcode() == ISD::BITCAST) {
8266 // Don't duplicate a load with other uses.
8267 if (!InVec.hasOneUse())
8268 return SDValue();
8269
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008270 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00008271 }
Gabor Greifba36cb52008-08-28 21:40:38 +00008272 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008273 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00008274 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00008275 }
8276 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008277
Eli Friedmand6e25602011-12-26 22:49:32 +00008278 // Make sure we found a non-volatile load and the extractelement is
8279 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00008280 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00008281 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008282
Eric Christopherd81f17a2010-11-03 20:44:42 +00008283 // If Idx was -1 above, Elt is going to be -1, so just return undef.
8284 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00008285 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00008286
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008287 unsigned Align = LN0->getAlignment();
8288 if (NewLoad) {
8289 // Check the resultant load doesn't need a higher alignment than the
8290 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00008291 unsigned NewAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00008292 TLI.getDataLayout()
Eric Christopher503a64d2010-12-09 04:48:06 +00008293 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00008294
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008295 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008296 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00008297
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008298 Align = NewAlign;
8299 }
8300
Dan Gohman475871a2008-07-27 21:46:04 +00008301 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00008302 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008303
Eric Christopherd81f17a2010-11-03 20:44:42 +00008304 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00008305 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00008306 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008307 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00008308 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00008309 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008310 DAG.getConstant(PtrOff, PtrType));
8311 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008312
Eli Friedman4db4add2011-11-16 23:50:22 +00008313 // The replacement we need to do here is a little tricky: we need to
8314 // replace an extractelement of a load with a load.
8315 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00008316 // Note that this replacement assumes that the extractvalue is the only
8317 // use of the load; that's okay because we don't want to perform this
8318 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00008319 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00008320 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00008321 if (NVT.bitsGT(LVT)) {
8322 // If the result type of vextract is wider than the load, then issue an
8323 // extending load instead.
8324 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
8325 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
8326 Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(),
8327 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
8328 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008329 Chain = Load.getValue(1);
8330 } else {
Evan Cheng84387ea2012-03-13 22:00:52 +00008331 Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
8332 LN0->getPointerInfo().getWithOffset(PtrOff),
8333 LN0->isVolatile(), LN0->isNonTemporal(),
8334 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008335 Chain = Load.getValue(1);
8336 if (NVT.bitsLT(LVT))
8337 Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load);
8338 else
8339 Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load);
8340 }
Eli Friedman4db4add2011-11-16 23:50:22 +00008341 WorkListRemover DeadNodes(*this);
8342 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00008343 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00008344 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedman4db4add2011-11-16 23:50:22 +00008345 // Since we're explcitly calling ReplaceAllUses, add the new node to the
8346 // worklist explicitly as well.
8347 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00008348 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00008349 // Make sure to revisit this node to clean it up; it will usually be dead.
8350 AddToWorkList(N);
8351 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00008352 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008353
Dan Gohman475871a2008-07-27 21:46:04 +00008354 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00008355}
Evan Cheng513da432007-10-06 08:19:55 +00008356
Michael Liaofac14ab2012-10-23 23:06:52 +00008357// Simplify (build_vec (ext )) to (bitcast (build_vec ))
8358SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) {
8359 // We perform this optimization post type-legalization because
8360 // the type-legalizer often scalarizes integer-promoted vectors.
8361 // Performing this optimization before may create bit-casts which
8362 // will be type-legalized to complex code sequences.
8363 // We perform this optimization only before the operation legalizer because we
8364 // may introduce illegal operations.
8365 if (Level != AfterLegalizeVectorOps && Level != AfterLegalizeTypes)
8366 return SDValue();
8367
Dan Gohman7f321562007-06-25 16:23:39 +00008368 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008369 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008370 EVT VT = N->getValueType(0);
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008371
Nadav Rotemb00418a2011-10-29 21:23:04 +00008372 // Check to see if this is a BUILD_VECTOR of a bunch of values
8373 // which come from any_extend or zero_extend nodes. If so, we can create
8374 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00008375 // optimizations. We do not handle sign-extend because we can't fill the sign
8376 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008377 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00008378 bool AllAnyExt = true;
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008379
Craig Topperd3b58892012-01-17 09:09:48 +00008380 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00008381 SDValue In = N->getOperand(i);
8382 // Ignore undef inputs.
8383 if (In.getOpcode() == ISD::UNDEF) continue;
8384
8385 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
8386 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
8387
Nadav Rotemf47368b2011-10-31 20:08:25 +00008388 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008389 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00008390 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008391 break;
8392 }
8393
8394 // The input is a ZeroExt or AnyExt. Check the original type.
8395 EVT InTy = In.getOperand(0).getValueType();
8396
8397 // Check that all of the widened source types are the same.
8398 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00008399 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008400 SourceType = InTy;
8401 else if (InTy != SourceType) {
8402 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00008403 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008404 break;
8405 }
8406
8407 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00008408 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008409 }
8410
Nadav Rotemf47368b2011-10-31 20:08:25 +00008411 // In order to have valid types, all of the inputs must be extended from the
8412 // same source type and all of the inputs must be any or zero extend.
8413 // Scalar sizes must be a power of two.
Michael Liaofac14ab2012-10-23 23:06:52 +00008414 EVT OutScalarTy = VT.getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008415 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00008416 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
8417 isPowerOf2_32(SourceType.getSizeInBits());
8418
Nadav Rotem6431ff92012-03-15 08:49:06 +00008419 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
8420 // turn into a single shuffle instruction.
Michael Liaofac14ab2012-10-23 23:06:52 +00008421 if (!ValidTypes)
8422 return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008423
Michael Liaofac14ab2012-10-23 23:06:52 +00008424 bool isLE = TLI.isLittleEndian();
8425 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
8426 assert(ElemRatio > 1 && "Invalid element size ratio");
8427 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
8428 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008429
Michael Liaofac14ab2012-10-23 23:06:52 +00008430 unsigned NewBVElems = ElemRatio * VT.getVectorNumElements();
8431 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008432
Michael Liaofac14ab2012-10-23 23:06:52 +00008433 // Populate the new build_vector
Jakub Staszakadf38912012-10-24 00:38:25 +00008434 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Michael Liaofac14ab2012-10-23 23:06:52 +00008435 SDValue Cast = N->getOperand(i);
8436 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
8437 Cast.getOpcode() == ISD::ZERO_EXTEND ||
8438 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
8439 SDValue In;
8440 if (Cast.getOpcode() == ISD::UNDEF)
8441 In = DAG.getUNDEF(SourceType);
8442 else
8443 In = Cast->getOperand(0);
8444 unsigned Index = isLE ? (i * ElemRatio) :
8445 (i * ElemRatio + (ElemRatio - 1));
Nadav Rotemb00418a2011-10-29 21:23:04 +00008446
Michael Liaofac14ab2012-10-23 23:06:52 +00008447 assert(Index < Ops.size() && "Invalid index");
8448 Ops[Index] = In;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008449 }
Chris Lattnerca242442006-03-19 01:27:56 +00008450
Michael Liaofac14ab2012-10-23 23:06:52 +00008451 // The type of the new BUILD_VECTOR node.
8452 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
8453 assert(VecVT.getSizeInBits() == VT.getSizeInBits() &&
8454 "Invalid vector size");
8455 // Check if the new vector type is legal.
8456 if (!isTypeLegal(VecVT)) return SDValue();
8457
8458 // Make the new BUILD_VECTOR.
8459 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, &Ops[0], Ops.size());
8460
8461 // The new BUILD_VECTOR node has the potential to be further optimized.
8462 AddToWorkList(BV.getNode());
8463 // Bitcast to the desired type.
8464 return DAG.getNode(ISD::BITCAST, dl, VT, BV);
8465}
8466
Michael Liao1a5cc712012-10-24 04:14:18 +00008467SDValue DAGCombiner::reduceBuildVecConvertToConvertBuildVec(SDNode *N) {
8468 EVT VT = N->getValueType(0);
8469
8470 unsigned NumInScalars = N->getNumOperands();
8471 DebugLoc dl = N->getDebugLoc();
8472
8473 EVT SrcVT = MVT::Other;
8474 unsigned Opcode = ISD::DELETED_NODE;
8475 unsigned NumDefs = 0;
8476
8477 for (unsigned i = 0; i != NumInScalars; ++i) {
8478 SDValue In = N->getOperand(i);
8479 unsigned Opc = In.getOpcode();
8480
8481 if (Opc == ISD::UNDEF)
8482 continue;
8483
8484 // If all scalar values are floats and converted from integers.
8485 if (Opcode == ISD::DELETED_NODE &&
8486 (Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP)) {
8487 Opcode = Opc;
8488 // If not supported by target, bail out.
8489 if (TLI.getOperationAction(Opcode, VT) != TargetLowering::Legal &&
8490 TLI.getOperationAction(Opcode, VT) != TargetLowering::Custom)
8491 return SDValue();
8492 }
8493 if (Opc != Opcode)
8494 return SDValue();
8495
8496 EVT InVT = In.getOperand(0).getValueType();
8497
8498 // If all scalar values are typed differently, bail out. It's chosen to
8499 // simplify BUILD_VECTOR of integer types.
8500 if (SrcVT == MVT::Other)
8501 SrcVT = InVT;
8502 if (SrcVT != InVT)
8503 return SDValue();
8504 NumDefs++;
8505 }
8506
8507 // If the vector has just one element defined, it's not worth to fold it into
8508 // a vectorized one.
8509 if (NumDefs < 2)
8510 return SDValue();
8511
8512 assert((Opcode == ISD::UINT_TO_FP || Opcode == ISD::SINT_TO_FP)
8513 && "Should only handle conversion from integer to float.");
8514 assert(SrcVT != MVT::Other && "Cannot determine source type!");
8515
8516 EVT NVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumInScalars);
8517 SmallVector<SDValue, 8> Opnds;
8518 for (unsigned i = 0; i != NumInScalars; ++i) {
8519 SDValue In = N->getOperand(i);
8520
8521 if (In.getOpcode() == ISD::UNDEF)
8522 Opnds.push_back(DAG.getUNDEF(SrcVT));
8523 else
8524 Opnds.push_back(In.getOperand(0));
8525 }
8526 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT,
8527 &Opnds[0], Opnds.size());
8528 AddToWorkList(BV.getNode());
8529
8530 return DAG.getNode(Opcode, dl, VT, BV);
8531}
8532
Michael Liaofac14ab2012-10-23 23:06:52 +00008533SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
8534 unsigned NumInScalars = N->getNumOperands();
8535 DebugLoc dl = N->getDebugLoc();
8536 EVT VT = N->getValueType(0);
8537
8538 // A vector built entirely of undefs is undef.
8539 if (ISD::allOperandsUndef(N))
8540 return DAG.getUNDEF(VT);
8541
8542 SDValue V = reduceBuildVecExtToExtBuildVec(N);
8543 if (V.getNode())
8544 return V;
8545
Michael Liao1a5cc712012-10-24 04:14:18 +00008546 V = reduceBuildVecConvertToConvertBuildVec(N);
8547 if (V.getNode())
8548 return V;
8549
Dan Gohman7f321562007-06-25 16:23:39 +00008550 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
8551 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
8552 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00008553
8554 // May only combine to shuffle after legalize if shuffle is legal.
8555 if (LegalOperations &&
8556 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
8557 return SDValue();
8558
Dan Gohman475871a2008-07-27 21:46:04 +00008559 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00008560 for (unsigned i = 0; i != NumInScalars; ++i) {
8561 // Ignore undef inputs.
8562 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008563
Dan Gohman7f321562007-06-25 16:23:39 +00008564 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00008565 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00008566 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00008567 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00008568 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008569 break;
8570 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008571
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008572 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00008573 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008574 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
8575 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008576
Gabor Greifba36cb52008-08-28 21:40:38 +00008577 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00008578 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00008579 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00008580 VecIn2 = ExtractedFromVec;
8581 } else {
8582 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008583 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008584 break;
8585 }
8586 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008587
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008588 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00008589 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008590 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00008591 for (unsigned i = 0; i != NumInScalars; ++i) {
8592 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008593 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008594 continue;
8595 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008596
Rafael Espindola15684b22009-04-24 12:40:33 +00008597 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00008598 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00008599 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008600 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00008601 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
8602 if (ExtIndex > VT.getVectorNumElements())
8603 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008604
Nate Begeman5a5ca152009-04-29 05:20:52 +00008605 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008606 continue;
8607 }
8608
8609 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00008610 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008611 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008612 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008613
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008614 // We can't generate a shuffle node with mismatched input and output types.
8615 // Attempt to transform a single input vector to the correct type.
8616 if ((VT != VecIn1.getValueType())) {
8617 // We don't support shuffeling between TWO values of different types.
8618 if (VecIn2.getNode() != 0)
8619 return SDValue();
8620
8621 // We only support widening of vectors which are half the size of the
8622 // output registers. For example XMM->YMM widening on X86 with AVX.
8623 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
8624 return SDValue();
8625
James Molloy8cd08bf2012-09-10 14:01:21 +00008626 // If the input vector type has a different base type to the output
8627 // vector type, bail out.
8628 if (VecIn1.getValueType().getVectorElementType() !=
8629 VT.getVectorElementType())
8630 return SDValue();
8631
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00008632 // Widen the input vector by adding undef values.
Michael Liaofac14ab2012-10-23 23:06:52 +00008633 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00008634 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008635 }
8636
8637 // If VecIn2 is unused then change it to undef.
8638 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
8639
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008640 // Check that we were able to transform all incoming values to the same
8641 // type.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00008642 if (VecIn2.getValueType() != VecIn1.getValueType() ||
8643 VecIn1.getValueType() != VT)
8644 return SDValue();
8645
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008646 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00008647 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00008648 return SDValue();
8649
Dan Gohman7f321562007-06-25 16:23:39 +00008650 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00008651 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00008652 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008653 Ops[1] = VecIn2;
Michael Liaofac14ab2012-10-23 23:06:52 +00008654 return DAG.getVectorShuffle(VT, dl, Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008655 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008656
Dan Gohman475871a2008-07-27 21:46:04 +00008657 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00008658}
8659
Dan Gohman475871a2008-07-27 21:46:04 +00008660SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00008661 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
8662 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
8663 // inputs come from at most two distinct vectors, turn this into a shuffle
8664 // node.
8665
8666 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00008667 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00008668 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00008669
Nadav Rotemb7e230d2012-07-14 21:30:27 +00008670 // Check if all of the operands are undefs.
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008671 if (ISD::allOperandsUndef(N))
Nadav Rotemb7e230d2012-07-14 21:30:27 +00008672 return DAG.getUNDEF(N->getValueType(0));
8673
Dan Gohman475871a2008-07-27 21:46:04 +00008674 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00008675}
8676
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008677SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
8678 EVT NVT = N->getValueType(0);
8679 SDValue V = N->getOperand(0);
8680
8681 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
8682 // Handle only simple case where vector being inserted and vector
8683 // being extracted are of same type, and are half size of larger vectors.
8684 EVT BigVT = V->getOperand(0).getValueType();
8685 EVT SmallVT = V->getOperand(1).getValueType();
8686 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
8687 return SDValue();
8688
Eli Friedman26323442011-12-07 00:11:56 +00008689 // Only handle cases where both indexes are constants with the same type.
Michael Liao13429e22012-10-17 20:48:33 +00008690 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
8691 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008692
Eli Friedman26323442011-12-07 00:11:56 +00008693 if (InsIdx && ExtIdx &&
8694 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
8695 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
8696 // Combine:
8697 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
8698 // Into:
8699 // indices are equal => V1
8700 // otherwise => (extract_subvec V1, ExtIdx)
8701 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
8702 return V->getOperand(1);
8703 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
8704 V->getOperand(0), N->getOperand(1));
8705 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008706 }
8707
Michael Liao13429e22012-10-17 20:48:33 +00008708 if (V->getOpcode() == ISD::CONCAT_VECTORS) {
8709 // Combine:
8710 // (extract_subvec (concat V1, V2, ...), i)
8711 // Into:
8712 // Vi if possible
Michael Liao9aecdb52012-10-19 03:17:00 +00008713 // Only operand 0 is checked as 'concat' assumes all inputs of the same type.
8714 if (V->getOperand(0).getValueType() != NVT)
8715 return SDValue();
Michael Liao13429e22012-10-17 20:48:33 +00008716 unsigned Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
8717 unsigned NumElems = NVT.getVectorNumElements();
8718 assert((Idx % NumElems) == 0 &&
8719 "IDX in concat is not a multiple of the result vector length.");
8720 return V->getOperand(Idx / NumElems);
8721 }
8722
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008723 return SDValue();
8724}
8725
Dan Gohman475871a2008-07-27 21:46:04 +00008726SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00008727 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00008728 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00008729
Mon P Wangaeb06d22008-11-10 04:46:22 +00008730 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00008731 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00008732
Craig Topperae1bec52012-04-09 05:16:56 +00008733 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00008734
Craig Topper481b79c2012-01-04 08:07:43 +00008735 // Canonicalize shuffle undef, undef -> undef
8736 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
8737 return DAG.getUNDEF(VT);
8738
8739 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
8740
8741 // Canonicalize shuffle v, v -> v, undef
8742 if (N0 == N1) {
8743 SmallVector<int, 8> NewMask;
8744 for (unsigned i = 0; i != NumElts; ++i) {
8745 int Idx = SVN->getMaskElt(i);
8746 if (Idx >= (int)NumElts) Idx -= NumElts;
8747 NewMask.push_back(Idx);
8748 }
8749 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
8750 &NewMask[0]);
8751 }
8752
8753 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
8754 if (N0.getOpcode() == ISD::UNDEF) {
8755 SmallVector<int, 8> NewMask;
8756 for (unsigned i = 0; i != NumElts; ++i) {
8757 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00008758 if (Idx >= 0) {
8759 if (Idx < (int)NumElts)
8760 Idx += NumElts;
8761 else
8762 Idx -= NumElts;
8763 }
8764 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00008765 }
8766 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
8767 &NewMask[0]);
8768 }
8769
8770 // Remove references to rhs if it is undef
8771 if (N1.getOpcode() == ISD::UNDEF) {
8772 bool Changed = false;
8773 SmallVector<int, 8> NewMask;
8774 for (unsigned i = 0; i != NumElts; ++i) {
8775 int Idx = SVN->getMaskElt(i);
8776 if (Idx >= (int)NumElts) {
8777 Idx = -1;
8778 Changed = true;
8779 }
8780 NewMask.push_back(Idx);
8781 }
8782 if (Changed)
8783 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
8784 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00008785
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008786 // If it is a splat, check if the argument vector is another splat or a
8787 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008788 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00008789 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00008790
Dan Gohman7f321562007-06-25 16:23:39 +00008791 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00008792 // not the number of vector elements, look through it. Be careful not to
8793 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008794 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00008795 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00008796 if (ConvInput.getValueType().isVector() &&
8797 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00008798 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00008799 }
8800
Dan Gohman7f321562007-06-25 16:23:39 +00008801 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008802 assert(V->getNumOperands() == NumElts &&
8803 "BUILD_VECTOR has wrong number of operands");
8804 SDValue Base;
8805 bool AllSame = true;
8806 for (unsigned i = 0; i != NumElts; ++i) {
8807 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
8808 Base = V->getOperand(i);
8809 break;
Evan Cheng917ec982006-07-21 08:25:53 +00008810 }
Evan Cheng917ec982006-07-21 08:25:53 +00008811 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008812 // Splat of <u, u, u, u>, return <u, u, u, u>
8813 if (!Base.getNode())
8814 return N0;
8815 for (unsigned i = 0; i != NumElts; ++i) {
8816 if (V->getOperand(i) != Base) {
8817 AllSame = false;
8818 break;
8819 }
8820 }
8821 // Splat of <x, x, x, x>, return <x, x, x, x>
8822 if (AllSame)
8823 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00008824 }
8825 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00008826
8827 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008828 // and it reverses the swizzle of the previous shuffle then we can
8829 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00008830 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
8831 N1.getOpcode() == ISD::UNDEF) {
8832
Nadav Rotem4ac90812012-04-01 19:31:22 +00008833 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
8834
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008835 // Shuffle nodes can only reverse shuffles with a single non-undef value.
8836 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
8837 return SDValue();
8838
Craig Topperae1bec52012-04-09 05:16:56 +00008839 // The incoming shuffle must be of the same type as the result of the
8840 // current shuffle.
8841 assert(OtherSV->getOperand(0).getValueType() == VT &&
8842 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00008843
8844 for (unsigned i = 0; i != NumElts; ++i) {
8845 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00008846 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00008847 // Next, this index comes from the first value, which is the incoming
8848 // shuffle. Adopt the incoming index.
8849 if (Idx >= 0)
8850 Idx = OtherSV->getMaskElt(Idx);
8851
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008852 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00008853 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008854 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00008855 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008856
8857 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00008858 }
8859
Dan Gohman475871a2008-07-27 21:46:04 +00008860 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00008861}
8862
Jim Grosbach9a526492010-06-23 16:07:42 +00008863SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
8864 if (!TLI.getShouldFoldAtomicFences())
8865 return SDValue();
8866
8867 SDValue atomic = N->getOperand(0);
8868 switch (atomic.getOpcode()) {
8869 case ISD::ATOMIC_CMP_SWAP:
8870 case ISD::ATOMIC_SWAP:
8871 case ISD::ATOMIC_LOAD_ADD:
8872 case ISD::ATOMIC_LOAD_SUB:
8873 case ISD::ATOMIC_LOAD_AND:
8874 case ISD::ATOMIC_LOAD_OR:
8875 case ISD::ATOMIC_LOAD_XOR:
8876 case ISD::ATOMIC_LOAD_NAND:
8877 case ISD::ATOMIC_LOAD_MIN:
8878 case ISD::ATOMIC_LOAD_MAX:
8879 case ISD::ATOMIC_LOAD_UMIN:
8880 case ISD::ATOMIC_LOAD_UMAX:
8881 break;
8882 default:
8883 return SDValue();
8884 }
8885
8886 SDValue fence = atomic.getOperand(0);
8887 if (fence.getOpcode() != ISD::MEMBARRIER)
8888 return SDValue();
8889
8890 switch (atomic.getOpcode()) {
8891 case ISD::ATOMIC_CMP_SWAP:
8892 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
8893 fence.getOperand(0),
8894 atomic.getOperand(1), atomic.getOperand(2),
8895 atomic.getOperand(3)), atomic.getResNo());
8896 case ISD::ATOMIC_SWAP:
8897 case ISD::ATOMIC_LOAD_ADD:
8898 case ISD::ATOMIC_LOAD_SUB:
8899 case ISD::ATOMIC_LOAD_AND:
8900 case ISD::ATOMIC_LOAD_OR:
8901 case ISD::ATOMIC_LOAD_XOR:
8902 case ISD::ATOMIC_LOAD_NAND:
8903 case ISD::ATOMIC_LOAD_MIN:
8904 case ISD::ATOMIC_LOAD_MAX:
8905 case ISD::ATOMIC_LOAD_UMIN:
8906 case ISD::ATOMIC_LOAD_UMAX:
8907 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
8908 fence.getOperand(0),
8909 atomic.getOperand(1), atomic.getOperand(2)),
8910 atomic.getResNo());
8911 default:
8912 return SDValue();
8913 }
8914}
8915
Evan Cheng44f1f092006-04-20 08:56:16 +00008916/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00008917/// an AND to a vector_shuffle with the destination vector and a zero vector.
8918/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00008919/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00008920SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00008921 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00008922 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008923 SDValue LHS = N->getOperand(0);
8924 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00008925 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008926 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00008927 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00008928 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008929 SmallVector<int, 8> Indices;
8930 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00008931 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008932 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00008933 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00008934 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00008935
8936 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00008937 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00008938 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00008939 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00008940 else
Dan Gohman475871a2008-07-27 21:46:04 +00008941 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008942 }
8943
8944 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00008945 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00008946 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008947 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008948
Dan Gohman7f321562007-06-25 16:23:39 +00008949 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00008950 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00008951 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00008952 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00008953 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8954 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008955 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00008956 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008957 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00008958 }
8959 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008960
Dan Gohman475871a2008-07-27 21:46:04 +00008961 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008962}
8963
Dan Gohman7f321562007-06-25 16:23:39 +00008964/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00008965SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00008966 // After legalize, the target may be depending on adds and other
8967 // binary ops to provide legal ways to construct constants or other
8968 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00008969 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00008970
Bob Wilsond7273432010-12-17 23:06:49 +00008971 assert(N->getValueType(0).isVector() &&
8972 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00008973
Dan Gohman475871a2008-07-27 21:46:04 +00008974 SDValue LHS = N->getOperand(0);
8975 SDValue RHS = N->getOperand(1);
8976 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00008977 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00008978
Dan Gohman7f321562007-06-25 16:23:39 +00008979 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00008980 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00008981 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00008982 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00008983 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00008984 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008985 SDValue LHSOp = LHS.getOperand(i);
8986 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00008987 // If these two elements can't be folded, bail out.
8988 if ((LHSOp.getOpcode() != ISD::UNDEF &&
8989 LHSOp.getOpcode() != ISD::Constant &&
8990 LHSOp.getOpcode() != ISD::ConstantFP) ||
8991 (RHSOp.getOpcode() != ISD::UNDEF &&
8992 RHSOp.getOpcode() != ISD::Constant &&
8993 RHSOp.getOpcode() != ISD::ConstantFP))
8994 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008995
Evan Cheng7b336a82006-05-31 06:08:35 +00008996 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00008997 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
8998 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00008999 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00009000 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00009001 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00009002 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00009003 break;
9004 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009005
Bob Wilsond7273432010-12-17 23:06:49 +00009006 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00009007 EVT RVT = RHSOp.getValueType();
9008 if (RVT != VT) {
9009 // Integer BUILD_VECTOR operands may have types larger than the element
9010 // size (e.g., when the element type is not legal). Prior to type
9011 // legalization, the types may not match between the two BUILD_VECTORS.
9012 // Truncate one of the operands to make them match.
9013 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
9014 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
9015 } else {
9016 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
9017 VT = RVT;
9018 }
9019 }
Bob Wilsond7273432010-12-17 23:06:49 +00009020 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00009021 LHSOp, RHSOp);
9022 if (FoldOp.getOpcode() != ISD::UNDEF &&
9023 FoldOp.getOpcode() != ISD::Constant &&
9024 FoldOp.getOpcode() != ISD::ConstantFP)
9025 break;
9026 Ops.push_back(FoldOp);
9027 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00009028 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009029
Bob Wilsond7273432010-12-17 23:06:49 +00009030 if (Ops.size() == LHS.getNumOperands())
9031 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
9032 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00009033 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009034
Dan Gohman475871a2008-07-27 21:46:04 +00009035 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00009036}
9037
Craig Topperdd201ff2012-09-11 01:45:21 +00009038/// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG.
9039SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) {
9040 // After legalize, the target may be depending on adds and other
9041 // binary ops to provide legal ways to construct constants or other
9042 // things. Simplifying them may result in a loss of legality.
9043 if (LegalOperations) return SDValue();
9044
9045 assert(N->getValueType(0).isVector() &&
9046 "SimplifyVUnaryOp only works on vectors!");
9047
9048 SDValue N0 = N->getOperand(0);
9049
9050 if (N0.getOpcode() != ISD::BUILD_VECTOR)
9051 return SDValue();
9052
9053 // Operand is a BUILD_VECTOR node, see if we can constant fold it.
9054 SmallVector<SDValue, 8> Ops;
9055 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
9056 SDValue Op = N0.getOperand(i);
9057 if (Op.getOpcode() != ISD::UNDEF &&
9058 Op.getOpcode() != ISD::ConstantFP)
9059 break;
9060 EVT EltVT = Op.getValueType();
9061 SDValue FoldOp = DAG.getNode(N->getOpcode(), N0.getDebugLoc(), EltVT, Op);
9062 if (FoldOp.getOpcode() != ISD::UNDEF &&
9063 FoldOp.getOpcode() != ISD::ConstantFP)
9064 break;
9065 Ops.push_back(FoldOp);
9066 AddToWorkList(FoldOp.getNode());
9067 }
9068
9069 if (Ops.size() != N0.getNumOperands())
9070 return SDValue();
9071
9072 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
9073 N0.getValueType(), &Ops[0], Ops.size());
9074}
9075
Bill Wendling836ca7d2009-01-30 23:59:18 +00009076SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
9077 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00009078 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00009079
Bill Wendling836ca7d2009-01-30 23:59:18 +00009080 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00009081 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009082
Nate Begemanf845b452005-10-08 00:29:44 +00009083 // If we got a simplified select_cc node back from SimplifySelectCC, then
9084 // break it down into a new SETCC node, and a new SELECT node, and then return
9085 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00009086 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009087 // Check to see if we got a select_cc back (to turn into setcc/select).
9088 // Otherwise, just return whatever node we got back, like fabs.
9089 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009090 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
9091 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009092 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009093 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00009094 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009095 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
9096 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00009097 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009098
Nate Begemanf845b452005-10-08 00:29:44 +00009099 return SCC;
9100 }
Dan Gohman475871a2008-07-27 21:46:04 +00009101 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00009102}
9103
Chris Lattner40c62d52005-10-18 06:04:22 +00009104/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
9105/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00009106/// select. Callers of this should assume that TheSelect is deleted if this
9107/// returns true. As such, they should return the appropriate thing (e.g. the
9108/// node) back to the top-level of the DAG combiner loop to avoid it being
9109/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00009110bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00009111 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009112
Nadav Rotemf94fdb62011-02-11 19:57:47 +00009113 // Cannot simplify select with vector condition
9114 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
9115
Chris Lattner40c62d52005-10-18 06:04:22 +00009116 // If this is a select from two identical things, try to pull the operation
9117 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00009118 if (LHS.getOpcode() != RHS.getOpcode() ||
9119 !LHS.hasOneUse() || !RHS.hasOneUse())
9120 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009121
Chris Lattner18061612010-09-21 15:46:59 +00009122 // If this is a load and the token chain is identical, replace the select
9123 // of two loads with a load through a select of the address to load from.
9124 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
9125 // constants have been dropped into the constant pool.
9126 if (LHS.getOpcode() == ISD::LOAD) {
9127 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
9128 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009129
Chris Lattner18061612010-09-21 15:46:59 +00009130 // Token chains must be identical.
9131 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00009132 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00009133 LLD->isVolatile() || RLD->isVolatile() ||
9134 // If this is an EXTLOAD, the VT's must match.
9135 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00009136 // If this is an EXTLOAD, the kind of extension must match.
9137 (LLD->getExtensionType() != RLD->getExtensionType() &&
9138 // The only exception is if one of the extensions is anyext.
9139 LLD->getExtensionType() != ISD::EXTLOAD &&
9140 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00009141 // FIXME: this discards src value information. This is
9142 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00009143 // both potential memory locations. Since we are discarding
9144 // src value info, don't do the transformation if the memory
9145 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00009146 LLD->getPointerInfo().getAddrSpace() != 0 ||
9147 RLD->getPointerInfo().getAddrSpace() != 0)
9148 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009149
Chris Lattnerf1658062010-09-21 15:58:55 +00009150 // Check that the select condition doesn't reach either load. If so,
9151 // folding this will induce a cycle into the DAG. If not, this is safe to
9152 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00009153 SDValue Addr;
9154 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00009155 SDNode *CondNode = TheSelect->getOperand(0).getNode();
9156 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
9157 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
9158 return false;
Nadav Rotem1c5bf3f2012-10-18 18:06:48 +00009159 // The loads must not depend on one another.
9160 if (LLD->isPredecessorOf(RLD) ||
9161 RLD->isPredecessorOf(LLD))
9162 return false;
Chris Lattnerf1658062010-09-21 15:58:55 +00009163 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
9164 LLD->getBasePtr().getValueType(),
9165 TheSelect->getOperand(0), LLD->getBasePtr(),
9166 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00009167 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00009168 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
9169 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
9170
9171 if ((LLD->hasAnyUseOfValue(1) &&
9172 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00009173 (RLD->hasAnyUseOfValue(1) &&
9174 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00009175 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009176
Chris Lattnerf1658062010-09-21 15:58:55 +00009177 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
9178 LLD->getBasePtr().getValueType(),
9179 TheSelect->getOperand(0),
9180 TheSelect->getOperand(1),
9181 LLD->getBasePtr(), RLD->getBasePtr(),
9182 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00009183 }
9184
Chris Lattnerf1658062010-09-21 15:58:55 +00009185 SDValue Load;
9186 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
9187 Load = DAG.getLoad(TheSelect->getValueType(0),
9188 TheSelect->getDebugLoc(),
9189 // FIXME: Discards pointer info.
9190 LLD->getChain(), Addr, MachinePointerInfo(),
9191 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009192 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00009193 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00009194 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
9195 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00009196 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00009197 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00009198 // FIXME: Discards pointer info.
9199 LLD->getChain(), Addr, MachinePointerInfo(),
9200 LLD->getMemoryVT(), LLD->isVolatile(),
9201 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00009202 }
Chris Lattnerf1658062010-09-21 15:58:55 +00009203
9204 // Users of the select now use the result of the load.
9205 CombineTo(TheSelect, Load);
9206
9207 // Users of the old loads now use the new load's chain. We know the
9208 // old-load value is dead now.
9209 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
9210 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
9211 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00009212 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009213
Chris Lattner40c62d52005-10-18 06:04:22 +00009214 return false;
9215}
9216
Chris Lattner600fec32009-03-11 05:08:08 +00009217/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
9218/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00009219SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00009220 SDValue N2, SDValue N3,
9221 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00009222 // (x ? y : y) -> y.
9223 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009224
Owen Andersone50ed302009-08-10 22:56:29 +00009225 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00009226 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
9227 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
9228 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009229
9230 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00009231 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009232 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00009233 if (SCC.getNode()) AddToWorkList(SCC.getNode());
9234 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009235
9236 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00009237 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009238 return N2;
9239 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00009240 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009241 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00009242
Nate Begemanf845b452005-10-08 00:29:44 +00009243 // Check to see if we can simplify the select into an fabs node
9244 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
9245 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00009246 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009247 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
9248 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
9249 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
9250 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009251 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009252
Nate Begemanf845b452005-10-08 00:29:44 +00009253 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
9254 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
9255 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
9256 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009257 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00009258 }
9259 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009260
Chris Lattner600fec32009-03-11 05:08:08 +00009261 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
9262 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
9263 // in it. This is a win when the constant is not otherwise available because
9264 // it replaces two constant pool loads with one. We only do this if the FP
9265 // type is known to be legal, because if it isn't, then we are before legalize
9266 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00009267 // messing with soft float) and if the ConstantFP is not legal, because if
9268 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00009269 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
9270 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
9271 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00009272 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
9273 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00009274 // If both constants have multiple uses, then we won't need to do an
9275 // extra load, they are likely around in registers for other users.
9276 (TV->hasOneUse() || FV->hasOneUse())) {
9277 Constant *Elts[] = {
9278 const_cast<ConstantFP*>(FV->getConstantFPValue()),
9279 const_cast<ConstantFP*>(TV->getConstantFPValue())
9280 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009281 Type *FPTy = Elts[0]->getType();
Micah Villmow3574eca2012-10-08 16:38:25 +00009282 const DataLayout &TD = *TLI.getDataLayout();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009283
Chris Lattner600fec32009-03-11 05:08:08 +00009284 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00009285 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00009286 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
9287 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00009288 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00009289
9290 // Get the offsets to the 0 and 1 element of the array so that we can
9291 // select between them.
9292 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00009293 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00009294 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009295
Chris Lattner600fec32009-03-11 05:08:08 +00009296 SDValue Cond = DAG.getSetCC(DL,
9297 TLI.getSetCCResultType(N0.getValueType()),
9298 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00009299 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009300 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
9301 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00009302 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009303 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
9304 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00009305 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009306 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00009307 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00009308 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00009309
9310 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009311 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009312
Nate Begemanf845b452005-10-08 00:29:44 +00009313 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00009314 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00009315 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00009316 (N1C->isNullValue() || // (a < 0) ? b : 0
9317 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00009318 EVT XType = N0.getValueType();
9319 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00009320 if (XType.bitsGE(AType)) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00009321 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00009322 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00009323 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
9324 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00009325 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00009326 SDValue ShCt = DAG.getConstant(ShCtV,
9327 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00009328 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009329 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00009330 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009331
Duncan Sands8e4eb092008-06-08 20:54:56 +00009332 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009333 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009334 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009335 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009336
9337 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009338 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009339
Bill Wendling9729c5a2009-01-31 03:12:48 +00009340 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009341 XType, N0,
9342 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009343 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00009344 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009345
Duncan Sands8e4eb092008-06-08 20:54:56 +00009346 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009347 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009348 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009349 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009350
9351 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009352 }
9353 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009354
Owen Andersoned1088a2010-09-22 22:58:22 +00009355 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
9356 // where y is has a single bit set.
9357 // A plaintext description would be, we can turn the SELECT_CC into an AND
9358 // when the condition can be materialized as an all-ones register. Any
9359 // single bit-test can be materialized as an all-ones register with
9360 // shift-left and shift-right-arith.
9361 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
9362 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009363 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00009364 N2C && N2C->isNullValue()) {
9365 SDValue AndLHS = N0->getOperand(0);
9366 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
9367 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
9368 // Shift the tested bit over the sign bit.
9369 APInt AndMask = ConstAndRHS->getAPIntValue();
9370 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00009371 DAG.getConstant(AndMask.countLeadingZeros(),
9372 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00009373 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009374
Owen Andersoned1088a2010-09-22 22:58:22 +00009375 // Now arithmetic right shift it all the way over, so the result is either
9376 // all-ones, or zero.
9377 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00009378 DAG.getConstant(AndMask.getBitWidth()-1,
9379 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00009380 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009381
Owen Andersoned1088a2010-09-22 22:58:22 +00009382 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
9383 }
9384 }
9385
Nate Begeman07ed4172005-10-10 21:26:48 +00009386 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00009387 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00009388 TLI.getBooleanContents(N0.getValueType().isVector()) ==
9389 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009390
Chris Lattner1eba01e2007-04-11 06:50:51 +00009391 // If the caller doesn't want us to simplify this into a zext of a compare,
9392 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00009393 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00009394 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00009395
Nate Begeman07ed4172005-10-10 21:26:48 +00009396 // Get a SetCC of the condition
9397 // FIXME: Should probably make sure that setcc is legal if we ever have a
9398 // target where it isn't.
Dan Gohman475871a2008-07-27 21:46:04 +00009399 SDValue Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00009400 // cast from setcc result type to select result type
Duncan Sands25cf2272008-11-24 14:53:14 +00009401 if (LegalTypes) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009402 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00009403 N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00009404 if (N2.getValueType().bitsLT(SCC.getValueType()))
Bill Wendling9729c5a2009-01-31 03:12:48 +00009405 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
Chris Lattner555d8d62006-12-07 22:36:47 +00009406 else
Bill Wendling9729c5a2009-01-31 03:12:48 +00009407 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009408 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00009409 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00009410 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00009411 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009412 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00009413 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009414
Gabor Greifba36cb52008-08-28 21:40:38 +00009415 AddToWorkList(SCC.getNode());
9416 AddToWorkList(Temp.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00009417
Dan Gohman002e5d02008-03-13 22:13:53 +00009418 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00009419 return Temp;
Bill Wendling836ca7d2009-01-30 23:59:18 +00009420
Nate Begeman07ed4172005-10-10 21:26:48 +00009421 // shl setcc result by log2 n2c
Bill Wendling836ca7d2009-01-30 23:59:18 +00009422 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00009423 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00009424 getShiftAmountTy(Temp.getValueType())));
Nate Begeman07ed4172005-10-10 21:26:48 +00009425 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009426
Nate Begemanf845b452005-10-08 00:29:44 +00009427 // Check to see if this is the equivalent of setcc
9428 // FIXME: Turn all of these into setcc if setcc if setcc is legal
9429 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00009430 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00009431 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00009432 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00009433 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009434 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00009435 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009436 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00009437 return Res;
9438 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009439
Bill Wendling836ca7d2009-01-30 23:59:18 +00009440 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00009441 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00009442 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00009443 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009444 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009445 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00009446 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00009447 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00009448 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009449 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00009450 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009451 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
9452 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00009453 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00009454 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00009455 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00009456 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009457 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00009458 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009459 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00009460 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009461 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00009462 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009463 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00009464 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00009465 }
9466 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009467
Benjamin Kramercde51102010-07-08 12:09:56 +00009468 // Check to see if this is an integer abs.
9469 // select_cc setg[te] X, 0, X, -X ->
9470 // select_cc setgt X, -1, X, -X ->
9471 // select_cc setl[te] X, 0, -X, X ->
9472 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00009473 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00009474 if (N1C) {
9475 ConstantSDNode *SubC = NULL;
9476 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
9477 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
9478 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
9479 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
9480 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
9481 (N1C->isOne() && CC == ISD::SETLT)) &&
9482 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
9483 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
9484
Owen Andersone50ed302009-08-10 22:56:29 +00009485 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00009486 if (SubC && SubC->isNullValue() && XType.isInteger()) {
9487 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
9488 N0,
9489 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009490 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00009491 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
9492 XType, N0, Shift);
9493 AddToWorkList(Shift.getNode());
9494 AddToWorkList(Add.getNode());
9495 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00009496 }
9497 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009498
Dan Gohman475871a2008-07-27 21:46:04 +00009499 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00009500}
9501
Evan Chengfa1eb272007-02-08 22:13:59 +00009502/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00009503SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00009504 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009505 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009506 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00009507 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009508 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00009509}
9510
Nate Begeman69575232005-10-20 02:15:44 +00009511/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
9512/// return a DAG expression to select that will generate the same value by
9513/// multiplying by a magic number. See:
9514/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00009515SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00009516 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00009517 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009518
Andrew Lenharth232c9102006-06-12 16:07:18 +00009519 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009520 ii != ee; ++ii)
9521 AddToWorkList(*ii);
9522 return S;
Nate Begeman69575232005-10-20 02:15:44 +00009523}
9524
9525/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
9526/// return a DAG expression to select that will generate the same value by
9527/// multiplying by a magic number. See:
9528/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00009529SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00009530 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00009531 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00009532
Andrew Lenharth232c9102006-06-12 16:07:18 +00009533 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009534 ii != ee; ++ii)
9535 AddToWorkList(*ii);
9536 return S;
Nate Begeman69575232005-10-20 02:15:44 +00009537}
9538
Nate Begemancc66cdd2009-09-25 06:05:26 +00009539/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00009540// to alias with anything but itself. Provides base object and offset as
9541// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009542static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Roman Divacky2943e372012-09-05 22:15:49 +00009543 const GlobalValue *&GV, const void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00009544 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009545 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00009546
Jim Laskey71382342006-10-07 23:37:56 +00009547 // If it's an adding a simple constant then integrate the offset.
9548 if (Base.getOpcode() == ISD::ADD) {
9549 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
9550 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00009551 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00009552 }
9553 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009554
Nate Begemancc66cdd2009-09-25 06:05:26 +00009555 // Return the underlying GlobalValue, and update the Offset. Return false
9556 // for GlobalAddressSDNode since the same GlobalAddress may be represented
9557 // by multiple nodes with different offsets.
9558 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
9559 GV = G->getGlobal();
9560 Offset += G->getOffset();
9561 return false;
9562 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009563
Nate Begemancc66cdd2009-09-25 06:05:26 +00009564 // Return the underlying Constant value, and update the Offset. Return false
9565 // for ConstantSDNodes since the same constant pool entry may be represented
9566 // by multiple nodes with different offsets.
9567 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
Roman Divacky2943e372012-09-05 22:15:49 +00009568 CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal()
9569 : (const void *)C->getConstVal();
Nate Begemancc66cdd2009-09-25 06:05:26 +00009570 Offset += C->getOffset();
9571 return false;
9572 }
Jim Laskey71382342006-10-07 23:37:56 +00009573 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009574 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00009575}
9576
9577/// isAlias - Return true if there is any possibility that the two addresses
9578/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00009579bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00009580 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009581 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009582 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00009583 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009584 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009585 unsigned SrcValueAlign2,
9586 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00009587 // If they are the same then they must be aliases.
9588 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00009589
Jim Laskey71382342006-10-07 23:37:56 +00009590 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00009591 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00009592 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00009593 const GlobalValue *GV1, *GV2;
Roman Divacky2943e372012-09-05 22:15:49 +00009594 const void *CV1, *CV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00009595 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
9596 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009597
Nate Begemancc66cdd2009-09-25 06:05:26 +00009598 // If they have a same base address then check to see if they overlap.
9599 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009600 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009601
Owen Anderson4a9f1502010-09-20 20:39:59 +00009602 // It is possible for different frame indices to alias each other, mostly
9603 // when tail call optimization reuses return address slots for arguments.
9604 // To catch this case, look up the actual index of frame indices to compute
9605 // the real alias relationship.
9606 if (isFrameIndex1 && isFrameIndex2) {
9607 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9608 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
9609 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
9610 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
9611 }
9612
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009613 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00009614 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009615 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
9616 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00009617
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009618 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
9619 // compared to the size and offset of the access, we may be able to prove they
9620 // do not alias. This check is conservative for now to catch cases created by
9621 // splitting vector types.
9622 if ((SrcValueAlign1 == SrcValueAlign2) &&
9623 (SrcValueOffset1 != SrcValueOffset2) &&
9624 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
9625 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
9626 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009627
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009628 // There is no overlap between these relatively aligned accesses of similar
9629 // size, return no alias.
9630 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
9631 return false;
9632 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009633
Jim Laskey07a27092006-10-18 19:08:31 +00009634 if (CombinerGlobalAA) {
9635 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00009636 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
9637 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
9638 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00009639 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009640 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
9641 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00009642 if (AAResult == AliasAnalysis::NoAlias)
9643 return false;
9644 }
Jim Laskey096c22e2006-10-18 12:29:57 +00009645
9646 // Otherwise we have to assume they alias.
9647 return true;
Jim Laskey71382342006-10-07 23:37:56 +00009648}
9649
9650/// FindAliasInfo - Extracts the relevant alias information from the memory
9651/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00009652bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00009653 SDValue &Ptr, int64_t &Size,
9654 const Value *&SrcValue,
9655 int &SrcValueOffset,
9656 unsigned &SrcValueAlign,
9657 const MDNode *&TBAAInfo) const {
9658 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
9659
9660 Ptr = LS->getBasePtr();
9661 Size = LS->getMemoryVT().getSizeInBits() >> 3;
9662 SrcValue = LS->getSrcValue();
9663 SrcValueOffset = LS->getSrcValueOffset();
9664 SrcValueAlign = LS->getOriginalAlignment();
9665 TBAAInfo = LS->getTBAAInfo();
9666 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00009667}
9668
Jim Laskey6ff23e52006-10-04 16:53:27 +00009669/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
9670/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00009671void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
9672 SmallVector<SDValue, 8> &Aliases) {
9673 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009674 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00009675
Jim Laskey279f0532006-09-25 16:29:54 +00009676 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00009677 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009678 int64_t Size;
9679 const Value *SrcValue;
9680 int SrcValueOffset;
9681 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009682 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009683 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009684 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00009685
Jim Laskey6ff23e52006-10-04 16:53:27 +00009686 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00009687 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00009688 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009689
Jim Laskeybc588b82006-10-05 15:07:25 +00009690 // Look at each chain and determine if it is an alias. If so, add it to the
9691 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00009692 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00009693 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00009694 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00009695 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009696
9697 // For TokenFactor nodes, look at each operand and only continue up the
9698 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00009699 // find more and revert to original chain since the xform is unlikely to be
9700 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009701 //
9702 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00009703 // chain we found before we hit a tokenfactor rather than the original
9704 // chain.
9705 if (Depth > 6 || Aliases.size() == 2) {
9706 Aliases.clear();
9707 Aliases.push_back(OriginalChain);
9708 break;
9709 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009710
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009711 // Don't bother if we've been before.
9712 if (!Visited.insert(Chain.getNode()))
9713 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00009714
Jim Laskeybc588b82006-10-05 15:07:25 +00009715 switch (Chain.getOpcode()) {
9716 case ISD::EntryToken:
9717 // Entry token is ideal chain operand, but handled in FindBetterChain.
9718 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00009719
Jim Laskeybc588b82006-10-05 15:07:25 +00009720 case ISD::LOAD:
9721 case ISD::STORE: {
9722 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00009723 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009724 int64_t OpSize;
9725 const Value *OpSrcValue;
9726 int OpSrcValueOffset;
9727 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009728 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00009729 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009730 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009731 OpSrcValueAlign,
9732 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00009733
Jim Laskeybc588b82006-10-05 15:07:25 +00009734 // If chain is alias then stop here.
9735 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009736 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009737 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009738 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009739 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00009740 Aliases.push_back(Chain);
9741 } else {
9742 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00009743 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00009744 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00009745 }
Jim Laskeybc588b82006-10-05 15:07:25 +00009746 break;
9747 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009748
Jim Laskeybc588b82006-10-05 15:07:25 +00009749 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009750 // We have to check each of the operands of the token factor for "small"
9751 // token factors, so we queue them up. Adding the operands to the queue
9752 // (stack) in reverse order maintains the original order and increases the
9753 // likelihood that getNode will find a matching token factor (CSE.)
9754 if (Chain.getNumOperands() > 16) {
9755 Aliases.push_back(Chain);
9756 break;
9757 }
Jim Laskeybc588b82006-10-05 15:07:25 +00009758 for (unsigned n = Chain.getNumOperands(); n;)
9759 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00009760 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00009761 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00009762
Jim Laskeybc588b82006-10-05 15:07:25 +00009763 default:
9764 // For all other instructions we will just have to take what we can get.
9765 Aliases.push_back(Chain);
9766 break;
Jim Laskey279f0532006-09-25 16:29:54 +00009767 }
9768 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00009769}
9770
9771/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
9772/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00009773SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
9774 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00009775
Jim Laskey6ff23e52006-10-04 16:53:27 +00009776 // Accumulate all the aliases to this node.
9777 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00009778
Dan Gohman71dc7c92011-05-17 22:20:36 +00009779 // If no operands then chain to entry token.
9780 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00009781 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00009782
9783 // If a single operand then chain to it. We don't need to revisit it.
9784 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00009785 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009786
Jim Laskey6ff23e52006-10-04 16:53:27 +00009787 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009788 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009789 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00009790}
9791
Nate Begeman1d4d4142005-09-01 00:19:25 +00009792// SelectionDAG::Combine - This is the entry point for the file.
9793//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00009794void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00009795 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00009796 /// run - This is the main entry point to this class.
9797 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00009798 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00009799}