blob: da4e1bad06aef4f0475d8ef6ce18aa1bebb21a32 [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);
Scott Michelfdc40a02009-02-17 22:15:04 +0000274
Dan Gohman475871a2008-07-27 21:46:04 +0000275 SDValue GetDemandedBits(SDValue V, const APInt &Mask);
Scott Michelfdc40a02009-02-17 22:15:04 +0000276
Jim Laskey6ff23e52006-10-04 16:53:27 +0000277 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
278 /// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000279 void GatherAllAliases(SDNode *N, SDValue OriginalChain,
280 SmallVector<SDValue, 8> &Aliases);
Jim Laskey6ff23e52006-10-04 16:53:27 +0000281
Jim Laskey096c22e2006-10-18 12:29:57 +0000282 /// isAlias - Return true if there is any possibility that the two addresses
283 /// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +0000284 bool isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +0000285 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000286 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000287 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +0000288 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000289 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000290 unsigned SrcValueAlign2,
291 const MDNode *TBAAInfo2) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000292
Jim Laskey7ca56af2006-10-11 13:47:09 +0000293 /// FindAliasInfo - Extracts the relevant alias information from the memory
294 /// node. Returns true if the operand was a load.
295 bool FindAliasInfo(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000296 SDValue &Ptr, int64_t &Size,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000297 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000298 unsigned &SrcValueAlignment,
299 const MDNode *&TBAAInfo) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000300
Jim Laskey279f0532006-09-25 16:29:54 +0000301 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000302 /// looking for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +0000303 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands92abc622009-01-31 15:50:11 +0000304
Nadav Rotemc653de62012-10-03 16:11:15 +0000305 /// Merge consecutive store operations into a wide store.
306 /// This optimization uses wide integers or vectors when possible.
307 /// \return True if some memory operations were changed.
308 bool MergeConsecutiveStores(StoreSDNode *N);
309
Chris Lattner2392ae72010-04-15 04:48:01 +0000310 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000311 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000312 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000313 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000314
Nate Begeman1d4d4142005-09-01 00:19:25 +0000315 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000316 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000317
Chris Lattner2392ae72010-04-15 04:48:01 +0000318 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000319
Chris Lattner2392ae72010-04-15 04:48:01 +0000320 /// getShiftAmountTy - Returns a type large enough to hold any valid
321 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000322 EVT getShiftAmountTy(EVT LHSTy) {
323 return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000324 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000325
Chris Lattner2392ae72010-04-15 04:48:01 +0000326 /// isTypeLegal - This method returns true if we are running before type
327 /// legalization or if the specified VT is legal.
328 bool isTypeLegal(const EVT &VT) {
329 if (!LegalTypes) return true;
330 return TLI.isTypeLegal(VT);
331 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000332 };
333}
334
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000335
336namespace {
337/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
338/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000339class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000340 DAGCombiner &DC;
341public:
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000342 explicit WorkListRemover(DAGCombiner &dc)
343 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000344
Duncan Sandsedfcf592008-06-11 11:42:12 +0000345 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000346 DC.removeFromWorkList(N);
347 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000348};
349}
350
Chris Lattner24664722006-03-01 04:53:38 +0000351//===----------------------------------------------------------------------===//
352// TargetLowering::DAGCombinerInfo implementation
353//===----------------------------------------------------------------------===//
354
355void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
356 ((DAGCombiner*)DC)->AddToWorkList(N);
357}
358
Cameron Zwariched3caf92011-04-02 02:40:26 +0000359void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
360 ((DAGCombiner*)DC)->removeFromWorkList(N);
361}
362
Dan Gohman475871a2008-07-27 21:46:04 +0000363SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000364CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
365 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000366}
367
Dan Gohman475871a2008-07-27 21:46:04 +0000368SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000369CombineTo(SDNode *N, SDValue Res, bool AddTo) {
370 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000371}
372
373
Dan Gohman475871a2008-07-27 21:46:04 +0000374SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000375CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
376 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000377}
378
Dan Gohmane5af2d32009-01-29 01:59:02 +0000379void TargetLowering::DAGCombinerInfo::
380CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
381 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
382}
Chris Lattner24664722006-03-01 04:53:38 +0000383
Chris Lattner24664722006-03-01 04:53:38 +0000384//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000385// Helper Functions
386//===----------------------------------------------------------------------===//
387
388/// isNegatibleForFree - Return 1 if we can compute the negated form of the
389/// specified expression for the same cost as the expression itself, or 2 if we
390/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000391static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000392 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000393 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000394 unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000395 // No compile time optimizations on this type.
Owen Anderson825b72b2009-08-11 20:47:22 +0000396 if (Op.getValueType() == MVT::ppcf128)
Dale Johannesendb44bf82007-10-16 23:38:29 +0000397 return 0;
398
Chris Lattner29446522007-05-14 22:04:50 +0000399 // fneg is removable even if it has multiple uses.
400 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000401
Chris Lattner29446522007-05-14 22:04:50 +0000402 // Don't allow anything with multiple uses.
403 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000404
Chris Lattner3adf9512007-05-25 02:19:06 +0000405 // Don't recurse exponentially.
406 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000407
Chris Lattner29446522007-05-14 22:04:50 +0000408 switch (Op.getOpcode()) {
409 default: return false;
410 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000411 // Don't invert constant FP values after legalize. The negated constant
412 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000413 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000414 case ISD::FADD:
415 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000416 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000417
Owen Andersonafd3d562012-03-06 00:29:31 +0000418 // After operation legalization, it might not be legal to create new FSUBs.
419 if (LegalOperations &&
420 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
421 return 0;
422
Craig Topper956342b2012-09-09 22:58:45 +0000423 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000424 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
425 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000426 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000427 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000428 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000429 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000430 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000431 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000432 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000433
Bill Wendlingd34470c2009-01-30 23:10:18 +0000434 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000435 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000436
Chris Lattner29446522007-05-14 22:04:50 +0000437 case ISD::FMUL:
438 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000439 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000440
Bill Wendlingd34470c2009-01-30 23:10:18 +0000441 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000442 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
443 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000444 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000445
Owen Andersonafd3d562012-03-06 00:29:31 +0000446 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000447 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000448
Chris Lattner29446522007-05-14 22:04:50 +0000449 case ISD::FP_EXTEND:
450 case ISD::FP_ROUND:
451 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000452 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000453 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000454 }
455}
456
457/// GetNegatedExpression - If isNegatibleForFree returns true, this function
458/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000459static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000460 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000461 // fneg is removable even if it has multiple uses.
462 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000463
Chris Lattner29446522007-05-14 22:04:50 +0000464 // Don't allow anything with multiple uses.
465 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000466
Chris Lattner3adf9512007-05-25 02:19:06 +0000467 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000468 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000469 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000470 case ISD::ConstantFP: {
471 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
472 V.changeSign();
473 return DAG.getConstantFP(V, Op.getValueType());
474 }
Chris Lattner29446522007-05-14 22:04:50 +0000475 case ISD::FADD:
476 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000477 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000478
Bill Wendlingd34470c2009-01-30 23:10:18 +0000479 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000480 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000481 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000482 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000483 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000484 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000485 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000486 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000487 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Bill Wendling35247c32009-01-30 00:45:56 +0000488 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000489 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000490 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000491 Op.getOperand(0));
492 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000493 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000494 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000495
Bill Wendlingd34470c2009-01-30 23:10:18 +0000496 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000497 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000498 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000499 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000500
Bill Wendlingd34470c2009-01-30 23:10:18 +0000501 // fold (fneg (fsub A, B)) -> (fsub B, A)
Bill Wendling35247c32009-01-30 00:45:56 +0000502 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
503 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000504
Chris Lattner29446522007-05-14 22:04:50 +0000505 case ISD::FMUL:
506 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000507 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000508
Bill Wendlingd34470c2009-01-30 23:10:18 +0000509 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000510 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000511 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000512 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000513 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000514 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000515 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000516 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000517
Bill Wendlingd34470c2009-01-30 23:10:18 +0000518 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Bill Wendling35247c32009-01-30 00:45:56 +0000519 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000520 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000521 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000522 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000523
Chris Lattner29446522007-05-14 22:04:50 +0000524 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000525 case ISD::FSIN:
Bill Wendling35247c32009-01-30 00:45:56 +0000526 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000527 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000528 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000529 case ISD::FP_ROUND:
Bill Wendling35247c32009-01-30 00:45:56 +0000530 return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000531 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000532 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000533 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000534 }
535}
Chris Lattner24664722006-03-01 04:53:38 +0000536
537
Nate Begeman4ebd8052005-09-01 23:24:04 +0000538// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
539// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000540// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000541// nodes based on the type of node we are checking. This simplifies life a
542// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000543static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
544 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000545 if (N.getOpcode() == ISD::SETCC) {
546 LHS = N.getOperand(0);
547 RHS = N.getOperand(1);
548 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000549 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000550 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000551 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000552 N.getOperand(2).getOpcode() == ISD::Constant &&
553 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000554 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000555 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
556 LHS = N.getOperand(0);
557 RHS = N.getOperand(1);
558 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000559 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000560 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000561 return false;
562}
563
Nate Begeman99801192005-09-07 23:25:52 +0000564// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
565// one use. If this is true, it allows the users to invert the operation for
566// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000567static bool isOneUseSetCC(SDValue N) {
568 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000569 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000570 return true;
571 return false;
572}
573
Bill Wendling35247c32009-01-30 00:45:56 +0000574SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
575 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000576 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000577 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
578 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000579 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000580 SDValue OpNode =
581 DAG.FoldConstantArithmetic(Opc, VT,
582 cast<ConstantSDNode>(N0.getOperand(1)),
583 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000584 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000585 }
586 if (N0.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000587 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendling35247c32009-01-30 00:45:56 +0000588 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
589 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000590 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000591 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000592 }
593 }
Bill Wendling35247c32009-01-30 00:45:56 +0000594
Nate Begemancd4d58c2006-02-03 06:46:56 +0000595 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
596 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000597 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000598 SDValue OpNode =
599 DAG.FoldConstantArithmetic(Opc, VT,
600 cast<ConstantSDNode>(N1.getOperand(1)),
601 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000602 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000603 }
604 if (N1.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000605 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendlingd69c3142009-01-30 02:23:43 +0000606 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000607 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000608 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000609 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000610 }
611 }
Bill Wendling35247c32009-01-30 00:45:56 +0000612
Dan Gohman475871a2008-07-27 21:46:04 +0000613 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000614}
615
Dan Gohman475871a2008-07-27 21:46:04 +0000616SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
617 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000618 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
619 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000620 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000621 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000622 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000623 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000624 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000625 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000626 assert((!To[i].getNode() ||
627 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000628 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000629 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000630 DAG.ReplaceAllUsesWith(N, To);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000631 if (AddTo) {
632 // Push the new nodes and any users onto the worklist
633 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000634 if (To[i].getNode()) {
635 AddToWorkList(To[i].getNode());
636 AddUsersToWorkList(To[i].getNode());
637 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000638 }
639 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000640
Dan Gohmandbe664a2009-01-19 21:44:21 +0000641 // Finally, if the node is now dead, remove it from the graph. The node
642 // may not be dead if the replacement process recursively simplified to
643 // something else needing this node.
644 if (N->use_empty()) {
645 // Nodes can be reintroduced into the worklist. Make sure we do not
646 // process a node that has been replaced.
647 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000648
Dan Gohmandbe664a2009-01-19 21:44:21 +0000649 // Finally, since the node is now dead, remove it from the graph.
650 DAG.DeleteNode(N);
651 }
Dan Gohman475871a2008-07-27 21:46:04 +0000652 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000653}
654
Evan Chenge5b51ac2010-04-17 06:13:15 +0000655void DAGCombiner::
656CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000657 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000658 // are deleted, make sure to remove them from our worklist.
659 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000660 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000661
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000662 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000663 AddToWorkList(TLO.New.getNode());
664 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000665
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000666 // Finally, if the node is now dead, remove it from the graph. The node
667 // may not be dead if the replacement process recursively simplified to
668 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000669 if (TLO.Old.getNode()->use_empty()) {
670 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000671
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000672 // If the operands of this node are only used by the node, they will now
673 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000674 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
675 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
676 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000677
Gabor Greifba36cb52008-08-28 21:40:38 +0000678 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000679 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000680}
681
682/// SimplifyDemandedBits - Check the specified integer node value to see if
683/// it can be simplified or if things it uses can be simplified by bit
684/// propagation. If so, return true.
685bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000686 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000687 APInt KnownZero, KnownOne;
688 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
689 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000690
Dan Gohmane5af2d32009-01-29 01:59:02 +0000691 // Revisit the node.
692 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000693
Dan Gohmane5af2d32009-01-29 01:59:02 +0000694 // Replace the old value with the new one.
695 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000696 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000697 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000698 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000699 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000700 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000701
Dan Gohmane5af2d32009-01-29 01:59:02 +0000702 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000703 return true;
704}
705
Evan Cheng95c57ea2010-04-24 04:43:44 +0000706void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
707 DebugLoc dl = Load->getDebugLoc();
708 EVT VT = Load->getValueType(0);
709 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000710
Evan Cheng95c57ea2010-04-24 04:43:44 +0000711 DEBUG(dbgs() << "\nReplacing.9 ";
712 Load->dump(&DAG);
713 dbgs() << "\nWith: ";
714 Trunc.getNode()->dump(&DAG);
715 dbgs() << '\n');
716 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000717 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
718 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
Evan Cheng95c57ea2010-04-24 04:43:44 +0000719 removeFromWorkList(Load);
720 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000721 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000722}
723
724SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
725 Replace = false;
Evan Cheng4c26e932010-04-19 19:29:22 +0000726 DebugLoc dl = Op.getDebugLoc();
Evan Chenge5b51ac2010-04-17 06:13:15 +0000727 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000728 EVT MemVT = LD->getMemoryVT();
729 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000730 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000731 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000732 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000733 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000734 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000735 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000736 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000737 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000738 LD->isNonTemporal(), LD->getAlignment());
739 }
740
Evan Cheng4c26e932010-04-19 19:29:22 +0000741 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000742 switch (Opc) {
743 default: break;
744 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000745 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000746 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000747 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000748 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000749 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000750 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000751 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000752 case ISD::Constant: {
753 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000754 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000755 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000756 }
Evan Chengcaf77402010-04-23 19:10:30 +0000757 }
758
759 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000760 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000761 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000762}
763
Evan Cheng95c57ea2010-04-24 04:43:44 +0000764SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000765 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
766 return SDValue();
767 EVT OldVT = Op.getValueType();
768 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000769 bool Replace = false;
770 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
771 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000772 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000773 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000774
775 if (Replace)
776 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
777 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000778 DAG.getValueType(OldVT));
779}
780
Evan Cheng95c57ea2010-04-24 04:43:44 +0000781SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000782 EVT OldVT = Op.getValueType();
783 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000784 bool Replace = false;
785 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
786 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000787 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000788 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000789
790 if (Replace)
791 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
792 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000793}
794
Evan Cheng64b7bf72010-04-16 06:14:10 +0000795/// PromoteIntBinOp - Promote the specified integer binary operation if the
796/// target indicates it is beneficial. e.g. On x86, it's usually better to
797/// promote i16 operations to i32 since i16 instructions are longer.
798SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
799 if (!LegalOperations)
800 return SDValue();
801
802 EVT VT = Op.getValueType();
803 if (VT.isVector() || !VT.isInteger())
804 return SDValue();
805
Evan Chenge5b51ac2010-04-17 06:13:15 +0000806 // If operation type is 'undesirable', e.g. i16 on x86, consider
807 // promoting it.
808 unsigned Opc = Op.getOpcode();
809 if (TLI.isTypeDesirableForOp(Opc, VT))
810 return SDValue();
811
Evan Cheng64b7bf72010-04-16 06:14:10 +0000812 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000813 // Consult target whether it is a good idea to promote this operation and
814 // what's the right type to promote it to.
815 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000816 assert(PVT != VT && "Don't know what type to promote to!");
817
Evan Cheng95c57ea2010-04-24 04:43:44 +0000818 bool Replace0 = false;
819 SDValue N0 = Op.getOperand(0);
820 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
821 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000822 return SDValue();
823
Evan Cheng95c57ea2010-04-24 04:43:44 +0000824 bool Replace1 = false;
825 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000826 SDValue NN1;
827 if (N0 == N1)
828 NN1 = NN0;
829 else {
830 NN1 = PromoteOperand(N1, PVT, Replace1);
831 if (NN1.getNode() == 0)
832 return SDValue();
833 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000834
Evan Cheng95c57ea2010-04-24 04:43:44 +0000835 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000836 if (NN1.getNode())
837 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000838
839 if (Replace0)
840 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
841 if (Replace1)
842 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000843
Evan Chengac7eae52010-04-27 19:48:13 +0000844 DEBUG(dbgs() << "\nPromoting ";
845 Op.getNode()->dump(&DAG));
Evan Cheng07c4e102010-04-22 20:19:46 +0000846 DebugLoc dl = Op.getDebugLoc();
847 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000848 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000849 }
850 return SDValue();
851}
852
853/// PromoteIntShiftOp - Promote the specified integer shift operation if the
854/// target indicates it is beneficial. e.g. On x86, it's usually better to
855/// promote i16 operations to i32 since i16 instructions are longer.
856SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
857 if (!LegalOperations)
858 return SDValue();
859
860 EVT VT = Op.getValueType();
861 if (VT.isVector() || !VT.isInteger())
862 return SDValue();
863
864 // If operation type is 'undesirable', e.g. i16 on x86, consider
865 // promoting it.
866 unsigned Opc = Op.getOpcode();
867 if (TLI.isTypeDesirableForOp(Opc, VT))
868 return SDValue();
869
870 EVT PVT = VT;
871 // Consult target whether it is a good idea to promote this operation and
872 // what's the right type to promote it to.
873 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
874 assert(PVT != VT && "Don't know what type to promote to!");
875
Evan Cheng95c57ea2010-04-24 04:43:44 +0000876 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000877 SDValue N0 = Op.getOperand(0);
878 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000879 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000880 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000881 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000882 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000883 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000884 if (N0.getNode() == 0)
885 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000886
Evan Chenge5b51ac2010-04-17 06:13:15 +0000887 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000888 if (Replace)
889 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000890
Evan Chengac7eae52010-04-27 19:48:13 +0000891 DEBUG(dbgs() << "\nPromoting ";
892 Op.getNode()->dump(&DAG));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000893 DebugLoc dl = Op.getDebugLoc();
894 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000895 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000896 }
897 return SDValue();
898}
899
Evan Cheng4c26e932010-04-19 19:29:22 +0000900SDValue DAGCombiner::PromoteExtend(SDValue Op) {
901 if (!LegalOperations)
902 return SDValue();
903
904 EVT VT = Op.getValueType();
905 if (VT.isVector() || !VT.isInteger())
906 return SDValue();
907
908 // If operation type is 'undesirable', e.g. i16 on x86, consider
909 // promoting it.
910 unsigned Opc = Op.getOpcode();
911 if (TLI.isTypeDesirableForOp(Opc, VT))
912 return SDValue();
913
914 EVT PVT = VT;
915 // Consult target whether it is a good idea to promote this operation and
916 // what's the right type to promote it to.
917 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
918 assert(PVT != VT && "Don't know what type to promote to!");
919 // fold (aext (aext x)) -> (aext x)
920 // fold (aext (zext x)) -> (zext x)
921 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000922 DEBUG(dbgs() << "\nPromoting ";
923 Op.getNode()->dump(&DAG));
Evan Cheng4c26e932010-04-19 19:29:22 +0000924 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
925 }
926 return SDValue();
927}
928
929bool DAGCombiner::PromoteLoad(SDValue Op) {
930 if (!LegalOperations)
931 return false;
932
933 EVT VT = Op.getValueType();
934 if (VT.isVector() || !VT.isInteger())
935 return false;
936
937 // If operation type is 'undesirable', e.g. i16 on x86, consider
938 // promoting it.
939 unsigned Opc = Op.getOpcode();
940 if (TLI.isTypeDesirableForOp(Opc, VT))
941 return false;
942
943 EVT PVT = VT;
944 // Consult target whether it is a good idea to promote this operation and
945 // what's the right type to promote it to.
946 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
947 assert(PVT != VT && "Don't know what type to promote to!");
948
949 DebugLoc dl = Op.getDebugLoc();
950 SDNode *N = Op.getNode();
951 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000952 EVT MemVT = LD->getMemoryVT();
953 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000954 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000955 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000956 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000957 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000958 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000959 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000960 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000961 LD->isNonTemporal(), LD->getAlignment());
962 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
963
Evan Cheng95c57ea2010-04-24 04:43:44 +0000964 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000965 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000966 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000967 Result.getNode()->dump(&DAG);
968 dbgs() << '\n');
969 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000970 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
971 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
Evan Cheng4c26e932010-04-19 19:29:22 +0000972 removeFromWorkList(N);
973 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000974 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000975 return true;
976 }
977 return false;
978}
979
Evan Chenge5b51ac2010-04-17 06:13:15 +0000980
Chris Lattner29446522007-05-14 22:04:50 +0000981//===----------------------------------------------------------------------===//
982// Main DAG Combiner implementation
983//===----------------------------------------------------------------------===//
984
Duncan Sands25cf2272008-11-24 14:53:14 +0000985void DAGCombiner::Run(CombineLevel AtLevel) {
986 // set the instance variables, so that the various visit routines may use it.
987 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +0000988 LegalOperations = Level >= AfterLegalizeVectorOps;
989 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +0000990
Evan Cheng17a568b2008-08-29 22:21:44 +0000991 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +0000992 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
993 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +0000994 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +0000995
Evan Cheng17a568b2008-08-29 22:21:44 +0000996 // Create a dummy node (which is not added to allnodes), that adds a reference
997 // to the root node, preventing it from being deleted, and tracking any
998 // changes of the root.
999 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +00001000
Jim Laskey26f7fa72006-10-17 19:33:52 +00001001 // The root of the dag may dangle to deleted nodes until the dag combiner is
1002 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +00001003 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00001004
James Molloy6660c052012-02-16 09:17:04 +00001005 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +00001006 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +00001007 while (!WorkListContents.empty()) {
1008 SDNode *N;
1009 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1010 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1011 // worklist *should* contain, and check the node we want to visit is should
1012 // actually be visited.
1013 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001014 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001015 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001016
Evan Cheng17a568b2008-08-29 22:21:44 +00001017 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1018 // N is deleted from the DAG, since they too may now be dead or may have a
1019 // reduced number of uses, allowing other xforms.
1020 if (N->use_empty() && N != &Dummy) {
1021 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1022 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001023
Evan Cheng17a568b2008-08-29 22:21:44 +00001024 DAG.DeleteNode(N);
1025 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001026 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001027
Evan Cheng17a568b2008-08-29 22:21:44 +00001028 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001029
Evan Cheng17a568b2008-08-29 22:21:44 +00001030 if (RV.getNode() == 0)
1031 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001032
Evan Cheng17a568b2008-08-29 22:21:44 +00001033 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001034
Evan Cheng17a568b2008-08-29 22:21:44 +00001035 // If we get back the same node we passed in, rather than a new node or
1036 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001037 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001038 // mechanics for us, we have no work to do in this case.
1039 if (RV.getNode() == N)
1040 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001041
Evan Cheng17a568b2008-08-29 22:21:44 +00001042 assert(N->getOpcode() != ISD::DELETED_NODE &&
1043 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1044 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001045
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001046 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001047 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001048 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001049 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001050 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001051
Devang Patel9728ea22011-05-23 22:04:42 +00001052 // Transfer debug value.
1053 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001054 WorkListRemover DeadNodes(*this);
1055 if (N->getNumValues() == RV.getNode()->getNumValues())
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001056 DAG.ReplaceAllUsesWith(N, RV.getNode());
Evan Cheng17a568b2008-08-29 22:21:44 +00001057 else {
1058 assert(N->getValueType(0) == RV.getValueType() &&
1059 N->getNumValues() == 1 && "Type mismatch");
1060 SDValue OpV = RV;
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001061 DAG.ReplaceAllUsesWith(N, &OpV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001062 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001063
Evan Cheng17a568b2008-08-29 22:21:44 +00001064 // Push the new node and any users onto the worklist
1065 AddToWorkList(RV.getNode());
1066 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001067
Evan Cheng17a568b2008-08-29 22:21:44 +00001068 // Add any uses of the old node to the worklist in case this node is the
1069 // last one that uses them. They may become dead after this node is
1070 // deleted.
1071 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1072 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001073
Dan Gohmandbe664a2009-01-19 21:44:21 +00001074 // Finally, if the node is now dead, remove it from the graph. The node
1075 // may not be dead if the replacement process recursively simplified to
1076 // something else needing this node.
1077 if (N->use_empty()) {
1078 // Nodes can be reintroduced into the worklist. Make sure we do not
1079 // process a node that has been replaced.
1080 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001081
Dan Gohmandbe664a2009-01-19 21:44:21 +00001082 // Finally, since the node is now dead, remove it from the graph.
1083 DAG.DeleteNode(N);
1084 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001085 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001086
Chris Lattner95038592005-10-05 06:35:28 +00001087 // If the root changed (e.g. it was a dead load, update the root).
1088 DAG.setRoot(Dummy.getValue());
Hal Finkel31490ba2012-04-16 03:33:22 +00001089 DAG.RemoveDeadNodes();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001090}
1091
Dan Gohman475871a2008-07-27 21:46:04 +00001092SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001093 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001094 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001095 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001096 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001097 case ISD::ADD: return visitADD(N);
1098 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001099 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001100 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001101 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001102 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001103 case ISD::MUL: return visitMUL(N);
1104 case ISD::SDIV: return visitSDIV(N);
1105 case ISD::UDIV: return visitUDIV(N);
1106 case ISD::SREM: return visitSREM(N);
1107 case ISD::UREM: return visitUREM(N);
1108 case ISD::MULHU: return visitMULHU(N);
1109 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001110 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1111 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001112 case ISD::SMULO: return visitSMULO(N);
1113 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001114 case ISD::SDIVREM: return visitSDIVREM(N);
1115 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001116 case ISD::AND: return visitAND(N);
1117 case ISD::OR: return visitOR(N);
1118 case ISD::XOR: return visitXOR(N);
1119 case ISD::SHL: return visitSHL(N);
1120 case ISD::SRA: return visitSRA(N);
1121 case ISD::SRL: return visitSRL(N);
1122 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001123 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001124 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001125 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001126 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001127 case ISD::SELECT: return visitSELECT(N);
1128 case ISD::SELECT_CC: return visitSELECT_CC(N);
1129 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001130 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1131 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001132 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001133 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1134 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001135 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001136 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001137 case ISD::FADD: return visitFADD(N);
1138 case ISD::FSUB: return visitFSUB(N);
1139 case ISD::FMUL: return visitFMUL(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00001140 case ISD::FMA: return visitFMA(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001141 case ISD::FDIV: return visitFDIV(N);
1142 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001143 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001144 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1145 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1146 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1147 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1148 case ISD::FP_ROUND: return visitFP_ROUND(N);
1149 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1150 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1151 case ISD::FNEG: return visitFNEG(N);
1152 case ISD::FABS: return visitFABS(N);
Owen Anderson7c626d32012-08-13 23:32:49 +00001153 case ISD::FFLOOR: return visitFFLOOR(N);
1154 case ISD::FCEIL: return visitFCEIL(N);
1155 case ISD::FTRUNC: return visitFTRUNC(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001156 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001157 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001158 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001159 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001160 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001161 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001162 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1163 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001164 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001165 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001166 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001167 }
Dan Gohman475871a2008-07-27 21:46:04 +00001168 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001169}
1170
Dan Gohman475871a2008-07-27 21:46:04 +00001171SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001172 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001173
1174 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001175 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001176 assert(N->getOpcode() != ISD::DELETED_NODE &&
1177 "Node was deleted but visit returned NULL!");
1178
1179 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1180 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1181
1182 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001183 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001184 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001185
1186 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1187 }
1188 }
1189
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001190 // If nothing happened still, try promoting the operation.
1191 if (RV.getNode() == 0) {
1192 switch (N->getOpcode()) {
1193 default: break;
1194 case ISD::ADD:
1195 case ISD::SUB:
1196 case ISD::MUL:
1197 case ISD::AND:
1198 case ISD::OR:
1199 case ISD::XOR:
1200 RV = PromoteIntBinOp(SDValue(N, 0));
1201 break;
1202 case ISD::SHL:
1203 case ISD::SRA:
1204 case ISD::SRL:
1205 RV = PromoteIntShiftOp(SDValue(N, 0));
1206 break;
1207 case ISD::SIGN_EXTEND:
1208 case ISD::ZERO_EXTEND:
1209 case ISD::ANY_EXTEND:
1210 RV = PromoteExtend(SDValue(N, 0));
1211 break;
1212 case ISD::LOAD:
1213 if (PromoteLoad(SDValue(N, 0)))
1214 RV = SDValue(N, 0);
1215 break;
1216 }
1217 }
1218
Scott Michelfdc40a02009-02-17 22:15:04 +00001219 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001220 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001221 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001222 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1223 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001224 SDValue N0 = N->getOperand(0);
1225 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001226
Evan Cheng08b11732008-03-22 01:55:50 +00001227 // Constant operands are canonicalized to RHS.
1228 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001229 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001230 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1231 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001232 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001233 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001234 }
1235 }
1236
Dan Gohman389079b2007-10-08 17:57:15 +00001237 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001238}
Dan Gohman389079b2007-10-08 17:57:15 +00001239
Chris Lattner6270f682006-10-08 22:57:01 +00001240/// getInputChainForNode - Given a node, return its input chain if it has one,
1241/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001242static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001243 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001244 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001245 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001246 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001247 return N->getOperand(NumOps-1);
1248 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001249 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001250 return N->getOperand(i);
1251 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001252 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001253}
1254
Dan Gohman475871a2008-07-27 21:46:04 +00001255SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001256 // If N has two operands, where one has an input chain equal to the other,
1257 // the 'other' chain is redundant.
1258 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001259 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001260 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001261 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001262 return N->getOperand(1);
1263 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001264
Chris Lattnerc76d4412007-05-16 06:37:59 +00001265 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001266 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001267 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001268 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001269
Jim Laskey6ff23e52006-10-04 16:53:27 +00001270 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001271 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001272
Jim Laskey71382342006-10-07 23:37:56 +00001273 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001274 // encountered.
1275 for (unsigned i = 0; i < TFs.size(); ++i) {
1276 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001277
Jim Laskey6ff23e52006-10-04 16:53:27 +00001278 // Check each of the operands.
1279 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001280 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001281
Jim Laskey6ff23e52006-10-04 16:53:27 +00001282 switch (Op.getOpcode()) {
1283 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001284 // Entry tokens don't need to be added to the list. They are
1285 // rededundant.
1286 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001287 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001288
Jim Laskey6ff23e52006-10-04 16:53:27 +00001289 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001290 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001291 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001292 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001293 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001294 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001295 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001296 Changed = true;
1297 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001298 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001299 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001300
Jim Laskey6ff23e52006-10-04 16:53:27 +00001301 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001302 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001303 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001304 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001305 else
1306 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001307 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001308 }
1309 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001310 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001311
Dan Gohman475871a2008-07-27 21:46:04 +00001312 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001313
1314 // If we've change things around then replace token factor.
1315 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001316 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001317 // The entry token is the only possible outcome.
1318 Result = DAG.getEntryNode();
1319 } else {
1320 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001321 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001322 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001323 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001324
Jim Laskey274062c2006-10-13 23:32:28 +00001325 // Don't add users to work list.
1326 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001327 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001328
Jim Laskey6ff23e52006-10-04 16:53:27 +00001329 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001330}
1331
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001332/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001333SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001334 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001335 // Replacing results may cause a different MERGE_VALUES to suddenly
1336 // be CSE'd with N, and carry its uses with it. Iterate until no
1337 // uses remain, to ensure that the node can be safely deleted.
Pete Cooper3affd9e2012-06-20 19:35:43 +00001338 // First add the users of this node to the work list so that they
1339 // can be tried again once they have new operands.
1340 AddUsersToWorkList(N);
Dan Gohman00edf392009-08-10 23:43:19 +00001341 do {
1342 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001343 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
Dan Gohman00edf392009-08-10 23:43:19 +00001344 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001345 removeFromWorkList(N);
1346 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001347 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001348}
1349
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001350static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001351SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1352 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001353 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001354 SDValue N00 = N0.getOperand(0);
1355 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001356 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001357
Gabor Greifba36cb52008-08-28 21:40:38 +00001358 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001359 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001360 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1361 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1362 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1363 N00.getOperand(0), N01),
1364 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1365 N00.getOperand(1), N01));
1366 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001367 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001368
Dan Gohman475871a2008-07-27 21:46:04 +00001369 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001370}
1371
Dan Gohman475871a2008-07-27 21:46:04 +00001372SDValue DAGCombiner::visitADD(SDNode *N) {
1373 SDValue N0 = N->getOperand(0);
1374 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001375 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1376 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001377 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001378
1379 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001380 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001381 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001382 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001383 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001384
Dan Gohman613e0d82007-07-03 14:03:57 +00001385 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001386 if (N0.getOpcode() == ISD::UNDEF)
1387 return N0;
1388 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001389 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001390 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001391 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001392 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001393 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001394 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001395 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001396 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001397 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001398 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001399 // fold (add Sym, c) -> Sym+c
1400 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001401 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001402 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001403 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001404 GA->getOffset() +
1405 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001406 // fold ((c1-A)+c2) -> (c1+c2)-A
1407 if (N1C && N0.getOpcode() == ISD::SUB)
1408 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001409 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001410 DAG.getConstant(N1C->getAPIntValue()+
1411 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001412 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001413 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001414 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001415 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001416 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001417 // fold ((0-A) + B) -> B-A
1418 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1419 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001420 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001421 // fold (A + (0-B)) -> A-B
1422 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1423 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001424 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001425 // fold (A+(B-A)) -> B
1426 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001427 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001428 // fold ((B-A)+A) -> B
1429 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1430 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001431 // fold (A+(B-(A+C))) to (B-C)
1432 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001433 N0 == N1.getOperand(1).getOperand(0))
1434 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001435 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001436 // fold (A+(B-(C+A))) to (B-C)
1437 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001438 N0 == N1.getOperand(1).getOperand(1))
1439 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001440 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001441 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001442 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1443 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001444 N0 == N1.getOperand(0).getOperand(1))
1445 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1446 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001447
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001448 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1449 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1450 SDValue N00 = N0.getOperand(0);
1451 SDValue N01 = N0.getOperand(1);
1452 SDValue N10 = N1.getOperand(0);
1453 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001454
1455 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1456 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1457 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1458 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001459 }
Chris Lattner947c2892006-03-13 06:51:27 +00001460
Dan Gohman475871a2008-07-27 21:46:04 +00001461 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1462 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001463
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001464 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001465 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001466 APInt LHSZero, LHSOne;
1467 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001468 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001469
Dan Gohman948d8ea2008-02-20 16:33:30 +00001470 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001471 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001472
Chris Lattner947c2892006-03-13 06:51:27 +00001473 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1474 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001475 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001476 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001477 }
1478 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001479
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001480 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001481 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001482 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001483 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001484 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001485 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001486 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001487 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001488 }
1489
Dan Gohmancd9e1552010-01-19 23:30:49 +00001490 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1491 if (N1.getOpcode() == ISD::SHL &&
1492 N1.getOperand(0).getOpcode() == ISD::SUB)
1493 if (ConstantSDNode *C =
1494 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1495 if (C->getAPIntValue() == 0)
1496 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1497 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1498 N1.getOperand(0).getOperand(1),
1499 N1.getOperand(1)));
1500 if (N0.getOpcode() == ISD::SHL &&
1501 N0.getOperand(0).getOpcode() == ISD::SUB)
1502 if (ConstantSDNode *C =
1503 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1504 if (C->getAPIntValue() == 0)
1505 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1506 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1507 N0.getOperand(0).getOperand(1),
1508 N0.getOperand(1)));
1509
Owen Andersonbc146b02010-09-21 20:42:50 +00001510 if (N1.getOpcode() == ISD::AND) {
1511 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001512 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001513 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1514 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001515
Owen Andersonbc146b02010-09-21 20:42:50 +00001516 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1517 // and similar xforms where the inner op is either ~0 or 0.
1518 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1519 DebugLoc DL = N->getDebugLoc();
1520 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1521 }
1522 }
1523
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001524 // add (sext i1), X -> sub X, (zext i1)
1525 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1526 N0.getOperand(0).getValueType() == MVT::i1 &&
1527 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1528 DebugLoc DL = N->getDebugLoc();
1529 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1530 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1531 }
1532
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001533 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001534}
1535
Dan Gohman475871a2008-07-27 21:46:04 +00001536SDValue DAGCombiner::visitADDC(SDNode *N) {
1537 SDValue N0 = N->getOperand(0);
1538 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001539 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1540 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001541 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001542
Chris Lattner91153682007-03-04 20:03:15 +00001543 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001544 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001545 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001546 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001547 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001548
Chris Lattner91153682007-03-04 20:03:15 +00001549 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001550 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001551 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001552
Chris Lattnerb6541762007-03-04 20:40:38 +00001553 // fold (addc x, 0) -> x + no carry out
1554 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001555 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001556 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001557
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001558 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001559 APInt LHSZero, LHSOne;
1560 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001561 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001562
Dan Gohman948d8ea2008-02-20 16:33:30 +00001563 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001564 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001565
Chris Lattnerb6541762007-03-04 20:40:38 +00001566 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1567 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001568 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendling14036c02009-01-30 02:38:00 +00001569 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001570 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001571 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001572 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001573
Dan Gohman475871a2008-07-27 21:46:04 +00001574 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001575}
1576
Dan Gohman475871a2008-07-27 21:46:04 +00001577SDValue DAGCombiner::visitADDE(SDNode *N) {
1578 SDValue N0 = N->getOperand(0);
1579 SDValue N1 = N->getOperand(1);
1580 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001581 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1582 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001583
Chris Lattner91153682007-03-04 20:03:15 +00001584 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001585 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001586 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1587 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001588
Chris Lattnerb6541762007-03-04 20:40:38 +00001589 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001590 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001591 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001592
Dan Gohman475871a2008-07-27 21:46:04 +00001593 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001594}
1595
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001596// Since it may not be valid to emit a fold to zero for vector initializers
1597// check if we can before folding.
1598static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001599 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001600 if (!VT.isVector()) {
1601 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001602 }
1603 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001604 // Produce a vector of zeros.
1605 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1606 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1607 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1608 &Ops[0], Ops.size());
1609 }
1610 return SDValue();
1611}
1612
Dan Gohman475871a2008-07-27 21:46:04 +00001613SDValue DAGCombiner::visitSUB(SDNode *N) {
1614 SDValue N0 = N->getOperand(0);
1615 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001616 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1617 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001618 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1619 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001620 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001621
Dan Gohman7f321562007-06-25 16:23:39 +00001622 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001623 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001624 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001625 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001626 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001627
Chris Lattner854077d2005-10-17 01:07:11 +00001628 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001629 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001630 if (N0 == N1)
1631 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001632 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001633 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001634 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001635 // fold (sub x, c) -> (add x, -c)
1636 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001637 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001638 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001639 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1640 if (N0C && N0C->isAllOnesValue())
1641 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001642 // fold A-(A-B) -> B
1643 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1644 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001645 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001646 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001647 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001648 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001649 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001650 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001651 // fold C2-(A+C1) -> (C2-C1)-A
1652 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00001653 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(),
1654 VT);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001655 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
Bill Wendling96cb1122012-07-19 00:04:14 +00001656 N1.getOperand(0));
Eric Christopher7332e6e2011-07-14 01:12:15 +00001657 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001658 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001659 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001660 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1661 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001662 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001663 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1664 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001665 // fold ((A+(C+B))-B) -> A+C
1666 if (N0.getOpcode() == ISD::ADD &&
1667 N0.getOperand(1).getOpcode() == ISD::ADD &&
1668 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001669 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1670 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001671 // fold ((A-(B-C))-C) -> A-B
1672 if (N0.getOpcode() == ISD::SUB &&
1673 N0.getOperand(1).getOpcode() == ISD::SUB &&
1674 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001675 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1676 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001677
Dan Gohman613e0d82007-07-03 14:03:57 +00001678 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001679 if (N0.getOpcode() == ISD::UNDEF)
1680 return N0;
1681 if (N1.getOpcode() == ISD::UNDEF)
1682 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001683
Dan Gohman6520e202008-10-18 02:06:02 +00001684 // If the relocation model supports it, consider symbol offsets.
1685 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001686 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001687 // fold (sub Sym, c) -> Sym-c
1688 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001689 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001690 GA->getOffset() -
1691 (uint64_t)N1C->getSExtValue());
1692 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1693 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1694 if (GA->getGlobal() == GB->getGlobal())
1695 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1696 VT);
1697 }
1698
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001699 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001700}
1701
Craig Toppercc274522012-01-07 09:06:39 +00001702SDValue DAGCombiner::visitSUBC(SDNode *N) {
1703 SDValue N0 = N->getOperand(0);
1704 SDValue N1 = N->getOperand(1);
1705 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1706 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1707 EVT VT = N0.getValueType();
1708
1709 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001710 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001711 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1712 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1713 MVT::Glue));
1714
1715 // fold (subc x, x) -> 0 + no borrow
1716 if (N0 == N1)
1717 return CombineTo(N, DAG.getConstant(0, VT),
1718 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1719 MVT::Glue));
1720
1721 // fold (subc x, 0) -> x + no borrow
1722 if (N1C && N1C->isNullValue())
1723 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1724 MVT::Glue));
1725
1726 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1727 if (N0C && N0C->isAllOnesValue())
1728 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1729 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1730 MVT::Glue));
1731
1732 return SDValue();
1733}
1734
1735SDValue DAGCombiner::visitSUBE(SDNode *N) {
1736 SDValue N0 = N->getOperand(0);
1737 SDValue N1 = N->getOperand(1);
1738 SDValue CarryIn = N->getOperand(2);
1739
1740 // fold (sube x, y, false) -> (subc x, y)
1741 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1742 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1743
1744 return SDValue();
1745}
1746
Dan Gohman475871a2008-07-27 21:46:04 +00001747SDValue DAGCombiner::visitMUL(SDNode *N) {
1748 SDValue N0 = N->getOperand(0);
1749 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001750 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1751 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001752 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001753
Dan Gohman7f321562007-06-25 16:23:39 +00001754 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001755 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001756 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001757 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001758 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001759
Dan Gohman613e0d82007-07-03 14:03:57 +00001760 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001761 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001762 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001763 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001764 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001765 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001766 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001767 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001768 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001769 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001770 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001771 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001772 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001773 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001774 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1775 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001776 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001777 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001778 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001779 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001780 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001781 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001782 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1783 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001784 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001785 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001786 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1787 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001788 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001789 DAG.getConstant(Log2Val,
1790 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001791 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001792 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001793 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001794 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001795 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1796 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001797 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001798 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1799 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001800 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001801
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001802 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1803 // use.
1804 {
Dan Gohman475871a2008-07-27 21:46:04 +00001805 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001806 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1807 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001808 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001809 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001810 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001811 isa<ConstantSDNode>(N1.getOperand(1)) &&
1812 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001813 Sh = N1; Y = N0;
1814 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001815
Gabor Greifba36cb52008-08-28 21:40:38 +00001816 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001817 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1818 Sh.getOperand(0), Y);
1819 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1820 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001821 }
1822 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001823
Chris Lattnera1deca32006-03-04 23:33:26 +00001824 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001825 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001826 isa<ConstantSDNode>(N0.getOperand(1)))
1827 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1828 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1829 N0.getOperand(0), N1),
1830 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1831 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001832
Nate Begemancd4d58c2006-02-03 06:46:56 +00001833 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001834 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001835 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001836 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001837
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001838 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001839}
1840
Dan Gohman475871a2008-07-27 21:46:04 +00001841SDValue DAGCombiner::visitSDIV(SDNode *N) {
1842 SDValue N0 = N->getOperand(0);
1843 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001844 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1845 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001846 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001847
Dan Gohman7f321562007-06-25 16:23:39 +00001848 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001849 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001850 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001851 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001852 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001853
Nate Begeman1d4d4142005-09-01 00:19:25 +00001854 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001855 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001856 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001857 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001858 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001859 return N0;
1860 // fold (sdiv X, -1) -> 0-X
1861 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001862 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1863 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001864 // If we know the sign bits of both operands are zero, strength reduce to a
1865 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001866 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001867 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001868 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1869 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001870 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001871 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001872 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001873 (N1C->getAPIntValue().isPowerOf2() ||
1874 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001875 // If dividing by powers of two is cheap, then don't perform the following
1876 // fold.
1877 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001878 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001879
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001880 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001881
Chris Lattner8f4880b2006-02-16 08:02:36 +00001882 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001883 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1884 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001885 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001886 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001887
Chris Lattner8f4880b2006-02-16 08:02:36 +00001888 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001889 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1890 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001891 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001892 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001893 AddToWorkList(SRL.getNode());
1894 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001895 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001896 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001897
Nate Begeman405e3ec2005-10-21 00:02:42 +00001898 // If we're dividing by a positive value, we're done. Otherwise, we must
1899 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001900 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001901 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001902
Gabor Greifba36cb52008-08-28 21:40:38 +00001903 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001904 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1905 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001906 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001907
Nate Begeman69575232005-10-20 02:15:44 +00001908 // if integer divide is expensive and we satisfy the requirements, emit an
1909 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001910 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001911 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001912 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001913 }
Dan Gohman7f321562007-06-25 16:23:39 +00001914
Dan Gohman613e0d82007-07-03 14:03:57 +00001915 // undef / X -> 0
1916 if (N0.getOpcode() == ISD::UNDEF)
1917 return DAG.getConstant(0, VT);
1918 // X / undef -> undef
1919 if (N1.getOpcode() == ISD::UNDEF)
1920 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001921
Dan Gohman475871a2008-07-27 21:46:04 +00001922 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001923}
1924
Dan Gohman475871a2008-07-27 21:46:04 +00001925SDValue DAGCombiner::visitUDIV(SDNode *N) {
1926 SDValue N0 = N->getOperand(0);
1927 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001928 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1929 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001930 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001931
Dan Gohman7f321562007-06-25 16:23:39 +00001932 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001933 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001934 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001935 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001936 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001937
Nate Begeman1d4d4142005-09-01 00:19:25 +00001938 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001939 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001940 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001941 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001942 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001943 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001944 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001945 getShiftAmountTy(N0.getValueType())));
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001946 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001947 if (N1.getOpcode() == ISD::SHL) {
1948 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001949 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001950 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001951 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1952 N1.getOperand(1),
1953 DAG.getConstant(SHC->getAPIntValue()
1954 .logBase2(),
1955 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001956 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001957 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001958 }
1959 }
1960 }
Nate Begeman69575232005-10-20 02:15:44 +00001961 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001962 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001963 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001964 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001965 }
Dan Gohman7f321562007-06-25 16:23:39 +00001966
Dan Gohman613e0d82007-07-03 14:03:57 +00001967 // undef / X -> 0
1968 if (N0.getOpcode() == ISD::UNDEF)
1969 return DAG.getConstant(0, VT);
1970 // X / undef -> undef
1971 if (N1.getOpcode() == ISD::UNDEF)
1972 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001973
Dan Gohman475871a2008-07-27 21:46:04 +00001974 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001975}
1976
Dan Gohman475871a2008-07-27 21:46:04 +00001977SDValue DAGCombiner::visitSREM(SDNode *N) {
1978 SDValue N0 = N->getOperand(0);
1979 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001980 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1981 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001982 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001983
Nate Begeman1d4d4142005-09-01 00:19:25 +00001984 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001985 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001986 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001987 // If we know the sign bits of both operands are zero, strength reduce to a
1988 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001989 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001990 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001991 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00001992 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001993
Dan Gohman77003042007-11-26 23:46:11 +00001994 // If X/C can be simplified by the division-by-constant logic, lower
1995 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001996 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001997 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001998 AddToWorkList(Div.getNode());
1999 SDValue OptimizedDiv = combine(Div.getNode());
2000 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002001 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2002 OptimizedDiv, N1);
2003 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002004 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002005 return Sub;
2006 }
Chris Lattner26d29902006-10-12 20:58:32 +00002007 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002008
Dan Gohman613e0d82007-07-03 14:03:57 +00002009 // undef % X -> 0
2010 if (N0.getOpcode() == ISD::UNDEF)
2011 return DAG.getConstant(0, VT);
2012 // X % undef -> undef
2013 if (N1.getOpcode() == ISD::UNDEF)
2014 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002015
Dan Gohman475871a2008-07-27 21:46:04 +00002016 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002017}
2018
Dan Gohman475871a2008-07-27 21:46:04 +00002019SDValue DAGCombiner::visitUREM(SDNode *N) {
2020 SDValue N0 = N->getOperand(0);
2021 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002022 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2023 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002024 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002025
Nate Begeman1d4d4142005-09-01 00:19:25 +00002026 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002027 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002028 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002029 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002030 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002031 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002032 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002033 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2034 if (N1.getOpcode() == ISD::SHL) {
2035 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002036 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002037 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002038 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002039 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002040 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002041 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002042 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002043 }
2044 }
2045 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002046
Dan Gohman77003042007-11-26 23:46:11 +00002047 // If X/C can be simplified by the division-by-constant logic, lower
2048 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002049 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002050 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002051 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002052 SDValue OptimizedDiv = combine(Div.getNode());
2053 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002054 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2055 OptimizedDiv, N1);
2056 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002057 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002058 return Sub;
2059 }
Chris Lattner26d29902006-10-12 20:58:32 +00002060 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002061
Dan Gohman613e0d82007-07-03 14:03:57 +00002062 // undef % X -> 0
2063 if (N0.getOpcode() == ISD::UNDEF)
2064 return DAG.getConstant(0, VT);
2065 // X % undef -> undef
2066 if (N1.getOpcode() == ISD::UNDEF)
2067 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002068
Dan Gohman475871a2008-07-27 21:46:04 +00002069 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002070}
2071
Dan Gohman475871a2008-07-27 21:46:04 +00002072SDValue DAGCombiner::visitMULHS(SDNode *N) {
2073 SDValue N0 = N->getOperand(0);
2074 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002075 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002076 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002077 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002078
Nate Begeman1d4d4142005-09-01 00:19:25 +00002079 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002080 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002081 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002082 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002083 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002084 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2085 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002086 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002087 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002088 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002089 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002090
Chris Lattnerde1c3602010-12-13 08:39:01 +00002091 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2092 // plus a shift.
2093 if (VT.isSimple() && !VT.isVector()) {
2094 MVT Simple = VT.getSimpleVT();
2095 unsigned SimpleSize = Simple.getSizeInBits();
2096 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2097 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2098 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2099 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2100 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002101 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002102 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002103 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2104 }
2105 }
Owen Anderson95771af2011-02-25 21:41:48 +00002106
Dan Gohman475871a2008-07-27 21:46:04 +00002107 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002108}
2109
Dan Gohman475871a2008-07-27 21:46:04 +00002110SDValue DAGCombiner::visitMULHU(SDNode *N) {
2111 SDValue N0 = N->getOperand(0);
2112 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002113 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002114 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002115 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002116
Nate Begeman1d4d4142005-09-01 00:19:25 +00002117 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002118 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002119 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002120 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002121 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002122 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002123 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002124 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002125 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002126
Chris Lattnerde1c3602010-12-13 08:39:01 +00002127 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2128 // plus a shift.
2129 if (VT.isSimple() && !VT.isVector()) {
2130 MVT Simple = VT.getSimpleVT();
2131 unsigned SimpleSize = Simple.getSizeInBits();
2132 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2133 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2134 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2135 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2136 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2137 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002138 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002139 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2140 }
2141 }
Owen Anderson95771af2011-02-25 21:41:48 +00002142
Dan Gohman475871a2008-07-27 21:46:04 +00002143 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002144}
2145
Dan Gohman389079b2007-10-08 17:57:15 +00002146/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2147/// compute two values. LoOp and HiOp give the opcodes for the two computations
2148/// that are being performed. Return true if a simplification was made.
2149///
Scott Michelfdc40a02009-02-17 22:15:04 +00002150SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002151 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002152 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002153 bool HiExists = N->hasAnyUseOfValue(1);
2154 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002155 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002156 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002157 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2158 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002159 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002160 }
2161
2162 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002163 bool LoExists = N->hasAnyUseOfValue(0);
2164 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002165 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002166 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002167 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2168 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002169 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002170 }
2171
Evan Cheng44711942007-11-08 09:25:29 +00002172 // If both halves are used, return as it is.
2173 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002174 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002175
2176 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002177 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002178 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2179 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002180 AddToWorkList(Lo.getNode());
2181 SDValue LoOpt = combine(Lo.getNode());
2182 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002183 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002184 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002185 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002186 }
2187
Evan Cheng44711942007-11-08 09:25:29 +00002188 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002189 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002190 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002191 AddToWorkList(Hi.getNode());
2192 SDValue HiOpt = combine(Hi.getNode());
2193 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002194 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002195 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002196 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002197 }
Bill Wendling826d1142009-01-30 03:08:40 +00002198
Dan Gohman475871a2008-07-27 21:46:04 +00002199 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002200}
2201
Dan Gohman475871a2008-07-27 21:46:04 +00002202SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2203 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002204 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002205
Chris Lattner33e77d32010-12-15 06:04:19 +00002206 EVT VT = N->getValueType(0);
2207 DebugLoc DL = N->getDebugLoc();
2208
2209 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2210 // plus a shift.
2211 if (VT.isSimple() && !VT.isVector()) {
2212 MVT Simple = VT.getSimpleVT();
2213 unsigned SimpleSize = Simple.getSizeInBits();
2214 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2215 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2216 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2217 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2218 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2219 // Compute the high part as N1.
2220 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002221 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002222 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2223 // Compute the low part as N0.
2224 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2225 return CombineTo(N, Lo, Hi);
2226 }
2227 }
Owen Anderson95771af2011-02-25 21:41:48 +00002228
Dan Gohman475871a2008-07-27 21:46:04 +00002229 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002230}
2231
Dan Gohman475871a2008-07-27 21:46:04 +00002232SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2233 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002234 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002235
Chris Lattner33e77d32010-12-15 06:04:19 +00002236 EVT VT = N->getValueType(0);
2237 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002238
Chris Lattner33e77d32010-12-15 06:04:19 +00002239 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2240 // plus a shift.
2241 if (VT.isSimple() && !VT.isVector()) {
2242 MVT Simple = VT.getSimpleVT();
2243 unsigned SimpleSize = Simple.getSizeInBits();
2244 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2245 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2246 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2247 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2248 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2249 // Compute the high part as N1.
2250 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002251 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002252 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2253 // Compute the low part as N0.
2254 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2255 return CombineTo(N, Lo, Hi);
2256 }
2257 }
Owen Anderson95771af2011-02-25 21:41:48 +00002258
Dan Gohman475871a2008-07-27 21:46:04 +00002259 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002260}
2261
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002262SDValue DAGCombiner::visitSMULO(SDNode *N) {
2263 // (smulo x, 2) -> (saddo x, x)
2264 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2265 if (C2->getAPIntValue() == 2)
2266 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2267 N->getOperand(0), N->getOperand(0));
2268
2269 return SDValue();
2270}
2271
2272SDValue DAGCombiner::visitUMULO(SDNode *N) {
2273 // (umulo x, 2) -> (uaddo x, x)
2274 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2275 if (C2->getAPIntValue() == 2)
2276 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2277 N->getOperand(0), N->getOperand(0));
2278
2279 return SDValue();
2280}
2281
Dan Gohman475871a2008-07-27 21:46:04 +00002282SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2283 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002284 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002285
Dan Gohman475871a2008-07-27 21:46:04 +00002286 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002287}
2288
Dan Gohman475871a2008-07-27 21:46:04 +00002289SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2290 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002291 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002292
Dan Gohman475871a2008-07-27 21:46:04 +00002293 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002294}
2295
Chris Lattner35e5c142006-05-05 05:51:50 +00002296/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2297/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002298SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2299 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002300 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002301 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002302
Dan Gohmanff00a552010-01-14 03:08:49 +00002303 // Bail early if none of these transforms apply.
2304 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2305
Chris Lattner540121f2006-05-05 06:31:05 +00002306 // For each of OP in AND/OR/XOR:
2307 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2308 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2309 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002310 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002311 //
2312 // do not sink logical op inside of a vector extend, since it may combine
2313 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002314 EVT Op0VT = N0.getOperand(0).getValueType();
2315 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002316 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002317 // Avoid infinite looping with PromoteIntBinOp.
2318 (N0.getOpcode() == ISD::ANY_EXTEND &&
2319 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002320 (N0.getOpcode() == ISD::TRUNCATE &&
2321 (!TLI.isZExtFree(VT, Op0VT) ||
2322 !TLI.isTruncateFree(Op0VT, VT)) &&
2323 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002324 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002325 Op0VT == N1.getOperand(0).getValueType() &&
2326 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002327 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2328 N0.getOperand(0).getValueType(),
2329 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002330 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002331 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002332 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002333
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002334 // For each of OP in SHL/SRL/SRA/AND...
2335 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2336 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2337 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002338 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002339 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002340 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002341 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2342 N0.getOperand(0).getValueType(),
2343 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002344 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002345 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2346 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002347 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002348
Nadav Rotem4ac90812012-04-01 19:31:22 +00002349 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2350 // Only perform this optimization after type legalization and before
2351 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2352 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2353 // we don't want to undo this promotion.
2354 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2355 // on scalars.
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002356 if ((N0.getOpcode() == ISD::BITCAST ||
2357 N0.getOpcode() == ISD::SCALAR_TO_VECTOR) &&
2358 Level == AfterLegalizeTypes) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002359 SDValue In0 = N0.getOperand(0);
2360 SDValue In1 = N1.getOperand(0);
2361 EVT In0Ty = In0.getValueType();
2362 EVT In1Ty = In1.getValueType();
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002363 DebugLoc DL = N->getDebugLoc();
2364 // If both incoming values are integers, and the original types are the
2365 // same.
Nadav Rotem4ac90812012-04-01 19:31:22 +00002366 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002367 SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1);
2368 SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002369 AddToWorkList(Op.getNode());
2370 return BC;
2371 }
2372 }
2373
2374 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2375 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2376 // If both shuffles use the same mask, and both shuffle within a single
2377 // vector, then it is worthwhile to move the swizzle after the operation.
2378 // The type-legalizer generates this pattern when loading illegal
2379 // vector types from memory. In many cases this allows additional shuffle
2380 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002381 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2382 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2383 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002384 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2385 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002386
2387 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2388 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002389
2390 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002391
2392 // Check that both shuffles use the same mask. The masks are known to be of
2393 // the same length because the result vector type is the same.
2394 bool SameMask = true;
2395 for (unsigned i = 0; i != NumElts; ++i) {
2396 int Idx0 = SVN0->getMaskElt(i);
2397 int Idx1 = SVN1->getMaskElt(i);
2398 if (Idx0 != Idx1) {
2399 SameMask = false;
2400 break;
2401 }
2402 }
2403
Craig Topperf9204232012-04-09 07:19:09 +00002404 if (SameMask) {
2405 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT,
2406 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002407 AddToWorkList(Op.getNode());
Craig Topperf9204232012-04-09 07:19:09 +00002408 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op,
2409 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002410 }
2411 }
Craig Topperf9204232012-04-09 07:19:09 +00002412
Dan Gohman475871a2008-07-27 21:46:04 +00002413 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002414}
2415
Dan Gohman475871a2008-07-27 21:46:04 +00002416SDValue DAGCombiner::visitAND(SDNode *N) {
2417 SDValue N0 = N->getOperand(0);
2418 SDValue N1 = N->getOperand(1);
2419 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002420 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2421 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002422 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002423 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002424
Dan Gohman7f321562007-06-25 16:23:39 +00002425 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002426 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002427 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002428 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002429 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002430
Dan Gohman613e0d82007-07-03 14:03:57 +00002431 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002432 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002433 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002434 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002435 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002436 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002437 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002438 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002439 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002440 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002441 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002442 return N0;
2443 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002444 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002445 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002446 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002447 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002448 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002449 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002450 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002451 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002452 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002453 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002454 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002455 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002456 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2457 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002458 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002459 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002460 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002461 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002462 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2463 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002464
Chris Lattner1ec05d12006-03-01 21:47:21 +00002465 // Replace uses of the AND with uses of the Zero extend node.
2466 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002467
Chris Lattner3603cd62006-02-02 07:17:31 +00002468 // We actually want to replace all uses of the any_extend with the
2469 // zero_extend, to avoid duplicating things. This will later cause this
2470 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002471 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002472 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002473 }
2474 }
James Molloy6259dcd2012-02-20 12:02:38 +00002475 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2476 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2477 // already be zero by virtue of the width of the base type of the load.
2478 //
2479 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2480 // more cases.
2481 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2482 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2483 N0.getOpcode() == ISD::LOAD) {
2484 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2485 N0 : N0.getOperand(0) );
2486
2487 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2488 // This can be a pure constant or a vector splat, in which case we treat the
2489 // vector as a scalar and use the splat value.
2490 APInt Constant = APInt::getNullValue(1);
2491 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2492 Constant = C->getAPIntValue();
2493 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2494 APInt SplatValue, SplatUndef;
2495 unsigned SplatBitSize;
2496 bool HasAnyUndefs;
2497 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2498 SplatBitSize, HasAnyUndefs);
2499 if (IsSplat) {
2500 // Undef bits can contribute to a possible optimisation if set, so
2501 // set them.
2502 SplatValue |= SplatUndef;
2503
2504 // The splat value may be something like "0x00FFFFFF", which means 0 for
2505 // the first vector value and FF for the rest, repeating. We need a mask
2506 // that will apply equally to all members of the vector, so AND all the
2507 // lanes of the constant together.
2508 EVT VT = Vector->getValueType(0);
2509 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002510
2511 // If the splat value has been compressed to a bitlength lower
2512 // than the size of the vector lane, we need to re-expand it to
2513 // the lane size.
2514 if (BitWidth > SplatBitSize)
2515 for (SplatValue = SplatValue.zextOrTrunc(BitWidth);
2516 SplatBitSize < BitWidth;
2517 SplatBitSize = SplatBitSize * 2)
2518 SplatValue |= SplatValue.shl(SplatBitSize);
2519
James Molloy6259dcd2012-02-20 12:02:38 +00002520 Constant = APInt::getAllOnesValue(BitWidth);
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002521 for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i)
James Molloy6259dcd2012-02-20 12:02:38 +00002522 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2523 }
2524 }
2525
2526 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2527 // actually legal and isn't going to get expanded, else this is a false
2528 // optimisation.
2529 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2530 Load->getMemoryVT());
2531
2532 // Resize the constant to the same size as the original memory access before
2533 // extension. If it is still the AllOnesValue then this AND is completely
2534 // unneeded.
2535 Constant =
2536 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2537
2538 bool B;
2539 switch (Load->getExtensionType()) {
2540 default: B = false; break;
2541 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2542 case ISD::ZEXTLOAD:
2543 case ISD::NON_EXTLOAD: B = true; break;
2544 }
2545
2546 if (B && Constant.isAllOnesValue()) {
2547 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2548 // preserve semantics once we get rid of the AND.
2549 SDValue NewLoad(Load, 0);
2550 if (Load->getExtensionType() == ISD::EXTLOAD) {
2551 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2552 Load->getValueType(0), Load->getDebugLoc(),
2553 Load->getChain(), Load->getBasePtr(),
2554 Load->getOffset(), Load->getMemoryVT(),
2555 Load->getMemOperand());
2556 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
Hal Finkeld65e4632012-06-20 15:42:48 +00002557 if (Load->getNumValues() == 3) {
2558 // PRE/POST_INC loads have 3 values.
2559 SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1),
2560 NewLoad.getValue(2) };
2561 CombineTo(Load, To, 3, true);
2562 } else {
2563 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2564 }
James Molloy6259dcd2012-02-20 12:02:38 +00002565 }
2566
2567 // Fold the AND away, taking care not to fold to the old load node if we
2568 // replaced it.
2569 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2570
2571 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2572 }
2573 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002574 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2575 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2576 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2577 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002578
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002579 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002580 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002581 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002582 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002583 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2584 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002585 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002586 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002587 }
Bill Wendling2627a882009-01-30 20:43:18 +00002588 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002589 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002590 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2591 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002592 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002593 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002594 }
Bill Wendling2627a882009-01-30 20:43:18 +00002595 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002596 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002597 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2598 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002599 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002600 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002601 }
2602 }
2603 // canonicalize equivalent to ll == rl
2604 if (LL == RR && LR == RL) {
2605 Op1 = ISD::getSetCCSwappedOperands(Op1);
2606 std::swap(RL, RR);
2607 }
2608 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002609 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002610 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002611 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002612 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002613 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2614 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002615 }
2616 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002617
Bill Wendling2627a882009-01-30 20:43:18 +00002618 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002619 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002620 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002621 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002622 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002623
Nate Begemande996292006-02-03 22:24:05 +00002624 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2625 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002626 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002627 SimplifyDemandedBits(SDValue(N, 0)))
2628 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002629
Nate Begemanded49632005-10-13 03:11:28 +00002630 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002631 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002632 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002633 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002634 // If we zero all the possible extended bits, then we can turn this into
2635 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002636 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002637 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002638 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002639 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002640 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002641 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002642 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002643 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002644 LN0->isVolatile(), LN0->isNonTemporal(),
2645 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002646 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002647 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002648 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002649 }
2650 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002651 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002652 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002653 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002654 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002655 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002656 // If we zero all the possible extended bits, then we can turn this into
2657 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002658 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002659 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002660 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002661 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002662 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002663 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002664 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002665 LN0->getBasePtr(), LN0->getPointerInfo(),
2666 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002667 LN0->isVolatile(), LN0->isNonTemporal(),
2668 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002669 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002670 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002671 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002672 }
2673 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002674
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002675 // fold (and (load x), 255) -> (zextload x, i8)
2676 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002677 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2678 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2679 (N0.getOpcode() == ISD::ANY_EXTEND &&
2680 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2681 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2682 LoadSDNode *LN0 = HasAnyExt
2683 ? cast<LoadSDNode>(N0.getOperand(0))
2684 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002685 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002686 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002687 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002688 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2689 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2690 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002691
Evan Chengd40d03e2010-01-06 19:38:29 +00002692 if (ExtVT == LoadedVT &&
2693 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002694 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002695
2696 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002697 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002698 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002699 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002700 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2701 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002702 AddToWorkList(N);
2703 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2704 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2705 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002706
Chris Lattneref7634c2010-01-07 21:53:27 +00002707 // Do not change the width of a volatile load.
2708 // Do not generate loads of non-round integer types since these can
2709 // be expensive (and would be wrong if the type is not byte sized).
2710 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2711 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2712 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002713
Chris Lattneref7634c2010-01-07 21:53:27 +00002714 unsigned Alignment = LN0->getAlignment();
2715 SDValue NewPtr = LN0->getBasePtr();
2716
2717 // For big endian targets, we need to add an offset to the pointer
2718 // to load the correct bytes. For little endian systems, we merely
2719 // need to read fewer bytes from the same pointer.
2720 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002721 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2722 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2723 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002724 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2725 NewPtr, DAG.getConstant(PtrOff, PtrType));
2726 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002727 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002728
2729 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002730
Chris Lattneref7634c2010-01-07 21:53:27 +00002731 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2732 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002733 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002734 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002735 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002736 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2737 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002738 AddToWorkList(N);
2739 CombineTo(LN0, Load, Load.getValue(1));
2740 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002741 }
Evan Cheng466685d2006-10-09 20:57:25 +00002742 }
Chris Lattner15045b62006-02-28 06:35:35 +00002743 }
2744 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002745
Evan Chenga9e13ba2012-07-17 18:54:11 +00002746 if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
2747 VT.getSizeInBits() <= 64) {
2748 if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2749 APInt ADDC = ADDI->getAPIntValue();
2750 if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2751 // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal
2752 // immediate for an add, but it is legal if its top c2 bits are set,
2753 // transform the ADD so the immediate doesn't need to be materialized
2754 // in a register.
2755 if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
2756 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
2757 SRLI->getZExtValue());
2758 if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) {
2759 ADDC |= Mask;
2760 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2761 SDValue NewAdd =
2762 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
2763 N0.getOperand(0), DAG.getConstant(ADDC, VT));
2764 CombineTo(N0.getNode(), NewAdd);
2765 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2766 }
2767 }
2768 }
2769 }
2770 }
2771 }
2772
2773
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002774 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002775}
2776
Evan Cheng9568e5c2011-06-21 06:01:08 +00002777/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2778///
2779SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2780 bool DemandHighBits) {
2781 if (!LegalOperations)
2782 return SDValue();
2783
2784 EVT VT = N->getValueType(0);
2785 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2786 return SDValue();
2787 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2788 return SDValue();
2789
2790 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2791 bool LookPassAnd0 = false;
2792 bool LookPassAnd1 = false;
2793 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2794 std::swap(N0, N1);
2795 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2796 std::swap(N0, N1);
2797 if (N0.getOpcode() == ISD::AND) {
2798 if (!N0.getNode()->hasOneUse())
2799 return SDValue();
2800 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2801 if (!N01C || N01C->getZExtValue() != 0xFF00)
2802 return SDValue();
2803 N0 = N0.getOperand(0);
2804 LookPassAnd0 = true;
2805 }
2806
2807 if (N1.getOpcode() == ISD::AND) {
2808 if (!N1.getNode()->hasOneUse())
2809 return SDValue();
2810 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2811 if (!N11C || N11C->getZExtValue() != 0xFF)
2812 return SDValue();
2813 N1 = N1.getOperand(0);
2814 LookPassAnd1 = true;
2815 }
2816
2817 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2818 std::swap(N0, N1);
2819 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2820 return SDValue();
2821 if (!N0.getNode()->hasOneUse() ||
2822 !N1.getNode()->hasOneUse())
2823 return SDValue();
2824
2825 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2826 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2827 if (!N01C || !N11C)
2828 return SDValue();
2829 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2830 return SDValue();
2831
2832 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2833 SDValue N00 = N0->getOperand(0);
2834 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2835 if (!N00.getNode()->hasOneUse())
2836 return SDValue();
2837 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2838 if (!N001C || N001C->getZExtValue() != 0xFF)
2839 return SDValue();
2840 N00 = N00.getOperand(0);
2841 LookPassAnd0 = true;
2842 }
2843
2844 SDValue N10 = N1->getOperand(0);
2845 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2846 if (!N10.getNode()->hasOneUse())
2847 return SDValue();
2848 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2849 if (!N101C || N101C->getZExtValue() != 0xFF00)
2850 return SDValue();
2851 N10 = N10.getOperand(0);
2852 LookPassAnd1 = true;
2853 }
2854
2855 if (N00 != N10)
2856 return SDValue();
2857
2858 // Make sure everything beyond the low halfword is zero since the SRL 16
2859 // will clear the top bits.
2860 unsigned OpSizeInBits = VT.getSizeInBits();
2861 if (DemandHighBits && OpSizeInBits > 16 &&
2862 (!LookPassAnd0 || !LookPassAnd1) &&
2863 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2864 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002865
Evan Cheng9568e5c2011-06-21 06:01:08 +00002866 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2867 if (OpSizeInBits > 16)
2868 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2869 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2870 return Res;
2871}
2872
2873/// isBSwapHWordElement - Return true if the specified node is an element
2874/// that makes up a 32-bit packed halfword byteswap. i.e.
2875/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2876static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2877 if (!N.getNode()->hasOneUse())
2878 return false;
2879
2880 unsigned Opc = N.getOpcode();
2881 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2882 return false;
2883
2884 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2885 if (!N1C)
2886 return false;
2887
2888 unsigned Num;
2889 switch (N1C->getZExtValue()) {
2890 default:
2891 return false;
2892 case 0xFF: Num = 0; break;
2893 case 0xFF00: Num = 1; break;
2894 case 0xFF0000: Num = 2; break;
2895 case 0xFF000000: Num = 3; break;
2896 }
2897
2898 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2899 SDValue N0 = N.getOperand(0);
2900 if (Opc == ISD::AND) {
2901 if (Num == 0 || Num == 2) {
2902 // (x >> 8) & 0xff
2903 // (x >> 8) & 0xff0000
2904 if (N0.getOpcode() != ISD::SRL)
2905 return false;
2906 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2907 if (!C || C->getZExtValue() != 8)
2908 return false;
2909 } else {
2910 // (x << 8) & 0xff00
2911 // (x << 8) & 0xff000000
2912 if (N0.getOpcode() != ISD::SHL)
2913 return false;
2914 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2915 if (!C || C->getZExtValue() != 8)
2916 return false;
2917 }
2918 } else if (Opc == ISD::SHL) {
2919 // (x & 0xff) << 8
2920 // (x & 0xff0000) << 8
2921 if (Num != 0 && Num != 2)
2922 return false;
2923 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2924 if (!C || C->getZExtValue() != 8)
2925 return false;
2926 } else { // Opc == ISD::SRL
2927 // (x & 0xff00) >> 8
2928 // (x & 0xff000000) >> 8
2929 if (Num != 1 && Num != 3)
2930 return false;
2931 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2932 if (!C || C->getZExtValue() != 8)
2933 return false;
2934 }
2935
2936 if (Parts[Num])
2937 return false;
2938
2939 Parts[Num] = N0.getOperand(0).getNode();
2940 return true;
2941}
2942
2943/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2944/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2945/// => (rotl (bswap x), 16)
2946SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2947 if (!LegalOperations)
2948 return SDValue();
2949
2950 EVT VT = N->getValueType(0);
2951 if (VT != MVT::i32)
2952 return SDValue();
2953 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2954 return SDValue();
2955
2956 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2957 // Look for either
2958 // (or (or (and), (and)), (or (and), (and)))
2959 // (or (or (or (and), (and)), (and)), (and))
2960 if (N0.getOpcode() != ISD::OR)
2961 return SDValue();
2962 SDValue N00 = N0.getOperand(0);
2963 SDValue N01 = N0.getOperand(1);
2964
2965 if (N1.getOpcode() == ISD::OR) {
2966 // (or (or (and), (and)), (or (and), (and)))
2967 SDValue N000 = N00.getOperand(0);
2968 if (!isBSwapHWordElement(N000, Parts))
2969 return SDValue();
2970
2971 SDValue N001 = N00.getOperand(1);
2972 if (!isBSwapHWordElement(N001, Parts))
2973 return SDValue();
2974 SDValue N010 = N01.getOperand(0);
2975 if (!isBSwapHWordElement(N010, Parts))
2976 return SDValue();
2977 SDValue N011 = N01.getOperand(1);
2978 if (!isBSwapHWordElement(N011, Parts))
2979 return SDValue();
2980 } else {
2981 // (or (or (or (and), (and)), (and)), (and))
2982 if (!isBSwapHWordElement(N1, Parts))
2983 return SDValue();
2984 if (!isBSwapHWordElement(N01, Parts))
2985 return SDValue();
2986 if (N00.getOpcode() != ISD::OR)
2987 return SDValue();
2988 SDValue N000 = N00.getOperand(0);
2989 if (!isBSwapHWordElement(N000, Parts))
2990 return SDValue();
2991 SDValue N001 = N00.getOperand(1);
2992 if (!isBSwapHWordElement(N001, Parts))
2993 return SDValue();
2994 }
2995
2996 // Make sure the parts are all coming from the same node.
2997 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2998 return SDValue();
2999
3000 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
3001 SDValue(Parts[0],0));
3002
3003 // Result of the bswap should be rotated by 16. If it's not legal, than
3004 // do (x << 16) | (x >> 16).
3005 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
3006 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
3007 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
Craig Topper0eb5dad2012-09-29 07:18:53 +00003008 if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
Evan Cheng9568e5c2011-06-21 06:01:08 +00003009 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
3010 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
3011 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
3012 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
3013}
3014
Dan Gohman475871a2008-07-27 21:46:04 +00003015SDValue DAGCombiner::visitOR(SDNode *N) {
3016 SDValue N0 = N->getOperand(0);
3017 SDValue N1 = N->getOperand(1);
3018 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00003019 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3020 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003021 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003022
Dan Gohman7f321562007-06-25 16:23:39 +00003023 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003024 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003025 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003026 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003027 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003028
Dan Gohman613e0d82007-07-03 14:03:57 +00003029 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00003030 if (!LegalOperations &&
3031 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00003032 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
3033 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
3034 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003035 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003036 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003037 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003038 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003039 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00003040 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003041 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003042 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003043 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003044 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003045 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003046 return N1;
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003047 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003048 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003049 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00003050
3051 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
3052 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
3053 if (BSwap.getNode() != 0)
3054 return BSwap;
3055 BSwap = MatchBSwapHWordLow(N, N0, N1);
3056 if (BSwap.getNode() != 0)
3057 return BSwap;
3058
Nate Begemancd4d58c2006-02-03 06:46:56 +00003059 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00003060 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003061 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003062 return ROR;
3063 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003064 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003065 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003066 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003067 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003068 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003069 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
3070 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3071 N0.getOperand(0), N1),
3072 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003073 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003074 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3075 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3076 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3077 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003078
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003079 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003080 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003081 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3082 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003083 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003084 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003085 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
3086 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003087 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003088 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003089 }
Bill Wendling09025642009-01-30 20:59:34 +00003090 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3091 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003092 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003093 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003094 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
3095 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003096 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003097 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003098 }
3099 }
3100 // canonicalize equivalent to ll == rl
3101 if (LL == RR && LR == RL) {
3102 Op1 = ISD::getSetCCSwappedOperands(Op1);
3103 std::swap(RL, RR);
3104 }
3105 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003106 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003107 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003108 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00003109 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00003110 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
3111 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003112 }
3113 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003114
Bill Wendling09025642009-01-30 20:59:34 +00003115 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003116 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003117 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003118 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003119 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003120
Bill Wendling09025642009-01-30 20:59:34 +00003121 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003122 if (N0.getOpcode() == ISD::AND &&
3123 N1.getOpcode() == ISD::AND &&
3124 N0.getOperand(1).getOpcode() == ISD::Constant &&
3125 N1.getOperand(1).getOpcode() == ISD::Constant &&
3126 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003127 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003128 // We can only do this xform if we know that bits from X that are set in C2
3129 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003130 const APInt &LHSMask =
3131 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3132 const APInt &RHSMask =
3133 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003134
Dan Gohmanea859be2007-06-22 14:59:07 +00003135 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3136 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003137 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3138 N0.getOperand(0), N1.getOperand(0));
3139 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3140 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003141 }
3142 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003143
Chris Lattner516b9622006-09-14 20:50:57 +00003144 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003145 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003146 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003147
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003148 // Simplify the operands using demanded-bits information.
3149 if (!VT.isVector() &&
3150 SimplifyDemandedBits(SDValue(N, 0)))
3151 return SDValue(N, 0);
3152
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003153 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003154}
3155
Chris Lattner516b9622006-09-14 20:50:57 +00003156/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003157static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003158 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003159 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003160 Mask = Op.getOperand(1);
3161 Op = Op.getOperand(0);
3162 } else {
3163 return false;
3164 }
3165 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003166
Chris Lattner516b9622006-09-14 20:50:57 +00003167 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3168 Shift = Op;
3169 return true;
3170 }
Bill Wendling09025642009-01-30 20:59:34 +00003171
Scott Michelfdc40a02009-02-17 22:15:04 +00003172 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003173}
3174
Chris Lattner516b9622006-09-14 20:50:57 +00003175// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3176// idioms for rotate, and if the target supports rotation instructions, generate
3177// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003178SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003179 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003180 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003181 if (!TLI.isTypeLegal(VT)) return 0;
3182
3183 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003184 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3185 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003186 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003187
Chris Lattner516b9622006-09-14 20:50:57 +00003188 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003189 SDValue LHSShift; // The shift.
3190 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003191 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3192 return 0; // Not part of a rotate.
3193
Dan Gohman475871a2008-07-27 21:46:04 +00003194 SDValue RHSShift; // The shift.
3195 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003196 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3197 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003198
Chris Lattner516b9622006-09-14 20:50:57 +00003199 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3200 return 0; // Not shifting the same value.
3201
3202 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3203 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003204
Chris Lattner516b9622006-09-14 20:50:57 +00003205 // Canonicalize shl to left side in a shl/srl pair.
3206 if (RHSShift.getOpcode() == ISD::SHL) {
3207 std::swap(LHS, RHS);
3208 std::swap(LHSShift, RHSShift);
3209 std::swap(LHSMask , RHSMask );
3210 }
3211
Duncan Sands83ec4b62008-06-06 12:08:01 +00003212 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003213 SDValue LHSShiftArg = LHSShift.getOperand(0);
3214 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3215 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003216
3217 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3218 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003219 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3220 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003221 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3222 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003223 if ((LShVal + RShVal) != OpSizeInBits)
3224 return 0;
3225
Craig Topper32b73432012-09-29 06:54:22 +00003226 SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3227 LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003228
Chris Lattner516b9622006-09-14 20:50:57 +00003229 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003230 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003231 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003232
Gabor Greifba36cb52008-08-28 21:40:38 +00003233 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003234 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3235 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003236 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003237 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003238 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3239 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003240 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003241
Bill Wendling317bd702009-01-30 21:14:50 +00003242 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003243 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003244
Gabor Greifba36cb52008-08-28 21:40:38 +00003245 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003246 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003247
Chris Lattner516b9622006-09-14 20:50:57 +00003248 // If there is a mask here, and we have a variable shift, we can't be sure
3249 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003250 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003251 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003252
Chris Lattner516b9622006-09-14 20:50:57 +00003253 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3254 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003255 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3256 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003257 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003258 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003259 if (SUBC->getAPIntValue() == OpSizeInBits) {
Craig Topper32b73432012-09-29 06:54:22 +00003260 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, LHSShiftArg,
3261 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003262 }
Chris Lattner516b9622006-09-14 20:50:57 +00003263 }
3264 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003265
Chris Lattner516b9622006-09-14 20:50:57 +00003266 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3267 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003268 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3269 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003270 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003271 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003272 if (SUBC->getAPIntValue() == OpSizeInBits) {
Craig Topper32b73432012-09-29 06:54:22 +00003273 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg,
3274 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003275 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003276 }
3277 }
3278
Dan Gohman74feef22008-10-17 01:23:35 +00003279 // Look for sign/zext/any-extended or truncate cases:
Craig Topper0eb5dad2012-09-29 07:18:53 +00003280 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3281 LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3282 LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3283 LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
3284 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3285 RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3286 RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3287 RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003288 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3289 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003290 if (RExtOp0.getOpcode() == ISD::SUB &&
3291 RExtOp0.getOperand(1) == LExtOp0) {
3292 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003293 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003294 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003295 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003296 if (ConstantSDNode *SUBC =
3297 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003298 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003299 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3300 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003301 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003302 }
3303 }
3304 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3305 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003306 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003307 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003308 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003309 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003310 if (ConstantSDNode *SUBC =
3311 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003312 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003313 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3314 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003315 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003316 }
3317 }
Chris Lattner516b9622006-09-14 20:50:57 +00003318 }
3319 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003320
Chris Lattner516b9622006-09-14 20:50:57 +00003321 return 0;
3322}
3323
Dan Gohman475871a2008-07-27 21:46:04 +00003324SDValue DAGCombiner::visitXOR(SDNode *N) {
3325 SDValue N0 = N->getOperand(0);
3326 SDValue N1 = N->getOperand(1);
3327 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003328 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3329 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003330 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003331
Dan Gohman7f321562007-06-25 16:23:39 +00003332 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003333 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003334 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003335 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003336 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003337
Evan Cheng26471c42008-03-25 20:08:07 +00003338 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3339 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3340 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003341 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003342 if (N0.getOpcode() == ISD::UNDEF)
3343 return N0;
3344 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003345 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003346 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003347 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003348 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003349 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003350 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003351 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003352 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003353 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003354 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003355 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003356 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003357 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003358 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003359
Nate Begeman1d4d4142005-09-01 00:19:25 +00003360 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003361 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003362 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003363 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3364 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003365
Duncan Sands25cf2272008-11-24 14:53:14 +00003366 if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003367 switch (N0.getOpcode()) {
3368 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003369 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003370 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003371 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003372 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003373 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003374 N0.getOperand(3), NotCC);
3375 }
3376 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003377 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003378
Chris Lattner61c5ff42007-09-10 21:39:07 +00003379 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003380 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003381 N0.getNode()->hasOneUse() &&
3382 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003383 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003384 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003385 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003386 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003387 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003388 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003389
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003390 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003391 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003392 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003393 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003394 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3395 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003396 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3397 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003398 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003399 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003400 }
3401 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003402 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003403 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003404 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003405 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003406 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3407 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003408 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3409 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003410 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003411 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003412 }
3413 }
Bill Wendling317bd702009-01-30 21:14:50 +00003414 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003415 if (N1C && N0.getOpcode() == ISD::XOR) {
3416 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3417 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3418 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003419 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3420 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003421 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003422 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003423 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3424 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003425 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003426 }
3427 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003428 if (N0 == N1)
3429 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003430
Chris Lattner35e5c142006-05-05 05:51:50 +00003431 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3432 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003433 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003434 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003435 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003436
Chris Lattner3e104b12006-04-08 04:15:24 +00003437 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003438 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003439 SimplifyDemandedBits(SDValue(N, 0)))
3440 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003441
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003442 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003443}
3444
Chris Lattnere70da202007-12-06 07:33:36 +00003445/// visitShiftByConstant - Handle transforms common to the three shifts, when
3446/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003447SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003448 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003449 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003450
Chris Lattnere70da202007-12-06 07:33:36 +00003451 // We want to pull some binops through shifts, so that we have (and (shift))
3452 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3453 // thing happens with address calculations, so it's important to canonicalize
3454 // it.
3455 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003456
Chris Lattnere70da202007-12-06 07:33:36 +00003457 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003458 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003459 case ISD::OR:
3460 case ISD::XOR:
3461 HighBitSet = false; // We can only transform sra if the high bit is clear.
3462 break;
3463 case ISD::AND:
3464 HighBitSet = true; // We can only transform sra if the high bit is set.
3465 break;
3466 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003467 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003468 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003469 HighBitSet = false; // We can only transform sra if the high bit is clear.
3470 break;
3471 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003472
Chris Lattnere70da202007-12-06 07:33:36 +00003473 // We require the RHS of the binop to be a constant as well.
3474 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003475 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003476
3477 // FIXME: disable this unless the input to the binop is a shift by a constant.
3478 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003479 //
Bill Wendling88103372009-01-30 21:37:17 +00003480 // void foo(int *X, int i) { X[i & 1235] = 1; }
3481 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003482 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003483 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003484 BinOpLHSVal->getOpcode() != ISD::SRA &&
3485 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3486 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003487 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003488
Owen Andersone50ed302009-08-10 22:56:29 +00003489 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003490
Bill Wendling88103372009-01-30 21:37:17 +00003491 // If this is a signed shift right, and the high bit is modified by the
3492 // logical operation, do not perform the transformation. The highBitSet
3493 // boolean indicates the value of the high bit of the constant which would
3494 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003495 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003496 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3497 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003498 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003499 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003500
Chris Lattnere70da202007-12-06 07:33:36 +00003501 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003502 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3503 N->getValueType(0),
3504 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003505
3506 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003507 SDValue NewShift = DAG.getNode(N->getOpcode(),
3508 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003509 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003510
3511 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003512 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003513}
3514
Dan Gohman475871a2008-07-27 21:46:04 +00003515SDValue DAGCombiner::visitSHL(SDNode *N) {
3516 SDValue N0 = N->getOperand(0);
3517 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003518 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3519 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003520 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003521 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003522
Nate Begeman1d4d4142005-09-01 00:19:25 +00003523 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003524 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003525 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003526 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003527 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003528 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003529 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003530 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003531 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003532 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003533 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003534 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003535 // fold (shl undef, x) -> 0
3536 if (N0.getOpcode() == ISD::UNDEF)
3537 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003538 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003539 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003540 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003541 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003542 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003543 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003544 N1.getOperand(0).getOpcode() == ISD::AND &&
3545 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003546 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003547 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003548 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003549 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003550 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003551 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003552 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003553 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3554 DAG.getNode(ISD::TRUNCATE,
3555 N->getDebugLoc(),
3556 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003557 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003558 }
3559 }
3560
Dan Gohman475871a2008-07-27 21:46:04 +00003561 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3562 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003563
3564 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003565 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003566 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003567 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3568 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003569 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003570 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003571 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003572 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003573 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003574
3575 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3576 // For this to be valid, the second form must not preserve any of the bits
3577 // that are shifted out by the inner shift in the first form. This means
3578 // the outer shift size must be >= the number of bits added by the ext.
3579 // As a corollary, we don't care what kind of ext it is.
3580 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3581 N0.getOpcode() == ISD::ANY_EXTEND ||
3582 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3583 N0.getOperand(0).getOpcode() == ISD::SHL &&
3584 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003585 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003586 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3587 uint64_t c2 = N1C->getZExtValue();
3588 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3589 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3590 if (c2 >= OpSizeInBits - InnerShiftSize) {
3591 if (c1 + c2 >= OpSizeInBits)
3592 return DAG.getConstant(0, VT);
3593 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3594 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3595 N0.getOperand(0)->getOperand(0)),
3596 DAG.getConstant(c1 + c2, N1.getValueType()));
3597 }
3598 }
3599
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003600 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3601 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003602 // Only fold this if the inner shift has no other uses -- if it does, folding
3603 // this will increase the total number of instructions.
3604 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003605 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003606 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003607 if (c1 < VT.getSizeInBits()) {
3608 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003609 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3610 VT.getSizeInBits() - c1);
3611 SDValue Shift;
3612 if (c2 > c1) {
3613 Mask = Mask.shl(c2-c1);
3614 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3615 DAG.getConstant(c2-c1, N1.getValueType()));
3616 } else {
3617 Mask = Mask.lshr(c1-c2);
3618 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3619 DAG.getConstant(c1-c2, N1.getValueType()));
3620 }
3621 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3622 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003623 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003624 }
Bill Wendling88103372009-01-30 21:37:17 +00003625 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003626 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3627 SDValue HiBitsMask =
3628 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3629 VT.getSizeInBits() -
3630 N1C->getZExtValue()),
3631 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003632 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003633 HiBitsMask);
3634 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003635
Evan Chenge5b51ac2010-04-17 06:13:15 +00003636 if (N1C) {
3637 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3638 if (NewSHL.getNode())
3639 return NewSHL;
3640 }
3641
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003642 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003643}
3644
Dan Gohman475871a2008-07-27 21:46:04 +00003645SDValue DAGCombiner::visitSRA(SDNode *N) {
3646 SDValue N0 = N->getOperand(0);
3647 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003648 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3649 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003650 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003651 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003652
Bill Wendling88103372009-01-30 21:37:17 +00003653 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003654 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003655 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003656 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003657 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003658 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003659 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003660 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003661 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003662 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003663 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003664 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003665 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003666 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003667 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003668 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3669 // sext_inreg.
3670 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003671 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003672 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3673 if (VT.isVector())
3674 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3675 ExtVT, VT.getVectorNumElements());
3676 if ((!LegalOperations ||
3677 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003678 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003679 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003680 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003681
Bill Wendling88103372009-01-30 21:37:17 +00003682 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003683 if (N1C && N0.getOpcode() == ISD::SRA) {
3684 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003685 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003686 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003687 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003688 DAG.getConstant(Sum, N1C->getValueType(0)));
3689 }
3690 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003691
Bill Wendling88103372009-01-30 21:37:17 +00003692 // fold (sra (shl X, m), (sub result_size, n))
3693 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003694 // result_size - n != m.
3695 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003696 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003697 if (N0.getOpcode() == ISD::SHL) {
3698 // Get the two constanst of the shifts, CN0 = m, CN = n.
3699 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3700 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003701 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003702 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003703 EVT::getIntegerVT(*DAG.getContext(),
3704 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003705 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003706 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003707
Scott Michelfdc40a02009-02-17 22:15:04 +00003708 // If the shift is not a no-op (in which case this should be just a sign
3709 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003710 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003711 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003712 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003713 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3714 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003715 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003716
Owen Anderson95771af2011-02-25 21:41:48 +00003717 SDValue Amt = DAG.getConstant(ShiftAmt,
3718 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003719 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3720 N0.getOperand(0), Amt);
3721 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3722 Shift);
3723 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3724 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003725 }
3726 }
3727 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003728
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003729 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003730 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003731 N1.getOperand(0).getOpcode() == ISD::AND &&
3732 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003733 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003734 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003735 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003736 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003737 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003738 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003739 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003740 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003741 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003742 DAG.getNode(ISD::TRUNCATE,
3743 N->getDebugLoc(),
3744 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003745 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003746 }
3747 }
3748
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003749 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3750 // if c1 is equal to the number of bits the trunc removes
3751 if (N0.getOpcode() == ISD::TRUNCATE &&
3752 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3753 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3754 N0.getOperand(0).hasOneUse() &&
3755 N0.getOperand(0).getOperand(1).hasOneUse() &&
3756 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3757 EVT LargeVT = N0.getOperand(0).getValueType();
3758 ConstantSDNode *LargeShiftAmt =
3759 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3760
3761 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3762 LargeShiftAmt->getZExtValue()) {
3763 SDValue Amt =
3764 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003765 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003766 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3767 N0.getOperand(0).getOperand(0), Amt);
3768 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3769 }
3770 }
3771
Scott Michelfdc40a02009-02-17 22:15:04 +00003772 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003773 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3774 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003775
3776
Nate Begeman1d4d4142005-09-01 00:19:25 +00003777 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003778 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003779 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003780
Evan Chenge5b51ac2010-04-17 06:13:15 +00003781 if (N1C) {
3782 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3783 if (NewSRA.getNode())
3784 return NewSRA;
3785 }
3786
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003787 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003788}
3789
Dan Gohman475871a2008-07-27 21:46:04 +00003790SDValue DAGCombiner::visitSRL(SDNode *N) {
3791 SDValue N0 = N->getOperand(0);
3792 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003793 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3794 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003795 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003796 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003797
Nate Begeman1d4d4142005-09-01 00:19:25 +00003798 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003799 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003800 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003801 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003802 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003803 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003804 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003805 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003806 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003807 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003808 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003809 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003810 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003811 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003812 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003813 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003814
Bill Wendling88103372009-01-30 21:37:17 +00003815 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003816 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003817 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003818 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3819 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003820 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003821 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003822 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003823 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003824 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003825
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003826 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003827 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3828 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003829 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003830 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003831 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3832 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003833 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3834 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003835 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003836 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003837 if (c1 + OpSizeInBits == InnerShiftSize) {
3838 if (c1 + c2 >= InnerShiftSize)
3839 return DAG.getConstant(0, VT);
3840 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003841 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003842 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003843 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003844 }
3845 }
3846
Chris Lattnerefcddc32010-04-15 05:28:43 +00003847 // fold (srl (shl x, c), c) -> (and x, cst2)
3848 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3849 N0.getValueSizeInBits() <= 64) {
3850 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3851 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3852 DAG.getConstant(~0ULL >> ShAmt, VT));
3853 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003854
Scott Michelfdc40a02009-02-17 22:15:04 +00003855
Chris Lattner06afe072006-05-05 22:53:17 +00003856 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3857 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3858 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003859 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003860 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003861 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003862
Evan Chenge5b51ac2010-04-17 06:13:15 +00003863 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003864 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003865 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003866 N0.getOperand(0),
3867 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003868 AddToWorkList(SmallShift.getNode());
3869 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3870 }
Chris Lattner06afe072006-05-05 22:53:17 +00003871 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003872
Chris Lattner3657ffe2006-10-12 20:23:19 +00003873 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3874 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003875 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003876 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003877 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003878 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003879
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003880 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003881 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003882 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003883 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003884 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003885
Chris Lattner350bec02006-04-02 06:11:11 +00003886 // If any of the input bits are KnownOne, then the input couldn't be all
3887 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003888 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003889
Chris Lattner350bec02006-04-02 06:11:11 +00003890 // If all of the bits input the to ctlz node are known to be zero, then
3891 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003892 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00003893 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003894
Chris Lattner350bec02006-04-02 06:11:11 +00003895 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003896 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003897 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003898 // could be set on input to the CTLZ node. If this bit is set, the SRL
3899 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3900 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003901 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003902 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003903
Chris Lattner350bec02006-04-02 06:11:11 +00003904 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003905 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003906 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003907 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003908 }
Bill Wendling88103372009-01-30 21:37:17 +00003909
3910 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3911 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003912 }
3913 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003914
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003915 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003916 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003917 N1.getOperand(0).getOpcode() == ISD::AND &&
3918 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003919 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003920 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003921 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003922 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003923 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003924 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003925 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003926 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003927 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003928 DAG.getNode(ISD::TRUNCATE,
3929 N->getDebugLoc(),
3930 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003931 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003932 }
3933 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003934
Chris Lattner61a4c072007-04-18 03:06:49 +00003935 // fold operands of srl based on knowledge that the low bits are not
3936 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003937 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3938 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003939
Evan Cheng9ab2b982009-12-18 21:31:31 +00003940 if (N1C) {
3941 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3942 if (NewSRL.getNode())
3943 return NewSRL;
3944 }
3945
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003946 // Attempt to convert a srl of a load into a narrower zero-extending load.
3947 SDValue NarrowLoad = ReduceLoadWidth(N);
3948 if (NarrowLoad.getNode())
3949 return NarrowLoad;
3950
Evan Cheng9ab2b982009-12-18 21:31:31 +00003951 // Here is a common situation. We want to optimize:
3952 //
3953 // %a = ...
3954 // %b = and i32 %a, 2
3955 // %c = srl i32 %b, 1
3956 // brcond i32 %c ...
3957 //
3958 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003959 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00003960 // %a = ...
3961 // %b = and %a, 2
3962 // %c = setcc eq %b, 0
3963 // brcond %c ...
3964 //
3965 // However when after the source operand of SRL is optimized into AND, the SRL
3966 // itself may not be optimized further. Look for it and add the BRCOND into
3967 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00003968 if (N->hasOneUse()) {
3969 SDNode *Use = *N->use_begin();
3970 if (Use->getOpcode() == ISD::BRCOND)
3971 AddToWorkList(Use);
3972 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3973 // Also look pass the truncate.
3974 Use = *Use->use_begin();
3975 if (Use->getOpcode() == ISD::BRCOND)
3976 AddToWorkList(Use);
3977 }
3978 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00003979
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003980 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00003981}
3982
Dan Gohman475871a2008-07-27 21:46:04 +00003983SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3984 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003985 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003986
3987 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003988 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003989 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003990 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003991}
3992
Chandler Carruth63974b22011-12-13 01:56:10 +00003993SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
3994 SDValue N0 = N->getOperand(0);
3995 EVT VT = N->getValueType(0);
3996
3997 // fold (ctlz_zero_undef c1) -> c2
3998 if (isa<ConstantSDNode>(N0))
3999 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
4000 return SDValue();
4001}
4002
Dan Gohman475871a2008-07-27 21:46:04 +00004003SDValue DAGCombiner::visitCTTZ(SDNode *N) {
4004 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004005 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004006
Nate Begeman1d4d4142005-09-01 00:19:25 +00004007 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004008 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004009 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004010 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004011}
4012
Chandler Carruth63974b22011-12-13 01:56:10 +00004013SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
4014 SDValue N0 = N->getOperand(0);
4015 EVT VT = N->getValueType(0);
4016
4017 // fold (cttz_zero_undef c1) -> c2
4018 if (isa<ConstantSDNode>(N0))
4019 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
4020 return SDValue();
4021}
4022
Dan Gohman475871a2008-07-27 21:46:04 +00004023SDValue DAGCombiner::visitCTPOP(SDNode *N) {
4024 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004025 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004026
Nate Begeman1d4d4142005-09-01 00:19:25 +00004027 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004028 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004029 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004030 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004031}
4032
Dan Gohman475871a2008-07-27 21:46:04 +00004033SDValue DAGCombiner::visitSELECT(SDNode *N) {
4034 SDValue N0 = N->getOperand(0);
4035 SDValue N1 = N->getOperand(1);
4036 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004037 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4038 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4039 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00004040 EVT VT = N->getValueType(0);
4041 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00004042
Bill Wendling34584e62009-01-30 22:02:18 +00004043 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004044 if (N1 == N2)
4045 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004046 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004047 if (N0C && !N0C->isNullValue())
4048 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004049 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00004050 if (N0C && N0C->isNullValue())
4051 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004052 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004053 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00004054 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4055 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004056 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004057 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004058 (VT0.isInteger() &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00004059 TLI.getBooleanContents(false) ==
4060 TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004061 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004062 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004063 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00004064 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
4065 N0, DAG.getConstant(1, VT0));
4066 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
4067 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004068 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004069 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00004070 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
4071 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004072 }
Bill Wendling34584e62009-01-30 22:02:18 +00004073 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004074 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00004075 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004076 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004077 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004078 }
Bill Wendling34584e62009-01-30 22:02:18 +00004079 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004080 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004081 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004082 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004083 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004084 }
Bill Wendling34584e62009-01-30 22:02:18 +00004085 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004086 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00004087 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
4088 // fold (select X, X, Y) -> (or X, Y)
4089 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004090 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00004091 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4092 // fold (select X, Y, X) -> (and X, Y)
4093 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004094 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00004095 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004096
Chris Lattner40c62d52005-10-18 06:04:22 +00004097 // If we can fold this based on the true/false value, do so.
4098 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004099 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004100
Nate Begeman44728a72005-09-19 22:34:01 +00004101 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004102 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004103 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004104 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004105 // having to say they don't support SELECT_CC on every type the DAG knows
4106 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004107 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004108 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004109 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4110 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004111 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004112 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004113 }
Bill Wendling34584e62009-01-30 22:02:18 +00004114
Dan Gohman475871a2008-07-27 21:46:04 +00004115 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004116}
4117
Dan Gohman475871a2008-07-27 21:46:04 +00004118SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4119 SDValue N0 = N->getOperand(0);
4120 SDValue N1 = N->getOperand(1);
4121 SDValue N2 = N->getOperand(2);
4122 SDValue N3 = N->getOperand(3);
4123 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004124 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004125
Nate Begeman44728a72005-09-19 22:34:01 +00004126 // fold select_cc lhs, rhs, x, x, cc -> x
4127 if (N2 == N3)
4128 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004129
Chris Lattner5f42a242006-09-20 06:19:26 +00004130 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004131 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004132 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004133 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004134
Gabor Greifba36cb52008-08-28 21:40:38 +00004135 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004136 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004137 return N2; // cond always true -> true val
4138 else
4139 return N3; // cond always false -> false val
4140 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004141
Chris Lattner5f42a242006-09-20 06:19:26 +00004142 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004143 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004144 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4145 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004146 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004147
Chris Lattner40c62d52005-10-18 06:04:22 +00004148 // If we can fold this based on the true/false value, do so.
4149 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004150 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004151
Nate Begeman44728a72005-09-19 22:34:01 +00004152 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004153 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004154}
4155
Dan Gohman475871a2008-07-27 21:46:04 +00004156SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004157 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004158 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4159 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004160}
4161
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004162// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004163// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004164// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004165// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004166static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004167 unsigned ExtOpc,
4168 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004169 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004170 bool HasCopyToRegUses = false;
4171 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004172 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4173 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004174 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004175 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004176 if (User == N)
4177 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004178 if (UI.getUse().getResNo() != N0.getResNo())
4179 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004180 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004181 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004182 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4183 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4184 // Sign bits will be lost after a zext.
4185 return false;
4186 bool Add = false;
4187 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004188 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004189 if (UseOp == N0)
4190 continue;
4191 if (!isa<ConstantSDNode>(UseOp))
4192 return false;
4193 Add = true;
4194 }
4195 if (Add)
4196 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004197 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004198 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004199 // If truncates aren't free and there are users we can't
4200 // extend, it isn't worthwhile.
4201 if (!isTruncFree)
4202 return false;
4203 // Remember if this value is live-out.
4204 if (User->getOpcode() == ISD::CopyToReg)
4205 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004206 }
4207
4208 if (HasCopyToRegUses) {
4209 bool BothLiveOut = false;
4210 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4211 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004212 SDUse &Use = UI.getUse();
4213 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4214 BothLiveOut = true;
4215 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004216 }
4217 }
4218 if (BothLiveOut)
4219 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004220 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004221 return ExtendNodes.size();
4222 }
4223 return true;
4224}
4225
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004226void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4227 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4228 ISD::NodeType ExtType) {
4229 // Extend SetCC uses if necessary.
4230 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4231 SDNode *SetCC = SetCCs[i];
4232 SmallVector<SDValue, 4> Ops;
4233
4234 for (unsigned j = 0; j != 2; ++j) {
4235 SDValue SOp = SetCC->getOperand(j);
4236 if (SOp == Trunc)
4237 Ops.push_back(ExtLoad);
4238 else
4239 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4240 }
4241
4242 Ops.push_back(SetCC->getOperand(2));
4243 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4244 &Ops[0], Ops.size()));
4245 }
4246}
4247
Dan Gohman475871a2008-07-27 21:46:04 +00004248SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4249 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004250 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004251
Nate Begeman1d4d4142005-09-01 00:19:25 +00004252 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004253 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004254 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004255
Nate Begeman1d4d4142005-09-01 00:19:25 +00004256 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004257 // fold (sext (aext x)) -> (sext x)
4258 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004259 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4260 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004261
Chris Lattner22558872007-02-26 03:13:59 +00004262 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004263 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4264 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004265 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4266 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004267 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4268 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004269 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004270 // CombineTo deleted the truncate, if needed, but not what's under it.
4271 AddToWorkList(oye);
4272 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004273 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004274 }
Evan Chengc88138f2007-03-22 01:54:19 +00004275
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004276 // See if the value being truncated is already sign extended. If so, just
4277 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004278 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004279 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4280 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4281 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004282 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004283
Chris Lattner22558872007-02-26 03:13:59 +00004284 if (OpBits == DestBits) {
4285 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4286 // bits, it is already ready.
4287 if (NumSignBits > DestBits-MidBits)
4288 return Op;
4289 } else if (OpBits < DestBits) {
4290 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4291 // bits, just sext from i32.
4292 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004293 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004294 } else {
4295 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4296 // bits, just truncate to i32.
4297 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004298 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004299 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004300
Chris Lattner22558872007-02-26 03:13:59 +00004301 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004302 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4303 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004304 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004305 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004306 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004307 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4308 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004309 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004310 }
Chris Lattner6007b842006-09-21 06:00:20 +00004311 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004312
Evan Cheng110dec22005-12-14 02:19:23 +00004313 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004314 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004315 // on vectors in one instruction. We only perform this transformation on
4316 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004317 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004318 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004319 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004320 bool DoXform = true;
4321 SmallVector<SDNode*, 4> SetCCs;
4322 if (!N0.hasOneUse())
4323 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4324 if (DoXform) {
4325 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004326 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004327 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004328 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004329 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004330 LN0->isVolatile(), LN0->isNonTemporal(),
4331 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004332 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004333 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4334 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004335 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004336 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4337 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004338 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004339 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004340 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004341
4342 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4343 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004344 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4345 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004346 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004347 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004348 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004349 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004350 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004351 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004352 LN0->getBasePtr(), LN0->getPointerInfo(),
4353 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004354 LN0->isVolatile(), LN0->isNonTemporal(),
4355 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004356 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004357 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004358 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4359 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004360 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004361 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004362 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004363 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004364
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004365 // fold (sext (and/or/xor (load x), cst)) ->
4366 // (and/or/xor (sextload x), (sext cst))
4367 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4368 N0.getOpcode() == ISD::XOR) &&
4369 isa<LoadSDNode>(N0.getOperand(0)) &&
4370 N0.getOperand(1).getOpcode() == ISD::Constant &&
4371 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4372 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4373 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4374 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4375 bool DoXform = true;
4376 SmallVector<SDNode*, 4> SetCCs;
4377 if (!N0.hasOneUse())
4378 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4379 SetCCs, TLI);
4380 if (DoXform) {
4381 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4382 LN0->getChain(), LN0->getBasePtr(),
4383 LN0->getPointerInfo(),
4384 LN0->getMemoryVT(),
4385 LN0->isVolatile(),
4386 LN0->isNonTemporal(),
4387 LN0->getAlignment());
4388 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4389 Mask = Mask.sext(VT.getSizeInBits());
4390 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4391 ExtLoad, DAG.getConstant(Mask, VT));
4392 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4393 N0.getOperand(0).getDebugLoc(),
4394 N0.getOperand(0).getValueType(), ExtLoad);
4395 CombineTo(N, And);
4396 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4397 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4398 ISD::SIGN_EXTEND);
4399 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4400 }
4401 }
4402 }
4403
Chris Lattner20a35c32007-04-11 05:32:27 +00004404 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004405 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004406 // Only do this before legalize for now.
4407 if (VT.isVector() && !LegalOperations) {
4408 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004409 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4410 // of the same size as the compared operands. Only optimize sext(setcc())
4411 // if this is the case.
4412 EVT SVT = TLI.getSetCCResultType(N0VT);
4413
4414 // We know that the # elements of the results is the same as the
4415 // # elements of the compare (and the # elements of the compare result
4416 // for that matter). Check to see that they are the same size. If so,
4417 // we know that the element size of the sext'd result matches the
4418 // element size of the compare operands.
4419 if (VT.getSizeInBits() == SVT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004420 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004421 N0.getOperand(1),
4422 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004423 // If the desired elements are smaller or larger than the source
4424 // elements we can use a matching integer vector type and then
4425 // truncate/sign extend
Craig Topper0eb5dad2012-09-29 07:18:53 +00004426 EVT MatchingElementType =
4427 EVT::getIntegerVT(*DAG.getContext(),
4428 N0VT.getScalarType().getSizeInBits());
4429 EVT MatchingVectorType =
4430 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4431 N0VT.getVectorNumElements());
Nadav Rotem2e506192012-04-11 08:26:11 +00004432
Craig Topper0eb5dad2012-09-29 07:18:53 +00004433 if (SVT == MatchingVectorType) {
4434 SDValue VsetCC = DAG.getSetCC(N->getDebugLoc(), MatchingVectorType,
4435 N0.getOperand(0), N0.getOperand(1),
4436 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4437 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Dan Gohman3ce89f42010-04-30 17:19:19 +00004438 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004439 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004440
Chris Lattner2b7a2712009-07-08 00:31:33 +00004441 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004442 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004443 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004444 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004445 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004446 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004447 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004448 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004449 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004450 if (!LegalOperations ||
4451 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4452 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4453 DAG.getSetCC(N->getDebugLoc(),
4454 TLI.getSetCCResultType(VT),
4455 N0.getOperand(0), N0.getOperand(1),
4456 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4457 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004458 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004459
Dan Gohman8f0ad582008-04-28 16:58:24 +00004460 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004461 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004462 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004463 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004464
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004465 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004466}
4467
Rafael Espindoladecbc432012-04-09 16:06:03 +00004468// isTruncateOf - If N is a truncate of some other value, return true, record
4469// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4470// This function computes KnownZero to avoid a duplicated call to
4471// ComputeMaskedBits in the caller.
4472static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4473 APInt &KnownZero) {
4474 APInt KnownOne;
4475 if (N->getOpcode() == ISD::TRUNCATE) {
4476 Op = N->getOperand(0);
4477 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4478 return true;
4479 }
4480
4481 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4482 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4483 return false;
4484
4485 SDValue Op0 = N->getOperand(0);
4486 SDValue Op1 = N->getOperand(1);
4487 assert(Op0.getValueType() == Op1.getValueType());
4488
4489 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4490 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004491 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004492 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004493 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004494 Op = Op0;
4495 else
4496 return false;
4497
4498 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4499
4500 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4501 return false;
4502
4503 return true;
4504}
4505
Dan Gohman475871a2008-07-27 21:46:04 +00004506SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4507 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004508 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004509
Nate Begeman1d4d4142005-09-01 00:19:25 +00004510 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004511 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004512 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004513 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004514 // fold (zext (aext x)) -> (zext x)
4515 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004516 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4517 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004518
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004519 // fold (zext (truncate x)) -> (zext x) or
4520 // (zext (truncate x)) -> (truncate x)
4521 // This is valid when the truncated bits of x are already zero.
4522 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004523 SDValue Op;
4524 APInt KnownZero;
4525 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4526 APInt TruncatedBits =
4527 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4528 APInt(Op.getValueSizeInBits(), 0) :
4529 APInt::getBitsSet(Op.getValueSizeInBits(),
4530 N0.getValueSizeInBits(),
4531 std::min(Op.getValueSizeInBits(),
4532 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004533 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004534 if (VT.bitsGT(Op.getValueType()))
4535 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4536 if (VT.bitsLT(Op.getValueType()))
4537 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4538
4539 return Op;
4540 }
4541 }
4542
Evan Chengc88138f2007-03-22 01:54:19 +00004543 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4544 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004545 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004546 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4547 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004548 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4549 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004550 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004551 // CombineTo deleted the truncate, if needed, but not what's under it.
4552 AddToWorkList(oye);
4553 }
Eli Friedmane545d382011-04-16 23:25:34 +00004554 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004555 }
Evan Chengc88138f2007-03-22 01:54:19 +00004556 }
4557
Chris Lattner6007b842006-09-21 06:00:20 +00004558 // fold (zext (truncate x)) -> (and x, mask)
4559 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004560 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004561
4562 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4563 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4564 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4565 if (NarrowLoad.getNode()) {
4566 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4567 if (NarrowLoad.getNode() != N0.getNode()) {
4568 CombineTo(N0.getNode(), NarrowLoad);
4569 // CombineTo deleted the truncate, if needed, but not what's under it.
4570 AddToWorkList(oye);
4571 }
4572 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4573 }
4574
Dan Gohman475871a2008-07-27 21:46:04 +00004575 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004576 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004577 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004578 AddToWorkList(Op.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004579 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004580 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004581 AddToWorkList(Op.getNode());
Chris Lattner6007b842006-09-21 06:00:20 +00004582 }
Dan Gohman87862e72009-12-11 21:31:27 +00004583 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4584 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004585 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004586
Dan Gohman97121ba2009-04-08 00:15:30 +00004587 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4588 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004589 if (N0.getOpcode() == ISD::AND &&
4590 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004591 N0.getOperand(1).getOpcode() == ISD::Constant &&
4592 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4593 N0.getValueType()) ||
4594 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004595 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004596 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004597 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004598 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004599 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004600 }
Dan Gohman220a8232008-03-03 23:51:38 +00004601 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004602 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004603 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4604 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004605 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004606
Evan Cheng110dec22005-12-14 02:19:23 +00004607 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004608 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004609 // on vectors in one instruction. We only perform this transformation on
4610 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004611 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004612 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004613 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004614 bool DoXform = true;
4615 SmallVector<SDNode*, 4> SetCCs;
4616 if (!N0.hasOneUse())
4617 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4618 if (DoXform) {
4619 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004620 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004621 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004622 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004623 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004624 LN0->isVolatile(), LN0->isNonTemporal(),
4625 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004626 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004627 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4628 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004629 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004630
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004631 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4632 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004633 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004634 }
Evan Cheng110dec22005-12-14 02:19:23 +00004635 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004636
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004637 // fold (zext (and/or/xor (load x), cst)) ->
4638 // (and/or/xor (zextload x), (zext cst))
4639 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4640 N0.getOpcode() == ISD::XOR) &&
4641 isa<LoadSDNode>(N0.getOperand(0)) &&
4642 N0.getOperand(1).getOpcode() == ISD::Constant &&
4643 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4644 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4645 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4646 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4647 bool DoXform = true;
4648 SmallVector<SDNode*, 4> SetCCs;
4649 if (!N0.hasOneUse())
4650 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4651 SetCCs, TLI);
4652 if (DoXform) {
4653 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4654 LN0->getChain(), LN0->getBasePtr(),
4655 LN0->getPointerInfo(),
4656 LN0->getMemoryVT(),
4657 LN0->isVolatile(),
4658 LN0->isNonTemporal(),
4659 LN0->getAlignment());
4660 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4661 Mask = Mask.zext(VT.getSizeInBits());
4662 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4663 ExtLoad, DAG.getConstant(Mask, VT));
4664 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4665 N0.getOperand(0).getDebugLoc(),
4666 N0.getOperand(0).getValueType(), ExtLoad);
4667 CombineTo(N, And);
4668 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4669 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4670 ISD::ZERO_EXTEND);
4671 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4672 }
4673 }
4674 }
4675
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004676 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4677 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004678 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4679 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004680 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004681 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004682 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004683 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004684 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004685 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004686 LN0->getBasePtr(), LN0->getPointerInfo(),
4687 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004688 LN0->isVolatile(), LN0->isNonTemporal(),
4689 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004690 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004691 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004692 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4693 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004694 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004695 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004696 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004697 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004698
Chris Lattner20a35c32007-04-11 05:32:27 +00004699 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004700 if (!LegalOperations && VT.isVector()) {
4701 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4702 // Only do this before legalize for now.
4703 EVT N0VT = N0.getOperand(0).getValueType();
4704 EVT EltVT = VT.getVectorElementType();
4705 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4706 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004707 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004708 // We know that the # elements of the results is the same as the
4709 // # elements of the compare (and the # elements of the compare result
4710 // for that matter). Check to see that they are the same size. If so,
4711 // we know that the element size of the sext'd result matches the
4712 // element size of the compare operands.
4713 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004714 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004715 N0.getOperand(1),
4716 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4717 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4718 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004719
4720 // If the desired elements are smaller or larger than the source
4721 // elements we can use a matching integer vector type and then
4722 // truncate/sign extend
4723 EVT MatchingElementType =
4724 EVT::getIntegerVT(*DAG.getContext(),
4725 N0VT.getScalarType().getSizeInBits());
4726 EVT MatchingVectorType =
4727 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4728 N0VT.getVectorNumElements());
4729 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004730 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004731 N0.getOperand(1),
4732 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4733 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4734 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4735 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4736 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004737 }
4738
4739 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004740 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004741 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004742 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004743 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004744 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004745 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004746
Evan Cheng9818c042009-12-15 03:00:32 +00004747 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004748 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004749 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004750 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4751 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004752 SDValue ShAmt = N0.getOperand(1);
4753 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004754 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004755 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004756 // If the original shl may be shifting out bits, do not perform this
4757 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004758 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4759 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4760 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004761 return SDValue();
4762 }
Chris Lattnere0751182011-02-13 19:09:16 +00004763
4764 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004765
4766 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004767 if (VT.getSizeInBits() >= 256)
4768 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004769
Chris Lattnere0751182011-02-13 19:09:16 +00004770 return DAG.getNode(N0.getOpcode(), DL, VT,
4771 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4772 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004773 }
4774
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004775 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004776}
4777
Dan Gohman475871a2008-07-27 21:46:04 +00004778SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4779 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004780 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004781
Chris Lattner5ffc0662006-05-05 05:58:59 +00004782 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004783 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004784 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004785 // fold (aext (aext x)) -> (aext x)
4786 // fold (aext (zext x)) -> (zext x)
4787 // fold (aext (sext x)) -> (sext x)
4788 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4789 N0.getOpcode() == ISD::ZERO_EXTEND ||
4790 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004791 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004792
Evan Chengc88138f2007-03-22 01:54:19 +00004793 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4794 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4795 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004796 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4797 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004798 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4799 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004800 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004801 // CombineTo deleted the truncate, if needed, but not what's under it.
4802 AddToWorkList(oye);
4803 }
Eli Friedmane545d382011-04-16 23:25:34 +00004804 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004805 }
Evan Chengc88138f2007-03-22 01:54:19 +00004806 }
4807
Chris Lattner84750582006-09-20 06:29:17 +00004808 // fold (aext (truncate x))
4809 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004810 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004811 if (TruncOp.getValueType() == VT)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00004812 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004813 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004814 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4815 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004816 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004817
Dan Gohman97121ba2009-04-08 00:15:30 +00004818 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4819 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004820 if (N0.getOpcode() == ISD::AND &&
4821 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004822 N0.getOperand(1).getOpcode() == ISD::Constant &&
4823 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4824 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004825 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004826 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004827 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004828 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004829 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004830 }
Dan Gohman220a8232008-03-03 23:51:38 +00004831 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004832 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004833 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4834 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004835 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004836
Chris Lattner5ffc0662006-05-05 05:58:59 +00004837 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004838 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004839 // on vectors in one instruction. We only perform this transformation on
4840 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004841 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004842 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004843 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004844 bool DoXform = true;
4845 SmallVector<SDNode*, 4> SetCCs;
4846 if (!N0.hasOneUse())
4847 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4848 if (DoXform) {
4849 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004850 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004851 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004852 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004853 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004854 LN0->isVolatile(), LN0->isNonTemporal(),
4855 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004856 CombineTo(N, ExtLoad);
4857 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4858 N0.getValueType(), ExtLoad);
4859 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004860 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4861 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004862 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4863 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004864 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004865
Chris Lattner5ffc0662006-05-05 05:58:59 +00004866 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4867 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4868 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004869 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004870 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004871 N0.hasOneUse()) {
4872 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004873 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004874 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4875 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004876 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004877 LN0->isVolatile(), LN0->isNonTemporal(),
4878 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004879 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004880 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004881 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4882 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004883 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004884 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004885 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004886
Chris Lattner20a35c32007-04-11 05:32:27 +00004887 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004888 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4889 // Only do this before legalize for now.
4890 if (VT.isVector() && !LegalOperations) {
4891 EVT N0VT = N0.getOperand(0).getValueType();
4892 // We know that the # elements of the results is the same as the
4893 // # elements of the compare (and the # elements of the compare result
4894 // for that matter). Check to see that they are the same size. If so,
4895 // we know that the element size of the sext'd result matches the
4896 // element size of the compare operands.
4897 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004898 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004899 N0.getOperand(1),
4900 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004901 // If the desired elements are smaller or larger than the source
4902 // elements we can use a matching integer vector type and then
4903 // truncate/sign extend
4904 else {
Duncan Sands34727662010-07-12 08:16:59 +00004905 EVT MatchingElementType =
4906 EVT::getIntegerVT(*DAG.getContext(),
4907 N0VT.getScalarType().getSizeInBits());
4908 EVT MatchingVectorType =
4909 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4910 N0VT.getVectorNumElements());
4911 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004912 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004913 N0.getOperand(1),
4914 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4915 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004916 }
4917 }
4918
4919 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004920 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004921 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004922 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004923 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004924 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004925 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004926 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004927
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004928 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004929}
4930
Chris Lattner2b4c2792007-10-13 06:35:54 +00004931/// GetDemandedBits - See if the specified operand can be simplified with the
4932/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004933/// simpler operand, otherwise return a null SDValue.
4934SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004935 switch (V.getOpcode()) {
4936 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004937 case ISD::Constant: {
4938 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4939 assert(CV != 0 && "Const value should be ConstSDNode.");
4940 const APInt &CVal = CV->getAPIntValue();
4941 APInt NewVal = CVal & Mask;
4942 if (NewVal != CVal) {
4943 return DAG.getConstant(NewVal, V.getValueType());
4944 }
4945 break;
4946 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004947 case ISD::OR:
4948 case ISD::XOR:
4949 // If the LHS or RHS don't contribute bits to the or, drop them.
4950 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4951 return V.getOperand(1);
4952 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4953 return V.getOperand(0);
4954 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004955 case ISD::SRL:
4956 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00004957 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00004958 break;
4959 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4960 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004961 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00004962
Dan Gohmancc91d632009-01-03 19:22:06 +00004963 // Watch out for shift count overflow though.
4964 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004965 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00004966 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00004967 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004968 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00004969 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00004970 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004971 }
Dan Gohman475871a2008-07-27 21:46:04 +00004972 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00004973}
4974
Evan Chengc88138f2007-03-22 01:54:19 +00004975/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4976/// bits and then truncated to a narrower type and where N is a multiple
4977/// of number of bits of the narrower type, transform it to a narrower load
4978/// from address + N / num of bits of new type. If the result is to be
4979/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00004980SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00004981 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004982
Evan Chengc88138f2007-03-22 01:54:19 +00004983 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00004984 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004985 EVT VT = N->getValueType(0);
4986 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00004987
Dan Gohman7f8613e2008-08-14 20:04:46 +00004988 // This transformation isn't valid for vector loads.
4989 if (VT.isVector())
4990 return SDValue();
4991
Dan Gohmand1996362010-01-09 02:13:55 +00004992 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00004993 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00004994 if (Opc == ISD::SIGN_EXTEND_INREG) {
4995 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00004996 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004997 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00004998 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004999 ExtType = ISD::ZEXTLOAD;
5000 N0 = SDValue(N, 0);
5001 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
5002 if (!N01) return SDValue();
5003 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
5004 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00005005 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00005006 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
5007 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005008
Owen Andersone50ed302009-08-10 22:56:29 +00005009 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00005010
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005011 // Do not generate loads of non-round integer types since these can
5012 // be expensive (and would be wrong if the type is not byte sized).
5013 if (!ExtVT.isRound())
5014 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005015
Evan Chengc88138f2007-03-22 01:54:19 +00005016 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005017 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00005018 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005019 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005020 // Is the shift amount a multiple of size of VT?
5021 if ((ShAmt & (EVTBits-1)) == 0) {
5022 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00005023 // Is the load width a multiple of size of VT?
5024 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005025 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005026 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005027
Chris Lattnercbf68df2010-12-22 08:02:57 +00005028 // At this point, we must have a load or else we can't do the transform.
5029 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005030
Chris Lattner2831a192010-10-01 05:36:09 +00005031 // If the shift amount is larger than the input type then we're not
5032 // accessing any of the loaded bytes. If the load was a zextload/extload
5033 // then the result of the shift+trunc is zero/undef (handled elsewhere).
5034 // If the load was a sextload then the result is a splat of the sign bit
5035 // of the extended byte. This is not worth optimizing for.
Chris Lattnercbf68df2010-12-22 08:02:57 +00005036 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00005037 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005038 }
5039 }
5040
Dan Gohman394d6292010-11-03 01:47:46 +00005041 // If the load is shifted left (and the result isn't shifted back right),
5042 // we can fold the truncate through the shift.
5043 unsigned ShLeftAmt = 0;
5044 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00005045 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00005046 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5047 ShLeftAmt = N01->getZExtValue();
5048 N0 = N0.getOperand(0);
5049 }
5050 }
Owen Anderson95771af2011-02-25 21:41:48 +00005051
Chris Lattner4c32bc22010-12-22 07:36:50 +00005052 // If we haven't found a load, we can't narrow it. Don't transform one with
5053 // multiple uses, this would require adding a new load.
5054 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
5055 // Don't change the width of a volatile load.
5056 cast<LoadSDNode>(N0)->isVolatile())
5057 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005058
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005059 // Verify that we are actually reducing a load width here.
5060 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005061 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005062
Chris Lattner4c32bc22010-12-22 07:36:50 +00005063 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5064 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005065
Evan Cheng16436df2012-06-26 01:19:33 +00005066 if (PtrType == MVT::Untyped || PtrType.isExtended())
5067 // It's not possible to generate a constant of extended or untyped type.
5068 return SDValue();
5069
Chris Lattner4c32bc22010-12-22 07:36:50 +00005070 // For big endian targets, we need to adjust the offset to the pointer to
5071 // load the correct bytes.
5072 if (TLI.isBigEndian()) {
5073 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5074 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5075 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005076 }
5077
Chris Lattner4c32bc22010-12-22 07:36:50 +00005078 uint64_t PtrOff = ShAmt / 8;
5079 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
5080 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
5081 PtrType, LN0->getBasePtr(),
5082 DAG.getConstant(PtrOff, PtrType));
5083 AddToWorkList(NewPtr.getNode());
5084
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005085 SDValue Load;
5086 if (ExtType == ISD::NON_EXTLOAD)
5087 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
5088 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005089 LN0->isVolatile(), LN0->isNonTemporal(),
5090 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005091 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00005092 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005093 LN0->getPointerInfo().getWithOffset(PtrOff),
5094 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5095 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005096
5097 // Replace the old load's chain with the new load's chain.
5098 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005099 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005100
5101 // Shift the result left, if we've swallowed a left shift.
5102 SDValue Result = Load;
5103 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005104 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005105 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5106 ShImmTy = VT;
5107 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
5108 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
5109 }
5110
5111 // Return the new loaded value.
5112 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005113}
5114
Dan Gohman475871a2008-07-27 21:46:04 +00005115SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5116 SDValue N0 = N->getOperand(0);
5117 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005118 EVT VT = N->getValueType(0);
5119 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005120 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005121 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005122
Nate Begeman1d4d4142005-09-01 00:19:25 +00005123 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005124 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00005125 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005126
Chris Lattner541a24f2006-05-06 22:43:44 +00005127 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005128 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005129 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005130
Nate Begeman646d7e22005-09-02 21:18:40 +00005131 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5132 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00005133 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00005134 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5135 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00005136 }
Chris Lattner4b37e872006-05-08 21:18:59 +00005137
Dan Gohman75dcf082008-07-31 00:50:31 +00005138 // fold (sext_in_reg (sext x)) -> (sext x)
5139 // fold (sext_in_reg (aext x)) -> (sext x)
5140 // if x is small enough.
5141 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5142 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005143 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5144 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00005145 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005146 }
5147
Chris Lattner95a5e052007-04-17 19:03:21 +00005148 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005149 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005150 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005151
Chris Lattner95a5e052007-04-17 19:03:21 +00005152 // fold operands of sext_in_reg based on knowledge that the top bits are not
5153 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005154 if (SimplifyDemandedBits(SDValue(N, 0)))
5155 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005156
Evan Chengc88138f2007-03-22 01:54:19 +00005157 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5158 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005159 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005160 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005161 return NarrowLoad;
5162
Bill Wendling8509c902009-01-30 22:33:24 +00005163 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005164 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005165 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5166 if (N0.getOpcode() == ISD::SRL) {
5167 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005168 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005169 // We can turn this into an SRA iff the input to the SRL is already sign
Chris Lattner4b37e872006-05-08 21:18:59 +00005170 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005171 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005172 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005173 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5174 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005175 }
5176 }
Evan Chengc88138f2007-03-22 01:54:19 +00005177
Nate Begemanded49632005-10-13 03:11:28 +00005178 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005179 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005180 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005181 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005182 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005183 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005184 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005185 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005186 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005187 LN0->getBasePtr(), LN0->getPointerInfo(),
5188 EVT,
David Greene1e559442010-02-15 17:00:31 +00005189 LN0->isVolatile(), LN0->isNonTemporal(),
5190 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005191 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005192 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005193 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005194 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005195 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005196 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005197 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005198 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005199 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005200 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005201 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005202 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005203 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005204 LN0->getBasePtr(), LN0->getPointerInfo(),
5205 EVT,
David Greene1e559442010-02-15 17:00:31 +00005206 LN0->isVolatile(), LN0->isNonTemporal(),
5207 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005208 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005209 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005210 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005211 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005212
5213 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5214 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5215 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5216 N0.getOperand(1), false);
5217 if (BSwap.getNode() != 0)
5218 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5219 BSwap, N1);
5220 }
5221
Dan Gohman475871a2008-07-27 21:46:04 +00005222 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005223}
5224
Dan Gohman475871a2008-07-27 21:46:04 +00005225SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5226 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005227 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005228 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005229
5230 // noop truncate
5231 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005232 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005233 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005234 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005235 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005236 // fold (truncate (truncate x)) -> (truncate x)
5237 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005238 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005239 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005240 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5241 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005242 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005243 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005244 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005245 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5246 N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005247 if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005248 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005249 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005250 // if the source and dest are the same type, we can drop both the extend
5251 // and the truncate.
5252 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005253 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005254
Nadav Rotemcc870a82012-02-05 11:39:23 +00005255 // Fold extract-and-trunc into a narrow extract. For example:
5256 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5257 // i32 y = TRUNCATE(i64 x)
5258 // -- becomes --
5259 // v16i8 b = BITCAST (v2i64 val)
5260 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5261 //
5262 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005263 // creates this pattern) and before operation legalization after which
5264 // we need to be more careful about the vector instructions that we generate.
5265 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5266 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5267
5268 EVT VecTy = N0.getOperand(0).getValueType();
5269 EVT ExTy = N0.getValueType();
5270 EVT TrTy = N->getValueType(0);
5271
5272 unsigned NumElem = VecTy.getVectorNumElements();
5273 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5274
5275 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5276 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5277
5278 SDValue EltNo = N0->getOperand(1);
5279 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5280 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005281 EVT IndexTy = N0->getOperand(1).getValueType();
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005282 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5283
5284 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5285 NVT, N0.getOperand(0));
5286
5287 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5288 N->getDebugLoc(), TrTy, V,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005289 DAG.getConstant(Index, IndexTy));
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005290 }
5291 }
5292
Chris Lattner2b4c2792007-10-13 06:35:54 +00005293 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005294 // only the low bits are being used.
5295 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005296 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005297 // may have different active low bits.
5298 if (!VT.isVector()) {
5299 SDValue Shorter =
5300 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5301 VT.getSizeInBits()));
5302 if (Shorter.getNode())
5303 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5304 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005305 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005306 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005307 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5308 SDValue Reduced = ReduceLoadWidth(N);
5309 if (Reduced.getNode())
5310 return Reduced;
5311 }
Michael Liao07edaf32012-10-17 23:45:54 +00005312 // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)),
5313 // where ... are all 'undef'.
5314 if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) {
5315 SmallVector<EVT, 8> VTs;
5316 SDValue V;
5317 unsigned Idx = 0;
5318 unsigned NumDefs = 0;
5319
5320 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
5321 SDValue X = N0.getOperand(i);
5322 if (X.getOpcode() != ISD::UNDEF) {
5323 V = X;
5324 Idx = i;
5325 NumDefs++;
5326 }
5327 // Stop if more than one members are non-undef.
5328 if (NumDefs > 1)
5329 break;
5330 VTs.push_back(EVT::getVectorVT(*DAG.getContext(),
5331 VT.getVectorElementType(),
5332 X.getValueType().getVectorNumElements()));
5333 }
5334
5335 if (NumDefs == 0)
5336 return DAG.getUNDEF(VT);
5337
5338 if (NumDefs == 1) {
5339 assert(V.getNode() && "The single defined operand is empty!");
5340 SmallVector<SDValue, 8> Opnds;
5341 for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
5342 if (i != Idx) {
5343 Opnds.push_back(DAG.getUNDEF(VTs[i]));
5344 continue;
5345 }
5346 SDValue NV = DAG.getNode(ISD::TRUNCATE, V.getDebugLoc(), VTs[i], V);
5347 AddToWorkList(NV.getNode());
5348 Opnds.push_back(NV);
5349 }
5350 return DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
5351 &Opnds[0], Opnds.size());
5352 }
5353 }
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005354
5355 // Simplify the operands using demanded-bits information.
5356 if (!VT.isVector() &&
5357 SimplifyDemandedBits(SDValue(N, 0)))
5358 return SDValue(N, 0);
5359
Evan Chenge5b51ac2010-04-17 06:13:15 +00005360 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005361}
5362
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005363static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005364 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005365 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005366 return Elt.getNode();
5367 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005368}
5369
5370/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005371/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005372SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005373 assert(N->getOpcode() == ISD::BUILD_PAIR);
5374
Nate Begemanabc01992009-06-05 21:37:30 +00005375 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5376 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005377 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5378 LD1->getPointerInfo().getAddrSpace() !=
5379 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005380 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005381 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005382
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005383 if (ISD::isNON_EXTLoad(LD2) &&
5384 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005385 // If both are volatile this would reduce the number of volatile loads.
5386 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005387 !LD1->isVolatile() &&
5388 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005389 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005390 unsigned Align = LD1->getAlignment();
Micah Villmow3574eca2012-10-08 16:38:25 +00005391 unsigned NewAlign = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005392 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005393
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005394 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005395 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005396 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005397 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005398 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005399 }
Bill Wendling67a67682009-01-30 22:44:24 +00005400
Dan Gohman475871a2008-07-27 21:46:04 +00005401 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005402}
5403
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005404SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005405 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005406 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005407
Dan Gohman7f321562007-06-25 16:23:39 +00005408 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5409 // Only do this before legalize, since afterward the target may be depending
5410 // on the bitconvert.
5411 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005412 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005413 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005414 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005415 bool isSimple = true;
5416 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5417 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5418 N0.getOperand(i).getOpcode() != ISD::Constant &&
5419 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005420 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005421 break;
5422 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005423
Owen Andersone50ed302009-08-10 22:56:29 +00005424 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005425 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005426 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005427 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005428 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005429 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005430
Dan Gohman3dd168d2008-09-05 01:58:21 +00005431 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005432 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005433 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005434 if (Res.getNode() != N) {
5435 if (!LegalOperations ||
5436 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5437 return Res;
5438
5439 // Folding it resulted in an illegal node, and it's too late to
5440 // do that. Clean up the old node and forego the transformation.
5441 // Ideally this won't happen very often, because instcombine
5442 // and the earlier dagcombine runs (where illegal nodes are
5443 // permitted) should have folded most of them already.
5444 DAG.DeleteNode(Res.getNode());
5445 }
Chris Lattner94683772005-12-23 05:30:37 +00005446 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005447
Bill Wendling67a67682009-01-30 22:44:24 +00005448 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005449 if (N0.getOpcode() == ISD::BITCAST)
5450 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005451 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005452
Chris Lattner57104102005-12-23 05:44:41 +00005453 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005454 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005455 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005456 // Do not change the width of a volatile load.
5457 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005458 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005459 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Micah Villmow3574eca2012-10-08 16:38:25 +00005460 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005461 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005462 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005463
Evan Cheng59d5b682007-05-07 21:27:48 +00005464 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005465 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005466 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005467 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005468 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005469 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005470 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005471 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005472 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005473 Load.getValue(1));
5474 return Load;
5475 }
Chris Lattner57104102005-12-23 05:44:41 +00005476 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005477
Bill Wendling67a67682009-01-30 22:44:24 +00005478 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5479 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005480 // This often reduces constant pool loads.
Owen Anderson29f60f32012-04-02 22:10:29 +00005481 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) ||
5482 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) &&
Nadav Rotem91a7e012012-09-13 14:54:28 +00005483 N0.getNode()->hasOneUse() && VT.isInteger() &&
5484 !VT.isVector() && !N0.getValueType().isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005485 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005486 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005487 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005488
Duncan Sands83ec4b62008-06-06 12:08:01 +00005489 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005490 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005491 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5492 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005493 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005494 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5495 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005496 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005497
Bill Wendling67a67682009-01-30 22:44:24 +00005498 // fold (bitconvert (fcopysign cst, x)) ->
5499 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5500 // Note that we don't handle (copysign x, cst) because this can always be
5501 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005502 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005503 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005504 VT.isInteger() && !VT.isVector()) {
5505 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005506 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005507 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005508 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005509 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005510 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005511
Duncan Sands25cf2272008-11-24 14:53:14 +00005512 // If X has a different width than the result/lhs, sext it or truncate it.
5513 unsigned VTWidth = VT.getSizeInBits();
5514 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005515 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005516 AddToWorkList(X.getNode());
5517 } else if (OrigXWidth > VTWidth) {
5518 // To get the sign bit in the right place, we have to shift it right
5519 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005520 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005521 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005522 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5523 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005524 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005525 AddToWorkList(X.getNode());
5526 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005527
Duncan Sands25cf2272008-11-24 14:53:14 +00005528 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005529 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005530 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005531 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005532
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005533 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005534 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005535 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005536 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005537 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005538
Bill Wendling67a67682009-01-30 22:44:24 +00005539 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005540 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005541 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005542
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005543 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005544 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005545 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5546 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005547 return CombineLD;
5548 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005549
Dan Gohman475871a2008-07-27 21:46:04 +00005550 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005551}
5552
Dan Gohman475871a2008-07-27 21:46:04 +00005553SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005554 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005555 return CombineConsecutiveLoads(N, VT);
5556}
5557
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005558/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005559/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005560/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005561SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005562ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005563 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005564
Chris Lattner6258fb22006-04-02 02:53:43 +00005565 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005566 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005567
Duncan Sands83ec4b62008-06-06 12:08:01 +00005568 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5569 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005570
Chris Lattner6258fb22006-04-02 02:53:43 +00005571 // If this is a conversion of N elements of one type to N elements of another
5572 // type, convert each element. This handles FP<->INT cases.
5573 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005574 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5575 BV->getValueType(0).getVectorNumElements());
5576
5577 // Due to the FP element handling below calling this routine recursively,
5578 // we can end up with a scalar-to-vector node here.
5579 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005580 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5581 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005582 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005583
Dan Gohman475871a2008-07-27 21:46:04 +00005584 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005585 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005586 SDValue Op = BV->getOperand(i);
5587 // If the vector element type is not legal, the BUILD_VECTOR operands
5588 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005589 if (Op.getValueType() != SrcEltVT)
5590 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005591 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005592 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005593 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005594 }
Evan Chenga87008d2009-02-25 22:49:59 +00005595 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5596 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005597 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005598
Chris Lattner6258fb22006-04-02 02:53:43 +00005599 // Otherwise, we're growing or shrinking the elements. To avoid having to
5600 // handle annoying details of growing/shrinking FP values, we convert them to
5601 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005602 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005603 // Convert the input float vector to a int vector where the elements are the
5604 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005605 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005606 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005607 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005608 SrcEltVT = IntVT;
5609 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005610
Chris Lattner6258fb22006-04-02 02:53:43 +00005611 // Now we know the input is an integer vector. If the output is a FP type,
5612 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005613 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005614 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005615 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005616 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005617
Chris Lattner6258fb22006-04-02 02:53:43 +00005618 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005619 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005620 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005621
Chris Lattner6258fb22006-04-02 02:53:43 +00005622 // Okay, we know the src/dst types are both integers of differing types.
5623 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005624 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005625 if (SrcBitSize < DstBitSize) {
5626 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005627
Dan Gohman475871a2008-07-27 21:46:04 +00005628 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005629 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005630 i += NumInputsPerOutput) {
5631 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005632 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005633 bool EltIsUndef = true;
5634 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5635 // Shift the previously computed bits over.
5636 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005637 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005638 if (Op.getOpcode() == ISD::UNDEF) continue;
5639 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005640
Jay Foad40f8f622010-12-07 08:25:19 +00005641 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005642 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005643 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005644
Chris Lattner6258fb22006-04-02 02:53:43 +00005645 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005646 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005647 else
5648 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5649 }
5650
Owen Anderson23b9b192009-08-12 00:36:31 +00005651 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005652 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5653 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005654 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005655
Chris Lattner6258fb22006-04-02 02:53:43 +00005656 // Finally, this must be the case where we are shrinking elements: each input
5657 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005658 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005659 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005660 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5661 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005662 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005663
Dan Gohman7f321562007-06-25 16:23:39 +00005664 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005665 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5666 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005667 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005668 continue;
5669 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005670
Jay Foad40f8f622010-12-07 08:25:19 +00005671 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5672 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005673
Chris Lattner6258fb22006-04-02 02:53:43 +00005674 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005675 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005676 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005677 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005678 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005679 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5680 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005681 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005682 }
5683
5684 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005685 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005686 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5687 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005688
Evan Chenga87008d2009-02-25 22:49:59 +00005689 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5690 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005691}
5692
Dan Gohman475871a2008-07-27 21:46:04 +00005693SDValue DAGCombiner::visitFADD(SDNode *N) {
5694 SDValue N0 = N->getOperand(0);
5695 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005696 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5697 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005698 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005699
Dan Gohman7f321562007-06-25 16:23:39 +00005700 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005701 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005702 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005703 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005704 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005705
Lang Hames01806942012-06-14 20:37:15 +00005706 // fold (fadd c1, c2) -> c1 + c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005707 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005708 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005709 // canonicalize constant to RHS
5710 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005711 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5712 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005713 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5714 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005715 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005716 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005717 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005718 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005719 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005720 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005721 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005722 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005723 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005724 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005725 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005726
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005727 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005728 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5729 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5730 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005731 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005732 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5733 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005734
Owen Anderson43da6c72012-08-30 23:35:16 +00005735 // In unsafe math mode, we can fold chains of FADD's of the same value
5736 // into multiplications. This transform is not safe in general because
5737 // we are reducing the number of rounding steps.
5738 if (DAG.getTarget().Options.UnsafeFPMath &&
5739 TLI.isOperationLegalOrCustom(ISD::FMUL, VT) &&
5740 !N0CFP && !N1CFP) {
5741 if (N0.getOpcode() == ISD::FMUL) {
5742 ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
5743 ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
5744
5745 // (fadd (fmul c, x), x) -> (fmul c+1, x)
5746 if (CFP00 && !CFP01 && N0.getOperand(1) == N1) {
5747 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5748 SDValue(CFP00, 0),
5749 DAG.getConstantFP(1.0, VT));
5750 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5751 N1, NewCFP);
5752 }
5753
5754 // (fadd (fmul x, c), x) -> (fmul c+1, x)
5755 if (CFP01 && !CFP00 && N0.getOperand(0) == N1) {
5756 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5757 SDValue(CFP01, 0),
5758 DAG.getConstantFP(1.0, VT));
5759 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5760 N1, NewCFP);
5761 }
5762
5763 // (fadd (fadd x, x), x) -> (fmul 3.0, x)
5764 if (!CFP00 && !CFP01 && N0.getOperand(0) == N0.getOperand(1) &&
5765 N0.getOperand(0) == N1) {
5766 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5767 N1, DAG.getConstantFP(3.0, VT));
5768 }
5769
5770 // (fadd (fmul c, x), (fadd x, x)) -> (fmul c+2, x)
5771 if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD &&
5772 N1.getOperand(0) == N1.getOperand(1) &&
5773 N0.getOperand(1) == N1.getOperand(0)) {
5774 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5775 SDValue(CFP00, 0),
5776 DAG.getConstantFP(2.0, VT));
5777 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5778 N0.getOperand(1), NewCFP);
5779 }
5780
5781 // (fadd (fmul x, c), (fadd x, x)) -> (fmul c+2, x)
5782 if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD &&
5783 N1.getOperand(0) == N1.getOperand(1) &&
5784 N0.getOperand(0) == N1.getOperand(0)) {
5785 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5786 SDValue(CFP01, 0),
5787 DAG.getConstantFP(2.0, VT));
5788 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5789 N0.getOperand(0), NewCFP);
5790 }
5791 }
5792
5793 if (N1.getOpcode() == ISD::FMUL) {
5794 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
5795 ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1));
5796
5797 // (fadd x, (fmul c, x)) -> (fmul c+1, x)
5798 if (CFP10 && !CFP11 && N1.getOperand(1) == N0) {
5799 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5800 SDValue(CFP10, 0),
5801 DAG.getConstantFP(1.0, VT));
5802 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5803 N0, NewCFP);
5804 }
5805
5806 // (fadd x, (fmul x, c)) -> (fmul c+1, x)
5807 if (CFP11 && !CFP10 && N1.getOperand(0) == N0) {
5808 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5809 SDValue(CFP11, 0),
5810 DAG.getConstantFP(1.0, VT));
5811 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5812 N0, NewCFP);
5813 }
5814
5815 // (fadd x, (fadd x, x)) -> (fmul 3.0, x)
5816 if (!CFP10 && !CFP11 && N1.getOperand(0) == N1.getOperand(1) &&
5817 N1.getOperand(0) == N0) {
5818 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5819 N0, DAG.getConstantFP(3.0, VT));
5820 }
5821
5822 // (fadd (fadd x, x), (fmul c, x)) -> (fmul c+2, x)
5823 if (CFP10 && !CFP11 && N1.getOpcode() == ISD::FADD &&
5824 N1.getOperand(0) == N1.getOperand(1) &&
5825 N0.getOperand(1) == N1.getOperand(0)) {
5826 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5827 SDValue(CFP10, 0),
5828 DAG.getConstantFP(2.0, VT));
5829 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5830 N0.getOperand(1), NewCFP);
5831 }
5832
5833 // (fadd (fadd x, x), (fmul x, c)) -> (fmul c+2, x)
5834 if (CFP11 && !CFP10 && N1.getOpcode() == ISD::FADD &&
5835 N1.getOperand(0) == N1.getOperand(1) &&
5836 N0.getOperand(0) == N1.getOperand(0)) {
5837 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5838 SDValue(CFP11, 0),
5839 DAG.getConstantFP(2.0, VT));
5840 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5841 N0.getOperand(0), NewCFP);
5842 }
5843 }
5844
5845 // (fadd (fadd x, x), (fadd x, x)) -> (fmul 4.0, x)
5846 if (N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD &&
5847 N0.getOperand(0) == N0.getOperand(1) &&
5848 N1.getOperand(0) == N1.getOperand(1) &&
5849 N0.getOperand(0) == N1.getOperand(0)) {
5850 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5851 N0.getOperand(0),
5852 DAG.getConstantFP(4.0, VT));
5853 }
5854 }
5855
Lang Hamesd693caf2012-06-19 22:51:23 +00005856 // FADD -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005857 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005858 DAG.getTarget().Options.UnsafeFPMath) &&
5859 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005860 TLI.isOperationLegalOrCustom(ISD::FMA, VT)) {
Lang Hamesd693caf2012-06-19 22:51:23 +00005861
5862 // fold (fadd (fmul x, y), z) -> (fma x, y, z)
5863 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
5864 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5865 N0.getOperand(0), N0.getOperand(1), N1);
5866 }
Owen Anderson43da6c72012-08-30 23:35:16 +00005867
Michael Liaob79bff52012-09-01 04:09:16 +00005868 // fold (fadd x, (fmul y, z)) -> (fma y, z, x)
Lang Hamesd693caf2012-06-19 22:51:23 +00005869 // Note: Commutes FADD operands.
5870 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
5871 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5872 N1.getOperand(0), N1.getOperand(1), N0);
5873 }
5874 }
5875
Dan Gohman475871a2008-07-27 21:46:04 +00005876 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005877}
5878
Dan Gohman475871a2008-07-27 21:46:04 +00005879SDValue DAGCombiner::visitFSUB(SDNode *N) {
5880 SDValue N0 = N->getOperand(0);
5881 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005882 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5883 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005884 EVT VT = N->getValueType(0);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005885 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005886
Dan Gohman7f321562007-06-25 16:23:39 +00005887 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005888 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005889 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005890 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005891 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005892
Nate Begemana0e221d2005-10-18 00:28:13 +00005893 // fold (fsub c1, c2) -> c1-c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005894 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005895 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005896 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005897 if (DAG.getTarget().Options.UnsafeFPMath &&
5898 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005899 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005900 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005901 if (DAG.getTarget().Options.UnsafeFPMath &&
5902 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005903 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005904 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005905 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005906 return DAG.getNode(ISD::FNEG, dl, VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005907 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005908 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005909 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005910 return DAG.getNode(ISD::FADD, dl, VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005911 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005912
Bill Wendling5a894342012-03-15 05:12:00 +00005913 // If 'unsafe math' is enabled, fold
Owen Anderson713e9532012-05-07 20:51:25 +00005914 // (fsub x, x) -> 0.0 &
Bill Wendling5a894342012-03-15 05:12:00 +00005915 // (fsub x, (fadd x, y)) -> (fneg y) &
5916 // (fsub x, (fadd y, x)) -> (fneg y)
5917 if (DAG.getTarget().Options.UnsafeFPMath) {
Owen Anderson713e9532012-05-07 20:51:25 +00005918 if (N0 == N1)
5919 return DAG.getConstantFP(0.0f, VT);
5920
Bill Wendling5a894342012-03-15 05:12:00 +00005921 if (N1.getOpcode() == ISD::FADD) {
5922 SDValue N10 = N1->getOperand(0);
5923 SDValue N11 = N1->getOperand(1);
5924
5925 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
5926 &DAG.getTarget().Options))
5927 return GetNegatedExpression(N11, DAG, LegalOperations);
5928 else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
5929 &DAG.getTarget().Options))
5930 return GetNegatedExpression(N10, DAG, LegalOperations);
5931 }
5932 }
5933
Lang Hamesd693caf2012-06-19 22:51:23 +00005934 // FSUB -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005935 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005936 DAG.getTarget().Options.UnsafeFPMath) &&
5937 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005938 TLI.isOperationLegalOrCustom(ISD::FMA, VT)) {
Lang Hamesd693caf2012-06-19 22:51:23 +00005939
5940 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z))
5941 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005942 return DAG.getNode(ISD::FMA, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00005943 N0.getOperand(0), N0.getOperand(1),
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005944 DAG.getNode(ISD::FNEG, dl, VT, N1));
Lang Hamesd693caf2012-06-19 22:51:23 +00005945 }
5946
5947 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x)
5948 // Note: Commutes FSUB operands.
5949 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005950 return DAG.getNode(ISD::FMA, dl, VT,
5951 DAG.getNode(ISD::FNEG, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00005952 N1.getOperand(0)),
5953 N1.getOperand(1), N0);
5954 }
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005955
5956 // fold (fsub (-(fmul, x, y)), z) -> (fma (fneg x), y, (fneg z))
5957 if (N0.getOpcode() == ISD::FNEG &&
5958 N0.getOperand(0).getOpcode() == ISD::FMUL &&
5959 N0->hasOneUse() && N0.getOperand(0).hasOneUse()) {
5960 SDValue N00 = N0.getOperand(0).getOperand(0);
5961 SDValue N01 = N0.getOperand(0).getOperand(1);
5962 return DAG.getNode(ISD::FMA, dl, VT,
5963 DAG.getNode(ISD::FNEG, dl, VT, N00), N01,
5964 DAG.getNode(ISD::FNEG, dl, VT, N1));
5965 }
Lang Hamesd693caf2012-06-19 22:51:23 +00005966 }
5967
Dan Gohman475871a2008-07-27 21:46:04 +00005968 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005969}
5970
Dan Gohman475871a2008-07-27 21:46:04 +00005971SDValue DAGCombiner::visitFMUL(SDNode *N) {
5972 SDValue N0 = N->getOperand(0);
5973 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005974 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5975 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005976 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005977 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005978
Dan Gohman7f321562007-06-25 16:23:39 +00005979 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005980 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005981 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005982 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005983 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005984
Nate Begeman11af4ea2005-10-17 20:40:11 +00005985 // fold (fmul c1, c2) -> c1*c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005986 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005987 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005988 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00005989 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005990 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5991 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005992 if (DAG.getTarget().Options.UnsafeFPMath &&
5993 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005994 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00005995 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005996 if (DAG.getTarget().Options.UnsafeFPMath &&
5997 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00005998 return N1;
Owen Anderson363e4b92012-05-02 21:32:35 +00005999 // fold (fmul A, 1.0) -> A
6000 if (N1CFP && N1CFP->isExactlyValue(1.0))
6001 return N0;
Nate Begeman11af4ea2005-10-17 20:40:11 +00006002 // fold (fmul X, 2.0) -> (fadd X, X)
6003 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006004 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00006005 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00006006 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00006007 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006008 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006009
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006010 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006011 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006012 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006013 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006014 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006015 // Both can be negated for free, check to see if at least one is cheaper
6016 // negated.
6017 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006018 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006019 GetNegatedExpression(N0, DAG, LegalOperations),
6020 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006021 }
6022 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006023
Chris Lattnerddae4bd2007-01-08 23:04:05 +00006024 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006025 if (DAG.getTarget().Options.UnsafeFPMath &&
6026 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006027 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006028 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00006029 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00006030 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006031
Dan Gohman475871a2008-07-27 21:46:04 +00006032 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006033}
6034
Owen Anderson062c0a52012-05-02 22:17:40 +00006035SDValue DAGCombiner::visitFMA(SDNode *N) {
6036 SDValue N0 = N->getOperand(0);
6037 SDValue N1 = N->getOperand(1);
6038 SDValue N2 = N->getOperand(2);
6039 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6040 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6041 EVT VT = N->getValueType(0);
Owen Anderson58d57292012-09-01 06:04:27 +00006042 DebugLoc dl = N->getDebugLoc();
Owen Anderson062c0a52012-05-02 22:17:40 +00006043
6044 if (N0CFP && N0CFP->isExactlyValue(1.0))
6045 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N2);
6046 if (N1CFP && N1CFP->isExactlyValue(1.0))
6047 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N2);
6048
Owen Anderson85ef6f42012-05-30 18:50:39 +00006049 // Canonicalize (fma c, x, y) -> (fma x, c, y)
Owen Andersonf917d202012-05-30 18:54:50 +00006050 if (N0CFP && !N1CFP)
Owen Anderson85ef6f42012-05-30 18:50:39 +00006051 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, N1, N0, N2);
6052
Owen Anderson58d57292012-09-01 06:04:27 +00006053 // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2)
6054 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6055 N2.getOpcode() == ISD::FMUL &&
6056 N0 == N2.getOperand(0) &&
6057 N2.getOperand(1).getOpcode() == ISD::ConstantFP) {
6058 return DAG.getNode(ISD::FMUL, dl, VT, N0,
6059 DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1)));
6060 }
6061
6062
6063 // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y)
6064 if (DAG.getTarget().Options.UnsafeFPMath &&
6065 N0.getOpcode() == ISD::FMUL && N1CFP &&
6066 N0.getOperand(1).getOpcode() == ISD::ConstantFP) {
6067 return DAG.getNode(ISD::FMA, dl, VT,
6068 N0.getOperand(0),
6069 DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)),
6070 N2);
6071 }
6072
6073 // (fma x, 1, y) -> (fadd x, y)
6074 // (fma x, -1, y) -> (fadd (fneg x), y)
6075 if (N1CFP) {
6076 if (N1CFP->isExactlyValue(1.0))
6077 return DAG.getNode(ISD::FADD, dl, VT, N0, N2);
6078
6079 if (N1CFP->isExactlyValue(-1.0) &&
6080 (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) {
6081 SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0);
6082 AddToWorkList(RHSNeg.getNode());
6083 return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg);
6084 }
6085 }
6086
6087 // (fma x, c, x) -> (fmul x, (c+1))
6088 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2) {
6089 return DAG.getNode(ISD::FMUL, dl, VT,
6090 N0,
6091 DAG.getNode(ISD::FADD, dl, VT,
6092 N1, DAG.getConstantFP(1.0, VT)));
6093 }
6094
6095 // (fma x, c, (fneg x)) -> (fmul x, (c-1))
6096 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6097 N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0) {
6098 return DAG.getNode(ISD::FMUL, dl, VT,
6099 N0,
6100 DAG.getNode(ISD::FADD, dl, VT,
6101 N1, DAG.getConstantFP(-1.0, VT)));
6102 }
6103
6104
Owen Anderson062c0a52012-05-02 22:17:40 +00006105 return SDValue();
6106}
6107
Dan Gohman475871a2008-07-27 21:46:04 +00006108SDValue DAGCombiner::visitFDIV(SDNode *N) {
6109 SDValue N0 = N->getOperand(0);
6110 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006111 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6112 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006113 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006114 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006115
Dan Gohman7f321562007-06-25 16:23:39 +00006116 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006117 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006118 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006119 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006120 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006121
Nate Begemana148d982006-01-18 22:35:16 +00006122 // fold (fdiv c1, c2) -> c1/c2
Owen Anderson825b72b2009-08-11 20:47:22 +00006123 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006124 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006125
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00006126 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
6127 if (N1CFP && VT != MVT::ppcf128 && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00006128 // Compute the reciprocal 1.0 / c2.
6129 APFloat N1APF = N1CFP->getValueAPF();
6130 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
6131 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00006132 // Only do the transform if the reciprocal is a legal fp immediate that
6133 // isn't too nasty (eg NaN, denormal, ...).
6134 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00006135 (!LegalOperations ||
6136 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
6137 // backend)... we should handle this gracefully after Legalize.
6138 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
6139 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
6140 TLI.isFPImmLegal(Recip, VT)))
Duncan Sands961d6662012-04-07 20:04:00 +00006141 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0,
6142 DAG.getConstantFP(Recip, VT));
6143 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006144
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006145 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006146 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006147 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006148 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006149 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006150 // Both can be negated for free, check to see if at least one is cheaper
6151 // negated.
6152 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00006153 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006154 GetNegatedExpression(N0, DAG, LegalOperations),
6155 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006156 }
6157 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006158
Dan Gohman475871a2008-07-27 21:46:04 +00006159 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006160}
6161
Dan Gohman475871a2008-07-27 21:46:04 +00006162SDValue DAGCombiner::visitFREM(SDNode *N) {
6163 SDValue N0 = N->getOperand(0);
6164 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006165 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6166 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006167 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00006168
Nate Begemana148d982006-01-18 22:35:16 +00006169 // fold (frem c1, c2) -> fmod(c1,c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00006170 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006171 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00006172
Dan Gohman475871a2008-07-27 21:46:04 +00006173 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006174}
6175
Dan Gohman475871a2008-07-27 21:46:04 +00006176SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
6177 SDValue N0 = N->getOperand(0);
6178 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00006179 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6180 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006181 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00006182
Owen Anderson825b72b2009-08-11 20:47:22 +00006183 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00006184 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006185
Chris Lattner12d83032006-03-05 05:30:57 +00006186 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00006187 const APFloat& V = N1CFP->getValueAPF();
Sylvestre Ledru94c22712012-09-27 10:14:43 +00006188 // copysign(x, c1) -> fabs(x) iff ispos(c1)
6189 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00006190 if (!V.isNegative()) {
6191 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006192 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00006193 } else {
6194 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006195 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00006196 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00006197 }
Chris Lattner12d83032006-03-05 05:30:57 +00006198 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006199
Chris Lattner12d83032006-03-05 05:30:57 +00006200 // copysign(fabs(x), y) -> copysign(x, y)
6201 // copysign(fneg(x), y) -> copysign(x, y)
6202 // copysign(copysign(x,z), y) -> copysign(x, y)
6203 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
6204 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006205 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6206 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00006207
6208 // copysign(x, abs(y)) -> abs(x)
6209 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006210 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006211
Chris Lattner12d83032006-03-05 05:30:57 +00006212 // copysign(x, copysign(y,z)) -> copysign(x, z)
6213 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006214 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6215 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006216
Chris Lattner12d83032006-03-05 05:30:57 +00006217 // copysign(x, fp_extend(y)) -> copysign(x, y)
6218 // copysign(x, fp_round(y)) -> copysign(x, y)
6219 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006220 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6221 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006222
Dan Gohman475871a2008-07-27 21:46:04 +00006223 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00006224}
6225
Dan Gohman475871a2008-07-27 21:46:04 +00006226SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
6227 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006228 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006229 EVT VT = N->getValueType(0);
6230 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00006231
Nate Begeman1d4d4142005-09-01 00:19:25 +00006232 // fold (sint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00006233 if (N0C && OpVT != MVT::ppcf128 &&
6234 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006235 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006236 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006237 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006238
Chris Lattnercda88752008-06-26 00:16:49 +00006239 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
6240 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006241 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
6242 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006243 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006244 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006245 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006246 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006247
Nadav Rotemed1a3352012-07-23 07:59:50 +00006248 // The next optimizations are desireable only if SELECT_CC can be lowered.
6249 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6250 // having to say they don't support SELECT_CC on every type the DAG knows
6251 // about, since there is no way to mark an opcode illegal at all value types
6252 // (See also visitSELECT)
6253 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6254 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6255 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 &&
6256 !VT.isVector() &&
6257 (!LegalOperations ||
6258 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6259 SDValue Ops[] =
6260 { N0.getOperand(0), N0.getOperand(1),
6261 DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT),
6262 N0.getOperand(2) };
6263 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6264 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006265
Nadav Rotemed1a3352012-07-23 07:59:50 +00006266 // fold (sint_to_fp (zext (setcc x, y, cc))) ->
6267 // (select_cc x, y, 1.0, 0.0,, cc)
6268 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
6269 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() &&
6270 (!LegalOperations ||
6271 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6272 SDValue Ops[] =
6273 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1),
6274 DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT),
6275 N0.getOperand(0).getOperand(2) };
6276 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6277 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006278 }
6279
Dan Gohman475871a2008-07-27 21:46:04 +00006280 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006281}
6282
Dan Gohman475871a2008-07-27 21:46:04 +00006283SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
6284 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006285 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006286 EVT VT = N->getValueType(0);
6287 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00006288
Nate Begeman1d4d4142005-09-01 00:19:25 +00006289 // fold (uint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00006290 if (N0C && OpVT != MVT::ppcf128 &&
6291 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006292 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006293 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006294 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006295
Chris Lattnercda88752008-06-26 00:16:49 +00006296 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6297 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006298 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6299 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006300 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006301 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006302 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006303 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006304
Nadav Rotemed1a3352012-07-23 07:59:50 +00006305 // The next optimizations are desireable only if SELECT_CC can be lowered.
6306 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6307 // having to say they don't support SELECT_CC on every type the DAG knows
6308 // about, since there is no way to mark an opcode illegal at all value types
6309 // (See also visitSELECT)
6310 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6311 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
Owen Andersond9bf71f2012-07-09 20:31:12 +00006312
Nadav Rotemed1a3352012-07-23 07:59:50 +00006313 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() &&
6314 (!LegalOperations ||
6315 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6316 SDValue Ops[] =
6317 { N0.getOperand(0), N0.getOperand(1),
6318 DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT),
6319 N0.getOperand(2) };
6320 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6321 }
6322 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006323
Dan Gohman475871a2008-07-27 21:46:04 +00006324 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006325}
6326
Dan Gohman475871a2008-07-27 21:46:04 +00006327SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
6328 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006329 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006330 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006331
Nate Begeman1d4d4142005-09-01 00:19:25 +00006332 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00006333 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006334 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
6335
Dan Gohman475871a2008-07-27 21:46:04 +00006336 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006337}
6338
Dan Gohman475871a2008-07-27 21:46:04 +00006339SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
6340 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006341 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006342 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006343
Nate Begeman1d4d4142005-09-01 00:19:25 +00006344 // fold (fp_to_uint c1fp) -> c1
Owen Anderson825b72b2009-08-11 20:47:22 +00006345 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006346 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
6347
Dan Gohman475871a2008-07-27 21:46:04 +00006348 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006349}
6350
Dan Gohman475871a2008-07-27 21:46:04 +00006351SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
6352 SDValue N0 = N->getOperand(0);
6353 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006354 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006355 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006356
Nate Begeman1d4d4142005-09-01 00:19:25 +00006357 // fold (fp_round c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00006358 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006359 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006360
Chris Lattner79dbea52006-03-13 06:26:26 +00006361 // fold (fp_round (fp_extend x)) -> x
6362 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
6363 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006364
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006365 // fold (fp_round (fp_round x)) -> (fp_round x)
6366 if (N0.getOpcode() == ISD::FP_ROUND) {
6367 // This is a value preserving truncation if both round's are.
6368 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006369 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00006370 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006371 DAG.getIntPtrConstant(IsTrunc));
6372 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006373
Chris Lattner79dbea52006-03-13 06:26:26 +00006374 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00006375 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00006376 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
6377 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00006378 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00006379 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6380 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00006381 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006382
Dan Gohman475871a2008-07-27 21:46:04 +00006383 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006384}
6385
Dan Gohman475871a2008-07-27 21:46:04 +00006386SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6387 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006388 EVT VT = N->getValueType(0);
6389 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00006390 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006391
Nate Begeman1d4d4142005-09-01 00:19:25 +00006392 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00006393 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00006394 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006395 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006396 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006397
Dan Gohman475871a2008-07-27 21:46:04 +00006398 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006399}
6400
Dan Gohman475871a2008-07-27 21:46:04 +00006401SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6402 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006403 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006404 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006405
Chris Lattner5938bef2007-12-29 06:55:23 +00006406 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00006407 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00006408 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00006409 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006410
Nate Begeman1d4d4142005-09-01 00:19:25 +00006411 // fold (fp_extend c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00006412 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006413 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006414
6415 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6416 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006417 if (N0.getOpcode() == ISD::FP_ROUND
6418 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006419 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006420 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006421 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006422 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
6423 In, N0.getOperand(1));
6424 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006425 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006426
Chris Lattner0bd48932008-01-17 07:00:52 +00006427 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006428 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006429 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006430 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006431 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00006432 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006433 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006434 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006435 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006436 LN0->isVolatile(), LN0->isNonTemporal(),
6437 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006438 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006439 CombineTo(N0.getNode(),
6440 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
6441 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006442 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006443 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006444 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006445
Dan Gohman475871a2008-07-27 21:46:04 +00006446 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006447}
6448
Dan Gohman475871a2008-07-27 21:46:04 +00006449SDValue DAGCombiner::visitFNEG(SDNode *N) {
6450 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006451 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006452
Craig Topperdd201ff2012-09-11 01:45:21 +00006453 if (VT.isVector()) {
6454 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6455 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper956342b2012-09-09 22:58:45 +00006456 }
6457
Owen Andersonafd3d562012-03-06 00:29:31 +00006458 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6459 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006460 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006461
Chris Lattner3bd39d42008-01-27 17:42:27 +00006462 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6463 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006464 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006465 !VT.isVector() &&
6466 N0.getNode()->hasOneUse() &&
6467 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006468 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006469 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006470 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006471 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
6472 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006473 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006474 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006475 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006476 }
6477 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006478
Owen Anderson58d57292012-09-01 06:04:27 +00006479 // (fneg (fmul c, x)) -> (fmul -c, x)
6480 if (N0.getOpcode() == ISD::FMUL) {
6481 ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
6482 if (CFP1) {
6483 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
6484 N0.getOperand(0),
6485 DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
6486 N0.getOperand(1)));
6487 }
6488 }
6489
Dan Gohman475871a2008-07-27 21:46:04 +00006490 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006491}
6492
Owen Anderson7c626d32012-08-13 23:32:49 +00006493SDValue DAGCombiner::visitFCEIL(SDNode *N) {
6494 SDValue N0 = N->getOperand(0);
6495 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6496 EVT VT = N->getValueType(0);
6497
6498 // fold (fceil c1) -> fceil(c1)
6499 if (N0CFP && VT != MVT::ppcf128)
6500 return DAG.getNode(ISD::FCEIL, N->getDebugLoc(), VT, N0);
6501
6502 return SDValue();
6503}
6504
6505SDValue DAGCombiner::visitFTRUNC(SDNode *N) {
6506 SDValue N0 = N->getOperand(0);
6507 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6508 EVT VT = N->getValueType(0);
6509
6510 // fold (ftrunc c1) -> ftrunc(c1)
6511 if (N0CFP && VT != MVT::ppcf128)
6512 return DAG.getNode(ISD::FTRUNC, N->getDebugLoc(), VT, N0);
6513
6514 return SDValue();
6515}
6516
6517SDValue DAGCombiner::visitFFLOOR(SDNode *N) {
6518 SDValue N0 = N->getOperand(0);
6519 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6520 EVT VT = N->getValueType(0);
6521
6522 // fold (ffloor c1) -> ffloor(c1)
6523 if (N0CFP && VT != MVT::ppcf128)
6524 return DAG.getNode(ISD::FFLOOR, N->getDebugLoc(), VT, N0);
6525
6526 return SDValue();
6527}
6528
Dan Gohman475871a2008-07-27 21:46:04 +00006529SDValue DAGCombiner::visitFABS(SDNode *N) {
6530 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006531 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006532 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006533
Craig Topperdd201ff2012-09-11 01:45:21 +00006534 if (VT.isVector()) {
6535 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6536 if (FoldedVOp.getNode()) return FoldedVOp;
6537 }
6538
Nate Begeman1d4d4142005-09-01 00:19:25 +00006539 // fold (fabs c1) -> fabs(c1)
Owen Anderson825b72b2009-08-11 20:47:22 +00006540 if (N0CFP && VT != MVT::ppcf128)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006541 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006542 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006543 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006544 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006545 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006546 // fold (fabs (fcopysign x, y)) -> (fabs x)
6547 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006548 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006549
Chris Lattner3bd39d42008-01-27 17:42:27 +00006550 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6551 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006552 if (!TLI.isFAbsFree(VT) &&
6553 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006554 N0.getOperand(0).getValueType().isInteger() &&
6555 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006556 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006557 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006558 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006559 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006560 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006561 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006562 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006563 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006564 }
6565 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006566
Dan Gohman475871a2008-07-27 21:46:04 +00006567 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006568}
6569
Dan Gohman475871a2008-07-27 21:46:04 +00006570SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6571 SDValue Chain = N->getOperand(0);
6572 SDValue N1 = N->getOperand(1);
6573 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006574
Dan Gohmane0f06c72009-11-17 00:47:23 +00006575 // If N is a constant we could fold this into a fallthrough or unconditional
6576 // branch. However that doesn't happen very often in normal code, because
6577 // Instcombine/SimplifyCFG should have handled the available opportunities.
6578 // If we did this folding here, it would be necessary to update the
6579 // MachineBasicBlock CFG, which is awkward.
6580
Nate Begeman750ac1b2006-02-01 07:19:44 +00006581 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6582 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006583 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006584 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
6585 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006586 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006587 N1.getOperand(0), N1.getOperand(1), N2);
6588 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006589
Evan Cheng2a135ae2010-10-04 22:41:01 +00006590 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6591 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6592 (N1.getOperand(0).hasOneUse() &&
6593 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6594 SDNode *Trunc = 0;
6595 if (N1.getOpcode() == ISD::TRUNCATE) {
6596 // Look pass the truncate.
6597 Trunc = N1.getNode();
6598 N1 = N1.getOperand(0);
6599 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006600
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006601 // Match this pattern so that we can generate simpler code:
6602 //
6603 // %a = ...
6604 // %b = and i32 %a, 2
6605 // %c = srl i32 %b, 1
6606 // brcond i32 %c ...
6607 //
6608 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006609 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006610 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006611 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006612 // %c = setcc eq %b, 0
6613 // brcond %c ...
6614 //
6615 // This applies only when the AND constant value has one bit set and the
6616 // SRL constant is equal to the log2 of the AND constant. The back-end is
6617 // smart enough to convert the result into a TEST/JMP sequence.
6618 SDValue Op0 = N1.getOperand(0);
6619 SDValue Op1 = N1.getOperand(1);
6620
6621 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006622 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006623 SDValue AndOp1 = Op0.getOperand(1);
6624
6625 if (AndOp1.getOpcode() == ISD::Constant) {
6626 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6627
6628 if (AndConst.isPowerOf2() &&
6629 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6630 SDValue SetCC =
6631 DAG.getSetCC(N->getDebugLoc(),
6632 TLI.getSetCCResultType(Op0.getValueType()),
6633 Op0, DAG.getConstant(0, Op0.getValueType()),
6634 ISD::SETNE);
6635
Evan Chengd40d03e2010-01-06 19:38:29 +00006636 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6637 MVT::Other, Chain, SetCC, N2);
6638 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6639 // will convert it back to (X & C1) >> C2.
6640 CombineTo(N, NewBRCond, false);
6641 // Truncate is dead.
6642 if (Trunc) {
6643 removeFromWorkList(Trunc);
6644 DAG.DeleteNode(Trunc);
6645 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006646 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006647 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006648 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006649 removeFromWorkList(N1.getNode());
6650 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006651 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006652 }
6653 }
6654 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006655
6656 if (Trunc)
6657 // Restore N1 if the above transformation doesn't match.
6658 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006659 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006660
Evan Cheng2c755ba2010-02-27 07:36:59 +00006661 // Transform br(xor(x, y)) -> br(x != y)
6662 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6663 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6664 SDNode *TheXor = N1.getNode();
6665 SDValue Op0 = TheXor->getOperand(0);
6666 SDValue Op1 = TheXor->getOperand(1);
6667 if (Op0.getOpcode() == Op1.getOpcode()) {
6668 // Avoid missing important xor optimizations.
6669 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00006670 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006671 DEBUG(dbgs() << "\nReplacing.8 ";
6672 TheXor->dump(&DAG);
6673 dbgs() << "\nWith: ";
6674 Tmp.getNode()->dump(&DAG);
6675 dbgs() << '\n');
6676 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006677 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
Evan Cheng2c755ba2010-02-27 07:36:59 +00006678 removeFromWorkList(TheXor);
6679 DAG.DeleteNode(TheXor);
6680 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6681 MVT::Other, Chain, Tmp, N2);
6682 }
6683 }
6684
6685 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6686 bool Equal = false;
6687 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6688 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6689 Op0.getOpcode() == ISD::XOR) {
6690 TheXor = Op0.getNode();
6691 Equal = true;
6692 }
6693
Evan Cheng2a135ae2010-10-04 22:41:01 +00006694 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006695 if (LegalTypes)
6696 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6697 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6698 SetCCVT,
6699 Op0, Op1,
6700 Equal ? ISD::SETEQ : ISD::SETNE);
6701 // Replace the uses of XOR with SETCC
6702 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006703 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006704 removeFromWorkList(N1.getNode());
6705 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006706 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6707 MVT::Other, Chain, SetCC, N2);
6708 }
6709 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006710
Dan Gohman475871a2008-07-27 21:46:04 +00006711 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006712}
6713
Chris Lattner3ea0b472005-10-05 06:47:48 +00006714// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6715//
Dan Gohman475871a2008-07-27 21:46:04 +00006716SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006717 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006718 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006719
Dan Gohmane0f06c72009-11-17 00:47:23 +00006720 // If N is a constant we could fold this into a fallthrough or unconditional
6721 // branch. However that doesn't happen very often in normal code, because
6722 // Instcombine/SimplifyCFG should have handled the available opportunities.
6723 // If we did this folding here, it would be necessary to update the
6724 // MachineBasicBlock CFG, which is awkward.
6725
Duncan Sands8eab8a22008-06-09 11:32:28 +00006726 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006727 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006728 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6729 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006730 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006731
Nate Begemane17daeb2005-10-05 21:43:42 +00006732 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006733 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006734 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006735 N->getOperand(0), Simp.getOperand(2),
6736 Simp.getOperand(0), Simp.getOperand(1),
6737 N->getOperand(4));
6738
Dan Gohman475871a2008-07-27 21:46:04 +00006739 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006740}
6741
Evan Chengc4b527a2012-01-13 01:37:24 +00006742/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6743/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00006744/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00006745static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6746 SelectionDAG &DAG,
6747 const TargetLowering &TLI) {
6748 EVT VT;
6749 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6750 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6751 return false;
6752 VT = Use->getValueType(0);
6753 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6754 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6755 return false;
6756 VT = ST->getValue().getValueType();
6757 } else
6758 return false;
6759
Nadav Rotemad6aedc2012-10-08 23:06:34 +00006760 AddrMode AM;
Evan Chengc4b527a2012-01-13 01:37:24 +00006761 if (N->getOpcode() == ISD::ADD) {
6762 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6763 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006764 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006765 AM.BaseOffs = Offset->getSExtValue();
6766 else
Evan Cheng03be3622012-03-06 23:33:32 +00006767 // [reg +/- reg]
6768 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006769 } else if (N->getOpcode() == ISD::SUB) {
6770 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6771 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006772 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006773 AM.BaseOffs = -Offset->getSExtValue();
6774 else
Evan Cheng03be3622012-03-06 23:33:32 +00006775 // [reg +/- reg]
6776 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006777 } else
6778 return false;
6779
6780 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6781}
6782
Duncan Sandsec87aa82008-06-15 20:12:31 +00006783/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6784/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006785/// and it has other uses besides the load / store. After the
6786/// transformation, the new indexed load / store has effectively folded
6787/// the add / subtract in and all of its other uses are redirected to the
6788/// new load / store.
6789bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006790 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006791 return false;
6792
6793 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006794 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006795 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006796 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006797 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006798 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006799 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006800 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006801 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6802 return false;
6803 Ptr = LD->getBasePtr();
6804 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006805 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006806 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006807 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006808 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6809 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6810 return false;
6811 Ptr = ST->getBasePtr();
6812 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006813 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006814 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006815 }
Chris Lattner448f2192006-11-11 00:39:41 +00006816
Chris Lattner9f1794e2006-11-11 00:56:29 +00006817 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6818 // out. There is no reason to make this a preinc/predec.
6819 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006820 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006821 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006822
Chris Lattner9f1794e2006-11-11 00:56:29 +00006823 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006824 SDValue BasePtr;
6825 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006826 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6827 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6828 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006829 // Don't create a indexed load / store with zero offset.
6830 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006831 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006832 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006833
Chris Lattner41e53fd2006-11-11 01:00:15 +00006834 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006835 // 1) The new base ptr is a frame index.
6836 // 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 +00006837 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006838 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006839 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006840 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006841
Chris Lattner41e53fd2006-11-11 01:00:15 +00006842 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6843 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006844 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006845 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006846
Chris Lattner41e53fd2006-11-11 01:00:15 +00006847 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006848 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006849 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006850 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006851 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006852 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006853
Evan Chengc843abe2007-05-24 02:35:39 +00006854 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006855 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006856
6857 // Caches for hasPredecessorHelper
6858 SmallPtrSet<const SDNode *, 32> Visited;
6859 SmallVector<const SDNode *, 16> Worklist;
6860
Gabor Greifba36cb52008-08-28 21:40:38 +00006861 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6862 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006863 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006864 if (Use == N)
6865 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006866 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006867 return false;
6868
Evan Chengc4b527a2012-01-13 01:37:24 +00006869 // If Ptr may be folded in addressing mode of other use, then it's
6870 // not profitable to do this transformation.
6871 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006872 RealUse = true;
6873 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006874
Chris Lattner9f1794e2006-11-11 00:56:29 +00006875 if (!RealUse)
6876 return false;
6877
Dan Gohman475871a2008-07-27 21:46:04 +00006878 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006879 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006880 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6881 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006882 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006883 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6884 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006885 ++PreIndexedNodes;
6886 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006887 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006888 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006889 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006890 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006891 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006892 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006893 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006894 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6895 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006896 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006897 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006898 }
6899
Chris Lattner9f1794e2006-11-11 00:56:29 +00006900 // Finally, since the node is now dead, remove it from the graph.
6901 DAG.DeleteNode(N);
6902
6903 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006904 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greifba36cb52008-08-28 21:40:38 +00006905 removeFromWorkList(Ptr.getNode());
6906 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006907
6908 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006909}
6910
Duncan Sandsec87aa82008-06-15 20:12:31 +00006911/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006912/// add / sub of the base pointer node into a post-indexed load / store.
6913/// The transformation folded the add / subtract into the new indexed
6914/// load / store effectively and all of its uses are redirected to the
6915/// new load / store.
6916bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006917 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006918 return false;
6919
6920 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006921 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006922 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006923 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006924 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006925 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006926 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006927 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6928 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6929 return false;
6930 Ptr = LD->getBasePtr();
6931 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006932 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006933 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006934 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006935 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6936 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6937 return false;
6938 Ptr = ST->getBasePtr();
6939 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006940 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006941 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006942 }
Chris Lattner448f2192006-11-11 00:39:41 +00006943
Gabor Greifba36cb52008-08-28 21:40:38 +00006944 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006945 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006946
Gabor Greifba36cb52008-08-28 21:40:38 +00006947 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6948 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006949 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006950 if (Op == N ||
6951 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6952 continue;
6953
Dan Gohman475871a2008-07-27 21:46:04 +00006954 SDValue BasePtr;
6955 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006956 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6957 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00006958 // Don't create a indexed load / store with zero offset.
6959 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006960 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006961 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006962
Chris Lattner9f1794e2006-11-11 00:56:29 +00006963 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00006964 // 1) All uses are load / store ops that use it as base ptr (and
6965 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00006966 // 2) Op must be independent of N, i.e. Op is neither a predecessor
6967 // nor a successor of N. Otherwise, if Op is folded that would
6968 // create a cycle.
6969
Evan Chengcaab1292009-05-06 18:25:01 +00006970 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6971 continue;
6972
Chris Lattner9f1794e2006-11-11 00:56:29 +00006973 // Check for #1.
6974 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006975 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6976 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00006977 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00006978 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00006979 continue;
6980
Chris Lattner9f1794e2006-11-11 00:56:29 +00006981 // If all the uses are load / store addresses, then don't do the
6982 // transformation.
6983 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6984 bool RealUse = false;
6985 for (SDNode::use_iterator III = Use->use_begin(),
6986 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00006987 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00006988 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006989 RealUse = true;
6990 }
Chris Lattner448f2192006-11-11 00:39:41 +00006991
Chris Lattner9f1794e2006-11-11 00:56:29 +00006992 if (!RealUse) {
6993 TryNext = true;
6994 break;
Chris Lattner448f2192006-11-11 00:39:41 +00006995 }
6996 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006997 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006998
Chris Lattner9f1794e2006-11-11 00:56:29 +00006999 if (TryNext)
7000 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00007001
Chris Lattner9f1794e2006-11-11 00:56:29 +00007002 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00007003 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00007004 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00007005 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
7006 BasePtr, Offset, AM)
7007 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
7008 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007009 ++PostIndexedNodes;
7010 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00007011 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007012 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007013 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007014 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007015 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007016 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007017 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007018 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7019 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007020 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007021 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner448f2192006-11-11 00:39:41 +00007022 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007023
Chris Lattner9f1794e2006-11-11 00:56:29 +00007024 // Finally, since the node is now dead, remove it from the graph.
7025 DAG.DeleteNode(N);
7026
7027 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00007028 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007029 Result.getValue(isLoad ? 1 : 0));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007030 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007031 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007032 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00007033 }
7034 }
7035 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007036
Chris Lattner448f2192006-11-11 00:39:41 +00007037 return false;
7038}
7039
Dan Gohman475871a2008-07-27 21:46:04 +00007040SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00007041 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007042 SDValue Chain = LD->getChain();
7043 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007044
Evan Cheng45a7ca92007-05-01 00:38:21 +00007045 // If load is not volatile and there are no uses of the loaded value (and
7046 // the updated indexed value in case of indexed loads), change uses of the
7047 // chain value into uses of the chain input (i.e. delete the dead load).
7048 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007049 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00007050 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00007051 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00007052 // It's not safe to use the two value CombineTo variant here. e.g.
7053 // v1, chain2 = load chain1, loc
7054 // v2, chain3 = load chain2, loc
7055 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00007056 // Now we replace use of chain2 with chain1. This makes the second load
7057 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00007058 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007059 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007060 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007061 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007062 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007063 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007064 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendlingc0debad2009-01-30 23:27:35 +00007065
Chris Lattner125991a2008-01-24 07:57:06 +00007066 if (N->use_empty()) {
7067 removeFromWorkList(N);
7068 DAG.DeleteNode(N);
7069 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007070
Dan Gohman475871a2008-07-27 21:46:04 +00007071 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00007072 }
Evan Cheng498f5592007-05-01 08:53:39 +00007073 } else {
7074 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00007075 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00007076 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007077 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00007078 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007079 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007080 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007081 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007082 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007083 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007084 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman475871a2008-07-27 21:46:04 +00007085 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007086 DAG.getUNDEF(N->getValueType(1)));
7087 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng02c42852008-01-16 23:11:54 +00007088 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00007089 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007090 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00007091 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00007092 }
7093 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007094
Chris Lattner01a22022005-10-10 22:04:48 +00007095 // If this load is directly stored, replace the load value with the stored
7096 // value.
7097 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007098 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00007099 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007100 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007101 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
7102 if (PrevST->getBasePtr() == Ptr &&
7103 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007104 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00007105 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007106 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007107
Evan Cheng255f20f2010-04-01 06:04:33 +00007108 // Try to infer better alignment information than the load already has.
7109 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007110 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7111 if (Align > LD->getAlignment())
7112 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
7113 LD->getValueType(0),
7114 Chain, Ptr, LD->getPointerInfo(),
7115 LD->getMemoryVT(),
7116 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007117 }
7118 }
7119
Jim Laskey7ca56af2006-10-11 13:47:09 +00007120 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007121 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007122 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007123
Jim Laskey6ff23e52006-10-04 16:53:27 +00007124 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007125 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007126 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007127
Jim Laskey279f0532006-09-25 16:29:54 +00007128 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007129 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00007130 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00007131 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007132 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007133 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007134 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00007135 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
7136 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00007137 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007138 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007139 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007140 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00007141 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007142 }
Jim Laskey279f0532006-09-25 16:29:54 +00007143
Jim Laskey6ff23e52006-10-04 16:53:27 +00007144 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00007145 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007146 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007147
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007148 // Make sure the new and old chains are cleaned up.
7149 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007150
Jim Laskey274062c2006-10-13 23:32:28 +00007151 // Replace uses with load result and token factor. Don't add users
7152 // to work list.
7153 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007154 }
7155 }
7156
Evan Cheng7fc033a2006-11-03 03:06:21 +00007157 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007158 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007159 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00007160
Dan Gohman475871a2008-07-27 21:46:04 +00007161 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00007162}
7163
Chris Lattner2392ae72010-04-15 04:48:01 +00007164/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
7165/// load is having specific bytes cleared out. If so, return the byte size
7166/// being masked out and the shift amount.
7167static std::pair<unsigned, unsigned>
7168CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
7169 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007170
Chris Lattner2392ae72010-04-15 04:48:01 +00007171 // Check for the structure we're looking for.
7172 if (V->getOpcode() != ISD::AND ||
7173 !isa<ConstantSDNode>(V->getOperand(1)) ||
7174 !ISD::isNormalLoad(V->getOperand(0).getNode()))
7175 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007176
Chris Lattnere6987582010-04-15 06:10:49 +00007177 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00007178 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00007179 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007180
Chris Lattnere6987582010-04-15 06:10:49 +00007181 // The store should be chained directly to the load or be an operand of a
7182 // tokenfactor.
7183 if (LD == Chain.getNode())
7184 ; // ok.
7185 else if (Chain->getOpcode() != ISD::TokenFactor)
7186 return Result; // Fail.
7187 else {
7188 bool isOk = false;
7189 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
7190 if (Chain->getOperand(i).getNode() == LD) {
7191 isOk = true;
7192 break;
7193 }
7194 if (!isOk) return Result;
7195 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007196
Chris Lattner2392ae72010-04-15 04:48:01 +00007197 // This only handles simple types.
7198 if (V.getValueType() != MVT::i16 &&
7199 V.getValueType() != MVT::i32 &&
7200 V.getValueType() != MVT::i64)
7201 return Result;
7202
7203 // Check the constant mask. Invert it so that the bits being masked out are
7204 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
7205 // follow the sign bit for uniformity.
7206 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
7207 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
7208 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
7209 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
7210 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
7211 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007212
Chris Lattner2392ae72010-04-15 04:48:01 +00007213 // See if we have a continuous run of bits. If so, we have 0*1+0*
7214 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
7215 return Result;
7216
7217 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
7218 if (V.getValueType() != MVT::i64 && NotMaskLZ)
7219 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007220
Chris Lattner2392ae72010-04-15 04:48:01 +00007221 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
7222 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007223 case 1:
7224 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00007225 case 4: break;
7226 default: return Result; // All one mask, or 5-byte mask.
7227 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007228
Chris Lattner2392ae72010-04-15 04:48:01 +00007229 // Verify that the first bit starts at a multiple of mask so that the access
7230 // is aligned the same as the access width.
7231 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007232
Chris Lattner2392ae72010-04-15 04:48:01 +00007233 Result.first = MaskedBytes;
7234 Result.second = NotMaskTZ/8;
7235 return Result;
7236}
7237
7238
7239/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
7240/// provides a value as specified by MaskInfo. If so, replace the specified
7241/// store with a narrower store of truncated IVal.
7242static SDNode *
7243ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
7244 SDValue IVal, StoreSDNode *St,
7245 DAGCombiner *DC) {
7246 unsigned NumBytes = MaskInfo.first;
7247 unsigned ByteShift = MaskInfo.second;
7248 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007249
Chris Lattner2392ae72010-04-15 04:48:01 +00007250 // Check to see if IVal is all zeros in the part being masked in by the 'or'
7251 // that uses this. If not, this is not a replacement.
7252 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
7253 ByteShift*8, (ByteShift+NumBytes)*8);
7254 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007255
Chris Lattner2392ae72010-04-15 04:48:01 +00007256 // Check that it is legal on the target to do this. It is legal if the new
7257 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
7258 // legalization.
7259 MVT VT = MVT::getIntegerVT(NumBytes*8);
7260 if (!DC->isTypeLegal(VT))
7261 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007262
Chris Lattner2392ae72010-04-15 04:48:01 +00007263 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
7264 // shifted by ByteShift and truncated down to NumBytes.
7265 if (ByteShift)
7266 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00007267 DAG.getConstant(ByteShift*8,
7268 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00007269
7270 // Figure out the offset for the store and the alignment of the access.
7271 unsigned StOffset;
7272 unsigned NewAlign = St->getAlignment();
7273
7274 if (DAG.getTargetLoweringInfo().isLittleEndian())
7275 StOffset = ByteShift;
7276 else
7277 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007278
Chris Lattner2392ae72010-04-15 04:48:01 +00007279 SDValue Ptr = St->getBasePtr();
7280 if (StOffset) {
7281 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
7282 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
7283 NewAlign = MinAlign(NewAlign, StOffset);
7284 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007285
Chris Lattner2392ae72010-04-15 04:48:01 +00007286 // Truncate down to the new size.
7287 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007288
Chris Lattner2392ae72010-04-15 04:48:01 +00007289 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007290 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007291 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00007292 false, false, NewAlign).getNode();
7293}
7294
Evan Cheng8b944d32009-05-28 00:35:15 +00007295
7296/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
7297/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
7298/// of the loaded bits, try narrowing the load and store if it would end up
7299/// being a win for performance or code size.
7300SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
7301 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00007302 if (ST->isVolatile())
7303 return SDValue();
7304
Evan Cheng8b944d32009-05-28 00:35:15 +00007305 SDValue Chain = ST->getChain();
7306 SDValue Value = ST->getValue();
7307 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00007308 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00007309
7310 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00007311 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007312
7313 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007314
Chris Lattner2392ae72010-04-15 04:48:01 +00007315 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
7316 // is a byte mask indicating a consecutive number of bytes, check to see if
7317 // Y is known to provide just those bytes. If so, we try to replace the
7318 // load + replace + store sequence with a single (narrower) store, which makes
7319 // the load dead.
7320 if (Opc == ISD::OR) {
7321 std::pair<unsigned, unsigned> MaskedLoad;
7322 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
7323 if (MaskedLoad.first)
7324 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7325 Value.getOperand(1), ST,this))
7326 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007327
Chris Lattner2392ae72010-04-15 04:48:01 +00007328 // Or is commutative, so try swapping X and Y.
7329 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
7330 if (MaskedLoad.first)
7331 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7332 Value.getOperand(0), ST,this))
7333 return SDValue(NewST, 0);
7334 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007335
Evan Cheng8b944d32009-05-28 00:35:15 +00007336 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
7337 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00007338 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007339
7340 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00007341 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
7342 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00007343 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00007344 if (LD->getBasePtr() != Ptr ||
7345 LD->getPointerInfo().getAddrSpace() !=
7346 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00007347 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007348
7349 // Find the type to narrow it the load / op / store to.
7350 SDValue N1 = Value.getOperand(1);
7351 unsigned BitWidth = N1.getValueSizeInBits();
7352 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
7353 if (Opc == ISD::AND)
7354 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00007355 if (Imm == 0 || Imm.isAllOnesValue())
7356 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007357 unsigned ShAmt = Imm.countTrailingZeros();
7358 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
7359 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00007360 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007361 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00007362 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00007363 TLI.isNarrowingProfitable(VT, NewVT))) {
7364 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00007365 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007366 }
Evan Chengcdcecc02009-05-28 18:41:02 +00007367 if (NewBW >= BitWidth)
7368 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007369
7370 // If the lsb changed does not start at the type bitwidth boundary,
7371 // start at the previous one.
7372 if (ShAmt % NewBW)
7373 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
7374 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
7375 if ((Imm & Mask) == Imm) {
7376 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
7377 if (Opc == ISD::AND)
7378 NewImm ^= APInt::getAllOnesValue(NewBW);
7379 uint64_t PtrOff = ShAmt / 8;
7380 // For big endian targets, we need to adjust the offset to the pointer to
7381 // load the correct bytes.
7382 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00007383 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00007384
7385 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007386 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007387 if (NewAlign < TLI.getDataLayout()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00007388 return SDValue();
7389
Evan Cheng8b944d32009-05-28 00:35:15 +00007390 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
7391 Ptr.getValueType(), Ptr,
7392 DAG.getConstant(PtrOff, Ptr.getValueType()));
7393 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
7394 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007395 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007396 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007397 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007398 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
7399 DAG.getConstant(NewImm, NewVT));
7400 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
7401 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007402 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007403 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007404
7405 AddToWorkList(NewPtr.getNode());
7406 AddToWorkList(NewLD.getNode());
7407 AddToWorkList(NewVal.getNode());
7408 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007409 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Cheng8b944d32009-05-28 00:35:15 +00007410 ++OpsNarrowed;
7411 return NewST;
7412 }
7413 }
7414
Evan Chengcdcecc02009-05-28 18:41:02 +00007415 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007416}
7417
Evan Cheng31959b12011-02-02 01:06:55 +00007418/// TransformFPLoadStorePair - For a given floating point load / store pair,
7419/// if the load value isn't used by any other operations, then consider
7420/// transforming the pair to integer load / store operations if the target
7421/// deems the transformation profitable.
7422SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
7423 StoreSDNode *ST = cast<StoreSDNode>(N);
7424 SDValue Chain = ST->getChain();
7425 SDValue Value = ST->getValue();
7426 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
7427 Value.hasOneUse() &&
7428 Chain == SDValue(Value.getNode(), 1)) {
7429 LoadSDNode *LD = cast<LoadSDNode>(Value);
7430 EVT VT = LD->getMemoryVT();
7431 if (!VT.isFloatingPoint() ||
7432 VT != ST->getMemoryVT() ||
7433 LD->isNonTemporal() ||
7434 ST->isNonTemporal() ||
7435 LD->getPointerInfo().getAddrSpace() != 0 ||
7436 ST->getPointerInfo().getAddrSpace() != 0)
7437 return SDValue();
7438
7439 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
7440 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
7441 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
7442 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
7443 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
7444 return SDValue();
7445
7446 unsigned LDAlign = LD->getAlignment();
7447 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007448 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007449 unsigned ABIAlign = TLI.getDataLayout()->getABITypeAlignment(IntVTTy);
Evan Cheng31959b12011-02-02 01:06:55 +00007450 if (LDAlign < ABIAlign || STAlign < ABIAlign)
7451 return SDValue();
7452
7453 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
7454 LD->getChain(), LD->getBasePtr(),
7455 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007456 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00007457
7458 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
7459 NewLD, ST->getBasePtr(),
7460 ST->getPointerInfo(),
7461 false, false, STAlign);
7462
7463 AddToWorkList(NewLD.getNode());
7464 AddToWorkList(NewST.getNode());
7465 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007466 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Cheng31959b12011-02-02 01:06:55 +00007467 ++LdStFP2Int;
7468 return NewST;
7469 }
7470
7471 return SDValue();
7472}
7473
Nadav Rotemc653de62012-10-03 16:11:15 +00007474/// Returns the base pointer and an integer offset from that object.
7475static std::pair<SDValue, int64_t> GetPointerBaseAndOffset(SDValue Ptr) {
7476 if (Ptr->getOpcode() == ISD::ADD && isa<ConstantSDNode>(Ptr->getOperand(1))) {
7477 int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue();
7478 SDValue Base = Ptr->getOperand(0);
7479 return std::make_pair(Base, Offset);
7480 }
7481
7482 return std::make_pair(Ptr, 0);
7483}
7484
7485/// Holds a pointer to an LSBaseSDNode as well as information on where it
7486/// is located in a sequence of memory operations connected by a chain.
7487struct MemOpLink {
7488 MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq):
7489 MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { }
7490 // Ptr to the mem node.
7491 LSBaseSDNode *MemNode;
7492 // Offset from the base ptr.
7493 int64_t OffsetFromBase;
7494 // What is the sequence number of this mem node.
7495 // Lowest mem operand in the DAG starts at zero.
7496 unsigned SequenceNum;
7497};
7498
7499/// Sorts store nodes in a link according to their offset from a shared
7500// base ptr.
7501struct ConsecutiveMemoryChainSorter {
7502 bool operator()(MemOpLink LHS, MemOpLink RHS) {
7503 return LHS.OffsetFromBase < RHS.OffsetFromBase;
7504 }
7505};
7506
7507bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) {
7508 EVT MemVT = St->getMemoryVT();
7509 int64_t ElementSizeBytes = MemVT.getSizeInBits()/8;
7510
7511 // Don't merge vectors into wider inputs.
7512 if (MemVT.isVector() || !MemVT.isSimple())
7513 return false;
7514
7515 // Perform an early exit check. Do not bother looking at stored values that
7516 // are not constants or loads.
7517 SDValue StoredVal = St->getValue();
7518 bool IsLoadSrc = isa<LoadSDNode>(StoredVal);
7519 if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) &&
7520 !IsLoadSrc)
7521 return false;
7522
7523 // Only look at ends of store sequences.
7524 SDValue Chain = SDValue(St, 1);
7525 if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE)
7526 return false;
7527
7528 // This holds the base pointer and the offset in bytes from the base pointer.
7529 std::pair<SDValue, int64_t> BasePtr =
7530 GetPointerBaseAndOffset(St->getBasePtr());
7531
7532 // We must have a base and an offset.
7533 if (!BasePtr.first.getNode())
7534 return false;
7535
7536 // Do not handle stores to undef base pointers.
7537 if (BasePtr.first.getOpcode() == ISD::UNDEF)
7538 return false;
7539
7540 SmallVector<MemOpLink, 8> StoreNodes;
7541 // Walk up the chain and look for nodes with offsets from the same
7542 // base pointer. Stop when reaching an instruction with a different kind
7543 // or instruction which has a different base pointer.
7544 unsigned Seq = 0;
7545 StoreSDNode *Index = St;
7546 while (Index) {
7547 // If the chain has more than one use, then we can't reorder the mem ops.
7548 if (Index != St && !SDValue(Index, 1)->hasOneUse())
7549 break;
7550
7551 // Find the base pointer and offset for this memory node.
7552 std::pair<SDValue, int64_t> Ptr =
7553 GetPointerBaseAndOffset(Index->getBasePtr());
7554
7555 // Check that the base pointer is the same as the original one.
7556 if (Ptr.first.getNode() != BasePtr.first.getNode())
7557 break;
7558
7559 // Check that the alignment is the same.
7560 if (Index->getAlignment() != St->getAlignment())
7561 break;
7562
7563 // The memory operands must not be volatile.
7564 if (Index->isVolatile() || Index->isIndexed())
7565 break;
7566
7567 // No truncation.
7568 if (StoreSDNode *St = dyn_cast<StoreSDNode>(Index))
7569 if (St->isTruncatingStore())
7570 break;
7571
7572 // The stored memory type must be the same.
7573 if (Index->getMemoryVT() != MemVT)
7574 break;
7575
7576 // We do not allow unaligned stores because we want to prevent overriding
7577 // stores.
7578 if (Index->getAlignment()*8 != MemVT.getSizeInBits())
7579 break;
7580
7581 // We found a potential memory operand to merge.
7582 StoreNodes.push_back(MemOpLink(Index, Ptr.second, Seq++));
7583
7584 // Move up the chain to the next memory operation.
7585 Index = dyn_cast<StoreSDNode>(Index->getChain().getNode());
7586 }
7587
7588 // Check if there is anything to merge.
7589 if (StoreNodes.size() < 2)
7590 return false;
7591
7592 // Sort the memory operands according to their distance from the base pointer.
7593 std::sort(StoreNodes.begin(), StoreNodes.end(),
7594 ConsecutiveMemoryChainSorter());
7595
7596 // Scan the memory operations on the chain and find the first non-consecutive
7597 // store memory address.
7598 unsigned LastConsecutiveStore = 0;
7599 int64_t StartAddress = StoreNodes[0].OffsetFromBase;
7600 for (unsigned i=1; i<StoreNodes.size(); ++i) {
7601 int64_t CurrAddress = StoreNodes[i].OffsetFromBase;
7602 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
7603 break;
7604
7605 // Mark this node as useful.
7606 LastConsecutiveStore = i;
7607 }
7608
7609 // The node with the lowest store address.
7610 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode;
7611
7612 // Store the constants into memory as one consecutive store.
7613 if (!IsLoadSrc) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007614 unsigned LastLegalType = 0;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007615 unsigned LastLegalVectorType = 0;
7616 bool NonZero = false;
Nadav Rotemc653de62012-10-03 16:11:15 +00007617 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
7618 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7619 SDValue StoredVal = St->getValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007620
7621 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00007622 NonZero |= !C->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007623 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00007624 NonZero |= !C->getConstantFPValue()->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007625 } else {
7626 // Non constant.
Nadav Rotemc653de62012-10-03 16:11:15 +00007627 break;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007628 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007629
Nadav Rotemc653de62012-10-03 16:11:15 +00007630 // Find a legal type for the constant store.
7631 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
7632 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7633 if (TLI.isTypeLegal(StoreTy))
7634 LastLegalType = i+1;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007635
7636 // Find a legal type for the vector store.
7637 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
7638 if (TLI.isTypeLegal(Ty))
7639 LastLegalVectorType = i + 1;
Nadav Rotemc653de62012-10-03 16:11:15 +00007640 }
7641
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007642 // We only use vectors if the constant is known to be zero.
7643 if (NonZero)
7644 LastLegalVectorType = 0;
7645
Nadav Rotemc653de62012-10-03 16:11:15 +00007646 // Check if we found a legal integer type to store.
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007647 if (LastLegalType == 0 && LastLegalVectorType == 0)
Nadav Rotemc653de62012-10-03 16:11:15 +00007648 return false;
7649
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007650 bool UseVector = LastLegalVectorType > LastLegalType;
7651 unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType;
7652
7653 // Make sure we have something to merge.
7654 if (NumElem < 2)
7655 return false;
Nadav Rotemc653de62012-10-03 16:11:15 +00007656
7657 unsigned EarliestNodeUsed = 0;
7658 for (unsigned i=0; i < NumElem; ++i) {
7659 // Find a chain for the new wide-store operand. Notice that some
7660 // of the store nodes that we found may not be selected for inclusion
7661 // in the wide store. The chain we use needs to be the chain of the
7662 // earliest store node which is *used* and replaced by the wide store.
7663 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
7664 EarliestNodeUsed = i;
7665 }
7666
7667 // The earliest Node in the DAG.
7668 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
Nadav Rotemc653de62012-10-03 16:11:15 +00007669 DebugLoc DL = StoreNodes[0].MemNode->getDebugLoc();
Nadav Rotemc653de62012-10-03 16:11:15 +00007670
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007671 SDValue StoredVal;
7672 if (UseVector) {
7673 // Find a legal type for the vector store.
7674 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
7675 assert(TLI.isTypeLegal(Ty) && "Illegal vector store");
7676 StoredVal = DAG.getConstant(0, Ty);
7677 } else {
7678 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
7679 APInt StoreInt(StoreBW, 0);
7680
7681 // Construct a single integer constant which is made of the smaller
7682 // constant inputs.
7683 bool IsLE = TLI.isLittleEndian();
7684 for (unsigned i = 0; i < NumElem ; ++i) {
7685 unsigned Idx = IsLE ?(NumElem - 1 - i) : i;
7686 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode);
7687 SDValue Val = St->getValue();
7688 StoreInt<<=ElementSizeBytes*8;
7689 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) {
7690 StoreInt|=C->getAPIntValue().zext(StoreBW);
7691 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) {
7692 StoreInt|= C->getValueAPF().bitcastToAPInt().zext(StoreBW);
7693 } else {
7694 assert(false && "Invalid constant element type");
7695 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007696 }
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007697
7698 // Create the new Load and Store operations.
7699 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7700 StoredVal = DAG.getConstant(StoreInt, StoreTy);
Nadav Rotemc653de62012-10-03 16:11:15 +00007701 }
7702
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007703 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), DL, StoredVal,
Nadav Rotemc653de62012-10-03 16:11:15 +00007704 FirstInChain->getBasePtr(),
7705 FirstInChain->getPointerInfo(),
7706 false, false,
7707 FirstInChain->getAlignment());
7708
7709 // Replace the first store with the new store
7710 CombineTo(EarliestOp, NewStore);
7711 // Erase all other stores.
7712 for (unsigned i = 0; i < NumElem ; ++i) {
7713 if (StoreNodes[i].MemNode == EarliestOp)
7714 continue;
7715 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7716 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
7717 removeFromWorkList(St);
7718 DAG.DeleteNode(St);
7719 }
7720
7721 return true;
7722 }
7723
7724 // Below we handle the case of multiple consecutive stores that
7725 // come from multiple consecutive loads. We merge them into a single
7726 // wide load and a single wide store.
7727
7728 // Look for load nodes which are used by the stored values.
7729 SmallVector<MemOpLink, 8> LoadNodes;
7730
7731 // Find acceptable loads. Loads need to have the same chain (token factor),
7732 // must not be zext, volatile, indexed, and they must be consecutive.
7733 SDValue LdBasePtr;
7734 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
7735 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7736 LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue());
7737 if (!Ld) break;
7738
7739 // Loads must only have one use.
7740 if (!Ld->hasNUsesOfValue(1, 0))
7741 break;
7742
7743 // Check that the alignment is the same as the stores.
7744 if (Ld->getAlignment() != St->getAlignment())
7745 break;
7746
7747 // The memory operands must not be volatile.
7748 if (Ld->isVolatile() || Ld->isIndexed())
7749 break;
7750
7751 // We do not accept ext loads.
7752 if (Ld->getExtensionType() != ISD::NON_EXTLOAD)
7753 break;
7754
7755 // The stored memory type must be the same.
7756 if (Ld->getMemoryVT() != MemVT)
7757 break;
7758
7759 std::pair<SDValue, int64_t> LdPtr =
7760 GetPointerBaseAndOffset(Ld->getBasePtr());
7761
7762 // If this is not the first ptr that we check.
7763 if (LdBasePtr.getNode()) {
7764 // The base ptr must be the same.
7765 if (LdPtr.first != LdBasePtr)
7766 break;
7767 } else {
7768 // Check that all other base pointers are the same as this one.
7769 LdBasePtr = LdPtr.first;
7770 }
7771
7772 // We found a potential memory operand to merge.
7773 LoadNodes.push_back(MemOpLink(Ld, LdPtr.second, 0));
7774 }
7775
7776 if (LoadNodes.size() < 2)
7777 return false;
7778
7779 // Scan the memory operations on the chain and find the first non-consecutive
7780 // load memory address. These variables hold the index in the store node
7781 // array.
7782 unsigned LastConsecutiveLoad = 0;
7783 // This variable refers to the size and not index in the array.
7784 unsigned LastLegalVectorType = 0;
7785 unsigned LastLegalIntegerType = 0;
7786 StartAddress = LoadNodes[0].OffsetFromBase;
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007787 SDValue FirstChain = LoadNodes[0].MemNode->getChain();
7788 for (unsigned i = 1; i < LoadNodes.size(); ++i) {
7789 // All loads much share the same chain.
7790 if (LoadNodes[i].MemNode->getChain() != FirstChain)
7791 break;
7792
Nadav Rotemc653de62012-10-03 16:11:15 +00007793 int64_t CurrAddress = LoadNodes[i].OffsetFromBase;
7794 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
7795 break;
7796 LastConsecutiveLoad = i;
7797
7798 // Find a legal type for the vector store.
7799 EVT StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
7800 if (TLI.isTypeLegal(StoreTy))
7801 LastLegalVectorType = i + 1;
7802
7803 // Find a legal type for the integer store.
7804 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
7805 StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7806 if (TLI.isTypeLegal(StoreTy))
7807 LastLegalIntegerType = i + 1;
7808 }
7809
7810 // Only use vector types if the vector type is larger than the integer type.
7811 // If they are the same, use integers.
7812 bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType;
7813 unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType);
7814
7815 // We add +1 here because the LastXXX variables refer to location while
7816 // the NumElem refers to array/index size.
7817 unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1;
7818 NumElem = std::min(LastLegalType, NumElem);
7819
7820 if (NumElem < 2)
7821 return false;
7822
7823 // The earliest Node in the DAG.
7824 unsigned EarliestNodeUsed = 0;
7825 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
7826 for (unsigned i=1; i<NumElem; ++i) {
7827 // Find a chain for the new wide-store operand. Notice that some
7828 // of the store nodes that we found may not be selected for inclusion
7829 // in the wide store. The chain we use needs to be the chain of the
7830 // earliest store node which is *used* and replaced by the wide store.
7831 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
7832 EarliestNodeUsed = i;
7833 }
7834
7835 // Find if it is better to use vectors or integers to load and store
7836 // to memory.
7837 EVT JointMemOpVT;
7838 if (UseVectorTy) {
7839 JointMemOpVT = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
7840 } else {
7841 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
7842 JointMemOpVT = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7843 }
7844
7845 DebugLoc LoadDL = LoadNodes[0].MemNode->getDebugLoc();
7846 DebugLoc StoreDL = StoreNodes[0].MemNode->getDebugLoc();
7847
7848 LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode);
7849 SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL,
7850 FirstLoad->getChain(),
7851 FirstLoad->getBasePtr(),
7852 FirstLoad->getPointerInfo(),
7853 false, false, false,
7854 FirstLoad->getAlignment());
7855
7856 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), StoreDL, NewLoad,
7857 FirstInChain->getBasePtr(),
7858 FirstInChain->getPointerInfo(), false, false,
7859 FirstInChain->getAlignment());
7860
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007861 // Replace one of the loads with the new load.
7862 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode);
7863 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1),
7864 SDValue(NewLoad.getNode(), 1));
7865
7866 // Remove the rest of the load chains.
7867 for (unsigned i = 1; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007868 // Replace all chain users of the old load nodes with the chain of the new
7869 // load node.
7870 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode);
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007871 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain());
7872 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007873
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007874 // Replace the first store with the new store.
7875 CombineTo(EarliestOp, NewStore);
7876 // Erase all other stores.
7877 for (unsigned i = 0; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007878 // Remove all Store nodes.
7879 if (StoreNodes[i].MemNode == EarliestOp)
7880 continue;
7881 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7882 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
7883 removeFromWorkList(St);
7884 DAG.DeleteNode(St);
7885 }
7886
7887 return true;
7888}
7889
Dan Gohman475871a2008-07-27 21:46:04 +00007890SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007891 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007892 SDValue Chain = ST->getChain();
7893 SDValue Value = ST->getValue();
7894 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007895
Evan Cheng59d5b682007-05-07 21:27:48 +00007896 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00007897 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007898 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007899 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00007900 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00007901 EVT SVT = Value.getOperand(0).getValueType();
Micah Villmow3574eca2012-10-08 16:38:25 +00007902 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00007903 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007904 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00007905 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007906 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00007907 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00007908 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007909 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00007910 }
Owen Andersona34d9362011-04-14 17:30:49 +00007911
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007912 // Turn 'store undef, Ptr' -> nothing.
7913 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
7914 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007915
Nate Begeman2cbba892006-12-11 02:23:46 +00007916 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00007917 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007918 // NOTE: If the original store is volatile, this transform must not increase
7919 // the number of stores. For example, on x86-32 an f64 can be stored in one
7920 // processor operation but an i64 (which is not legal) requires two. So the
7921 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00007922 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00007923 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00007924 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007925 default: llvm_unreachable("Unknown FP type");
Pete Cooper438c0402012-06-21 18:00:39 +00007926 case MVT::f16: // We don't do this for these yet.
7927 case MVT::f80:
Owen Anderson825b72b2009-08-11 20:47:22 +00007928 case MVT::f128:
7929 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00007930 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007931 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00007932 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007933 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00007934 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00007935 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00007936 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007937 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007938 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00007939 }
7940 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007941 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00007942 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007943 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007944 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00007945 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00007946 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00007947 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007948 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007949 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007950 }
Owen Andersona34d9362011-04-14 17:30:49 +00007951
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007952 if (!ST->isVolatile() &&
7953 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00007954 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00007955 // argument passing. Since this is so common, custom legalize the
7956 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00007957 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007958 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
7959 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00007960 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00007961
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007962 unsigned Alignment = ST->getAlignment();
7963 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00007964 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007965
Bill Wendlingc144a572009-01-30 23:36:47 +00007966 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007967 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007968 isVolatile, isNonTemporal,
7969 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00007970 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00007971 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00007972 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00007973 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007974 Ptr, ST->getPointerInfo().getWithOffset(4),
7975 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00007976 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00007977 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00007978 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00007979 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007980
Chris Lattner62be1a72006-12-12 04:16:14 +00007981 break;
Evan Cheng25ece662006-12-11 17:25:19 +00007982 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007983 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007984 }
7985
Evan Cheng255f20f2010-04-01 06:04:33 +00007986 // Try to infer better alignment information than the store already has.
7987 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007988 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7989 if (Align > ST->getAlignment())
7990 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
7991 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
7992 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007993 }
7994 }
7995
Evan Cheng31959b12011-02-02 01:06:55 +00007996 // Try transforming a pair floating point load / store ops to integer
7997 // load / store ops.
7998 SDValue NewST = TransformFPLoadStorePair(N);
7999 if (NewST.getNode())
8000 return NewST;
8001
Scott Michelfdc40a02009-02-17 22:15:04 +00008002 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00008003 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008004 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00008005
Jim Laskey6ff23e52006-10-04 16:53:27 +00008006 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00008007 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00008008 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008009
8010 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008011 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00008012 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008013 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008014 ST->getMemoryVT(), ST->isVolatile(),
8015 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008016 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00008017 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008018 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008019 ST->isVolatile(), ST->isNonTemporal(),
8020 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008021 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008022
Jim Laskey279f0532006-09-25 16:29:54 +00008023 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00008024 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008025 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00008026
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008027 // Make sure the new and old chains are cleaned up.
8028 AddToWorkList(Token.getNode());
8029
Jim Laskey274062c2006-10-13 23:32:28 +00008030 // Don't add users to work list.
8031 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00008032 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00008033 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008034
Evan Cheng33dbedc2006-11-05 09:31:14 +00008035 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00008036 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00008037 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00008038
Chris Lattner3c872852007-12-29 06:26:16 +00008039 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00008040 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00008041 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00008042 // See if we can simplify the input to this truncstore with knowledge that
8043 // only the low bits are being used. For example:
8044 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00008045 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00008046 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00008047 APInt::getLowBitsSet(
8048 Value.getValueType().getScalarType().getSizeInBits(),
8049 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00008050 AddToWorkList(Value.getNode());
8051 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00008052 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008053 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008054 ST->isVolatile(), ST->isNonTemporal(),
8055 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00008056
Chris Lattnere33544c2007-10-13 06:58:48 +00008057 // Otherwise, see if we can simplify the operation with
8058 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00008059 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00008060 APInt::getLowBitsSet(
8061 Value.getValueType().getScalarType().getSizeInBits(),
8062 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00008063 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00008064 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008065
Chris Lattner3c872852007-12-29 06:26:16 +00008066 // If this is a load followed by a store to the same location, then the store
8067 // is dead/noop.
8068 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008069 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008070 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00008071 // There can't be any side effects between the load and store, such as
8072 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00008073 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00008074 // The store is dead, remove it.
8075 return Chain;
8076 }
8077 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008078
Chris Lattnerddf89562008-01-17 19:59:44 +00008079 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
8080 // truncating store. We can do this even if this is already a truncstore.
8081 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00008082 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008083 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008084 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00008085 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008086 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008087 ST->isVolatile(), ST->isNonTemporal(),
8088 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00008089 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008090
Nadav Rotemc653de62012-10-03 16:11:15 +00008091 // Only perform this optimization before the types are legal, because we
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008092 // don't want to perform this optimization on every DAGCombine invocation.
Nadav Rotemc653de62012-10-03 16:11:15 +00008093 if (!LegalTypes && MergeConsecutiveStores(ST))
8094 return SDValue(N, 0);
8095
Evan Cheng8b944d32009-05-28 00:35:15 +00008096 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00008097}
8098
Dan Gohman475871a2008-07-27 21:46:04 +00008099SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
8100 SDValue InVec = N->getOperand(0);
8101 SDValue InVal = N->getOperand(1);
8102 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00008103 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008104
Bob Wilson492fd452010-05-19 23:42:58 +00008105 // If the inserted element is an UNDEF, just use the input vector.
8106 if (InVal.getOpcode() == ISD::UNDEF)
8107 return InVec;
8108
Nadav Rotem609d54e2011-02-12 14:40:33 +00008109 EVT VT = InVec.getValueType();
8110
Owen Anderson95771af2011-02-25 21:41:48 +00008111 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00008112 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
8113 return SDValue();
8114
Eli Friedman9db817f2011-09-09 21:04:06 +00008115 // Check that we know which element is being inserted
8116 if (!isa<ConstantSDNode>(EltNo))
8117 return SDValue();
8118 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008119
Eli Friedman9db817f2011-09-09 21:04:06 +00008120 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
8121 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
8122 // vector elements.
8123 SmallVector<SDValue, 8> Ops;
8124 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
8125 Ops.append(InVec.getNode()->op_begin(),
8126 InVec.getNode()->op_end());
8127 } else if (InVec.getOpcode() == ISD::UNDEF) {
8128 unsigned NElts = VT.getVectorNumElements();
8129 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
8130 } else {
8131 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008132 }
Eli Friedman9db817f2011-09-09 21:04:06 +00008133
8134 // Insert the element
8135 if (Elt < Ops.size()) {
8136 // All the operands of BUILD_VECTOR must have the same type;
8137 // we enforce that here.
8138 EVT OpVT = Ops[0].getValueType();
8139 if (InVal.getValueType() != OpVT)
8140 InVal = OpVT.bitsGT(InVal.getValueType()) ?
8141 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
8142 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
8143 Ops[Elt] = InVal;
8144 }
8145
8146 // Return the new vector
8147 return DAG.getNode(ISD::BUILD_VECTOR, dl,
8148 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00008149}
8150
Dan Gohman475871a2008-07-27 21:46:04 +00008151SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008152 // (vextract (scalar_to_vector val, 0) -> val
8153 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00008154 EVT VT = InVec.getValueType();
8155 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008156
Duncan Sandsc356f332011-05-09 08:03:33 +00008157 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
8158 // Check if the result type doesn't match the inserted element type. A
8159 // SCALAR_TO_VECTOR may truncate the inserted element and the
8160 // EXTRACT_VECTOR_ELT may widen the extracted vector.
8161 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00008162 if (InOp.getValueType() != NVT) {
8163 assert(InOp.getValueType().isInteger() && NVT.isInteger());
8164 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
8165 }
8166 return InOp;
8167 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008168
Nadav Rotemba05c912012-01-17 21:44:01 +00008169 SDValue EltNo = N->getOperand(1);
8170 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
8171
8172 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
8173 // We only perform this optimization before the op legalization phase because
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008174 // we may introduce new vector instructions which are not backed by TD
8175 // patterns. For example on AVX, extracting elements from a wide vector
8176 // without using extract_subvector.
Nadav Rotemba05c912012-01-17 21:44:01 +00008177 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
8178 && ConstEltNo && !LegalOperations) {
8179 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
8180 int NumElem = VT.getVectorNumElements();
8181 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
8182 // Find the new index to extract from.
8183 int OrigElt = SVOp->getMaskElt(Elt);
8184
8185 // Extracting an undef index is undef.
8186 if (OrigElt == -1)
8187 return DAG.getUNDEF(NVT);
8188
8189 // Select the right vector half to extract from.
8190 if (OrigElt < NumElem) {
8191 InVec = InVec->getOperand(0);
8192 } else {
8193 InVec = InVec->getOperand(1);
8194 OrigElt -= NumElem;
8195 }
8196
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008197 EVT IndexTy = N->getOperand(1).getValueType();
Nadav Rotemba05c912012-01-17 21:44:01 +00008198 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008199 InVec, DAG.getConstant(OrigElt, IndexTy));
Nadav Rotemba05c912012-01-17 21:44:01 +00008200 }
8201
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008202 // Perform only after legalization to ensure build_vector / vector_shuffle
8203 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00008204 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008205
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008206 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
8207 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
8208 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00008209
Nadav Rotemba05c912012-01-17 21:44:01 +00008210 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00008211 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00008212 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00008213 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00008214 EVT ExtVT = VT.getVectorElementType();
8215 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00008216
Evan Cheng84387ea2012-03-13 22:00:52 +00008217 // If the result of load has to be truncated, then it's not necessarily
8218 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00008219 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00008220 return SDValue();
8221
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008222 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008223 // Don't duplicate a load with other uses.
8224 if (!InVec.hasOneUse())
8225 return SDValue();
8226
Owen Andersone50ed302009-08-10 22:56:29 +00008227 EVT BCVT = InVec.getOperand(0).getValueType();
8228 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008229 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00008230 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
8231 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008232 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00008233 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008234 NewLoad = true;
8235 }
Evan Cheng513da432007-10-06 08:19:55 +00008236
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008237 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00008238 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00008239 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008240 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00008241 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00008242 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00008243 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008244 // Don't duplicate a load with other uses.
8245 if (!InVec.hasOneUse())
8246 return SDValue();
8247
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008248 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00008249 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008250 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
8251 // =>
8252 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00008253
Eli Friedmand6e25602011-12-26 22:49:32 +00008254 // Don't duplicate a load with other uses.
8255 if (!InVec.hasOneUse())
8256 return SDValue();
8257
Mon P Wanga60b5232008-12-11 00:26:16 +00008258 // If the bit convert changed the number of elements, it is unsafe
8259 // to examine the mask.
8260 if (BCNumEltsChanged)
8261 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00008262
8263 // Select the input vector, guarding against out of range extract vector.
8264 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00008265 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00008266 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
8267
Eli Friedmand6e25602011-12-26 22:49:32 +00008268 if (InVec.getOpcode() == ISD::BITCAST) {
8269 // Don't duplicate a load with other uses.
8270 if (!InVec.hasOneUse())
8271 return SDValue();
8272
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008273 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00008274 }
Gabor Greifba36cb52008-08-28 21:40:38 +00008275 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008276 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00008277 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00008278 }
8279 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008280
Eli Friedmand6e25602011-12-26 22:49:32 +00008281 // Make sure we found a non-volatile load and the extractelement is
8282 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00008283 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00008284 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008285
Eric Christopherd81f17a2010-11-03 20:44:42 +00008286 // If Idx was -1 above, Elt is going to be -1, so just return undef.
8287 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00008288 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00008289
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008290 unsigned Align = LN0->getAlignment();
8291 if (NewLoad) {
8292 // Check the resultant load doesn't need a higher alignment than the
8293 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00008294 unsigned NewAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00008295 TLI.getDataLayout()
Eric Christopher503a64d2010-12-09 04:48:06 +00008296 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00008297
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008298 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008299 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00008300
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008301 Align = NewAlign;
8302 }
8303
Dan Gohman475871a2008-07-27 21:46:04 +00008304 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00008305 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008306
Eric Christopherd81f17a2010-11-03 20:44:42 +00008307 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00008308 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00008309 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008310 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00008311 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00008312 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008313 DAG.getConstant(PtrOff, PtrType));
8314 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008315
Eli Friedman4db4add2011-11-16 23:50:22 +00008316 // The replacement we need to do here is a little tricky: we need to
8317 // replace an extractelement of a load with a load.
8318 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00008319 // Note that this replacement assumes that the extractvalue is the only
8320 // use of the load; that's okay because we don't want to perform this
8321 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00008322 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00008323 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00008324 if (NVT.bitsGT(LVT)) {
8325 // If the result type of vextract is wider than the load, then issue an
8326 // extending load instead.
8327 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
8328 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
8329 Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(),
8330 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
8331 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008332 Chain = Load.getValue(1);
8333 } else {
Evan Cheng84387ea2012-03-13 22:00:52 +00008334 Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
8335 LN0->getPointerInfo().getWithOffset(PtrOff),
8336 LN0->isVolatile(), LN0->isNonTemporal(),
8337 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008338 Chain = Load.getValue(1);
8339 if (NVT.bitsLT(LVT))
8340 Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load);
8341 else
8342 Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load);
8343 }
Eli Friedman4db4add2011-11-16 23:50:22 +00008344 WorkListRemover DeadNodes(*this);
8345 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00008346 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00008347 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedman4db4add2011-11-16 23:50:22 +00008348 // Since we're explcitly calling ReplaceAllUses, add the new node to the
8349 // worklist explicitly as well.
8350 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00008351 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00008352 // Make sure to revisit this node to clean it up; it will usually be dead.
8353 AddToWorkList(N);
8354 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00008355 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008356
Dan Gohman475871a2008-07-27 21:46:04 +00008357 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00008358}
Evan Cheng513da432007-10-06 08:19:55 +00008359
Michael Liaofac14ab2012-10-23 23:06:52 +00008360// Simplify (build_vec (ext )) to (bitcast (build_vec ))
8361SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) {
8362 // We perform this optimization post type-legalization because
8363 // the type-legalizer often scalarizes integer-promoted vectors.
8364 // Performing this optimization before may create bit-casts which
8365 // will be type-legalized to complex code sequences.
8366 // We perform this optimization only before the operation legalizer because we
8367 // may introduce illegal operations.
8368 if (Level != AfterLegalizeVectorOps && Level != AfterLegalizeTypes)
8369 return SDValue();
8370
Dan Gohman7f321562007-06-25 16:23:39 +00008371 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008372 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008373 EVT VT = N->getValueType(0);
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008374
Nadav Rotemb00418a2011-10-29 21:23:04 +00008375 // Check to see if this is a BUILD_VECTOR of a bunch of values
8376 // which come from any_extend or zero_extend nodes. If so, we can create
8377 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00008378 // optimizations. We do not handle sign-extend because we can't fill the sign
8379 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008380 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00008381 bool AllAnyExt = true;
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008382
Craig Topperd3b58892012-01-17 09:09:48 +00008383 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00008384 SDValue In = N->getOperand(i);
8385 // Ignore undef inputs.
8386 if (In.getOpcode() == ISD::UNDEF) continue;
8387
8388 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
8389 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
8390
Nadav Rotemf47368b2011-10-31 20:08:25 +00008391 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008392 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00008393 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008394 break;
8395 }
8396
8397 // The input is a ZeroExt or AnyExt. Check the original type.
8398 EVT InTy = In.getOperand(0).getValueType();
8399
8400 // Check that all of the widened source types are the same.
8401 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00008402 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008403 SourceType = InTy;
8404 else if (InTy != SourceType) {
8405 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00008406 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008407 break;
8408 }
8409
8410 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00008411 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008412 }
8413
Nadav Rotemf47368b2011-10-31 20:08:25 +00008414 // In order to have valid types, all of the inputs must be extended from the
8415 // same source type and all of the inputs must be any or zero extend.
8416 // Scalar sizes must be a power of two.
Michael Liaofac14ab2012-10-23 23:06:52 +00008417 EVT OutScalarTy = VT.getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008418 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00008419 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
8420 isPowerOf2_32(SourceType.getSizeInBits());
8421
Nadav Rotem6431ff92012-03-15 08:49:06 +00008422 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
8423 // turn into a single shuffle instruction.
Michael Liaofac14ab2012-10-23 23:06:52 +00008424 if (!ValidTypes)
8425 return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008426
Michael Liaofac14ab2012-10-23 23:06:52 +00008427 bool isLE = TLI.isLittleEndian();
8428 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
8429 assert(ElemRatio > 1 && "Invalid element size ratio");
8430 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
8431 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008432
Michael Liaofac14ab2012-10-23 23:06:52 +00008433 unsigned NewBVElems = ElemRatio * VT.getVectorNumElements();
8434 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008435
Michael Liaofac14ab2012-10-23 23:06:52 +00008436 // Populate the new build_vector
Jakub Staszakadf38912012-10-24 00:38:25 +00008437 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Michael Liaofac14ab2012-10-23 23:06:52 +00008438 SDValue Cast = N->getOperand(i);
8439 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
8440 Cast.getOpcode() == ISD::ZERO_EXTEND ||
8441 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
8442 SDValue In;
8443 if (Cast.getOpcode() == ISD::UNDEF)
8444 In = DAG.getUNDEF(SourceType);
8445 else
8446 In = Cast->getOperand(0);
8447 unsigned Index = isLE ? (i * ElemRatio) :
8448 (i * ElemRatio + (ElemRatio - 1));
Nadav Rotemb00418a2011-10-29 21:23:04 +00008449
Michael Liaofac14ab2012-10-23 23:06:52 +00008450 assert(Index < Ops.size() && "Invalid index");
8451 Ops[Index] = In;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008452 }
Chris Lattnerca242442006-03-19 01:27:56 +00008453
Michael Liaofac14ab2012-10-23 23:06:52 +00008454 // The type of the new BUILD_VECTOR node.
8455 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
8456 assert(VecVT.getSizeInBits() == VT.getSizeInBits() &&
8457 "Invalid vector size");
8458 // Check if the new vector type is legal.
8459 if (!isTypeLegal(VecVT)) return SDValue();
8460
8461 // Make the new BUILD_VECTOR.
8462 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, &Ops[0], Ops.size());
8463
8464 // The new BUILD_VECTOR node has the potential to be further optimized.
8465 AddToWorkList(BV.getNode());
8466 // Bitcast to the desired type.
8467 return DAG.getNode(ISD::BITCAST, dl, VT, BV);
8468}
8469
8470SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
8471 unsigned NumInScalars = N->getNumOperands();
8472 DebugLoc dl = N->getDebugLoc();
8473 EVT VT = N->getValueType(0);
8474
8475 // A vector built entirely of undefs is undef.
8476 if (ISD::allOperandsUndef(N))
8477 return DAG.getUNDEF(VT);
8478
8479 SDValue V = reduceBuildVecExtToExtBuildVec(N);
8480 if (V.getNode())
8481 return V;
8482
Dan Gohman7f321562007-06-25 16:23:39 +00008483 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
8484 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
8485 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00008486
8487 // May only combine to shuffle after legalize if shuffle is legal.
8488 if (LegalOperations &&
8489 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
8490 return SDValue();
8491
Dan Gohman475871a2008-07-27 21:46:04 +00008492 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00008493 for (unsigned i = 0; i != NumInScalars; ++i) {
8494 // Ignore undef inputs.
8495 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008496
Dan Gohman7f321562007-06-25 16:23:39 +00008497 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00008498 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00008499 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00008500 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00008501 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008502 break;
8503 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008504
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008505 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00008506 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008507 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
8508 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008509
Gabor Greifba36cb52008-08-28 21:40:38 +00008510 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00008511 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00008512 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00008513 VecIn2 = ExtractedFromVec;
8514 } else {
8515 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008516 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008517 break;
8518 }
8519 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008520
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008521 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00008522 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008523 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00008524 for (unsigned i = 0; i != NumInScalars; ++i) {
8525 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008526 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008527 continue;
8528 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008529
Rafael Espindola15684b22009-04-24 12:40:33 +00008530 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00008531 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00008532 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008533 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00008534 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
8535 if (ExtIndex > VT.getVectorNumElements())
8536 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008537
Nate Begeman5a5ca152009-04-29 05:20:52 +00008538 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008539 continue;
8540 }
8541
8542 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00008543 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008544 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008545 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008546
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008547 // We can't generate a shuffle node with mismatched input and output types.
8548 // Attempt to transform a single input vector to the correct type.
8549 if ((VT != VecIn1.getValueType())) {
8550 // We don't support shuffeling between TWO values of different types.
8551 if (VecIn2.getNode() != 0)
8552 return SDValue();
8553
8554 // We only support widening of vectors which are half the size of the
8555 // output registers. For example XMM->YMM widening on X86 with AVX.
8556 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
8557 return SDValue();
8558
James Molloy8cd08bf2012-09-10 14:01:21 +00008559 // If the input vector type has a different base type to the output
8560 // vector type, bail out.
8561 if (VecIn1.getValueType().getVectorElementType() !=
8562 VT.getVectorElementType())
8563 return SDValue();
8564
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00008565 // Widen the input vector by adding undef values.
Michael Liaofac14ab2012-10-23 23:06:52 +00008566 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00008567 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008568 }
8569
8570 // If VecIn2 is unused then change it to undef.
8571 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
8572
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008573 // Check that we were able to transform all incoming values to the same
8574 // type.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00008575 if (VecIn2.getValueType() != VecIn1.getValueType() ||
8576 VecIn1.getValueType() != VT)
8577 return SDValue();
8578
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008579 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00008580 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00008581 return SDValue();
8582
Dan Gohman7f321562007-06-25 16:23:39 +00008583 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00008584 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00008585 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008586 Ops[1] = VecIn2;
Michael Liaofac14ab2012-10-23 23:06:52 +00008587 return DAG.getVectorShuffle(VT, dl, Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008588 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008589
Dan Gohman475871a2008-07-27 21:46:04 +00008590 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00008591}
8592
Dan Gohman475871a2008-07-27 21:46:04 +00008593SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00008594 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
8595 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
8596 // inputs come from at most two distinct vectors, turn this into a shuffle
8597 // node.
8598
8599 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00008600 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00008601 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00008602
Nadav Rotemb7e230d2012-07-14 21:30:27 +00008603 // Check if all of the operands are undefs.
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008604 if (ISD::allOperandsUndef(N))
Nadav Rotemb7e230d2012-07-14 21:30:27 +00008605 return DAG.getUNDEF(N->getValueType(0));
8606
Dan Gohman475871a2008-07-27 21:46:04 +00008607 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00008608}
8609
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008610SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
8611 EVT NVT = N->getValueType(0);
8612 SDValue V = N->getOperand(0);
8613
8614 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
8615 // Handle only simple case where vector being inserted and vector
8616 // being extracted are of same type, and are half size of larger vectors.
8617 EVT BigVT = V->getOperand(0).getValueType();
8618 EVT SmallVT = V->getOperand(1).getValueType();
8619 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
8620 return SDValue();
8621
Eli Friedman26323442011-12-07 00:11:56 +00008622 // Only handle cases where both indexes are constants with the same type.
Michael Liao13429e22012-10-17 20:48:33 +00008623 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
8624 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008625
Eli Friedman26323442011-12-07 00:11:56 +00008626 if (InsIdx && ExtIdx &&
8627 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
8628 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
8629 // Combine:
8630 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
8631 // Into:
8632 // indices are equal => V1
8633 // otherwise => (extract_subvec V1, ExtIdx)
8634 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
8635 return V->getOperand(1);
8636 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
8637 V->getOperand(0), N->getOperand(1));
8638 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008639 }
8640
Michael Liao13429e22012-10-17 20:48:33 +00008641 if (V->getOpcode() == ISD::CONCAT_VECTORS) {
8642 // Combine:
8643 // (extract_subvec (concat V1, V2, ...), i)
8644 // Into:
8645 // Vi if possible
Michael Liao9aecdb52012-10-19 03:17:00 +00008646 // Only operand 0 is checked as 'concat' assumes all inputs of the same type.
8647 if (V->getOperand(0).getValueType() != NVT)
8648 return SDValue();
Michael Liao13429e22012-10-17 20:48:33 +00008649 unsigned Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
8650 unsigned NumElems = NVT.getVectorNumElements();
8651 assert((Idx % NumElems) == 0 &&
8652 "IDX in concat is not a multiple of the result vector length.");
8653 return V->getOperand(Idx / NumElems);
8654 }
8655
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008656 return SDValue();
8657}
8658
Dan Gohman475871a2008-07-27 21:46:04 +00008659SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00008660 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00008661 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00008662
Mon P Wangaeb06d22008-11-10 04:46:22 +00008663 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00008664 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00008665
Craig Topperae1bec52012-04-09 05:16:56 +00008666 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00008667
Craig Topper481b79c2012-01-04 08:07:43 +00008668 // Canonicalize shuffle undef, undef -> undef
8669 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
8670 return DAG.getUNDEF(VT);
8671
8672 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
8673
8674 // Canonicalize shuffle v, v -> v, undef
8675 if (N0 == N1) {
8676 SmallVector<int, 8> NewMask;
8677 for (unsigned i = 0; i != NumElts; ++i) {
8678 int Idx = SVN->getMaskElt(i);
8679 if (Idx >= (int)NumElts) Idx -= NumElts;
8680 NewMask.push_back(Idx);
8681 }
8682 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
8683 &NewMask[0]);
8684 }
8685
8686 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
8687 if (N0.getOpcode() == ISD::UNDEF) {
8688 SmallVector<int, 8> NewMask;
8689 for (unsigned i = 0; i != NumElts; ++i) {
8690 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00008691 if (Idx >= 0) {
8692 if (Idx < (int)NumElts)
8693 Idx += NumElts;
8694 else
8695 Idx -= NumElts;
8696 }
8697 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00008698 }
8699 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
8700 &NewMask[0]);
8701 }
8702
8703 // Remove references to rhs if it is undef
8704 if (N1.getOpcode() == ISD::UNDEF) {
8705 bool Changed = false;
8706 SmallVector<int, 8> NewMask;
8707 for (unsigned i = 0; i != NumElts; ++i) {
8708 int Idx = SVN->getMaskElt(i);
8709 if (Idx >= (int)NumElts) {
8710 Idx = -1;
8711 Changed = true;
8712 }
8713 NewMask.push_back(Idx);
8714 }
8715 if (Changed)
8716 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
8717 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00008718
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008719 // If it is a splat, check if the argument vector is another splat or a
8720 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008721 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00008722 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00008723
Dan Gohman7f321562007-06-25 16:23:39 +00008724 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00008725 // not the number of vector elements, look through it. Be careful not to
8726 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008727 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00008728 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00008729 if (ConvInput.getValueType().isVector() &&
8730 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00008731 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00008732 }
8733
Dan Gohman7f321562007-06-25 16:23:39 +00008734 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008735 assert(V->getNumOperands() == NumElts &&
8736 "BUILD_VECTOR has wrong number of operands");
8737 SDValue Base;
8738 bool AllSame = true;
8739 for (unsigned i = 0; i != NumElts; ++i) {
8740 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
8741 Base = V->getOperand(i);
8742 break;
Evan Cheng917ec982006-07-21 08:25:53 +00008743 }
Evan Cheng917ec982006-07-21 08:25:53 +00008744 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008745 // Splat of <u, u, u, u>, return <u, u, u, u>
8746 if (!Base.getNode())
8747 return N0;
8748 for (unsigned i = 0; i != NumElts; ++i) {
8749 if (V->getOperand(i) != Base) {
8750 AllSame = false;
8751 break;
8752 }
8753 }
8754 // Splat of <x, x, x, x>, return <x, x, x, x>
8755 if (AllSame)
8756 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00008757 }
8758 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00008759
8760 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008761 // and it reverses the swizzle of the previous shuffle then we can
8762 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00008763 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
8764 N1.getOpcode() == ISD::UNDEF) {
8765
Nadav Rotem4ac90812012-04-01 19:31:22 +00008766 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
8767
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008768 // Shuffle nodes can only reverse shuffles with a single non-undef value.
8769 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
8770 return SDValue();
8771
Craig Topperae1bec52012-04-09 05:16:56 +00008772 // The incoming shuffle must be of the same type as the result of the
8773 // current shuffle.
8774 assert(OtherSV->getOperand(0).getValueType() == VT &&
8775 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00008776
8777 for (unsigned i = 0; i != NumElts; ++i) {
8778 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00008779 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00008780 // Next, this index comes from the first value, which is the incoming
8781 // shuffle. Adopt the incoming index.
8782 if (Idx >= 0)
8783 Idx = OtherSV->getMaskElt(Idx);
8784
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008785 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00008786 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008787 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00008788 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008789
8790 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00008791 }
8792
Dan Gohman475871a2008-07-27 21:46:04 +00008793 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00008794}
8795
Jim Grosbach9a526492010-06-23 16:07:42 +00008796SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
8797 if (!TLI.getShouldFoldAtomicFences())
8798 return SDValue();
8799
8800 SDValue atomic = N->getOperand(0);
8801 switch (atomic.getOpcode()) {
8802 case ISD::ATOMIC_CMP_SWAP:
8803 case ISD::ATOMIC_SWAP:
8804 case ISD::ATOMIC_LOAD_ADD:
8805 case ISD::ATOMIC_LOAD_SUB:
8806 case ISD::ATOMIC_LOAD_AND:
8807 case ISD::ATOMIC_LOAD_OR:
8808 case ISD::ATOMIC_LOAD_XOR:
8809 case ISD::ATOMIC_LOAD_NAND:
8810 case ISD::ATOMIC_LOAD_MIN:
8811 case ISD::ATOMIC_LOAD_MAX:
8812 case ISD::ATOMIC_LOAD_UMIN:
8813 case ISD::ATOMIC_LOAD_UMAX:
8814 break;
8815 default:
8816 return SDValue();
8817 }
8818
8819 SDValue fence = atomic.getOperand(0);
8820 if (fence.getOpcode() != ISD::MEMBARRIER)
8821 return SDValue();
8822
8823 switch (atomic.getOpcode()) {
8824 case ISD::ATOMIC_CMP_SWAP:
8825 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
8826 fence.getOperand(0),
8827 atomic.getOperand(1), atomic.getOperand(2),
8828 atomic.getOperand(3)), atomic.getResNo());
8829 case ISD::ATOMIC_SWAP:
8830 case ISD::ATOMIC_LOAD_ADD:
8831 case ISD::ATOMIC_LOAD_SUB:
8832 case ISD::ATOMIC_LOAD_AND:
8833 case ISD::ATOMIC_LOAD_OR:
8834 case ISD::ATOMIC_LOAD_XOR:
8835 case ISD::ATOMIC_LOAD_NAND:
8836 case ISD::ATOMIC_LOAD_MIN:
8837 case ISD::ATOMIC_LOAD_MAX:
8838 case ISD::ATOMIC_LOAD_UMIN:
8839 case ISD::ATOMIC_LOAD_UMAX:
8840 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
8841 fence.getOperand(0),
8842 atomic.getOperand(1), atomic.getOperand(2)),
8843 atomic.getResNo());
8844 default:
8845 return SDValue();
8846 }
8847}
8848
Evan Cheng44f1f092006-04-20 08:56:16 +00008849/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00008850/// an AND to a vector_shuffle with the destination vector and a zero vector.
8851/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00008852/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00008853SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00008854 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00008855 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008856 SDValue LHS = N->getOperand(0);
8857 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00008858 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008859 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00008860 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00008861 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008862 SmallVector<int, 8> Indices;
8863 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00008864 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008865 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00008866 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00008867 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00008868
8869 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00008870 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00008871 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00008872 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00008873 else
Dan Gohman475871a2008-07-27 21:46:04 +00008874 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008875 }
8876
8877 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00008878 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00008879 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008880 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008881
Dan Gohman7f321562007-06-25 16:23:39 +00008882 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00008883 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00008884 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00008885 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00008886 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8887 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008888 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00008889 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008890 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00008891 }
8892 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008893
Dan Gohman475871a2008-07-27 21:46:04 +00008894 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008895}
8896
Dan Gohman7f321562007-06-25 16:23:39 +00008897/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00008898SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00008899 // After legalize, the target may be depending on adds and other
8900 // binary ops to provide legal ways to construct constants or other
8901 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00008902 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00008903
Bob Wilsond7273432010-12-17 23:06:49 +00008904 assert(N->getValueType(0).isVector() &&
8905 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00008906
Dan Gohman475871a2008-07-27 21:46:04 +00008907 SDValue LHS = N->getOperand(0);
8908 SDValue RHS = N->getOperand(1);
8909 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00008910 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00008911
Dan Gohman7f321562007-06-25 16:23:39 +00008912 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00008913 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00008914 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00008915 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00008916 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00008917 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008918 SDValue LHSOp = LHS.getOperand(i);
8919 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00008920 // If these two elements can't be folded, bail out.
8921 if ((LHSOp.getOpcode() != ISD::UNDEF &&
8922 LHSOp.getOpcode() != ISD::Constant &&
8923 LHSOp.getOpcode() != ISD::ConstantFP) ||
8924 (RHSOp.getOpcode() != ISD::UNDEF &&
8925 RHSOp.getOpcode() != ISD::Constant &&
8926 RHSOp.getOpcode() != ISD::ConstantFP))
8927 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008928
Evan Cheng7b336a82006-05-31 06:08:35 +00008929 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00008930 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
8931 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00008932 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008933 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00008934 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008935 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00008936 break;
8937 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008938
Bob Wilsond7273432010-12-17 23:06:49 +00008939 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00008940 EVT RVT = RHSOp.getValueType();
8941 if (RVT != VT) {
8942 // Integer BUILD_VECTOR operands may have types larger than the element
8943 // size (e.g., when the element type is not legal). Prior to type
8944 // legalization, the types may not match between the two BUILD_VECTORS.
8945 // Truncate one of the operands to make them match.
8946 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
8947 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
8948 } else {
8949 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
8950 VT = RVT;
8951 }
8952 }
Bob Wilsond7273432010-12-17 23:06:49 +00008953 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00008954 LHSOp, RHSOp);
8955 if (FoldOp.getOpcode() != ISD::UNDEF &&
8956 FoldOp.getOpcode() != ISD::Constant &&
8957 FoldOp.getOpcode() != ISD::ConstantFP)
8958 break;
8959 Ops.push_back(FoldOp);
8960 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00008961 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008962
Bob Wilsond7273432010-12-17 23:06:49 +00008963 if (Ops.size() == LHS.getNumOperands())
8964 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8965 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00008966 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008967
Dan Gohman475871a2008-07-27 21:46:04 +00008968 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00008969}
8970
Craig Topperdd201ff2012-09-11 01:45:21 +00008971/// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG.
8972SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) {
8973 // After legalize, the target may be depending on adds and other
8974 // binary ops to provide legal ways to construct constants or other
8975 // things. Simplifying them may result in a loss of legality.
8976 if (LegalOperations) return SDValue();
8977
8978 assert(N->getValueType(0).isVector() &&
8979 "SimplifyVUnaryOp only works on vectors!");
8980
8981 SDValue N0 = N->getOperand(0);
8982
8983 if (N0.getOpcode() != ISD::BUILD_VECTOR)
8984 return SDValue();
8985
8986 // Operand is a BUILD_VECTOR node, see if we can constant fold it.
8987 SmallVector<SDValue, 8> Ops;
8988 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
8989 SDValue Op = N0.getOperand(i);
8990 if (Op.getOpcode() != ISD::UNDEF &&
8991 Op.getOpcode() != ISD::ConstantFP)
8992 break;
8993 EVT EltVT = Op.getValueType();
8994 SDValue FoldOp = DAG.getNode(N->getOpcode(), N0.getDebugLoc(), EltVT, Op);
8995 if (FoldOp.getOpcode() != ISD::UNDEF &&
8996 FoldOp.getOpcode() != ISD::ConstantFP)
8997 break;
8998 Ops.push_back(FoldOp);
8999 AddToWorkList(FoldOp.getNode());
9000 }
9001
9002 if (Ops.size() != N0.getNumOperands())
9003 return SDValue();
9004
9005 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
9006 N0.getValueType(), &Ops[0], Ops.size());
9007}
9008
Bill Wendling836ca7d2009-01-30 23:59:18 +00009009SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
9010 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00009011 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00009012
Bill Wendling836ca7d2009-01-30 23:59:18 +00009013 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00009014 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009015
Nate Begemanf845b452005-10-08 00:29:44 +00009016 // If we got a simplified select_cc node back from SimplifySelectCC, then
9017 // break it down into a new SETCC node, and a new SELECT node, and then return
9018 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00009019 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009020 // Check to see if we got a select_cc back (to turn into setcc/select).
9021 // Otherwise, just return whatever node we got back, like fabs.
9022 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009023 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
9024 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009025 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009026 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00009027 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009028 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
9029 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00009030 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009031
Nate Begemanf845b452005-10-08 00:29:44 +00009032 return SCC;
9033 }
Dan Gohman475871a2008-07-27 21:46:04 +00009034 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00009035}
9036
Chris Lattner40c62d52005-10-18 06:04:22 +00009037/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
9038/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00009039/// select. Callers of this should assume that TheSelect is deleted if this
9040/// returns true. As such, they should return the appropriate thing (e.g. the
9041/// node) back to the top-level of the DAG combiner loop to avoid it being
9042/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00009043bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00009044 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009045
Nadav Rotemf94fdb62011-02-11 19:57:47 +00009046 // Cannot simplify select with vector condition
9047 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
9048
Chris Lattner40c62d52005-10-18 06:04:22 +00009049 // If this is a select from two identical things, try to pull the operation
9050 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00009051 if (LHS.getOpcode() != RHS.getOpcode() ||
9052 !LHS.hasOneUse() || !RHS.hasOneUse())
9053 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009054
Chris Lattner18061612010-09-21 15:46:59 +00009055 // If this is a load and the token chain is identical, replace the select
9056 // of two loads with a load through a select of the address to load from.
9057 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
9058 // constants have been dropped into the constant pool.
9059 if (LHS.getOpcode() == ISD::LOAD) {
9060 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
9061 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009062
Chris Lattner18061612010-09-21 15:46:59 +00009063 // Token chains must be identical.
9064 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00009065 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00009066 LLD->isVolatile() || RLD->isVolatile() ||
9067 // If this is an EXTLOAD, the VT's must match.
9068 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00009069 // If this is an EXTLOAD, the kind of extension must match.
9070 (LLD->getExtensionType() != RLD->getExtensionType() &&
9071 // The only exception is if one of the extensions is anyext.
9072 LLD->getExtensionType() != ISD::EXTLOAD &&
9073 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00009074 // FIXME: this discards src value information. This is
9075 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00009076 // both potential memory locations. Since we are discarding
9077 // src value info, don't do the transformation if the memory
9078 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00009079 LLD->getPointerInfo().getAddrSpace() != 0 ||
9080 RLD->getPointerInfo().getAddrSpace() != 0)
9081 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009082
Chris Lattnerf1658062010-09-21 15:58:55 +00009083 // Check that the select condition doesn't reach either load. If so,
9084 // folding this will induce a cycle into the DAG. If not, this is safe to
9085 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00009086 SDValue Addr;
9087 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00009088 SDNode *CondNode = TheSelect->getOperand(0).getNode();
9089 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
9090 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
9091 return false;
Nadav Rotem1c5bf3f2012-10-18 18:06:48 +00009092 // The loads must not depend on one another.
9093 if (LLD->isPredecessorOf(RLD) ||
9094 RLD->isPredecessorOf(LLD))
9095 return false;
Chris Lattnerf1658062010-09-21 15:58:55 +00009096 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
9097 LLD->getBasePtr().getValueType(),
9098 TheSelect->getOperand(0), LLD->getBasePtr(),
9099 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00009100 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00009101 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
9102 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
9103
9104 if ((LLD->hasAnyUseOfValue(1) &&
9105 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00009106 (RLD->hasAnyUseOfValue(1) &&
9107 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00009108 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009109
Chris Lattnerf1658062010-09-21 15:58:55 +00009110 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
9111 LLD->getBasePtr().getValueType(),
9112 TheSelect->getOperand(0),
9113 TheSelect->getOperand(1),
9114 LLD->getBasePtr(), RLD->getBasePtr(),
9115 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00009116 }
9117
Chris Lattnerf1658062010-09-21 15:58:55 +00009118 SDValue Load;
9119 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
9120 Load = DAG.getLoad(TheSelect->getValueType(0),
9121 TheSelect->getDebugLoc(),
9122 // FIXME: Discards pointer info.
9123 LLD->getChain(), Addr, MachinePointerInfo(),
9124 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009125 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00009126 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00009127 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
9128 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00009129 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00009130 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00009131 // FIXME: Discards pointer info.
9132 LLD->getChain(), Addr, MachinePointerInfo(),
9133 LLD->getMemoryVT(), LLD->isVolatile(),
9134 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00009135 }
Chris Lattnerf1658062010-09-21 15:58:55 +00009136
9137 // Users of the select now use the result of the load.
9138 CombineTo(TheSelect, Load);
9139
9140 // Users of the old loads now use the new load's chain. We know the
9141 // old-load value is dead now.
9142 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
9143 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
9144 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00009145 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009146
Chris Lattner40c62d52005-10-18 06:04:22 +00009147 return false;
9148}
9149
Chris Lattner600fec32009-03-11 05:08:08 +00009150/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
9151/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00009152SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00009153 SDValue N2, SDValue N3,
9154 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00009155 // (x ? y : y) -> y.
9156 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009157
Owen Andersone50ed302009-08-10 22:56:29 +00009158 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00009159 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
9160 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
9161 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009162
9163 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00009164 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009165 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00009166 if (SCC.getNode()) AddToWorkList(SCC.getNode());
9167 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009168
9169 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00009170 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009171 return N2;
9172 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00009173 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009174 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00009175
Nate Begemanf845b452005-10-08 00:29:44 +00009176 // Check to see if we can simplify the select into an fabs node
9177 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
9178 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00009179 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009180 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
9181 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
9182 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
9183 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009184 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009185
Nate Begemanf845b452005-10-08 00:29:44 +00009186 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
9187 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
9188 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
9189 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009190 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00009191 }
9192 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009193
Chris Lattner600fec32009-03-11 05:08:08 +00009194 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
9195 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
9196 // in it. This is a win when the constant is not otherwise available because
9197 // it replaces two constant pool loads with one. We only do this if the FP
9198 // type is known to be legal, because if it isn't, then we are before legalize
9199 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00009200 // messing with soft float) and if the ConstantFP is not legal, because if
9201 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00009202 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
9203 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
9204 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00009205 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
9206 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00009207 // If both constants have multiple uses, then we won't need to do an
9208 // extra load, they are likely around in registers for other users.
9209 (TV->hasOneUse() || FV->hasOneUse())) {
9210 Constant *Elts[] = {
9211 const_cast<ConstantFP*>(FV->getConstantFPValue()),
9212 const_cast<ConstantFP*>(TV->getConstantFPValue())
9213 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009214 Type *FPTy = Elts[0]->getType();
Micah Villmow3574eca2012-10-08 16:38:25 +00009215 const DataLayout &TD = *TLI.getDataLayout();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009216
Chris Lattner600fec32009-03-11 05:08:08 +00009217 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00009218 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00009219 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
9220 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00009221 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00009222
9223 // Get the offsets to the 0 and 1 element of the array so that we can
9224 // select between them.
9225 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00009226 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00009227 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009228
Chris Lattner600fec32009-03-11 05:08:08 +00009229 SDValue Cond = DAG.getSetCC(DL,
9230 TLI.getSetCCResultType(N0.getValueType()),
9231 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00009232 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009233 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
9234 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00009235 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009236 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
9237 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00009238 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009239 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00009240 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00009241 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00009242
9243 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009244 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009245
Nate Begemanf845b452005-10-08 00:29:44 +00009246 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00009247 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00009248 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00009249 (N1C->isNullValue() || // (a < 0) ? b : 0
9250 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00009251 EVT XType = N0.getValueType();
9252 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00009253 if (XType.bitsGE(AType)) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00009254 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00009255 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00009256 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
9257 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00009258 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00009259 SDValue ShCt = DAG.getConstant(ShCtV,
9260 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00009261 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009262 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00009263 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009264
Duncan Sands8e4eb092008-06-08 20:54:56 +00009265 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009266 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009267 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009268 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009269
9270 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009271 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009272
Bill Wendling9729c5a2009-01-31 03:12:48 +00009273 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009274 XType, N0,
9275 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009276 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00009277 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009278
Duncan Sands8e4eb092008-06-08 20:54:56 +00009279 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009280 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009281 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009282 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009283
9284 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009285 }
9286 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009287
Owen Andersoned1088a2010-09-22 22:58:22 +00009288 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
9289 // where y is has a single bit set.
9290 // A plaintext description would be, we can turn the SELECT_CC into an AND
9291 // when the condition can be materialized as an all-ones register. Any
9292 // single bit-test can be materialized as an all-ones register with
9293 // shift-left and shift-right-arith.
9294 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
9295 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009296 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00009297 N2C && N2C->isNullValue()) {
9298 SDValue AndLHS = N0->getOperand(0);
9299 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
9300 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
9301 // Shift the tested bit over the sign bit.
9302 APInt AndMask = ConstAndRHS->getAPIntValue();
9303 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00009304 DAG.getConstant(AndMask.countLeadingZeros(),
9305 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00009306 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009307
Owen Andersoned1088a2010-09-22 22:58:22 +00009308 // Now arithmetic right shift it all the way over, so the result is either
9309 // all-ones, or zero.
9310 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00009311 DAG.getConstant(AndMask.getBitWidth()-1,
9312 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00009313 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009314
Owen Andersoned1088a2010-09-22 22:58:22 +00009315 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
9316 }
9317 }
9318
Nate Begeman07ed4172005-10-10 21:26:48 +00009319 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00009320 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00009321 TLI.getBooleanContents(N0.getValueType().isVector()) ==
9322 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009323
Chris Lattner1eba01e2007-04-11 06:50:51 +00009324 // If the caller doesn't want us to simplify this into a zext of a compare,
9325 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00009326 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00009327 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00009328
Nate Begeman07ed4172005-10-10 21:26:48 +00009329 // Get a SetCC of the condition
9330 // FIXME: Should probably make sure that setcc is legal if we ever have a
9331 // target where it isn't.
Dan Gohman475871a2008-07-27 21:46:04 +00009332 SDValue Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00009333 // cast from setcc result type to select result type
Duncan Sands25cf2272008-11-24 14:53:14 +00009334 if (LegalTypes) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009335 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00009336 N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00009337 if (N2.getValueType().bitsLT(SCC.getValueType()))
Bill Wendling9729c5a2009-01-31 03:12:48 +00009338 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
Chris Lattner555d8d62006-12-07 22:36:47 +00009339 else
Bill Wendling9729c5a2009-01-31 03:12:48 +00009340 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009341 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00009342 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00009343 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00009344 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009345 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00009346 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009347
Gabor Greifba36cb52008-08-28 21:40:38 +00009348 AddToWorkList(SCC.getNode());
9349 AddToWorkList(Temp.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00009350
Dan Gohman002e5d02008-03-13 22:13:53 +00009351 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00009352 return Temp;
Bill Wendling836ca7d2009-01-30 23:59:18 +00009353
Nate Begeman07ed4172005-10-10 21:26:48 +00009354 // shl setcc result by log2 n2c
Bill Wendling836ca7d2009-01-30 23:59:18 +00009355 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00009356 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00009357 getShiftAmountTy(Temp.getValueType())));
Nate Begeman07ed4172005-10-10 21:26:48 +00009358 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009359
Nate Begemanf845b452005-10-08 00:29:44 +00009360 // Check to see if this is the equivalent of setcc
9361 // FIXME: Turn all of these into setcc if setcc if setcc is legal
9362 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00009363 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00009364 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00009365 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00009366 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009367 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00009368 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009369 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00009370 return Res;
9371 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009372
Bill Wendling836ca7d2009-01-30 23:59:18 +00009373 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00009374 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00009375 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00009376 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009377 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009378 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00009379 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00009380 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00009381 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009382 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00009383 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009384 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
9385 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00009386 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00009387 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00009388 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00009389 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009390 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00009391 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009392 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00009393 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009394 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00009395 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009396 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00009397 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00009398 }
9399 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009400
Benjamin Kramercde51102010-07-08 12:09:56 +00009401 // Check to see if this is an integer abs.
9402 // select_cc setg[te] X, 0, X, -X ->
9403 // select_cc setgt X, -1, X, -X ->
9404 // select_cc setl[te] X, 0, -X, X ->
9405 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00009406 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00009407 if (N1C) {
9408 ConstantSDNode *SubC = NULL;
9409 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
9410 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
9411 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
9412 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
9413 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
9414 (N1C->isOne() && CC == ISD::SETLT)) &&
9415 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
9416 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
9417
Owen Andersone50ed302009-08-10 22:56:29 +00009418 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00009419 if (SubC && SubC->isNullValue() && XType.isInteger()) {
9420 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
9421 N0,
9422 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009423 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00009424 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
9425 XType, N0, Shift);
9426 AddToWorkList(Shift.getNode());
9427 AddToWorkList(Add.getNode());
9428 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00009429 }
9430 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009431
Dan Gohman475871a2008-07-27 21:46:04 +00009432 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00009433}
9434
Evan Chengfa1eb272007-02-08 22:13:59 +00009435/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00009436SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00009437 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009438 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009439 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00009440 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009441 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00009442}
9443
Nate Begeman69575232005-10-20 02:15:44 +00009444/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
9445/// return a DAG expression to select that will generate the same value by
9446/// multiplying by a magic number. See:
9447/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00009448SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00009449 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00009450 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009451
Andrew Lenharth232c9102006-06-12 16:07:18 +00009452 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009453 ii != ee; ++ii)
9454 AddToWorkList(*ii);
9455 return S;
Nate Begeman69575232005-10-20 02:15:44 +00009456}
9457
9458/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
9459/// return a DAG expression to select that will generate the same value by
9460/// multiplying by a magic number. See:
9461/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00009462SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00009463 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00009464 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00009465
Andrew Lenharth232c9102006-06-12 16:07:18 +00009466 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009467 ii != ee; ++ii)
9468 AddToWorkList(*ii);
9469 return S;
Nate Begeman69575232005-10-20 02:15:44 +00009470}
9471
Nate Begemancc66cdd2009-09-25 06:05:26 +00009472/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00009473// to alias with anything but itself. Provides base object and offset as
9474// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009475static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Roman Divacky2943e372012-09-05 22:15:49 +00009476 const GlobalValue *&GV, const void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00009477 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009478 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00009479
Jim Laskey71382342006-10-07 23:37:56 +00009480 // If it's an adding a simple constant then integrate the offset.
9481 if (Base.getOpcode() == ISD::ADD) {
9482 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
9483 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00009484 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00009485 }
9486 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009487
Nate Begemancc66cdd2009-09-25 06:05:26 +00009488 // Return the underlying GlobalValue, and update the Offset. Return false
9489 // for GlobalAddressSDNode since the same GlobalAddress may be represented
9490 // by multiple nodes with different offsets.
9491 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
9492 GV = G->getGlobal();
9493 Offset += G->getOffset();
9494 return false;
9495 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009496
Nate Begemancc66cdd2009-09-25 06:05:26 +00009497 // Return the underlying Constant value, and update the Offset. Return false
9498 // for ConstantSDNodes since the same constant pool entry may be represented
9499 // by multiple nodes with different offsets.
9500 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
Roman Divacky2943e372012-09-05 22:15:49 +00009501 CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal()
9502 : (const void *)C->getConstVal();
Nate Begemancc66cdd2009-09-25 06:05:26 +00009503 Offset += C->getOffset();
9504 return false;
9505 }
Jim Laskey71382342006-10-07 23:37:56 +00009506 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009507 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00009508}
9509
9510/// isAlias - Return true if there is any possibility that the two addresses
9511/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00009512bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00009513 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009514 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009515 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00009516 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009517 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009518 unsigned SrcValueAlign2,
9519 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00009520 // If they are the same then they must be aliases.
9521 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00009522
Jim Laskey71382342006-10-07 23:37:56 +00009523 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00009524 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00009525 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00009526 const GlobalValue *GV1, *GV2;
Roman Divacky2943e372012-09-05 22:15:49 +00009527 const void *CV1, *CV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00009528 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
9529 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009530
Nate Begemancc66cdd2009-09-25 06:05:26 +00009531 // If they have a same base address then check to see if they overlap.
9532 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009533 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009534
Owen Anderson4a9f1502010-09-20 20:39:59 +00009535 // It is possible for different frame indices to alias each other, mostly
9536 // when tail call optimization reuses return address slots for arguments.
9537 // To catch this case, look up the actual index of frame indices to compute
9538 // the real alias relationship.
9539 if (isFrameIndex1 && isFrameIndex2) {
9540 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9541 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
9542 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
9543 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
9544 }
9545
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009546 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00009547 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009548 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
9549 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00009550
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009551 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
9552 // compared to the size and offset of the access, we may be able to prove they
9553 // do not alias. This check is conservative for now to catch cases created by
9554 // splitting vector types.
9555 if ((SrcValueAlign1 == SrcValueAlign2) &&
9556 (SrcValueOffset1 != SrcValueOffset2) &&
9557 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
9558 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
9559 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009560
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009561 // There is no overlap between these relatively aligned accesses of similar
9562 // size, return no alias.
9563 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
9564 return false;
9565 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009566
Jim Laskey07a27092006-10-18 19:08:31 +00009567 if (CombinerGlobalAA) {
9568 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00009569 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
9570 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
9571 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00009572 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009573 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
9574 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00009575 if (AAResult == AliasAnalysis::NoAlias)
9576 return false;
9577 }
Jim Laskey096c22e2006-10-18 12:29:57 +00009578
9579 // Otherwise we have to assume they alias.
9580 return true;
Jim Laskey71382342006-10-07 23:37:56 +00009581}
9582
9583/// FindAliasInfo - Extracts the relevant alias information from the memory
9584/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00009585bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00009586 SDValue &Ptr, int64_t &Size,
9587 const Value *&SrcValue,
9588 int &SrcValueOffset,
9589 unsigned &SrcValueAlign,
9590 const MDNode *&TBAAInfo) const {
9591 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
9592
9593 Ptr = LS->getBasePtr();
9594 Size = LS->getMemoryVT().getSizeInBits() >> 3;
9595 SrcValue = LS->getSrcValue();
9596 SrcValueOffset = LS->getSrcValueOffset();
9597 SrcValueAlign = LS->getOriginalAlignment();
9598 TBAAInfo = LS->getTBAAInfo();
9599 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00009600}
9601
Jim Laskey6ff23e52006-10-04 16:53:27 +00009602/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
9603/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00009604void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
9605 SmallVector<SDValue, 8> &Aliases) {
9606 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009607 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00009608
Jim Laskey279f0532006-09-25 16:29:54 +00009609 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00009610 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009611 int64_t Size;
9612 const Value *SrcValue;
9613 int SrcValueOffset;
9614 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009615 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009616 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009617 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00009618
Jim Laskey6ff23e52006-10-04 16:53:27 +00009619 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00009620 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00009621 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009622
Jim Laskeybc588b82006-10-05 15:07:25 +00009623 // Look at each chain and determine if it is an alias. If so, add it to the
9624 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00009625 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00009626 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00009627 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00009628 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009629
9630 // For TokenFactor nodes, look at each operand and only continue up the
9631 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00009632 // find more and revert to original chain since the xform is unlikely to be
9633 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009634 //
9635 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00009636 // chain we found before we hit a tokenfactor rather than the original
9637 // chain.
9638 if (Depth > 6 || Aliases.size() == 2) {
9639 Aliases.clear();
9640 Aliases.push_back(OriginalChain);
9641 break;
9642 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009643
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009644 // Don't bother if we've been before.
9645 if (!Visited.insert(Chain.getNode()))
9646 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00009647
Jim Laskeybc588b82006-10-05 15:07:25 +00009648 switch (Chain.getOpcode()) {
9649 case ISD::EntryToken:
9650 // Entry token is ideal chain operand, but handled in FindBetterChain.
9651 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00009652
Jim Laskeybc588b82006-10-05 15:07:25 +00009653 case ISD::LOAD:
9654 case ISD::STORE: {
9655 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00009656 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009657 int64_t OpSize;
9658 const Value *OpSrcValue;
9659 int OpSrcValueOffset;
9660 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009661 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00009662 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009663 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009664 OpSrcValueAlign,
9665 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00009666
Jim Laskeybc588b82006-10-05 15:07:25 +00009667 // If chain is alias then stop here.
9668 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009669 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009670 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009671 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009672 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00009673 Aliases.push_back(Chain);
9674 } else {
9675 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00009676 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00009677 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00009678 }
Jim Laskeybc588b82006-10-05 15:07:25 +00009679 break;
9680 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009681
Jim Laskeybc588b82006-10-05 15:07:25 +00009682 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009683 // We have to check each of the operands of the token factor for "small"
9684 // token factors, so we queue them up. Adding the operands to the queue
9685 // (stack) in reverse order maintains the original order and increases the
9686 // likelihood that getNode will find a matching token factor (CSE.)
9687 if (Chain.getNumOperands() > 16) {
9688 Aliases.push_back(Chain);
9689 break;
9690 }
Jim Laskeybc588b82006-10-05 15:07:25 +00009691 for (unsigned n = Chain.getNumOperands(); n;)
9692 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00009693 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00009694 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00009695
Jim Laskeybc588b82006-10-05 15:07:25 +00009696 default:
9697 // For all other instructions we will just have to take what we can get.
9698 Aliases.push_back(Chain);
9699 break;
Jim Laskey279f0532006-09-25 16:29:54 +00009700 }
9701 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00009702}
9703
9704/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
9705/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00009706SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
9707 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00009708
Jim Laskey6ff23e52006-10-04 16:53:27 +00009709 // Accumulate all the aliases to this node.
9710 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00009711
Dan Gohman71dc7c92011-05-17 22:20:36 +00009712 // If no operands then chain to entry token.
9713 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00009714 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00009715
9716 // If a single operand then chain to it. We don't need to revisit it.
9717 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00009718 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009719
Jim Laskey6ff23e52006-10-04 16:53:27 +00009720 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009721 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009722 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00009723}
9724
Nate Begeman1d4d4142005-09-01 00:19:25 +00009725// SelectionDAG::Combine - This is the entry point for the file.
9726//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00009727void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00009728 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00009729 /// run - This is the main entry point to this class.
9730 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00009731 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00009732}