blob: c2b7f6c513a8c55599af14d35bf108539eb86d00 [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"
Evan Cheng59d5b682007-05-07 21:27:48 +000026#include "llvm/Target/TargetData.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);
197 SDValue visitSHL(SDNode *N);
198 SDValue visitSRA(SDNode *N);
199 SDValue visitSRL(SDNode *N);
200 SDValue visitCTLZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000201 SDValue visitCTLZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000202 SDValue visitCTTZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000203 SDValue visitCTTZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000204 SDValue visitCTPOP(SDNode *N);
205 SDValue visitSELECT(SDNode *N);
206 SDValue visitSELECT_CC(SDNode *N);
207 SDValue visitSETCC(SDNode *N);
208 SDValue visitSIGN_EXTEND(SDNode *N);
209 SDValue visitZERO_EXTEND(SDNode *N);
210 SDValue visitANY_EXTEND(SDNode *N);
211 SDValue visitSIGN_EXTEND_INREG(SDNode *N);
212 SDValue visitTRUNCATE(SDNode *N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000213 SDValue visitBITCAST(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000214 SDValue visitBUILD_PAIR(SDNode *N);
215 SDValue visitFADD(SDNode *N);
216 SDValue visitFSUB(SDNode *N);
217 SDValue visitFMUL(SDNode *N);
Owen Anderson062c0a52012-05-02 22:17:40 +0000218 SDValue visitFMA(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000219 SDValue visitFDIV(SDNode *N);
220 SDValue visitFREM(SDNode *N);
221 SDValue visitFCOPYSIGN(SDNode *N);
222 SDValue visitSINT_TO_FP(SDNode *N);
223 SDValue visitUINT_TO_FP(SDNode *N);
224 SDValue visitFP_TO_SINT(SDNode *N);
225 SDValue visitFP_TO_UINT(SDNode *N);
226 SDValue visitFP_ROUND(SDNode *N);
227 SDValue visitFP_ROUND_INREG(SDNode *N);
228 SDValue visitFP_EXTEND(SDNode *N);
229 SDValue visitFNEG(SDNode *N);
230 SDValue visitFABS(SDNode *N);
231 SDValue visitBRCOND(SDNode *N);
232 SDValue visitBR_CC(SDNode *N);
233 SDValue visitLOAD(SDNode *N);
234 SDValue visitSTORE(SDNode *N);
235 SDValue visitINSERT_VECTOR_ELT(SDNode *N);
236 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
237 SDValue visitBUILD_VECTOR(SDNode *N);
238 SDValue visitCONCAT_VECTORS(SDNode *N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +0000239 SDValue visitEXTRACT_SUBVECTOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000240 SDValue visitVECTOR_SHUFFLE(SDNode *N);
Jim Grosbach9a526492010-06-23 16:07:42 +0000241 SDValue visitMEMBARRIER(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000242
Dan Gohman475871a2008-07-27 21:46:04 +0000243 SDValue XformToShuffleWithZero(SDNode *N);
Bill Wendling35247c32009-01-30 00:45:56 +0000244 SDValue ReassociateOps(unsigned Opc, DebugLoc DL, SDValue LHS, SDValue RHS);
Scott Michelfdc40a02009-02-17 22:15:04 +0000245
Dan Gohman475871a2008-07-27 21:46:04 +0000246 SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
Chris Lattnere70da202007-12-06 07:33:36 +0000247
Dan Gohman475871a2008-07-27 21:46:04 +0000248 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
249 SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Bill Wendling836ca7d2009-01-30 23:59:18 +0000250 SDValue SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2);
Scott Michelfdc40a02009-02-17 22:15:04 +0000251 SDValue SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2,
252 SDValue N3, ISD::CondCode CC,
Bill Wendling836ca7d2009-01-30 23:59:18 +0000253 bool NotExtCompare = false);
Owen Andersone50ed302009-08-10 22:56:29 +0000254 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +0000255 DebugLoc DL, bool foldBooleans = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000256 SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Chris Lattner5eee4272008-01-26 01:09:19 +0000257 unsigned HiOp);
Owen Andersone50ed302009-08-10 22:56:29 +0000258 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000259 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
Dan Gohman475871a2008-07-27 21:46:04 +0000260 SDValue BuildSDIV(SDNode *N);
261 SDValue BuildUDIV(SDNode *N);
Evan Cheng9568e5c2011-06-21 06:01:08 +0000262 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
263 bool DemandHighBits = true);
264 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
Bill Wendling317bd702009-01-30 21:14:50 +0000265 SDNode *MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL);
Dan Gohman475871a2008-07-27 21:46:04 +0000266 SDValue ReduceLoadWidth(SDNode *N);
Evan Cheng8b944d32009-05-28 00:35:15 +0000267 SDValue ReduceLoadOpStoreWidth(SDNode *N);
Evan Cheng31959b12011-02-02 01:06:55 +0000268 SDValue TransformFPLoadStorePair(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000269
Dan Gohman475871a2008-07-27 21:46:04 +0000270 SDValue GetDemandedBits(SDValue V, const APInt &Mask);
Scott Michelfdc40a02009-02-17 22:15:04 +0000271
Jim Laskey6ff23e52006-10-04 16:53:27 +0000272 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
273 /// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000274 void GatherAllAliases(SDNode *N, SDValue OriginalChain,
275 SmallVector<SDValue, 8> &Aliases);
Jim Laskey6ff23e52006-10-04 16:53:27 +0000276
Jim Laskey096c22e2006-10-18 12:29:57 +0000277 /// isAlias - Return true if there is any possibility that the two addresses
278 /// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +0000279 bool isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +0000280 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000281 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000282 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +0000283 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000284 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000285 unsigned SrcValueAlign2,
286 const MDNode *TBAAInfo2) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000287
Jim Laskey7ca56af2006-10-11 13:47:09 +0000288 /// FindAliasInfo - Extracts the relevant alias information from the memory
289 /// node. Returns true if the operand was a load.
290 bool FindAliasInfo(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000291 SDValue &Ptr, int64_t &Size,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000292 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000293 unsigned &SrcValueAlignment,
294 const MDNode *&TBAAInfo) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000295
Jim Laskey279f0532006-09-25 16:29:54 +0000296 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000297 /// looking for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +0000298 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands92abc622009-01-31 15:50:11 +0000299
Chris Lattner2392ae72010-04-15 04:48:01 +0000300 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000301 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000302 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000303 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000304
Nate Begeman1d4d4142005-09-01 00:19:25 +0000305 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000306 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000307
Chris Lattner2392ae72010-04-15 04:48:01 +0000308 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000309
Chris Lattner2392ae72010-04-15 04:48:01 +0000310 /// getShiftAmountTy - Returns a type large enough to hold any valid
311 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000312 EVT getShiftAmountTy(EVT LHSTy) {
313 return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000314 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000315
Chris Lattner2392ae72010-04-15 04:48:01 +0000316 /// isTypeLegal - This method returns true if we are running before type
317 /// legalization or if the specified VT is legal.
318 bool isTypeLegal(const EVT &VT) {
319 if (!LegalTypes) return true;
320 return TLI.isTypeLegal(VT);
321 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000322 };
323}
324
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000325
326namespace {
327/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
328/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000329class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000330 DAGCombiner &DC;
331public:
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000332 explicit WorkListRemover(DAGCombiner &dc)
333 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000334
Duncan Sandsedfcf592008-06-11 11:42:12 +0000335 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000336 DC.removeFromWorkList(N);
337 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000338};
339}
340
Chris Lattner24664722006-03-01 04:53:38 +0000341//===----------------------------------------------------------------------===//
342// TargetLowering::DAGCombinerInfo implementation
343//===----------------------------------------------------------------------===//
344
345void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
346 ((DAGCombiner*)DC)->AddToWorkList(N);
347}
348
Cameron Zwariched3caf92011-04-02 02:40:26 +0000349void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
350 ((DAGCombiner*)DC)->removeFromWorkList(N);
351}
352
Dan Gohman475871a2008-07-27 21:46:04 +0000353SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000354CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
355 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000356}
357
Dan Gohman475871a2008-07-27 21:46:04 +0000358SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000359CombineTo(SDNode *N, SDValue Res, bool AddTo) {
360 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000361}
362
363
Dan Gohman475871a2008-07-27 21:46:04 +0000364SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000365CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
366 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000367}
368
Dan Gohmane5af2d32009-01-29 01:59:02 +0000369void TargetLowering::DAGCombinerInfo::
370CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
371 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
372}
Chris Lattner24664722006-03-01 04:53:38 +0000373
Chris Lattner24664722006-03-01 04:53:38 +0000374//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000375// Helper Functions
376//===----------------------------------------------------------------------===//
377
378/// isNegatibleForFree - Return 1 if we can compute the negated form of the
379/// specified expression for the same cost as the expression itself, or 2 if we
380/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000381static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000382 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000383 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000384 unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000385 // No compile time optimizations on this type.
Owen Anderson825b72b2009-08-11 20:47:22 +0000386 if (Op.getValueType() == MVT::ppcf128)
Dale Johannesendb44bf82007-10-16 23:38:29 +0000387 return 0;
388
Chris Lattner29446522007-05-14 22:04:50 +0000389 // fneg is removable even if it has multiple uses.
390 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000391
Chris Lattner29446522007-05-14 22:04:50 +0000392 // Don't allow anything with multiple uses.
393 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000394
Chris Lattner3adf9512007-05-25 02:19:06 +0000395 // Don't recurse exponentially.
396 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000397
Chris Lattner29446522007-05-14 22:04:50 +0000398 switch (Op.getOpcode()) {
399 default: return false;
400 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000401 // Don't invert constant FP values after legalize. The negated constant
402 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000403 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000404 case ISD::FADD:
405 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000406 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000407
Owen Andersonafd3d562012-03-06 00:29:31 +0000408 // After operation legalization, it might not be legal to create new FSUBs.
409 if (LegalOperations &&
410 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
411 return 0;
412
Bill Wendlingd34470c2009-01-30 23:10:18 +0000413 // fold (fsub (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000414 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
415 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000416 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000417 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000418 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000419 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000420 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000421 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000422 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000423
Bill Wendlingd34470c2009-01-30 23:10:18 +0000424 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000425 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000426
Chris Lattner29446522007-05-14 22:04:50 +0000427 case ISD::FMUL:
428 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000429 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000430
Bill Wendlingd34470c2009-01-30 23:10:18 +0000431 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000432 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
433 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000434 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000435
Owen Andersonafd3d562012-03-06 00:29:31 +0000436 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000437 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000438
Chris Lattner29446522007-05-14 22:04:50 +0000439 case ISD::FP_EXTEND:
440 case ISD::FP_ROUND:
441 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000442 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000443 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000444 }
445}
446
447/// GetNegatedExpression - If isNegatibleForFree returns true, this function
448/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000449static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000450 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000451 // fneg is removable even if it has multiple uses.
452 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000453
Chris Lattner29446522007-05-14 22:04:50 +0000454 // Don't allow anything with multiple uses.
455 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000456
Chris Lattner3adf9512007-05-25 02:19:06 +0000457 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000458 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000459 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000460 case ISD::ConstantFP: {
461 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
462 V.changeSign();
463 return DAG.getConstantFP(V, Op.getValueType());
464 }
Chris Lattner29446522007-05-14 22:04:50 +0000465 case ISD::FADD:
466 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000467 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000468
Bill Wendlingd34470c2009-01-30 23:10:18 +0000469 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000470 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000471 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000472 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000473 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000474 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000475 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000476 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000477 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Bill Wendling35247c32009-01-30 00:45:56 +0000478 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000479 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000480 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000481 Op.getOperand(0));
482 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000483 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000484 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000485
Bill Wendlingd34470c2009-01-30 23:10:18 +0000486 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000487 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000488 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000489 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000490
Bill Wendlingd34470c2009-01-30 23:10:18 +0000491 // fold (fneg (fsub A, B)) -> (fsub B, A)
Bill Wendling35247c32009-01-30 00:45:56 +0000492 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
493 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000494
Chris Lattner29446522007-05-14 22:04:50 +0000495 case ISD::FMUL:
496 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000497 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000498
Bill Wendlingd34470c2009-01-30 23:10:18 +0000499 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000500 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000501 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000502 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000503 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000504 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000505 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000506 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000507
Bill Wendlingd34470c2009-01-30 23:10:18 +0000508 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Bill Wendling35247c32009-01-30 00:45:56 +0000509 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000510 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000511 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000512 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000513
Chris Lattner29446522007-05-14 22:04:50 +0000514 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000515 case ISD::FSIN:
Bill Wendling35247c32009-01-30 00:45:56 +0000516 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000517 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000518 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000519 case ISD::FP_ROUND:
Bill Wendling35247c32009-01-30 00:45:56 +0000520 return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000521 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000522 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000523 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000524 }
525}
Chris Lattner24664722006-03-01 04:53:38 +0000526
527
Nate Begeman4ebd8052005-09-01 23:24:04 +0000528// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
529// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000530// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000531// nodes based on the type of node we are checking. This simplifies life a
532// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000533static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
534 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000535 if (N.getOpcode() == ISD::SETCC) {
536 LHS = N.getOperand(0);
537 RHS = N.getOperand(1);
538 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000539 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000540 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000541 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000542 N.getOperand(2).getOpcode() == ISD::Constant &&
543 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000544 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000545 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
546 LHS = N.getOperand(0);
547 RHS = N.getOperand(1);
548 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000549 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000550 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000551 return false;
552}
553
Nate Begeman99801192005-09-07 23:25:52 +0000554// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
555// one use. If this is true, it allows the users to invert the operation for
556// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000557static bool isOneUseSetCC(SDValue N) {
558 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000559 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000560 return true;
561 return false;
562}
563
Bill Wendling35247c32009-01-30 00:45:56 +0000564SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
565 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000566 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000567 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
568 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000569 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000570 SDValue OpNode =
571 DAG.FoldConstantArithmetic(Opc, VT,
572 cast<ConstantSDNode>(N0.getOperand(1)),
573 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000574 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000575 }
576 if (N0.hasOneUse()) {
Bill Wendling35247c32009-01-30 00:45:56 +0000577 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
578 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
579 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000580 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000581 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000582 }
583 }
Bill Wendling35247c32009-01-30 00:45:56 +0000584
Nate Begemancd4d58c2006-02-03 06:46:56 +0000585 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
586 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000587 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000588 SDValue OpNode =
589 DAG.FoldConstantArithmetic(Opc, VT,
590 cast<ConstantSDNode>(N1.getOperand(1)),
591 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000592 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000593 }
594 if (N1.hasOneUse()) {
Bill Wendling35247c32009-01-30 00:45:56 +0000595 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendlingd69c3142009-01-30 02:23:43 +0000596 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000597 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000598 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000599 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000600 }
601 }
Bill Wendling35247c32009-01-30 00:45:56 +0000602
Dan Gohman475871a2008-07-27 21:46:04 +0000603 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000604}
605
Dan Gohman475871a2008-07-27 21:46:04 +0000606SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
607 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000608 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
609 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000610 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000611 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000612 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000613 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000614 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000615 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000616 assert((!To[i].getNode() ||
617 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000618 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000619 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000620 DAG.ReplaceAllUsesWith(N, To);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000621 if (AddTo) {
622 // Push the new nodes and any users onto the worklist
623 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000624 if (To[i].getNode()) {
625 AddToWorkList(To[i].getNode());
626 AddUsersToWorkList(To[i].getNode());
627 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000628 }
629 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000630
Dan Gohmandbe664a2009-01-19 21:44:21 +0000631 // Finally, if the node is now dead, remove it from the graph. The node
632 // may not be dead if the replacement process recursively simplified to
633 // something else needing this node.
634 if (N->use_empty()) {
635 // Nodes can be reintroduced into the worklist. Make sure we do not
636 // process a node that has been replaced.
637 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000638
Dan Gohmandbe664a2009-01-19 21:44:21 +0000639 // Finally, since the node is now dead, remove it from the graph.
640 DAG.DeleteNode(N);
641 }
Dan Gohman475871a2008-07-27 21:46:04 +0000642 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000643}
644
Evan Chenge5b51ac2010-04-17 06:13:15 +0000645void DAGCombiner::
646CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000647 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000648 // are deleted, make sure to remove them from our worklist.
649 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000650 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000651
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000652 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000653 AddToWorkList(TLO.New.getNode());
654 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000655
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000656 // Finally, if the node is now dead, remove it from the graph. The node
657 // may not be dead if the replacement process recursively simplified to
658 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000659 if (TLO.Old.getNode()->use_empty()) {
660 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000661
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000662 // If the operands of this node are only used by the node, they will now
663 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000664 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
665 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
666 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000667
Gabor Greifba36cb52008-08-28 21:40:38 +0000668 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000669 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000670}
671
672/// SimplifyDemandedBits - Check the specified integer node value to see if
673/// it can be simplified or if things it uses can be simplified by bit
674/// propagation. If so, return true.
675bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000676 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000677 APInt KnownZero, KnownOne;
678 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
679 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000680
Dan Gohmane5af2d32009-01-29 01:59:02 +0000681 // Revisit the node.
682 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000683
Dan Gohmane5af2d32009-01-29 01:59:02 +0000684 // Replace the old value with the new one.
685 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000686 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000687 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000688 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000689 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000690 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000691
Dan Gohmane5af2d32009-01-29 01:59:02 +0000692 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000693 return true;
694}
695
Evan Cheng95c57ea2010-04-24 04:43:44 +0000696void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
697 DebugLoc dl = Load->getDebugLoc();
698 EVT VT = Load->getValueType(0);
699 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000700
Evan Cheng95c57ea2010-04-24 04:43:44 +0000701 DEBUG(dbgs() << "\nReplacing.9 ";
702 Load->dump(&DAG);
703 dbgs() << "\nWith: ";
704 Trunc.getNode()->dump(&DAG);
705 dbgs() << '\n');
706 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000707 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
708 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
Evan Cheng95c57ea2010-04-24 04:43:44 +0000709 removeFromWorkList(Load);
710 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000711 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000712}
713
714SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
715 Replace = false;
Evan Cheng4c26e932010-04-19 19:29:22 +0000716 DebugLoc dl = Op.getDebugLoc();
Evan Chenge5b51ac2010-04-17 06:13:15 +0000717 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000718 EVT MemVT = LD->getMemoryVT();
719 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000720 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000721 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000722 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000723 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000724 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000725 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000726 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000727 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000728 LD->isNonTemporal(), LD->getAlignment());
729 }
730
Evan Cheng4c26e932010-04-19 19:29:22 +0000731 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000732 switch (Opc) {
733 default: break;
734 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000735 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000736 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000737 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000738 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000739 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000740 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000741 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000742 case ISD::Constant: {
743 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000744 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000745 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000746 }
Evan Chengcaf77402010-04-23 19:10:30 +0000747 }
748
749 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000750 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000751 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000752}
753
Evan Cheng95c57ea2010-04-24 04:43:44 +0000754SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000755 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
756 return SDValue();
757 EVT OldVT = Op.getValueType();
758 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000759 bool Replace = false;
760 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
761 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000762 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000763 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000764
765 if (Replace)
766 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
767 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000768 DAG.getValueType(OldVT));
769}
770
Evan Cheng95c57ea2010-04-24 04:43:44 +0000771SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000772 EVT OldVT = Op.getValueType();
773 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000774 bool Replace = false;
775 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
776 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000777 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000778 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000779
780 if (Replace)
781 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
782 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000783}
784
Evan Cheng64b7bf72010-04-16 06:14:10 +0000785/// PromoteIntBinOp - Promote the specified integer binary operation if the
786/// target indicates it is beneficial. e.g. On x86, it's usually better to
787/// promote i16 operations to i32 since i16 instructions are longer.
788SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
789 if (!LegalOperations)
790 return SDValue();
791
792 EVT VT = Op.getValueType();
793 if (VT.isVector() || !VT.isInteger())
794 return SDValue();
795
Evan Chenge5b51ac2010-04-17 06:13:15 +0000796 // If operation type is 'undesirable', e.g. i16 on x86, consider
797 // promoting it.
798 unsigned Opc = Op.getOpcode();
799 if (TLI.isTypeDesirableForOp(Opc, VT))
800 return SDValue();
801
Evan Cheng64b7bf72010-04-16 06:14:10 +0000802 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000803 // Consult target whether it is a good idea to promote this operation and
804 // what's the right type to promote it to.
805 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000806 assert(PVT != VT && "Don't know what type to promote to!");
807
Evan Cheng95c57ea2010-04-24 04:43:44 +0000808 bool Replace0 = false;
809 SDValue N0 = Op.getOperand(0);
810 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
811 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000812 return SDValue();
813
Evan Cheng95c57ea2010-04-24 04:43:44 +0000814 bool Replace1 = false;
815 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000816 SDValue NN1;
817 if (N0 == N1)
818 NN1 = NN0;
819 else {
820 NN1 = PromoteOperand(N1, PVT, Replace1);
821 if (NN1.getNode() == 0)
822 return SDValue();
823 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000824
Evan Cheng95c57ea2010-04-24 04:43:44 +0000825 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000826 if (NN1.getNode())
827 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000828
829 if (Replace0)
830 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
831 if (Replace1)
832 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000833
Evan Chengac7eae52010-04-27 19:48:13 +0000834 DEBUG(dbgs() << "\nPromoting ";
835 Op.getNode()->dump(&DAG));
Evan Cheng07c4e102010-04-22 20:19:46 +0000836 DebugLoc dl = Op.getDebugLoc();
837 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000838 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000839 }
840 return SDValue();
841}
842
843/// PromoteIntShiftOp - Promote the specified integer shift operation if the
844/// target indicates it is beneficial. e.g. On x86, it's usually better to
845/// promote i16 operations to i32 since i16 instructions are longer.
846SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
847 if (!LegalOperations)
848 return SDValue();
849
850 EVT VT = Op.getValueType();
851 if (VT.isVector() || !VT.isInteger())
852 return SDValue();
853
854 // If operation type is 'undesirable', e.g. i16 on x86, consider
855 // promoting it.
856 unsigned Opc = Op.getOpcode();
857 if (TLI.isTypeDesirableForOp(Opc, VT))
858 return SDValue();
859
860 EVT PVT = VT;
861 // Consult target whether it is a good idea to promote this operation and
862 // what's the right type to promote it to.
863 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
864 assert(PVT != VT && "Don't know what type to promote to!");
865
Evan Cheng95c57ea2010-04-24 04:43:44 +0000866 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000867 SDValue N0 = Op.getOperand(0);
868 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000869 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000870 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000871 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000872 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000873 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000874 if (N0.getNode() == 0)
875 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000876
Evan Chenge5b51ac2010-04-17 06:13:15 +0000877 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000878 if (Replace)
879 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000880
Evan Chengac7eae52010-04-27 19:48:13 +0000881 DEBUG(dbgs() << "\nPromoting ";
882 Op.getNode()->dump(&DAG));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000883 DebugLoc dl = Op.getDebugLoc();
884 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000885 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000886 }
887 return SDValue();
888}
889
Evan Cheng4c26e932010-04-19 19:29:22 +0000890SDValue DAGCombiner::PromoteExtend(SDValue Op) {
891 if (!LegalOperations)
892 return SDValue();
893
894 EVT VT = Op.getValueType();
895 if (VT.isVector() || !VT.isInteger())
896 return SDValue();
897
898 // If operation type is 'undesirable', e.g. i16 on x86, consider
899 // promoting it.
900 unsigned Opc = Op.getOpcode();
901 if (TLI.isTypeDesirableForOp(Opc, VT))
902 return SDValue();
903
904 EVT PVT = VT;
905 // Consult target whether it is a good idea to promote this operation and
906 // what's the right type to promote it to.
907 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
908 assert(PVT != VT && "Don't know what type to promote to!");
909 // fold (aext (aext x)) -> (aext x)
910 // fold (aext (zext x)) -> (zext x)
911 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000912 DEBUG(dbgs() << "\nPromoting ";
913 Op.getNode()->dump(&DAG));
Evan Cheng4c26e932010-04-19 19:29:22 +0000914 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
915 }
916 return SDValue();
917}
918
919bool DAGCombiner::PromoteLoad(SDValue Op) {
920 if (!LegalOperations)
921 return false;
922
923 EVT VT = Op.getValueType();
924 if (VT.isVector() || !VT.isInteger())
925 return false;
926
927 // If operation type is 'undesirable', e.g. i16 on x86, consider
928 // promoting it.
929 unsigned Opc = Op.getOpcode();
930 if (TLI.isTypeDesirableForOp(Opc, VT))
931 return false;
932
933 EVT PVT = VT;
934 // Consult target whether it is a good idea to promote this operation and
935 // what's the right type to promote it to.
936 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
937 assert(PVT != VT && "Don't know what type to promote to!");
938
939 DebugLoc dl = Op.getDebugLoc();
940 SDNode *N = Op.getNode();
941 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000942 EVT MemVT = LD->getMemoryVT();
943 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000944 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000945 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000946 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000947 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000948 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000949 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000950 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000951 LD->isNonTemporal(), LD->getAlignment());
952 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
953
Evan Cheng95c57ea2010-04-24 04:43:44 +0000954 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000955 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000956 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000957 Result.getNode()->dump(&DAG);
958 dbgs() << '\n');
959 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000960 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
961 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
Evan Cheng4c26e932010-04-19 19:29:22 +0000962 removeFromWorkList(N);
963 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000964 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000965 return true;
966 }
967 return false;
968}
969
Evan Chenge5b51ac2010-04-17 06:13:15 +0000970
Chris Lattner29446522007-05-14 22:04:50 +0000971//===----------------------------------------------------------------------===//
972// Main DAG Combiner implementation
973//===----------------------------------------------------------------------===//
974
Duncan Sands25cf2272008-11-24 14:53:14 +0000975void DAGCombiner::Run(CombineLevel AtLevel) {
976 // set the instance variables, so that the various visit routines may use it.
977 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +0000978 LegalOperations = Level >= AfterLegalizeVectorOps;
979 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +0000980
Evan Cheng17a568b2008-08-29 22:21:44 +0000981 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +0000982 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
983 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +0000984 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +0000985
Evan Cheng17a568b2008-08-29 22:21:44 +0000986 // Create a dummy node (which is not added to allnodes), that adds a reference
987 // to the root node, preventing it from being deleted, and tracking any
988 // changes of the root.
989 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +0000990
Jim Laskey26f7fa72006-10-17 19:33:52 +0000991 // The root of the dag may dangle to deleted nodes until the dag combiner is
992 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +0000993 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +0000994
James Molloy6660c052012-02-16 09:17:04 +0000995 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +0000996 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +0000997 while (!WorkListContents.empty()) {
998 SDNode *N;
999 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1000 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1001 // worklist *should* contain, and check the node we want to visit is should
1002 // actually be visited.
1003 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001004 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001005 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001006
Evan Cheng17a568b2008-08-29 22:21:44 +00001007 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1008 // N is deleted from the DAG, since they too may now be dead or may have a
1009 // reduced number of uses, allowing other xforms.
1010 if (N->use_empty() && N != &Dummy) {
1011 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1012 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001013
Evan Cheng17a568b2008-08-29 22:21:44 +00001014 DAG.DeleteNode(N);
1015 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001016 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001017
Evan Cheng17a568b2008-08-29 22:21:44 +00001018 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001019
Evan Cheng17a568b2008-08-29 22:21:44 +00001020 if (RV.getNode() == 0)
1021 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001022
Evan Cheng17a568b2008-08-29 22:21:44 +00001023 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001024
Evan Cheng17a568b2008-08-29 22:21:44 +00001025 // If we get back the same node we passed in, rather than a new node or
1026 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001027 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001028 // mechanics for us, we have no work to do in this case.
1029 if (RV.getNode() == N)
1030 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001031
Evan Cheng17a568b2008-08-29 22:21:44 +00001032 assert(N->getOpcode() != ISD::DELETED_NODE &&
1033 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1034 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001035
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001036 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001037 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001038 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001039 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001040 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001041
Devang Patel9728ea22011-05-23 22:04:42 +00001042 // Transfer debug value.
1043 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001044 WorkListRemover DeadNodes(*this);
1045 if (N->getNumValues() == RV.getNode()->getNumValues())
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001046 DAG.ReplaceAllUsesWith(N, RV.getNode());
Evan Cheng17a568b2008-08-29 22:21:44 +00001047 else {
1048 assert(N->getValueType(0) == RV.getValueType() &&
1049 N->getNumValues() == 1 && "Type mismatch");
1050 SDValue OpV = RV;
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001051 DAG.ReplaceAllUsesWith(N, &OpV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001052 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001053
Evan Cheng17a568b2008-08-29 22:21:44 +00001054 // Push the new node and any users onto the worklist
1055 AddToWorkList(RV.getNode());
1056 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001057
Evan Cheng17a568b2008-08-29 22:21:44 +00001058 // Add any uses of the old node to the worklist in case this node is the
1059 // last one that uses them. They may become dead after this node is
1060 // deleted.
1061 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1062 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001063
Dan Gohmandbe664a2009-01-19 21:44:21 +00001064 // Finally, if the node is now dead, remove it from the graph. The node
1065 // may not be dead if the replacement process recursively simplified to
1066 // something else needing this node.
1067 if (N->use_empty()) {
1068 // Nodes can be reintroduced into the worklist. Make sure we do not
1069 // process a node that has been replaced.
1070 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001071
Dan Gohmandbe664a2009-01-19 21:44:21 +00001072 // Finally, since the node is now dead, remove it from the graph.
1073 DAG.DeleteNode(N);
1074 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001075 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001076
Chris Lattner95038592005-10-05 06:35:28 +00001077 // If the root changed (e.g. it was a dead load, update the root).
1078 DAG.setRoot(Dummy.getValue());
Hal Finkel31490ba2012-04-16 03:33:22 +00001079 DAG.RemoveDeadNodes();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001080}
1081
Dan Gohman475871a2008-07-27 21:46:04 +00001082SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001083 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001084 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001085 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001086 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001087 case ISD::ADD: return visitADD(N);
1088 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001089 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001090 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001091 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001092 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001093 case ISD::MUL: return visitMUL(N);
1094 case ISD::SDIV: return visitSDIV(N);
1095 case ISD::UDIV: return visitUDIV(N);
1096 case ISD::SREM: return visitSREM(N);
1097 case ISD::UREM: return visitUREM(N);
1098 case ISD::MULHU: return visitMULHU(N);
1099 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001100 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1101 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001102 case ISD::SMULO: return visitSMULO(N);
1103 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001104 case ISD::SDIVREM: return visitSDIVREM(N);
1105 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001106 case ISD::AND: return visitAND(N);
1107 case ISD::OR: return visitOR(N);
1108 case ISD::XOR: return visitXOR(N);
1109 case ISD::SHL: return visitSHL(N);
1110 case ISD::SRA: return visitSRA(N);
1111 case ISD::SRL: return visitSRL(N);
1112 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001113 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001114 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001115 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001116 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001117 case ISD::SELECT: return visitSELECT(N);
1118 case ISD::SELECT_CC: return visitSELECT_CC(N);
1119 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001120 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1121 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001122 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001123 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1124 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001125 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001126 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001127 case ISD::FADD: return visitFADD(N);
1128 case ISD::FSUB: return visitFSUB(N);
1129 case ISD::FMUL: return visitFMUL(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00001130 case ISD::FMA: return visitFMA(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001131 case ISD::FDIV: return visitFDIV(N);
1132 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001133 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001134 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1135 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1136 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1137 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1138 case ISD::FP_ROUND: return visitFP_ROUND(N);
1139 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1140 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1141 case ISD::FNEG: return visitFNEG(N);
1142 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001143 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001144 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001145 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001146 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001147 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001148 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001149 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1150 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001151 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001152 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001153 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001154 }
Dan Gohman475871a2008-07-27 21:46:04 +00001155 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001156}
1157
Dan Gohman475871a2008-07-27 21:46:04 +00001158SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001159 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001160
1161 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001162 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001163 assert(N->getOpcode() != ISD::DELETED_NODE &&
1164 "Node was deleted but visit returned NULL!");
1165
1166 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1167 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1168
1169 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001170 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001171 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001172
1173 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1174 }
1175 }
1176
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001177 // If nothing happened still, try promoting the operation.
1178 if (RV.getNode() == 0) {
1179 switch (N->getOpcode()) {
1180 default: break;
1181 case ISD::ADD:
1182 case ISD::SUB:
1183 case ISD::MUL:
1184 case ISD::AND:
1185 case ISD::OR:
1186 case ISD::XOR:
1187 RV = PromoteIntBinOp(SDValue(N, 0));
1188 break;
1189 case ISD::SHL:
1190 case ISD::SRA:
1191 case ISD::SRL:
1192 RV = PromoteIntShiftOp(SDValue(N, 0));
1193 break;
1194 case ISD::SIGN_EXTEND:
1195 case ISD::ZERO_EXTEND:
1196 case ISD::ANY_EXTEND:
1197 RV = PromoteExtend(SDValue(N, 0));
1198 break;
1199 case ISD::LOAD:
1200 if (PromoteLoad(SDValue(N, 0)))
1201 RV = SDValue(N, 0);
1202 break;
1203 }
1204 }
1205
Scott Michelfdc40a02009-02-17 22:15:04 +00001206 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001207 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001208 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001209 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1210 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001211 SDValue N0 = N->getOperand(0);
1212 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001213
Evan Cheng08b11732008-03-22 01:55:50 +00001214 // Constant operands are canonicalized to RHS.
1215 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001216 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001217 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1218 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001219 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001220 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001221 }
1222 }
1223
Dan Gohman389079b2007-10-08 17:57:15 +00001224 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001225}
Dan Gohman389079b2007-10-08 17:57:15 +00001226
Chris Lattner6270f682006-10-08 22:57:01 +00001227/// getInputChainForNode - Given a node, return its input chain if it has one,
1228/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001229static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001230 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001231 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001232 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001233 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001234 return N->getOperand(NumOps-1);
1235 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001236 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001237 return N->getOperand(i);
1238 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001239 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001240}
1241
Dan Gohman475871a2008-07-27 21:46:04 +00001242SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001243 // If N has two operands, where one has an input chain equal to the other,
1244 // the 'other' chain is redundant.
1245 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001246 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001247 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001248 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001249 return N->getOperand(1);
1250 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001251
Chris Lattnerc76d4412007-05-16 06:37:59 +00001252 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001253 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001254 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001255 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001256
Jim Laskey6ff23e52006-10-04 16:53:27 +00001257 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001258 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001259
Jim Laskey71382342006-10-07 23:37:56 +00001260 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001261 // encountered.
1262 for (unsigned i = 0; i < TFs.size(); ++i) {
1263 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001264
Jim Laskey6ff23e52006-10-04 16:53:27 +00001265 // Check each of the operands.
1266 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001267 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001268
Jim Laskey6ff23e52006-10-04 16:53:27 +00001269 switch (Op.getOpcode()) {
1270 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001271 // Entry tokens don't need to be added to the list. They are
1272 // rededundant.
1273 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001274 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001275
Jim Laskey6ff23e52006-10-04 16:53:27 +00001276 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001277 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001278 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001279 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001280 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001281 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001282 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001283 Changed = true;
1284 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001285 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001286 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001287
Jim Laskey6ff23e52006-10-04 16:53:27 +00001288 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001289 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001290 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001291 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001292 else
1293 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001294 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001295 }
1296 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001297 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001298
Dan Gohman475871a2008-07-27 21:46:04 +00001299 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001300
1301 // If we've change things around then replace token factor.
1302 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001303 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001304 // The entry token is the only possible outcome.
1305 Result = DAG.getEntryNode();
1306 } else {
1307 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001308 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001309 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001310 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001311
Jim Laskey274062c2006-10-13 23:32:28 +00001312 // Don't add users to work list.
1313 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001314 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001315
Jim Laskey6ff23e52006-10-04 16:53:27 +00001316 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001317}
1318
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001319/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001320SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001321 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001322 // Replacing results may cause a different MERGE_VALUES to suddenly
1323 // be CSE'd with N, and carry its uses with it. Iterate until no
1324 // uses remain, to ensure that the node can be safely deleted.
1325 do {
1326 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001327 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
Dan Gohman00edf392009-08-10 23:43:19 +00001328 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001329 removeFromWorkList(N);
1330 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001331 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001332}
1333
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001334static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001335SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1336 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001337 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001338 SDValue N00 = N0.getOperand(0);
1339 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001340 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001341
Gabor Greifba36cb52008-08-28 21:40:38 +00001342 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001343 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001344 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1345 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1346 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1347 N00.getOperand(0), N01),
1348 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1349 N00.getOperand(1), N01));
1350 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001351 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001352
Dan Gohman475871a2008-07-27 21:46:04 +00001353 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001354}
1355
Dan Gohman475871a2008-07-27 21:46:04 +00001356SDValue DAGCombiner::visitADD(SDNode *N) {
1357 SDValue N0 = N->getOperand(0);
1358 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001359 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1360 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001361 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001362
1363 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001364 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001365 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001366 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001367 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001368
Dan Gohman613e0d82007-07-03 14:03:57 +00001369 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001370 if (N0.getOpcode() == ISD::UNDEF)
1371 return N0;
1372 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001373 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001374 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001375 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001376 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001377 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001378 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001379 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001380 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001381 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001382 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001383 // fold (add Sym, c) -> Sym+c
1384 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001385 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001386 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001387 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001388 GA->getOffset() +
1389 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001390 // fold ((c1-A)+c2) -> (c1+c2)-A
1391 if (N1C && N0.getOpcode() == ISD::SUB)
1392 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001393 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001394 DAG.getConstant(N1C->getAPIntValue()+
1395 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001396 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001397 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001398 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001399 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001400 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001401 // fold ((0-A) + B) -> B-A
1402 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1403 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001404 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001405 // fold (A + (0-B)) -> A-B
1406 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1407 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001408 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001409 // fold (A+(B-A)) -> B
1410 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001411 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001412 // fold ((B-A)+A) -> B
1413 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1414 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001415 // fold (A+(B-(A+C))) to (B-C)
1416 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001417 N0 == N1.getOperand(1).getOperand(0))
1418 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001419 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001420 // fold (A+(B-(C+A))) to (B-C)
1421 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001422 N0 == N1.getOperand(1).getOperand(1))
1423 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001424 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001425 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001426 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1427 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001428 N0 == N1.getOperand(0).getOperand(1))
1429 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1430 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001431
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001432 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1433 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1434 SDValue N00 = N0.getOperand(0);
1435 SDValue N01 = N0.getOperand(1);
1436 SDValue N10 = N1.getOperand(0);
1437 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001438
1439 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1440 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1441 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1442 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001443 }
Chris Lattner947c2892006-03-13 06:51:27 +00001444
Dan Gohman475871a2008-07-27 21:46:04 +00001445 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1446 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001447
Chris Lattner947c2892006-03-13 06:51:27 +00001448 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001449 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001450 APInt LHSZero, LHSOne;
1451 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001452 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001453
Dan Gohman948d8ea2008-02-20 16:33:30 +00001454 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001455 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001456
Chris Lattner947c2892006-03-13 06:51:27 +00001457 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1458 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001459 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001460 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001461 }
1462 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001463
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001464 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001465 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001466 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001467 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001468 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001469 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001470 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001471 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001472 }
1473
Dan Gohmancd9e1552010-01-19 23:30:49 +00001474 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1475 if (N1.getOpcode() == ISD::SHL &&
1476 N1.getOperand(0).getOpcode() == ISD::SUB)
1477 if (ConstantSDNode *C =
1478 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1479 if (C->getAPIntValue() == 0)
1480 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1481 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1482 N1.getOperand(0).getOperand(1),
1483 N1.getOperand(1)));
1484 if (N0.getOpcode() == ISD::SHL &&
1485 N0.getOperand(0).getOpcode() == ISD::SUB)
1486 if (ConstantSDNode *C =
1487 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1488 if (C->getAPIntValue() == 0)
1489 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1490 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1491 N0.getOperand(0).getOperand(1),
1492 N0.getOperand(1)));
1493
Owen Andersonbc146b02010-09-21 20:42:50 +00001494 if (N1.getOpcode() == ISD::AND) {
1495 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001496 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001497 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1498 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001499
Owen Andersonbc146b02010-09-21 20:42:50 +00001500 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1501 // and similar xforms where the inner op is either ~0 or 0.
1502 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1503 DebugLoc DL = N->getDebugLoc();
1504 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1505 }
1506 }
1507
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001508 // add (sext i1), X -> sub X, (zext i1)
1509 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1510 N0.getOperand(0).getValueType() == MVT::i1 &&
1511 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1512 DebugLoc DL = N->getDebugLoc();
1513 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1514 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1515 }
1516
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001517 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001518}
1519
Dan Gohman475871a2008-07-27 21:46:04 +00001520SDValue DAGCombiner::visitADDC(SDNode *N) {
1521 SDValue N0 = N->getOperand(0);
1522 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001523 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1524 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001525 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001526
Chris Lattner91153682007-03-04 20:03:15 +00001527 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001528 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001529 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001530 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001531 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001532
Chris Lattner91153682007-03-04 20:03:15 +00001533 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001534 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001535 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001536
Chris Lattnerb6541762007-03-04 20:40:38 +00001537 // fold (addc x, 0) -> x + no carry out
1538 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001539 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001540 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001541
Dale Johannesen874ae252009-06-02 03:12:52 +00001542 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001543 APInt LHSZero, LHSOne;
1544 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001545 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001546
Dan Gohman948d8ea2008-02-20 16:33:30 +00001547 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001548 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001549
Chris Lattnerb6541762007-03-04 20:40:38 +00001550 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1551 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001552 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendling14036c02009-01-30 02:38:00 +00001553 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001554 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001555 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001556 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001557
Dan Gohman475871a2008-07-27 21:46:04 +00001558 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001559}
1560
Dan Gohman475871a2008-07-27 21:46:04 +00001561SDValue DAGCombiner::visitADDE(SDNode *N) {
1562 SDValue N0 = N->getOperand(0);
1563 SDValue N1 = N->getOperand(1);
1564 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001565 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1566 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001567
Chris Lattner91153682007-03-04 20:03:15 +00001568 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001569 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001570 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1571 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001572
Chris Lattnerb6541762007-03-04 20:40:38 +00001573 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001574 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001575 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001576
Dan Gohman475871a2008-07-27 21:46:04 +00001577 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001578}
1579
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001580// Since it may not be valid to emit a fold to zero for vector initializers
1581// check if we can before folding.
1582static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001583 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001584 if (!VT.isVector()) {
1585 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001586 }
1587 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001588 // Produce a vector of zeros.
1589 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1590 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1591 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1592 &Ops[0], Ops.size());
1593 }
1594 return SDValue();
1595}
1596
Dan Gohman475871a2008-07-27 21:46:04 +00001597SDValue DAGCombiner::visitSUB(SDNode *N) {
1598 SDValue N0 = N->getOperand(0);
1599 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001600 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1601 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001602 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1603 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001604 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001605
Dan Gohman7f321562007-06-25 16:23:39 +00001606 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001607 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001608 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001609 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001610 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001611
Chris Lattner854077d2005-10-17 01:07:11 +00001612 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001613 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001614 if (N0 == N1)
1615 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001616 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001617 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001618 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001619 // fold (sub x, c) -> (add x, -c)
1620 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001621 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001622 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001623 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1624 if (N0C && N0C->isAllOnesValue())
1625 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001626 // fold A-(A-B) -> B
1627 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1628 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001629 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001630 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001631 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001632 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001633 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001634 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001635 // fold C2-(A+C1) -> (C2-C1)-A
1636 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
1637 SDValue NewC = DAG.getConstant((N0C->getAPIntValue() - N1C1->getAPIntValue()), VT);
1638 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
1639 N1.getOperand(0));
1640 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001641 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001642 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001643 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1644 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001645 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001646 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1647 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001648 // fold ((A+(C+B))-B) -> A+C
1649 if (N0.getOpcode() == ISD::ADD &&
1650 N0.getOperand(1).getOpcode() == ISD::ADD &&
1651 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001652 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1653 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001654 // fold ((A-(B-C))-C) -> A-B
1655 if (N0.getOpcode() == ISD::SUB &&
1656 N0.getOperand(1).getOpcode() == ISD::SUB &&
1657 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001658 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1659 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001660
Dan Gohman613e0d82007-07-03 14:03:57 +00001661 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001662 if (N0.getOpcode() == ISD::UNDEF)
1663 return N0;
1664 if (N1.getOpcode() == ISD::UNDEF)
1665 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001666
Dan Gohman6520e202008-10-18 02:06:02 +00001667 // If the relocation model supports it, consider symbol offsets.
1668 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001669 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001670 // fold (sub Sym, c) -> Sym-c
1671 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001672 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001673 GA->getOffset() -
1674 (uint64_t)N1C->getSExtValue());
1675 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1676 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1677 if (GA->getGlobal() == GB->getGlobal())
1678 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1679 VT);
1680 }
1681
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001682 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001683}
1684
Craig Toppercc274522012-01-07 09:06:39 +00001685SDValue DAGCombiner::visitSUBC(SDNode *N) {
1686 SDValue N0 = N->getOperand(0);
1687 SDValue N1 = N->getOperand(1);
1688 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1689 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1690 EVT VT = N0.getValueType();
1691
1692 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001693 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001694 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1695 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1696 MVT::Glue));
1697
1698 // fold (subc x, x) -> 0 + no borrow
1699 if (N0 == N1)
1700 return CombineTo(N, DAG.getConstant(0, VT),
1701 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1702 MVT::Glue));
1703
1704 // fold (subc x, 0) -> x + no borrow
1705 if (N1C && N1C->isNullValue())
1706 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1707 MVT::Glue));
1708
1709 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1710 if (N0C && N0C->isAllOnesValue())
1711 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1712 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1713 MVT::Glue));
1714
1715 return SDValue();
1716}
1717
1718SDValue DAGCombiner::visitSUBE(SDNode *N) {
1719 SDValue N0 = N->getOperand(0);
1720 SDValue N1 = N->getOperand(1);
1721 SDValue CarryIn = N->getOperand(2);
1722
1723 // fold (sube x, y, false) -> (subc x, y)
1724 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1725 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1726
1727 return SDValue();
1728}
1729
Dan Gohman475871a2008-07-27 21:46:04 +00001730SDValue DAGCombiner::visitMUL(SDNode *N) {
1731 SDValue N0 = N->getOperand(0);
1732 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001733 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1734 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001735 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001736
Dan Gohman7f321562007-06-25 16:23:39 +00001737 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001738 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001739 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001740 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001741 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001742
Dan Gohman613e0d82007-07-03 14:03:57 +00001743 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001744 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001745 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001746 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001747 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001748 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001749 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001750 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001751 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001752 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001753 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001754 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001755 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001756 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001757 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1758 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001759 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001760 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001761 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001762 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001763 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001764 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001765 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1766 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001767 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001768 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001769 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1770 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001771 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001772 DAG.getConstant(Log2Val,
1773 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001774 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001775 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001776 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001777 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001778 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1779 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001780 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001781 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1782 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001783 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001784
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001785 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1786 // use.
1787 {
Dan Gohman475871a2008-07-27 21:46:04 +00001788 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001789 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1790 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001791 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001792 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001793 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001794 isa<ConstantSDNode>(N1.getOperand(1)) &&
1795 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001796 Sh = N1; Y = N0;
1797 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001798
Gabor Greifba36cb52008-08-28 21:40:38 +00001799 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001800 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1801 Sh.getOperand(0), Y);
1802 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1803 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001804 }
1805 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001806
Chris Lattnera1deca32006-03-04 23:33:26 +00001807 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001808 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001809 isa<ConstantSDNode>(N0.getOperand(1)))
1810 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1811 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1812 N0.getOperand(0), N1),
1813 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1814 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001815
Nate Begemancd4d58c2006-02-03 06:46:56 +00001816 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001817 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001818 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001819 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001820
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001821 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001822}
1823
Dan Gohman475871a2008-07-27 21:46:04 +00001824SDValue DAGCombiner::visitSDIV(SDNode *N) {
1825 SDValue N0 = N->getOperand(0);
1826 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001827 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1828 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001829 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001830
Dan Gohman7f321562007-06-25 16:23:39 +00001831 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001832 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001833 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001834 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001835 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001836
Nate Begeman1d4d4142005-09-01 00:19:25 +00001837 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001838 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001839 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001840 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001841 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001842 return N0;
1843 // fold (sdiv X, -1) -> 0-X
1844 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001845 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1846 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001847 // If we know the sign bits of both operands are zero, strength reduce to a
1848 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001849 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001850 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001851 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1852 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001853 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001854 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001855 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001856 (N1C->getAPIntValue().isPowerOf2() ||
1857 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001858 // If dividing by powers of two is cheap, then don't perform the following
1859 // fold.
1860 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001861 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001862
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001863 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001864
Chris Lattner8f4880b2006-02-16 08:02:36 +00001865 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001866 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1867 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001868 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001869 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001870
Chris Lattner8f4880b2006-02-16 08:02:36 +00001871 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001872 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1873 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001874 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001875 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001876 AddToWorkList(SRL.getNode());
1877 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001878 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001879 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001880
Nate Begeman405e3ec2005-10-21 00:02:42 +00001881 // If we're dividing by a positive value, we're done. Otherwise, we must
1882 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001883 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001884 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001885
Gabor Greifba36cb52008-08-28 21:40:38 +00001886 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001887 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1888 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001889 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001890
Nate Begeman69575232005-10-20 02:15:44 +00001891 // if integer divide is expensive and we satisfy the requirements, emit an
1892 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001893 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001894 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001895 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001896 }
Dan Gohman7f321562007-06-25 16:23:39 +00001897
Dan Gohman613e0d82007-07-03 14:03:57 +00001898 // undef / X -> 0
1899 if (N0.getOpcode() == ISD::UNDEF)
1900 return DAG.getConstant(0, VT);
1901 // X / undef -> undef
1902 if (N1.getOpcode() == ISD::UNDEF)
1903 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001904
Dan Gohman475871a2008-07-27 21:46:04 +00001905 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001906}
1907
Dan Gohman475871a2008-07-27 21:46:04 +00001908SDValue DAGCombiner::visitUDIV(SDNode *N) {
1909 SDValue N0 = N->getOperand(0);
1910 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001911 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1912 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001913 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001914
Dan Gohman7f321562007-06-25 16:23:39 +00001915 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001916 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001917 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001918 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001919 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001920
Nate Begeman1d4d4142005-09-01 00:19:25 +00001921 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001922 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001923 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001924 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001925 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001926 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001927 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001928 getShiftAmountTy(N0.getValueType())));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001929 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1930 if (N1.getOpcode() == ISD::SHL) {
1931 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001932 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001933 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001934 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1935 N1.getOperand(1),
1936 DAG.getConstant(SHC->getAPIntValue()
1937 .logBase2(),
1938 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001939 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001940 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001941 }
1942 }
1943 }
Nate Begeman69575232005-10-20 02:15:44 +00001944 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001945 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001946 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001947 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001948 }
Dan Gohman7f321562007-06-25 16:23:39 +00001949
Dan Gohman613e0d82007-07-03 14:03:57 +00001950 // undef / X -> 0
1951 if (N0.getOpcode() == ISD::UNDEF)
1952 return DAG.getConstant(0, VT);
1953 // X / undef -> undef
1954 if (N1.getOpcode() == ISD::UNDEF)
1955 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001956
Dan Gohman475871a2008-07-27 21:46:04 +00001957 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001958}
1959
Dan Gohman475871a2008-07-27 21:46:04 +00001960SDValue DAGCombiner::visitSREM(SDNode *N) {
1961 SDValue N0 = N->getOperand(0);
1962 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001963 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1964 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001965 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001966
Nate Begeman1d4d4142005-09-01 00:19:25 +00001967 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001968 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001969 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001970 // If we know the sign bits of both operands are zero, strength reduce to a
1971 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001972 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001973 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001974 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00001975 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001976
Dan Gohman77003042007-11-26 23:46:11 +00001977 // If X/C can be simplified by the division-by-constant logic, lower
1978 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001979 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001980 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001981 AddToWorkList(Div.getNode());
1982 SDValue OptimizedDiv = combine(Div.getNode());
1983 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001984 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1985 OptimizedDiv, N1);
1986 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00001987 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00001988 return Sub;
1989 }
Chris Lattner26d29902006-10-12 20:58:32 +00001990 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001991
Dan Gohman613e0d82007-07-03 14:03:57 +00001992 // undef % X -> 0
1993 if (N0.getOpcode() == ISD::UNDEF)
1994 return DAG.getConstant(0, VT);
1995 // X % undef -> undef
1996 if (N1.getOpcode() == ISD::UNDEF)
1997 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001998
Dan Gohman475871a2008-07-27 21:46:04 +00001999 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002000}
2001
Dan Gohman475871a2008-07-27 21:46:04 +00002002SDValue DAGCombiner::visitUREM(SDNode *N) {
2003 SDValue N0 = N->getOperand(0);
2004 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002005 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2006 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002007 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002008
Nate Begeman1d4d4142005-09-01 00:19:25 +00002009 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002010 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002011 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002012 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002013 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002014 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002015 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002016 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2017 if (N1.getOpcode() == ISD::SHL) {
2018 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002019 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002020 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002021 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002022 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002023 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002024 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002025 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002026 }
2027 }
2028 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002029
Dan Gohman77003042007-11-26 23:46:11 +00002030 // If X/C can be simplified by the division-by-constant logic, lower
2031 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002032 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002033 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002034 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002035 SDValue OptimizedDiv = combine(Div.getNode());
2036 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002037 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2038 OptimizedDiv, N1);
2039 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002040 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002041 return Sub;
2042 }
Chris Lattner26d29902006-10-12 20:58:32 +00002043 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002044
Dan Gohman613e0d82007-07-03 14:03:57 +00002045 // undef % X -> 0
2046 if (N0.getOpcode() == ISD::UNDEF)
2047 return DAG.getConstant(0, VT);
2048 // X % undef -> undef
2049 if (N1.getOpcode() == ISD::UNDEF)
2050 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002051
Dan Gohman475871a2008-07-27 21:46:04 +00002052 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002053}
2054
Dan Gohman475871a2008-07-27 21:46:04 +00002055SDValue DAGCombiner::visitMULHS(SDNode *N) {
2056 SDValue N0 = N->getOperand(0);
2057 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002058 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002059 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002060 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002061
Nate Begeman1d4d4142005-09-01 00:19:25 +00002062 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002063 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002064 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002065 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002066 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002067 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2068 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002069 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002070 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002071 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002072 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002073
Chris Lattnerde1c3602010-12-13 08:39:01 +00002074 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2075 // plus a shift.
2076 if (VT.isSimple() && !VT.isVector()) {
2077 MVT Simple = VT.getSimpleVT();
2078 unsigned SimpleSize = Simple.getSizeInBits();
2079 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2080 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2081 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2082 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2083 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002084 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002085 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002086 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2087 }
2088 }
Owen Anderson95771af2011-02-25 21:41:48 +00002089
Dan Gohman475871a2008-07-27 21:46:04 +00002090 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002091}
2092
Dan Gohman475871a2008-07-27 21:46:04 +00002093SDValue DAGCombiner::visitMULHU(SDNode *N) {
2094 SDValue N0 = N->getOperand(0);
2095 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002096 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002097 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002098 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002099
Nate Begeman1d4d4142005-09-01 00:19:25 +00002100 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002101 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002102 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002103 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002104 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002105 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002106 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002107 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002108 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002109
Chris Lattnerde1c3602010-12-13 08:39:01 +00002110 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2111 // plus a shift.
2112 if (VT.isSimple() && !VT.isVector()) {
2113 MVT Simple = VT.getSimpleVT();
2114 unsigned SimpleSize = Simple.getSizeInBits();
2115 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2116 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2117 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2118 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2119 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2120 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002121 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002122 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2123 }
2124 }
Owen Anderson95771af2011-02-25 21:41:48 +00002125
Dan Gohman475871a2008-07-27 21:46:04 +00002126 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002127}
2128
Dan Gohman389079b2007-10-08 17:57:15 +00002129/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2130/// compute two values. LoOp and HiOp give the opcodes for the two computations
2131/// that are being performed. Return true if a simplification was made.
2132///
Scott Michelfdc40a02009-02-17 22:15:04 +00002133SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002134 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002135 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002136 bool HiExists = N->hasAnyUseOfValue(1);
2137 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002138 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002139 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002140 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2141 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002142 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002143 }
2144
2145 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002146 bool LoExists = N->hasAnyUseOfValue(0);
2147 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002148 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002149 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002150 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2151 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002152 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002153 }
2154
Evan Cheng44711942007-11-08 09:25:29 +00002155 // If both halves are used, return as it is.
2156 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002157 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002158
2159 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002160 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002161 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2162 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002163 AddToWorkList(Lo.getNode());
2164 SDValue LoOpt = combine(Lo.getNode());
2165 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002166 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002167 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002168 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002169 }
2170
Evan Cheng44711942007-11-08 09:25:29 +00002171 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002172 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002173 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002174 AddToWorkList(Hi.getNode());
2175 SDValue HiOpt = combine(Hi.getNode());
2176 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002177 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002178 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002179 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002180 }
Bill Wendling826d1142009-01-30 03:08:40 +00002181
Dan Gohman475871a2008-07-27 21:46:04 +00002182 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002183}
2184
Dan Gohman475871a2008-07-27 21:46:04 +00002185SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2186 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002187 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002188
Chris Lattner33e77d32010-12-15 06:04:19 +00002189 EVT VT = N->getValueType(0);
2190 DebugLoc DL = N->getDebugLoc();
2191
2192 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2193 // plus a shift.
2194 if (VT.isSimple() && !VT.isVector()) {
2195 MVT Simple = VT.getSimpleVT();
2196 unsigned SimpleSize = Simple.getSizeInBits();
2197 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2198 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2199 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2200 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2201 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2202 // Compute the high part as N1.
2203 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002204 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002205 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2206 // Compute the low part as N0.
2207 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2208 return CombineTo(N, Lo, Hi);
2209 }
2210 }
Owen Anderson95771af2011-02-25 21:41:48 +00002211
Dan Gohman475871a2008-07-27 21:46:04 +00002212 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002213}
2214
Dan Gohman475871a2008-07-27 21:46:04 +00002215SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2216 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002217 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002218
Chris Lattner33e77d32010-12-15 06:04:19 +00002219 EVT VT = N->getValueType(0);
2220 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002221
Chris Lattner33e77d32010-12-15 06:04:19 +00002222 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2223 // plus a shift.
2224 if (VT.isSimple() && !VT.isVector()) {
2225 MVT Simple = VT.getSimpleVT();
2226 unsigned SimpleSize = Simple.getSizeInBits();
2227 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2228 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2229 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2230 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2231 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2232 // Compute the high part as N1.
2233 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002234 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002235 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2236 // Compute the low part as N0.
2237 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2238 return CombineTo(N, Lo, Hi);
2239 }
2240 }
Owen Anderson95771af2011-02-25 21:41:48 +00002241
Dan Gohman475871a2008-07-27 21:46:04 +00002242 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002243}
2244
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002245SDValue DAGCombiner::visitSMULO(SDNode *N) {
2246 // (smulo x, 2) -> (saddo x, x)
2247 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2248 if (C2->getAPIntValue() == 2)
2249 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2250 N->getOperand(0), N->getOperand(0));
2251
2252 return SDValue();
2253}
2254
2255SDValue DAGCombiner::visitUMULO(SDNode *N) {
2256 // (umulo x, 2) -> (uaddo x, x)
2257 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2258 if (C2->getAPIntValue() == 2)
2259 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2260 N->getOperand(0), N->getOperand(0));
2261
2262 return SDValue();
2263}
2264
Dan Gohman475871a2008-07-27 21:46:04 +00002265SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2266 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002267 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002268
Dan Gohman475871a2008-07-27 21:46:04 +00002269 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002270}
2271
Dan Gohman475871a2008-07-27 21:46:04 +00002272SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2273 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002274 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002275
Dan Gohman475871a2008-07-27 21:46:04 +00002276 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002277}
2278
Chris Lattner35e5c142006-05-05 05:51:50 +00002279/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2280/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002281SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2282 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002283 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002284 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002285
Dan Gohmanff00a552010-01-14 03:08:49 +00002286 // Bail early if none of these transforms apply.
2287 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2288
Chris Lattner540121f2006-05-05 06:31:05 +00002289 // For each of OP in AND/OR/XOR:
2290 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2291 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2292 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002293 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002294 //
2295 // do not sink logical op inside of a vector extend, since it may combine
2296 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002297 EVT Op0VT = N0.getOperand(0).getValueType();
2298 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002299 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002300 // Avoid infinite looping with PromoteIntBinOp.
2301 (N0.getOpcode() == ISD::ANY_EXTEND &&
2302 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002303 (N0.getOpcode() == ISD::TRUNCATE &&
2304 (!TLI.isZExtFree(VT, Op0VT) ||
2305 !TLI.isTruncateFree(Op0VT, VT)) &&
2306 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002307 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002308 Op0VT == N1.getOperand(0).getValueType() &&
2309 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002310 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2311 N0.getOperand(0).getValueType(),
2312 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002313 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002314 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002315 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002316
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002317 // For each of OP in SHL/SRL/SRA/AND...
2318 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2319 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2320 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002321 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002322 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002323 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002324 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2325 N0.getOperand(0).getValueType(),
2326 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002327 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002328 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2329 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002330 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002331
Nadav Rotem4ac90812012-04-01 19:31:22 +00002332 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2333 // Only perform this optimization after type legalization and before
2334 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2335 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2336 // we don't want to undo this promotion.
2337 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2338 // on scalars.
2339 if ((N0.getOpcode() == ISD::BITCAST || N0.getOpcode() == ISD::SCALAR_TO_VECTOR)
2340 && Level == AfterLegalizeVectorOps) {
2341 SDValue In0 = N0.getOperand(0);
2342 SDValue In1 = N1.getOperand(0);
2343 EVT In0Ty = In0.getValueType();
2344 EVT In1Ty = In1.getValueType();
2345 // If both incoming values are integers, and the original types are the same.
2346 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
2347 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), In0Ty, In0, In1);
2348 SDValue BC = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, Op);
2349 AddToWorkList(Op.getNode());
2350 return BC;
2351 }
2352 }
2353
2354 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2355 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2356 // If both shuffles use the same mask, and both shuffle within a single
2357 // vector, then it is worthwhile to move the swizzle after the operation.
2358 // The type-legalizer generates this pattern when loading illegal
2359 // vector types from memory. In many cases this allows additional shuffle
2360 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002361 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2362 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2363 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002364 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2365 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002366
2367 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2368 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002369
2370 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002371
2372 // Check that both shuffles use the same mask. The masks are known to be of
2373 // the same length because the result vector type is the same.
2374 bool SameMask = true;
2375 for (unsigned i = 0; i != NumElts; ++i) {
2376 int Idx0 = SVN0->getMaskElt(i);
2377 int Idx1 = SVN1->getMaskElt(i);
2378 if (Idx0 != Idx1) {
2379 SameMask = false;
2380 break;
2381 }
2382 }
2383
Craig Topperf9204232012-04-09 07:19:09 +00002384 if (SameMask) {
2385 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT,
2386 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002387 AddToWorkList(Op.getNode());
Craig Topperf9204232012-04-09 07:19:09 +00002388 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op,
2389 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002390 }
2391 }
Craig Topperf9204232012-04-09 07:19:09 +00002392
Dan Gohman475871a2008-07-27 21:46:04 +00002393 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002394}
2395
Dan Gohman475871a2008-07-27 21:46:04 +00002396SDValue DAGCombiner::visitAND(SDNode *N) {
2397 SDValue N0 = N->getOperand(0);
2398 SDValue N1 = N->getOperand(1);
2399 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002400 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2401 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002402 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002403 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002404
Dan Gohman7f321562007-06-25 16:23:39 +00002405 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002406 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002407 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002408 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002409 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002410
Dan Gohman613e0d82007-07-03 14:03:57 +00002411 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002412 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002413 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002414 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002415 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002416 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002417 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002418 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002419 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002420 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002421 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002422 return N0;
2423 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002424 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002425 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002426 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002427 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002428 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002429 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002430 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002431 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002432 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002433 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002434 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002435 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002436 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2437 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002438 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002439 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002440 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002441 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002442 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2443 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002444
Chris Lattner1ec05d12006-03-01 21:47:21 +00002445 // Replace uses of the AND with uses of the Zero extend node.
2446 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002447
Chris Lattner3603cd62006-02-02 07:17:31 +00002448 // We actually want to replace all uses of the any_extend with the
2449 // zero_extend, to avoid duplicating things. This will later cause this
2450 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002451 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002452 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002453 }
2454 }
James Molloy6259dcd2012-02-20 12:02:38 +00002455 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2456 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2457 // already be zero by virtue of the width of the base type of the load.
2458 //
2459 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2460 // more cases.
2461 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2462 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2463 N0.getOpcode() == ISD::LOAD) {
2464 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2465 N0 : N0.getOperand(0) );
2466
2467 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2468 // This can be a pure constant or a vector splat, in which case we treat the
2469 // vector as a scalar and use the splat value.
2470 APInt Constant = APInt::getNullValue(1);
2471 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2472 Constant = C->getAPIntValue();
2473 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2474 APInt SplatValue, SplatUndef;
2475 unsigned SplatBitSize;
2476 bool HasAnyUndefs;
2477 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2478 SplatBitSize, HasAnyUndefs);
2479 if (IsSplat) {
2480 // Undef bits can contribute to a possible optimisation if set, so
2481 // set them.
2482 SplatValue |= SplatUndef;
2483
2484 // The splat value may be something like "0x00FFFFFF", which means 0 for
2485 // the first vector value and FF for the rest, repeating. We need a mask
2486 // that will apply equally to all members of the vector, so AND all the
2487 // lanes of the constant together.
2488 EVT VT = Vector->getValueType(0);
2489 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
2490 Constant = APInt::getAllOnesValue(BitWidth);
2491 for (unsigned i = 0, n = VT.getVectorNumElements(); i < n; ++i)
2492 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2493 }
2494 }
2495
2496 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2497 // actually legal and isn't going to get expanded, else this is a false
2498 // optimisation.
2499 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2500 Load->getMemoryVT());
2501
2502 // Resize the constant to the same size as the original memory access before
2503 // extension. If it is still the AllOnesValue then this AND is completely
2504 // unneeded.
2505 Constant =
2506 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2507
2508 bool B;
2509 switch (Load->getExtensionType()) {
2510 default: B = false; break;
2511 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2512 case ISD::ZEXTLOAD:
2513 case ISD::NON_EXTLOAD: B = true; break;
2514 }
2515
2516 if (B && Constant.isAllOnesValue()) {
2517 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2518 // preserve semantics once we get rid of the AND.
2519 SDValue NewLoad(Load, 0);
2520 if (Load->getExtensionType() == ISD::EXTLOAD) {
2521 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2522 Load->getValueType(0), Load->getDebugLoc(),
2523 Load->getChain(), Load->getBasePtr(),
2524 Load->getOffset(), Load->getMemoryVT(),
2525 Load->getMemOperand());
2526 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
2527 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2528 }
2529
2530 // Fold the AND away, taking care not to fold to the old load node if we
2531 // replaced it.
2532 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2533
2534 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2535 }
2536 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002537 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2538 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2539 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2540 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002541
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002542 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002543 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002544 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002545 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002546 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2547 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002548 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002549 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002550 }
Bill Wendling2627a882009-01-30 20:43:18 +00002551 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002552 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002553 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2554 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002555 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002556 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002557 }
Bill Wendling2627a882009-01-30 20:43:18 +00002558 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002559 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002560 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2561 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002562 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002563 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002564 }
2565 }
2566 // canonicalize equivalent to ll == rl
2567 if (LL == RR && LR == RL) {
2568 Op1 = ISD::getSetCCSwappedOperands(Op1);
2569 std::swap(RL, RR);
2570 }
2571 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002572 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002573 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002574 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002575 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002576 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2577 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002578 }
2579 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002580
Bill Wendling2627a882009-01-30 20:43:18 +00002581 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002582 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002583 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002584 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002585 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002586
Nate Begemande996292006-02-03 22:24:05 +00002587 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2588 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002589 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002590 SimplifyDemandedBits(SDValue(N, 0)))
2591 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002592
Nate Begemanded49632005-10-13 03:11:28 +00002593 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002594 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002595 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002596 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002597 // If we zero all the possible extended bits, then we can turn this into
2598 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002599 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002600 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002601 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002602 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002603 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002604 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002605 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002606 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002607 LN0->isVolatile(), LN0->isNonTemporal(),
2608 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002609 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002610 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002611 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002612 }
2613 }
2614 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002615 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002616 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002617 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002618 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002619 // If we zero all the possible extended bits, then we can turn this into
2620 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002621 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002622 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002623 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002624 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002625 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002626 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002627 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002628 LN0->getBasePtr(), LN0->getPointerInfo(),
2629 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002630 LN0->isVolatile(), LN0->isNonTemporal(),
2631 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002632 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002633 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002634 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002635 }
2636 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002637
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002638 // fold (and (load x), 255) -> (zextload x, i8)
2639 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002640 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2641 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2642 (N0.getOpcode() == ISD::ANY_EXTEND &&
2643 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2644 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2645 LoadSDNode *LN0 = HasAnyExt
2646 ? cast<LoadSDNode>(N0.getOperand(0))
2647 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002648 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002649 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002650 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002651 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2652 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2653 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002654
Evan Chengd40d03e2010-01-06 19:38:29 +00002655 if (ExtVT == LoadedVT &&
2656 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002657 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002658
2659 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002660 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002661 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002662 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002663 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2664 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002665 AddToWorkList(N);
2666 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2667 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2668 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002669
Chris Lattneref7634c2010-01-07 21:53:27 +00002670 // Do not change the width of a volatile load.
2671 // Do not generate loads of non-round integer types since these can
2672 // be expensive (and would be wrong if the type is not byte sized).
2673 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2674 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2675 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002676
Chris Lattneref7634c2010-01-07 21:53:27 +00002677 unsigned Alignment = LN0->getAlignment();
2678 SDValue NewPtr = LN0->getBasePtr();
2679
2680 // For big endian targets, we need to add an offset to the pointer
2681 // to load the correct bytes. For little endian systems, we merely
2682 // need to read fewer bytes from the same pointer.
2683 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002684 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2685 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2686 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002687 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2688 NewPtr, DAG.getConstant(PtrOff, PtrType));
2689 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002690 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002691
2692 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002693
Chris Lattneref7634c2010-01-07 21:53:27 +00002694 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2695 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002696 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002697 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002698 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002699 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2700 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002701 AddToWorkList(N);
2702 CombineTo(LN0, Load, Load.getValue(1));
2703 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002704 }
Evan Cheng466685d2006-10-09 20:57:25 +00002705 }
Chris Lattner15045b62006-02-28 06:35:35 +00002706 }
2707 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002708
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002709 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002710}
2711
Evan Cheng9568e5c2011-06-21 06:01:08 +00002712/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2713///
2714SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2715 bool DemandHighBits) {
2716 if (!LegalOperations)
2717 return SDValue();
2718
2719 EVT VT = N->getValueType(0);
2720 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2721 return SDValue();
2722 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2723 return SDValue();
2724
2725 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2726 bool LookPassAnd0 = false;
2727 bool LookPassAnd1 = false;
2728 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2729 std::swap(N0, N1);
2730 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2731 std::swap(N0, N1);
2732 if (N0.getOpcode() == ISD::AND) {
2733 if (!N0.getNode()->hasOneUse())
2734 return SDValue();
2735 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2736 if (!N01C || N01C->getZExtValue() != 0xFF00)
2737 return SDValue();
2738 N0 = N0.getOperand(0);
2739 LookPassAnd0 = true;
2740 }
2741
2742 if (N1.getOpcode() == ISD::AND) {
2743 if (!N1.getNode()->hasOneUse())
2744 return SDValue();
2745 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2746 if (!N11C || N11C->getZExtValue() != 0xFF)
2747 return SDValue();
2748 N1 = N1.getOperand(0);
2749 LookPassAnd1 = true;
2750 }
2751
2752 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2753 std::swap(N0, N1);
2754 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2755 return SDValue();
2756 if (!N0.getNode()->hasOneUse() ||
2757 !N1.getNode()->hasOneUse())
2758 return SDValue();
2759
2760 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2761 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2762 if (!N01C || !N11C)
2763 return SDValue();
2764 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2765 return SDValue();
2766
2767 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2768 SDValue N00 = N0->getOperand(0);
2769 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2770 if (!N00.getNode()->hasOneUse())
2771 return SDValue();
2772 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2773 if (!N001C || N001C->getZExtValue() != 0xFF)
2774 return SDValue();
2775 N00 = N00.getOperand(0);
2776 LookPassAnd0 = true;
2777 }
2778
2779 SDValue N10 = N1->getOperand(0);
2780 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2781 if (!N10.getNode()->hasOneUse())
2782 return SDValue();
2783 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2784 if (!N101C || N101C->getZExtValue() != 0xFF00)
2785 return SDValue();
2786 N10 = N10.getOperand(0);
2787 LookPassAnd1 = true;
2788 }
2789
2790 if (N00 != N10)
2791 return SDValue();
2792
2793 // Make sure everything beyond the low halfword is zero since the SRL 16
2794 // will clear the top bits.
2795 unsigned OpSizeInBits = VT.getSizeInBits();
2796 if (DemandHighBits && OpSizeInBits > 16 &&
2797 (!LookPassAnd0 || !LookPassAnd1) &&
2798 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2799 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002800
Evan Cheng9568e5c2011-06-21 06:01:08 +00002801 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2802 if (OpSizeInBits > 16)
2803 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2804 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2805 return Res;
2806}
2807
2808/// isBSwapHWordElement - Return true if the specified node is an element
2809/// that makes up a 32-bit packed halfword byteswap. i.e.
2810/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2811static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2812 if (!N.getNode()->hasOneUse())
2813 return false;
2814
2815 unsigned Opc = N.getOpcode();
2816 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2817 return false;
2818
2819 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2820 if (!N1C)
2821 return false;
2822
2823 unsigned Num;
2824 switch (N1C->getZExtValue()) {
2825 default:
2826 return false;
2827 case 0xFF: Num = 0; break;
2828 case 0xFF00: Num = 1; break;
2829 case 0xFF0000: Num = 2; break;
2830 case 0xFF000000: Num = 3; break;
2831 }
2832
2833 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2834 SDValue N0 = N.getOperand(0);
2835 if (Opc == ISD::AND) {
2836 if (Num == 0 || Num == 2) {
2837 // (x >> 8) & 0xff
2838 // (x >> 8) & 0xff0000
2839 if (N0.getOpcode() != ISD::SRL)
2840 return false;
2841 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2842 if (!C || C->getZExtValue() != 8)
2843 return false;
2844 } else {
2845 // (x << 8) & 0xff00
2846 // (x << 8) & 0xff000000
2847 if (N0.getOpcode() != ISD::SHL)
2848 return false;
2849 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2850 if (!C || C->getZExtValue() != 8)
2851 return false;
2852 }
2853 } else if (Opc == ISD::SHL) {
2854 // (x & 0xff) << 8
2855 // (x & 0xff0000) << 8
2856 if (Num != 0 && Num != 2)
2857 return false;
2858 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2859 if (!C || C->getZExtValue() != 8)
2860 return false;
2861 } else { // Opc == ISD::SRL
2862 // (x & 0xff00) >> 8
2863 // (x & 0xff000000) >> 8
2864 if (Num != 1 && Num != 3)
2865 return false;
2866 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2867 if (!C || C->getZExtValue() != 8)
2868 return false;
2869 }
2870
2871 if (Parts[Num])
2872 return false;
2873
2874 Parts[Num] = N0.getOperand(0).getNode();
2875 return true;
2876}
2877
2878/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2879/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2880/// => (rotl (bswap x), 16)
2881SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2882 if (!LegalOperations)
2883 return SDValue();
2884
2885 EVT VT = N->getValueType(0);
2886 if (VT != MVT::i32)
2887 return SDValue();
2888 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2889 return SDValue();
2890
2891 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2892 // Look for either
2893 // (or (or (and), (and)), (or (and), (and)))
2894 // (or (or (or (and), (and)), (and)), (and))
2895 if (N0.getOpcode() != ISD::OR)
2896 return SDValue();
2897 SDValue N00 = N0.getOperand(0);
2898 SDValue N01 = N0.getOperand(1);
2899
2900 if (N1.getOpcode() == ISD::OR) {
2901 // (or (or (and), (and)), (or (and), (and)))
2902 SDValue N000 = N00.getOperand(0);
2903 if (!isBSwapHWordElement(N000, Parts))
2904 return SDValue();
2905
2906 SDValue N001 = N00.getOperand(1);
2907 if (!isBSwapHWordElement(N001, Parts))
2908 return SDValue();
2909 SDValue N010 = N01.getOperand(0);
2910 if (!isBSwapHWordElement(N010, Parts))
2911 return SDValue();
2912 SDValue N011 = N01.getOperand(1);
2913 if (!isBSwapHWordElement(N011, Parts))
2914 return SDValue();
2915 } else {
2916 // (or (or (or (and), (and)), (and)), (and))
2917 if (!isBSwapHWordElement(N1, Parts))
2918 return SDValue();
2919 if (!isBSwapHWordElement(N01, Parts))
2920 return SDValue();
2921 if (N00.getOpcode() != ISD::OR)
2922 return SDValue();
2923 SDValue N000 = N00.getOperand(0);
2924 if (!isBSwapHWordElement(N000, Parts))
2925 return SDValue();
2926 SDValue N001 = N00.getOperand(1);
2927 if (!isBSwapHWordElement(N001, Parts))
2928 return SDValue();
2929 }
2930
2931 // Make sure the parts are all coming from the same node.
2932 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2933 return SDValue();
2934
2935 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
2936 SDValue(Parts[0],0));
2937
2938 // Result of the bswap should be rotated by 16. If it's not legal, than
2939 // do (x << 16) | (x >> 16).
2940 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
2941 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
2942 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
2943 else if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
2944 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
2945 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
2946 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
2947 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
2948}
2949
Dan Gohman475871a2008-07-27 21:46:04 +00002950SDValue DAGCombiner::visitOR(SDNode *N) {
2951 SDValue N0 = N->getOperand(0);
2952 SDValue N1 = N->getOperand(1);
2953 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002954 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2955 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002956 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002957
Dan Gohman7f321562007-06-25 16:23:39 +00002958 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002959 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002960 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002961 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002962 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002963
Dan Gohman613e0d82007-07-03 14:03:57 +00002964 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00002965 if (!LegalOperations &&
2966 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00002967 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
2968 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
2969 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00002970 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002971 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002972 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002973 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002974 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00002975 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002976 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002977 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002978 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002979 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002980 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002981 return N1;
2982 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002983 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002984 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00002985
2986 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
2987 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
2988 if (BSwap.getNode() != 0)
2989 return BSwap;
2990 BSwap = MatchBSwapHWordLow(N, N0, N1);
2991 if (BSwap.getNode() != 0)
2992 return BSwap;
2993
Nate Begemancd4d58c2006-02-03 06:46:56 +00002994 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00002995 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002996 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002997 return ROR;
2998 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002999 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003000 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003001 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003002 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003003 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003004 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
3005 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3006 N0.getOperand(0), N1),
3007 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003008 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003009 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3010 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3011 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3012 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003013
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003014 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003015 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003016 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3017 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003018 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003019 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003020 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
3021 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003022 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003023 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003024 }
Bill Wendling09025642009-01-30 20:59:34 +00003025 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3026 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003027 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003028 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003029 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
3030 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003031 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003032 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003033 }
3034 }
3035 // canonicalize equivalent to ll == rl
3036 if (LL == RR && LR == RL) {
3037 Op1 = ISD::getSetCCSwappedOperands(Op1);
3038 std::swap(RL, RR);
3039 }
3040 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003041 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003042 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003043 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00003044 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00003045 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
3046 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003047 }
3048 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003049
Bill Wendling09025642009-01-30 20:59:34 +00003050 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003051 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003052 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003053 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003054 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003055
Bill Wendling09025642009-01-30 20:59:34 +00003056 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003057 if (N0.getOpcode() == ISD::AND &&
3058 N1.getOpcode() == ISD::AND &&
3059 N0.getOperand(1).getOpcode() == ISD::Constant &&
3060 N1.getOperand(1).getOpcode() == ISD::Constant &&
3061 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003062 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003063 // We can only do this xform if we know that bits from X that are set in C2
3064 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003065 const APInt &LHSMask =
3066 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3067 const APInt &RHSMask =
3068 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003069
Dan Gohmanea859be2007-06-22 14:59:07 +00003070 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3071 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003072 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3073 N0.getOperand(0), N1.getOperand(0));
3074 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3075 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003076 }
3077 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003078
Chris Lattner516b9622006-09-14 20:50:57 +00003079 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003080 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003081 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003082
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003083 // Simplify the operands using demanded-bits information.
3084 if (!VT.isVector() &&
3085 SimplifyDemandedBits(SDValue(N, 0)))
3086 return SDValue(N, 0);
3087
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003088 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003089}
3090
Chris Lattner516b9622006-09-14 20:50:57 +00003091/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003092static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003093 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003094 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003095 Mask = Op.getOperand(1);
3096 Op = Op.getOperand(0);
3097 } else {
3098 return false;
3099 }
3100 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003101
Chris Lattner516b9622006-09-14 20:50:57 +00003102 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3103 Shift = Op;
3104 return true;
3105 }
Bill Wendling09025642009-01-30 20:59:34 +00003106
Scott Michelfdc40a02009-02-17 22:15:04 +00003107 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003108}
3109
Chris Lattner516b9622006-09-14 20:50:57 +00003110// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3111// idioms for rotate, and if the target supports rotation instructions, generate
3112// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003113SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003114 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003115 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003116 if (!TLI.isTypeLegal(VT)) return 0;
3117
3118 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003119 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3120 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003121 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003122
Chris Lattner516b9622006-09-14 20:50:57 +00003123 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003124 SDValue LHSShift; // The shift.
3125 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003126 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3127 return 0; // Not part of a rotate.
3128
Dan Gohman475871a2008-07-27 21:46:04 +00003129 SDValue RHSShift; // The shift.
3130 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003131 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3132 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003133
Chris Lattner516b9622006-09-14 20:50:57 +00003134 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3135 return 0; // Not shifting the same value.
3136
3137 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3138 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003139
Chris Lattner516b9622006-09-14 20:50:57 +00003140 // Canonicalize shl to left side in a shl/srl pair.
3141 if (RHSShift.getOpcode() == ISD::SHL) {
3142 std::swap(LHS, RHS);
3143 std::swap(LHSShift, RHSShift);
3144 std::swap(LHSMask , RHSMask );
3145 }
3146
Duncan Sands83ec4b62008-06-06 12:08:01 +00003147 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003148 SDValue LHSShiftArg = LHSShift.getOperand(0);
3149 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3150 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003151
3152 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3153 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003154 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3155 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003156 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3157 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003158 if ((LShVal + RShVal) != OpSizeInBits)
3159 return 0;
3160
Dan Gohman475871a2008-07-27 21:46:04 +00003161 SDValue Rot;
Chris Lattner516b9622006-09-14 20:50:57 +00003162 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003163 Rot = DAG.getNode(ISD::ROTL, DL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00003164 else
Bill Wendling317bd702009-01-30 21:14:50 +00003165 Rot = DAG.getNode(ISD::ROTR, DL, VT, LHSShiftArg, RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003166
Chris Lattner516b9622006-09-14 20:50:57 +00003167 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003168 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003169 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003170
Gabor Greifba36cb52008-08-28 21:40:38 +00003171 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003172 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3173 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003174 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003175 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003176 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3177 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003178 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003179
Bill Wendling317bd702009-01-30 21:14:50 +00003180 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003181 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003182
Gabor Greifba36cb52008-08-28 21:40:38 +00003183 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003184 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003185
Chris Lattner516b9622006-09-14 20:50:57 +00003186 // If there is a mask here, and we have a variable shift, we can't be sure
3187 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003188 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003189 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003190
Chris Lattner516b9622006-09-14 20:50:57 +00003191 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3192 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003193 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3194 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003195 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003196 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003197 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00003198 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003199 return DAG.getNode(ISD::ROTL, DL, VT,
3200 LHSShiftArg, LHSShiftAmt).getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003201 else
Bill Wendling317bd702009-01-30 21:14:50 +00003202 return DAG.getNode(ISD::ROTR, DL, VT,
3203 LHSShiftArg, RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003204 }
Chris Lattner516b9622006-09-14 20:50:57 +00003205 }
3206 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003207
Chris Lattner516b9622006-09-14 20:50:57 +00003208 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3209 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003210 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3211 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003212 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003213 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003214 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling2692d592008-08-31 01:13:31 +00003215 if (HasROTR)
Bill Wendling317bd702009-01-30 21:14:50 +00003216 return DAG.getNode(ISD::ROTR, DL, VT,
3217 LHSShiftArg, RHSShiftAmt).getNode();
Bill Wendling2692d592008-08-31 01:13:31 +00003218 else
Bill Wendling317bd702009-01-30 21:14:50 +00003219 return DAG.getNode(ISD::ROTL, DL, VT,
3220 LHSShiftArg, LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003221 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003222 }
3223 }
3224
Dan Gohman74feef22008-10-17 01:23:35 +00003225 // Look for sign/zext/any-extended or truncate cases:
Scott Michelc9dc1142007-04-02 21:36:32 +00003226 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3227 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003228 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3229 || LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
Scott Michelc9dc1142007-04-02 21:36:32 +00003230 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3231 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003232 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3233 || RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003234 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3235 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003236 if (RExtOp0.getOpcode() == ISD::SUB &&
3237 RExtOp0.getOperand(1) == LExtOp0) {
3238 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003239 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003240 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003241 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003242 if (ConstantSDNode *SUBC =
3243 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003244 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003245 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3246 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003247 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003248 }
3249 }
3250 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3251 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003252 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003253 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003254 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003255 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003256 if (ConstantSDNode *SUBC =
3257 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003258 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003259 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3260 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003261 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003262 }
3263 }
Chris Lattner516b9622006-09-14 20:50:57 +00003264 }
3265 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003266
Chris Lattner516b9622006-09-14 20:50:57 +00003267 return 0;
3268}
3269
Dan Gohman475871a2008-07-27 21:46:04 +00003270SDValue DAGCombiner::visitXOR(SDNode *N) {
3271 SDValue N0 = N->getOperand(0);
3272 SDValue N1 = N->getOperand(1);
3273 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003274 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3275 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003276 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003277
Dan Gohman7f321562007-06-25 16:23:39 +00003278 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003279 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003280 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003281 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003282 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003283
Evan Cheng26471c42008-03-25 20:08:07 +00003284 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3285 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3286 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003287 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003288 if (N0.getOpcode() == ISD::UNDEF)
3289 return N0;
3290 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003291 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003292 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003293 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003294 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003295 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003296 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003297 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003298 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003299 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003300 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003301 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003302 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003303 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003304 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003305
Nate Begeman1d4d4142005-09-01 00:19:25 +00003306 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003307 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003308 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003309 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3310 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003311
Duncan Sands25cf2272008-11-24 14:53:14 +00003312 if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003313 switch (N0.getOpcode()) {
3314 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003315 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003316 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003317 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003318 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003319 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003320 N0.getOperand(3), NotCC);
3321 }
3322 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003323 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003324
Chris Lattner61c5ff42007-09-10 21:39:07 +00003325 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003326 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003327 N0.getNode()->hasOneUse() &&
3328 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003329 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003330 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003331 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003332 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003333 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003334 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003335
Bill Wendling317bd702009-01-30 21:14:50 +00003336 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003337 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003338 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003339 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003340 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3341 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003342 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3343 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003344 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003345 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003346 }
3347 }
Bill Wendling317bd702009-01-30 21:14:50 +00003348 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003349 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003350 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003351 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003352 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3353 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003354 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3355 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003356 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003357 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003358 }
3359 }
Bill Wendling317bd702009-01-30 21:14:50 +00003360 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003361 if (N1C && N0.getOpcode() == ISD::XOR) {
3362 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3363 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3364 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003365 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3366 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003367 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003368 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003369 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3370 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003371 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003372 }
3373 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003374 if (N0 == N1)
3375 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003376
Chris Lattner35e5c142006-05-05 05:51:50 +00003377 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3378 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003379 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003380 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003381 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003382
Chris Lattner3e104b12006-04-08 04:15:24 +00003383 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003384 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003385 SimplifyDemandedBits(SDValue(N, 0)))
3386 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003387
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003388 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003389}
3390
Chris Lattnere70da202007-12-06 07:33:36 +00003391/// visitShiftByConstant - Handle transforms common to the three shifts, when
3392/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003393SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003394 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003395 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003396
Chris Lattnere70da202007-12-06 07:33:36 +00003397 // We want to pull some binops through shifts, so that we have (and (shift))
3398 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3399 // thing happens with address calculations, so it's important to canonicalize
3400 // it.
3401 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003402
Chris Lattnere70da202007-12-06 07:33:36 +00003403 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003404 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003405 case ISD::OR:
3406 case ISD::XOR:
3407 HighBitSet = false; // We can only transform sra if the high bit is clear.
3408 break;
3409 case ISD::AND:
3410 HighBitSet = true; // We can only transform sra if the high bit is set.
3411 break;
3412 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003413 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003414 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003415 HighBitSet = false; // We can only transform sra if the high bit is clear.
3416 break;
3417 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003418
Chris Lattnere70da202007-12-06 07:33:36 +00003419 // We require the RHS of the binop to be a constant as well.
3420 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003421 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003422
3423 // FIXME: disable this unless the input to the binop is a shift by a constant.
3424 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003425 //
Bill Wendling88103372009-01-30 21:37:17 +00003426 // void foo(int *X, int i) { X[i & 1235] = 1; }
3427 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003428 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003429 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003430 BinOpLHSVal->getOpcode() != ISD::SRA &&
3431 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3432 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003433 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003434
Owen Andersone50ed302009-08-10 22:56:29 +00003435 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003436
Bill Wendling88103372009-01-30 21:37:17 +00003437 // If this is a signed shift right, and the high bit is modified by the
3438 // logical operation, do not perform the transformation. The highBitSet
3439 // boolean indicates the value of the high bit of the constant which would
3440 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003441 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003442 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3443 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003444 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003445 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003446
Chris Lattnere70da202007-12-06 07:33:36 +00003447 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003448 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3449 N->getValueType(0),
3450 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003451
3452 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003453 SDValue NewShift = DAG.getNode(N->getOpcode(),
3454 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003455 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003456
3457 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003458 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003459}
3460
Dan Gohman475871a2008-07-27 21:46:04 +00003461SDValue DAGCombiner::visitSHL(SDNode *N) {
3462 SDValue N0 = N->getOperand(0);
3463 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003464 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3465 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003466 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003467 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003468
Nate Begeman1d4d4142005-09-01 00:19:25 +00003469 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003470 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003471 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003472 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003473 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003474 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003475 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003476 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003477 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003478 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003479 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003480 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003481 // fold (shl undef, x) -> 0
3482 if (N0.getOpcode() == ISD::UNDEF)
3483 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003484 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003485 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003486 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003487 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003488 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003489 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003490 N1.getOperand(0).getOpcode() == ISD::AND &&
3491 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003492 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003493 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003494 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003495 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003496 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003497 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003498 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003499 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3500 DAG.getNode(ISD::TRUNCATE,
3501 N->getDebugLoc(),
3502 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003503 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003504 }
3505 }
3506
Dan Gohman475871a2008-07-27 21:46:04 +00003507 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3508 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003509
3510 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003511 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003512 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003513 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3514 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003515 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003516 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003517 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003518 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003519 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003520
3521 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3522 // For this to be valid, the second form must not preserve any of the bits
3523 // that are shifted out by the inner shift in the first form. This means
3524 // the outer shift size must be >= the number of bits added by the ext.
3525 // As a corollary, we don't care what kind of ext it is.
3526 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3527 N0.getOpcode() == ISD::ANY_EXTEND ||
3528 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3529 N0.getOperand(0).getOpcode() == ISD::SHL &&
3530 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003531 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003532 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3533 uint64_t c2 = N1C->getZExtValue();
3534 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3535 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3536 if (c2 >= OpSizeInBits - InnerShiftSize) {
3537 if (c1 + c2 >= OpSizeInBits)
3538 return DAG.getConstant(0, VT);
3539 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3540 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3541 N0.getOperand(0)->getOperand(0)),
3542 DAG.getConstant(c1 + c2, N1.getValueType()));
3543 }
3544 }
3545
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003546 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3547 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003548 // Only fold this if the inner shift has no other uses -- if it does, folding
3549 // this will increase the total number of instructions.
3550 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003551 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003552 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003553 if (c1 < VT.getSizeInBits()) {
3554 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003555 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3556 VT.getSizeInBits() - c1);
3557 SDValue Shift;
3558 if (c2 > c1) {
3559 Mask = Mask.shl(c2-c1);
3560 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3561 DAG.getConstant(c2-c1, N1.getValueType()));
3562 } else {
3563 Mask = Mask.lshr(c1-c2);
3564 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3565 DAG.getConstant(c1-c2, N1.getValueType()));
3566 }
3567 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3568 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003569 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003570 }
Bill Wendling88103372009-01-30 21:37:17 +00003571 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003572 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3573 SDValue HiBitsMask =
3574 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3575 VT.getSizeInBits() -
3576 N1C->getZExtValue()),
3577 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003578 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003579 HiBitsMask);
3580 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003581
Evan Chenge5b51ac2010-04-17 06:13:15 +00003582 if (N1C) {
3583 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3584 if (NewSHL.getNode())
3585 return NewSHL;
3586 }
3587
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003588 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003589}
3590
Dan Gohman475871a2008-07-27 21:46:04 +00003591SDValue DAGCombiner::visitSRA(SDNode *N) {
3592 SDValue N0 = N->getOperand(0);
3593 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003594 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3595 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003596 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003597 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003598
Bill Wendling88103372009-01-30 21:37:17 +00003599 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003600 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003601 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003602 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003603 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003604 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003605 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003606 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003607 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003608 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003609 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003610 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003611 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003612 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003613 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003614 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3615 // sext_inreg.
3616 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003617 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003618 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3619 if (VT.isVector())
3620 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3621 ExtVT, VT.getVectorNumElements());
3622 if ((!LegalOperations ||
3623 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003624 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003625 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003626 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003627
Bill Wendling88103372009-01-30 21:37:17 +00003628 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003629 if (N1C && N0.getOpcode() == ISD::SRA) {
3630 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003631 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003632 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003633 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003634 DAG.getConstant(Sum, N1C->getValueType(0)));
3635 }
3636 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003637
Bill Wendling88103372009-01-30 21:37:17 +00003638 // fold (sra (shl X, m), (sub result_size, n))
3639 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003640 // result_size - n != m.
3641 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003642 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003643 if (N0.getOpcode() == ISD::SHL) {
3644 // Get the two constanst of the shifts, CN0 = m, CN = n.
3645 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3646 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003647 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003648 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003649 EVT::getIntegerVT(*DAG.getContext(),
3650 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003651 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003652 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003653
Scott Michelfdc40a02009-02-17 22:15:04 +00003654 // If the shift is not a no-op (in which case this should be just a sign
3655 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003656 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003657 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003658 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003659 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3660 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003661 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003662
Owen Anderson95771af2011-02-25 21:41:48 +00003663 SDValue Amt = DAG.getConstant(ShiftAmt,
3664 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003665 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3666 N0.getOperand(0), Amt);
3667 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3668 Shift);
3669 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3670 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003671 }
3672 }
3673 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003674
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003675 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003676 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003677 N1.getOperand(0).getOpcode() == ISD::AND &&
3678 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003679 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003680 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003681 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003682 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003683 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003684 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003685 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003686 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003687 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003688 DAG.getNode(ISD::TRUNCATE,
3689 N->getDebugLoc(),
3690 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003691 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003692 }
3693 }
3694
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003695 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3696 // if c1 is equal to the number of bits the trunc removes
3697 if (N0.getOpcode() == ISD::TRUNCATE &&
3698 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3699 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3700 N0.getOperand(0).hasOneUse() &&
3701 N0.getOperand(0).getOperand(1).hasOneUse() &&
3702 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3703 EVT LargeVT = N0.getOperand(0).getValueType();
3704 ConstantSDNode *LargeShiftAmt =
3705 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3706
3707 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3708 LargeShiftAmt->getZExtValue()) {
3709 SDValue Amt =
3710 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003711 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003712 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3713 N0.getOperand(0).getOperand(0), Amt);
3714 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3715 }
3716 }
3717
Scott Michelfdc40a02009-02-17 22:15:04 +00003718 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003719 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3720 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003721
3722
Nate Begeman1d4d4142005-09-01 00:19:25 +00003723 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003724 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003725 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003726
Evan Chenge5b51ac2010-04-17 06:13:15 +00003727 if (N1C) {
3728 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3729 if (NewSRA.getNode())
3730 return NewSRA;
3731 }
3732
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003733 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003734}
3735
Dan Gohman475871a2008-07-27 21:46:04 +00003736SDValue DAGCombiner::visitSRL(SDNode *N) {
3737 SDValue N0 = N->getOperand(0);
3738 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003739 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3740 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003741 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003742 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003743
Nate Begeman1d4d4142005-09-01 00:19:25 +00003744 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003745 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003746 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003747 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003748 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003749 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003750 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003751 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003752 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003753 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003754 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003755 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003756 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003757 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003758 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003759 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003760
Bill Wendling88103372009-01-30 21:37:17 +00003761 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003762 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003763 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003764 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3765 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003766 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003767 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003768 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003769 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003770 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003771
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003772 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003773 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3774 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003775 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003776 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003777 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3778 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003779 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3780 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003781 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003782 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003783 if (c1 + OpSizeInBits == InnerShiftSize) {
3784 if (c1 + c2 >= InnerShiftSize)
3785 return DAG.getConstant(0, VT);
3786 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003787 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003788 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003789 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003790 }
3791 }
3792
Chris Lattnerefcddc32010-04-15 05:28:43 +00003793 // fold (srl (shl x, c), c) -> (and x, cst2)
3794 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3795 N0.getValueSizeInBits() <= 64) {
3796 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3797 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3798 DAG.getConstant(~0ULL >> ShAmt, VT));
3799 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003800
Scott Michelfdc40a02009-02-17 22:15:04 +00003801
Chris Lattner06afe072006-05-05 22:53:17 +00003802 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3803 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3804 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003805 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003806 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003807 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003808
Evan Chenge5b51ac2010-04-17 06:13:15 +00003809 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003810 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003811 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003812 N0.getOperand(0),
3813 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003814 AddToWorkList(SmallShift.getNode());
3815 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3816 }
Chris Lattner06afe072006-05-05 22:53:17 +00003817 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003818
Chris Lattner3657ffe2006-10-12 20:23:19 +00003819 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3820 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003821 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003822 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003823 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003824 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003825
Chris Lattner350bec02006-04-02 06:11:11 +00003826 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003827 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003828 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003829 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003830 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003831
Chris Lattner350bec02006-04-02 06:11:11 +00003832 // If any of the input bits are KnownOne, then the input couldn't be all
3833 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003834 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003835
Chris Lattner350bec02006-04-02 06:11:11 +00003836 // If all of the bits input the to ctlz node are known to be zero, then
3837 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003838 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00003839 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003840
Chris Lattner350bec02006-04-02 06:11:11 +00003841 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003842 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003843 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003844 // could be set on input to the CTLZ node. If this bit is set, the SRL
3845 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3846 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003847 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003848 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003849
Chris Lattner350bec02006-04-02 06:11:11 +00003850 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003851 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003852 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003853 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003854 }
Bill Wendling88103372009-01-30 21:37:17 +00003855
3856 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3857 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003858 }
3859 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003860
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003861 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003862 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003863 N1.getOperand(0).getOpcode() == ISD::AND &&
3864 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003865 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003866 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003867 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003868 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003869 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003870 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003871 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003872 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003873 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003874 DAG.getNode(ISD::TRUNCATE,
3875 N->getDebugLoc(),
3876 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003877 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003878 }
3879 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003880
Chris Lattner61a4c072007-04-18 03:06:49 +00003881 // fold operands of srl based on knowledge that the low bits are not
3882 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003883 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3884 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003885
Evan Cheng9ab2b982009-12-18 21:31:31 +00003886 if (N1C) {
3887 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3888 if (NewSRL.getNode())
3889 return NewSRL;
3890 }
3891
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003892 // Attempt to convert a srl of a load into a narrower zero-extending load.
3893 SDValue NarrowLoad = ReduceLoadWidth(N);
3894 if (NarrowLoad.getNode())
3895 return NarrowLoad;
3896
Evan Cheng9ab2b982009-12-18 21:31:31 +00003897 // Here is a common situation. We want to optimize:
3898 //
3899 // %a = ...
3900 // %b = and i32 %a, 2
3901 // %c = srl i32 %b, 1
3902 // brcond i32 %c ...
3903 //
3904 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003905 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00003906 // %a = ...
3907 // %b = and %a, 2
3908 // %c = setcc eq %b, 0
3909 // brcond %c ...
3910 //
3911 // However when after the source operand of SRL is optimized into AND, the SRL
3912 // itself may not be optimized further. Look for it and add the BRCOND into
3913 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00003914 if (N->hasOneUse()) {
3915 SDNode *Use = *N->use_begin();
3916 if (Use->getOpcode() == ISD::BRCOND)
3917 AddToWorkList(Use);
3918 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3919 // Also look pass the truncate.
3920 Use = *Use->use_begin();
3921 if (Use->getOpcode() == ISD::BRCOND)
3922 AddToWorkList(Use);
3923 }
3924 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00003925
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003926 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00003927}
3928
Dan Gohman475871a2008-07-27 21:46:04 +00003929SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3930 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003931 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003932
3933 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003934 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003935 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003936 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003937}
3938
Chandler Carruth63974b22011-12-13 01:56:10 +00003939SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
3940 SDValue N0 = N->getOperand(0);
3941 EVT VT = N->getValueType(0);
3942
3943 // fold (ctlz_zero_undef c1) -> c2
3944 if (isa<ConstantSDNode>(N0))
3945 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3946 return SDValue();
3947}
3948
Dan Gohman475871a2008-07-27 21:46:04 +00003949SDValue DAGCombiner::visitCTTZ(SDNode *N) {
3950 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003951 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003952
Nate Begeman1d4d4142005-09-01 00:19:25 +00003953 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003954 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003955 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003956 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003957}
3958
Chandler Carruth63974b22011-12-13 01:56:10 +00003959SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
3960 SDValue N0 = N->getOperand(0);
3961 EVT VT = N->getValueType(0);
3962
3963 // fold (cttz_zero_undef c1) -> c2
3964 if (isa<ConstantSDNode>(N0))
3965 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3966 return SDValue();
3967}
3968
Dan Gohman475871a2008-07-27 21:46:04 +00003969SDValue DAGCombiner::visitCTPOP(SDNode *N) {
3970 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003971 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003972
Nate Begeman1d4d4142005-09-01 00:19:25 +00003973 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003974 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003975 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003976 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003977}
3978
Dan Gohman475871a2008-07-27 21:46:04 +00003979SDValue DAGCombiner::visitSELECT(SDNode *N) {
3980 SDValue N0 = N->getOperand(0);
3981 SDValue N1 = N->getOperand(1);
3982 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00003983 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3984 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3985 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00003986 EVT VT = N->getValueType(0);
3987 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00003988
Bill Wendling34584e62009-01-30 22:02:18 +00003989 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003990 if (N1 == N2)
3991 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00003992 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003993 if (N0C && !N0C->isNullValue())
3994 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00003995 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00003996 if (N0C && N0C->isNullValue())
3997 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00003998 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00003999 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00004000 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4001 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004002 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004003 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004004 (VT0.isInteger() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00004005 TLI.getBooleanContents(false) == TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004006 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004007 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004008 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00004009 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
4010 N0, DAG.getConstant(1, VT0));
4011 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
4012 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004013 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004014 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00004015 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
4016 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004017 }
Bill Wendling34584e62009-01-30 22:02:18 +00004018 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004019 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00004020 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004021 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004022 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004023 }
Bill Wendling34584e62009-01-30 22:02:18 +00004024 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004025 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004026 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004027 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004028 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004029 }
Bill Wendling34584e62009-01-30 22:02:18 +00004030 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004031 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00004032 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
4033 // fold (select X, X, Y) -> (or X, Y)
4034 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004035 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00004036 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4037 // fold (select X, Y, X) -> (and X, Y)
4038 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004039 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00004040 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004041
Chris Lattner40c62d52005-10-18 06:04:22 +00004042 // If we can fold this based on the true/false value, do so.
4043 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004044 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004045
Nate Begeman44728a72005-09-19 22:34:01 +00004046 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004047 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004048 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004049 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004050 // having to say they don't support SELECT_CC on every type the DAG knows
4051 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004052 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004053 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004054 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4055 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004056 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004057 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004058 }
Bill Wendling34584e62009-01-30 22:02:18 +00004059
Dan Gohman475871a2008-07-27 21:46:04 +00004060 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004061}
4062
Dan Gohman475871a2008-07-27 21:46:04 +00004063SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4064 SDValue N0 = N->getOperand(0);
4065 SDValue N1 = N->getOperand(1);
4066 SDValue N2 = N->getOperand(2);
4067 SDValue N3 = N->getOperand(3);
4068 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004069 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004070
Nate Begeman44728a72005-09-19 22:34:01 +00004071 // fold select_cc lhs, rhs, x, x, cc -> x
4072 if (N2 == N3)
4073 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004074
Chris Lattner5f42a242006-09-20 06:19:26 +00004075 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004076 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004077 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004078 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004079
Gabor Greifba36cb52008-08-28 21:40:38 +00004080 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004081 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004082 return N2; // cond always true -> true val
4083 else
4084 return N3; // cond always false -> false val
4085 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004086
Chris Lattner5f42a242006-09-20 06:19:26 +00004087 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004088 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004089 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4090 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004091 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004092
Chris Lattner40c62d52005-10-18 06:04:22 +00004093 // If we can fold this based on the true/false value, do so.
4094 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004095 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004096
Nate Begeman44728a72005-09-19 22:34:01 +00004097 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004098 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004099}
4100
Dan Gohman475871a2008-07-27 21:46:04 +00004101SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004102 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004103 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4104 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004105}
4106
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004107// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004108// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004109// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004110// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004111static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004112 unsigned ExtOpc,
4113 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004114 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004115 bool HasCopyToRegUses = false;
4116 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004117 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4118 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004119 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004120 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004121 if (User == N)
4122 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004123 if (UI.getUse().getResNo() != N0.getResNo())
4124 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004125 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004126 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004127 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4128 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4129 // Sign bits will be lost after a zext.
4130 return false;
4131 bool Add = false;
4132 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004133 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004134 if (UseOp == N0)
4135 continue;
4136 if (!isa<ConstantSDNode>(UseOp))
4137 return false;
4138 Add = true;
4139 }
4140 if (Add)
4141 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004142 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004143 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004144 // If truncates aren't free and there are users we can't
4145 // extend, it isn't worthwhile.
4146 if (!isTruncFree)
4147 return false;
4148 // Remember if this value is live-out.
4149 if (User->getOpcode() == ISD::CopyToReg)
4150 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004151 }
4152
4153 if (HasCopyToRegUses) {
4154 bool BothLiveOut = false;
4155 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4156 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004157 SDUse &Use = UI.getUse();
4158 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4159 BothLiveOut = true;
4160 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004161 }
4162 }
4163 if (BothLiveOut)
4164 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004165 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004166 return ExtendNodes.size();
4167 }
4168 return true;
4169}
4170
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004171void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4172 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4173 ISD::NodeType ExtType) {
4174 // Extend SetCC uses if necessary.
4175 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4176 SDNode *SetCC = SetCCs[i];
4177 SmallVector<SDValue, 4> Ops;
4178
4179 for (unsigned j = 0; j != 2; ++j) {
4180 SDValue SOp = SetCC->getOperand(j);
4181 if (SOp == Trunc)
4182 Ops.push_back(ExtLoad);
4183 else
4184 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4185 }
4186
4187 Ops.push_back(SetCC->getOperand(2));
4188 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4189 &Ops[0], Ops.size()));
4190 }
4191}
4192
Dan Gohman475871a2008-07-27 21:46:04 +00004193SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4194 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004195 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004196
Nate Begeman1d4d4142005-09-01 00:19:25 +00004197 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004198 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004199 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004200
Nate Begeman1d4d4142005-09-01 00:19:25 +00004201 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004202 // fold (sext (aext x)) -> (sext x)
4203 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004204 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4205 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004206
Chris Lattner22558872007-02-26 03:13:59 +00004207 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004208 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4209 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004210 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4211 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004212 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4213 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004214 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004215 // CombineTo deleted the truncate, if needed, but not what's under it.
4216 AddToWorkList(oye);
4217 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004218 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004219 }
Evan Chengc88138f2007-03-22 01:54:19 +00004220
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004221 // See if the value being truncated is already sign extended. If so, just
4222 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004223 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004224 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4225 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4226 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004227 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004228
Chris Lattner22558872007-02-26 03:13:59 +00004229 if (OpBits == DestBits) {
4230 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4231 // bits, it is already ready.
4232 if (NumSignBits > DestBits-MidBits)
4233 return Op;
4234 } else if (OpBits < DestBits) {
4235 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4236 // bits, just sext from i32.
4237 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004238 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004239 } else {
4240 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4241 // bits, just truncate to i32.
4242 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004243 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004244 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004245
Chris Lattner22558872007-02-26 03:13:59 +00004246 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004247 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4248 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004249 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004250 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004251 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004252 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4253 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004254 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004255 }
Chris Lattner6007b842006-09-21 06:00:20 +00004256 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004257
Evan Cheng110dec22005-12-14 02:19:23 +00004258 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004259 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004260 // on vectors in one instruction. We only perform this transformation on
4261 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004262 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004263 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004264 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004265 bool DoXform = true;
4266 SmallVector<SDNode*, 4> SetCCs;
4267 if (!N0.hasOneUse())
4268 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4269 if (DoXform) {
4270 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004271 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004272 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004273 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004274 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004275 LN0->isVolatile(), LN0->isNonTemporal(),
4276 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004277 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004278 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4279 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004280 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004281 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4282 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004283 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004284 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004285 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004286
4287 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4288 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004289 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4290 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004291 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004292 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004293 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004294 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004295 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004296 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004297 LN0->getBasePtr(), LN0->getPointerInfo(),
4298 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004299 LN0->isVolatile(), LN0->isNonTemporal(),
4300 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004301 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004302 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004303 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4304 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004305 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004306 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004307 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004308 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004309
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004310 // fold (sext (and/or/xor (load x), cst)) ->
4311 // (and/or/xor (sextload x), (sext cst))
4312 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4313 N0.getOpcode() == ISD::XOR) &&
4314 isa<LoadSDNode>(N0.getOperand(0)) &&
4315 N0.getOperand(1).getOpcode() == ISD::Constant &&
4316 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4317 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4318 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4319 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4320 bool DoXform = true;
4321 SmallVector<SDNode*, 4> SetCCs;
4322 if (!N0.hasOneUse())
4323 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4324 SetCCs, TLI);
4325 if (DoXform) {
4326 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4327 LN0->getChain(), LN0->getBasePtr(),
4328 LN0->getPointerInfo(),
4329 LN0->getMemoryVT(),
4330 LN0->isVolatile(),
4331 LN0->isNonTemporal(),
4332 LN0->getAlignment());
4333 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4334 Mask = Mask.sext(VT.getSizeInBits());
4335 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4336 ExtLoad, DAG.getConstant(Mask, VT));
4337 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4338 N0.getOperand(0).getDebugLoc(),
4339 N0.getOperand(0).getValueType(), ExtLoad);
4340 CombineTo(N, And);
4341 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4342 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4343 ISD::SIGN_EXTEND);
4344 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4345 }
4346 }
4347 }
4348
Chris Lattner20a35c32007-04-11 05:32:27 +00004349 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004350 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004351 // Only do this before legalize for now.
4352 if (VT.isVector() && !LegalOperations) {
4353 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004354 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4355 // of the same size as the compared operands. Only optimize sext(setcc())
4356 // if this is the case.
4357 EVT SVT = TLI.getSetCCResultType(N0VT);
4358
4359 // We know that the # elements of the results is the same as the
4360 // # elements of the compare (and the # elements of the compare result
4361 // for that matter). Check to see that they are the same size. If so,
4362 // we know that the element size of the sext'd result matches the
4363 // element size of the compare operands.
4364 if (VT.getSizeInBits() == SVT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004365 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004366 N0.getOperand(1),
4367 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004368 // If the desired elements are smaller or larger than the source
4369 // elements we can use a matching integer vector type and then
4370 // truncate/sign extend
4371 else {
Duncan Sands34727662010-07-12 08:16:59 +00004372 EVT MatchingElementType =
4373 EVT::getIntegerVT(*DAG.getContext(),
4374 N0VT.getScalarType().getSizeInBits());
4375 EVT MatchingVectorType =
4376 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4377 N0VT.getVectorNumElements());
Nadav Rotem2e506192012-04-11 08:26:11 +00004378
4379 if (SVT == MatchingVectorType) {
4380 SDValue VsetCC = DAG.getSetCC(N->getDebugLoc(), MatchingVectorType,
4381 N0.getOperand(0), N0.getOperand(1),
4382 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4383 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
4384 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004385 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004386 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004387
Chris Lattner2b7a2712009-07-08 00:31:33 +00004388 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004389 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004390 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004391 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004392 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004393 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004394 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004395 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004396 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004397 if (!LegalOperations ||
4398 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4399 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4400 DAG.getSetCC(N->getDebugLoc(),
4401 TLI.getSetCCResultType(VT),
4402 N0.getOperand(0), N0.getOperand(1),
4403 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4404 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004405 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004406
Dan Gohman8f0ad582008-04-28 16:58:24 +00004407 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004408 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004409 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004410 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004411
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004412 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004413}
4414
Rafael Espindoladecbc432012-04-09 16:06:03 +00004415// isTruncateOf - If N is a truncate of some other value, return true, record
4416// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4417// This function computes KnownZero to avoid a duplicated call to
4418// ComputeMaskedBits in the caller.
4419static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4420 APInt &KnownZero) {
4421 APInt KnownOne;
4422 if (N->getOpcode() == ISD::TRUNCATE) {
4423 Op = N->getOperand(0);
4424 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4425 return true;
4426 }
4427
4428 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4429 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4430 return false;
4431
4432 SDValue Op0 = N->getOperand(0);
4433 SDValue Op1 = N->getOperand(1);
4434 assert(Op0.getValueType() == Op1.getValueType());
4435
4436 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4437 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004438 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004439 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004440 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004441 Op = Op0;
4442 else
4443 return false;
4444
4445 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4446
4447 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4448 return false;
4449
4450 return true;
4451}
4452
Dan Gohman475871a2008-07-27 21:46:04 +00004453SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4454 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004455 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004456
Nate Begeman1d4d4142005-09-01 00:19:25 +00004457 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004458 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004459 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004460 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004461 // fold (zext (aext x)) -> (zext x)
4462 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004463 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4464 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004465
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004466 // fold (zext (truncate x)) -> (zext x) or
4467 // (zext (truncate x)) -> (truncate x)
4468 // This is valid when the truncated bits of x are already zero.
4469 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004470 SDValue Op;
4471 APInt KnownZero;
4472 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4473 APInt TruncatedBits =
4474 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4475 APInt(Op.getValueSizeInBits(), 0) :
4476 APInt::getBitsSet(Op.getValueSizeInBits(),
4477 N0.getValueSizeInBits(),
4478 std::min(Op.getValueSizeInBits(),
4479 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004480 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004481 if (VT.bitsGT(Op.getValueType()))
4482 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4483 if (VT.bitsLT(Op.getValueType()))
4484 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4485
4486 return Op;
4487 }
4488 }
4489
Evan Chengc88138f2007-03-22 01:54:19 +00004490 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4491 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004492 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004493 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4494 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004495 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4496 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004497 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004498 // CombineTo deleted the truncate, if needed, but not what's under it.
4499 AddToWorkList(oye);
4500 }
Eli Friedmane545d382011-04-16 23:25:34 +00004501 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004502 }
Evan Chengc88138f2007-03-22 01:54:19 +00004503 }
4504
Chris Lattner6007b842006-09-21 06:00:20 +00004505 // fold (zext (truncate x)) -> (and x, mask)
4506 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004507 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004508
4509 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4510 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4511 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4512 if (NarrowLoad.getNode()) {
4513 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4514 if (NarrowLoad.getNode() != N0.getNode()) {
4515 CombineTo(N0.getNode(), NarrowLoad);
4516 // CombineTo deleted the truncate, if needed, but not what's under it.
4517 AddToWorkList(oye);
4518 }
4519 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4520 }
4521
Dan Gohman475871a2008-07-27 21:46:04 +00004522 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004523 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004524 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004525 AddToWorkList(Op.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004526 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004527 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004528 AddToWorkList(Op.getNode());
Chris Lattner6007b842006-09-21 06:00:20 +00004529 }
Dan Gohman87862e72009-12-11 21:31:27 +00004530 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4531 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004532 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004533
Dan Gohman97121ba2009-04-08 00:15:30 +00004534 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4535 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004536 if (N0.getOpcode() == ISD::AND &&
4537 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004538 N0.getOperand(1).getOpcode() == ISD::Constant &&
4539 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4540 N0.getValueType()) ||
4541 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004542 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004543 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004544 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004545 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004546 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004547 }
Dan Gohman220a8232008-03-03 23:51:38 +00004548 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004549 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004550 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4551 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004552 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004553
Evan Cheng110dec22005-12-14 02:19:23 +00004554 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004555 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004556 // on vectors in one instruction. We only perform this transformation on
4557 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004558 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004559 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004560 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004561 bool DoXform = true;
4562 SmallVector<SDNode*, 4> SetCCs;
4563 if (!N0.hasOneUse())
4564 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4565 if (DoXform) {
4566 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004567 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004568 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004569 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004570 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004571 LN0->isVolatile(), LN0->isNonTemporal(),
4572 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004573 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004574 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4575 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004576 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004577
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004578 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4579 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004580 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004581 }
Evan Cheng110dec22005-12-14 02:19:23 +00004582 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004583
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004584 // fold (zext (and/or/xor (load x), cst)) ->
4585 // (and/or/xor (zextload x), (zext cst))
4586 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4587 N0.getOpcode() == ISD::XOR) &&
4588 isa<LoadSDNode>(N0.getOperand(0)) &&
4589 N0.getOperand(1).getOpcode() == ISD::Constant &&
4590 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4591 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4592 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4593 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4594 bool DoXform = true;
4595 SmallVector<SDNode*, 4> SetCCs;
4596 if (!N0.hasOneUse())
4597 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4598 SetCCs, TLI);
4599 if (DoXform) {
4600 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4601 LN0->getChain(), LN0->getBasePtr(),
4602 LN0->getPointerInfo(),
4603 LN0->getMemoryVT(),
4604 LN0->isVolatile(),
4605 LN0->isNonTemporal(),
4606 LN0->getAlignment());
4607 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4608 Mask = Mask.zext(VT.getSizeInBits());
4609 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4610 ExtLoad, DAG.getConstant(Mask, VT));
4611 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4612 N0.getOperand(0).getDebugLoc(),
4613 N0.getOperand(0).getValueType(), ExtLoad);
4614 CombineTo(N, And);
4615 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4616 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4617 ISD::ZERO_EXTEND);
4618 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4619 }
4620 }
4621 }
4622
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004623 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4624 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004625 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4626 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004627 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004628 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004629 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004630 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004631 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004632 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004633 LN0->getBasePtr(), LN0->getPointerInfo(),
4634 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004635 LN0->isVolatile(), LN0->isNonTemporal(),
4636 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004637 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004638 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004639 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4640 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004641 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004642 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004643 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004644 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004645
Chris Lattner20a35c32007-04-11 05:32:27 +00004646 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004647 if (!LegalOperations && VT.isVector()) {
4648 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4649 // Only do this before legalize for now.
4650 EVT N0VT = N0.getOperand(0).getValueType();
4651 EVT EltVT = VT.getVectorElementType();
4652 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4653 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004654 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004655 // We know that the # elements of the results is the same as the
4656 // # elements of the compare (and the # elements of the compare result
4657 // for that matter). Check to see that they are the same size. If so,
4658 // we know that the element size of the sext'd result matches the
4659 // element size of the compare operands.
4660 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004661 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004662 N0.getOperand(1),
4663 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4664 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4665 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004666
4667 // If the desired elements are smaller or larger than the source
4668 // elements we can use a matching integer vector type and then
4669 // truncate/sign extend
4670 EVT MatchingElementType =
4671 EVT::getIntegerVT(*DAG.getContext(),
4672 N0VT.getScalarType().getSizeInBits());
4673 EVT MatchingVectorType =
4674 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4675 N0VT.getVectorNumElements());
4676 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004677 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004678 N0.getOperand(1),
4679 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4680 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4681 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4682 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4683 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004684 }
4685
4686 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004687 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004688 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004689 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004690 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004691 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004692 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004693
Evan Cheng9818c042009-12-15 03:00:32 +00004694 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004695 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004696 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004697 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4698 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004699 SDValue ShAmt = N0.getOperand(1);
4700 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004701 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004702 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004703 // If the original shl may be shifting out bits, do not perform this
4704 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004705 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4706 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4707 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004708 return SDValue();
4709 }
Chris Lattnere0751182011-02-13 19:09:16 +00004710
4711 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004712
4713 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004714 if (VT.getSizeInBits() >= 256)
4715 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004716
Chris Lattnere0751182011-02-13 19:09:16 +00004717 return DAG.getNode(N0.getOpcode(), DL, VT,
4718 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4719 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004720 }
4721
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004722 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004723}
4724
Dan Gohman475871a2008-07-27 21:46:04 +00004725SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4726 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004727 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004728
Chris Lattner5ffc0662006-05-05 05:58:59 +00004729 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004730 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004731 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004732 // fold (aext (aext x)) -> (aext x)
4733 // fold (aext (zext x)) -> (zext x)
4734 // fold (aext (sext x)) -> (sext x)
4735 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4736 N0.getOpcode() == ISD::ZERO_EXTEND ||
4737 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004738 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004739
Evan Chengc88138f2007-03-22 01:54:19 +00004740 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4741 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4742 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004743 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4744 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004745 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4746 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004747 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004748 // CombineTo deleted the truncate, if needed, but not what's under it.
4749 AddToWorkList(oye);
4750 }
Eli Friedmane545d382011-04-16 23:25:34 +00004751 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004752 }
Evan Chengc88138f2007-03-22 01:54:19 +00004753 }
4754
Chris Lattner84750582006-09-20 06:29:17 +00004755 // fold (aext (truncate x))
4756 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004757 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004758 if (TruncOp.getValueType() == VT)
4759 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004760 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004761 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4762 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004763 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004764
Dan Gohman97121ba2009-04-08 00:15:30 +00004765 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4766 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004767 if (N0.getOpcode() == ISD::AND &&
4768 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004769 N0.getOperand(1).getOpcode() == ISD::Constant &&
4770 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4771 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004772 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004773 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004774 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004775 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004776 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004777 }
Dan Gohman220a8232008-03-03 23:51:38 +00004778 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004779 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004780 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4781 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004782 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004783
Chris Lattner5ffc0662006-05-05 05:58:59 +00004784 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004785 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004786 // on vectors in one instruction. We only perform this transformation on
4787 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004788 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004789 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004790 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004791 bool DoXform = true;
4792 SmallVector<SDNode*, 4> SetCCs;
4793 if (!N0.hasOneUse())
4794 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4795 if (DoXform) {
4796 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004797 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004798 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004799 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004800 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004801 LN0->isVolatile(), LN0->isNonTemporal(),
4802 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004803 CombineTo(N, ExtLoad);
4804 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4805 N0.getValueType(), ExtLoad);
4806 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004807 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4808 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004809 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4810 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004811 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004812
Chris Lattner5ffc0662006-05-05 05:58:59 +00004813 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4814 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4815 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004816 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004817 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004818 N0.hasOneUse()) {
4819 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004820 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004821 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4822 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004823 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004824 LN0->isVolatile(), LN0->isNonTemporal(),
4825 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004826 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004827 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004828 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4829 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004830 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004831 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004832 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004833
Chris Lattner20a35c32007-04-11 05:32:27 +00004834 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004835 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4836 // Only do this before legalize for now.
4837 if (VT.isVector() && !LegalOperations) {
4838 EVT N0VT = N0.getOperand(0).getValueType();
4839 // We know that the # elements of the results is the same as the
4840 // # elements of the compare (and the # elements of the compare result
4841 // for that matter). Check to see that they are the same size. If so,
4842 // we know that the element size of the sext'd result matches the
4843 // element size of the compare operands.
4844 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004845 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004846 N0.getOperand(1),
4847 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004848 // If the desired elements are smaller or larger than the source
4849 // elements we can use a matching integer vector type and then
4850 // truncate/sign extend
4851 else {
Duncan Sands34727662010-07-12 08:16:59 +00004852 EVT MatchingElementType =
4853 EVT::getIntegerVT(*DAG.getContext(),
4854 N0VT.getScalarType().getSizeInBits());
4855 EVT MatchingVectorType =
4856 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4857 N0VT.getVectorNumElements());
4858 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004859 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004860 N0.getOperand(1),
4861 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4862 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004863 }
4864 }
4865
4866 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004867 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004868 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004869 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004870 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004871 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004872 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004873 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004874
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004875 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004876}
4877
Chris Lattner2b4c2792007-10-13 06:35:54 +00004878/// GetDemandedBits - See if the specified operand can be simplified with the
4879/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004880/// simpler operand, otherwise return a null SDValue.
4881SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004882 switch (V.getOpcode()) {
4883 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004884 case ISD::Constant: {
4885 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4886 assert(CV != 0 && "Const value should be ConstSDNode.");
4887 const APInt &CVal = CV->getAPIntValue();
4888 APInt NewVal = CVal & Mask;
4889 if (NewVal != CVal) {
4890 return DAG.getConstant(NewVal, V.getValueType());
4891 }
4892 break;
4893 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004894 case ISD::OR:
4895 case ISD::XOR:
4896 // If the LHS or RHS don't contribute bits to the or, drop them.
4897 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4898 return V.getOperand(1);
4899 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4900 return V.getOperand(0);
4901 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004902 case ISD::SRL:
4903 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00004904 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00004905 break;
4906 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4907 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004908 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00004909
Dan Gohmancc91d632009-01-03 19:22:06 +00004910 // Watch out for shift count overflow though.
4911 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004912 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00004913 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00004914 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004915 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00004916 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00004917 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004918 }
Dan Gohman475871a2008-07-27 21:46:04 +00004919 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00004920}
4921
Evan Chengc88138f2007-03-22 01:54:19 +00004922/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4923/// bits and then truncated to a narrower type and where N is a multiple
4924/// of number of bits of the narrower type, transform it to a narrower load
4925/// from address + N / num of bits of new type. If the result is to be
4926/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00004927SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00004928 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004929
Evan Chengc88138f2007-03-22 01:54:19 +00004930 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00004931 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004932 EVT VT = N->getValueType(0);
4933 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00004934
Dan Gohman7f8613e2008-08-14 20:04:46 +00004935 // This transformation isn't valid for vector loads.
4936 if (VT.isVector())
4937 return SDValue();
4938
Dan Gohmand1996362010-01-09 02:13:55 +00004939 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00004940 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00004941 if (Opc == ISD::SIGN_EXTEND_INREG) {
4942 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00004943 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004944 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00004945 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004946 ExtType = ISD::ZEXTLOAD;
4947 N0 = SDValue(N, 0);
4948 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
4949 if (!N01) return SDValue();
4950 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
4951 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00004952 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00004953 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
4954 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004955
Owen Andersone50ed302009-08-10 22:56:29 +00004956 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00004957
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004958 // Do not generate loads of non-round integer types since these can
4959 // be expensive (and would be wrong if the type is not byte sized).
4960 if (!ExtVT.isRound())
4961 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004962
Evan Chengc88138f2007-03-22 01:54:19 +00004963 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004964 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00004965 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004966 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004967 // Is the shift amount a multiple of size of VT?
4968 if ((ShAmt & (EVTBits-1)) == 0) {
4969 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00004970 // Is the load width a multiple of size of VT?
4971 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00004972 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004973 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004974
Chris Lattnercbf68df2010-12-22 08:02:57 +00004975 // At this point, we must have a load or else we can't do the transform.
4976 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004977
Chris Lattner2831a192010-10-01 05:36:09 +00004978 // If the shift amount is larger than the input type then we're not
4979 // accessing any of the loaded bytes. If the load was a zextload/extload
4980 // then the result of the shift+trunc is zero/undef (handled elsewhere).
4981 // If the load was a sextload then the result is a splat of the sign bit
4982 // of the extended byte. This is not worth optimizing for.
Chris Lattnercbf68df2010-12-22 08:02:57 +00004983 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00004984 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004985 }
4986 }
4987
Dan Gohman394d6292010-11-03 01:47:46 +00004988 // If the load is shifted left (and the result isn't shifted back right),
4989 // we can fold the truncate through the shift.
4990 unsigned ShLeftAmt = 0;
4991 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00004992 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00004993 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
4994 ShLeftAmt = N01->getZExtValue();
4995 N0 = N0.getOperand(0);
4996 }
4997 }
Owen Anderson95771af2011-02-25 21:41:48 +00004998
Chris Lattner4c32bc22010-12-22 07:36:50 +00004999 // If we haven't found a load, we can't narrow it. Don't transform one with
5000 // multiple uses, this would require adding a new load.
5001 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
5002 // Don't change the width of a volatile load.
5003 cast<LoadSDNode>(N0)->isVolatile())
5004 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005005
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005006 // Verify that we are actually reducing a load width here.
5007 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005008 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005009
Chris Lattner4c32bc22010-12-22 07:36:50 +00005010 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5011 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005012
Chris Lattner4c32bc22010-12-22 07:36:50 +00005013 // For big endian targets, we need to adjust the offset to the pointer to
5014 // load the correct bytes.
5015 if (TLI.isBigEndian()) {
5016 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5017 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5018 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005019 }
5020
Chris Lattner4c32bc22010-12-22 07:36:50 +00005021 uint64_t PtrOff = ShAmt / 8;
5022 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
5023 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
5024 PtrType, LN0->getBasePtr(),
5025 DAG.getConstant(PtrOff, PtrType));
5026 AddToWorkList(NewPtr.getNode());
5027
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005028 SDValue Load;
5029 if (ExtType == ISD::NON_EXTLOAD)
5030 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
5031 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005032 LN0->isVolatile(), LN0->isNonTemporal(),
5033 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005034 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00005035 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005036 LN0->getPointerInfo().getWithOffset(PtrOff),
5037 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5038 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005039
5040 // Replace the old load's chain with the new load's chain.
5041 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005042 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005043
5044 // Shift the result left, if we've swallowed a left shift.
5045 SDValue Result = Load;
5046 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005047 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005048 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5049 ShImmTy = VT;
5050 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
5051 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
5052 }
5053
5054 // Return the new loaded value.
5055 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005056}
5057
Dan Gohman475871a2008-07-27 21:46:04 +00005058SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5059 SDValue N0 = N->getOperand(0);
5060 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005061 EVT VT = N->getValueType(0);
5062 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005063 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005064 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005065
Nate Begeman1d4d4142005-09-01 00:19:25 +00005066 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005067 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00005068 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005069
Chris Lattner541a24f2006-05-06 22:43:44 +00005070 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005071 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005072 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005073
Nate Begeman646d7e22005-09-02 21:18:40 +00005074 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5075 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00005076 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00005077 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5078 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00005079 }
Chris Lattner4b37e872006-05-08 21:18:59 +00005080
Dan Gohman75dcf082008-07-31 00:50:31 +00005081 // fold (sext_in_reg (sext x)) -> (sext x)
5082 // fold (sext_in_reg (aext x)) -> (sext x)
5083 // if x is small enough.
5084 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5085 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005086 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5087 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00005088 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005089 }
5090
Chris Lattner95a5e052007-04-17 19:03:21 +00005091 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005092 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005093 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005094
Chris Lattner95a5e052007-04-17 19:03:21 +00005095 // fold operands of sext_in_reg based on knowledge that the top bits are not
5096 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005097 if (SimplifyDemandedBits(SDValue(N, 0)))
5098 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005099
Evan Chengc88138f2007-03-22 01:54:19 +00005100 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5101 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005102 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005103 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005104 return NarrowLoad;
5105
Bill Wendling8509c902009-01-30 22:33:24 +00005106 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
5107 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005108 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5109 if (N0.getOpcode() == ISD::SRL) {
5110 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005111 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Chris Lattner4b37e872006-05-08 21:18:59 +00005112 // We can turn this into an SRA iff the input to the SRL is already sign
5113 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005114 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005115 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005116 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5117 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005118 }
5119 }
Evan Chengc88138f2007-03-22 01:54:19 +00005120
Nate Begemanded49632005-10-13 03:11:28 +00005121 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005122 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005123 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005124 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005125 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005126 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005127 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005128 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005129 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005130 LN0->getBasePtr(), LN0->getPointerInfo(),
5131 EVT,
David Greene1e559442010-02-15 17:00:31 +00005132 LN0->isVolatile(), LN0->isNonTemporal(),
5133 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005134 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005135 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005136 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005137 }
5138 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005139 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005140 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005141 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005142 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005143 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005144 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005145 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005146 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005147 LN0->getBasePtr(), LN0->getPointerInfo(),
5148 EVT,
David Greene1e559442010-02-15 17:00:31 +00005149 LN0->isVolatile(), LN0->isNonTemporal(),
5150 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005151 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005152 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005153 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005154 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005155
5156 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5157 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5158 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5159 N0.getOperand(1), false);
5160 if (BSwap.getNode() != 0)
5161 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5162 BSwap, N1);
5163 }
5164
Dan Gohman475871a2008-07-27 21:46:04 +00005165 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005166}
5167
Dan Gohman475871a2008-07-27 21:46:04 +00005168SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5169 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005170 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005171 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005172
5173 // noop truncate
5174 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005175 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005176 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005177 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005178 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005179 // fold (truncate (truncate x)) -> (truncate x)
5180 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005181 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005182 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005183 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5184 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005185 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005186 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005187 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005188 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5189 N0.getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005190 else if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005191 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005192 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005193 else
5194 // if the source and dest are the same type, we can drop both the extend
Evan Chengd40d03e2010-01-06 19:38:29 +00005195 // and the truncate.
Nate Begeman83e75ec2005-09-06 04:43:02 +00005196 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005197 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005198
Nadav Rotemcc870a82012-02-05 11:39:23 +00005199 // Fold extract-and-trunc into a narrow extract. For example:
5200 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5201 // i32 y = TRUNCATE(i64 x)
5202 // -- becomes --
5203 // v16i8 b = BITCAST (v2i64 val)
5204 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5205 //
5206 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005207 // creates this pattern) and before operation legalization after which
5208 // we need to be more careful about the vector instructions that we generate.
5209 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5210 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5211
5212 EVT VecTy = N0.getOperand(0).getValueType();
5213 EVT ExTy = N0.getValueType();
5214 EVT TrTy = N->getValueType(0);
5215
5216 unsigned NumElem = VecTy.getVectorNumElements();
5217 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5218
5219 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5220 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5221
5222 SDValue EltNo = N0->getOperand(1);
5223 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5224 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5225
5226 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5227
5228 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5229 NVT, N0.getOperand(0));
5230
5231 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5232 N->getDebugLoc(), TrTy, V,
5233 DAG.getConstant(Index, MVT::i32));
5234 }
5235 }
5236
Chris Lattner2b4c2792007-10-13 06:35:54 +00005237 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005238 // only the low bits are being used.
5239 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005240 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005241 // may have different active low bits.
5242 if (!VT.isVector()) {
5243 SDValue Shorter =
5244 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5245 VT.getSizeInBits()));
5246 if (Shorter.getNode())
5247 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5248 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005249 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005250 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005251 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5252 SDValue Reduced = ReduceLoadWidth(N);
5253 if (Reduced.getNode())
5254 return Reduced;
5255 }
5256
5257 // Simplify the operands using demanded-bits information.
5258 if (!VT.isVector() &&
5259 SimplifyDemandedBits(SDValue(N, 0)))
5260 return SDValue(N, 0);
5261
Evan Chenge5b51ac2010-04-17 06:13:15 +00005262 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005263}
5264
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005265static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005266 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005267 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005268 return Elt.getNode();
5269 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005270}
5271
5272/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005273/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005274SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005275 assert(N->getOpcode() == ISD::BUILD_PAIR);
5276
Nate Begemanabc01992009-06-05 21:37:30 +00005277 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5278 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005279 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5280 LD1->getPointerInfo().getAddrSpace() !=
5281 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005282 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005283 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005284
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005285 if (ISD::isNON_EXTLoad(LD2) &&
5286 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005287 // If both are volatile this would reduce the number of volatile loads.
5288 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005289 !LD1->isVolatile() &&
5290 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005291 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005292 unsigned Align = LD1->getAlignment();
Dan Gohman6448d912008-09-04 15:39:15 +00005293 unsigned NewAlign = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005294 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005295
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005296 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005297 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005298 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005299 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005300 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005301 }
Bill Wendling67a67682009-01-30 22:44:24 +00005302
Dan Gohman475871a2008-07-27 21:46:04 +00005303 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005304}
5305
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005306SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005307 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005308 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005309
Dan Gohman7f321562007-06-25 16:23:39 +00005310 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5311 // Only do this before legalize, since afterward the target may be depending
5312 // on the bitconvert.
5313 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005314 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005315 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005316 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005317 bool isSimple = true;
5318 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5319 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5320 N0.getOperand(i).getOpcode() != ISD::Constant &&
5321 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005322 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005323 break;
5324 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005325
Owen Andersone50ed302009-08-10 22:56:29 +00005326 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005327 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005328 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005329 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005330 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005331 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005332
Dan Gohman3dd168d2008-09-05 01:58:21 +00005333 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005334 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005335 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005336 if (Res.getNode() != N) {
5337 if (!LegalOperations ||
5338 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5339 return Res;
5340
5341 // Folding it resulted in an illegal node, and it's too late to
5342 // do that. Clean up the old node and forego the transformation.
5343 // Ideally this won't happen very often, because instcombine
5344 // and the earlier dagcombine runs (where illegal nodes are
5345 // permitted) should have folded most of them already.
5346 DAG.DeleteNode(Res.getNode());
5347 }
Chris Lattner94683772005-12-23 05:30:37 +00005348 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005349
Bill Wendling67a67682009-01-30 22:44:24 +00005350 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005351 if (N0.getOpcode() == ISD::BITCAST)
5352 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005353 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005354
Chris Lattner57104102005-12-23 05:44:41 +00005355 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005356 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005357 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005358 // Do not change the width of a volatile load.
5359 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005360 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005361 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman6448d912008-09-04 15:39:15 +00005362 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005363 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005364 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005365
Evan Cheng59d5b682007-05-07 21:27:48 +00005366 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005367 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005368 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005369 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005370 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005371 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005372 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005373 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005374 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005375 Load.getValue(1));
5376 return Load;
5377 }
Chris Lattner57104102005-12-23 05:44:41 +00005378 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005379
Bill Wendling67a67682009-01-30 22:44:24 +00005380 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5381 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005382 // This often reduces constant pool loads.
Owen Anderson29f60f32012-04-02 22:10:29 +00005383 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) ||
5384 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005385 N0.getNode()->hasOneUse() && VT.isInteger() && !VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005386 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005387 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005388 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005389
Duncan Sands83ec4b62008-06-06 12:08:01 +00005390 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005391 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005392 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5393 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005394 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005395 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5396 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005397 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005398
Bill Wendling67a67682009-01-30 22:44:24 +00005399 // fold (bitconvert (fcopysign cst, x)) ->
5400 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5401 // Note that we don't handle (copysign x, cst) because this can always be
5402 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005403 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005404 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005405 VT.isInteger() && !VT.isVector()) {
5406 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005407 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005408 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005409 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005410 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005411 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005412
Duncan Sands25cf2272008-11-24 14:53:14 +00005413 // If X has a different width than the result/lhs, sext it or truncate it.
5414 unsigned VTWidth = VT.getSizeInBits();
5415 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005416 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005417 AddToWorkList(X.getNode());
5418 } else if (OrigXWidth > VTWidth) {
5419 // To get the sign bit in the right place, we have to shift it right
5420 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005421 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005422 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005423 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5424 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005425 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005426 AddToWorkList(X.getNode());
5427 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005428
Duncan Sands25cf2272008-11-24 14:53:14 +00005429 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005430 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005431 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005432 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005433
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005434 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005435 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005436 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005437 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005438 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005439
Bill Wendling67a67682009-01-30 22:44:24 +00005440 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005441 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005442 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005443
Scott Michelfdc40a02009-02-17 22:15:04 +00005444 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005445 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005446 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5447 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005448 return CombineLD;
5449 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005450
Dan Gohman475871a2008-07-27 21:46:04 +00005451 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005452}
5453
Dan Gohman475871a2008-07-27 21:46:04 +00005454SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005455 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005456 return CombineConsecutiveLoads(N, VT);
5457}
5458
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005459/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005460/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005461/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005462SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005463ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005464 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005465
Chris Lattner6258fb22006-04-02 02:53:43 +00005466 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005467 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005468
Duncan Sands83ec4b62008-06-06 12:08:01 +00005469 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5470 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005471
Chris Lattner6258fb22006-04-02 02:53:43 +00005472 // If this is a conversion of N elements of one type to N elements of another
5473 // type, convert each element. This handles FP<->INT cases.
5474 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005475 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5476 BV->getValueType(0).getVectorNumElements());
5477
5478 // Due to the FP element handling below calling this routine recursively,
5479 // we can end up with a scalar-to-vector node here.
5480 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005481 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5482 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005483 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005484
Dan Gohman475871a2008-07-27 21:46:04 +00005485 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005486 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005487 SDValue Op = BV->getOperand(i);
5488 // If the vector element type is not legal, the BUILD_VECTOR operands
5489 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005490 if (Op.getValueType() != SrcEltVT)
5491 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005492 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005493 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005494 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005495 }
Evan Chenga87008d2009-02-25 22:49:59 +00005496 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5497 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005498 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005499
Chris Lattner6258fb22006-04-02 02:53:43 +00005500 // Otherwise, we're growing or shrinking the elements. To avoid having to
5501 // handle annoying details of growing/shrinking FP values, we convert them to
5502 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005503 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005504 // Convert the input float vector to a int vector where the elements are the
5505 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005506 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005507 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005508 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005509 SrcEltVT = IntVT;
5510 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005511
Chris Lattner6258fb22006-04-02 02:53:43 +00005512 // Now we know the input is an integer vector. If the output is a FP type,
5513 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005514 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005515 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005516 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005517 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005518
Chris Lattner6258fb22006-04-02 02:53:43 +00005519 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005520 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005521 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005522
Chris Lattner6258fb22006-04-02 02:53:43 +00005523 // Okay, we know the src/dst types are both integers of differing types.
5524 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005525 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005526 if (SrcBitSize < DstBitSize) {
5527 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005528
Dan Gohman475871a2008-07-27 21:46:04 +00005529 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005530 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005531 i += NumInputsPerOutput) {
5532 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005533 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005534 bool EltIsUndef = true;
5535 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5536 // Shift the previously computed bits over.
5537 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005538 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005539 if (Op.getOpcode() == ISD::UNDEF) continue;
5540 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005541
Jay Foad40f8f622010-12-07 08:25:19 +00005542 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005543 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005544 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005545
Chris Lattner6258fb22006-04-02 02:53:43 +00005546 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005547 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005548 else
5549 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5550 }
5551
Owen Anderson23b9b192009-08-12 00:36:31 +00005552 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005553 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5554 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005555 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005556
Chris Lattner6258fb22006-04-02 02:53:43 +00005557 // Finally, this must be the case where we are shrinking elements: each input
5558 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005559 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005560 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005561 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5562 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005563 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005564
Dan Gohman7f321562007-06-25 16:23:39 +00005565 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005566 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5567 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005568 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005569 continue;
5570 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005571
Jay Foad40f8f622010-12-07 08:25:19 +00005572 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5573 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005574
Chris Lattner6258fb22006-04-02 02:53:43 +00005575 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005576 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005577 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005578 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005579 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005580 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5581 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005582 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005583 }
5584
5585 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005586 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005587 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5588 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005589
Evan Chenga87008d2009-02-25 22:49:59 +00005590 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5591 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005592}
5593
Dan Gohman475871a2008-07-27 21:46:04 +00005594SDValue DAGCombiner::visitFADD(SDNode *N) {
5595 SDValue N0 = N->getOperand(0);
5596 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005597 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5598 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005599 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005600
Dan Gohman7f321562007-06-25 16:23:39 +00005601 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005602 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005603 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005604 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005605 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005606
Bill Wendlingb0162f52009-01-30 22:53:48 +00005607 // fold (fadd c1, c2) -> (fadd c1, c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005608 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005609 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005610 // canonicalize constant to RHS
5611 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005612 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5613 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005614 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5615 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005616 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005617 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005618 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5619 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005620 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005621 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005622 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005623 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5624 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005625 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005626 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005627
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005628 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005629 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5630 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5631 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005632 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005633 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5634 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005635
Dan Gohman475871a2008-07-27 21:46:04 +00005636 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005637}
5638
Dan Gohman475871a2008-07-27 21:46:04 +00005639SDValue DAGCombiner::visitFSUB(SDNode *N) {
5640 SDValue N0 = N->getOperand(0);
5641 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005642 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5643 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005644 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005645
Dan Gohman7f321562007-06-25 16:23:39 +00005646 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005647 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005648 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005649 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005650 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005651
Nate Begemana0e221d2005-10-18 00:28:13 +00005652 // fold (fsub c1, c2) -> c1-c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005653 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005654 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005655 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005656 if (DAG.getTarget().Options.UnsafeFPMath &&
5657 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005658 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005659 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005660 if (DAG.getTarget().Options.UnsafeFPMath &&
5661 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005662 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005663 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005664 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005665 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005666 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005667 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005668 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005669 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005670 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005671
Bill Wendling5a894342012-03-15 05:12:00 +00005672 // If 'unsafe math' is enabled, fold
5673 // (fsub x, (fadd x, y)) -> (fneg y) &
5674 // (fsub x, (fadd y, x)) -> (fneg y)
5675 if (DAG.getTarget().Options.UnsafeFPMath) {
5676 if (N1.getOpcode() == ISD::FADD) {
5677 SDValue N10 = N1->getOperand(0);
5678 SDValue N11 = N1->getOperand(1);
5679
5680 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
5681 &DAG.getTarget().Options))
5682 return GetNegatedExpression(N11, DAG, LegalOperations);
5683 else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
5684 &DAG.getTarget().Options))
5685 return GetNegatedExpression(N10, DAG, LegalOperations);
5686 }
5687 }
5688
Dan Gohman475871a2008-07-27 21:46:04 +00005689 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005690}
5691
Dan Gohman475871a2008-07-27 21:46:04 +00005692SDValue DAGCombiner::visitFMUL(SDNode *N) {
5693 SDValue N0 = N->getOperand(0);
5694 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005695 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5696 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005697 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005698 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +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
Nate Begeman11af4ea2005-10-17 20:40:11 +00005706 // fold (fmul c1, c2) -> c1*c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005707 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005708 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005709 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00005710 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005711 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5712 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005713 if (DAG.getTarget().Options.UnsafeFPMath &&
5714 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005715 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00005716 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005717 if (DAG.getTarget().Options.UnsafeFPMath &&
5718 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00005719 return N1;
Owen Anderson363e4b92012-05-02 21:32:35 +00005720 // fold (fmul A, 1.0) -> A
5721 if (N1CFP && N1CFP->isExactlyValue(1.0))
5722 return N0;
Nate Begeman11af4ea2005-10-17 20:40:11 +00005723 // fold (fmul X, 2.0) -> (fadd X, X)
5724 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005725 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00005726 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00005727 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00005728 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005729 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005730
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005731 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005732 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005733 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005734 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005735 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005736 // Both can be negated for free, check to see if at least one is cheaper
5737 // negated.
5738 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005739 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005740 GetNegatedExpression(N0, DAG, LegalOperations),
5741 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005742 }
5743 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005744
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005745 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005746 if (DAG.getTarget().Options.UnsafeFPMath &&
5747 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005748 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005749 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00005750 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00005751 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005752
Dan Gohman475871a2008-07-27 21:46:04 +00005753 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005754}
5755
Owen Anderson062c0a52012-05-02 22:17:40 +00005756SDValue DAGCombiner::visitFMA(SDNode *N) {
5757 SDValue N0 = N->getOperand(0);
5758 SDValue N1 = N->getOperand(1);
5759 SDValue N2 = N->getOperand(2);
5760 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5761 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
5762 EVT VT = N->getValueType(0);
5763
5764 if (N0CFP && N0CFP->isExactlyValue(1.0))
5765 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N2);
5766 if (N1CFP && N1CFP->isExactlyValue(1.0))
5767 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N2);
5768
5769 return SDValue();
5770}
5771
Dan Gohman475871a2008-07-27 21:46:04 +00005772SDValue DAGCombiner::visitFDIV(SDNode *N) {
5773 SDValue N0 = N->getOperand(0);
5774 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005775 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5776 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005777 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005778 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005779
Dan Gohman7f321562007-06-25 16:23:39 +00005780 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005781 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005782 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005783 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005784 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005785
Nate Begemana148d982006-01-18 22:35:16 +00005786 // fold (fdiv c1, c2) -> c1/c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005787 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005788 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005789
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00005790 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
5791 if (N1CFP && VT != MVT::ppcf128 && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00005792 // Compute the reciprocal 1.0 / c2.
5793 APFloat N1APF = N1CFP->getValueAPF();
5794 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
5795 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00005796 // Only do the transform if the reciprocal is a legal fp immediate that
5797 // isn't too nasty (eg NaN, denormal, ...).
5798 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00005799 (!LegalOperations ||
5800 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
5801 // backend)... we should handle this gracefully after Legalize.
5802 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
5803 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
5804 TLI.isFPImmLegal(Recip, VT)))
Duncan Sands961d6662012-04-07 20:04:00 +00005805 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0,
5806 DAG.getConstantFP(Recip, VT));
5807 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005808
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005809 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005810 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005811 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005812 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005813 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005814 // Both can be negated for free, check to see if at least one is cheaper
5815 // negated.
5816 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00005817 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005818 GetNegatedExpression(N0, DAG, LegalOperations),
5819 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005820 }
5821 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005822
Dan Gohman475871a2008-07-27 21:46:04 +00005823 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005824}
5825
Dan Gohman475871a2008-07-27 21:46:04 +00005826SDValue DAGCombiner::visitFREM(SDNode *N) {
5827 SDValue N0 = N->getOperand(0);
5828 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005829 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5830 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005831 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00005832
Nate Begemana148d982006-01-18 22:35:16 +00005833 // fold (frem c1, c2) -> fmod(c1,c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005834 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005835 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00005836
Dan Gohman475871a2008-07-27 21:46:04 +00005837 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005838}
5839
Dan Gohman475871a2008-07-27 21:46:04 +00005840SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
5841 SDValue N0 = N->getOperand(0);
5842 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00005843 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5844 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005845 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00005846
Owen Anderson825b72b2009-08-11 20:47:22 +00005847 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005848 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005849
Chris Lattner12d83032006-03-05 05:30:57 +00005850 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00005851 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00005852 // copysign(x, c1) -> fabs(x) iff ispos(c1)
5853 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00005854 if (!V.isNegative()) {
5855 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005856 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00005857 } else {
5858 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005859 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00005860 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00005861 }
Chris Lattner12d83032006-03-05 05:30:57 +00005862 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005863
Chris Lattner12d83032006-03-05 05:30:57 +00005864 // copysign(fabs(x), y) -> copysign(x, y)
5865 // copysign(fneg(x), y) -> copysign(x, y)
5866 // copysign(copysign(x,z), y) -> copysign(x, y)
5867 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
5868 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005869 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5870 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00005871
5872 // copysign(x, abs(y)) -> abs(x)
5873 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005874 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005875
Chris Lattner12d83032006-03-05 05:30:57 +00005876 // copysign(x, copysign(y,z)) -> copysign(x, z)
5877 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005878 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5879 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005880
Chris Lattner12d83032006-03-05 05:30:57 +00005881 // copysign(x, fp_extend(y)) -> copysign(x, y)
5882 // copysign(x, fp_round(y)) -> copysign(x, y)
5883 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005884 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5885 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00005886
Dan Gohman475871a2008-07-27 21:46:04 +00005887 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00005888}
5889
Dan Gohman475871a2008-07-27 21:46:04 +00005890SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
5891 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005892 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005893 EVT VT = N->getValueType(0);
5894 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00005895
Nate Begeman1d4d4142005-09-01 00:19:25 +00005896 // fold (sint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005897 if (N0C && OpVT != MVT::ppcf128 &&
5898 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005899 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005900 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005901 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005902
Chris Lattnercda88752008-06-26 00:16:49 +00005903 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
5904 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005905 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
5906 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005907 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005908 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005909 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005910 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005911
Dan Gohman475871a2008-07-27 21:46:04 +00005912 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005913}
5914
Dan Gohman475871a2008-07-27 21:46:04 +00005915SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
5916 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005917 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005918 EVT VT = N->getValueType(0);
5919 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00005920
Nate Begeman1d4d4142005-09-01 00:19:25 +00005921 // fold (uint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005922 if (N0C && OpVT != MVT::ppcf128 &&
5923 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005924 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005925 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005926 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005927
Chris Lattnercda88752008-06-26 00:16:49 +00005928 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
5929 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005930 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
5931 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005932 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005933 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005934 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005935 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005936
Dan Gohman475871a2008-07-27 21:46:04 +00005937 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005938}
5939
Dan Gohman475871a2008-07-27 21:46:04 +00005940SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
5941 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005942 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005943 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005944
Nate Begeman1d4d4142005-09-01 00:19:25 +00005945 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00005946 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005947 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
5948
Dan Gohman475871a2008-07-27 21:46:04 +00005949 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005950}
5951
Dan Gohman475871a2008-07-27 21:46:04 +00005952SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
5953 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005954 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005955 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005956
Nate Begeman1d4d4142005-09-01 00:19:25 +00005957 // fold (fp_to_uint c1fp) -> c1
Owen Anderson825b72b2009-08-11 20:47:22 +00005958 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005959 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
5960
Dan Gohman475871a2008-07-27 21:46:04 +00005961 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005962}
5963
Dan Gohman475871a2008-07-27 21:46:04 +00005964SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
5965 SDValue N0 = N->getOperand(0);
5966 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005967 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005968 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005969
Nate Begeman1d4d4142005-09-01 00:19:25 +00005970 // fold (fp_round c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00005971 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005972 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005973
Chris Lattner79dbea52006-03-13 06:26:26 +00005974 // fold (fp_round (fp_extend x)) -> x
5975 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
5976 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005977
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005978 // fold (fp_round (fp_round x)) -> (fp_round x)
5979 if (N0.getOpcode() == ISD::FP_ROUND) {
5980 // This is a value preserving truncation if both round's are.
5981 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005982 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00005983 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005984 DAG.getIntPtrConstant(IsTrunc));
5985 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005986
Chris Lattner79dbea52006-03-13 06:26:26 +00005987 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00005988 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00005989 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
5990 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00005991 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00005992 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5993 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00005994 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005995
Dan Gohman475871a2008-07-27 21:46:04 +00005996 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005997}
5998
Dan Gohman475871a2008-07-27 21:46:04 +00005999SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6000 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006001 EVT VT = N->getValueType(0);
6002 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00006003 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006004
Nate Begeman1d4d4142005-09-01 00:19:25 +00006005 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00006006 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00006007 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006008 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006009 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006010
Dan Gohman475871a2008-07-27 21:46:04 +00006011 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006012}
6013
Dan Gohman475871a2008-07-27 21:46:04 +00006014SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6015 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006016 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006017 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006018
Chris Lattner5938bef2007-12-29 06:55:23 +00006019 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00006020 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00006021 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00006022 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006023
Nate Begeman1d4d4142005-09-01 00:19:25 +00006024 // fold (fp_extend c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00006025 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006026 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006027
6028 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6029 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006030 if (N0.getOpcode() == ISD::FP_ROUND
6031 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006032 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006033 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006034 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006035 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
6036 In, N0.getOperand(1));
6037 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006038 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006039
Chris Lattner0bd48932008-01-17 07:00:52 +00006040 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006041 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006042 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006043 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006044 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00006045 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006046 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006047 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006048 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006049 LN0->isVolatile(), LN0->isNonTemporal(),
6050 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006051 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006052 CombineTo(N0.getNode(),
6053 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
6054 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006055 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006056 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006057 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006058
Dan Gohman475871a2008-07-27 21:46:04 +00006059 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006060}
6061
Dan Gohman475871a2008-07-27 21:46:04 +00006062SDValue DAGCombiner::visitFNEG(SDNode *N) {
6063 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006064 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006065
Owen Andersonafd3d562012-03-06 00:29:31 +00006066 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6067 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006068 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006069
Chris Lattner3bd39d42008-01-27 17:42:27 +00006070 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6071 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006072 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006073 !VT.isVector() &&
6074 N0.getNode()->hasOneUse() &&
6075 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006076 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006077 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006078 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006079 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
6080 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006081 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006082 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006083 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006084 }
6085 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006086
Dan Gohman475871a2008-07-27 21:46:04 +00006087 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006088}
6089
Dan Gohman475871a2008-07-27 21:46:04 +00006090SDValue DAGCombiner::visitFABS(SDNode *N) {
6091 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006092 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006093 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006094
Nate Begeman1d4d4142005-09-01 00:19:25 +00006095 // fold (fabs c1) -> fabs(c1)
Owen Anderson825b72b2009-08-11 20:47:22 +00006096 if (N0CFP && VT != MVT::ppcf128)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006097 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006098 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006099 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006100 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006101 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006102 // fold (fabs (fcopysign x, y)) -> (fabs x)
6103 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006104 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006105
Chris Lattner3bd39d42008-01-27 17:42:27 +00006106 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6107 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006108 if (!TLI.isFAbsFree(VT) &&
6109 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006110 N0.getOperand(0).getValueType().isInteger() &&
6111 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006112 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006113 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006114 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006115 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006116 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006117 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006118 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006119 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006120 }
6121 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006122
Dan Gohman475871a2008-07-27 21:46:04 +00006123 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006124}
6125
Dan Gohman475871a2008-07-27 21:46:04 +00006126SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6127 SDValue Chain = N->getOperand(0);
6128 SDValue N1 = N->getOperand(1);
6129 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006130
Dan Gohmane0f06c72009-11-17 00:47:23 +00006131 // If N is a constant we could fold this into a fallthrough or unconditional
6132 // branch. However that doesn't happen very often in normal code, because
6133 // Instcombine/SimplifyCFG should have handled the available opportunities.
6134 // If we did this folding here, it would be necessary to update the
6135 // MachineBasicBlock CFG, which is awkward.
6136
Nate Begeman750ac1b2006-02-01 07:19:44 +00006137 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6138 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006139 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006140 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
6141 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006142 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006143 N1.getOperand(0), N1.getOperand(1), N2);
6144 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006145
Evan Cheng2a135ae2010-10-04 22:41:01 +00006146 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6147 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6148 (N1.getOperand(0).hasOneUse() &&
6149 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6150 SDNode *Trunc = 0;
6151 if (N1.getOpcode() == ISD::TRUNCATE) {
6152 // Look pass the truncate.
6153 Trunc = N1.getNode();
6154 N1 = N1.getOperand(0);
6155 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006156
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006157 // Match this pattern so that we can generate simpler code:
6158 //
6159 // %a = ...
6160 // %b = and i32 %a, 2
6161 // %c = srl i32 %b, 1
6162 // brcond i32 %c ...
6163 //
6164 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006165 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006166 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006167 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006168 // %c = setcc eq %b, 0
6169 // brcond %c ...
6170 //
6171 // This applies only when the AND constant value has one bit set and the
6172 // SRL constant is equal to the log2 of the AND constant. The back-end is
6173 // smart enough to convert the result into a TEST/JMP sequence.
6174 SDValue Op0 = N1.getOperand(0);
6175 SDValue Op1 = N1.getOperand(1);
6176
6177 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006178 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006179 SDValue AndOp1 = Op0.getOperand(1);
6180
6181 if (AndOp1.getOpcode() == ISD::Constant) {
6182 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6183
6184 if (AndConst.isPowerOf2() &&
6185 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6186 SDValue SetCC =
6187 DAG.getSetCC(N->getDebugLoc(),
6188 TLI.getSetCCResultType(Op0.getValueType()),
6189 Op0, DAG.getConstant(0, Op0.getValueType()),
6190 ISD::SETNE);
6191
Evan Chengd40d03e2010-01-06 19:38:29 +00006192 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6193 MVT::Other, Chain, SetCC, N2);
6194 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6195 // will convert it back to (X & C1) >> C2.
6196 CombineTo(N, NewBRCond, false);
6197 // Truncate is dead.
6198 if (Trunc) {
6199 removeFromWorkList(Trunc);
6200 DAG.DeleteNode(Trunc);
6201 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006202 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006203 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006204 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006205 removeFromWorkList(N1.getNode());
6206 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006207 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006208 }
6209 }
6210 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006211
6212 if (Trunc)
6213 // Restore N1 if the above transformation doesn't match.
6214 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006215 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006216
Evan Cheng2c755ba2010-02-27 07:36:59 +00006217 // Transform br(xor(x, y)) -> br(x != y)
6218 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6219 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6220 SDNode *TheXor = N1.getNode();
6221 SDValue Op0 = TheXor->getOperand(0);
6222 SDValue Op1 = TheXor->getOperand(1);
6223 if (Op0.getOpcode() == Op1.getOpcode()) {
6224 // Avoid missing important xor optimizations.
6225 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00006226 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006227 DEBUG(dbgs() << "\nReplacing.8 ";
6228 TheXor->dump(&DAG);
6229 dbgs() << "\nWith: ";
6230 Tmp.getNode()->dump(&DAG);
6231 dbgs() << '\n');
6232 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006233 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
Evan Cheng2c755ba2010-02-27 07:36:59 +00006234 removeFromWorkList(TheXor);
6235 DAG.DeleteNode(TheXor);
6236 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6237 MVT::Other, Chain, Tmp, N2);
6238 }
6239 }
6240
6241 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6242 bool Equal = false;
6243 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6244 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6245 Op0.getOpcode() == ISD::XOR) {
6246 TheXor = Op0.getNode();
6247 Equal = true;
6248 }
6249
Evan Cheng2a135ae2010-10-04 22:41:01 +00006250 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006251 if (LegalTypes)
6252 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6253 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6254 SetCCVT,
6255 Op0, Op1,
6256 Equal ? ISD::SETEQ : ISD::SETNE);
6257 // Replace the uses of XOR with SETCC
6258 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006259 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006260 removeFromWorkList(N1.getNode());
6261 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006262 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6263 MVT::Other, Chain, SetCC, N2);
6264 }
6265 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006266
Dan Gohman475871a2008-07-27 21:46:04 +00006267 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006268}
6269
Chris Lattner3ea0b472005-10-05 06:47:48 +00006270// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6271//
Dan Gohman475871a2008-07-27 21:46:04 +00006272SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006273 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006274 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006275
Dan Gohmane0f06c72009-11-17 00:47:23 +00006276 // If N is a constant we could fold this into a fallthrough or unconditional
6277 // branch. However that doesn't happen very often in normal code, because
6278 // Instcombine/SimplifyCFG should have handled the available opportunities.
6279 // If we did this folding here, it would be necessary to update the
6280 // MachineBasicBlock CFG, which is awkward.
6281
Duncan Sands8eab8a22008-06-09 11:32:28 +00006282 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006283 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006284 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6285 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006286 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006287
Nate Begemane17daeb2005-10-05 21:43:42 +00006288 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006289 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006290 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006291 N->getOperand(0), Simp.getOperand(2),
6292 Simp.getOperand(0), Simp.getOperand(1),
6293 N->getOperand(4));
6294
Dan Gohman475871a2008-07-27 21:46:04 +00006295 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006296}
6297
Evan Chengc4b527a2012-01-13 01:37:24 +00006298/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6299/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00006300/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00006301static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6302 SelectionDAG &DAG,
6303 const TargetLowering &TLI) {
6304 EVT VT;
6305 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6306 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6307 return false;
6308 VT = Use->getValueType(0);
6309 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6310 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6311 return false;
6312 VT = ST->getValue().getValueType();
6313 } else
6314 return false;
6315
6316 TargetLowering::AddrMode AM;
6317 if (N->getOpcode() == ISD::ADD) {
6318 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6319 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006320 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006321 AM.BaseOffs = Offset->getSExtValue();
6322 else
Evan Cheng03be3622012-03-06 23:33:32 +00006323 // [reg +/- reg]
6324 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006325 } else if (N->getOpcode() == ISD::SUB) {
6326 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6327 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006328 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006329 AM.BaseOffs = -Offset->getSExtValue();
6330 else
Evan Cheng03be3622012-03-06 23:33:32 +00006331 // [reg +/- reg]
6332 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006333 } else
6334 return false;
6335
6336 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6337}
6338
Duncan Sandsec87aa82008-06-15 20:12:31 +00006339/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6340/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006341/// and it has other uses besides the load / store. After the
6342/// transformation, the new indexed load / store has effectively folded
6343/// the add / subtract in and all of its other uses are redirected to the
6344/// new load / store.
6345bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006346 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006347 return false;
6348
6349 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006350 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006351 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006352 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006353 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006354 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006355 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006356 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006357 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6358 return false;
6359 Ptr = LD->getBasePtr();
6360 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006361 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006362 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006363 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006364 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6365 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6366 return false;
6367 Ptr = ST->getBasePtr();
6368 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006369 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006370 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006371 }
Chris Lattner448f2192006-11-11 00:39:41 +00006372
Chris Lattner9f1794e2006-11-11 00:56:29 +00006373 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6374 // out. There is no reason to make this a preinc/predec.
6375 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006376 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006377 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006378
Chris Lattner9f1794e2006-11-11 00:56:29 +00006379 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006380 SDValue BasePtr;
6381 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006382 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6383 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6384 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006385 // Don't create a indexed load / store with zero offset.
6386 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006387 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006388 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006389
Chris Lattner41e53fd2006-11-11 01:00:15 +00006390 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006391 // 1) The new base ptr is a frame index.
6392 // 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 +00006393 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006394 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006395 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006396 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006397
Chris Lattner41e53fd2006-11-11 01:00:15 +00006398 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6399 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006400 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006401 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006402
Chris Lattner41e53fd2006-11-11 01:00:15 +00006403 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006404 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006405 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006406 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006407 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006408 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006409
Evan Chengc843abe2007-05-24 02:35:39 +00006410 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006411 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006412
6413 // Caches for hasPredecessorHelper
6414 SmallPtrSet<const SDNode *, 32> Visited;
6415 SmallVector<const SDNode *, 16> Worklist;
6416
Gabor Greifba36cb52008-08-28 21:40:38 +00006417 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6418 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006419 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006420 if (Use == N)
6421 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006422 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006423 return false;
6424
Evan Chengc4b527a2012-01-13 01:37:24 +00006425 // If Ptr may be folded in addressing mode of other use, then it's
6426 // not profitable to do this transformation.
6427 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006428 RealUse = true;
6429 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006430
Chris Lattner9f1794e2006-11-11 00:56:29 +00006431 if (!RealUse)
6432 return false;
6433
Dan Gohman475871a2008-07-27 21:46:04 +00006434 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006435 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006436 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6437 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006438 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006439 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6440 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006441 ++PreIndexedNodes;
6442 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006443 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006444 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006445 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006446 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006447 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006448 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006449 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006450 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6451 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006452 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006453 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006454 }
6455
Chris Lattner9f1794e2006-11-11 00:56:29 +00006456 // Finally, since the node is now dead, remove it from the graph.
6457 DAG.DeleteNode(N);
6458
6459 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006460 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greifba36cb52008-08-28 21:40:38 +00006461 removeFromWorkList(Ptr.getNode());
6462 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006463
6464 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006465}
6466
Duncan Sandsec87aa82008-06-15 20:12:31 +00006467/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006468/// add / sub of the base pointer node into a post-indexed load / store.
6469/// The transformation folded the add / subtract into the new indexed
6470/// load / store effectively and all of its uses are redirected to the
6471/// new load / store.
6472bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006473 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006474 return false;
6475
6476 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006477 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006478 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006479 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006480 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006481 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006482 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006483 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6484 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6485 return false;
6486 Ptr = LD->getBasePtr();
6487 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006488 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006489 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006490 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006491 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6492 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6493 return false;
6494 Ptr = ST->getBasePtr();
6495 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006496 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006497 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006498 }
Chris Lattner448f2192006-11-11 00:39:41 +00006499
Gabor Greifba36cb52008-08-28 21:40:38 +00006500 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006501 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006502
Gabor Greifba36cb52008-08-28 21:40:38 +00006503 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6504 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006505 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006506 if (Op == N ||
6507 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6508 continue;
6509
Dan Gohman475871a2008-07-27 21:46:04 +00006510 SDValue BasePtr;
6511 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006512 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6513 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00006514 // Don't create a indexed load / store with zero offset.
6515 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006516 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006517 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006518
Chris Lattner9f1794e2006-11-11 00:56:29 +00006519 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00006520 // 1) All uses are load / store ops that use it as base ptr (and
6521 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00006522 // 2) Op must be independent of N, i.e. Op is neither a predecessor
6523 // nor a successor of N. Otherwise, if Op is folded that would
6524 // create a cycle.
6525
Evan Chengcaab1292009-05-06 18:25:01 +00006526 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6527 continue;
6528
Chris Lattner9f1794e2006-11-11 00:56:29 +00006529 // Check for #1.
6530 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006531 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6532 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00006533 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00006534 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00006535 continue;
6536
Chris Lattner9f1794e2006-11-11 00:56:29 +00006537 // If all the uses are load / store addresses, then don't do the
6538 // transformation.
6539 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6540 bool RealUse = false;
6541 for (SDNode::use_iterator III = Use->use_begin(),
6542 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00006543 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00006544 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006545 RealUse = true;
6546 }
Chris Lattner448f2192006-11-11 00:39:41 +00006547
Chris Lattner9f1794e2006-11-11 00:56:29 +00006548 if (!RealUse) {
6549 TryNext = true;
6550 break;
Chris Lattner448f2192006-11-11 00:39:41 +00006551 }
6552 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006553 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006554
Chris Lattner9f1794e2006-11-11 00:56:29 +00006555 if (TryNext)
6556 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006557
Chris Lattner9f1794e2006-11-11 00:56:29 +00006558 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00006559 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006560 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00006561 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6562 BasePtr, Offset, AM)
6563 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6564 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006565 ++PostIndexedNodes;
6566 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006567 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006568 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006569 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006570 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006571 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006572 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006573 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006574 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6575 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006576 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006577 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner448f2192006-11-11 00:39:41 +00006578 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006579
Chris Lattner9f1794e2006-11-11 00:56:29 +00006580 // Finally, since the node is now dead, remove it from the graph.
6581 DAG.DeleteNode(N);
6582
6583 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00006584 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006585 Result.getValue(isLoad ? 1 : 0));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006586 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006587 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006588 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006589 }
6590 }
6591 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006592
Chris Lattner448f2192006-11-11 00:39:41 +00006593 return false;
6594}
6595
Dan Gohman475871a2008-07-27 21:46:04 +00006596SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00006597 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006598 SDValue Chain = LD->getChain();
6599 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00006600
Evan Cheng45a7ca92007-05-01 00:38:21 +00006601 // If load is not volatile and there are no uses of the loaded value (and
6602 // the updated indexed value in case of indexed loads), change uses of the
6603 // chain value into uses of the chain input (i.e. delete the dead load).
6604 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006605 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00006606 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00006607 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00006608 // It's not safe to use the two value CombineTo variant here. e.g.
6609 // v1, chain2 = load chain1, loc
6610 // v2, chain3 = load chain2, loc
6611 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00006612 // Now we replace use of chain2 with chain1. This makes the second load
6613 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00006614 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006615 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006616 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006617 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006618 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006619 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006620 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendlingc0debad2009-01-30 23:27:35 +00006621
Chris Lattner125991a2008-01-24 07:57:06 +00006622 if (N->use_empty()) {
6623 removeFromWorkList(N);
6624 DAG.DeleteNode(N);
6625 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006626
Dan Gohman475871a2008-07-27 21:46:04 +00006627 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00006628 }
Evan Cheng498f5592007-05-01 08:53:39 +00006629 } else {
6630 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00006631 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00006632 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00006633 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00006634 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006635 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006636 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006637 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006638 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006639 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006640 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman475871a2008-07-27 21:46:04 +00006641 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006642 DAG.getUNDEF(N->getValueType(1)));
6643 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng02c42852008-01-16 23:11:54 +00006644 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00006645 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006646 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00006647 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00006648 }
6649 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006650
Chris Lattner01a22022005-10-10 22:04:48 +00006651 // If this load is directly stored, replace the load value with the stored
6652 // value.
6653 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006654 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00006655 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00006656 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00006657 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
6658 if (PrevST->getBasePtr() == Ptr &&
6659 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006660 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00006661 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006662 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006663
Evan Cheng255f20f2010-04-01 06:04:33 +00006664 // Try to infer better alignment information than the load already has.
6665 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00006666 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
6667 if (Align > LD->getAlignment())
6668 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
6669 LD->getValueType(0),
6670 Chain, Ptr, LD->getPointerInfo(),
6671 LD->getMemoryVT(),
6672 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00006673 }
6674 }
6675
Jim Laskey7ca56af2006-10-11 13:47:09 +00006676 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00006677 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00006678 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00006679
Jim Laskey6ff23e52006-10-04 16:53:27 +00006680 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00006681 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00006682 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006683
Jim Laskey279f0532006-09-25 16:29:54 +00006684 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006685 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00006686 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00006687 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00006688 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006689 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006690 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00006691 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
6692 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00006693 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006694 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00006695 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006696 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00006697 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006698 }
Jim Laskey279f0532006-09-25 16:29:54 +00006699
Jim Laskey6ff23e52006-10-04 16:53:27 +00006700 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00006701 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00006702 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006703
Nate Begemanb6aef5c2009-09-15 00:18:30 +00006704 // Make sure the new and old chains are cleaned up.
6705 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006706
Jim Laskey274062c2006-10-13 23:32:28 +00006707 // Replace uses with load result and token factor. Don't add users
6708 // to work list.
6709 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00006710 }
6711 }
6712
Evan Cheng7fc033a2006-11-03 03:06:21 +00006713 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00006714 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00006715 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00006716
Dan Gohman475871a2008-07-27 21:46:04 +00006717 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00006718}
6719
Chris Lattner2392ae72010-04-15 04:48:01 +00006720/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
6721/// load is having specific bytes cleared out. If so, return the byte size
6722/// being masked out and the shift amount.
6723static std::pair<unsigned, unsigned>
6724CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
6725 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006726
Chris Lattner2392ae72010-04-15 04:48:01 +00006727 // Check for the structure we're looking for.
6728 if (V->getOpcode() != ISD::AND ||
6729 !isa<ConstantSDNode>(V->getOperand(1)) ||
6730 !ISD::isNormalLoad(V->getOperand(0).getNode()))
6731 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006732
Chris Lattnere6987582010-04-15 06:10:49 +00006733 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00006734 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00006735 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006736
Chris Lattnere6987582010-04-15 06:10:49 +00006737 // The store should be chained directly to the load or be an operand of a
6738 // tokenfactor.
6739 if (LD == Chain.getNode())
6740 ; // ok.
6741 else if (Chain->getOpcode() != ISD::TokenFactor)
6742 return Result; // Fail.
6743 else {
6744 bool isOk = false;
6745 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
6746 if (Chain->getOperand(i).getNode() == LD) {
6747 isOk = true;
6748 break;
6749 }
6750 if (!isOk) return Result;
6751 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006752
Chris Lattner2392ae72010-04-15 04:48:01 +00006753 // This only handles simple types.
6754 if (V.getValueType() != MVT::i16 &&
6755 V.getValueType() != MVT::i32 &&
6756 V.getValueType() != MVT::i64)
6757 return Result;
6758
6759 // Check the constant mask. Invert it so that the bits being masked out are
6760 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
6761 // follow the sign bit for uniformity.
6762 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
6763 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
6764 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
6765 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
6766 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
6767 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006768
Chris Lattner2392ae72010-04-15 04:48:01 +00006769 // See if we have a continuous run of bits. If so, we have 0*1+0*
6770 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
6771 return Result;
6772
6773 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
6774 if (V.getValueType() != MVT::i64 && NotMaskLZ)
6775 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006776
Chris Lattner2392ae72010-04-15 04:48:01 +00006777 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
6778 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006779 case 1:
6780 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00006781 case 4: break;
6782 default: return Result; // All one mask, or 5-byte mask.
6783 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006784
Chris Lattner2392ae72010-04-15 04:48:01 +00006785 // Verify that the first bit starts at a multiple of mask so that the access
6786 // is aligned the same as the access width.
6787 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006788
Chris Lattner2392ae72010-04-15 04:48:01 +00006789 Result.first = MaskedBytes;
6790 Result.second = NotMaskTZ/8;
6791 return Result;
6792}
6793
6794
6795/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
6796/// provides a value as specified by MaskInfo. If so, replace the specified
6797/// store with a narrower store of truncated IVal.
6798static SDNode *
6799ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
6800 SDValue IVal, StoreSDNode *St,
6801 DAGCombiner *DC) {
6802 unsigned NumBytes = MaskInfo.first;
6803 unsigned ByteShift = MaskInfo.second;
6804 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006805
Chris Lattner2392ae72010-04-15 04:48:01 +00006806 // Check to see if IVal is all zeros in the part being masked in by the 'or'
6807 // that uses this. If not, this is not a replacement.
6808 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
6809 ByteShift*8, (ByteShift+NumBytes)*8);
6810 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006811
Chris Lattner2392ae72010-04-15 04:48:01 +00006812 // Check that it is legal on the target to do this. It is legal if the new
6813 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
6814 // legalization.
6815 MVT VT = MVT::getIntegerVT(NumBytes*8);
6816 if (!DC->isTypeLegal(VT))
6817 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006818
Chris Lattner2392ae72010-04-15 04:48:01 +00006819 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
6820 // shifted by ByteShift and truncated down to NumBytes.
6821 if (ByteShift)
6822 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00006823 DAG.getConstant(ByteShift*8,
6824 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00006825
6826 // Figure out the offset for the store and the alignment of the access.
6827 unsigned StOffset;
6828 unsigned NewAlign = St->getAlignment();
6829
6830 if (DAG.getTargetLoweringInfo().isLittleEndian())
6831 StOffset = ByteShift;
6832 else
6833 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006834
Chris Lattner2392ae72010-04-15 04:48:01 +00006835 SDValue Ptr = St->getBasePtr();
6836 if (StOffset) {
6837 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
6838 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
6839 NewAlign = MinAlign(NewAlign, StOffset);
6840 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006841
Chris Lattner2392ae72010-04-15 04:48:01 +00006842 // Truncate down to the new size.
6843 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006844
Chris Lattner2392ae72010-04-15 04:48:01 +00006845 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006846 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006847 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00006848 false, false, NewAlign).getNode();
6849}
6850
Evan Cheng8b944d32009-05-28 00:35:15 +00006851
6852/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
6853/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
6854/// of the loaded bits, try narrowing the load and store if it would end up
6855/// being a win for performance or code size.
6856SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
6857 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00006858 if (ST->isVolatile())
6859 return SDValue();
6860
Evan Cheng8b944d32009-05-28 00:35:15 +00006861 SDValue Chain = ST->getChain();
6862 SDValue Value = ST->getValue();
6863 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00006864 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00006865
6866 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00006867 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006868
6869 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006870
Chris Lattner2392ae72010-04-15 04:48:01 +00006871 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
6872 // is a byte mask indicating a consecutive number of bytes, check to see if
6873 // Y is known to provide just those bytes. If so, we try to replace the
6874 // load + replace + store sequence with a single (narrower) store, which makes
6875 // the load dead.
6876 if (Opc == ISD::OR) {
6877 std::pair<unsigned, unsigned> MaskedLoad;
6878 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
6879 if (MaskedLoad.first)
6880 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6881 Value.getOperand(1), ST,this))
6882 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006883
Chris Lattner2392ae72010-04-15 04:48:01 +00006884 // Or is commutative, so try swapping X and Y.
6885 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
6886 if (MaskedLoad.first)
6887 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6888 Value.getOperand(0), ST,this))
6889 return SDValue(NewST, 0);
6890 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006891
Evan Cheng8b944d32009-05-28 00:35:15 +00006892 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
6893 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00006894 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006895
6896 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00006897 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
6898 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00006899 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00006900 if (LD->getBasePtr() != Ptr ||
6901 LD->getPointerInfo().getAddrSpace() !=
6902 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00006903 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006904
6905 // Find the type to narrow it the load / op / store to.
6906 SDValue N1 = Value.getOperand(1);
6907 unsigned BitWidth = N1.getValueSizeInBits();
6908 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
6909 if (Opc == ISD::AND)
6910 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00006911 if (Imm == 0 || Imm.isAllOnesValue())
6912 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006913 unsigned ShAmt = Imm.countTrailingZeros();
6914 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
6915 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00006916 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006917 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00006918 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00006919 TLI.isNarrowingProfitable(VT, NewVT))) {
6920 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00006921 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006922 }
Evan Chengcdcecc02009-05-28 18:41:02 +00006923 if (NewBW >= BitWidth)
6924 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006925
6926 // If the lsb changed does not start at the type bitwidth boundary,
6927 // start at the previous one.
6928 if (ShAmt % NewBW)
6929 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
6930 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
6931 if ((Imm & Mask) == Imm) {
6932 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
6933 if (Opc == ISD::AND)
6934 NewImm ^= APInt::getAllOnesValue(NewBW);
6935 uint64_t PtrOff = ShAmt / 8;
6936 // For big endian targets, we need to adjust the offset to the pointer to
6937 // load the correct bytes.
6938 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00006939 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00006940
6941 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006942 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Chris Lattner2392ae72010-04-15 04:48:01 +00006943 if (NewAlign < TLI.getTargetData()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00006944 return SDValue();
6945
Evan Cheng8b944d32009-05-28 00:35:15 +00006946 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
6947 Ptr.getValueType(), Ptr,
6948 DAG.getConstant(PtrOff, Ptr.getValueType()));
6949 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
6950 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006951 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006952 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006953 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006954 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
6955 DAG.getConstant(NewImm, NewVT));
6956 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
6957 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006958 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006959 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006960
6961 AddToWorkList(NewPtr.getNode());
6962 AddToWorkList(NewLD.getNode());
6963 AddToWorkList(NewVal.getNode());
6964 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006965 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Cheng8b944d32009-05-28 00:35:15 +00006966 ++OpsNarrowed;
6967 return NewST;
6968 }
6969 }
6970
Evan Chengcdcecc02009-05-28 18:41:02 +00006971 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006972}
6973
Evan Cheng31959b12011-02-02 01:06:55 +00006974/// TransformFPLoadStorePair - For a given floating point load / store pair,
6975/// if the load value isn't used by any other operations, then consider
6976/// transforming the pair to integer load / store operations if the target
6977/// deems the transformation profitable.
6978SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
6979 StoreSDNode *ST = cast<StoreSDNode>(N);
6980 SDValue Chain = ST->getChain();
6981 SDValue Value = ST->getValue();
6982 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
6983 Value.hasOneUse() &&
6984 Chain == SDValue(Value.getNode(), 1)) {
6985 LoadSDNode *LD = cast<LoadSDNode>(Value);
6986 EVT VT = LD->getMemoryVT();
6987 if (!VT.isFloatingPoint() ||
6988 VT != ST->getMemoryVT() ||
6989 LD->isNonTemporal() ||
6990 ST->isNonTemporal() ||
6991 LD->getPointerInfo().getAddrSpace() != 0 ||
6992 ST->getPointerInfo().getAddrSpace() != 0)
6993 return SDValue();
6994
6995 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
6996 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
6997 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
6998 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
6999 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
7000 return SDValue();
7001
7002 unsigned LDAlign = LD->getAlignment();
7003 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007004 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Evan Cheng31959b12011-02-02 01:06:55 +00007005 unsigned ABIAlign = TLI.getTargetData()->getABITypeAlignment(IntVTTy);
7006 if (LDAlign < ABIAlign || STAlign < ABIAlign)
7007 return SDValue();
7008
7009 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
7010 LD->getChain(), LD->getBasePtr(),
7011 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007012 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00007013
7014 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
7015 NewLD, ST->getBasePtr(),
7016 ST->getPointerInfo(),
7017 false, false, STAlign);
7018
7019 AddToWorkList(NewLD.getNode());
7020 AddToWorkList(NewST.getNode());
7021 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007022 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Cheng31959b12011-02-02 01:06:55 +00007023 ++LdStFP2Int;
7024 return NewST;
7025 }
7026
7027 return SDValue();
7028}
7029
Dan Gohman475871a2008-07-27 21:46:04 +00007030SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007031 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007032 SDValue Chain = ST->getChain();
7033 SDValue Value = ST->getValue();
7034 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007035
Evan Cheng59d5b682007-05-07 21:27:48 +00007036 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00007037 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007038 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007039 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00007040 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00007041 EVT SVT = Value.getOperand(0).getValueType();
Dan Gohman1ba519b2009-02-20 23:29:13 +00007042 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00007043 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007044 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00007045 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007046 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00007047 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00007048 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007049 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00007050 }
Owen Andersona34d9362011-04-14 17:30:49 +00007051
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007052 // Turn 'store undef, Ptr' -> nothing.
7053 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
7054 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007055
Nate Begeman2cbba892006-12-11 02:23:46 +00007056 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00007057 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007058 // NOTE: If the original store is volatile, this transform must not increase
7059 // the number of stores. For example, on x86-32 an f64 can be stored in one
7060 // processor operation but an i64 (which is not legal) requires two. So the
7061 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00007062 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00007063 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00007064 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007065 default: llvm_unreachable("Unknown FP type");
Owen Anderson825b72b2009-08-11 20:47:22 +00007066 case MVT::f80: // We don't do this for these yet.
7067 case MVT::f128:
7068 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00007069 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007070 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00007071 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007072 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00007073 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00007074 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00007075 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007076 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007077 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00007078 }
7079 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007080 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00007081 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007082 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007083 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00007084 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00007085 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00007086 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007087 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007088 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007089 }
Owen Andersona34d9362011-04-14 17:30:49 +00007090
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007091 if (!ST->isVolatile() &&
7092 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00007093 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00007094 // argument passing. Since this is so common, custom legalize the
7095 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00007096 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007097 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
7098 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00007099 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00007100
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007101 unsigned Alignment = ST->getAlignment();
7102 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00007103 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007104
Bill Wendlingc144a572009-01-30 23:36:47 +00007105 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007106 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007107 isVolatile, isNonTemporal,
7108 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00007109 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00007110 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00007111 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00007112 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007113 Ptr, ST->getPointerInfo().getWithOffset(4),
7114 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00007115 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00007116 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00007117 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00007118 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007119
Chris Lattner62be1a72006-12-12 04:16:14 +00007120 break;
Evan Cheng25ece662006-12-11 17:25:19 +00007121 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007122 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007123 }
7124
Evan Cheng255f20f2010-04-01 06:04:33 +00007125 // Try to infer better alignment information than the store already has.
7126 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007127 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7128 if (Align > ST->getAlignment())
7129 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
7130 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
7131 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007132 }
7133 }
7134
Evan Cheng31959b12011-02-02 01:06:55 +00007135 // Try transforming a pair floating point load / store ops to integer
7136 // load / store ops.
7137 SDValue NewST = TransformFPLoadStorePair(N);
7138 if (NewST.getNode())
7139 return NewST;
7140
Scott Michelfdc40a02009-02-17 22:15:04 +00007141 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007142 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007143 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007144
Jim Laskey6ff23e52006-10-04 16:53:27 +00007145 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007146 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007147 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007148
7149 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007150 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007151 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007152 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007153 ST->getMemoryVT(), ST->isVolatile(),
7154 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007155 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00007156 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007157 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007158 ST->isVolatile(), ST->isNonTemporal(),
7159 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007160 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007161
Jim Laskey279f0532006-09-25 16:29:54 +00007162 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00007163 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007164 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00007165
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007166 // Make sure the new and old chains are cleaned up.
7167 AddToWorkList(Token.getNode());
7168
Jim Laskey274062c2006-10-13 23:32:28 +00007169 // Don't add users to work list.
7170 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007171 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00007172 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007173
Evan Cheng33dbedc2006-11-05 09:31:14 +00007174 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007175 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007176 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00007177
Chris Lattner3c872852007-12-29 06:26:16 +00007178 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00007179 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00007180 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00007181 // See if we can simplify the input to this truncstore with knowledge that
7182 // only the low bits are being used. For example:
7183 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00007184 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007185 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00007186 APInt::getLowBitsSet(
7187 Value.getValueType().getScalarType().getSizeInBits(),
7188 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00007189 AddToWorkList(Value.getNode());
7190 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00007191 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007192 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007193 ST->isVolatile(), ST->isNonTemporal(),
7194 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00007195
Chris Lattnere33544c2007-10-13 06:58:48 +00007196 // Otherwise, see if we can simplify the operation with
7197 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00007198 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00007199 APInt::getLowBitsSet(
7200 Value.getValueType().getScalarType().getSizeInBits(),
7201 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00007202 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00007203 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007204
Chris Lattner3c872852007-12-29 06:26:16 +00007205 // If this is a load followed by a store to the same location, then the store
7206 // is dead/noop.
7207 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007208 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007209 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00007210 // There can't be any side effects between the load and store, such as
7211 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00007212 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00007213 // The store is dead, remove it.
7214 return Chain;
7215 }
7216 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007217
Chris Lattnerddf89562008-01-17 19:59:44 +00007218 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
7219 // truncating store. We can do this even if this is already a truncstore.
7220 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00007221 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007222 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007223 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007224 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007225 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007226 ST->isVolatile(), ST->isNonTemporal(),
7227 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00007228 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007229
Evan Cheng8b944d32009-05-28 00:35:15 +00007230 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00007231}
7232
Dan Gohman475871a2008-07-27 21:46:04 +00007233SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
7234 SDValue InVec = N->getOperand(0);
7235 SDValue InVal = N->getOperand(1);
7236 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00007237 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00007238
Bob Wilson492fd452010-05-19 23:42:58 +00007239 // If the inserted element is an UNDEF, just use the input vector.
7240 if (InVal.getOpcode() == ISD::UNDEF)
7241 return InVec;
7242
Nadav Rotem609d54e2011-02-12 14:40:33 +00007243 EVT VT = InVec.getValueType();
7244
Owen Anderson95771af2011-02-25 21:41:48 +00007245 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00007246 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
7247 return SDValue();
7248
Eli Friedman9db817f2011-09-09 21:04:06 +00007249 // Check that we know which element is being inserted
7250 if (!isa<ConstantSDNode>(EltNo))
7251 return SDValue();
7252 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007253
Eli Friedman9db817f2011-09-09 21:04:06 +00007254 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
7255 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
7256 // vector elements.
7257 SmallVector<SDValue, 8> Ops;
7258 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
7259 Ops.append(InVec.getNode()->op_begin(),
7260 InVec.getNode()->op_end());
7261 } else if (InVec.getOpcode() == ISD::UNDEF) {
7262 unsigned NElts = VT.getVectorNumElements();
7263 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
7264 } else {
7265 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007266 }
Eli Friedman9db817f2011-09-09 21:04:06 +00007267
7268 // Insert the element
7269 if (Elt < Ops.size()) {
7270 // All the operands of BUILD_VECTOR must have the same type;
7271 // we enforce that here.
7272 EVT OpVT = Ops[0].getValueType();
7273 if (InVal.getValueType() != OpVT)
7274 InVal = OpVT.bitsGT(InVal.getValueType()) ?
7275 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
7276 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
7277 Ops[Elt] = InVal;
7278 }
7279
7280 // Return the new vector
7281 return DAG.getNode(ISD::BUILD_VECTOR, dl,
7282 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00007283}
7284
Dan Gohman475871a2008-07-27 21:46:04 +00007285SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007286 // (vextract (scalar_to_vector val, 0) -> val
7287 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00007288 EVT VT = InVec.getValueType();
7289 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007290
Duncan Sandsc356f332011-05-09 08:03:33 +00007291 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
7292 // Check if the result type doesn't match the inserted element type. A
7293 // SCALAR_TO_VECTOR may truncate the inserted element and the
7294 // EXTRACT_VECTOR_ELT may widen the extracted vector.
7295 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00007296 if (InOp.getValueType() != NVT) {
7297 assert(InOp.getValueType().isInteger() && NVT.isInteger());
7298 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
7299 }
7300 return InOp;
7301 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007302
Nadav Rotemba05c912012-01-17 21:44:01 +00007303 SDValue EltNo = N->getOperand(1);
7304 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
7305
7306 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
7307 // We only perform this optimization before the op legalization phase because
7308 // we may introduce new vector instructions which are not backed by TD patterns.
7309 // For example on AVX, extracting elements from a wide vector without using
7310 // extract_subvector.
7311 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
7312 && ConstEltNo && !LegalOperations) {
7313 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
7314 int NumElem = VT.getVectorNumElements();
7315 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
7316 // Find the new index to extract from.
7317 int OrigElt = SVOp->getMaskElt(Elt);
7318
7319 // Extracting an undef index is undef.
7320 if (OrigElt == -1)
7321 return DAG.getUNDEF(NVT);
7322
7323 // Select the right vector half to extract from.
7324 if (OrigElt < NumElem) {
7325 InVec = InVec->getOperand(0);
7326 } else {
7327 InVec = InVec->getOperand(1);
7328 OrigElt -= NumElem;
7329 }
7330
7331 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
7332 InVec, DAG.getConstant(OrigElt, MVT::i32));
7333 }
7334
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007335 // Perform only after legalization to ensure build_vector / vector_shuffle
7336 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00007337 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007338
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007339 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
7340 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
7341 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00007342
Nadav Rotemba05c912012-01-17 21:44:01 +00007343 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00007344 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00007345 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00007346 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00007347 EVT ExtVT = VT.getVectorElementType();
7348 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00007349
Evan Cheng84387ea2012-03-13 22:00:52 +00007350 // If the result of load has to be truncated, then it's not necessarily
7351 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00007352 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00007353 return SDValue();
7354
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007355 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007356 // Don't duplicate a load with other uses.
7357 if (!InVec.hasOneUse())
7358 return SDValue();
7359
Owen Andersone50ed302009-08-10 22:56:29 +00007360 EVT BCVT = InVec.getOperand(0).getValueType();
7361 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007362 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00007363 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
7364 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007365 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00007366 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007367 NewLoad = true;
7368 }
Evan Cheng513da432007-10-06 08:19:55 +00007369
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007370 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00007371 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00007372 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007373 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00007374 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00007375 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00007376 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007377 // Don't duplicate a load with other uses.
7378 if (!InVec.hasOneUse())
7379 return SDValue();
7380
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007381 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00007382 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007383 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
7384 // =>
7385 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00007386
Eli Friedmand6e25602011-12-26 22:49:32 +00007387 // Don't duplicate a load with other uses.
7388 if (!InVec.hasOneUse())
7389 return SDValue();
7390
Mon P Wanga60b5232008-12-11 00:26:16 +00007391 // If the bit convert changed the number of elements, it is unsafe
7392 // to examine the mask.
7393 if (BCNumEltsChanged)
7394 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00007395
7396 // Select the input vector, guarding against out of range extract vector.
7397 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00007398 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00007399 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
7400
Eli Friedmand6e25602011-12-26 22:49:32 +00007401 if (InVec.getOpcode() == ISD::BITCAST) {
7402 // Don't duplicate a load with other uses.
7403 if (!InVec.hasOneUse())
7404 return SDValue();
7405
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007406 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00007407 }
Gabor Greifba36cb52008-08-28 21:40:38 +00007408 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007409 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00007410 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00007411 }
7412 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007413
Eli Friedmand6e25602011-12-26 22:49:32 +00007414 // Make sure we found a non-volatile load and the extractelement is
7415 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00007416 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00007417 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007418
Eric Christopherd81f17a2010-11-03 20:44:42 +00007419 // If Idx was -1 above, Elt is going to be -1, so just return undef.
7420 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00007421 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00007422
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007423 unsigned Align = LN0->getAlignment();
7424 if (NewLoad) {
7425 // Check the resultant load doesn't need a higher alignment than the
7426 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00007427 unsigned NewAlign =
Eric Christopher503a64d2010-12-09 04:48:06 +00007428 TLI.getTargetData()
7429 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00007430
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007431 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007432 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00007433
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007434 Align = NewAlign;
7435 }
7436
Dan Gohman475871a2008-07-27 21:46:04 +00007437 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00007438 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007439
Eric Christopherd81f17a2010-11-03 20:44:42 +00007440 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00007441 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007442 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007443 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007444 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00007445 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007446 DAG.getConstant(PtrOff, PtrType));
7447 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007448
Eli Friedman4db4add2011-11-16 23:50:22 +00007449 // The replacement we need to do here is a little tricky: we need to
7450 // replace an extractelement of a load with a load.
7451 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00007452 // Note that this replacement assumes that the extractvalue is the only
7453 // use of the load; that's okay because we don't want to perform this
7454 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00007455 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00007456 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00007457 if (NVT.bitsGT(LVT)) {
7458 // If the result type of vextract is wider than the load, then issue an
7459 // extending load instead.
7460 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
7461 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
7462 Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(),
7463 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
7464 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007465 Chain = Load.getValue(1);
7466 } else {
Evan Cheng84387ea2012-03-13 22:00:52 +00007467 Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
7468 LN0->getPointerInfo().getWithOffset(PtrOff),
7469 LN0->isVolatile(), LN0->isNonTemporal(),
7470 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007471 Chain = Load.getValue(1);
7472 if (NVT.bitsLT(LVT))
7473 Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load);
7474 else
7475 Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load);
7476 }
Eli Friedman4db4add2011-11-16 23:50:22 +00007477 WorkListRemover DeadNodes(*this);
7478 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00007479 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007480 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedman4db4add2011-11-16 23:50:22 +00007481 // Since we're explcitly calling ReplaceAllUses, add the new node to the
7482 // worklist explicitly as well.
7483 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00007484 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00007485 // Make sure to revisit this node to clean it up; it will usually be dead.
7486 AddToWorkList(N);
7487 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00007488 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007489
Dan Gohman475871a2008-07-27 21:46:04 +00007490 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00007491}
Evan Cheng513da432007-10-06 08:19:55 +00007492
Dan Gohman475871a2008-07-27 21:46:04 +00007493SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007494 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007495 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007496 EVT VT = N->getValueType(0);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007497 // Check to see if this is a BUILD_VECTOR of a bunch of values
7498 // which come from any_extend or zero_extend nodes. If so, we can create
7499 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00007500 // optimizations. We do not handle sign-extend because we can't fill the sign
7501 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007502 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00007503 bool AllAnyExt = true;
7504 bool AllUndef = true;
7505 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007506 SDValue In = N->getOperand(i);
7507 // Ignore undef inputs.
7508 if (In.getOpcode() == ISD::UNDEF) continue;
Craig Topperd3b58892012-01-17 09:09:48 +00007509 AllUndef = false;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007510
7511 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
7512 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
7513
Nadav Rotemf47368b2011-10-31 20:08:25 +00007514 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007515 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00007516 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007517 break;
7518 }
7519
7520 // The input is a ZeroExt or AnyExt. Check the original type.
7521 EVT InTy = In.getOperand(0).getValueType();
7522
7523 // Check that all of the widened source types are the same.
7524 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007525 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007526 SourceType = InTy;
7527 else if (InTy != SourceType) {
7528 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007529 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007530 break;
7531 }
7532
7533 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00007534 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007535 }
7536
Craig Topperd3b58892012-01-17 09:09:48 +00007537 if (AllUndef)
7538 return DAG.getUNDEF(VT);
Nadav Rotemf47368b2011-10-31 20:08:25 +00007539
7540 // In order to have valid types, all of the inputs must be extended from the
7541 // same source type and all of the inputs must be any or zero extend.
7542 // Scalar sizes must be a power of two.
7543 EVT OutScalarTy = N->getValueType(0).getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007544 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00007545 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
7546 isPowerOf2_32(SourceType.getSizeInBits());
7547
7548 // We perform this optimization post type-legalization because
7549 // the type-legalizer often scalarizes integer-promoted vectors.
7550 // Performing this optimization before may create bit-casts which
7551 // will be type-legalized to complex code sequences.
7552 // We perform this optimization only before the operation legalizer because we
7553 // may introduce illegal operations.
Nadav Rotem6431ff92012-03-15 08:49:06 +00007554 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
7555 // turn into a single shuffle instruction.
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007556 if ((Level == AfterLegalizeVectorOps || Level == AfterLegalizeTypes) &&
7557 ValidTypes) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007558 bool isLE = TLI.isLittleEndian();
Nadav Rotemf47368b2011-10-31 20:08:25 +00007559 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007560 assert(ElemRatio > 1 && "Invalid element size ratio");
Craig Topperd3b58892012-01-17 09:09:48 +00007561 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
Nadav Rotemf47368b2011-10-31 20:08:25 +00007562 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007563
7564 unsigned NewBVElems = ElemRatio * N->getValueType(0).getVectorNumElements();
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007565 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007566
7567 // Populate the new build_vector
7568 for (unsigned i=0; i < N->getNumOperands(); ++i) {
7569 SDValue Cast = N->getOperand(i);
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007570 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
7571 Cast.getOpcode() == ISD::ZERO_EXTEND ||
7572 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
Nadav Rotemb00418a2011-10-29 21:23:04 +00007573 SDValue In;
7574 if (Cast.getOpcode() == ISD::UNDEF)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007575 In = DAG.getUNDEF(SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007576 else
7577 In = Cast->getOperand(0);
7578 unsigned Index = isLE ? (i * ElemRatio) :
7579 (i * ElemRatio + (ElemRatio - 1));
7580
7581 assert(Index < Ops.size() && "Invalid index");
7582 Ops[Index] = In;
7583 }
7584
7585 // The type of the new BUILD_VECTOR node.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007586 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007587 assert(VecVT.getSizeInBits() == N->getValueType(0).getSizeInBits() &&
7588 "Invalid vector size");
Nadav Rotemf47368b2011-10-31 20:08:25 +00007589 // Check if the new vector type is legal.
7590 if (!isTypeLegal(VecVT)) return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007591
7592 // Make the new BUILD_VECTOR.
7593 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7594 VecVT, &Ops[0], Ops.size());
7595
Nadav Rotem6431ff92012-03-15 08:49:06 +00007596 // The new BUILD_VECTOR node has the potential to be further optimized.
7597 AddToWorkList(BV.getNode());
Nadav Rotemb00418a2011-10-29 21:23:04 +00007598 // Bitcast to the desired type.
7599 return DAG.getNode(ISD::BITCAST, dl, N->getValueType(0), BV);
7600 }
Chris Lattnerca242442006-03-19 01:27:56 +00007601
Dan Gohman7f321562007-06-25 16:23:39 +00007602 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
7603 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
7604 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00007605
7606 // May only combine to shuffle after legalize if shuffle is legal.
7607 if (LegalOperations &&
7608 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
7609 return SDValue();
7610
Dan Gohman475871a2008-07-27 21:46:04 +00007611 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007612 for (unsigned i = 0; i != NumInScalars; ++i) {
7613 // Ignore undef inputs.
7614 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007615
Dan Gohman7f321562007-06-25 16:23:39 +00007616 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00007617 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00007618 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00007619 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00007620 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007621 break;
7622 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007623
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007624 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00007625 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007626 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
7627 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007628
Gabor Greifba36cb52008-08-28 21:40:38 +00007629 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007630 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00007631 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007632 VecIn2 = ExtractedFromVec;
7633 } else {
7634 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007635 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007636 break;
7637 }
7638 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007639
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007640 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00007641 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007642 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007643 for (unsigned i = 0; i != NumInScalars; ++i) {
7644 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007645 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007646 continue;
7647 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007648
Rafael Espindola15684b22009-04-24 12:40:33 +00007649 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00007650 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00007651 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007652 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00007653 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
7654 if (ExtIndex > VT.getVectorNumElements())
7655 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007656
Nate Begeman5a5ca152009-04-29 05:20:52 +00007657 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007658 continue;
7659 }
7660
7661 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00007662 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007663 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007664 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007665
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007666 // We can't generate a shuffle node with mismatched input and output types.
7667 // Attempt to transform a single input vector to the correct type.
7668 if ((VT != VecIn1.getValueType())) {
7669 // We don't support shuffeling between TWO values of different types.
7670 if (VecIn2.getNode() != 0)
7671 return SDValue();
7672
7673 // We only support widening of vectors which are half the size of the
7674 // output registers. For example XMM->YMM widening on X86 with AVX.
7675 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
7676 return SDValue();
7677
7678 // Widen the input vector by adding undef values.
7679 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
7680 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
7681 }
7682
7683 // If VecIn2 is unused then change it to undef.
7684 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
7685
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007686 // Check that we were able to transform all incoming values to the same type.
7687 if (VecIn2.getValueType() != VecIn1.getValueType() ||
7688 VecIn1.getValueType() != VT)
7689 return SDValue();
7690
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007691 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007692 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00007693 return SDValue();
7694
Dan Gohman7f321562007-06-25 16:23:39 +00007695 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00007696 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00007697 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007698 Ops[1] = VecIn2;
Nate Begeman9008ca62009-04-27 18:41:29 +00007699 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007700 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007701
Dan Gohman475871a2008-07-27 21:46:04 +00007702 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00007703}
7704
Dan Gohman475871a2008-07-27 21:46:04 +00007705SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007706 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
7707 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
7708 // inputs come from at most two distinct vectors, turn this into a shuffle
7709 // node.
7710
7711 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00007712 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00007713 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007714
Dan Gohman475871a2008-07-27 21:46:04 +00007715 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007716}
7717
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007718SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
7719 EVT NVT = N->getValueType(0);
7720 SDValue V = N->getOperand(0);
7721
7722 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
7723 // Handle only simple case where vector being inserted and vector
7724 // being extracted are of same type, and are half size of larger vectors.
7725 EVT BigVT = V->getOperand(0).getValueType();
7726 EVT SmallVT = V->getOperand(1).getValueType();
7727 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
7728 return SDValue();
7729
Eli Friedman26323442011-12-07 00:11:56 +00007730 // Only handle cases where both indexes are constants with the same type.
7731 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
7732 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007733
Eli Friedman26323442011-12-07 00:11:56 +00007734 if (InsIdx && ExtIdx &&
7735 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
7736 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
7737 // Combine:
7738 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
7739 // Into:
7740 // indices are equal => V1
7741 // otherwise => (extract_subvec V1, ExtIdx)
7742 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
7743 return V->getOperand(1);
7744 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
7745 V->getOperand(0), N->getOperand(1));
7746 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007747 }
7748
7749 return SDValue();
7750}
7751
Dan Gohman475871a2008-07-27 21:46:04 +00007752SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007753 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007754 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007755
Mon P Wangaeb06d22008-11-10 04:46:22 +00007756 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00007757 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007758
Craig Topperae1bec52012-04-09 05:16:56 +00007759 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00007760
Craig Topper481b79c2012-01-04 08:07:43 +00007761 // Canonicalize shuffle undef, undef -> undef
7762 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
7763 return DAG.getUNDEF(VT);
7764
7765 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7766
7767 // Canonicalize shuffle v, v -> v, undef
7768 if (N0 == N1) {
7769 SmallVector<int, 8> NewMask;
7770 for (unsigned i = 0; i != NumElts; ++i) {
7771 int Idx = SVN->getMaskElt(i);
7772 if (Idx >= (int)NumElts) Idx -= NumElts;
7773 NewMask.push_back(Idx);
7774 }
7775 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
7776 &NewMask[0]);
7777 }
7778
7779 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
7780 if (N0.getOpcode() == ISD::UNDEF) {
7781 SmallVector<int, 8> NewMask;
7782 for (unsigned i = 0; i != NumElts; ++i) {
7783 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00007784 if (Idx >= 0) {
7785 if (Idx < (int)NumElts)
7786 Idx += NumElts;
7787 else
7788 Idx -= NumElts;
7789 }
7790 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00007791 }
7792 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
7793 &NewMask[0]);
7794 }
7795
7796 // Remove references to rhs if it is undef
7797 if (N1.getOpcode() == ISD::UNDEF) {
7798 bool Changed = false;
7799 SmallVector<int, 8> NewMask;
7800 for (unsigned i = 0; i != NumElts; ++i) {
7801 int Idx = SVN->getMaskElt(i);
7802 if (Idx >= (int)NumElts) {
7803 Idx = -1;
7804 Changed = true;
7805 }
7806 NewMask.push_back(Idx);
7807 }
7808 if (Changed)
7809 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
7810 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00007811
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007812 // If it is a splat, check if the argument vector is another splat or a
7813 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007814 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007815 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00007816
Dan Gohman7f321562007-06-25 16:23:39 +00007817 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00007818 // not the number of vector elements, look through it. Be careful not to
7819 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007820 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00007821 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00007822 if (ConvInput.getValueType().isVector() &&
7823 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00007824 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00007825 }
7826
Dan Gohman7f321562007-06-25 16:23:39 +00007827 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007828 assert(V->getNumOperands() == NumElts &&
7829 "BUILD_VECTOR has wrong number of operands");
7830 SDValue Base;
7831 bool AllSame = true;
7832 for (unsigned i = 0; i != NumElts; ++i) {
7833 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
7834 Base = V->getOperand(i);
7835 break;
Evan Cheng917ec982006-07-21 08:25:53 +00007836 }
Evan Cheng917ec982006-07-21 08:25:53 +00007837 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007838 // Splat of <u, u, u, u>, return <u, u, u, u>
7839 if (!Base.getNode())
7840 return N0;
7841 for (unsigned i = 0; i != NumElts; ++i) {
7842 if (V->getOperand(i) != Base) {
7843 AllSame = false;
7844 break;
7845 }
7846 }
7847 // Splat of <x, x, x, x>, return <x, x, x, x>
7848 if (AllSame)
7849 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00007850 }
7851 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00007852
7853 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007854 // and it reverses the swizzle of the previous shuffle then we can
7855 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00007856 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
7857 N1.getOpcode() == ISD::UNDEF) {
7858
Nadav Rotem4ac90812012-04-01 19:31:22 +00007859 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
7860
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007861 // Shuffle nodes can only reverse shuffles with a single non-undef value.
7862 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
7863 return SDValue();
7864
Craig Topperae1bec52012-04-09 05:16:56 +00007865 // The incoming shuffle must be of the same type as the result of the
7866 // current shuffle.
7867 assert(OtherSV->getOperand(0).getValueType() == VT &&
7868 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00007869
7870 for (unsigned i = 0; i != NumElts; ++i) {
7871 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00007872 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00007873 // Next, this index comes from the first value, which is the incoming
7874 // shuffle. Adopt the incoming index.
7875 if (Idx >= 0)
7876 Idx = OtherSV->getMaskElt(Idx);
7877
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007878 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00007879 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007880 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00007881 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007882
7883 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00007884 }
7885
Dan Gohman475871a2008-07-27 21:46:04 +00007886 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007887}
7888
Jim Grosbach9a526492010-06-23 16:07:42 +00007889SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
7890 if (!TLI.getShouldFoldAtomicFences())
7891 return SDValue();
7892
7893 SDValue atomic = N->getOperand(0);
7894 switch (atomic.getOpcode()) {
7895 case ISD::ATOMIC_CMP_SWAP:
7896 case ISD::ATOMIC_SWAP:
7897 case ISD::ATOMIC_LOAD_ADD:
7898 case ISD::ATOMIC_LOAD_SUB:
7899 case ISD::ATOMIC_LOAD_AND:
7900 case ISD::ATOMIC_LOAD_OR:
7901 case ISD::ATOMIC_LOAD_XOR:
7902 case ISD::ATOMIC_LOAD_NAND:
7903 case ISD::ATOMIC_LOAD_MIN:
7904 case ISD::ATOMIC_LOAD_MAX:
7905 case ISD::ATOMIC_LOAD_UMIN:
7906 case ISD::ATOMIC_LOAD_UMAX:
7907 break;
7908 default:
7909 return SDValue();
7910 }
7911
7912 SDValue fence = atomic.getOperand(0);
7913 if (fence.getOpcode() != ISD::MEMBARRIER)
7914 return SDValue();
7915
7916 switch (atomic.getOpcode()) {
7917 case ISD::ATOMIC_CMP_SWAP:
7918 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7919 fence.getOperand(0),
7920 atomic.getOperand(1), atomic.getOperand(2),
7921 atomic.getOperand(3)), atomic.getResNo());
7922 case ISD::ATOMIC_SWAP:
7923 case ISD::ATOMIC_LOAD_ADD:
7924 case ISD::ATOMIC_LOAD_SUB:
7925 case ISD::ATOMIC_LOAD_AND:
7926 case ISD::ATOMIC_LOAD_OR:
7927 case ISD::ATOMIC_LOAD_XOR:
7928 case ISD::ATOMIC_LOAD_NAND:
7929 case ISD::ATOMIC_LOAD_MIN:
7930 case ISD::ATOMIC_LOAD_MAX:
7931 case ISD::ATOMIC_LOAD_UMIN:
7932 case ISD::ATOMIC_LOAD_UMAX:
7933 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7934 fence.getOperand(0),
7935 atomic.getOperand(1), atomic.getOperand(2)),
7936 atomic.getResNo());
7937 default:
7938 return SDValue();
7939 }
7940}
7941
Evan Cheng44f1f092006-04-20 08:56:16 +00007942/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00007943/// an AND to a vector_shuffle with the destination vector and a zero vector.
7944/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00007945/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00007946SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007947 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007948 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007949 SDValue LHS = N->getOperand(0);
7950 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00007951 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007952 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00007953 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007954 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007955 SmallVector<int, 8> Indices;
7956 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00007957 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007958 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007959 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00007960 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00007961
7962 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007963 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007964 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007965 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00007966 else
Dan Gohman475871a2008-07-27 21:46:04 +00007967 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007968 }
7969
7970 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00007971 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007972 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007973 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007974
Dan Gohman7f321562007-06-25 16:23:39 +00007975 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00007976 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007977 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00007978 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00007979 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7980 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007981 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00007982 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007983 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00007984 }
7985 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00007986
Dan Gohman475871a2008-07-27 21:46:04 +00007987 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007988}
7989
Dan Gohman7f321562007-06-25 16:23:39 +00007990/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00007991SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007992 // After legalize, the target may be depending on adds and other
7993 // binary ops to provide legal ways to construct constants or other
7994 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00007995 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007996
Bob Wilsond7273432010-12-17 23:06:49 +00007997 assert(N->getValueType(0).isVector() &&
7998 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00007999
Dan Gohman475871a2008-07-27 21:46:04 +00008000 SDValue LHS = N->getOperand(0);
8001 SDValue RHS = N->getOperand(1);
8002 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00008003 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00008004
Dan Gohman7f321562007-06-25 16:23:39 +00008005 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00008006 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00008007 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00008008 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00008009 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00008010 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008011 SDValue LHSOp = LHS.getOperand(i);
8012 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00008013 // If these two elements can't be folded, bail out.
8014 if ((LHSOp.getOpcode() != ISD::UNDEF &&
8015 LHSOp.getOpcode() != ISD::Constant &&
8016 LHSOp.getOpcode() != ISD::ConstantFP) ||
8017 (RHSOp.getOpcode() != ISD::UNDEF &&
8018 RHSOp.getOpcode() != ISD::Constant &&
8019 RHSOp.getOpcode() != ISD::ConstantFP))
8020 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008021
Evan Cheng7b336a82006-05-31 06:08:35 +00008022 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00008023 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
8024 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00008025 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008026 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00008027 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008028 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00008029 break;
8030 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008031
Bob Wilsond7273432010-12-17 23:06:49 +00008032 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00008033 EVT RVT = RHSOp.getValueType();
8034 if (RVT != VT) {
8035 // Integer BUILD_VECTOR operands may have types larger than the element
8036 // size (e.g., when the element type is not legal). Prior to type
8037 // legalization, the types may not match between the two BUILD_VECTORS.
8038 // Truncate one of the operands to make them match.
8039 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
8040 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
8041 } else {
8042 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
8043 VT = RVT;
8044 }
8045 }
Bob Wilsond7273432010-12-17 23:06:49 +00008046 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00008047 LHSOp, RHSOp);
8048 if (FoldOp.getOpcode() != ISD::UNDEF &&
8049 FoldOp.getOpcode() != ISD::Constant &&
8050 FoldOp.getOpcode() != ISD::ConstantFP)
8051 break;
8052 Ops.push_back(FoldOp);
8053 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00008054 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008055
Bob Wilsond7273432010-12-17 23:06:49 +00008056 if (Ops.size() == LHS.getNumOperands())
8057 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8058 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00008059 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008060
Dan Gohman475871a2008-07-27 21:46:04 +00008061 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00008062}
8063
Bill Wendling836ca7d2009-01-30 23:59:18 +00008064SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
8065 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00008066 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008067
Bill Wendling836ca7d2009-01-30 23:59:18 +00008068 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00008069 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008070
Nate Begemanf845b452005-10-08 00:29:44 +00008071 // If we got a simplified select_cc node back from SimplifySelectCC, then
8072 // break it down into a new SETCC node, and a new SELECT node, and then return
8073 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00008074 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008075 // Check to see if we got a select_cc back (to turn into setcc/select).
8076 // Otherwise, just return whatever node we got back, like fabs.
8077 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008078 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
8079 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008080 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008081 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00008082 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008083 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
8084 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00008085 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008086
Nate Begemanf845b452005-10-08 00:29:44 +00008087 return SCC;
8088 }
Dan Gohman475871a2008-07-27 21:46:04 +00008089 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008090}
8091
Chris Lattner40c62d52005-10-18 06:04:22 +00008092/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
8093/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00008094/// select. Callers of this should assume that TheSelect is deleted if this
8095/// returns true. As such, they should return the appropriate thing (e.g. the
8096/// node) back to the top-level of the DAG combiner loop to avoid it being
8097/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00008098bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00008099 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008100
Nadav Rotemf94fdb62011-02-11 19:57:47 +00008101 // Cannot simplify select with vector condition
8102 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
8103
Chris Lattner40c62d52005-10-18 06:04:22 +00008104 // If this is a select from two identical things, try to pull the operation
8105 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00008106 if (LHS.getOpcode() != RHS.getOpcode() ||
8107 !LHS.hasOneUse() || !RHS.hasOneUse())
8108 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008109
Chris Lattner18061612010-09-21 15:46:59 +00008110 // If this is a load and the token chain is identical, replace the select
8111 // of two loads with a load through a select of the address to load from.
8112 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
8113 // constants have been dropped into the constant pool.
8114 if (LHS.getOpcode() == ISD::LOAD) {
8115 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
8116 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008117
Chris Lattner18061612010-09-21 15:46:59 +00008118 // Token chains must be identical.
8119 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008120 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00008121 LLD->isVolatile() || RLD->isVolatile() ||
8122 // If this is an EXTLOAD, the VT's must match.
8123 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00008124 // If this is an EXTLOAD, the kind of extension must match.
8125 (LLD->getExtensionType() != RLD->getExtensionType() &&
8126 // The only exception is if one of the extensions is anyext.
8127 LLD->getExtensionType() != ISD::EXTLOAD &&
8128 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00008129 // FIXME: this discards src value information. This is
8130 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00008131 // both potential memory locations. Since we are discarding
8132 // src value info, don't do the transformation if the memory
8133 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00008134 LLD->getPointerInfo().getAddrSpace() != 0 ||
8135 RLD->getPointerInfo().getAddrSpace() != 0)
8136 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008137
Chris Lattnerf1658062010-09-21 15:58:55 +00008138 // Check that the select condition doesn't reach either load. If so,
8139 // folding this will induce a cycle into the DAG. If not, this is safe to
8140 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00008141 SDValue Addr;
8142 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00008143 SDNode *CondNode = TheSelect->getOperand(0).getNode();
8144 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
8145 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
8146 return false;
8147 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
8148 LLD->getBasePtr().getValueType(),
8149 TheSelect->getOperand(0), LLD->getBasePtr(),
8150 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00008151 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00008152 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
8153 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
8154
8155 if ((LLD->hasAnyUseOfValue(1) &&
8156 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00008157 (RLD->hasAnyUseOfValue(1) &&
8158 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00008159 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008160
Chris Lattnerf1658062010-09-21 15:58:55 +00008161 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
8162 LLD->getBasePtr().getValueType(),
8163 TheSelect->getOperand(0),
8164 TheSelect->getOperand(1),
8165 LLD->getBasePtr(), RLD->getBasePtr(),
8166 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00008167 }
8168
Chris Lattnerf1658062010-09-21 15:58:55 +00008169 SDValue Load;
8170 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
8171 Load = DAG.getLoad(TheSelect->getValueType(0),
8172 TheSelect->getDebugLoc(),
8173 // FIXME: Discards pointer info.
8174 LLD->getChain(), Addr, MachinePointerInfo(),
8175 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008176 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00008177 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00008178 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
8179 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00008180 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00008181 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00008182 // FIXME: Discards pointer info.
8183 LLD->getChain(), Addr, MachinePointerInfo(),
8184 LLD->getMemoryVT(), LLD->isVolatile(),
8185 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00008186 }
Chris Lattnerf1658062010-09-21 15:58:55 +00008187
8188 // Users of the select now use the result of the load.
8189 CombineTo(TheSelect, Load);
8190
8191 // Users of the old loads now use the new load's chain. We know the
8192 // old-load value is dead now.
8193 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
8194 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
8195 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00008196 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008197
Chris Lattner40c62d52005-10-18 06:04:22 +00008198 return false;
8199}
8200
Chris Lattner600fec32009-03-11 05:08:08 +00008201/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
8202/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00008203SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00008204 SDValue N2, SDValue N3,
8205 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00008206 // (x ? y : y) -> y.
8207 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008208
Owen Andersone50ed302009-08-10 22:56:29 +00008209 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00008210 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
8211 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
8212 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008213
8214 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00008215 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008216 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00008217 if (SCC.getNode()) AddToWorkList(SCC.getNode());
8218 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008219
8220 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00008221 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008222 return N2;
8223 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00008224 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008225 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00008226
Nate Begemanf845b452005-10-08 00:29:44 +00008227 // Check to see if we can simplify the select into an fabs node
8228 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
8229 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00008230 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008231 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
8232 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
8233 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
8234 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008235 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008236
Nate Begemanf845b452005-10-08 00:29:44 +00008237 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
8238 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
8239 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
8240 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008241 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00008242 }
8243 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008244
Chris Lattner600fec32009-03-11 05:08:08 +00008245 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
8246 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
8247 // in it. This is a win when the constant is not otherwise available because
8248 // it replaces two constant pool loads with one. We only do this if the FP
8249 // type is known to be legal, because if it isn't, then we are before legalize
8250 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00008251 // messing with soft float) and if the ConstantFP is not legal, because if
8252 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00008253 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
8254 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
8255 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00008256 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
8257 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00008258 // If both constants have multiple uses, then we won't need to do an
8259 // extra load, they are likely around in registers for other users.
8260 (TV->hasOneUse() || FV->hasOneUse())) {
8261 Constant *Elts[] = {
8262 const_cast<ConstantFP*>(FV->getConstantFPValue()),
8263 const_cast<ConstantFP*>(TV->getConstantFPValue())
8264 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008265 Type *FPTy = Elts[0]->getType();
Chris Lattner600fec32009-03-11 05:08:08 +00008266 const TargetData &TD = *TLI.getTargetData();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008267
Chris Lattner600fec32009-03-11 05:08:08 +00008268 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00008269 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00008270 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
8271 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00008272 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00008273
8274 // Get the offsets to the 0 and 1 element of the array so that we can
8275 // select between them.
8276 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00008277 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00008278 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008279
Chris Lattner600fec32009-03-11 05:08:08 +00008280 SDValue Cond = DAG.getSetCC(DL,
8281 TLI.getSetCCResultType(N0.getValueType()),
8282 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00008283 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008284 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
8285 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00008286 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008287 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
8288 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00008289 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008290 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00008291 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008292 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00008293
8294 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008295 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008296
Nate Begemanf845b452005-10-08 00:29:44 +00008297 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00008298 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00008299 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00008300 (N1C->isNullValue() || // (a < 0) ? b : 0
8301 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00008302 EVT XType = N0.getValueType();
8303 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00008304 if (XType.bitsGE(AType)) {
Nate Begemanf845b452005-10-08 00:29:44 +00008305 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00008306 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00008307 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
8308 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008309 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00008310 SDValue ShCt = DAG.getConstant(ShCtV,
8311 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00008312 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008313 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00008314 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008315
Duncan Sands8e4eb092008-06-08 20:54:56 +00008316 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008317 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008318 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008319 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008320
8321 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008322 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008323
Bill Wendling9729c5a2009-01-31 03:12:48 +00008324 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008325 XType, N0,
8326 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008327 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00008328 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008329
Duncan Sands8e4eb092008-06-08 20:54:56 +00008330 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008331 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008332 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008333 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008334
8335 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008336 }
8337 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008338
Owen Andersoned1088a2010-09-22 22:58:22 +00008339 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
8340 // where y is has a single bit set.
8341 // A plaintext description would be, we can turn the SELECT_CC into an AND
8342 // when the condition can be materialized as an all-ones register. Any
8343 // single bit-test can be materialized as an all-ones register with
8344 // shift-left and shift-right-arith.
8345 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
8346 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008347 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00008348 N2C && N2C->isNullValue()) {
8349 SDValue AndLHS = N0->getOperand(0);
8350 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
8351 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
8352 // Shift the tested bit over the sign bit.
8353 APInt AndMask = ConstAndRHS->getAPIntValue();
8354 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008355 DAG.getConstant(AndMask.countLeadingZeros(),
8356 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008357 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008358
Owen Andersoned1088a2010-09-22 22:58:22 +00008359 // Now arithmetic right shift it all the way over, so the result is either
8360 // all-ones, or zero.
8361 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008362 DAG.getConstant(AndMask.getBitWidth()-1,
8363 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008364 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008365
Owen Andersoned1088a2010-09-22 22:58:22 +00008366 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
8367 }
8368 }
8369
Nate Begeman07ed4172005-10-10 21:26:48 +00008370 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00008371 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00008372 TLI.getBooleanContents(N0.getValueType().isVector()) ==
8373 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008374
Chris Lattner1eba01e2007-04-11 06:50:51 +00008375 // If the caller doesn't want us to simplify this into a zext of a compare,
8376 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00008377 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00008378 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008379
Nate Begeman07ed4172005-10-10 21:26:48 +00008380 // Get a SetCC of the condition
8381 // FIXME: Should probably make sure that setcc is legal if we ever have a
8382 // target where it isn't.
Dan Gohman475871a2008-07-27 21:46:04 +00008383 SDValue Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00008384 // cast from setcc result type to select result type
Duncan Sands25cf2272008-11-24 14:53:14 +00008385 if (LegalTypes) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008386 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00008387 N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00008388 if (N2.getValueType().bitsLT(SCC.getValueType()))
Bill Wendling9729c5a2009-01-31 03:12:48 +00008389 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
Chris Lattner555d8d62006-12-07 22:36:47 +00008390 else
Bill Wendling9729c5a2009-01-31 03:12:48 +00008391 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008392 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008393 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00008394 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00008395 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008396 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008397 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008398
Gabor Greifba36cb52008-08-28 21:40:38 +00008399 AddToWorkList(SCC.getNode());
8400 AddToWorkList(Temp.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00008401
Dan Gohman002e5d02008-03-13 22:13:53 +00008402 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00008403 return Temp;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008404
Nate Begeman07ed4172005-10-10 21:26:48 +00008405 // shl setcc result by log2 n2c
Bill Wendling836ca7d2009-01-30 23:59:18 +00008406 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00008407 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00008408 getShiftAmountTy(Temp.getValueType())));
Nate Begeman07ed4172005-10-10 21:26:48 +00008409 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008410
Nate Begemanf845b452005-10-08 00:29:44 +00008411 // Check to see if this is the equivalent of setcc
8412 // FIXME: Turn all of these into setcc if setcc if setcc is legal
8413 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00008414 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00008415 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00008416 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00008417 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008418 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00008419 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008420 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00008421 return Res;
8422 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008423
Bill Wendling836ca7d2009-01-30 23:59:18 +00008424 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00008425 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008426 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00008427 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008428 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008429 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008430 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00008431 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00008432 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008433 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00008434 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008435 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
8436 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00008437 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00008438 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00008439 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00008440 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008441 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00008442 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008443 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00008444 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008445 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00008446 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008447 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00008448 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00008449 }
8450 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008451
Benjamin Kramercde51102010-07-08 12:09:56 +00008452 // Check to see if this is an integer abs.
8453 // select_cc setg[te] X, 0, X, -X ->
8454 // select_cc setgt X, -1, X, -X ->
8455 // select_cc setl[te] X, 0, -X, X ->
8456 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00008457 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00008458 if (N1C) {
8459 ConstantSDNode *SubC = NULL;
8460 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
8461 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
8462 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
8463 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
8464 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
8465 (N1C->isOne() && CC == ISD::SETLT)) &&
8466 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
8467 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
8468
Owen Andersone50ed302009-08-10 22:56:29 +00008469 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00008470 if (SubC && SubC->isNullValue() && XType.isInteger()) {
8471 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
8472 N0,
8473 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008474 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00008475 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
8476 XType, N0, Shift);
8477 AddToWorkList(Shift.getNode());
8478 AddToWorkList(Add.getNode());
8479 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00008480 }
8481 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008482
Dan Gohman475871a2008-07-27 21:46:04 +00008483 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008484}
8485
Evan Chengfa1eb272007-02-08 22:13:59 +00008486/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00008487SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00008488 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008489 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008490 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00008491 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008492 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00008493}
8494
Nate Begeman69575232005-10-20 02:15:44 +00008495/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
8496/// return a DAG expression to select that will generate the same value by
8497/// multiplying by a magic number. See:
8498/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008499SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008500 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008501 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008502
Andrew Lenharth232c9102006-06-12 16:07:18 +00008503 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008504 ii != ee; ++ii)
8505 AddToWorkList(*ii);
8506 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008507}
8508
8509/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
8510/// return a DAG expression to select that will generate the same value by
8511/// multiplying by a magic number. See:
8512/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008513SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008514 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008515 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00008516
Andrew Lenharth232c9102006-06-12 16:07:18 +00008517 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008518 ii != ee; ++ii)
8519 AddToWorkList(*ii);
8520 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008521}
8522
Nate Begemancc66cdd2009-09-25 06:05:26 +00008523/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00008524// to alias with anything but itself. Provides base object and offset as
8525// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008526static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Dan Gohman46510a72010-04-15 01:51:59 +00008527 const GlobalValue *&GV, void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00008528 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008529 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008530
Jim Laskey71382342006-10-07 23:37:56 +00008531 // If it's an adding a simple constant then integrate the offset.
8532 if (Base.getOpcode() == ISD::ADD) {
8533 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
8534 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008535 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00008536 }
8537 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008538
Nate Begemancc66cdd2009-09-25 06:05:26 +00008539 // Return the underlying GlobalValue, and update the Offset. Return false
8540 // for GlobalAddressSDNode since the same GlobalAddress may be represented
8541 // by multiple nodes with different offsets.
8542 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
8543 GV = G->getGlobal();
8544 Offset += G->getOffset();
8545 return false;
8546 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008547
Nate Begemancc66cdd2009-09-25 06:05:26 +00008548 // Return the underlying Constant value, and update the Offset. Return false
8549 // for ConstantSDNodes since the same constant pool entry may be represented
8550 // by multiple nodes with different offsets.
8551 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
8552 CV = C->isMachineConstantPoolEntry() ? (void *)C->getMachineCPVal()
8553 : (void *)C->getConstVal();
8554 Offset += C->getOffset();
8555 return false;
8556 }
Jim Laskey71382342006-10-07 23:37:56 +00008557 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008558 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00008559}
8560
8561/// isAlias - Return true if there is any possibility that the two addresses
8562/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00008563bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00008564 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008565 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008566 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00008567 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008568 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008569 unsigned SrcValueAlign2,
8570 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00008571 // If they are the same then they must be aliases.
8572 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00008573
Jim Laskey71382342006-10-07 23:37:56 +00008574 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00008575 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00008576 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00008577 const GlobalValue *GV1, *GV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00008578 void *CV1, *CV2;
8579 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
8580 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00008581
Nate Begemancc66cdd2009-09-25 06:05:26 +00008582 // If they have a same base address then check to see if they overlap.
8583 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008584 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008585
Owen Anderson4a9f1502010-09-20 20:39:59 +00008586 // It is possible for different frame indices to alias each other, mostly
8587 // when tail call optimization reuses return address slots for arguments.
8588 // To catch this case, look up the actual index of frame indices to compute
8589 // the real alias relationship.
8590 if (isFrameIndex1 && isFrameIndex2) {
8591 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8592 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
8593 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
8594 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
8595 }
8596
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008597 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00008598 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008599 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
8600 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00008601
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008602 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
8603 // compared to the size and offset of the access, we may be able to prove they
8604 // do not alias. This check is conservative for now to catch cases created by
8605 // splitting vector types.
8606 if ((SrcValueAlign1 == SrcValueAlign2) &&
8607 (SrcValueOffset1 != SrcValueOffset2) &&
8608 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
8609 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
8610 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008611
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008612 // There is no overlap between these relatively aligned accesses of similar
8613 // size, return no alias.
8614 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
8615 return false;
8616 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008617
Jim Laskey07a27092006-10-18 19:08:31 +00008618 if (CombinerGlobalAA) {
8619 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00008620 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
8621 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
8622 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00008623 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008624 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
8625 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00008626 if (AAResult == AliasAnalysis::NoAlias)
8627 return false;
8628 }
Jim Laskey096c22e2006-10-18 12:29:57 +00008629
8630 // Otherwise we have to assume they alias.
8631 return true;
Jim Laskey71382342006-10-07 23:37:56 +00008632}
8633
8634/// FindAliasInfo - Extracts the relevant alias information from the memory
8635/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00008636bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00008637 SDValue &Ptr, int64_t &Size,
8638 const Value *&SrcValue,
8639 int &SrcValueOffset,
8640 unsigned &SrcValueAlign,
8641 const MDNode *&TBAAInfo) const {
8642 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
8643
8644 Ptr = LS->getBasePtr();
8645 Size = LS->getMemoryVT().getSizeInBits() >> 3;
8646 SrcValue = LS->getSrcValue();
8647 SrcValueOffset = LS->getSrcValueOffset();
8648 SrcValueAlign = LS->getOriginalAlignment();
8649 TBAAInfo = LS->getTBAAInfo();
8650 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00008651}
8652
Jim Laskey6ff23e52006-10-04 16:53:27 +00008653/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
8654/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00008655void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
8656 SmallVector<SDValue, 8> &Aliases) {
8657 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008658 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00008659
Jim Laskey279f0532006-09-25 16:29:54 +00008660 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00008661 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008662 int64_t Size;
8663 const Value *SrcValue;
8664 int SrcValueOffset;
8665 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008666 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008667 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008668 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00008669
Jim Laskey6ff23e52006-10-04 16:53:27 +00008670 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00008671 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00008672 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008673
Jim Laskeybc588b82006-10-05 15:07:25 +00008674 // Look at each chain and determine if it is an alias. If so, add it to the
8675 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00008676 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00008677 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008678 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00008679 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008680
8681 // For TokenFactor nodes, look at each operand and only continue up the
8682 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00008683 // find more and revert to original chain since the xform is unlikely to be
8684 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008685 //
8686 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00008687 // chain we found before we hit a tokenfactor rather than the original
8688 // chain.
8689 if (Depth > 6 || Aliases.size() == 2) {
8690 Aliases.clear();
8691 Aliases.push_back(OriginalChain);
8692 break;
8693 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008694
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008695 // Don't bother if we've been before.
8696 if (!Visited.insert(Chain.getNode()))
8697 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008698
Jim Laskeybc588b82006-10-05 15:07:25 +00008699 switch (Chain.getOpcode()) {
8700 case ISD::EntryToken:
8701 // Entry token is ideal chain operand, but handled in FindBetterChain.
8702 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008703
Jim Laskeybc588b82006-10-05 15:07:25 +00008704 case ISD::LOAD:
8705 case ISD::STORE: {
8706 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00008707 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008708 int64_t OpSize;
8709 const Value *OpSrcValue;
8710 int OpSrcValueOffset;
8711 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008712 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00008713 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008714 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008715 OpSrcValueAlign,
8716 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00008717
Jim Laskeybc588b82006-10-05 15:07:25 +00008718 // If chain is alias then stop here.
8719 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008720 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008721 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008722 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008723 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00008724 Aliases.push_back(Chain);
8725 } else {
8726 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00008727 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00008728 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00008729 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008730 break;
8731 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008732
Jim Laskeybc588b82006-10-05 15:07:25 +00008733 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008734 // We have to check each of the operands of the token factor for "small"
8735 // token factors, so we queue them up. Adding the operands to the queue
8736 // (stack) in reverse order maintains the original order and increases the
8737 // likelihood that getNode will find a matching token factor (CSE.)
8738 if (Chain.getNumOperands() > 16) {
8739 Aliases.push_back(Chain);
8740 break;
8741 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008742 for (unsigned n = Chain.getNumOperands(); n;)
8743 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00008744 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00008745 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008746
Jim Laskeybc588b82006-10-05 15:07:25 +00008747 default:
8748 // For all other instructions we will just have to take what we can get.
8749 Aliases.push_back(Chain);
8750 break;
Jim Laskey279f0532006-09-25 16:29:54 +00008751 }
8752 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00008753}
8754
8755/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
8756/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00008757SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
8758 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00008759
Jim Laskey6ff23e52006-10-04 16:53:27 +00008760 // Accumulate all the aliases to this node.
8761 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00008762
Dan Gohman71dc7c92011-05-17 22:20:36 +00008763 // If no operands then chain to entry token.
8764 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008765 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00008766
8767 // If a single operand then chain to it. We don't need to revisit it.
8768 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008769 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008770
Jim Laskey6ff23e52006-10-04 16:53:27 +00008771 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008772 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008773 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00008774}
8775
Nate Begeman1d4d4142005-09-01 00:19:25 +00008776// SelectionDAG::Combine - This is the entry point for the file.
8777//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008778void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00008779 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00008780 /// run - This is the main entry point to this class.
8781 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008782 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00008783}