blob: 08946070b44e5817cd37a151c4ea417243583001 [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);
218 SDValue visitFDIV(SDNode *N);
219 SDValue visitFREM(SDNode *N);
220 SDValue visitFCOPYSIGN(SDNode *N);
221 SDValue visitSINT_TO_FP(SDNode *N);
222 SDValue visitUINT_TO_FP(SDNode *N);
223 SDValue visitFP_TO_SINT(SDNode *N);
224 SDValue visitFP_TO_UINT(SDNode *N);
225 SDValue visitFP_ROUND(SDNode *N);
226 SDValue visitFP_ROUND_INREG(SDNode *N);
227 SDValue visitFP_EXTEND(SDNode *N);
228 SDValue visitFNEG(SDNode *N);
229 SDValue visitFABS(SDNode *N);
230 SDValue visitBRCOND(SDNode *N);
231 SDValue visitBR_CC(SDNode *N);
232 SDValue visitLOAD(SDNode *N);
233 SDValue visitSTORE(SDNode *N);
234 SDValue visitINSERT_VECTOR_ELT(SDNode *N);
235 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
236 SDValue visitBUILD_VECTOR(SDNode *N);
237 SDValue visitCONCAT_VECTORS(SDNode *N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +0000238 SDValue visitEXTRACT_SUBVECTOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000239 SDValue visitVECTOR_SHUFFLE(SDNode *N);
Jim Grosbach9a526492010-06-23 16:07:42 +0000240 SDValue visitMEMBARRIER(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000241
Dan Gohman475871a2008-07-27 21:46:04 +0000242 SDValue XformToShuffleWithZero(SDNode *N);
Bill Wendling35247c32009-01-30 00:45:56 +0000243 SDValue ReassociateOps(unsigned Opc, DebugLoc DL, SDValue LHS, SDValue RHS);
Scott Michelfdc40a02009-02-17 22:15:04 +0000244
Dan Gohman475871a2008-07-27 21:46:04 +0000245 SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
Chris Lattnere70da202007-12-06 07:33:36 +0000246
Dan Gohman475871a2008-07-27 21:46:04 +0000247 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
248 SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Bill Wendling836ca7d2009-01-30 23:59:18 +0000249 SDValue SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2);
Scott Michelfdc40a02009-02-17 22:15:04 +0000250 SDValue SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2,
251 SDValue N3, ISD::CondCode CC,
Bill Wendling836ca7d2009-01-30 23:59:18 +0000252 bool NotExtCompare = false);
Owen Andersone50ed302009-08-10 22:56:29 +0000253 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +0000254 DebugLoc DL, bool foldBooleans = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000255 SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Chris Lattner5eee4272008-01-26 01:09:19 +0000256 unsigned HiOp);
Owen Andersone50ed302009-08-10 22:56:29 +0000257 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000258 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
Dan Gohman475871a2008-07-27 21:46:04 +0000259 SDValue BuildSDIV(SDNode *N);
260 SDValue BuildUDIV(SDNode *N);
Evan Cheng9568e5c2011-06-21 06:01:08 +0000261 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
262 bool DemandHighBits = true);
263 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
Bill Wendling317bd702009-01-30 21:14:50 +0000264 SDNode *MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL);
Dan Gohman475871a2008-07-27 21:46:04 +0000265 SDValue ReduceLoadWidth(SDNode *N);
Evan Cheng8b944d32009-05-28 00:35:15 +0000266 SDValue ReduceLoadOpStoreWidth(SDNode *N);
Evan Cheng31959b12011-02-02 01:06:55 +0000267 SDValue TransformFPLoadStorePair(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000268
Dan Gohman475871a2008-07-27 21:46:04 +0000269 SDValue GetDemandedBits(SDValue V, const APInt &Mask);
Scott Michelfdc40a02009-02-17 22:15:04 +0000270
Jim Laskey6ff23e52006-10-04 16:53:27 +0000271 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
272 /// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000273 void GatherAllAliases(SDNode *N, SDValue OriginalChain,
274 SmallVector<SDValue, 8> &Aliases);
Jim Laskey6ff23e52006-10-04 16:53:27 +0000275
Jim Laskey096c22e2006-10-18 12:29:57 +0000276 /// isAlias - Return true if there is any possibility that the two addresses
277 /// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +0000278 bool isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +0000279 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000280 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000281 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +0000282 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000283 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000284 unsigned SrcValueAlign2,
285 const MDNode *TBAAInfo2) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000286
Jim Laskey7ca56af2006-10-11 13:47:09 +0000287 /// FindAliasInfo - Extracts the relevant alias information from the memory
288 /// node. Returns true if the operand was a load.
289 bool FindAliasInfo(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000290 SDValue &Ptr, int64_t &Size,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000291 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000292 unsigned &SrcValueAlignment,
293 const MDNode *&TBAAInfo) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000294
Jim Laskey279f0532006-09-25 16:29:54 +0000295 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000296 /// looking for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +0000297 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands92abc622009-01-31 15:50:11 +0000298
Chris Lattner2392ae72010-04-15 04:48:01 +0000299 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000300 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000301 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000302 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000303
Nate Begeman1d4d4142005-09-01 00:19:25 +0000304 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000305 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000306
Chris Lattner2392ae72010-04-15 04:48:01 +0000307 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000308
Chris Lattner2392ae72010-04-15 04:48:01 +0000309 /// getShiftAmountTy - Returns a type large enough to hold any valid
310 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000311 EVT getShiftAmountTy(EVT LHSTy) {
312 return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000313 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000314
Chris Lattner2392ae72010-04-15 04:48:01 +0000315 /// isTypeLegal - This method returns true if we are running before type
316 /// legalization or if the specified VT is legal.
317 bool isTypeLegal(const EVT &VT) {
318 if (!LegalTypes) return true;
319 return TLI.isTypeLegal(VT);
320 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000321 };
322}
323
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000324
325namespace {
326/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
327/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000328class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000329 DAGCombiner &DC;
330public:
Dan Gohmanb5660dc2008-02-20 16:44:09 +0000331 explicit WorkListRemover(DAGCombiner &dc) : DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000332
Duncan Sandsedfcf592008-06-11 11:42:12 +0000333 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000334 DC.removeFromWorkList(N);
335 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000336
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000337 virtual void NodeUpdated(SDNode *N) {
338 // Ignore updates.
339 }
340};
341}
342
Chris Lattner24664722006-03-01 04:53:38 +0000343//===----------------------------------------------------------------------===//
344// TargetLowering::DAGCombinerInfo implementation
345//===----------------------------------------------------------------------===//
346
347void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
348 ((DAGCombiner*)DC)->AddToWorkList(N);
349}
350
Cameron Zwariched3caf92011-04-02 02:40:26 +0000351void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
352 ((DAGCombiner*)DC)->removeFromWorkList(N);
353}
354
Dan Gohman475871a2008-07-27 21:46:04 +0000355SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000356CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
357 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000358}
359
Dan Gohman475871a2008-07-27 21:46:04 +0000360SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000361CombineTo(SDNode *N, SDValue Res, bool AddTo) {
362 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000363}
364
365
Dan Gohman475871a2008-07-27 21:46:04 +0000366SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000367CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
368 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000369}
370
Dan Gohmane5af2d32009-01-29 01:59:02 +0000371void TargetLowering::DAGCombinerInfo::
372CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
373 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
374}
Chris Lattner24664722006-03-01 04:53:38 +0000375
Chris Lattner24664722006-03-01 04:53:38 +0000376//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000377// Helper Functions
378//===----------------------------------------------------------------------===//
379
380/// isNegatibleForFree - Return 1 if we can compute the negated form of the
381/// specified expression for the same cost as the expression itself, or 2 if we
382/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000383static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000384 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000385 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000386 unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000387 // No compile time optimizations on this type.
Owen Anderson825b72b2009-08-11 20:47:22 +0000388 if (Op.getValueType() == MVT::ppcf128)
Dale Johannesendb44bf82007-10-16 23:38:29 +0000389 return 0;
390
Chris Lattner29446522007-05-14 22:04:50 +0000391 // fneg is removable even if it has multiple uses.
392 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000393
Chris Lattner29446522007-05-14 22:04:50 +0000394 // Don't allow anything with multiple uses.
395 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000396
Chris Lattner3adf9512007-05-25 02:19:06 +0000397 // Don't recurse exponentially.
398 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000399
Chris Lattner29446522007-05-14 22:04:50 +0000400 switch (Op.getOpcode()) {
401 default: return false;
402 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000403 // Don't invert constant FP values after legalize. The negated constant
404 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000405 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000406 case ISD::FADD:
407 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000408 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000409
Owen Andersonafd3d562012-03-06 00:29:31 +0000410 // After operation legalization, it might not be legal to create new FSUBs.
411 if (LegalOperations &&
412 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
413 return 0;
414
Bill Wendlingd34470c2009-01-30 23:10:18 +0000415 // fold (fsub (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000416 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
417 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000418 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000419 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000420 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000421 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000422 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000423 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000424 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000425
Bill Wendlingd34470c2009-01-30 23:10:18 +0000426 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000427 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000428
Chris Lattner29446522007-05-14 22:04:50 +0000429 case ISD::FMUL:
430 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000431 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000432
Bill Wendlingd34470c2009-01-30 23:10:18 +0000433 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000434 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
435 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000436 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000437
Owen Andersonafd3d562012-03-06 00:29:31 +0000438 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000439 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000440
Chris Lattner29446522007-05-14 22:04:50 +0000441 case ISD::FP_EXTEND:
442 case ISD::FP_ROUND:
443 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000444 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000445 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000446 }
447}
448
449/// GetNegatedExpression - If isNegatibleForFree returns true, this function
450/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000451static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000452 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000453 // fneg is removable even if it has multiple uses.
454 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000455
Chris Lattner29446522007-05-14 22:04:50 +0000456 // Don't allow anything with multiple uses.
457 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000458
Chris Lattner3adf9512007-05-25 02:19:06 +0000459 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000460 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000461 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000462 case ISD::ConstantFP: {
463 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
464 V.changeSign();
465 return DAG.getConstantFP(V, Op.getValueType());
466 }
Chris Lattner29446522007-05-14 22:04:50 +0000467 case ISD::FADD:
468 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000469 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000470
Bill Wendlingd34470c2009-01-30 23:10:18 +0000471 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000472 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000473 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000474 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000475 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000476 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000477 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000478 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000479 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Bill Wendling35247c32009-01-30 00:45:56 +0000480 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000481 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000482 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000483 Op.getOperand(0));
484 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000485 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000486 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000487
Bill Wendlingd34470c2009-01-30 23:10:18 +0000488 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000489 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000490 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000491 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000492
Bill Wendlingd34470c2009-01-30 23:10:18 +0000493 // fold (fneg (fsub A, B)) -> (fsub B, A)
Bill Wendling35247c32009-01-30 00:45:56 +0000494 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
495 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000496
Chris Lattner29446522007-05-14 22:04:50 +0000497 case ISD::FMUL:
498 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000499 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000500
Bill Wendlingd34470c2009-01-30 23:10:18 +0000501 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000502 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000503 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000504 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000505 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000506 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000507 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000508 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000509
Bill Wendlingd34470c2009-01-30 23:10:18 +0000510 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Bill Wendling35247c32009-01-30 00:45:56 +0000511 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000512 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000513 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000514 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000515
Chris Lattner29446522007-05-14 22:04:50 +0000516 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000517 case ISD::FSIN:
Bill Wendling35247c32009-01-30 00:45:56 +0000518 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000519 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000520 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000521 case ISD::FP_ROUND:
Bill Wendling35247c32009-01-30 00:45:56 +0000522 return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000523 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000524 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000525 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000526 }
527}
Chris Lattner24664722006-03-01 04:53:38 +0000528
529
Nate Begeman4ebd8052005-09-01 23:24:04 +0000530// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
531// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000532// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000533// nodes based on the type of node we are checking. This simplifies life a
534// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000535static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
536 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000537 if (N.getOpcode() == ISD::SETCC) {
538 LHS = N.getOperand(0);
539 RHS = N.getOperand(1);
540 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000541 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000542 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000543 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000544 N.getOperand(2).getOpcode() == ISD::Constant &&
545 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000546 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000547 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
548 LHS = N.getOperand(0);
549 RHS = N.getOperand(1);
550 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000551 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000552 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000553 return false;
554}
555
Nate Begeman99801192005-09-07 23:25:52 +0000556// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
557// one use. If this is true, it allows the users to invert the operation for
558// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000559static bool isOneUseSetCC(SDValue N) {
560 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000561 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000562 return true;
563 return false;
564}
565
Bill Wendling35247c32009-01-30 00:45:56 +0000566SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
567 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000568 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000569 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
570 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000571 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000572 SDValue OpNode =
573 DAG.FoldConstantArithmetic(Opc, VT,
574 cast<ConstantSDNode>(N0.getOperand(1)),
575 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000576 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000577 }
578 if (N0.hasOneUse()) {
Bill Wendling35247c32009-01-30 00:45:56 +0000579 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
580 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
581 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000582 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000583 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000584 }
585 }
Bill Wendling35247c32009-01-30 00:45:56 +0000586
Nate Begemancd4d58c2006-02-03 06:46:56 +0000587 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
588 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000589 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000590 SDValue OpNode =
591 DAG.FoldConstantArithmetic(Opc, VT,
592 cast<ConstantSDNode>(N1.getOperand(1)),
593 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000594 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000595 }
596 if (N1.hasOneUse()) {
Bill Wendling35247c32009-01-30 00:45:56 +0000597 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendlingd69c3142009-01-30 02:23:43 +0000598 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000599 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000600 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000601 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000602 }
603 }
Bill Wendling35247c32009-01-30 00:45:56 +0000604
Dan Gohman475871a2008-07-27 21:46:04 +0000605 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000606}
607
Dan Gohman475871a2008-07-27 21:46:04 +0000608SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
609 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000610 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
611 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000612 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000613 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000614 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000615 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000616 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000617 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000618 assert((!To[i].getNode() ||
619 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000620 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000621 WorkListRemover DeadNodes(*this);
622 DAG.ReplaceAllUsesWith(N, To, &DeadNodes);
Scott Michelfdc40a02009-02-17 22:15:04 +0000623
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000624 if (AddTo) {
625 // Push the new nodes and any users onto the worklist
626 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000627 if (To[i].getNode()) {
628 AddToWorkList(To[i].getNode());
629 AddUsersToWorkList(To[i].getNode());
630 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000631 }
632 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000633
Dan Gohmandbe664a2009-01-19 21:44:21 +0000634 // Finally, if the node is now dead, remove it from the graph. The node
635 // may not be dead if the replacement process recursively simplified to
636 // something else needing this node.
637 if (N->use_empty()) {
638 // Nodes can be reintroduced into the worklist. Make sure we do not
639 // process a node that has been replaced.
640 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000641
Dan Gohmandbe664a2009-01-19 21:44:21 +0000642 // Finally, since the node is now dead, remove it from the graph.
643 DAG.DeleteNode(N);
644 }
Dan Gohman475871a2008-07-27 21:46:04 +0000645 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000646}
647
Evan Chenge5b51ac2010-04-17 06:13:15 +0000648void DAGCombiner::
649CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000650 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000651 // are deleted, make sure to remove them from our worklist.
652 WorkListRemover DeadNodes(*this);
653 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, &DeadNodes);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000654
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000655 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000656 AddToWorkList(TLO.New.getNode());
657 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000658
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000659 // Finally, if the node is now dead, remove it from the graph. The node
660 // may not be dead if the replacement process recursively simplified to
661 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000662 if (TLO.Old.getNode()->use_empty()) {
663 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000664
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000665 // If the operands of this node are only used by the node, they will now
666 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000667 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
668 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
669 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000670
Gabor Greifba36cb52008-08-28 21:40:38 +0000671 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000672 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000673}
674
675/// SimplifyDemandedBits - Check the specified integer node value to see if
676/// it can be simplified or if things it uses can be simplified by bit
677/// propagation. If so, return true.
678bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000679 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000680 APInt KnownZero, KnownOne;
681 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
682 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000683
Dan Gohmane5af2d32009-01-29 01:59:02 +0000684 // Revisit the node.
685 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000686
Dan Gohmane5af2d32009-01-29 01:59:02 +0000687 // Replace the old value with the new one.
688 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000689 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000690 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000691 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000692 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000693 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000694
Dan Gohmane5af2d32009-01-29 01:59:02 +0000695 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000696 return true;
697}
698
Evan Cheng95c57ea2010-04-24 04:43:44 +0000699void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
700 DebugLoc dl = Load->getDebugLoc();
701 EVT VT = Load->getValueType(0);
702 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000703
Evan Cheng95c57ea2010-04-24 04:43:44 +0000704 DEBUG(dbgs() << "\nReplacing.9 ";
705 Load->dump(&DAG);
706 dbgs() << "\nWith: ";
707 Trunc.getNode()->dump(&DAG);
708 dbgs() << '\n');
709 WorkListRemover DeadNodes(*this);
710 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc, &DeadNodes);
711 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1),
712 &DeadNodes);
713 removeFromWorkList(Load);
714 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000715 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000716}
717
718SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
719 Replace = false;
Evan Cheng4c26e932010-04-19 19:29:22 +0000720 DebugLoc dl = Op.getDebugLoc();
Evan Chenge5b51ac2010-04-17 06:13:15 +0000721 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000722 EVT MemVT = LD->getMemoryVT();
723 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000724 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000725 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000726 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000727 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000728 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000729 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000730 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000731 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000732 LD->isNonTemporal(), LD->getAlignment());
733 }
734
Evan Cheng4c26e932010-04-19 19:29:22 +0000735 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000736 switch (Opc) {
737 default: break;
738 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000739 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000740 SExtPromoteOperand(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::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000743 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000744 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000745 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000746 case ISD::Constant: {
747 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000748 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000749 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000750 }
Evan Chengcaf77402010-04-23 19:10:30 +0000751 }
752
753 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000754 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000755 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000756}
757
Evan Cheng95c57ea2010-04-24 04:43:44 +0000758SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000759 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
760 return SDValue();
761 EVT OldVT = Op.getValueType();
762 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000763 bool Replace = false;
764 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
765 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000766 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000767 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000768
769 if (Replace)
770 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
771 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000772 DAG.getValueType(OldVT));
773}
774
Evan Cheng95c57ea2010-04-24 04:43:44 +0000775SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000776 EVT OldVT = Op.getValueType();
777 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000778 bool Replace = false;
779 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
780 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000781 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000782 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000783
784 if (Replace)
785 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
786 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000787}
788
Evan Cheng64b7bf72010-04-16 06:14:10 +0000789/// PromoteIntBinOp - Promote the specified integer binary operation if the
790/// target indicates it is beneficial. e.g. On x86, it's usually better to
791/// promote i16 operations to i32 since i16 instructions are longer.
792SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
793 if (!LegalOperations)
794 return SDValue();
795
796 EVT VT = Op.getValueType();
797 if (VT.isVector() || !VT.isInteger())
798 return SDValue();
799
Evan Chenge5b51ac2010-04-17 06:13:15 +0000800 // If operation type is 'undesirable', e.g. i16 on x86, consider
801 // promoting it.
802 unsigned Opc = Op.getOpcode();
803 if (TLI.isTypeDesirableForOp(Opc, VT))
804 return SDValue();
805
Evan Cheng64b7bf72010-04-16 06:14:10 +0000806 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000807 // Consult target whether it is a good idea to promote this operation and
808 // what's the right type to promote it to.
809 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000810 assert(PVT != VT && "Don't know what type to promote to!");
811
Evan Cheng95c57ea2010-04-24 04:43:44 +0000812 bool Replace0 = false;
813 SDValue N0 = Op.getOperand(0);
814 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
815 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000816 return SDValue();
817
Evan Cheng95c57ea2010-04-24 04:43:44 +0000818 bool Replace1 = false;
819 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000820 SDValue NN1;
821 if (N0 == N1)
822 NN1 = NN0;
823 else {
824 NN1 = PromoteOperand(N1, PVT, Replace1);
825 if (NN1.getNode() == 0)
826 return SDValue();
827 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000828
Evan Cheng95c57ea2010-04-24 04:43:44 +0000829 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000830 if (NN1.getNode())
831 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000832
833 if (Replace0)
834 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
835 if (Replace1)
836 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000837
Evan Chengac7eae52010-04-27 19:48:13 +0000838 DEBUG(dbgs() << "\nPromoting ";
839 Op.getNode()->dump(&DAG));
Evan Cheng07c4e102010-04-22 20:19:46 +0000840 DebugLoc dl = Op.getDebugLoc();
841 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000842 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000843 }
844 return SDValue();
845}
846
847/// PromoteIntShiftOp - Promote the specified integer shift operation if the
848/// target indicates it is beneficial. e.g. On x86, it's usually better to
849/// promote i16 operations to i32 since i16 instructions are longer.
850SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
851 if (!LegalOperations)
852 return SDValue();
853
854 EVT VT = Op.getValueType();
855 if (VT.isVector() || !VT.isInteger())
856 return SDValue();
857
858 // If operation type is 'undesirable', e.g. i16 on x86, consider
859 // promoting it.
860 unsigned Opc = Op.getOpcode();
861 if (TLI.isTypeDesirableForOp(Opc, VT))
862 return SDValue();
863
864 EVT PVT = VT;
865 // Consult target whether it is a good idea to promote this operation and
866 // what's the right type to promote it to.
867 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
868 assert(PVT != VT && "Don't know what type to promote to!");
869
Evan Cheng95c57ea2010-04-24 04:43:44 +0000870 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000871 SDValue N0 = Op.getOperand(0);
872 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000873 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000874 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000875 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000876 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000877 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000878 if (N0.getNode() == 0)
879 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000880
Evan Chenge5b51ac2010-04-17 06:13:15 +0000881 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000882 if (Replace)
883 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000884
Evan Chengac7eae52010-04-27 19:48:13 +0000885 DEBUG(dbgs() << "\nPromoting ";
886 Op.getNode()->dump(&DAG));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000887 DebugLoc dl = Op.getDebugLoc();
888 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000889 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000890 }
891 return SDValue();
892}
893
Evan Cheng4c26e932010-04-19 19:29:22 +0000894SDValue DAGCombiner::PromoteExtend(SDValue Op) {
895 if (!LegalOperations)
896 return SDValue();
897
898 EVT VT = Op.getValueType();
899 if (VT.isVector() || !VT.isInteger())
900 return SDValue();
901
902 // If operation type is 'undesirable', e.g. i16 on x86, consider
903 // promoting it.
904 unsigned Opc = Op.getOpcode();
905 if (TLI.isTypeDesirableForOp(Opc, VT))
906 return SDValue();
907
908 EVT PVT = VT;
909 // Consult target whether it is a good idea to promote this operation and
910 // what's the right type to promote it to.
911 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
912 assert(PVT != VT && "Don't know what type to promote to!");
913 // fold (aext (aext x)) -> (aext x)
914 // fold (aext (zext x)) -> (zext x)
915 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000916 DEBUG(dbgs() << "\nPromoting ";
917 Op.getNode()->dump(&DAG));
Evan Cheng4c26e932010-04-19 19:29:22 +0000918 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
919 }
920 return SDValue();
921}
922
923bool DAGCombiner::PromoteLoad(SDValue Op) {
924 if (!LegalOperations)
925 return false;
926
927 EVT VT = Op.getValueType();
928 if (VT.isVector() || !VT.isInteger())
929 return false;
930
931 // If operation type is 'undesirable', e.g. i16 on x86, consider
932 // promoting it.
933 unsigned Opc = Op.getOpcode();
934 if (TLI.isTypeDesirableForOp(Opc, VT))
935 return false;
936
937 EVT PVT = VT;
938 // Consult target whether it is a good idea to promote this operation and
939 // what's the right type to promote it to.
940 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
941 assert(PVT != VT && "Don't know what type to promote to!");
942
943 DebugLoc dl = Op.getDebugLoc();
944 SDNode *N = Op.getNode();
945 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000946 EVT MemVT = LD->getMemoryVT();
947 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000948 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000949 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000950 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000951 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000952 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000953 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000954 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000955 LD->isNonTemporal(), LD->getAlignment());
956 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
957
Evan Cheng95c57ea2010-04-24 04:43:44 +0000958 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000959 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000960 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000961 Result.getNode()->dump(&DAG);
962 dbgs() << '\n');
963 WorkListRemover DeadNodes(*this);
964 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result, &DeadNodes);
965 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1), &DeadNodes);
966 removeFromWorkList(N);
967 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000968 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000969 return true;
970 }
971 return false;
972}
973
Evan Chenge5b51ac2010-04-17 06:13:15 +0000974
Chris Lattner29446522007-05-14 22:04:50 +0000975//===----------------------------------------------------------------------===//
976// Main DAG Combiner implementation
977//===----------------------------------------------------------------------===//
978
Duncan Sands25cf2272008-11-24 14:53:14 +0000979void DAGCombiner::Run(CombineLevel AtLevel) {
980 // set the instance variables, so that the various visit routines may use it.
981 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +0000982 LegalOperations = Level >= AfterLegalizeVectorOps;
983 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +0000984
Evan Cheng17a568b2008-08-29 22:21:44 +0000985 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +0000986 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
987 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +0000988 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +0000989
Evan Cheng17a568b2008-08-29 22:21:44 +0000990 // Create a dummy node (which is not added to allnodes), that adds a reference
991 // to the root node, preventing it from being deleted, and tracking any
992 // changes of the root.
993 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +0000994
Jim Laskey26f7fa72006-10-17 19:33:52 +0000995 // The root of the dag may dangle to deleted nodes until the dag combiner is
996 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +0000997 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +0000998
James Molloy6660c052012-02-16 09:17:04 +0000999 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +00001000 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +00001001 while (!WorkListContents.empty()) {
1002 SDNode *N;
1003 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1004 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1005 // worklist *should* contain, and check the node we want to visit is should
1006 // actually be visited.
1007 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001008 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001009 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001010
Evan Cheng17a568b2008-08-29 22:21:44 +00001011 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1012 // N is deleted from the DAG, since they too may now be dead or may have a
1013 // reduced number of uses, allowing other xforms.
1014 if (N->use_empty() && N != &Dummy) {
1015 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1016 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001017
Evan Cheng17a568b2008-08-29 22:21:44 +00001018 DAG.DeleteNode(N);
1019 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001020 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001021
Evan Cheng17a568b2008-08-29 22:21:44 +00001022 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001023
Evan Cheng17a568b2008-08-29 22:21:44 +00001024 if (RV.getNode() == 0)
1025 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001026
Evan Cheng17a568b2008-08-29 22:21:44 +00001027 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001028
Evan Cheng17a568b2008-08-29 22:21:44 +00001029 // If we get back the same node we passed in, rather than a new node or
1030 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001031 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001032 // mechanics for us, we have no work to do in this case.
1033 if (RV.getNode() == N)
1034 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001035
Evan Cheng17a568b2008-08-29 22:21:44 +00001036 assert(N->getOpcode() != ISD::DELETED_NODE &&
1037 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1038 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001039
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001040 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001041 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001042 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001043 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001044 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001045
Devang Patel9728ea22011-05-23 22:04:42 +00001046 // Transfer debug value.
1047 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001048 WorkListRemover DeadNodes(*this);
1049 if (N->getNumValues() == RV.getNode()->getNumValues())
1050 DAG.ReplaceAllUsesWith(N, RV.getNode(), &DeadNodes);
1051 else {
1052 assert(N->getValueType(0) == RV.getValueType() &&
1053 N->getNumValues() == 1 && "Type mismatch");
1054 SDValue OpV = RV;
1055 DAG.ReplaceAllUsesWith(N, &OpV, &DeadNodes);
1056 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001057
Evan Cheng17a568b2008-08-29 22:21:44 +00001058 // Push the new node and any users onto the worklist
1059 AddToWorkList(RV.getNode());
1060 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001061
Evan Cheng17a568b2008-08-29 22:21:44 +00001062 // Add any uses of the old node to the worklist in case this node is the
1063 // last one that uses them. They may become dead after this node is
1064 // deleted.
1065 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1066 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001067
Dan Gohmandbe664a2009-01-19 21:44:21 +00001068 // Finally, if the node is now dead, remove it from the graph. The node
1069 // may not be dead if the replacement process recursively simplified to
1070 // something else needing this node.
1071 if (N->use_empty()) {
1072 // Nodes can be reintroduced into the worklist. Make sure we do not
1073 // process a node that has been replaced.
1074 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001075
Dan Gohmandbe664a2009-01-19 21:44:21 +00001076 // Finally, since the node is now dead, remove it from the graph.
1077 DAG.DeleteNode(N);
1078 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001079 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001080
Chris Lattner95038592005-10-05 06:35:28 +00001081 // If the root changed (e.g. it was a dead load, update the root).
1082 DAG.setRoot(Dummy.getValue());
Nate Begeman1d4d4142005-09-01 00:19:25 +00001083}
1084
Dan Gohman475871a2008-07-27 21:46:04 +00001085SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001086 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001087 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001088 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001089 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001090 case ISD::ADD: return visitADD(N);
1091 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001092 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001093 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001094 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001095 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001096 case ISD::MUL: return visitMUL(N);
1097 case ISD::SDIV: return visitSDIV(N);
1098 case ISD::UDIV: return visitUDIV(N);
1099 case ISD::SREM: return visitSREM(N);
1100 case ISD::UREM: return visitUREM(N);
1101 case ISD::MULHU: return visitMULHU(N);
1102 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001103 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1104 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001105 case ISD::SMULO: return visitSMULO(N);
1106 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001107 case ISD::SDIVREM: return visitSDIVREM(N);
1108 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001109 case ISD::AND: return visitAND(N);
1110 case ISD::OR: return visitOR(N);
1111 case ISD::XOR: return visitXOR(N);
1112 case ISD::SHL: return visitSHL(N);
1113 case ISD::SRA: return visitSRA(N);
1114 case ISD::SRL: return visitSRL(N);
1115 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001116 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001117 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001118 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001119 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001120 case ISD::SELECT: return visitSELECT(N);
1121 case ISD::SELECT_CC: return visitSELECT_CC(N);
1122 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001123 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1124 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001125 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001126 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1127 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001128 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001129 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001130 case ISD::FADD: return visitFADD(N);
1131 case ISD::FSUB: return visitFSUB(N);
1132 case ISD::FMUL: return visitFMUL(N);
1133 case ISD::FDIV: return visitFDIV(N);
1134 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001135 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001136 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1137 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1138 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1139 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1140 case ISD::FP_ROUND: return visitFP_ROUND(N);
1141 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1142 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1143 case ISD::FNEG: return visitFNEG(N);
1144 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001145 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001146 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001147 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001148 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001149 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001150 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001151 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1152 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001153 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001154 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001155 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001156 }
Dan Gohman475871a2008-07-27 21:46:04 +00001157 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001158}
1159
Dan Gohman475871a2008-07-27 21:46:04 +00001160SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001161 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001162
1163 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001164 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001165 assert(N->getOpcode() != ISD::DELETED_NODE &&
1166 "Node was deleted but visit returned NULL!");
1167
1168 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1169 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1170
1171 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001172 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001173 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001174
1175 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1176 }
1177 }
1178
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001179 // If nothing happened still, try promoting the operation.
1180 if (RV.getNode() == 0) {
1181 switch (N->getOpcode()) {
1182 default: break;
1183 case ISD::ADD:
1184 case ISD::SUB:
1185 case ISD::MUL:
1186 case ISD::AND:
1187 case ISD::OR:
1188 case ISD::XOR:
1189 RV = PromoteIntBinOp(SDValue(N, 0));
1190 break;
1191 case ISD::SHL:
1192 case ISD::SRA:
1193 case ISD::SRL:
1194 RV = PromoteIntShiftOp(SDValue(N, 0));
1195 break;
1196 case ISD::SIGN_EXTEND:
1197 case ISD::ZERO_EXTEND:
1198 case ISD::ANY_EXTEND:
1199 RV = PromoteExtend(SDValue(N, 0));
1200 break;
1201 case ISD::LOAD:
1202 if (PromoteLoad(SDValue(N, 0)))
1203 RV = SDValue(N, 0);
1204 break;
1205 }
1206 }
1207
Scott Michelfdc40a02009-02-17 22:15:04 +00001208 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001209 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001210 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001211 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1212 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001213 SDValue N0 = N->getOperand(0);
1214 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001215
Evan Cheng08b11732008-03-22 01:55:50 +00001216 // Constant operands are canonicalized to RHS.
1217 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001218 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001219 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1220 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001221 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001222 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001223 }
1224 }
1225
Dan Gohman389079b2007-10-08 17:57:15 +00001226 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001227}
Dan Gohman389079b2007-10-08 17:57:15 +00001228
Chris Lattner6270f682006-10-08 22:57:01 +00001229/// getInputChainForNode - Given a node, return its input chain if it has one,
1230/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001231static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001232 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001233 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001234 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001235 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001236 return N->getOperand(NumOps-1);
1237 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001238 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001239 return N->getOperand(i);
1240 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001241 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001242}
1243
Dan Gohman475871a2008-07-27 21:46:04 +00001244SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001245 // If N has two operands, where one has an input chain equal to the other,
1246 // the 'other' chain is redundant.
1247 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001248 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001249 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001250 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001251 return N->getOperand(1);
1252 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001253
Chris Lattnerc76d4412007-05-16 06:37:59 +00001254 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001255 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001256 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001257 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001258
Jim Laskey6ff23e52006-10-04 16:53:27 +00001259 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001260 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001261
Jim Laskey71382342006-10-07 23:37:56 +00001262 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001263 // encountered.
1264 for (unsigned i = 0; i < TFs.size(); ++i) {
1265 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001266
Jim Laskey6ff23e52006-10-04 16:53:27 +00001267 // Check each of the operands.
1268 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001269 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001270
Jim Laskey6ff23e52006-10-04 16:53:27 +00001271 switch (Op.getOpcode()) {
1272 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001273 // Entry tokens don't need to be added to the list. They are
1274 // rededundant.
1275 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001276 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001277
Jim Laskey6ff23e52006-10-04 16:53:27 +00001278 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001279 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001280 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001281 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001282 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001283 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001284 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001285 Changed = true;
1286 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001287 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001288 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001289
Jim Laskey6ff23e52006-10-04 16:53:27 +00001290 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001291 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001292 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001293 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001294 else
1295 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001296 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001297 }
1298 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001299 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001300
Dan Gohman475871a2008-07-27 21:46:04 +00001301 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001302
1303 // If we've change things around then replace token factor.
1304 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001305 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001306 // The entry token is the only possible outcome.
1307 Result = DAG.getEntryNode();
1308 } else {
1309 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001310 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001311 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001312 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001313
Jim Laskey274062c2006-10-13 23:32:28 +00001314 // Don't add users to work list.
1315 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001316 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001317
Jim Laskey6ff23e52006-10-04 16:53:27 +00001318 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001319}
1320
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001321/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001322SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001323 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001324 // Replacing results may cause a different MERGE_VALUES to suddenly
1325 // be CSE'd with N, and carry its uses with it. Iterate until no
1326 // uses remain, to ensure that the node can be safely deleted.
1327 do {
1328 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1329 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i),
1330 &DeadNodes);
1331 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001332 removeFromWorkList(N);
1333 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001334 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001335}
1336
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001337static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001338SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1339 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001340 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001341 SDValue N00 = N0.getOperand(0);
1342 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001343 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001344
Gabor Greifba36cb52008-08-28 21:40:38 +00001345 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001346 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001347 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1348 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1349 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1350 N00.getOperand(0), N01),
1351 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1352 N00.getOperand(1), N01));
1353 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001354 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001355
Dan Gohman475871a2008-07-27 21:46:04 +00001356 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001357}
1358
Dan Gohman475871a2008-07-27 21:46:04 +00001359SDValue DAGCombiner::visitADD(SDNode *N) {
1360 SDValue N0 = N->getOperand(0);
1361 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001362 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1363 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001364 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001365
1366 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001367 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001368 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001369 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001370 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001371
Dan Gohman613e0d82007-07-03 14:03:57 +00001372 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001373 if (N0.getOpcode() == ISD::UNDEF)
1374 return N0;
1375 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001376 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001377 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001378 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001379 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001380 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001381 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001382 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001383 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001384 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001385 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001386 // fold (add Sym, c) -> Sym+c
1387 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001388 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001389 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001390 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001391 GA->getOffset() +
1392 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001393 // fold ((c1-A)+c2) -> (c1+c2)-A
1394 if (N1C && N0.getOpcode() == ISD::SUB)
1395 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001396 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001397 DAG.getConstant(N1C->getAPIntValue()+
1398 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001399 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001400 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001401 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001402 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001403 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001404 // fold ((0-A) + B) -> B-A
1405 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1406 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001407 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001408 // fold (A + (0-B)) -> A-B
1409 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1410 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001411 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001412 // fold (A+(B-A)) -> B
1413 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001414 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001415 // fold ((B-A)+A) -> B
1416 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1417 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001418 // fold (A+(B-(A+C))) to (B-C)
1419 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001420 N0 == N1.getOperand(1).getOperand(0))
1421 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001422 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001423 // fold (A+(B-(C+A))) to (B-C)
1424 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001425 N0 == N1.getOperand(1).getOperand(1))
1426 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001427 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001428 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001429 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1430 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001431 N0 == N1.getOperand(0).getOperand(1))
1432 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1433 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001434
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001435 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1436 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1437 SDValue N00 = N0.getOperand(0);
1438 SDValue N01 = N0.getOperand(1);
1439 SDValue N10 = N1.getOperand(0);
1440 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001441
1442 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1443 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1444 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1445 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001446 }
Chris Lattner947c2892006-03-13 06:51:27 +00001447
Dan Gohman475871a2008-07-27 21:46:04 +00001448 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1449 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001450
Chris Lattner947c2892006-03-13 06:51:27 +00001451 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001452 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001453 APInt LHSZero, LHSOne;
1454 APInt RHSZero, RHSOne;
Dan Gohman5b870af2010-03-02 02:14:38 +00001455 APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001456 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001457
Dan Gohman948d8ea2008-02-20 16:33:30 +00001458 if (LHSZero.getBoolValue()) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001459 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001460
Chris Lattner947c2892006-03-13 06:51:27 +00001461 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1462 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1463 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1464 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001465 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001466 }
1467 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001468
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001469 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001470 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001471 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001472 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001473 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001474 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001475 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001476 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001477 }
1478
Dan Gohmancd9e1552010-01-19 23:30:49 +00001479 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1480 if (N1.getOpcode() == ISD::SHL &&
1481 N1.getOperand(0).getOpcode() == ISD::SUB)
1482 if (ConstantSDNode *C =
1483 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1484 if (C->getAPIntValue() == 0)
1485 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1486 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1487 N1.getOperand(0).getOperand(1),
1488 N1.getOperand(1)));
1489 if (N0.getOpcode() == ISD::SHL &&
1490 N0.getOperand(0).getOpcode() == ISD::SUB)
1491 if (ConstantSDNode *C =
1492 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1493 if (C->getAPIntValue() == 0)
1494 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1495 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1496 N0.getOperand(0).getOperand(1),
1497 N0.getOperand(1)));
1498
Owen Andersonbc146b02010-09-21 20:42:50 +00001499 if (N1.getOpcode() == ISD::AND) {
1500 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001501 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001502 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1503 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001504
Owen Andersonbc146b02010-09-21 20:42:50 +00001505 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1506 // and similar xforms where the inner op is either ~0 or 0.
1507 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1508 DebugLoc DL = N->getDebugLoc();
1509 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1510 }
1511 }
1512
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001513 // add (sext i1), X -> sub X, (zext i1)
1514 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1515 N0.getOperand(0).getValueType() == MVT::i1 &&
1516 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1517 DebugLoc DL = N->getDebugLoc();
1518 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1519 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1520 }
1521
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001522 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001523}
1524
Dan Gohman475871a2008-07-27 21:46:04 +00001525SDValue DAGCombiner::visitADDC(SDNode *N) {
1526 SDValue N0 = N->getOperand(0);
1527 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001528 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1529 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001530 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001531
Chris Lattner91153682007-03-04 20:03:15 +00001532 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001533 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001534 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001535 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001536 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001537
Chris Lattner91153682007-03-04 20:03:15 +00001538 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001539 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001540 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001541
Chris Lattnerb6541762007-03-04 20:40:38 +00001542 // fold (addc x, 0) -> x + no carry out
1543 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001544 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001545 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001546
Dale Johannesen874ae252009-06-02 03:12:52 +00001547 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001548 APInt LHSZero, LHSOne;
1549 APInt RHSZero, RHSOne;
Dan Gohman5b870af2010-03-02 02:14:38 +00001550 APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001551 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001552
Dan Gohman948d8ea2008-02-20 16:33:30 +00001553 if (LHSZero.getBoolValue()) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001554 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001555
Chris Lattnerb6541762007-03-04 20:40:38 +00001556 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1557 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1558 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1559 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
Bill Wendling14036c02009-01-30 02:38:00 +00001560 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001561 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001562 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001563 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001564
Dan Gohman475871a2008-07-27 21:46:04 +00001565 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001566}
1567
Dan Gohman475871a2008-07-27 21:46:04 +00001568SDValue DAGCombiner::visitADDE(SDNode *N) {
1569 SDValue N0 = N->getOperand(0);
1570 SDValue N1 = N->getOperand(1);
1571 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001572 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1573 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001574
Chris Lattner91153682007-03-04 20:03:15 +00001575 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001576 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001577 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1578 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001579
Chris Lattnerb6541762007-03-04 20:40:38 +00001580 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001581 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001582 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001583
Dan Gohman475871a2008-07-27 21:46:04 +00001584 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001585}
1586
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001587// Since it may not be valid to emit a fold to zero for vector initializers
1588// check if we can before folding.
1589static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001590 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001591 if (!VT.isVector()) {
1592 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001593 }
1594 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001595 // Produce a vector of zeros.
1596 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1597 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1598 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1599 &Ops[0], Ops.size());
1600 }
1601 return SDValue();
1602}
1603
Dan Gohman475871a2008-07-27 21:46:04 +00001604SDValue DAGCombiner::visitSUB(SDNode *N) {
1605 SDValue N0 = N->getOperand(0);
1606 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001607 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1608 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001609 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1610 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001611 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001612
Dan Gohman7f321562007-06-25 16:23:39 +00001613 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001614 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001615 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001616 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001617 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001618
Chris Lattner854077d2005-10-17 01:07:11 +00001619 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001620 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001621 if (N0 == N1)
1622 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001623 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001624 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001625 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001626 // fold (sub x, c) -> (add x, -c)
1627 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001628 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001629 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001630 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1631 if (N0C && N0C->isAllOnesValue())
1632 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001633 // fold A-(A-B) -> B
1634 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1635 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001636 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001637 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001638 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001639 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001640 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001641 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001642 // fold C2-(A+C1) -> (C2-C1)-A
1643 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
1644 SDValue NewC = DAG.getConstant((N0C->getAPIntValue() - N1C1->getAPIntValue()), VT);
1645 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
1646 N1.getOperand(0));
1647 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001648 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001649 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001650 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1651 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001652 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001653 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1654 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001655 // fold ((A+(C+B))-B) -> A+C
1656 if (N0.getOpcode() == ISD::ADD &&
1657 N0.getOperand(1).getOpcode() == ISD::ADD &&
1658 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001659 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1660 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001661 // fold ((A-(B-C))-C) -> A-B
1662 if (N0.getOpcode() == ISD::SUB &&
1663 N0.getOperand(1).getOpcode() == ISD::SUB &&
1664 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001665 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1666 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001667
Dan Gohman613e0d82007-07-03 14:03:57 +00001668 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001669 if (N0.getOpcode() == ISD::UNDEF)
1670 return N0;
1671 if (N1.getOpcode() == ISD::UNDEF)
1672 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001673
Dan Gohman6520e202008-10-18 02:06:02 +00001674 // If the relocation model supports it, consider symbol offsets.
1675 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001676 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001677 // fold (sub Sym, c) -> Sym-c
1678 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001679 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001680 GA->getOffset() -
1681 (uint64_t)N1C->getSExtValue());
1682 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1683 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1684 if (GA->getGlobal() == GB->getGlobal())
1685 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1686 VT);
1687 }
1688
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001689 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001690}
1691
Craig Toppercc274522012-01-07 09:06:39 +00001692SDValue DAGCombiner::visitSUBC(SDNode *N) {
1693 SDValue N0 = N->getOperand(0);
1694 SDValue N1 = N->getOperand(1);
1695 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1696 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1697 EVT VT = N0.getValueType();
1698
1699 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001700 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001701 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1702 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1703 MVT::Glue));
1704
1705 // fold (subc x, x) -> 0 + no borrow
1706 if (N0 == N1)
1707 return CombineTo(N, DAG.getConstant(0, VT),
1708 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1709 MVT::Glue));
1710
1711 // fold (subc x, 0) -> x + no borrow
1712 if (N1C && N1C->isNullValue())
1713 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1714 MVT::Glue));
1715
1716 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1717 if (N0C && N0C->isAllOnesValue())
1718 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1719 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1720 MVT::Glue));
1721
1722 return SDValue();
1723}
1724
1725SDValue DAGCombiner::visitSUBE(SDNode *N) {
1726 SDValue N0 = N->getOperand(0);
1727 SDValue N1 = N->getOperand(1);
1728 SDValue CarryIn = N->getOperand(2);
1729
1730 // fold (sube x, y, false) -> (subc x, y)
1731 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1732 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1733
1734 return SDValue();
1735}
1736
Dan Gohman475871a2008-07-27 21:46:04 +00001737SDValue DAGCombiner::visitMUL(SDNode *N) {
1738 SDValue N0 = N->getOperand(0);
1739 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001740 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1741 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001742 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001743
Dan Gohman7f321562007-06-25 16:23:39 +00001744 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001745 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001746 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001747 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001748 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001749
Dan Gohman613e0d82007-07-03 14:03:57 +00001750 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001751 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001752 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001753 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001754 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001755 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001756 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001757 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001758 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001759 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001760 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001761 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001762 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001763 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001764 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1765 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001766 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001767 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001768 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001769 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001770 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001771 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001772 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1773 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001774 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001775 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001776 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1777 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001778 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001779 DAG.getConstant(Log2Val,
1780 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001781 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001782 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001783 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001784 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001785 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1786 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001787 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001788 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1789 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001790 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001791
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001792 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1793 // use.
1794 {
Dan Gohman475871a2008-07-27 21:46:04 +00001795 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001796 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1797 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001798 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001799 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001800 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001801 isa<ConstantSDNode>(N1.getOperand(1)) &&
1802 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001803 Sh = N1; Y = N0;
1804 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001805
Gabor Greifba36cb52008-08-28 21:40:38 +00001806 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001807 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1808 Sh.getOperand(0), Y);
1809 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1810 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001811 }
1812 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001813
Chris Lattnera1deca32006-03-04 23:33:26 +00001814 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001815 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001816 isa<ConstantSDNode>(N0.getOperand(1)))
1817 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1818 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1819 N0.getOperand(0), N1),
1820 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1821 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001822
Nate Begemancd4d58c2006-02-03 06:46:56 +00001823 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001824 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001825 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001826 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001827
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001828 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001829}
1830
Dan Gohman475871a2008-07-27 21:46:04 +00001831SDValue DAGCombiner::visitSDIV(SDNode *N) {
1832 SDValue N0 = N->getOperand(0);
1833 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001834 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1835 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001836 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001837
Dan Gohman7f321562007-06-25 16:23:39 +00001838 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001839 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001840 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001841 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001842 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001843
Nate Begeman1d4d4142005-09-01 00:19:25 +00001844 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001845 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001846 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001847 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001848 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001849 return N0;
1850 // fold (sdiv X, -1) -> 0-X
1851 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001852 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1853 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001854 // If we know the sign bits of both operands are zero, strength reduce to a
1855 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001856 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001857 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001858 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1859 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001860 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001861 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001862 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001863 (N1C->getAPIntValue().isPowerOf2() ||
1864 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001865 // If dividing by powers of two is cheap, then don't perform the following
1866 // fold.
1867 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001868 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001869
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001870 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001871
Chris Lattner8f4880b2006-02-16 08:02:36 +00001872 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001873 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1874 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001875 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001876 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001877
Chris Lattner8f4880b2006-02-16 08:02:36 +00001878 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001879 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1880 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001881 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001882 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001883 AddToWorkList(SRL.getNode());
1884 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001885 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001886 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001887
Nate Begeman405e3ec2005-10-21 00:02:42 +00001888 // If we're dividing by a positive value, we're done. Otherwise, we must
1889 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001890 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001891 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001892
Gabor Greifba36cb52008-08-28 21:40:38 +00001893 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001894 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1895 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001896 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001897
Nate Begeman69575232005-10-20 02:15:44 +00001898 // if integer divide is expensive and we satisfy the requirements, emit an
1899 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001900 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001901 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001902 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001903 }
Dan Gohman7f321562007-06-25 16:23:39 +00001904
Dan Gohman613e0d82007-07-03 14:03:57 +00001905 // undef / X -> 0
1906 if (N0.getOpcode() == ISD::UNDEF)
1907 return DAG.getConstant(0, VT);
1908 // X / undef -> undef
1909 if (N1.getOpcode() == ISD::UNDEF)
1910 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001911
Dan Gohman475871a2008-07-27 21:46:04 +00001912 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001913}
1914
Dan Gohman475871a2008-07-27 21:46:04 +00001915SDValue DAGCombiner::visitUDIV(SDNode *N) {
1916 SDValue N0 = N->getOperand(0);
1917 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001918 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1919 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001920 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001921
Dan Gohman7f321562007-06-25 16:23:39 +00001922 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001923 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001924 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001925 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001926 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001927
Nate Begeman1d4d4142005-09-01 00:19:25 +00001928 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001929 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001930 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001931 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001932 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001933 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001934 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001935 getShiftAmountTy(N0.getValueType())));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001936 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1937 if (N1.getOpcode() == ISD::SHL) {
1938 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001939 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001940 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001941 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1942 N1.getOperand(1),
1943 DAG.getConstant(SHC->getAPIntValue()
1944 .logBase2(),
1945 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001946 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001947 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001948 }
1949 }
1950 }
Nate Begeman69575232005-10-20 02:15:44 +00001951 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001952 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001953 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001954 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001955 }
Dan Gohman7f321562007-06-25 16:23:39 +00001956
Dan Gohman613e0d82007-07-03 14:03:57 +00001957 // undef / X -> 0
1958 if (N0.getOpcode() == ISD::UNDEF)
1959 return DAG.getConstant(0, VT);
1960 // X / undef -> undef
1961 if (N1.getOpcode() == ISD::UNDEF)
1962 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001963
Dan Gohman475871a2008-07-27 21:46:04 +00001964 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001965}
1966
Dan Gohman475871a2008-07-27 21:46:04 +00001967SDValue DAGCombiner::visitSREM(SDNode *N) {
1968 SDValue N0 = N->getOperand(0);
1969 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001970 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1971 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001972 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001973
Nate Begeman1d4d4142005-09-01 00:19:25 +00001974 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001975 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001976 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001977 // If we know the sign bits of both operands are zero, strength reduce to a
1978 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001979 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001980 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001981 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00001982 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001983
Dan Gohman77003042007-11-26 23:46:11 +00001984 // If X/C can be simplified by the division-by-constant logic, lower
1985 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001986 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001987 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001988 AddToWorkList(Div.getNode());
1989 SDValue OptimizedDiv = combine(Div.getNode());
1990 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001991 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1992 OptimizedDiv, N1);
1993 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00001994 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00001995 return Sub;
1996 }
Chris Lattner26d29902006-10-12 20:58:32 +00001997 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001998
Dan Gohman613e0d82007-07-03 14:03:57 +00001999 // undef % X -> 0
2000 if (N0.getOpcode() == ISD::UNDEF)
2001 return DAG.getConstant(0, VT);
2002 // X % undef -> undef
2003 if (N1.getOpcode() == ISD::UNDEF)
2004 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002005
Dan Gohman475871a2008-07-27 21:46:04 +00002006 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002007}
2008
Dan Gohman475871a2008-07-27 21:46:04 +00002009SDValue DAGCombiner::visitUREM(SDNode *N) {
2010 SDValue N0 = N->getOperand(0);
2011 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002012 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2013 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002014 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002015
Nate Begeman1d4d4142005-09-01 00:19:25 +00002016 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002017 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002018 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002019 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002020 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002021 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002022 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002023 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2024 if (N1.getOpcode() == ISD::SHL) {
2025 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002026 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002027 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002028 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002029 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002030 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002031 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002032 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002033 }
2034 }
2035 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002036
Dan Gohman77003042007-11-26 23:46:11 +00002037 // If X/C can be simplified by the division-by-constant logic, lower
2038 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002039 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002040 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002041 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002042 SDValue OptimizedDiv = combine(Div.getNode());
2043 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002044 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2045 OptimizedDiv, N1);
2046 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002047 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002048 return Sub;
2049 }
Chris Lattner26d29902006-10-12 20:58:32 +00002050 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002051
Dan Gohman613e0d82007-07-03 14:03:57 +00002052 // undef % X -> 0
2053 if (N0.getOpcode() == ISD::UNDEF)
2054 return DAG.getConstant(0, VT);
2055 // X % undef -> undef
2056 if (N1.getOpcode() == ISD::UNDEF)
2057 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002058
Dan Gohman475871a2008-07-27 21:46:04 +00002059 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002060}
2061
Dan Gohman475871a2008-07-27 21:46:04 +00002062SDValue DAGCombiner::visitMULHS(SDNode *N) {
2063 SDValue N0 = N->getOperand(0);
2064 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002065 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002066 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002067 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002068
Nate Begeman1d4d4142005-09-01 00:19:25 +00002069 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002070 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002071 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002072 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002073 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002074 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2075 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002076 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002077 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002078 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002079 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002080
Chris Lattnerde1c3602010-12-13 08:39:01 +00002081 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2082 // plus a shift.
2083 if (VT.isSimple() && !VT.isVector()) {
2084 MVT Simple = VT.getSimpleVT();
2085 unsigned SimpleSize = Simple.getSizeInBits();
2086 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2087 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2088 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2089 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2090 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002091 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002092 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002093 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2094 }
2095 }
Owen Anderson95771af2011-02-25 21:41:48 +00002096
Dan Gohman475871a2008-07-27 21:46:04 +00002097 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002098}
2099
Dan Gohman475871a2008-07-27 21:46:04 +00002100SDValue DAGCombiner::visitMULHU(SDNode *N) {
2101 SDValue N0 = N->getOperand(0);
2102 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002103 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002104 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002105 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002106
Nate Begeman1d4d4142005-09-01 00:19:25 +00002107 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002108 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002109 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002110 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002111 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002112 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002113 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002114 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002115 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002116
Chris Lattnerde1c3602010-12-13 08:39:01 +00002117 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2118 // plus a shift.
2119 if (VT.isSimple() && !VT.isVector()) {
2120 MVT Simple = VT.getSimpleVT();
2121 unsigned SimpleSize = Simple.getSizeInBits();
2122 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2123 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2124 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2125 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2126 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2127 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002128 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002129 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2130 }
2131 }
Owen Anderson95771af2011-02-25 21:41:48 +00002132
Dan Gohman475871a2008-07-27 21:46:04 +00002133 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002134}
2135
Dan Gohman389079b2007-10-08 17:57:15 +00002136/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2137/// compute two values. LoOp and HiOp give the opcodes for the two computations
2138/// that are being performed. Return true if a simplification was made.
2139///
Scott Michelfdc40a02009-02-17 22:15:04 +00002140SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002141 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002142 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002143 bool HiExists = N->hasAnyUseOfValue(1);
2144 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002145 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002146 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002147 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2148 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002149 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002150 }
2151
2152 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002153 bool LoExists = N->hasAnyUseOfValue(0);
2154 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002155 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002156 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002157 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2158 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002159 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002160 }
2161
Evan Cheng44711942007-11-08 09:25:29 +00002162 // If both halves are used, return as it is.
2163 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002164 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002165
2166 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002167 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002168 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2169 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002170 AddToWorkList(Lo.getNode());
2171 SDValue LoOpt = combine(Lo.getNode());
2172 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002173 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002174 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002175 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002176 }
2177
Evan Cheng44711942007-11-08 09:25:29 +00002178 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002179 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002180 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002181 AddToWorkList(Hi.getNode());
2182 SDValue HiOpt = combine(Hi.getNode());
2183 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002184 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002185 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002186 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002187 }
Bill Wendling826d1142009-01-30 03:08:40 +00002188
Dan Gohman475871a2008-07-27 21:46:04 +00002189 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002190}
2191
Dan Gohman475871a2008-07-27 21:46:04 +00002192SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2193 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002194 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002195
Chris Lattner33e77d32010-12-15 06:04:19 +00002196 EVT VT = N->getValueType(0);
2197 DebugLoc DL = N->getDebugLoc();
2198
2199 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2200 // plus a shift.
2201 if (VT.isSimple() && !VT.isVector()) {
2202 MVT Simple = VT.getSimpleVT();
2203 unsigned SimpleSize = Simple.getSizeInBits();
2204 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2205 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2206 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2207 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2208 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2209 // Compute the high part as N1.
2210 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002211 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002212 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2213 // Compute the low part as N0.
2214 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2215 return CombineTo(N, Lo, Hi);
2216 }
2217 }
Owen Anderson95771af2011-02-25 21:41:48 +00002218
Dan Gohman475871a2008-07-27 21:46:04 +00002219 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002220}
2221
Dan Gohman475871a2008-07-27 21:46:04 +00002222SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2223 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002224 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002225
Chris Lattner33e77d32010-12-15 06:04:19 +00002226 EVT VT = N->getValueType(0);
2227 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002228
Chris Lattner33e77d32010-12-15 06:04:19 +00002229 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2230 // plus a shift.
2231 if (VT.isSimple() && !VT.isVector()) {
2232 MVT Simple = VT.getSimpleVT();
2233 unsigned SimpleSize = Simple.getSizeInBits();
2234 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2235 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2236 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2237 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2238 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2239 // Compute the high part as N1.
2240 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002241 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002242 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2243 // Compute the low part as N0.
2244 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2245 return CombineTo(N, Lo, Hi);
2246 }
2247 }
Owen Anderson95771af2011-02-25 21:41:48 +00002248
Dan Gohman475871a2008-07-27 21:46:04 +00002249 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002250}
2251
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002252SDValue DAGCombiner::visitSMULO(SDNode *N) {
2253 // (smulo x, 2) -> (saddo x, x)
2254 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2255 if (C2->getAPIntValue() == 2)
2256 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2257 N->getOperand(0), N->getOperand(0));
2258
2259 return SDValue();
2260}
2261
2262SDValue DAGCombiner::visitUMULO(SDNode *N) {
2263 // (umulo x, 2) -> (uaddo x, x)
2264 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2265 if (C2->getAPIntValue() == 2)
2266 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2267 N->getOperand(0), N->getOperand(0));
2268
2269 return SDValue();
2270}
2271
Dan Gohman475871a2008-07-27 21:46:04 +00002272SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2273 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
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
Dan Gohman475871a2008-07-27 21:46:04 +00002279SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2280 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002281 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002282
Dan Gohman475871a2008-07-27 21:46:04 +00002283 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002284}
2285
Chris Lattner35e5c142006-05-05 05:51:50 +00002286/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2287/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002288SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2289 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002290 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002291 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002292
Dan Gohmanff00a552010-01-14 03:08:49 +00002293 // Bail early if none of these transforms apply.
2294 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2295
Chris Lattner540121f2006-05-05 06:31:05 +00002296 // For each of OP in AND/OR/XOR:
2297 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2298 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2299 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002300 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002301 //
2302 // do not sink logical op inside of a vector extend, since it may combine
2303 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002304 EVT Op0VT = N0.getOperand(0).getValueType();
2305 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002306 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002307 // Avoid infinite looping with PromoteIntBinOp.
2308 (N0.getOpcode() == ISD::ANY_EXTEND &&
2309 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002310 (N0.getOpcode() == ISD::TRUNCATE &&
2311 (!TLI.isZExtFree(VT, Op0VT) ||
2312 !TLI.isTruncateFree(Op0VT, VT)) &&
2313 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002314 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002315 Op0VT == N1.getOperand(0).getValueType() &&
2316 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002317 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2318 N0.getOperand(0).getValueType(),
2319 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002320 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002321 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002322 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002323
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002324 // For each of OP in SHL/SRL/SRA/AND...
2325 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2326 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2327 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002328 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002329 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002330 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002331 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2332 N0.getOperand(0).getValueType(),
2333 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002334 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002335 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2336 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002337 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002338
Nadav Rotem4ac90812012-04-01 19:31:22 +00002339 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2340 // Only perform this optimization after type legalization and before
2341 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2342 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2343 // we don't want to undo this promotion.
2344 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2345 // on scalars.
2346 if ((N0.getOpcode() == ISD::BITCAST || N0.getOpcode() == ISD::SCALAR_TO_VECTOR)
2347 && Level == AfterLegalizeVectorOps) {
2348 SDValue In0 = N0.getOperand(0);
2349 SDValue In1 = N1.getOperand(0);
2350 EVT In0Ty = In0.getValueType();
2351 EVT In1Ty = In1.getValueType();
2352 // If both incoming values are integers, and the original types are the same.
2353 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
2354 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), In0Ty, In0, In1);
2355 SDValue BC = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, Op);
2356 AddToWorkList(Op.getNode());
2357 return BC;
2358 }
2359 }
2360
2361 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2362 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2363 // If both shuffles use the same mask, and both shuffle within a single
2364 // vector, then it is worthwhile to move the swizzle after the operation.
2365 // The type-legalizer generates this pattern when loading illegal
2366 // vector types from memory. In many cases this allows additional shuffle
2367 // optimizations.
2368 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG) {
2369 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2370 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
2371 SDValue In0 = SVN0->getOperand(0);
2372 SDValue In1 = SVN1->getOperand(0);
2373 EVT In0Ty = In0.getValueType();
2374 EVT In1Ty = In1.getValueType();
2375
2376 unsigned NumElts = VT.getVectorNumElements();
2377 // Check that both shuffles are swizzles.
2378 bool SingleVecShuff = (N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2379 N1.getOperand(1).getOpcode() == ISD::UNDEF);
2380
2381 // Check that both shuffles use the same mask. The masks are known to be of
2382 // the same length because the result vector type is the same.
2383 bool SameMask = true;
2384 for (unsigned i = 0; i != NumElts; ++i) {
2385 int Idx0 = SVN0->getMaskElt(i);
2386 int Idx1 = SVN1->getMaskElt(i);
2387 if (Idx0 != Idx1) {
2388 SameMask = false;
2389 break;
2390 }
2391 }
2392
2393 if (SameMask && SingleVecShuff && In0Ty == In1Ty) {
2394 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT, In0, In1);
2395 SDValue Shuff = DAG.getVectorShuffle(VT, N->getDebugLoc(), Op,
2396 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
2397 AddToWorkList(Op.getNode());
2398 return Shuff;
2399 }
2400 }
Dan Gohman475871a2008-07-27 21:46:04 +00002401 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002402}
2403
Dan Gohman475871a2008-07-27 21:46:04 +00002404SDValue DAGCombiner::visitAND(SDNode *N) {
2405 SDValue N0 = N->getOperand(0);
2406 SDValue N1 = N->getOperand(1);
2407 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002408 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2409 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002410 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002411 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002412
Dan Gohman7f321562007-06-25 16:23:39 +00002413 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002414 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002415 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002416 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002417 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002418
Dan Gohman613e0d82007-07-03 14:03:57 +00002419 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002420 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002421 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002422 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002423 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002424 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002425 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002426 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002427 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002428 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002429 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002430 return N0;
2431 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002432 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002433 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002434 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002435 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002436 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002437 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002438 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002439 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002440 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002441 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002442 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002443 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002444 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2445 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002446 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002447 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002448 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002449 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002450 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2451 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002452
Chris Lattner1ec05d12006-03-01 21:47:21 +00002453 // Replace uses of the AND with uses of the Zero extend node.
2454 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002455
Chris Lattner3603cd62006-02-02 07:17:31 +00002456 // We actually want to replace all uses of the any_extend with the
2457 // zero_extend, to avoid duplicating things. This will later cause this
2458 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002459 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002460 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002461 }
2462 }
James Molloy6259dcd2012-02-20 12:02:38 +00002463 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2464 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2465 // already be zero by virtue of the width of the base type of the load.
2466 //
2467 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2468 // more cases.
2469 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2470 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2471 N0.getOpcode() == ISD::LOAD) {
2472 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2473 N0 : N0.getOperand(0) );
2474
2475 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2476 // This can be a pure constant or a vector splat, in which case we treat the
2477 // vector as a scalar and use the splat value.
2478 APInt Constant = APInt::getNullValue(1);
2479 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2480 Constant = C->getAPIntValue();
2481 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2482 APInt SplatValue, SplatUndef;
2483 unsigned SplatBitSize;
2484 bool HasAnyUndefs;
2485 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2486 SplatBitSize, HasAnyUndefs);
2487 if (IsSplat) {
2488 // Undef bits can contribute to a possible optimisation if set, so
2489 // set them.
2490 SplatValue |= SplatUndef;
2491
2492 // The splat value may be something like "0x00FFFFFF", which means 0 for
2493 // the first vector value and FF for the rest, repeating. We need a mask
2494 // that will apply equally to all members of the vector, so AND all the
2495 // lanes of the constant together.
2496 EVT VT = Vector->getValueType(0);
2497 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
2498 Constant = APInt::getAllOnesValue(BitWidth);
2499 for (unsigned i = 0, n = VT.getVectorNumElements(); i < n; ++i)
2500 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2501 }
2502 }
2503
2504 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2505 // actually legal and isn't going to get expanded, else this is a false
2506 // optimisation.
2507 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2508 Load->getMemoryVT());
2509
2510 // Resize the constant to the same size as the original memory access before
2511 // extension. If it is still the AllOnesValue then this AND is completely
2512 // unneeded.
2513 Constant =
2514 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2515
2516 bool B;
2517 switch (Load->getExtensionType()) {
2518 default: B = false; break;
2519 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2520 case ISD::ZEXTLOAD:
2521 case ISD::NON_EXTLOAD: B = true; break;
2522 }
2523
2524 if (B && Constant.isAllOnesValue()) {
2525 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2526 // preserve semantics once we get rid of the AND.
2527 SDValue NewLoad(Load, 0);
2528 if (Load->getExtensionType() == ISD::EXTLOAD) {
2529 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2530 Load->getValueType(0), Load->getDebugLoc(),
2531 Load->getChain(), Load->getBasePtr(),
2532 Load->getOffset(), Load->getMemoryVT(),
2533 Load->getMemOperand());
2534 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
2535 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2536 }
2537
2538 // Fold the AND away, taking care not to fold to the old load node if we
2539 // replaced it.
2540 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2541
2542 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2543 }
2544 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002545 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2546 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2547 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2548 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002549
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002550 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002551 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002552 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002553 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002554 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2555 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002556 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002557 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002558 }
Bill Wendling2627a882009-01-30 20:43:18 +00002559 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002560 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002561 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2562 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002563 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002564 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002565 }
Bill Wendling2627a882009-01-30 20:43:18 +00002566 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002567 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002568 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2569 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002570 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002571 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002572 }
2573 }
2574 // canonicalize equivalent to ll == rl
2575 if (LL == RR && LR == RL) {
2576 Op1 = ISD::getSetCCSwappedOperands(Op1);
2577 std::swap(RL, RR);
2578 }
2579 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002580 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002581 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002582 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002583 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002584 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2585 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002586 }
2587 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002588
Bill Wendling2627a882009-01-30 20:43:18 +00002589 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002590 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002591 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002592 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002593 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002594
Nate Begemande996292006-02-03 22:24:05 +00002595 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2596 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002597 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002598 SimplifyDemandedBits(SDValue(N, 0)))
2599 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002600
Nate Begemanded49632005-10-13 03:11:28 +00002601 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002602 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002603 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002604 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002605 // If we zero all the possible extended bits, then we can turn this into
2606 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002607 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002608 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002609 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002610 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002611 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002612 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002613 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002614 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002615 LN0->isVolatile(), LN0->isNonTemporal(),
2616 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002617 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002618 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002619 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002620 }
2621 }
2622 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002623 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002624 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002625 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002626 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002627 // If we zero all the possible extended bits, then we can turn this into
2628 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002629 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002630 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002631 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002632 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002633 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002634 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002635 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002636 LN0->getBasePtr(), LN0->getPointerInfo(),
2637 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002638 LN0->isVolatile(), LN0->isNonTemporal(),
2639 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002640 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002641 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002642 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002643 }
2644 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002645
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002646 // fold (and (load x), 255) -> (zextload x, i8)
2647 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002648 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2649 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2650 (N0.getOpcode() == ISD::ANY_EXTEND &&
2651 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2652 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2653 LoadSDNode *LN0 = HasAnyExt
2654 ? cast<LoadSDNode>(N0.getOperand(0))
2655 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002656 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002657 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002658 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002659 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2660 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2661 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002662
Evan Chengd40d03e2010-01-06 19:38:29 +00002663 if (ExtVT == LoadedVT &&
2664 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002665 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002666
2667 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002668 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002669 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002670 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002671 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2672 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002673 AddToWorkList(N);
2674 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2675 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2676 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002677
Chris Lattneref7634c2010-01-07 21:53:27 +00002678 // Do not change the width of a volatile load.
2679 // Do not generate loads of non-round integer types since these can
2680 // be expensive (and would be wrong if the type is not byte sized).
2681 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2682 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2683 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002684
Chris Lattneref7634c2010-01-07 21:53:27 +00002685 unsigned Alignment = LN0->getAlignment();
2686 SDValue NewPtr = LN0->getBasePtr();
2687
2688 // For big endian targets, we need to add an offset to the pointer
2689 // to load the correct bytes. For little endian systems, we merely
2690 // need to read fewer bytes from the same pointer.
2691 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002692 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2693 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2694 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002695 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2696 NewPtr, DAG.getConstant(PtrOff, PtrType));
2697 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002698 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002699
2700 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002701
Chris Lattneref7634c2010-01-07 21:53:27 +00002702 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2703 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002704 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002705 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002706 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002707 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2708 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002709 AddToWorkList(N);
2710 CombineTo(LN0, Load, Load.getValue(1));
2711 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002712 }
Evan Cheng466685d2006-10-09 20:57:25 +00002713 }
Chris Lattner15045b62006-02-28 06:35:35 +00002714 }
2715 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002716
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002717 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002718}
2719
Evan Cheng9568e5c2011-06-21 06:01:08 +00002720/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2721///
2722SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2723 bool DemandHighBits) {
2724 if (!LegalOperations)
2725 return SDValue();
2726
2727 EVT VT = N->getValueType(0);
2728 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2729 return SDValue();
2730 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2731 return SDValue();
2732
2733 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2734 bool LookPassAnd0 = false;
2735 bool LookPassAnd1 = false;
2736 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2737 std::swap(N0, N1);
2738 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2739 std::swap(N0, N1);
2740 if (N0.getOpcode() == ISD::AND) {
2741 if (!N0.getNode()->hasOneUse())
2742 return SDValue();
2743 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2744 if (!N01C || N01C->getZExtValue() != 0xFF00)
2745 return SDValue();
2746 N0 = N0.getOperand(0);
2747 LookPassAnd0 = true;
2748 }
2749
2750 if (N1.getOpcode() == ISD::AND) {
2751 if (!N1.getNode()->hasOneUse())
2752 return SDValue();
2753 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2754 if (!N11C || N11C->getZExtValue() != 0xFF)
2755 return SDValue();
2756 N1 = N1.getOperand(0);
2757 LookPassAnd1 = true;
2758 }
2759
2760 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2761 std::swap(N0, N1);
2762 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2763 return SDValue();
2764 if (!N0.getNode()->hasOneUse() ||
2765 !N1.getNode()->hasOneUse())
2766 return SDValue();
2767
2768 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2769 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2770 if (!N01C || !N11C)
2771 return SDValue();
2772 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2773 return SDValue();
2774
2775 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2776 SDValue N00 = N0->getOperand(0);
2777 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2778 if (!N00.getNode()->hasOneUse())
2779 return SDValue();
2780 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2781 if (!N001C || N001C->getZExtValue() != 0xFF)
2782 return SDValue();
2783 N00 = N00.getOperand(0);
2784 LookPassAnd0 = true;
2785 }
2786
2787 SDValue N10 = N1->getOperand(0);
2788 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2789 if (!N10.getNode()->hasOneUse())
2790 return SDValue();
2791 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2792 if (!N101C || N101C->getZExtValue() != 0xFF00)
2793 return SDValue();
2794 N10 = N10.getOperand(0);
2795 LookPassAnd1 = true;
2796 }
2797
2798 if (N00 != N10)
2799 return SDValue();
2800
2801 // Make sure everything beyond the low halfword is zero since the SRL 16
2802 // will clear the top bits.
2803 unsigned OpSizeInBits = VT.getSizeInBits();
2804 if (DemandHighBits && OpSizeInBits > 16 &&
2805 (!LookPassAnd0 || !LookPassAnd1) &&
2806 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2807 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002808
Evan Cheng9568e5c2011-06-21 06:01:08 +00002809 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2810 if (OpSizeInBits > 16)
2811 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2812 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2813 return Res;
2814}
2815
2816/// isBSwapHWordElement - Return true if the specified node is an element
2817/// that makes up a 32-bit packed halfword byteswap. i.e.
2818/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2819static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2820 if (!N.getNode()->hasOneUse())
2821 return false;
2822
2823 unsigned Opc = N.getOpcode();
2824 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2825 return false;
2826
2827 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2828 if (!N1C)
2829 return false;
2830
2831 unsigned Num;
2832 switch (N1C->getZExtValue()) {
2833 default:
2834 return false;
2835 case 0xFF: Num = 0; break;
2836 case 0xFF00: Num = 1; break;
2837 case 0xFF0000: Num = 2; break;
2838 case 0xFF000000: Num = 3; break;
2839 }
2840
2841 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2842 SDValue N0 = N.getOperand(0);
2843 if (Opc == ISD::AND) {
2844 if (Num == 0 || Num == 2) {
2845 // (x >> 8) & 0xff
2846 // (x >> 8) & 0xff0000
2847 if (N0.getOpcode() != ISD::SRL)
2848 return false;
2849 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2850 if (!C || C->getZExtValue() != 8)
2851 return false;
2852 } else {
2853 // (x << 8) & 0xff00
2854 // (x << 8) & 0xff000000
2855 if (N0.getOpcode() != ISD::SHL)
2856 return false;
2857 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2858 if (!C || C->getZExtValue() != 8)
2859 return false;
2860 }
2861 } else if (Opc == ISD::SHL) {
2862 // (x & 0xff) << 8
2863 // (x & 0xff0000) << 8
2864 if (Num != 0 && Num != 2)
2865 return false;
2866 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2867 if (!C || C->getZExtValue() != 8)
2868 return false;
2869 } else { // Opc == ISD::SRL
2870 // (x & 0xff00) >> 8
2871 // (x & 0xff000000) >> 8
2872 if (Num != 1 && Num != 3)
2873 return false;
2874 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2875 if (!C || C->getZExtValue() != 8)
2876 return false;
2877 }
2878
2879 if (Parts[Num])
2880 return false;
2881
2882 Parts[Num] = N0.getOperand(0).getNode();
2883 return true;
2884}
2885
2886/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2887/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2888/// => (rotl (bswap x), 16)
2889SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2890 if (!LegalOperations)
2891 return SDValue();
2892
2893 EVT VT = N->getValueType(0);
2894 if (VT != MVT::i32)
2895 return SDValue();
2896 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2897 return SDValue();
2898
2899 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2900 // Look for either
2901 // (or (or (and), (and)), (or (and), (and)))
2902 // (or (or (or (and), (and)), (and)), (and))
2903 if (N0.getOpcode() != ISD::OR)
2904 return SDValue();
2905 SDValue N00 = N0.getOperand(0);
2906 SDValue N01 = N0.getOperand(1);
2907
2908 if (N1.getOpcode() == ISD::OR) {
2909 // (or (or (and), (and)), (or (and), (and)))
2910 SDValue N000 = N00.getOperand(0);
2911 if (!isBSwapHWordElement(N000, Parts))
2912 return SDValue();
2913
2914 SDValue N001 = N00.getOperand(1);
2915 if (!isBSwapHWordElement(N001, Parts))
2916 return SDValue();
2917 SDValue N010 = N01.getOperand(0);
2918 if (!isBSwapHWordElement(N010, Parts))
2919 return SDValue();
2920 SDValue N011 = N01.getOperand(1);
2921 if (!isBSwapHWordElement(N011, Parts))
2922 return SDValue();
2923 } else {
2924 // (or (or (or (and), (and)), (and)), (and))
2925 if (!isBSwapHWordElement(N1, Parts))
2926 return SDValue();
2927 if (!isBSwapHWordElement(N01, Parts))
2928 return SDValue();
2929 if (N00.getOpcode() != ISD::OR)
2930 return SDValue();
2931 SDValue N000 = N00.getOperand(0);
2932 if (!isBSwapHWordElement(N000, Parts))
2933 return SDValue();
2934 SDValue N001 = N00.getOperand(1);
2935 if (!isBSwapHWordElement(N001, Parts))
2936 return SDValue();
2937 }
2938
2939 // Make sure the parts are all coming from the same node.
2940 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2941 return SDValue();
2942
2943 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
2944 SDValue(Parts[0],0));
2945
2946 // Result of the bswap should be rotated by 16. If it's not legal, than
2947 // do (x << 16) | (x >> 16).
2948 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
2949 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
2950 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
2951 else if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
2952 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
2953 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
2954 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
2955 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
2956}
2957
Dan Gohman475871a2008-07-27 21:46:04 +00002958SDValue DAGCombiner::visitOR(SDNode *N) {
2959 SDValue N0 = N->getOperand(0);
2960 SDValue N1 = N->getOperand(1);
2961 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002962 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2963 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002964 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002965
Dan Gohman7f321562007-06-25 16:23:39 +00002966 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002967 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002968 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002969 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002970 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002971
Dan Gohman613e0d82007-07-03 14:03:57 +00002972 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00002973 if (!LegalOperations &&
2974 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00002975 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
2976 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
2977 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00002978 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002979 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002980 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002981 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002982 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00002983 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002984 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002985 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002986 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002987 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002988 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002989 return N1;
2990 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002991 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002992 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00002993
2994 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
2995 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
2996 if (BSwap.getNode() != 0)
2997 return BSwap;
2998 BSwap = MatchBSwapHWordLow(N, N0, N1);
2999 if (BSwap.getNode() != 0)
3000 return BSwap;
3001
Nate Begemancd4d58c2006-02-03 06:46:56 +00003002 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00003003 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003004 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003005 return ROR;
3006 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003007 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003008 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003009 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003010 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003011 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003012 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
3013 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3014 N0.getOperand(0), N1),
3015 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003016 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003017 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3018 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3019 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3020 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003021
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003022 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003023 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003024 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3025 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003026 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003027 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003028 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
3029 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003030 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003031 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003032 }
Bill Wendling09025642009-01-30 20:59:34 +00003033 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3034 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003035 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003036 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003037 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
3038 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003039 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003040 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003041 }
3042 }
3043 // canonicalize equivalent to ll == rl
3044 if (LL == RR && LR == RL) {
3045 Op1 = ISD::getSetCCSwappedOperands(Op1);
3046 std::swap(RL, RR);
3047 }
3048 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003049 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003050 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003051 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00003052 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00003053 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
3054 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003055 }
3056 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003057
Bill Wendling09025642009-01-30 20:59:34 +00003058 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003059 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003060 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003061 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003062 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003063
Bill Wendling09025642009-01-30 20:59:34 +00003064 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003065 if (N0.getOpcode() == ISD::AND &&
3066 N1.getOpcode() == ISD::AND &&
3067 N0.getOperand(1).getOpcode() == ISD::Constant &&
3068 N1.getOperand(1).getOpcode() == ISD::Constant &&
3069 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003070 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003071 // We can only do this xform if we know that bits from X that are set in C2
3072 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003073 const APInt &LHSMask =
3074 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3075 const APInt &RHSMask =
3076 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003077
Dan Gohmanea859be2007-06-22 14:59:07 +00003078 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3079 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003080 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3081 N0.getOperand(0), N1.getOperand(0));
3082 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3083 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003084 }
3085 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003086
Chris Lattner516b9622006-09-14 20:50:57 +00003087 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003088 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003089 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003090
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003091 // Simplify the operands using demanded-bits information.
3092 if (!VT.isVector() &&
3093 SimplifyDemandedBits(SDValue(N, 0)))
3094 return SDValue(N, 0);
3095
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003096 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003097}
3098
Chris Lattner516b9622006-09-14 20:50:57 +00003099/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003100static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003101 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003102 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003103 Mask = Op.getOperand(1);
3104 Op = Op.getOperand(0);
3105 } else {
3106 return false;
3107 }
3108 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003109
Chris Lattner516b9622006-09-14 20:50:57 +00003110 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3111 Shift = Op;
3112 return true;
3113 }
Bill Wendling09025642009-01-30 20:59:34 +00003114
Scott Michelfdc40a02009-02-17 22:15:04 +00003115 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003116}
3117
Chris Lattner516b9622006-09-14 20:50:57 +00003118// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3119// idioms for rotate, and if the target supports rotation instructions, generate
3120// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003121SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003122 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003123 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003124 if (!TLI.isTypeLegal(VT)) return 0;
3125
3126 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003127 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3128 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003129 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003130
Chris Lattner516b9622006-09-14 20:50:57 +00003131 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003132 SDValue LHSShift; // The shift.
3133 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003134 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3135 return 0; // Not part of a rotate.
3136
Dan Gohman475871a2008-07-27 21:46:04 +00003137 SDValue RHSShift; // The shift.
3138 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003139 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3140 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003141
Chris Lattner516b9622006-09-14 20:50:57 +00003142 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3143 return 0; // Not shifting the same value.
3144
3145 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3146 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003147
Chris Lattner516b9622006-09-14 20:50:57 +00003148 // Canonicalize shl to left side in a shl/srl pair.
3149 if (RHSShift.getOpcode() == ISD::SHL) {
3150 std::swap(LHS, RHS);
3151 std::swap(LHSShift, RHSShift);
3152 std::swap(LHSMask , RHSMask );
3153 }
3154
Duncan Sands83ec4b62008-06-06 12:08:01 +00003155 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003156 SDValue LHSShiftArg = LHSShift.getOperand(0);
3157 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3158 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003159
3160 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3161 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003162 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3163 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003164 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3165 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003166 if ((LShVal + RShVal) != OpSizeInBits)
3167 return 0;
3168
Dan Gohman475871a2008-07-27 21:46:04 +00003169 SDValue Rot;
Chris Lattner516b9622006-09-14 20:50:57 +00003170 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003171 Rot = DAG.getNode(ISD::ROTL, DL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00003172 else
Bill Wendling317bd702009-01-30 21:14:50 +00003173 Rot = DAG.getNode(ISD::ROTR, DL, VT, LHSShiftArg, RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003174
Chris Lattner516b9622006-09-14 20:50:57 +00003175 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003176 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003177 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003178
Gabor Greifba36cb52008-08-28 21:40:38 +00003179 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003180 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3181 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003182 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003183 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003184 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3185 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003186 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003187
Bill Wendling317bd702009-01-30 21:14:50 +00003188 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003189 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003190
Gabor Greifba36cb52008-08-28 21:40:38 +00003191 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003192 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003193
Chris Lattner516b9622006-09-14 20:50:57 +00003194 // If there is a mask here, and we have a variable shift, we can't be sure
3195 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003196 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003197 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003198
Chris Lattner516b9622006-09-14 20:50:57 +00003199 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3200 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003201 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3202 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003203 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003204 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003205 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00003206 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003207 return DAG.getNode(ISD::ROTL, DL, VT,
3208 LHSShiftArg, LHSShiftAmt).getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003209 else
Bill Wendling317bd702009-01-30 21:14:50 +00003210 return DAG.getNode(ISD::ROTR, DL, VT,
3211 LHSShiftArg, RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003212 }
Chris Lattner516b9622006-09-14 20:50:57 +00003213 }
3214 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003215
Chris Lattner516b9622006-09-14 20:50:57 +00003216 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3217 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003218 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3219 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003220 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003221 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003222 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling2692d592008-08-31 01:13:31 +00003223 if (HasROTR)
Bill Wendling317bd702009-01-30 21:14:50 +00003224 return DAG.getNode(ISD::ROTR, DL, VT,
3225 LHSShiftArg, RHSShiftAmt).getNode();
Bill Wendling2692d592008-08-31 01:13:31 +00003226 else
Bill Wendling317bd702009-01-30 21:14:50 +00003227 return DAG.getNode(ISD::ROTL, DL, VT,
3228 LHSShiftArg, LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003229 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003230 }
3231 }
3232
Dan Gohman74feef22008-10-17 01:23:35 +00003233 // Look for sign/zext/any-extended or truncate cases:
Scott Michelc9dc1142007-04-02 21:36:32 +00003234 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3235 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003236 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3237 || LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
Scott Michelc9dc1142007-04-02 21:36:32 +00003238 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3239 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003240 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3241 || RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003242 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3243 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003244 if (RExtOp0.getOpcode() == ISD::SUB &&
3245 RExtOp0.getOperand(1) == LExtOp0) {
3246 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003247 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003248 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003249 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003250 if (ConstantSDNode *SUBC =
3251 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003252 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003253 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3254 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003255 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003256 }
3257 }
3258 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3259 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003260 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003261 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003262 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003263 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003264 if (ConstantSDNode *SUBC =
3265 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003266 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003267 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3268 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003269 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003270 }
3271 }
Chris Lattner516b9622006-09-14 20:50:57 +00003272 }
3273 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003274
Chris Lattner516b9622006-09-14 20:50:57 +00003275 return 0;
3276}
3277
Dan Gohman475871a2008-07-27 21:46:04 +00003278SDValue DAGCombiner::visitXOR(SDNode *N) {
3279 SDValue N0 = N->getOperand(0);
3280 SDValue N1 = N->getOperand(1);
3281 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003282 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3283 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003284 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003285
Dan Gohman7f321562007-06-25 16:23:39 +00003286 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003287 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003288 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003289 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003290 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003291
Evan Cheng26471c42008-03-25 20:08:07 +00003292 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3293 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3294 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003295 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003296 if (N0.getOpcode() == ISD::UNDEF)
3297 return N0;
3298 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003299 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003300 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003301 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003302 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003303 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003304 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003305 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003306 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003307 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003308 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003309 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003310 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003311 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003312 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003313
Nate Begeman1d4d4142005-09-01 00:19:25 +00003314 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003315 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003316 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003317 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3318 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003319
Duncan Sands25cf2272008-11-24 14:53:14 +00003320 if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003321 switch (N0.getOpcode()) {
3322 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003323 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003324 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003325 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003326 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003327 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003328 N0.getOperand(3), NotCC);
3329 }
3330 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003331 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003332
Chris Lattner61c5ff42007-09-10 21:39:07 +00003333 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003334 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003335 N0.getNode()->hasOneUse() &&
3336 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003337 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003338 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003339 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003340 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003341 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003342 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003343
Bill Wendling317bd702009-01-30 21:14:50 +00003344 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003345 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003346 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003347 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003348 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3349 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003350 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3351 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003352 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003353 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003354 }
3355 }
Bill Wendling317bd702009-01-30 21:14:50 +00003356 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003357 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003358 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003359 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003360 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3361 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003362 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3363 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003364 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003365 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003366 }
3367 }
Bill Wendling317bd702009-01-30 21:14:50 +00003368 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003369 if (N1C && N0.getOpcode() == ISD::XOR) {
3370 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3371 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3372 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003373 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3374 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003375 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003376 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003377 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3378 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003379 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003380 }
3381 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003382 if (N0 == N1)
3383 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003384
Chris Lattner35e5c142006-05-05 05:51:50 +00003385 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3386 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003387 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003388 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003389 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003390
Chris Lattner3e104b12006-04-08 04:15:24 +00003391 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003392 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003393 SimplifyDemandedBits(SDValue(N, 0)))
3394 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003395
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003396 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003397}
3398
Chris Lattnere70da202007-12-06 07:33:36 +00003399/// visitShiftByConstant - Handle transforms common to the three shifts, when
3400/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003401SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003402 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003403 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003404
Chris Lattnere70da202007-12-06 07:33:36 +00003405 // We want to pull some binops through shifts, so that we have (and (shift))
3406 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3407 // thing happens with address calculations, so it's important to canonicalize
3408 // it.
3409 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003410
Chris Lattnere70da202007-12-06 07:33:36 +00003411 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003412 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003413 case ISD::OR:
3414 case ISD::XOR:
3415 HighBitSet = false; // We can only transform sra if the high bit is clear.
3416 break;
3417 case ISD::AND:
3418 HighBitSet = true; // We can only transform sra if the high bit is set.
3419 break;
3420 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003421 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003422 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003423 HighBitSet = false; // We can only transform sra if the high bit is clear.
3424 break;
3425 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003426
Chris Lattnere70da202007-12-06 07:33:36 +00003427 // We require the RHS of the binop to be a constant as well.
3428 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003429 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003430
3431 // FIXME: disable this unless the input to the binop is a shift by a constant.
3432 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003433 //
Bill Wendling88103372009-01-30 21:37:17 +00003434 // void foo(int *X, int i) { X[i & 1235] = 1; }
3435 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003436 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003437 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003438 BinOpLHSVal->getOpcode() != ISD::SRA &&
3439 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3440 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003441 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003442
Owen Andersone50ed302009-08-10 22:56:29 +00003443 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003444
Bill Wendling88103372009-01-30 21:37:17 +00003445 // If this is a signed shift right, and the high bit is modified by the
3446 // logical operation, do not perform the transformation. The highBitSet
3447 // boolean indicates the value of the high bit of the constant which would
3448 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003449 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003450 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3451 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003452 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003453 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003454
Chris Lattnere70da202007-12-06 07:33:36 +00003455 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003456 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3457 N->getValueType(0),
3458 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003459
3460 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003461 SDValue NewShift = DAG.getNode(N->getOpcode(),
3462 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003463 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003464
3465 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003466 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003467}
3468
Dan Gohman475871a2008-07-27 21:46:04 +00003469SDValue DAGCombiner::visitSHL(SDNode *N) {
3470 SDValue N0 = N->getOperand(0);
3471 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003472 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3473 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003474 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003475 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003476
Nate Begeman1d4d4142005-09-01 00:19:25 +00003477 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003478 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003479 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003480 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003481 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003482 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003483 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003484 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003485 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003486 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003487 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003488 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003489 // fold (shl undef, x) -> 0
3490 if (N0.getOpcode() == ISD::UNDEF)
3491 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003492 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003493 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003494 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003495 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003496 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003497 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003498 N1.getOperand(0).getOpcode() == ISD::AND &&
3499 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003500 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003501 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003502 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003503 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003504 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003505 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003506 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003507 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3508 DAG.getNode(ISD::TRUNCATE,
3509 N->getDebugLoc(),
3510 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003511 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003512 }
3513 }
3514
Dan Gohman475871a2008-07-27 21:46:04 +00003515 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3516 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003517
3518 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003519 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003520 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003521 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3522 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003523 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003524 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003525 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003526 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003527 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003528
3529 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3530 // For this to be valid, the second form must not preserve any of the bits
3531 // that are shifted out by the inner shift in the first form. This means
3532 // the outer shift size must be >= the number of bits added by the ext.
3533 // As a corollary, we don't care what kind of ext it is.
3534 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3535 N0.getOpcode() == ISD::ANY_EXTEND ||
3536 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3537 N0.getOperand(0).getOpcode() == ISD::SHL &&
3538 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003539 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003540 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3541 uint64_t c2 = N1C->getZExtValue();
3542 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3543 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3544 if (c2 >= OpSizeInBits - InnerShiftSize) {
3545 if (c1 + c2 >= OpSizeInBits)
3546 return DAG.getConstant(0, VT);
3547 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3548 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3549 N0.getOperand(0)->getOperand(0)),
3550 DAG.getConstant(c1 + c2, N1.getValueType()));
3551 }
3552 }
3553
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003554 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3555 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003556 // Only fold this if the inner shift has no other uses -- if it does, folding
3557 // this will increase the total number of instructions.
3558 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003559 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003560 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003561 if (c1 < VT.getSizeInBits()) {
3562 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003563 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3564 VT.getSizeInBits() - c1);
3565 SDValue Shift;
3566 if (c2 > c1) {
3567 Mask = Mask.shl(c2-c1);
3568 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3569 DAG.getConstant(c2-c1, N1.getValueType()));
3570 } else {
3571 Mask = Mask.lshr(c1-c2);
3572 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3573 DAG.getConstant(c1-c2, N1.getValueType()));
3574 }
3575 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3576 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003577 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003578 }
Bill Wendling88103372009-01-30 21:37:17 +00003579 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003580 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3581 SDValue HiBitsMask =
3582 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3583 VT.getSizeInBits() -
3584 N1C->getZExtValue()),
3585 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003586 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003587 HiBitsMask);
3588 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003589
Evan Chenge5b51ac2010-04-17 06:13:15 +00003590 if (N1C) {
3591 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3592 if (NewSHL.getNode())
3593 return NewSHL;
3594 }
3595
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003596 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003597}
3598
Dan Gohman475871a2008-07-27 21:46:04 +00003599SDValue DAGCombiner::visitSRA(SDNode *N) {
3600 SDValue N0 = N->getOperand(0);
3601 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003602 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3603 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003604 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003605 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003606
Bill Wendling88103372009-01-30 21:37:17 +00003607 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003608 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003609 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003610 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003611 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003612 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003613 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003614 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003615 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003616 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003617 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003618 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003619 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003620 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003621 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003622 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3623 // sext_inreg.
3624 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003625 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003626 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3627 if (VT.isVector())
3628 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3629 ExtVT, VT.getVectorNumElements());
3630 if ((!LegalOperations ||
3631 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003632 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003633 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003634 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003635
Bill Wendling88103372009-01-30 21:37:17 +00003636 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003637 if (N1C && N0.getOpcode() == ISD::SRA) {
3638 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003639 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003640 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003641 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003642 DAG.getConstant(Sum, N1C->getValueType(0)));
3643 }
3644 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003645
Bill Wendling88103372009-01-30 21:37:17 +00003646 // fold (sra (shl X, m), (sub result_size, n))
3647 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003648 // result_size - n != m.
3649 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003650 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003651 if (N0.getOpcode() == ISD::SHL) {
3652 // Get the two constanst of the shifts, CN0 = m, CN = n.
3653 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3654 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003655 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003656 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003657 EVT::getIntegerVT(*DAG.getContext(),
3658 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003659 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003660 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003661
Scott Michelfdc40a02009-02-17 22:15:04 +00003662 // If the shift is not a no-op (in which case this should be just a sign
3663 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003664 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003665 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003666 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003667 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3668 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003669 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003670
Owen Anderson95771af2011-02-25 21:41:48 +00003671 SDValue Amt = DAG.getConstant(ShiftAmt,
3672 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003673 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3674 N0.getOperand(0), Amt);
3675 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3676 Shift);
3677 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3678 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003679 }
3680 }
3681 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003682
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003683 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003684 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003685 N1.getOperand(0).getOpcode() == ISD::AND &&
3686 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003687 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003688 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003689 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003690 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003691 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003692 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003693 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003694 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003695 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003696 DAG.getNode(ISD::TRUNCATE,
3697 N->getDebugLoc(),
3698 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003699 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003700 }
3701 }
3702
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003703 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3704 // if c1 is equal to the number of bits the trunc removes
3705 if (N0.getOpcode() == ISD::TRUNCATE &&
3706 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3707 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3708 N0.getOperand(0).hasOneUse() &&
3709 N0.getOperand(0).getOperand(1).hasOneUse() &&
3710 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3711 EVT LargeVT = N0.getOperand(0).getValueType();
3712 ConstantSDNode *LargeShiftAmt =
3713 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3714
3715 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3716 LargeShiftAmt->getZExtValue()) {
3717 SDValue Amt =
3718 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003719 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003720 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3721 N0.getOperand(0).getOperand(0), Amt);
3722 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3723 }
3724 }
3725
Scott Michelfdc40a02009-02-17 22:15:04 +00003726 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003727 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3728 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003729
3730
Nate Begeman1d4d4142005-09-01 00:19:25 +00003731 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003732 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003733 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003734
Evan Chenge5b51ac2010-04-17 06:13:15 +00003735 if (N1C) {
3736 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3737 if (NewSRA.getNode())
3738 return NewSRA;
3739 }
3740
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003741 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003742}
3743
Dan Gohman475871a2008-07-27 21:46:04 +00003744SDValue DAGCombiner::visitSRL(SDNode *N) {
3745 SDValue N0 = N->getOperand(0);
3746 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003747 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3748 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003749 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003750 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003751
Nate Begeman1d4d4142005-09-01 00:19:25 +00003752 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003753 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003754 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003755 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003756 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003757 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003758 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003759 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003760 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003761 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003762 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003763 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003764 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003765 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003766 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003767 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003768
Bill Wendling88103372009-01-30 21:37:17 +00003769 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003770 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003771 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003772 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3773 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003774 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003775 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003776 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003777 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003778 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003779
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003780 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003781 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3782 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003783 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003784 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003785 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3786 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003787 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3788 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003789 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003790 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003791 if (c1 + OpSizeInBits == InnerShiftSize) {
3792 if (c1 + c2 >= InnerShiftSize)
3793 return DAG.getConstant(0, VT);
3794 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003795 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003796 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003797 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003798 }
3799 }
3800
Chris Lattnerefcddc32010-04-15 05:28:43 +00003801 // fold (srl (shl x, c), c) -> (and x, cst2)
3802 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3803 N0.getValueSizeInBits() <= 64) {
3804 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3805 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3806 DAG.getConstant(~0ULL >> ShAmt, VT));
3807 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003808
Scott Michelfdc40a02009-02-17 22:15:04 +00003809
Chris Lattner06afe072006-05-05 22:53:17 +00003810 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3811 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3812 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003813 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003814 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003815 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003816
Evan Chenge5b51ac2010-04-17 06:13:15 +00003817 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003818 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003819 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003820 N0.getOperand(0),
3821 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003822 AddToWorkList(SmallShift.getNode());
3823 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3824 }
Chris Lattner06afe072006-05-05 22:53:17 +00003825 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003826
Chris Lattner3657ffe2006-10-12 20:23:19 +00003827 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3828 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003829 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003830 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003831 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003832 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003833
Chris Lattner350bec02006-04-02 06:11:11 +00003834 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003835 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003836 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003837 APInt KnownZero, KnownOne;
Dan Gohman5b870af2010-03-02 02:14:38 +00003838 APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00003839 DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003840
Chris Lattner350bec02006-04-02 06:11:11 +00003841 // If any of the input bits are KnownOne, then the input couldn't be all
3842 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003843 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003844
Chris Lattner350bec02006-04-02 06:11:11 +00003845 // If all of the bits input the to ctlz node are known to be zero, then
3846 // the result of the ctlz is "32" and the result of the shift is one.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003847 APInt UnknownBits = ~KnownZero & Mask;
Chris Lattner350bec02006-04-02 06:11:11 +00003848 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003849
Chris Lattner350bec02006-04-02 06:11:11 +00003850 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003851 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003852 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003853 // could be set on input to the CTLZ node. If this bit is set, the SRL
3854 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3855 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003856 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003857 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003858
Chris Lattner350bec02006-04-02 06:11:11 +00003859 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003860 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003861 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003862 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003863 }
Bill Wendling88103372009-01-30 21:37:17 +00003864
3865 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3866 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003867 }
3868 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003869
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003870 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003871 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003872 N1.getOperand(0).getOpcode() == ISD::AND &&
3873 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003874 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003875 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003876 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003877 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003878 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003879 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003880 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003881 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003882 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003883 DAG.getNode(ISD::TRUNCATE,
3884 N->getDebugLoc(),
3885 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003886 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003887 }
3888 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003889
Chris Lattner61a4c072007-04-18 03:06:49 +00003890 // fold operands of srl based on knowledge that the low bits are not
3891 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003892 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3893 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003894
Evan Cheng9ab2b982009-12-18 21:31:31 +00003895 if (N1C) {
3896 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3897 if (NewSRL.getNode())
3898 return NewSRL;
3899 }
3900
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003901 // Attempt to convert a srl of a load into a narrower zero-extending load.
3902 SDValue NarrowLoad = ReduceLoadWidth(N);
3903 if (NarrowLoad.getNode())
3904 return NarrowLoad;
3905
Evan Cheng9ab2b982009-12-18 21:31:31 +00003906 // Here is a common situation. We want to optimize:
3907 //
3908 // %a = ...
3909 // %b = and i32 %a, 2
3910 // %c = srl i32 %b, 1
3911 // brcond i32 %c ...
3912 //
3913 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003914 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00003915 // %a = ...
3916 // %b = and %a, 2
3917 // %c = setcc eq %b, 0
3918 // brcond %c ...
3919 //
3920 // However when after the source operand of SRL is optimized into AND, the SRL
3921 // itself may not be optimized further. Look for it and add the BRCOND into
3922 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00003923 if (N->hasOneUse()) {
3924 SDNode *Use = *N->use_begin();
3925 if (Use->getOpcode() == ISD::BRCOND)
3926 AddToWorkList(Use);
3927 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3928 // Also look pass the truncate.
3929 Use = *Use->use_begin();
3930 if (Use->getOpcode() == ISD::BRCOND)
3931 AddToWorkList(Use);
3932 }
3933 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00003934
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003935 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00003936}
3937
Dan Gohman475871a2008-07-27 21:46:04 +00003938SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3939 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003940 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003941
3942 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003943 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003944 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003945 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003946}
3947
Chandler Carruth63974b22011-12-13 01:56:10 +00003948SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
3949 SDValue N0 = N->getOperand(0);
3950 EVT VT = N->getValueType(0);
3951
3952 // fold (ctlz_zero_undef c1) -> c2
3953 if (isa<ConstantSDNode>(N0))
3954 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3955 return SDValue();
3956}
3957
Dan Gohman475871a2008-07-27 21:46:04 +00003958SDValue DAGCombiner::visitCTTZ(SDNode *N) {
3959 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003960 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003961
Nate Begeman1d4d4142005-09-01 00:19:25 +00003962 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003963 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003964 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003965 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003966}
3967
Chandler Carruth63974b22011-12-13 01:56:10 +00003968SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
3969 SDValue N0 = N->getOperand(0);
3970 EVT VT = N->getValueType(0);
3971
3972 // fold (cttz_zero_undef c1) -> c2
3973 if (isa<ConstantSDNode>(N0))
3974 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3975 return SDValue();
3976}
3977
Dan Gohman475871a2008-07-27 21:46:04 +00003978SDValue DAGCombiner::visitCTPOP(SDNode *N) {
3979 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003980 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003981
Nate Begeman1d4d4142005-09-01 00:19:25 +00003982 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003983 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003984 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003985 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003986}
3987
Dan Gohman475871a2008-07-27 21:46:04 +00003988SDValue DAGCombiner::visitSELECT(SDNode *N) {
3989 SDValue N0 = N->getOperand(0);
3990 SDValue N1 = N->getOperand(1);
3991 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00003992 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3993 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3994 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00003995 EVT VT = N->getValueType(0);
3996 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00003997
Bill Wendling34584e62009-01-30 22:02:18 +00003998 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003999 if (N1 == N2)
4000 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004001 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004002 if (N0C && !N0C->isNullValue())
4003 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004004 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00004005 if (N0C && N0C->isNullValue())
4006 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004007 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004008 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00004009 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4010 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004011 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004012 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004013 (VT0.isInteger() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00004014 TLI.getBooleanContents(false) == TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004015 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004016 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004017 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00004018 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
4019 N0, DAG.getConstant(1, VT0));
4020 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
4021 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004022 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004023 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00004024 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
4025 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004026 }
Bill Wendling34584e62009-01-30 22:02:18 +00004027 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004028 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00004029 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004030 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004031 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004032 }
Bill Wendling34584e62009-01-30 22:02:18 +00004033 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004034 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004035 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004036 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004037 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004038 }
Bill Wendling34584e62009-01-30 22:02:18 +00004039 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004040 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00004041 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
4042 // fold (select X, X, Y) -> (or X, Y)
4043 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004044 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00004045 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4046 // fold (select X, Y, X) -> (and X, Y)
4047 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004048 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00004049 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004050
Chris Lattner40c62d52005-10-18 06:04:22 +00004051 // If we can fold this based on the true/false value, do so.
4052 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004053 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004054
Nate Begeman44728a72005-09-19 22:34:01 +00004055 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004056 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004057 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004058 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004059 // having to say they don't support SELECT_CC on every type the DAG knows
4060 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004061 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004062 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004063 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4064 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004065 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004066 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004067 }
Bill Wendling34584e62009-01-30 22:02:18 +00004068
Dan Gohman475871a2008-07-27 21:46:04 +00004069 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004070}
4071
Dan Gohman475871a2008-07-27 21:46:04 +00004072SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4073 SDValue N0 = N->getOperand(0);
4074 SDValue N1 = N->getOperand(1);
4075 SDValue N2 = N->getOperand(2);
4076 SDValue N3 = N->getOperand(3);
4077 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004078 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004079
Nate Begeman44728a72005-09-19 22:34:01 +00004080 // fold select_cc lhs, rhs, x, x, cc -> x
4081 if (N2 == N3)
4082 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004083
Chris Lattner5f42a242006-09-20 06:19:26 +00004084 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004085 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004086 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004087 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004088
Gabor Greifba36cb52008-08-28 21:40:38 +00004089 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004090 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004091 return N2; // cond always true -> true val
4092 else
4093 return N3; // cond always false -> false val
4094 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004095
Chris Lattner5f42a242006-09-20 06:19:26 +00004096 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004097 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004098 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4099 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004100 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004101
Chris Lattner40c62d52005-10-18 06:04:22 +00004102 // If we can fold this based on the true/false value, do so.
4103 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004104 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004105
Nate Begeman44728a72005-09-19 22:34:01 +00004106 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004107 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004108}
4109
Dan Gohman475871a2008-07-27 21:46:04 +00004110SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004111 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004112 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4113 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004114}
4115
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004116// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004117// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004118// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004119// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004120static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004121 unsigned ExtOpc,
4122 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004123 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004124 bool HasCopyToRegUses = false;
4125 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004126 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4127 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004128 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004129 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004130 if (User == N)
4131 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004132 if (UI.getUse().getResNo() != N0.getResNo())
4133 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004134 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004135 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004136 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4137 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4138 // Sign bits will be lost after a zext.
4139 return false;
4140 bool Add = false;
4141 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004142 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004143 if (UseOp == N0)
4144 continue;
4145 if (!isa<ConstantSDNode>(UseOp))
4146 return false;
4147 Add = true;
4148 }
4149 if (Add)
4150 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004151 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004152 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004153 // If truncates aren't free and there are users we can't
4154 // extend, it isn't worthwhile.
4155 if (!isTruncFree)
4156 return false;
4157 // Remember if this value is live-out.
4158 if (User->getOpcode() == ISD::CopyToReg)
4159 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004160 }
4161
4162 if (HasCopyToRegUses) {
4163 bool BothLiveOut = false;
4164 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4165 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004166 SDUse &Use = UI.getUse();
4167 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4168 BothLiveOut = true;
4169 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004170 }
4171 }
4172 if (BothLiveOut)
4173 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004174 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004175 return ExtendNodes.size();
4176 }
4177 return true;
4178}
4179
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004180void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4181 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4182 ISD::NodeType ExtType) {
4183 // Extend SetCC uses if necessary.
4184 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4185 SDNode *SetCC = SetCCs[i];
4186 SmallVector<SDValue, 4> Ops;
4187
4188 for (unsigned j = 0; j != 2; ++j) {
4189 SDValue SOp = SetCC->getOperand(j);
4190 if (SOp == Trunc)
4191 Ops.push_back(ExtLoad);
4192 else
4193 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4194 }
4195
4196 Ops.push_back(SetCC->getOperand(2));
4197 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4198 &Ops[0], Ops.size()));
4199 }
4200}
4201
Dan Gohman475871a2008-07-27 21:46:04 +00004202SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4203 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004204 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004205
Nate Begeman1d4d4142005-09-01 00:19:25 +00004206 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004207 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004208 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004209
Nate Begeman1d4d4142005-09-01 00:19:25 +00004210 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004211 // fold (sext (aext x)) -> (sext x)
4212 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004213 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4214 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004215
Chris Lattner22558872007-02-26 03:13:59 +00004216 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004217 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4218 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004219 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4220 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004221 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4222 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004223 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004224 // CombineTo deleted the truncate, if needed, but not what's under it.
4225 AddToWorkList(oye);
4226 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004227 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004228 }
Evan Chengc88138f2007-03-22 01:54:19 +00004229
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004230 // See if the value being truncated is already sign extended. If so, just
4231 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004232 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004233 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4234 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4235 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004236 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004237
Chris Lattner22558872007-02-26 03:13:59 +00004238 if (OpBits == DestBits) {
4239 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4240 // bits, it is already ready.
4241 if (NumSignBits > DestBits-MidBits)
4242 return Op;
4243 } else if (OpBits < DestBits) {
4244 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4245 // bits, just sext from i32.
4246 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004247 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004248 } else {
4249 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4250 // bits, just truncate to i32.
4251 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004252 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004253 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004254
Chris Lattner22558872007-02-26 03:13:59 +00004255 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004256 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4257 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004258 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004259 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004260 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004261 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4262 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004263 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004264 }
Chris Lattner6007b842006-09-21 06:00:20 +00004265 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004266
Evan Cheng110dec22005-12-14 02:19:23 +00004267 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004268 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004269 // on vectors in one instruction. We only perform this transformation on
4270 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004271 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004272 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004273 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004274 bool DoXform = true;
4275 SmallVector<SDNode*, 4> SetCCs;
4276 if (!N0.hasOneUse())
4277 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4278 if (DoXform) {
4279 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004280 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004281 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004282 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004283 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004284 LN0->isVolatile(), LN0->isNonTemporal(),
4285 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004286 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004287 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4288 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004289 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004290 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4291 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004292 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004293 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004294 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004295
4296 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4297 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004298 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4299 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004300 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004301 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004302 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004303 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004304 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004305 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004306 LN0->getBasePtr(), LN0->getPointerInfo(),
4307 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004308 LN0->isVolatile(), LN0->isNonTemporal(),
4309 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004310 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004311 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004312 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4313 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004314 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004315 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004316 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004317 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004318
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004319 // fold (sext (and/or/xor (load x), cst)) ->
4320 // (and/or/xor (sextload x), (sext cst))
4321 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4322 N0.getOpcode() == ISD::XOR) &&
4323 isa<LoadSDNode>(N0.getOperand(0)) &&
4324 N0.getOperand(1).getOpcode() == ISD::Constant &&
4325 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4326 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4327 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4328 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4329 bool DoXform = true;
4330 SmallVector<SDNode*, 4> SetCCs;
4331 if (!N0.hasOneUse())
4332 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4333 SetCCs, TLI);
4334 if (DoXform) {
4335 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4336 LN0->getChain(), LN0->getBasePtr(),
4337 LN0->getPointerInfo(),
4338 LN0->getMemoryVT(),
4339 LN0->isVolatile(),
4340 LN0->isNonTemporal(),
4341 LN0->getAlignment());
4342 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4343 Mask = Mask.sext(VT.getSizeInBits());
4344 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4345 ExtLoad, DAG.getConstant(Mask, VT));
4346 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4347 N0.getOperand(0).getDebugLoc(),
4348 N0.getOperand(0).getValueType(), ExtLoad);
4349 CombineTo(N, And);
4350 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4351 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4352 ISD::SIGN_EXTEND);
4353 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4354 }
4355 }
4356 }
4357
Chris Lattner20a35c32007-04-11 05:32:27 +00004358 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004359 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004360 // Only do this before legalize for now.
4361 if (VT.isVector() && !LegalOperations) {
4362 EVT N0VT = N0.getOperand(0).getValueType();
Chris Lattner2b7a2712009-07-08 00:31:33 +00004363 // We know that the # elements of the results is the same as the
4364 // # elements of the compare (and the # elements of the compare result
4365 // for that matter). Check to see that they are the same size. If so,
4366 // we know that the element size of the sext'd result matches the
4367 // element size of the compare operands.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004368 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004369 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004370 N0.getOperand(1),
4371 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004372 // If the desired elements are smaller or larger than the source
4373 // elements we can use a matching integer vector type and then
4374 // truncate/sign extend
4375 else {
Duncan Sands34727662010-07-12 08:16:59 +00004376 EVT MatchingElementType =
4377 EVT::getIntegerVT(*DAG.getContext(),
4378 N0VT.getScalarType().getSizeInBits());
4379 EVT MatchingVectorType =
4380 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4381 N0VT.getVectorNumElements());
4382 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004383 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004384 N0.getOperand(1),
4385 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4386 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Dan Gohman3ce89f42010-04-30 17:19:19 +00004387 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004388 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004389
Chris Lattner2b7a2712009-07-08 00:31:33 +00004390 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004391 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004392 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004393 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004394 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004395 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004396 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004397 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004398 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004399 if (!LegalOperations ||
4400 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4401 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4402 DAG.getSetCC(N->getDebugLoc(),
4403 TLI.getSetCCResultType(VT),
4404 N0.getOperand(0), N0.getOperand(1),
4405 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4406 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004407 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004408
Dan Gohman8f0ad582008-04-28 16:58:24 +00004409 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004410 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004411 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004412 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004413
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004414 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004415}
4416
Dan Gohman475871a2008-07-27 21:46:04 +00004417SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4418 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004419 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004420
Nate Begeman1d4d4142005-09-01 00:19:25 +00004421 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004422 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004423 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004424 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004425 // fold (zext (aext x)) -> (zext x)
4426 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004427 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4428 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004429
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004430 // fold (zext (truncate x)) -> (zext x) or
4431 // (zext (truncate x)) -> (truncate x)
4432 // This is valid when the truncated bits of x are already zero.
4433 // FIXME: We should extend this to work for vectors too.
4434 if (N0.getOpcode() == ISD::TRUNCATE && !VT.isVector()) {
4435 SDValue Op = N0.getOperand(0);
4436 APInt TruncatedBits
4437 = APInt::getBitsSet(Op.getValueSizeInBits(),
4438 N0.getValueSizeInBits(),
4439 std::min(Op.getValueSizeInBits(),
4440 VT.getSizeInBits()));
4441 APInt KnownZero, KnownOne;
4442 DAG.ComputeMaskedBits(Op, TruncatedBits, KnownZero, KnownOne);
4443 if (TruncatedBits == KnownZero) {
4444 if (VT.bitsGT(Op.getValueType()))
4445 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4446 if (VT.bitsLT(Op.getValueType()))
4447 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4448
4449 return Op;
4450 }
4451 }
4452
Evan Chengc88138f2007-03-22 01:54:19 +00004453 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4454 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004455 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004456 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4457 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004458 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4459 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004460 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004461 // CombineTo deleted the truncate, if needed, but not what's under it.
4462 AddToWorkList(oye);
4463 }
Eli Friedmane545d382011-04-16 23:25:34 +00004464 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004465 }
Evan Chengc88138f2007-03-22 01:54:19 +00004466 }
4467
Chris Lattner6007b842006-09-21 06:00:20 +00004468 // fold (zext (truncate x)) -> (and x, mask)
4469 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004470 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004471
4472 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4473 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4474 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4475 if (NarrowLoad.getNode()) {
4476 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4477 if (NarrowLoad.getNode() != N0.getNode()) {
4478 CombineTo(N0.getNode(), NarrowLoad);
4479 // CombineTo deleted the truncate, if needed, but not what's under it.
4480 AddToWorkList(oye);
4481 }
4482 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4483 }
4484
Dan Gohman475871a2008-07-27 21:46:04 +00004485 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004486 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004487 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004488 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004489 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004490 }
Dan Gohman87862e72009-12-11 21:31:27 +00004491 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4492 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004493 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004494
Dan Gohman97121ba2009-04-08 00:15:30 +00004495 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4496 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004497 if (N0.getOpcode() == ISD::AND &&
4498 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004499 N0.getOperand(1).getOpcode() == ISD::Constant &&
4500 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4501 N0.getValueType()) ||
4502 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004503 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004504 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004505 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004506 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004507 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004508 }
Dan Gohman220a8232008-03-03 23:51:38 +00004509 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004510 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004511 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4512 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004513 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004514
Evan Cheng110dec22005-12-14 02:19:23 +00004515 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004516 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004517 // on vectors in one instruction. We only perform this transformation on
4518 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004519 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004520 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004521 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004522 bool DoXform = true;
4523 SmallVector<SDNode*, 4> SetCCs;
4524 if (!N0.hasOneUse())
4525 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4526 if (DoXform) {
4527 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004528 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004529 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004530 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004531 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004532 LN0->isVolatile(), LN0->isNonTemporal(),
4533 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004534 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004535 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4536 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004537 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004538
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004539 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4540 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004541 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004542 }
Evan Cheng110dec22005-12-14 02:19:23 +00004543 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004544
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004545 // fold (zext (and/or/xor (load x), cst)) ->
4546 // (and/or/xor (zextload x), (zext cst))
4547 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4548 N0.getOpcode() == ISD::XOR) &&
4549 isa<LoadSDNode>(N0.getOperand(0)) &&
4550 N0.getOperand(1).getOpcode() == ISD::Constant &&
4551 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4552 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4553 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4554 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4555 bool DoXform = true;
4556 SmallVector<SDNode*, 4> SetCCs;
4557 if (!N0.hasOneUse())
4558 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4559 SetCCs, TLI);
4560 if (DoXform) {
4561 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4562 LN0->getChain(), LN0->getBasePtr(),
4563 LN0->getPointerInfo(),
4564 LN0->getMemoryVT(),
4565 LN0->isVolatile(),
4566 LN0->isNonTemporal(),
4567 LN0->getAlignment());
4568 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4569 Mask = Mask.zext(VT.getSizeInBits());
4570 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4571 ExtLoad, DAG.getConstant(Mask, VT));
4572 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4573 N0.getOperand(0).getDebugLoc(),
4574 N0.getOperand(0).getValueType(), ExtLoad);
4575 CombineTo(N, And);
4576 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4577 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4578 ISD::ZERO_EXTEND);
4579 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4580 }
4581 }
4582 }
4583
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004584 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4585 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004586 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4587 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004588 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004589 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004590 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004591 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004592 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004593 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004594 LN0->getBasePtr(), LN0->getPointerInfo(),
4595 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004596 LN0->isVolatile(), LN0->isNonTemporal(),
4597 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004598 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004599 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004600 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4601 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004602 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004603 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004604 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004605 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004606
Chris Lattner20a35c32007-04-11 05:32:27 +00004607 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004608 if (!LegalOperations && VT.isVector()) {
4609 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4610 // Only do this before legalize for now.
4611 EVT N0VT = N0.getOperand(0).getValueType();
4612 EVT EltVT = VT.getVectorElementType();
4613 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4614 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004615 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004616 // We know that the # elements of the results is the same as the
4617 // # elements of the compare (and the # elements of the compare result
4618 // for that matter). Check to see that they are the same size. If so,
4619 // we know that the element size of the sext'd result matches the
4620 // element size of the compare operands.
4621 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004622 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004623 N0.getOperand(1),
4624 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4625 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4626 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004627
4628 // If the desired elements are smaller or larger than the source
4629 // elements we can use a matching integer vector type and then
4630 // truncate/sign extend
4631 EVT MatchingElementType =
4632 EVT::getIntegerVT(*DAG.getContext(),
4633 N0VT.getScalarType().getSizeInBits());
4634 EVT MatchingVectorType =
4635 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4636 N0VT.getVectorNumElements());
4637 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004638 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004639 N0.getOperand(1),
4640 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4641 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4642 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4643 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4644 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004645 }
4646
4647 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004648 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004649 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004650 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004651 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004652 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004653 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004654
Evan Cheng9818c042009-12-15 03:00:32 +00004655 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004656 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004657 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004658 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4659 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004660 SDValue ShAmt = N0.getOperand(1);
4661 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004662 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004663 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004664 // If the original shl may be shifting out bits, do not perform this
4665 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004666 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4667 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4668 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004669 return SDValue();
4670 }
Chris Lattnere0751182011-02-13 19:09:16 +00004671
4672 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004673
4674 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004675 if (VT.getSizeInBits() >= 256)
4676 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004677
Chris Lattnere0751182011-02-13 19:09:16 +00004678 return DAG.getNode(N0.getOpcode(), DL, VT,
4679 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4680 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004681 }
4682
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004683 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004684}
4685
Dan Gohman475871a2008-07-27 21:46:04 +00004686SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4687 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004688 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004689
Chris Lattner5ffc0662006-05-05 05:58:59 +00004690 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004691 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004692 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004693 // fold (aext (aext x)) -> (aext x)
4694 // fold (aext (zext x)) -> (zext x)
4695 // fold (aext (sext x)) -> (sext x)
4696 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4697 N0.getOpcode() == ISD::ZERO_EXTEND ||
4698 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004699 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004700
Evan Chengc88138f2007-03-22 01:54:19 +00004701 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4702 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4703 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004704 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4705 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004706 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4707 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004708 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004709 // CombineTo deleted the truncate, if needed, but not what's under it.
4710 AddToWorkList(oye);
4711 }
Eli Friedmane545d382011-04-16 23:25:34 +00004712 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004713 }
Evan Chengc88138f2007-03-22 01:54:19 +00004714 }
4715
Chris Lattner84750582006-09-20 06:29:17 +00004716 // fold (aext (truncate x))
4717 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004718 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004719 if (TruncOp.getValueType() == VT)
4720 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004721 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004722 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4723 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004724 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004725
Dan Gohman97121ba2009-04-08 00:15:30 +00004726 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4727 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004728 if (N0.getOpcode() == ISD::AND &&
4729 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004730 N0.getOperand(1).getOpcode() == ISD::Constant &&
4731 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4732 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004733 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004734 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004735 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004736 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004737 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004738 }
Dan Gohman220a8232008-03-03 23:51:38 +00004739 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004740 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004741 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4742 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004743 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004744
Chris Lattner5ffc0662006-05-05 05:58:59 +00004745 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004746 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004747 // on vectors in one instruction. We only perform this transformation on
4748 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004749 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004750 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004751 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004752 bool DoXform = true;
4753 SmallVector<SDNode*, 4> SetCCs;
4754 if (!N0.hasOneUse())
4755 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4756 if (DoXform) {
4757 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004758 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004759 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004760 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004761 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004762 LN0->isVolatile(), LN0->isNonTemporal(),
4763 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004764 CombineTo(N, ExtLoad);
4765 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4766 N0.getValueType(), ExtLoad);
4767 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004768 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4769 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004770 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4771 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004772 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004773
Chris Lattner5ffc0662006-05-05 05:58:59 +00004774 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4775 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4776 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004777 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004778 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004779 N0.hasOneUse()) {
4780 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004781 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004782 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4783 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004784 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004785 LN0->isVolatile(), LN0->isNonTemporal(),
4786 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004787 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004788 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004789 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4790 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004791 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004792 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004793 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004794
Chris Lattner20a35c32007-04-11 05:32:27 +00004795 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004796 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4797 // Only do this before legalize for now.
4798 if (VT.isVector() && !LegalOperations) {
4799 EVT N0VT = N0.getOperand(0).getValueType();
4800 // We know that the # elements of the results is the same as the
4801 // # elements of the compare (and the # elements of the compare result
4802 // for that matter). Check to see that they are the same size. If so,
4803 // we know that the element size of the sext'd result matches the
4804 // element size of the compare operands.
4805 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004806 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004807 N0.getOperand(1),
4808 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004809 // If the desired elements are smaller or larger than the source
4810 // elements we can use a matching integer vector type and then
4811 // truncate/sign extend
4812 else {
Duncan Sands34727662010-07-12 08:16:59 +00004813 EVT MatchingElementType =
4814 EVT::getIntegerVT(*DAG.getContext(),
4815 N0VT.getScalarType().getSizeInBits());
4816 EVT MatchingVectorType =
4817 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4818 N0VT.getVectorNumElements());
4819 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004820 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004821 N0.getOperand(1),
4822 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4823 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004824 }
4825 }
4826
4827 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004828 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004829 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004830 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004831 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004832 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004833 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004834 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004835
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004836 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004837}
4838
Chris Lattner2b4c2792007-10-13 06:35:54 +00004839/// GetDemandedBits - See if the specified operand can be simplified with the
4840/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004841/// simpler operand, otherwise return a null SDValue.
4842SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004843 switch (V.getOpcode()) {
4844 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004845 case ISD::Constant: {
4846 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4847 assert(CV != 0 && "Const value should be ConstSDNode.");
4848 const APInt &CVal = CV->getAPIntValue();
4849 APInt NewVal = CVal & Mask;
4850 if (NewVal != CVal) {
4851 return DAG.getConstant(NewVal, V.getValueType());
4852 }
4853 break;
4854 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004855 case ISD::OR:
4856 case ISD::XOR:
4857 // If the LHS or RHS don't contribute bits to the or, drop them.
4858 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4859 return V.getOperand(1);
4860 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4861 return V.getOperand(0);
4862 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004863 case ISD::SRL:
4864 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00004865 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00004866 break;
4867 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4868 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004869 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00004870
Dan Gohmancc91d632009-01-03 19:22:06 +00004871 // Watch out for shift count overflow though.
4872 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004873 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00004874 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00004875 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004876 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00004877 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00004878 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004879 }
Dan Gohman475871a2008-07-27 21:46:04 +00004880 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00004881}
4882
Evan Chengc88138f2007-03-22 01:54:19 +00004883/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4884/// bits and then truncated to a narrower type and where N is a multiple
4885/// of number of bits of the narrower type, transform it to a narrower load
4886/// from address + N / num of bits of new type. If the result is to be
4887/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00004888SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00004889 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004890
Evan Chengc88138f2007-03-22 01:54:19 +00004891 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00004892 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004893 EVT VT = N->getValueType(0);
4894 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00004895
Dan Gohman7f8613e2008-08-14 20:04:46 +00004896 // This transformation isn't valid for vector loads.
4897 if (VT.isVector())
4898 return SDValue();
4899
Dan Gohmand1996362010-01-09 02:13:55 +00004900 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00004901 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00004902 if (Opc == ISD::SIGN_EXTEND_INREG) {
4903 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00004904 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004905 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00004906 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004907 ExtType = ISD::ZEXTLOAD;
4908 N0 = SDValue(N, 0);
4909 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
4910 if (!N01) return SDValue();
4911 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
4912 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00004913 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00004914 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
4915 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004916
Owen Andersone50ed302009-08-10 22:56:29 +00004917 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00004918
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004919 // Do not generate loads of non-round integer types since these can
4920 // be expensive (and would be wrong if the type is not byte sized).
4921 if (!ExtVT.isRound())
4922 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004923
Evan Chengc88138f2007-03-22 01:54:19 +00004924 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004925 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00004926 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004927 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004928 // Is the shift amount a multiple of size of VT?
4929 if ((ShAmt & (EVTBits-1)) == 0) {
4930 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00004931 // Is the load width a multiple of size of VT?
4932 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00004933 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004934 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004935
Chris Lattnercbf68df2010-12-22 08:02:57 +00004936 // At this point, we must have a load or else we can't do the transform.
4937 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004938
Chris Lattner2831a192010-10-01 05:36:09 +00004939 // If the shift amount is larger than the input type then we're not
4940 // accessing any of the loaded bytes. If the load was a zextload/extload
4941 // then the result of the shift+trunc is zero/undef (handled elsewhere).
4942 // If the load was a sextload then the result is a splat of the sign bit
4943 // of the extended byte. This is not worth optimizing for.
Chris Lattnercbf68df2010-12-22 08:02:57 +00004944 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00004945 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004946 }
4947 }
4948
Dan Gohman394d6292010-11-03 01:47:46 +00004949 // If the load is shifted left (and the result isn't shifted back right),
4950 // we can fold the truncate through the shift.
4951 unsigned ShLeftAmt = 0;
4952 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00004953 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00004954 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
4955 ShLeftAmt = N01->getZExtValue();
4956 N0 = N0.getOperand(0);
4957 }
4958 }
Owen Anderson95771af2011-02-25 21:41:48 +00004959
Chris Lattner4c32bc22010-12-22 07:36:50 +00004960 // If we haven't found a load, we can't narrow it. Don't transform one with
4961 // multiple uses, this would require adding a new load.
4962 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
4963 // Don't change the width of a volatile load.
4964 cast<LoadSDNode>(N0)->isVolatile())
4965 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004966
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004967 // Verify that we are actually reducing a load width here.
4968 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00004969 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004970
Chris Lattner4c32bc22010-12-22 07:36:50 +00004971 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4972 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00004973
Chris Lattner4c32bc22010-12-22 07:36:50 +00004974 // For big endian targets, we need to adjust the offset to the pointer to
4975 // load the correct bytes.
4976 if (TLI.isBigEndian()) {
4977 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
4978 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
4979 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00004980 }
4981
Chris Lattner4c32bc22010-12-22 07:36:50 +00004982 uint64_t PtrOff = ShAmt / 8;
4983 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
4984 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
4985 PtrType, LN0->getBasePtr(),
4986 DAG.getConstant(PtrOff, PtrType));
4987 AddToWorkList(NewPtr.getNode());
4988
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004989 SDValue Load;
4990 if (ExtType == ISD::NON_EXTLOAD)
4991 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
4992 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004993 LN0->isVolatile(), LN0->isNonTemporal(),
4994 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004995 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00004996 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004997 LN0->getPointerInfo().getWithOffset(PtrOff),
4998 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
4999 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005000
5001 // Replace the old load's chain with the new load's chain.
5002 WorkListRemover DeadNodes(*this);
5003 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1),
5004 &DeadNodes);
5005
5006 // Shift the result left, if we've swallowed a left shift.
5007 SDValue Result = Load;
5008 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005009 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005010 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5011 ShImmTy = VT;
5012 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
5013 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
5014 }
5015
5016 // Return the new loaded value.
5017 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005018}
5019
Dan Gohman475871a2008-07-27 21:46:04 +00005020SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5021 SDValue N0 = N->getOperand(0);
5022 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005023 EVT VT = N->getValueType(0);
5024 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005025 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005026 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005027
Nate Begeman1d4d4142005-09-01 00:19:25 +00005028 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005029 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00005030 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005031
Chris Lattner541a24f2006-05-06 22:43:44 +00005032 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005033 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005034 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005035
Nate Begeman646d7e22005-09-02 21:18:40 +00005036 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5037 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00005038 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00005039 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5040 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00005041 }
Chris Lattner4b37e872006-05-08 21:18:59 +00005042
Dan Gohman75dcf082008-07-31 00:50:31 +00005043 // fold (sext_in_reg (sext x)) -> (sext x)
5044 // fold (sext_in_reg (aext x)) -> (sext x)
5045 // if x is small enough.
5046 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5047 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005048 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5049 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00005050 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005051 }
5052
Chris Lattner95a5e052007-04-17 19:03:21 +00005053 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005054 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005055 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005056
Chris Lattner95a5e052007-04-17 19:03:21 +00005057 // fold operands of sext_in_reg based on knowledge that the top bits are not
5058 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005059 if (SimplifyDemandedBits(SDValue(N, 0)))
5060 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005061
Evan Chengc88138f2007-03-22 01:54:19 +00005062 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5063 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005064 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005065 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005066 return NarrowLoad;
5067
Bill Wendling8509c902009-01-30 22:33:24 +00005068 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
5069 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005070 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5071 if (N0.getOpcode() == ISD::SRL) {
5072 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005073 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Chris Lattner4b37e872006-05-08 21:18:59 +00005074 // We can turn this into an SRA iff the input to the SRL is already sign
5075 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005076 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005077 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005078 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5079 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005080 }
5081 }
Evan Chengc88138f2007-03-22 01:54:19 +00005082
Nate Begemanded49632005-10-13 03:11:28 +00005083 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005084 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005085 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005086 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005087 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005088 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005089 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005090 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005091 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005092 LN0->getBasePtr(), LN0->getPointerInfo(),
5093 EVT,
David Greene1e559442010-02-15 17:00:31 +00005094 LN0->isVolatile(), LN0->isNonTemporal(),
5095 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005096 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005097 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005098 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005099 }
5100 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005101 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005102 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005103 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005104 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005105 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005106 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005107 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005108 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005109 LN0->getBasePtr(), LN0->getPointerInfo(),
5110 EVT,
David Greene1e559442010-02-15 17:00:31 +00005111 LN0->isVolatile(), LN0->isNonTemporal(),
5112 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005113 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005114 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005115 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005116 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005117
5118 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5119 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5120 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5121 N0.getOperand(1), false);
5122 if (BSwap.getNode() != 0)
5123 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5124 BSwap, N1);
5125 }
5126
Dan Gohman475871a2008-07-27 21:46:04 +00005127 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005128}
5129
Dan Gohman475871a2008-07-27 21:46:04 +00005130SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5131 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005132 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005133 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005134
5135 // noop truncate
5136 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005137 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005138 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005139 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005140 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005141 // fold (truncate (truncate x)) -> (truncate x)
5142 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005143 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005144 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005145 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5146 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005147 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005148 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005149 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005150 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5151 N0.getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005152 else if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005153 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005154 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005155 else
5156 // if the source and dest are the same type, we can drop both the extend
Evan Chengd40d03e2010-01-06 19:38:29 +00005157 // and the truncate.
Nate Begeman83e75ec2005-09-06 04:43:02 +00005158 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005159 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005160
Nadav Rotemcc870a82012-02-05 11:39:23 +00005161 // Fold extract-and-trunc into a narrow extract. For example:
5162 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5163 // i32 y = TRUNCATE(i64 x)
5164 // -- becomes --
5165 // v16i8 b = BITCAST (v2i64 val)
5166 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5167 //
5168 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005169 // creates this pattern) and before operation legalization after which
5170 // we need to be more careful about the vector instructions that we generate.
5171 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5172 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5173
5174 EVT VecTy = N0.getOperand(0).getValueType();
5175 EVT ExTy = N0.getValueType();
5176 EVT TrTy = N->getValueType(0);
5177
5178 unsigned NumElem = VecTy.getVectorNumElements();
5179 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5180
5181 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5182 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5183
5184 SDValue EltNo = N0->getOperand(1);
5185 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5186 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5187
5188 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5189
5190 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5191 NVT, N0.getOperand(0));
5192
5193 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5194 N->getDebugLoc(), TrTy, V,
5195 DAG.getConstant(Index, MVT::i32));
5196 }
5197 }
5198
Chris Lattner2b4c2792007-10-13 06:35:54 +00005199 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005200 // only the low bits are being used.
5201 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005202 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005203 // may have different active low bits.
5204 if (!VT.isVector()) {
5205 SDValue Shorter =
5206 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5207 VT.getSizeInBits()));
5208 if (Shorter.getNode())
5209 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5210 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005211 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005212 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005213 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5214 SDValue Reduced = ReduceLoadWidth(N);
5215 if (Reduced.getNode())
5216 return Reduced;
5217 }
5218
5219 // Simplify the operands using demanded-bits information.
5220 if (!VT.isVector() &&
5221 SimplifyDemandedBits(SDValue(N, 0)))
5222 return SDValue(N, 0);
5223
Evan Chenge5b51ac2010-04-17 06:13:15 +00005224 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005225}
5226
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005227static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005228 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005229 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005230 return Elt.getNode();
5231 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005232}
5233
5234/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005235/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005236SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005237 assert(N->getOpcode() == ISD::BUILD_PAIR);
5238
Nate Begemanabc01992009-06-05 21:37:30 +00005239 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5240 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005241 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5242 LD1->getPointerInfo().getAddrSpace() !=
5243 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005244 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005245 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005246
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005247 if (ISD::isNON_EXTLoad(LD2) &&
5248 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005249 // If both are volatile this would reduce the number of volatile loads.
5250 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005251 !LD1->isVolatile() &&
5252 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005253 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005254 unsigned Align = LD1->getAlignment();
Dan Gohman6448d912008-09-04 15:39:15 +00005255 unsigned NewAlign = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005256 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005257
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005258 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005259 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005260 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005261 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005262 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005263 }
Bill Wendling67a67682009-01-30 22:44:24 +00005264
Dan Gohman475871a2008-07-27 21:46:04 +00005265 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005266}
5267
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005268SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005269 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005270 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005271
Dan Gohman7f321562007-06-25 16:23:39 +00005272 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5273 // Only do this before legalize, since afterward the target may be depending
5274 // on the bitconvert.
5275 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005276 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005277 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005278 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005279 bool isSimple = true;
5280 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5281 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5282 N0.getOperand(i).getOpcode() != ISD::Constant &&
5283 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005284 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005285 break;
5286 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005287
Owen Andersone50ed302009-08-10 22:56:29 +00005288 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005289 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005290 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005291 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005292 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005293 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005294
Dan Gohman3dd168d2008-09-05 01:58:21 +00005295 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005296 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005297 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005298 if (Res.getNode() != N) {
5299 if (!LegalOperations ||
5300 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5301 return Res;
5302
5303 // Folding it resulted in an illegal node, and it's too late to
5304 // do that. Clean up the old node and forego the transformation.
5305 // Ideally this won't happen very often, because instcombine
5306 // and the earlier dagcombine runs (where illegal nodes are
5307 // permitted) should have folded most of them already.
5308 DAG.DeleteNode(Res.getNode());
5309 }
Chris Lattner94683772005-12-23 05:30:37 +00005310 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005311
Bill Wendling67a67682009-01-30 22:44:24 +00005312 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005313 if (N0.getOpcode() == ISD::BITCAST)
5314 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005315 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005316
Chris Lattner57104102005-12-23 05:44:41 +00005317 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005318 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005319 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005320 // Do not change the width of a volatile load.
5321 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005322 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005323 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman6448d912008-09-04 15:39:15 +00005324 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005325 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005326 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005327
Evan Cheng59d5b682007-05-07 21:27:48 +00005328 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005329 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005330 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005331 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005332 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005333 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005334 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005335 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005336 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005337 Load.getValue(1));
5338 return Load;
5339 }
Chris Lattner57104102005-12-23 05:44:41 +00005340 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005341
Bill Wendling67a67682009-01-30 22:44:24 +00005342 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5343 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005344 // This often reduces constant pool loads.
5345 if ((N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FABS) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005346 N0.getNode()->hasOneUse() && VT.isInteger() && !VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005347 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005348 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005349 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005350
Duncan Sands83ec4b62008-06-06 12:08:01 +00005351 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005352 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005353 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5354 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005355 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005356 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5357 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005358 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005359
Bill Wendling67a67682009-01-30 22:44:24 +00005360 // fold (bitconvert (fcopysign cst, x)) ->
5361 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5362 // Note that we don't handle (copysign x, cst) because this can always be
5363 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005364 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005365 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005366 VT.isInteger() && !VT.isVector()) {
5367 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005368 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005369 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005370 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005371 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005372 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005373
Duncan Sands25cf2272008-11-24 14:53:14 +00005374 // If X has a different width than the result/lhs, sext it or truncate it.
5375 unsigned VTWidth = VT.getSizeInBits();
5376 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005377 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005378 AddToWorkList(X.getNode());
5379 } else if (OrigXWidth > VTWidth) {
5380 // To get the sign bit in the right place, we have to shift it right
5381 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005382 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005383 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005384 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5385 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005386 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005387 AddToWorkList(X.getNode());
5388 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005389
Duncan Sands25cf2272008-11-24 14:53:14 +00005390 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005391 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005392 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005393 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005394
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005395 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005396 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005397 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005398 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005399 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005400
Bill Wendling67a67682009-01-30 22:44:24 +00005401 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005402 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005403 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005404
Scott Michelfdc40a02009-02-17 22:15:04 +00005405 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005406 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005407 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5408 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005409 return CombineLD;
5410 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005411
Dan Gohman475871a2008-07-27 21:46:04 +00005412 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005413}
5414
Dan Gohman475871a2008-07-27 21:46:04 +00005415SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005416 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005417 return CombineConsecutiveLoads(N, VT);
5418}
5419
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005420/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005421/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005422/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005423SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005424ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005425 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005426
Chris Lattner6258fb22006-04-02 02:53:43 +00005427 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005428 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005429
Duncan Sands83ec4b62008-06-06 12:08:01 +00005430 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5431 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005432
Chris Lattner6258fb22006-04-02 02:53:43 +00005433 // If this is a conversion of N elements of one type to N elements of another
5434 // type, convert each element. This handles FP<->INT cases.
5435 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005436 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5437 BV->getValueType(0).getVectorNumElements());
5438
5439 // Due to the FP element handling below calling this routine recursively,
5440 // we can end up with a scalar-to-vector node here.
5441 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005442 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5443 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005444 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005445
Dan Gohman475871a2008-07-27 21:46:04 +00005446 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005447 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005448 SDValue Op = BV->getOperand(i);
5449 // If the vector element type is not legal, the BUILD_VECTOR operands
5450 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005451 if (Op.getValueType() != SrcEltVT)
5452 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005453 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005454 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005455 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005456 }
Evan Chenga87008d2009-02-25 22:49:59 +00005457 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5458 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005459 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005460
Chris Lattner6258fb22006-04-02 02:53:43 +00005461 // Otherwise, we're growing or shrinking the elements. To avoid having to
5462 // handle annoying details of growing/shrinking FP values, we convert them to
5463 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005464 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005465 // Convert the input float vector to a int vector where the elements are the
5466 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005467 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005468 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005469 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005470 SrcEltVT = IntVT;
5471 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005472
Chris Lattner6258fb22006-04-02 02:53:43 +00005473 // Now we know the input is an integer vector. If the output is a FP type,
5474 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005475 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005476 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005477 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005478 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005479
Chris Lattner6258fb22006-04-02 02:53:43 +00005480 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005481 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005482 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005483
Chris Lattner6258fb22006-04-02 02:53:43 +00005484 // Okay, we know the src/dst types are both integers of differing types.
5485 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005486 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005487 if (SrcBitSize < DstBitSize) {
5488 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005489
Dan Gohman475871a2008-07-27 21:46:04 +00005490 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005491 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005492 i += NumInputsPerOutput) {
5493 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005494 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005495 bool EltIsUndef = true;
5496 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5497 // Shift the previously computed bits over.
5498 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005499 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005500 if (Op.getOpcode() == ISD::UNDEF) continue;
5501 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005502
Jay Foad40f8f622010-12-07 08:25:19 +00005503 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005504 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005505 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005506
Chris Lattner6258fb22006-04-02 02:53:43 +00005507 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005508 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005509 else
5510 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5511 }
5512
Owen Anderson23b9b192009-08-12 00:36:31 +00005513 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005514 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5515 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005516 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005517
Chris Lattner6258fb22006-04-02 02:53:43 +00005518 // Finally, this must be the case where we are shrinking elements: each input
5519 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005520 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005521 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005522 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5523 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005524 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005525
Dan Gohman7f321562007-06-25 16:23:39 +00005526 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005527 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5528 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005529 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005530 continue;
5531 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005532
Jay Foad40f8f622010-12-07 08:25:19 +00005533 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5534 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005535
Chris Lattner6258fb22006-04-02 02:53:43 +00005536 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005537 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005538 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005539 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005540 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005541 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5542 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005543 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005544 }
5545
5546 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005547 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005548 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5549 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005550
Evan Chenga87008d2009-02-25 22:49:59 +00005551 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5552 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005553}
5554
Dan Gohman475871a2008-07-27 21:46:04 +00005555SDValue DAGCombiner::visitFADD(SDNode *N) {
5556 SDValue N0 = N->getOperand(0);
5557 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005558 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5559 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005560 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005561
Dan Gohman7f321562007-06-25 16:23:39 +00005562 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005563 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005564 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005565 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005566 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005567
Bill Wendlingb0162f52009-01-30 22:53:48 +00005568 // fold (fadd c1, c2) -> (fadd c1, c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005569 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005570 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005571 // canonicalize constant to RHS
5572 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005573 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5574 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005575 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5576 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005577 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005578 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005579 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5580 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005581 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005582 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005583 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005584 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5585 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005586 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005587 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005588
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005589 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005590 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5591 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5592 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005593 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005594 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5595 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005596
Dan Gohman475871a2008-07-27 21:46:04 +00005597 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005598}
5599
Dan Gohman475871a2008-07-27 21:46:04 +00005600SDValue DAGCombiner::visitFSUB(SDNode *N) {
5601 SDValue N0 = N->getOperand(0);
5602 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005603 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5604 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005605 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005606
Dan Gohman7f321562007-06-25 16:23:39 +00005607 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005608 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005609 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005610 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005611 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005612
Nate Begemana0e221d2005-10-18 00:28:13 +00005613 // fold (fsub c1, c2) -> c1-c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005614 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005615 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005616 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005617 if (DAG.getTarget().Options.UnsafeFPMath &&
5618 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005619 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005620 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005621 if (DAG.getTarget().Options.UnsafeFPMath &&
5622 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005623 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005624 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005625 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005626 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005627 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005628 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005629 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005630 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005631 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005632
Bill Wendling5a894342012-03-15 05:12:00 +00005633 // If 'unsafe math' is enabled, fold
5634 // (fsub x, (fadd x, y)) -> (fneg y) &
5635 // (fsub x, (fadd y, x)) -> (fneg y)
5636 if (DAG.getTarget().Options.UnsafeFPMath) {
5637 if (N1.getOpcode() == ISD::FADD) {
5638 SDValue N10 = N1->getOperand(0);
5639 SDValue N11 = N1->getOperand(1);
5640
5641 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
5642 &DAG.getTarget().Options))
5643 return GetNegatedExpression(N11, DAG, LegalOperations);
5644 else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
5645 &DAG.getTarget().Options))
5646 return GetNegatedExpression(N10, DAG, LegalOperations);
5647 }
5648 }
5649
Dan Gohman475871a2008-07-27 21:46:04 +00005650 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005651}
5652
Dan Gohman475871a2008-07-27 21:46:04 +00005653SDValue DAGCombiner::visitFMUL(SDNode *N) {
5654 SDValue N0 = N->getOperand(0);
5655 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005656 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5657 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005658 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005659 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005660
Dan Gohman7f321562007-06-25 16:23:39 +00005661 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005662 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005663 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005664 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005665 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005666
Nate Begeman11af4ea2005-10-17 20:40:11 +00005667 // fold (fmul c1, c2) -> c1*c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005668 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005669 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005670 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00005671 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005672 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5673 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005674 if (DAG.getTarget().Options.UnsafeFPMath &&
5675 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005676 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00005677 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005678 if (DAG.getTarget().Options.UnsafeFPMath &&
5679 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00005680 return N1;
Nate Begeman11af4ea2005-10-17 20:40:11 +00005681 // fold (fmul X, 2.0) -> (fadd X, X)
5682 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005683 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00005684 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00005685 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00005686 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005687 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005688
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005689 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005690 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005691 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005692 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005693 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005694 // Both can be negated for free, check to see if at least one is cheaper
5695 // negated.
5696 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005697 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005698 GetNegatedExpression(N0, DAG, LegalOperations),
5699 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005700 }
5701 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005702
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005703 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005704 if (DAG.getTarget().Options.UnsafeFPMath &&
5705 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005706 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005707 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00005708 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00005709 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005710
Dan Gohman475871a2008-07-27 21:46:04 +00005711 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005712}
5713
Dan Gohman475871a2008-07-27 21:46:04 +00005714SDValue DAGCombiner::visitFDIV(SDNode *N) {
5715 SDValue N0 = N->getOperand(0);
5716 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005717 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5718 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005719 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005720 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005721
Dan Gohman7f321562007-06-25 16:23:39 +00005722 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005723 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005724 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005725 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005726 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005727
Nate Begemana148d982006-01-18 22:35:16 +00005728 // fold (fdiv c1, c2) -> c1/c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005729 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005730 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005731
5732
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005733 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005734 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005735 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005736 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005737 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005738 // Both can be negated for free, check to see if at least one is cheaper
5739 // negated.
5740 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00005741 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005742 GetNegatedExpression(N0, DAG, LegalOperations),
5743 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005744 }
5745 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005746
Dan Gohman475871a2008-07-27 21:46:04 +00005747 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005748}
5749
Dan Gohman475871a2008-07-27 21:46:04 +00005750SDValue DAGCombiner::visitFREM(SDNode *N) {
5751 SDValue N0 = N->getOperand(0);
5752 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005753 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5754 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005755 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00005756
Nate Begemana148d982006-01-18 22:35:16 +00005757 // fold (frem c1, c2) -> fmod(c1,c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005758 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005759 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00005760
Dan Gohman475871a2008-07-27 21:46:04 +00005761 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005762}
5763
Dan Gohman475871a2008-07-27 21:46:04 +00005764SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
5765 SDValue N0 = N->getOperand(0);
5766 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00005767 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5768 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005769 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00005770
Owen Anderson825b72b2009-08-11 20:47:22 +00005771 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005772 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005773
Chris Lattner12d83032006-03-05 05:30:57 +00005774 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00005775 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00005776 // copysign(x, c1) -> fabs(x) iff ispos(c1)
5777 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00005778 if (!V.isNegative()) {
5779 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005780 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00005781 } else {
5782 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005783 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00005784 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00005785 }
Chris Lattner12d83032006-03-05 05:30:57 +00005786 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005787
Chris Lattner12d83032006-03-05 05:30:57 +00005788 // copysign(fabs(x), y) -> copysign(x, y)
5789 // copysign(fneg(x), y) -> copysign(x, y)
5790 // copysign(copysign(x,z), y) -> copysign(x, y)
5791 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
5792 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005793 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5794 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00005795
5796 // copysign(x, abs(y)) -> abs(x)
5797 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005798 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005799
Chris Lattner12d83032006-03-05 05:30:57 +00005800 // copysign(x, copysign(y,z)) -> copysign(x, z)
5801 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005802 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5803 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005804
Chris Lattner12d83032006-03-05 05:30:57 +00005805 // copysign(x, fp_extend(y)) -> copysign(x, y)
5806 // copysign(x, fp_round(y)) -> copysign(x, y)
5807 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005808 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5809 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00005810
Dan Gohman475871a2008-07-27 21:46:04 +00005811 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00005812}
5813
Dan Gohman475871a2008-07-27 21:46:04 +00005814SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
5815 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005816 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005817 EVT VT = N->getValueType(0);
5818 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00005819
Nate Begeman1d4d4142005-09-01 00:19:25 +00005820 // fold (sint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005821 if (N0C && OpVT != MVT::ppcf128 &&
5822 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005823 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005824 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005825 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005826
Chris Lattnercda88752008-06-26 00:16:49 +00005827 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
5828 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005829 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
5830 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005831 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005832 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005833 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005834 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005835
Dan Gohman475871a2008-07-27 21:46:04 +00005836 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005837}
5838
Dan Gohman475871a2008-07-27 21:46:04 +00005839SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
5840 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005841 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005842 EVT VT = N->getValueType(0);
5843 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00005844
Nate Begeman1d4d4142005-09-01 00:19:25 +00005845 // fold (uint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005846 if (N0C && OpVT != MVT::ppcf128 &&
5847 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005848 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005849 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005850 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005851
Chris Lattnercda88752008-06-26 00:16:49 +00005852 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
5853 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005854 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
5855 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005856 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005857 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005858 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005859 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005860
Dan Gohman475871a2008-07-27 21:46:04 +00005861 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005862}
5863
Dan Gohman475871a2008-07-27 21:46:04 +00005864SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
5865 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005866 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005867 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005868
Nate Begeman1d4d4142005-09-01 00:19:25 +00005869 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00005870 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005871 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
5872
Dan Gohman475871a2008-07-27 21:46:04 +00005873 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005874}
5875
Dan Gohman475871a2008-07-27 21:46:04 +00005876SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
5877 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005878 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005879 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005880
Nate Begeman1d4d4142005-09-01 00:19:25 +00005881 // fold (fp_to_uint c1fp) -> c1
Owen Anderson825b72b2009-08-11 20:47:22 +00005882 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005883 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
5884
Dan Gohman475871a2008-07-27 21:46:04 +00005885 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005886}
5887
Dan Gohman475871a2008-07-27 21:46:04 +00005888SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
5889 SDValue N0 = N->getOperand(0);
5890 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005891 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005892 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005893
Nate Begeman1d4d4142005-09-01 00:19:25 +00005894 // fold (fp_round c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00005895 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005896 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005897
Chris Lattner79dbea52006-03-13 06:26:26 +00005898 // fold (fp_round (fp_extend x)) -> x
5899 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
5900 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005901
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005902 // fold (fp_round (fp_round x)) -> (fp_round x)
5903 if (N0.getOpcode() == ISD::FP_ROUND) {
5904 // This is a value preserving truncation if both round's are.
5905 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005906 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00005907 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005908 DAG.getIntPtrConstant(IsTrunc));
5909 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005910
Chris Lattner79dbea52006-03-13 06:26:26 +00005911 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00005912 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00005913 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
5914 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00005915 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00005916 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5917 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00005918 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005919
Dan Gohman475871a2008-07-27 21:46:04 +00005920 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005921}
5922
Dan Gohman475871a2008-07-27 21:46:04 +00005923SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
5924 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005925 EVT VT = N->getValueType(0);
5926 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00005927 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005928
Nate Begeman1d4d4142005-09-01 00:19:25 +00005929 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00005930 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005931 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00005932 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005933 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005934
Dan Gohman475871a2008-07-27 21:46:04 +00005935 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005936}
5937
Dan Gohman475871a2008-07-27 21:46:04 +00005938SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
5939 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005940 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005941 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005942
Chris Lattner5938bef2007-12-29 06:55:23 +00005943 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00005944 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00005945 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00005946 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00005947
Nate Begeman1d4d4142005-09-01 00:19:25 +00005948 // fold (fp_extend c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00005949 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005950 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00005951
5952 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
5953 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00005954 if (N0.getOpcode() == ISD::FP_ROUND
5955 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00005956 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00005957 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005958 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005959 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
5960 In, N0.getOperand(1));
5961 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00005962 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005963
Chris Lattner0bd48932008-01-17 07:00:52 +00005964 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00005965 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005966 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005967 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005968 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005969 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00005970 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005971 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00005972 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00005973 LN0->isVolatile(), LN0->isNonTemporal(),
5974 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00005975 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00005976 CombineTo(N0.getNode(),
5977 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
5978 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00005979 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005980 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00005981 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005982
Dan Gohman475871a2008-07-27 21:46:04 +00005983 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005984}
5985
Dan Gohman475871a2008-07-27 21:46:04 +00005986SDValue DAGCombiner::visitFNEG(SDNode *N) {
5987 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00005988 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00005989
Owen Andersonafd3d562012-03-06 00:29:31 +00005990 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
5991 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005992 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00005993
Chris Lattner3bd39d42008-01-27 17:42:27 +00005994 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
5995 // constant pool values.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005996 if (N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00005997 !VT.isVector() &&
5998 N0.getNode()->hasOneUse() &&
5999 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006000 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006001 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006002 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006003 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
6004 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006005 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006006 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006007 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006008 }
6009 }
Scott Michelfdc40a02009-02-17 22:15:04 +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::visitFABS(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
Nate Begeman1d4d4142005-09-01 00:19:25 +00006019 // fold (fabs c1) -> fabs(c1)
Owen Anderson825b72b2009-08-11 20:47:22 +00006020 if (N0CFP && VT != MVT::ppcf128)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006021 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006022 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006023 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006024 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006025 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006026 // fold (fabs (fcopysign x, y)) -> (fabs x)
6027 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006028 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006029
Chris Lattner3bd39d42008-01-27 17:42:27 +00006030 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6031 // constant pool values.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006032 if (N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006033 N0.getOperand(0).getValueType().isInteger() &&
6034 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006035 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006036 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006037 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006038 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006039 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006040 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006041 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006042 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006043 }
6044 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006045
Dan Gohman475871a2008-07-27 21:46:04 +00006046 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006047}
6048
Dan Gohman475871a2008-07-27 21:46:04 +00006049SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6050 SDValue Chain = N->getOperand(0);
6051 SDValue N1 = N->getOperand(1);
6052 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006053
Dan Gohmane0f06c72009-11-17 00:47:23 +00006054 // If N is a constant we could fold this into a fallthrough or unconditional
6055 // branch. However that doesn't happen very often in normal code, because
6056 // Instcombine/SimplifyCFG should have handled the available opportunities.
6057 // If we did this folding here, it would be necessary to update the
6058 // MachineBasicBlock CFG, which is awkward.
6059
Nate Begeman750ac1b2006-02-01 07:19:44 +00006060 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6061 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006062 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006063 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
6064 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006065 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006066 N1.getOperand(0), N1.getOperand(1), N2);
6067 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006068
Evan Cheng2a135ae2010-10-04 22:41:01 +00006069 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6070 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6071 (N1.getOperand(0).hasOneUse() &&
6072 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6073 SDNode *Trunc = 0;
6074 if (N1.getOpcode() == ISD::TRUNCATE) {
6075 // Look pass the truncate.
6076 Trunc = N1.getNode();
6077 N1 = N1.getOperand(0);
6078 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006079
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006080 // Match this pattern so that we can generate simpler code:
6081 //
6082 // %a = ...
6083 // %b = and i32 %a, 2
6084 // %c = srl i32 %b, 1
6085 // brcond i32 %c ...
6086 //
6087 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006088 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006089 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006090 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006091 // %c = setcc eq %b, 0
6092 // brcond %c ...
6093 //
6094 // This applies only when the AND constant value has one bit set and the
6095 // SRL constant is equal to the log2 of the AND constant. The back-end is
6096 // smart enough to convert the result into a TEST/JMP sequence.
6097 SDValue Op0 = N1.getOperand(0);
6098 SDValue Op1 = N1.getOperand(1);
6099
6100 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006101 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006102 SDValue AndOp1 = Op0.getOperand(1);
6103
6104 if (AndOp1.getOpcode() == ISD::Constant) {
6105 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6106
6107 if (AndConst.isPowerOf2() &&
6108 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6109 SDValue SetCC =
6110 DAG.getSetCC(N->getDebugLoc(),
6111 TLI.getSetCCResultType(Op0.getValueType()),
6112 Op0, DAG.getConstant(0, Op0.getValueType()),
6113 ISD::SETNE);
6114
Evan Chengd40d03e2010-01-06 19:38:29 +00006115 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6116 MVT::Other, Chain, SetCC, N2);
6117 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6118 // will convert it back to (X & C1) >> C2.
6119 CombineTo(N, NewBRCond, false);
6120 // Truncate is dead.
6121 if (Trunc) {
6122 removeFromWorkList(Trunc);
6123 DAG.DeleteNode(Trunc);
6124 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006125 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006126 WorkListRemover DeadNodes(*this);
6127 DAG.ReplaceAllUsesOfValueWith(N1, SetCC, &DeadNodes);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006128 removeFromWorkList(N1.getNode());
6129 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006130 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006131 }
6132 }
6133 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006134
6135 if (Trunc)
6136 // Restore N1 if the above transformation doesn't match.
6137 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006138 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006139
Evan Cheng2c755ba2010-02-27 07:36:59 +00006140 // Transform br(xor(x, y)) -> br(x != y)
6141 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6142 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6143 SDNode *TheXor = N1.getNode();
6144 SDValue Op0 = TheXor->getOperand(0);
6145 SDValue Op1 = TheXor->getOperand(1);
6146 if (Op0.getOpcode() == Op1.getOpcode()) {
6147 // Avoid missing important xor optimizations.
6148 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00006149 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006150 DEBUG(dbgs() << "\nReplacing.8 ";
6151 TheXor->dump(&DAG);
6152 dbgs() << "\nWith: ";
6153 Tmp.getNode()->dump(&DAG);
6154 dbgs() << '\n');
6155 WorkListRemover DeadNodes(*this);
6156 DAG.ReplaceAllUsesOfValueWith(N1, Tmp, &DeadNodes);
6157 removeFromWorkList(TheXor);
6158 DAG.DeleteNode(TheXor);
6159 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6160 MVT::Other, Chain, Tmp, N2);
6161 }
6162 }
6163
6164 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6165 bool Equal = false;
6166 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6167 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6168 Op0.getOpcode() == ISD::XOR) {
6169 TheXor = Op0.getNode();
6170 Equal = true;
6171 }
6172
Evan Cheng2a135ae2010-10-04 22:41:01 +00006173 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006174 if (LegalTypes)
6175 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6176 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6177 SetCCVT,
6178 Op0, Op1,
6179 Equal ? ISD::SETEQ : ISD::SETNE);
6180 // Replace the uses of XOR with SETCC
6181 WorkListRemover DeadNodes(*this);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006182 DAG.ReplaceAllUsesOfValueWith(N1, SetCC, &DeadNodes);
6183 removeFromWorkList(N1.getNode());
6184 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006185 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6186 MVT::Other, Chain, SetCC, N2);
6187 }
6188 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006189
Dan Gohman475871a2008-07-27 21:46:04 +00006190 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006191}
6192
Chris Lattner3ea0b472005-10-05 06:47:48 +00006193// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6194//
Dan Gohman475871a2008-07-27 21:46:04 +00006195SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006196 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006197 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006198
Dan Gohmane0f06c72009-11-17 00:47:23 +00006199 // If N is a constant we could fold this into a fallthrough or unconditional
6200 // branch. However that doesn't happen very often in normal code, because
6201 // Instcombine/SimplifyCFG should have handled the available opportunities.
6202 // If we did this folding here, it would be necessary to update the
6203 // MachineBasicBlock CFG, which is awkward.
6204
Duncan Sands8eab8a22008-06-09 11:32:28 +00006205 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006206 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006207 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6208 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006209 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006210
Nate Begemane17daeb2005-10-05 21:43:42 +00006211 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006212 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006213 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006214 N->getOperand(0), Simp.getOperand(2),
6215 Simp.getOperand(0), Simp.getOperand(1),
6216 N->getOperand(4));
6217
Dan Gohman475871a2008-07-27 21:46:04 +00006218 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006219}
6220
Evan Chengc4b527a2012-01-13 01:37:24 +00006221/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6222/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00006223/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00006224static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6225 SelectionDAG &DAG,
6226 const TargetLowering &TLI) {
6227 EVT VT;
6228 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6229 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6230 return false;
6231 VT = Use->getValueType(0);
6232 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6233 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6234 return false;
6235 VT = ST->getValue().getValueType();
6236 } else
6237 return false;
6238
6239 TargetLowering::AddrMode AM;
6240 if (N->getOpcode() == ISD::ADD) {
6241 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6242 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006243 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006244 AM.BaseOffs = Offset->getSExtValue();
6245 else
Evan Cheng03be3622012-03-06 23:33:32 +00006246 // [reg +/- reg]
6247 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006248 } else if (N->getOpcode() == ISD::SUB) {
6249 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6250 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006251 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006252 AM.BaseOffs = -Offset->getSExtValue();
6253 else
Evan Cheng03be3622012-03-06 23:33:32 +00006254 // [reg +/- reg]
6255 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006256 } else
6257 return false;
6258
6259 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6260}
6261
Duncan Sandsec87aa82008-06-15 20:12:31 +00006262/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6263/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006264/// and it has other uses besides the load / store. After the
6265/// transformation, the new indexed load / store has effectively folded
6266/// the add / subtract in and all of its other uses are redirected to the
6267/// new load / store.
6268bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006269 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006270 return false;
6271
6272 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006273 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006274 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006275 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006276 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006277 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006278 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006279 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006280 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6281 return false;
6282 Ptr = LD->getBasePtr();
6283 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006284 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006285 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006286 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006287 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6288 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6289 return false;
6290 Ptr = ST->getBasePtr();
6291 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006292 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006293 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006294 }
Chris Lattner448f2192006-11-11 00:39:41 +00006295
Chris Lattner9f1794e2006-11-11 00:56:29 +00006296 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6297 // out. There is no reason to make this a preinc/predec.
6298 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006299 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006300 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006301
Chris Lattner9f1794e2006-11-11 00:56:29 +00006302 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006303 SDValue BasePtr;
6304 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006305 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6306 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6307 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006308 // Don't create a indexed load / store with zero offset.
6309 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006310 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006311 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006312
Chris Lattner41e53fd2006-11-11 01:00:15 +00006313 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006314 // 1) The new base ptr is a frame index.
6315 // 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 +00006316 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006317 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006318 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006319 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006320
Chris Lattner41e53fd2006-11-11 01:00:15 +00006321 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6322 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006323 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006324 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006325
Chris Lattner41e53fd2006-11-11 01:00:15 +00006326 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006327 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006328 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006329 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006330 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006331 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006332
Evan Chengc843abe2007-05-24 02:35:39 +00006333 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006334 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006335
6336 // Caches for hasPredecessorHelper
6337 SmallPtrSet<const SDNode *, 32> Visited;
6338 SmallVector<const SDNode *, 16> Worklist;
6339
Gabor Greifba36cb52008-08-28 21:40:38 +00006340 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6341 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006342 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006343 if (Use == N)
6344 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006345 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006346 return false;
6347
Evan Chengc4b527a2012-01-13 01:37:24 +00006348 // If Ptr may be folded in addressing mode of other use, then it's
6349 // not profitable to do this transformation.
6350 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006351 RealUse = true;
6352 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006353
Chris Lattner9f1794e2006-11-11 00:56:29 +00006354 if (!RealUse)
6355 return false;
6356
Dan Gohman475871a2008-07-27 21:46:04 +00006357 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006358 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006359 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6360 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006361 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006362 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6363 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006364 ++PreIndexedNodes;
6365 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006366 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006367 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006368 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006369 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006370 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006371 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006372 if (isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006373 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006374 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006375 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006376 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006377 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006378 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006379 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006380 }
6381
Chris Lattner9f1794e2006-11-11 00:56:29 +00006382 // Finally, since the node is now dead, remove it from the graph.
6383 DAG.DeleteNode(N);
6384
6385 // Replace the uses of Ptr with uses of the updated base value.
6386 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006387 &DeadNodes);
Gabor Greifba36cb52008-08-28 21:40:38 +00006388 removeFromWorkList(Ptr.getNode());
6389 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006390
6391 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006392}
6393
Duncan Sandsec87aa82008-06-15 20:12:31 +00006394/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006395/// add / sub of the base pointer node into a post-indexed load / store.
6396/// The transformation folded the add / subtract into the new indexed
6397/// load / store effectively and all of its uses are redirected to the
6398/// new load / store.
6399bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006400 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006401 return false;
6402
6403 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006404 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006405 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006406 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006407 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006408 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006409 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006410 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6411 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6412 return false;
6413 Ptr = LD->getBasePtr();
6414 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006415 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006416 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006417 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006418 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6419 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6420 return false;
6421 Ptr = ST->getBasePtr();
6422 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006423 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006424 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006425 }
Chris Lattner448f2192006-11-11 00:39:41 +00006426
Gabor Greifba36cb52008-08-28 21:40:38 +00006427 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006428 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006429
Gabor Greifba36cb52008-08-28 21:40:38 +00006430 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6431 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006432 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006433 if (Op == N ||
6434 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6435 continue;
6436
Dan Gohman475871a2008-07-27 21:46:04 +00006437 SDValue BasePtr;
6438 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006439 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6440 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00006441 // Don't create a indexed load / store with zero offset.
6442 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006443 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006444 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006445
Chris Lattner9f1794e2006-11-11 00:56:29 +00006446 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00006447 // 1) All uses are load / store ops that use it as base ptr (and
6448 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00006449 // 2) Op must be independent of N, i.e. Op is neither a predecessor
6450 // nor a successor of N. Otherwise, if Op is folded that would
6451 // create a cycle.
6452
Evan Chengcaab1292009-05-06 18:25:01 +00006453 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6454 continue;
6455
Chris Lattner9f1794e2006-11-11 00:56:29 +00006456 // Check for #1.
6457 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006458 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6459 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00006460 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00006461 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00006462 continue;
6463
Chris Lattner9f1794e2006-11-11 00:56:29 +00006464 // If all the uses are load / store addresses, then don't do the
6465 // transformation.
6466 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6467 bool RealUse = false;
6468 for (SDNode::use_iterator III = Use->use_begin(),
6469 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00006470 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00006471 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006472 RealUse = true;
6473 }
Chris Lattner448f2192006-11-11 00:39:41 +00006474
Chris Lattner9f1794e2006-11-11 00:56:29 +00006475 if (!RealUse) {
6476 TryNext = true;
6477 break;
Chris Lattner448f2192006-11-11 00:39:41 +00006478 }
6479 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006480 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006481
Chris Lattner9f1794e2006-11-11 00:56:29 +00006482 if (TryNext)
6483 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006484
Chris Lattner9f1794e2006-11-11 00:56:29 +00006485 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00006486 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006487 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00006488 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6489 BasePtr, Offset, AM)
6490 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6491 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006492 ++PostIndexedNodes;
6493 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006494 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006495 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006496 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006497 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006498 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006499 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006500 if (isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006501 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006502 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006503 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006504 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006505 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006506 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006507 &DeadNodes);
Chris Lattner448f2192006-11-11 00:39:41 +00006508 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006509
Chris Lattner9f1794e2006-11-11 00:56:29 +00006510 // Finally, since the node is now dead, remove it from the graph.
6511 DAG.DeleteNode(N);
6512
6513 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00006514 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Chris Lattner9f1794e2006-11-11 00:56:29 +00006515 Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006516 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006517 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006518 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006519 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006520 }
6521 }
6522 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006523
Chris Lattner448f2192006-11-11 00:39:41 +00006524 return false;
6525}
6526
Dan Gohman475871a2008-07-27 21:46:04 +00006527SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00006528 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006529 SDValue Chain = LD->getChain();
6530 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00006531
Evan Cheng45a7ca92007-05-01 00:38:21 +00006532 // If load is not volatile and there are no uses of the loaded value (and
6533 // the updated indexed value in case of indexed loads), change uses of the
6534 // chain value into uses of the chain input (i.e. delete the dead load).
6535 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006536 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00006537 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00006538 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00006539 // It's not safe to use the two value CombineTo variant here. e.g.
6540 // v1, chain2 = load chain1, loc
6541 // v2, chain3 = load chain2, loc
6542 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00006543 // Now we replace use of chain2 with chain1. This makes the second load
6544 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00006545 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006546 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006547 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006548 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006549 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006550 WorkListRemover DeadNodes(*this);
Dan Gohman475871a2008-07-27 21:46:04 +00006551 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain, &DeadNodes);
Bill Wendlingc0debad2009-01-30 23:27:35 +00006552
Chris Lattner125991a2008-01-24 07:57:06 +00006553 if (N->use_empty()) {
6554 removeFromWorkList(N);
6555 DAG.DeleteNode(N);
6556 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006557
Dan Gohman475871a2008-07-27 21:46:04 +00006558 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00006559 }
Evan Cheng498f5592007-05-01 08:53:39 +00006560 } else {
6561 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00006562 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00006563 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00006564 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00006565 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006566 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006567 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006568 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006569 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006570 WorkListRemover DeadNodes(*this);
Dan Gohman475871a2008-07-27 21:46:04 +00006571 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef, &DeadNodes);
6572 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Dale Johannesene8d72302009-02-06 23:05:02 +00006573 DAG.getUNDEF(N->getValueType(1)),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006574 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006575 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain, &DeadNodes);
Evan Cheng02c42852008-01-16 23:11:54 +00006576 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00006577 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006578 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00006579 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00006580 }
6581 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006582
Chris Lattner01a22022005-10-10 22:04:48 +00006583 // If this load is directly stored, replace the load value with the stored
6584 // value.
6585 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006586 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00006587 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00006588 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00006589 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
6590 if (PrevST->getBasePtr() == Ptr &&
6591 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006592 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00006593 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006594 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006595
Evan Cheng255f20f2010-04-01 06:04:33 +00006596 // Try to infer better alignment information than the load already has.
6597 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00006598 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
6599 if (Align > LD->getAlignment())
6600 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
6601 LD->getValueType(0),
6602 Chain, Ptr, LD->getPointerInfo(),
6603 LD->getMemoryVT(),
6604 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00006605 }
6606 }
6607
Jim Laskey7ca56af2006-10-11 13:47:09 +00006608 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00006609 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00006610 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00006611
Jim Laskey6ff23e52006-10-04 16:53:27 +00006612 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00006613 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00006614 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006615
Jim Laskey279f0532006-09-25 16:29:54 +00006616 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006617 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00006618 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00006619 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00006620 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006621 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006622 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00006623 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
6624 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00006625 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006626 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00006627 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006628 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00006629 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006630 }
Jim Laskey279f0532006-09-25 16:29:54 +00006631
Jim Laskey6ff23e52006-10-04 16:53:27 +00006632 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00006633 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00006634 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006635
Nate Begemanb6aef5c2009-09-15 00:18:30 +00006636 // Make sure the new and old chains are cleaned up.
6637 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006638
Jim Laskey274062c2006-10-13 23:32:28 +00006639 // Replace uses with load result and token factor. Don't add users
6640 // to work list.
6641 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00006642 }
6643 }
6644
Evan Cheng7fc033a2006-11-03 03:06:21 +00006645 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00006646 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00006647 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00006648
Dan Gohman475871a2008-07-27 21:46:04 +00006649 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00006650}
6651
Chris Lattner2392ae72010-04-15 04:48:01 +00006652/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
6653/// load is having specific bytes cleared out. If so, return the byte size
6654/// being masked out and the shift amount.
6655static std::pair<unsigned, unsigned>
6656CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
6657 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006658
Chris Lattner2392ae72010-04-15 04:48:01 +00006659 // Check for the structure we're looking for.
6660 if (V->getOpcode() != ISD::AND ||
6661 !isa<ConstantSDNode>(V->getOperand(1)) ||
6662 !ISD::isNormalLoad(V->getOperand(0).getNode()))
6663 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006664
Chris Lattnere6987582010-04-15 06:10:49 +00006665 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00006666 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00006667 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006668
Chris Lattnere6987582010-04-15 06:10:49 +00006669 // The store should be chained directly to the load or be an operand of a
6670 // tokenfactor.
6671 if (LD == Chain.getNode())
6672 ; // ok.
6673 else if (Chain->getOpcode() != ISD::TokenFactor)
6674 return Result; // Fail.
6675 else {
6676 bool isOk = false;
6677 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
6678 if (Chain->getOperand(i).getNode() == LD) {
6679 isOk = true;
6680 break;
6681 }
6682 if (!isOk) return Result;
6683 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006684
Chris Lattner2392ae72010-04-15 04:48:01 +00006685 // This only handles simple types.
6686 if (V.getValueType() != MVT::i16 &&
6687 V.getValueType() != MVT::i32 &&
6688 V.getValueType() != MVT::i64)
6689 return Result;
6690
6691 // Check the constant mask. Invert it so that the bits being masked out are
6692 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
6693 // follow the sign bit for uniformity.
6694 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
6695 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
6696 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
6697 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
6698 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
6699 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006700
Chris Lattner2392ae72010-04-15 04:48:01 +00006701 // See if we have a continuous run of bits. If so, we have 0*1+0*
6702 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
6703 return Result;
6704
6705 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
6706 if (V.getValueType() != MVT::i64 && NotMaskLZ)
6707 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006708
Chris Lattner2392ae72010-04-15 04:48:01 +00006709 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
6710 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006711 case 1:
6712 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00006713 case 4: break;
6714 default: return Result; // All one mask, or 5-byte mask.
6715 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006716
Chris Lattner2392ae72010-04-15 04:48:01 +00006717 // Verify that the first bit starts at a multiple of mask so that the access
6718 // is aligned the same as the access width.
6719 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006720
Chris Lattner2392ae72010-04-15 04:48:01 +00006721 Result.first = MaskedBytes;
6722 Result.second = NotMaskTZ/8;
6723 return Result;
6724}
6725
6726
6727/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
6728/// provides a value as specified by MaskInfo. If so, replace the specified
6729/// store with a narrower store of truncated IVal.
6730static SDNode *
6731ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
6732 SDValue IVal, StoreSDNode *St,
6733 DAGCombiner *DC) {
6734 unsigned NumBytes = MaskInfo.first;
6735 unsigned ByteShift = MaskInfo.second;
6736 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006737
Chris Lattner2392ae72010-04-15 04:48:01 +00006738 // Check to see if IVal is all zeros in the part being masked in by the 'or'
6739 // that uses this. If not, this is not a replacement.
6740 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
6741 ByteShift*8, (ByteShift+NumBytes)*8);
6742 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006743
Chris Lattner2392ae72010-04-15 04:48:01 +00006744 // Check that it is legal on the target to do this. It is legal if the new
6745 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
6746 // legalization.
6747 MVT VT = MVT::getIntegerVT(NumBytes*8);
6748 if (!DC->isTypeLegal(VT))
6749 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006750
Chris Lattner2392ae72010-04-15 04:48:01 +00006751 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
6752 // shifted by ByteShift and truncated down to NumBytes.
6753 if (ByteShift)
6754 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00006755 DAG.getConstant(ByteShift*8,
6756 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00006757
6758 // Figure out the offset for the store and the alignment of the access.
6759 unsigned StOffset;
6760 unsigned NewAlign = St->getAlignment();
6761
6762 if (DAG.getTargetLoweringInfo().isLittleEndian())
6763 StOffset = ByteShift;
6764 else
6765 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006766
Chris Lattner2392ae72010-04-15 04:48:01 +00006767 SDValue Ptr = St->getBasePtr();
6768 if (StOffset) {
6769 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
6770 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
6771 NewAlign = MinAlign(NewAlign, StOffset);
6772 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006773
Chris Lattner2392ae72010-04-15 04:48:01 +00006774 // Truncate down to the new size.
6775 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006776
Chris Lattner2392ae72010-04-15 04:48:01 +00006777 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006778 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006779 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00006780 false, false, NewAlign).getNode();
6781}
6782
Evan Cheng8b944d32009-05-28 00:35:15 +00006783
6784/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
6785/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
6786/// of the loaded bits, try narrowing the load and store if it would end up
6787/// being a win for performance or code size.
6788SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
6789 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00006790 if (ST->isVolatile())
6791 return SDValue();
6792
Evan Cheng8b944d32009-05-28 00:35:15 +00006793 SDValue Chain = ST->getChain();
6794 SDValue Value = ST->getValue();
6795 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00006796 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00006797
6798 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00006799 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006800
6801 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006802
Chris Lattner2392ae72010-04-15 04:48:01 +00006803 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
6804 // is a byte mask indicating a consecutive number of bytes, check to see if
6805 // Y is known to provide just those bytes. If so, we try to replace the
6806 // load + replace + store sequence with a single (narrower) store, which makes
6807 // the load dead.
6808 if (Opc == ISD::OR) {
6809 std::pair<unsigned, unsigned> MaskedLoad;
6810 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
6811 if (MaskedLoad.first)
6812 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6813 Value.getOperand(1), ST,this))
6814 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006815
Chris Lattner2392ae72010-04-15 04:48:01 +00006816 // Or is commutative, so try swapping X and Y.
6817 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
6818 if (MaskedLoad.first)
6819 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6820 Value.getOperand(0), ST,this))
6821 return SDValue(NewST, 0);
6822 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006823
Evan Cheng8b944d32009-05-28 00:35:15 +00006824 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
6825 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00006826 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006827
6828 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00006829 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
6830 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00006831 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00006832 if (LD->getBasePtr() != Ptr ||
6833 LD->getPointerInfo().getAddrSpace() !=
6834 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00006835 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006836
6837 // Find the type to narrow it the load / op / store to.
6838 SDValue N1 = Value.getOperand(1);
6839 unsigned BitWidth = N1.getValueSizeInBits();
6840 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
6841 if (Opc == ISD::AND)
6842 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00006843 if (Imm == 0 || Imm.isAllOnesValue())
6844 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006845 unsigned ShAmt = Imm.countTrailingZeros();
6846 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
6847 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00006848 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006849 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00006850 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00006851 TLI.isNarrowingProfitable(VT, NewVT))) {
6852 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00006853 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006854 }
Evan Chengcdcecc02009-05-28 18:41:02 +00006855 if (NewBW >= BitWidth)
6856 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006857
6858 // If the lsb changed does not start at the type bitwidth boundary,
6859 // start at the previous one.
6860 if (ShAmt % NewBW)
6861 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
6862 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
6863 if ((Imm & Mask) == Imm) {
6864 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
6865 if (Opc == ISD::AND)
6866 NewImm ^= APInt::getAllOnesValue(NewBW);
6867 uint64_t PtrOff = ShAmt / 8;
6868 // For big endian targets, we need to adjust the offset to the pointer to
6869 // load the correct bytes.
6870 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00006871 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00006872
6873 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006874 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Chris Lattner2392ae72010-04-15 04:48:01 +00006875 if (NewAlign < TLI.getTargetData()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00006876 return SDValue();
6877
Evan Cheng8b944d32009-05-28 00:35:15 +00006878 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
6879 Ptr.getValueType(), Ptr,
6880 DAG.getConstant(PtrOff, Ptr.getValueType()));
6881 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
6882 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006883 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006884 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006885 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006886 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
6887 DAG.getConstant(NewImm, NewVT));
6888 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
6889 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006890 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006891 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006892
6893 AddToWorkList(NewPtr.getNode());
6894 AddToWorkList(NewLD.getNode());
6895 AddToWorkList(NewVal.getNode());
6896 WorkListRemover DeadNodes(*this);
6897 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1),
6898 &DeadNodes);
6899 ++OpsNarrowed;
6900 return NewST;
6901 }
6902 }
6903
Evan Chengcdcecc02009-05-28 18:41:02 +00006904 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006905}
6906
Evan Cheng31959b12011-02-02 01:06:55 +00006907/// TransformFPLoadStorePair - For a given floating point load / store pair,
6908/// if the load value isn't used by any other operations, then consider
6909/// transforming the pair to integer load / store operations if the target
6910/// deems the transformation profitable.
6911SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
6912 StoreSDNode *ST = cast<StoreSDNode>(N);
6913 SDValue Chain = ST->getChain();
6914 SDValue Value = ST->getValue();
6915 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
6916 Value.hasOneUse() &&
6917 Chain == SDValue(Value.getNode(), 1)) {
6918 LoadSDNode *LD = cast<LoadSDNode>(Value);
6919 EVT VT = LD->getMemoryVT();
6920 if (!VT.isFloatingPoint() ||
6921 VT != ST->getMemoryVT() ||
6922 LD->isNonTemporal() ||
6923 ST->isNonTemporal() ||
6924 LD->getPointerInfo().getAddrSpace() != 0 ||
6925 ST->getPointerInfo().getAddrSpace() != 0)
6926 return SDValue();
6927
6928 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
6929 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
6930 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
6931 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
6932 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
6933 return SDValue();
6934
6935 unsigned LDAlign = LD->getAlignment();
6936 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006937 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Evan Cheng31959b12011-02-02 01:06:55 +00006938 unsigned ABIAlign = TLI.getTargetData()->getABITypeAlignment(IntVTTy);
6939 if (LDAlign < ABIAlign || STAlign < ABIAlign)
6940 return SDValue();
6941
6942 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
6943 LD->getChain(), LD->getBasePtr(),
6944 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006945 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00006946
6947 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
6948 NewLD, ST->getBasePtr(),
6949 ST->getPointerInfo(),
6950 false, false, STAlign);
6951
6952 AddToWorkList(NewLD.getNode());
6953 AddToWorkList(NewST.getNode());
6954 WorkListRemover DeadNodes(*this);
6955 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1),
6956 &DeadNodes);
6957 ++LdStFP2Int;
6958 return NewST;
6959 }
6960
6961 return SDValue();
6962}
6963
Dan Gohman475871a2008-07-27 21:46:04 +00006964SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00006965 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006966 SDValue Chain = ST->getChain();
6967 SDValue Value = ST->getValue();
6968 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00006969
Evan Cheng59d5b682007-05-07 21:27:48 +00006970 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00006971 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006972 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00006973 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00006974 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00006975 EVT SVT = Value.getOperand(0).getValueType();
Dan Gohman1ba519b2009-02-20 23:29:13 +00006976 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00006977 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006978 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006979 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006980 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00006981 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00006982 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006983 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00006984 }
Owen Andersona34d9362011-04-14 17:30:49 +00006985
Chris Lattnerb3452ea2011-04-09 02:32:02 +00006986 // Turn 'store undef, Ptr' -> nothing.
6987 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
6988 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006989
Nate Begeman2cbba892006-12-11 02:23:46 +00006990 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00006991 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006992 // NOTE: If the original store is volatile, this transform must not increase
6993 // the number of stores. For example, on x86-32 an f64 can be stored in one
6994 // processor operation but an i64 (which is not legal) requires two. So the
6995 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00006996 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00006997 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00006998 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006999 default: llvm_unreachable("Unknown FP type");
Owen Anderson825b72b2009-08-11 20:47:22 +00007000 case MVT::f80: // We don't do this for these yet.
7001 case MVT::f128:
7002 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00007003 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007004 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00007005 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007006 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00007007 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00007008 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00007009 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007010 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007011 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00007012 }
7013 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007014 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00007015 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007016 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007017 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00007018 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00007019 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00007020 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007021 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007022 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007023 }
Owen Andersona34d9362011-04-14 17:30:49 +00007024
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007025 if (!ST->isVolatile() &&
7026 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00007027 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00007028 // argument passing. Since this is so common, custom legalize the
7029 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00007030 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007031 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
7032 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00007033 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00007034
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007035 unsigned Alignment = ST->getAlignment();
7036 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00007037 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007038
Bill Wendlingc144a572009-01-30 23:36:47 +00007039 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007040 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007041 isVolatile, isNonTemporal,
7042 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00007043 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00007044 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00007045 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00007046 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007047 Ptr, ST->getPointerInfo().getWithOffset(4),
7048 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00007049 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00007050 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00007051 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00007052 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007053
Chris Lattner62be1a72006-12-12 04:16:14 +00007054 break;
Evan Cheng25ece662006-12-11 17:25:19 +00007055 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007056 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007057 }
7058
Evan Cheng255f20f2010-04-01 06:04:33 +00007059 // Try to infer better alignment information than the store already has.
7060 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007061 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7062 if (Align > ST->getAlignment())
7063 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
7064 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
7065 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007066 }
7067 }
7068
Evan Cheng31959b12011-02-02 01:06:55 +00007069 // Try transforming a pair floating point load / store ops to integer
7070 // load / store ops.
7071 SDValue NewST = TransformFPLoadStorePair(N);
7072 if (NewST.getNode())
7073 return NewST;
7074
Scott Michelfdc40a02009-02-17 22:15:04 +00007075 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007076 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007077 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007078
Jim Laskey6ff23e52006-10-04 16:53:27 +00007079 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007080 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007081 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007082
7083 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007084 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007085 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007086 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007087 ST->getMemoryVT(), ST->isVolatile(),
7088 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007089 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00007090 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007091 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007092 ST->isVolatile(), ST->isNonTemporal(),
7093 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007094 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007095
Jim Laskey279f0532006-09-25 16:29:54 +00007096 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00007097 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007098 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00007099
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007100 // Make sure the new and old chains are cleaned up.
7101 AddToWorkList(Token.getNode());
7102
Jim Laskey274062c2006-10-13 23:32:28 +00007103 // Don't add users to work list.
7104 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007105 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00007106 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007107
Evan Cheng33dbedc2006-11-05 09:31:14 +00007108 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007109 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007110 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00007111
Chris Lattner3c872852007-12-29 06:26:16 +00007112 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00007113 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00007114 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00007115 // See if we can simplify the input to this truncstore with knowledge that
7116 // only the low bits are being used. For example:
7117 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00007118 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007119 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00007120 APInt::getLowBitsSet(
7121 Value.getValueType().getScalarType().getSizeInBits(),
7122 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00007123 AddToWorkList(Value.getNode());
7124 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00007125 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007126 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007127 ST->isVolatile(), ST->isNonTemporal(),
7128 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00007129
Chris Lattnere33544c2007-10-13 06:58:48 +00007130 // Otherwise, see if we can simplify the operation with
7131 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00007132 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00007133 APInt::getLowBitsSet(
7134 Value.getValueType().getScalarType().getSizeInBits(),
7135 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00007136 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00007137 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007138
Chris Lattner3c872852007-12-29 06:26:16 +00007139 // If this is a load followed by a store to the same location, then the store
7140 // is dead/noop.
7141 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007142 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007143 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00007144 // There can't be any side effects between the load and store, such as
7145 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00007146 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00007147 // The store is dead, remove it.
7148 return Chain;
7149 }
7150 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007151
Chris Lattnerddf89562008-01-17 19:59:44 +00007152 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
7153 // truncating store. We can do this even if this is already a truncstore.
7154 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00007155 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007156 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007157 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007158 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007159 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007160 ST->isVolatile(), ST->isNonTemporal(),
7161 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00007162 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007163
Evan Cheng8b944d32009-05-28 00:35:15 +00007164 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00007165}
7166
Dan Gohman475871a2008-07-27 21:46:04 +00007167SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
7168 SDValue InVec = N->getOperand(0);
7169 SDValue InVal = N->getOperand(1);
7170 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00007171 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00007172
Bob Wilson492fd452010-05-19 23:42:58 +00007173 // If the inserted element is an UNDEF, just use the input vector.
7174 if (InVal.getOpcode() == ISD::UNDEF)
7175 return InVec;
7176
Nadav Rotem609d54e2011-02-12 14:40:33 +00007177 EVT VT = InVec.getValueType();
7178
Owen Anderson95771af2011-02-25 21:41:48 +00007179 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00007180 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
7181 return SDValue();
7182
Eli Friedman9db817f2011-09-09 21:04:06 +00007183 // Check that we know which element is being inserted
7184 if (!isa<ConstantSDNode>(EltNo))
7185 return SDValue();
7186 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007187
Eli Friedman9db817f2011-09-09 21:04:06 +00007188 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
7189 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
7190 // vector elements.
7191 SmallVector<SDValue, 8> Ops;
7192 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
7193 Ops.append(InVec.getNode()->op_begin(),
7194 InVec.getNode()->op_end());
7195 } else if (InVec.getOpcode() == ISD::UNDEF) {
7196 unsigned NElts = VT.getVectorNumElements();
7197 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
7198 } else {
7199 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007200 }
Eli Friedman9db817f2011-09-09 21:04:06 +00007201
7202 // Insert the element
7203 if (Elt < Ops.size()) {
7204 // All the operands of BUILD_VECTOR must have the same type;
7205 // we enforce that here.
7206 EVT OpVT = Ops[0].getValueType();
7207 if (InVal.getValueType() != OpVT)
7208 InVal = OpVT.bitsGT(InVal.getValueType()) ?
7209 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
7210 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
7211 Ops[Elt] = InVal;
7212 }
7213
7214 // Return the new vector
7215 return DAG.getNode(ISD::BUILD_VECTOR, dl,
7216 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00007217}
7218
Dan Gohman475871a2008-07-27 21:46:04 +00007219SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007220 // (vextract (scalar_to_vector val, 0) -> val
7221 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00007222 EVT VT = InVec.getValueType();
7223 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007224
Duncan Sandsc356f332011-05-09 08:03:33 +00007225 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
7226 // Check if the result type doesn't match the inserted element type. A
7227 // SCALAR_TO_VECTOR may truncate the inserted element and the
7228 // EXTRACT_VECTOR_ELT may widen the extracted vector.
7229 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00007230 if (InOp.getValueType() != NVT) {
7231 assert(InOp.getValueType().isInteger() && NVT.isInteger());
7232 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
7233 }
7234 return InOp;
7235 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007236
Nadav Rotemba05c912012-01-17 21:44:01 +00007237 SDValue EltNo = N->getOperand(1);
7238 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
7239
7240 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
7241 // We only perform this optimization before the op legalization phase because
7242 // we may introduce new vector instructions which are not backed by TD patterns.
7243 // For example on AVX, extracting elements from a wide vector without using
7244 // extract_subvector.
7245 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
7246 && ConstEltNo && !LegalOperations) {
7247 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
7248 int NumElem = VT.getVectorNumElements();
7249 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
7250 // Find the new index to extract from.
7251 int OrigElt = SVOp->getMaskElt(Elt);
7252
7253 // Extracting an undef index is undef.
7254 if (OrigElt == -1)
7255 return DAG.getUNDEF(NVT);
7256
7257 // Select the right vector half to extract from.
7258 if (OrigElt < NumElem) {
7259 InVec = InVec->getOperand(0);
7260 } else {
7261 InVec = InVec->getOperand(1);
7262 OrigElt -= NumElem;
7263 }
7264
7265 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
7266 InVec, DAG.getConstant(OrigElt, MVT::i32));
7267 }
7268
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007269 // Perform only after legalization to ensure build_vector / vector_shuffle
7270 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00007271 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007272
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007273 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
7274 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
7275 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00007276
Nadav Rotemba05c912012-01-17 21:44:01 +00007277 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00007278 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00007279 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00007280 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00007281 EVT ExtVT = VT.getVectorElementType();
7282 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00007283
Evan Cheng84387ea2012-03-13 22:00:52 +00007284 // If the result of load has to be truncated, then it's not necessarily
7285 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00007286 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00007287 return SDValue();
7288
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007289 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007290 // Don't duplicate a load with other uses.
7291 if (!InVec.hasOneUse())
7292 return SDValue();
7293
Owen Andersone50ed302009-08-10 22:56:29 +00007294 EVT BCVT = InVec.getOperand(0).getValueType();
7295 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007296 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00007297 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
7298 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007299 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00007300 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007301 NewLoad = true;
7302 }
Evan Cheng513da432007-10-06 08:19:55 +00007303
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007304 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00007305 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00007306 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007307 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00007308 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00007309 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00007310 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007311 // Don't duplicate a load with other uses.
7312 if (!InVec.hasOneUse())
7313 return SDValue();
7314
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007315 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00007316 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007317 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
7318 // =>
7319 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00007320
Eli Friedmand6e25602011-12-26 22:49:32 +00007321 // Don't duplicate a load with other uses.
7322 if (!InVec.hasOneUse())
7323 return SDValue();
7324
Mon P Wanga60b5232008-12-11 00:26:16 +00007325 // If the bit convert changed the number of elements, it is unsafe
7326 // to examine the mask.
7327 if (BCNumEltsChanged)
7328 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00007329
7330 // Select the input vector, guarding against out of range extract vector.
7331 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00007332 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00007333 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
7334
Eli Friedmand6e25602011-12-26 22:49:32 +00007335 if (InVec.getOpcode() == ISD::BITCAST) {
7336 // Don't duplicate a load with other uses.
7337 if (!InVec.hasOneUse())
7338 return SDValue();
7339
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007340 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00007341 }
Gabor Greifba36cb52008-08-28 21:40:38 +00007342 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007343 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00007344 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00007345 }
7346 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007347
Eli Friedmand6e25602011-12-26 22:49:32 +00007348 // Make sure we found a non-volatile load and the extractelement is
7349 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00007350 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00007351 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007352
Eric Christopherd81f17a2010-11-03 20:44:42 +00007353 // If Idx was -1 above, Elt is going to be -1, so just return undef.
7354 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00007355 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00007356
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007357 unsigned Align = LN0->getAlignment();
7358 if (NewLoad) {
7359 // Check the resultant load doesn't need a higher alignment than the
7360 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00007361 unsigned NewAlign =
Eric Christopher503a64d2010-12-09 04:48:06 +00007362 TLI.getTargetData()
7363 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00007364
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007365 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007366 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00007367
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007368 Align = NewAlign;
7369 }
7370
Dan Gohman475871a2008-07-27 21:46:04 +00007371 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00007372 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007373
Eric Christopherd81f17a2010-11-03 20:44:42 +00007374 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00007375 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007376 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007377 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007378 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00007379 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007380 DAG.getConstant(PtrOff, PtrType));
7381 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007382
Eli Friedman4db4add2011-11-16 23:50:22 +00007383 // The replacement we need to do here is a little tricky: we need to
7384 // replace an extractelement of a load with a load.
7385 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00007386 // Note that this replacement assumes that the extractvalue is the only
7387 // use of the load; that's okay because we don't want to perform this
7388 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00007389 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00007390 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00007391 if (NVT.bitsGT(LVT)) {
7392 // If the result type of vextract is wider than the load, then issue an
7393 // extending load instead.
7394 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
7395 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
7396 Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(),
7397 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
7398 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007399 Chain = Load.getValue(1);
7400 } else {
Evan Cheng84387ea2012-03-13 22:00:52 +00007401 Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
7402 LN0->getPointerInfo().getWithOffset(PtrOff),
7403 LN0->isVolatile(), LN0->isNonTemporal(),
7404 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007405 Chain = Load.getValue(1);
7406 if (NVT.bitsLT(LVT))
7407 Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load);
7408 else
7409 Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load);
7410 }
Eli Friedman4db4add2011-11-16 23:50:22 +00007411 WorkListRemover DeadNodes(*this);
7412 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00007413 SDValue To[] = { Load, Chain };
Eli Friedman4db4add2011-11-16 23:50:22 +00007414 DAG.ReplaceAllUsesOfValuesWith(From, To, 2, &DeadNodes);
7415 // Since we're explcitly calling ReplaceAllUses, add the new node to the
7416 // worklist explicitly as well.
7417 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00007418 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00007419 // Make sure to revisit this node to clean it up; it will usually be dead.
7420 AddToWorkList(N);
7421 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00007422 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007423
Dan Gohman475871a2008-07-27 21:46:04 +00007424 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00007425}
Evan Cheng513da432007-10-06 08:19:55 +00007426
Dan Gohman475871a2008-07-27 21:46:04 +00007427SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007428 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007429 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007430 EVT VT = N->getValueType(0);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007431 // Check to see if this is a BUILD_VECTOR of a bunch of values
7432 // which come from any_extend or zero_extend nodes. If so, we can create
7433 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00007434 // optimizations. We do not handle sign-extend because we can't fill the sign
7435 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007436 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00007437 bool AllAnyExt = true;
7438 bool AllUndef = true;
7439 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007440 SDValue In = N->getOperand(i);
7441 // Ignore undef inputs.
7442 if (In.getOpcode() == ISD::UNDEF) continue;
Craig Topperd3b58892012-01-17 09:09:48 +00007443 AllUndef = false;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007444
7445 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
7446 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
7447
Nadav Rotemf47368b2011-10-31 20:08:25 +00007448 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007449 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00007450 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007451 break;
7452 }
7453
7454 // The input is a ZeroExt or AnyExt. Check the original type.
7455 EVT InTy = In.getOperand(0).getValueType();
7456
7457 // Check that all of the widened source types are the same.
7458 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007459 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007460 SourceType = InTy;
7461 else if (InTy != SourceType) {
7462 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007463 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007464 break;
7465 }
7466
7467 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00007468 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007469 }
7470
Craig Topperd3b58892012-01-17 09:09:48 +00007471 if (AllUndef)
7472 return DAG.getUNDEF(VT);
Nadav Rotemf47368b2011-10-31 20:08:25 +00007473
7474 // In order to have valid types, all of the inputs must be extended from the
7475 // same source type and all of the inputs must be any or zero extend.
7476 // Scalar sizes must be a power of two.
7477 EVT OutScalarTy = N->getValueType(0).getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007478 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00007479 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
7480 isPowerOf2_32(SourceType.getSizeInBits());
7481
7482 // We perform this optimization post type-legalization because
7483 // the type-legalizer often scalarizes integer-promoted vectors.
7484 // Performing this optimization before may create bit-casts which
7485 // will be type-legalized to complex code sequences.
7486 // We perform this optimization only before the operation legalizer because we
7487 // may introduce illegal operations.
Nadav Rotem6431ff92012-03-15 08:49:06 +00007488 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
7489 // turn into a single shuffle instruction.
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007490 if ((Level == AfterLegalizeVectorOps || Level == AfterLegalizeTypes) &&
7491 ValidTypes) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007492 bool isLE = TLI.isLittleEndian();
Nadav Rotemf47368b2011-10-31 20:08:25 +00007493 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007494 assert(ElemRatio > 1 && "Invalid element size ratio");
Craig Topperd3b58892012-01-17 09:09:48 +00007495 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
Nadav Rotemf47368b2011-10-31 20:08:25 +00007496 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007497
7498 unsigned NewBVElems = ElemRatio * N->getValueType(0).getVectorNumElements();
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007499 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007500
7501 // Populate the new build_vector
7502 for (unsigned i=0; i < N->getNumOperands(); ++i) {
7503 SDValue Cast = N->getOperand(i);
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007504 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
7505 Cast.getOpcode() == ISD::ZERO_EXTEND ||
7506 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
Nadav Rotemb00418a2011-10-29 21:23:04 +00007507 SDValue In;
7508 if (Cast.getOpcode() == ISD::UNDEF)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007509 In = DAG.getUNDEF(SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007510 else
7511 In = Cast->getOperand(0);
7512 unsigned Index = isLE ? (i * ElemRatio) :
7513 (i * ElemRatio + (ElemRatio - 1));
7514
7515 assert(Index < Ops.size() && "Invalid index");
7516 Ops[Index] = In;
7517 }
7518
7519 // The type of the new BUILD_VECTOR node.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007520 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007521 assert(VecVT.getSizeInBits() == N->getValueType(0).getSizeInBits() &&
7522 "Invalid vector size");
Nadav Rotemf47368b2011-10-31 20:08:25 +00007523 // Check if the new vector type is legal.
7524 if (!isTypeLegal(VecVT)) return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007525
7526 // Make the new BUILD_VECTOR.
7527 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7528 VecVT, &Ops[0], Ops.size());
7529
Nadav Rotem6431ff92012-03-15 08:49:06 +00007530 // The new BUILD_VECTOR node has the potential to be further optimized.
7531 AddToWorkList(BV.getNode());
Nadav Rotemb00418a2011-10-29 21:23:04 +00007532 // Bitcast to the desired type.
7533 return DAG.getNode(ISD::BITCAST, dl, N->getValueType(0), BV);
7534 }
Chris Lattnerca242442006-03-19 01:27:56 +00007535
Dan Gohman7f321562007-06-25 16:23:39 +00007536 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
7537 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
7538 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00007539
7540 // May only combine to shuffle after legalize if shuffle is legal.
7541 if (LegalOperations &&
7542 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
7543 return SDValue();
7544
Dan Gohman475871a2008-07-27 21:46:04 +00007545 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007546 for (unsigned i = 0; i != NumInScalars; ++i) {
7547 // Ignore undef inputs.
7548 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007549
Dan Gohman7f321562007-06-25 16:23:39 +00007550 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00007551 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00007552 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00007553 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00007554 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007555 break;
7556 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007557
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007558 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00007559 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007560 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
7561 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007562
Gabor Greifba36cb52008-08-28 21:40:38 +00007563 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007564 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00007565 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007566 VecIn2 = ExtractedFromVec;
7567 } else {
7568 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007569 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007570 break;
7571 }
7572 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007573
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007574 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00007575 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007576 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007577 for (unsigned i = 0; i != NumInScalars; ++i) {
7578 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007579 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007580 continue;
7581 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007582
Rafael Espindola15684b22009-04-24 12:40:33 +00007583 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00007584 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00007585 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007586 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00007587 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
7588 if (ExtIndex > VT.getVectorNumElements())
7589 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007590
Nate Begeman5a5ca152009-04-29 05:20:52 +00007591 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007592 continue;
7593 }
7594
7595 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00007596 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007597 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007598 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007599
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007600 // We can't generate a shuffle node with mismatched input and output types.
7601 // Attempt to transform a single input vector to the correct type.
7602 if ((VT != VecIn1.getValueType())) {
7603 // We don't support shuffeling between TWO values of different types.
7604 if (VecIn2.getNode() != 0)
7605 return SDValue();
7606
7607 // We only support widening of vectors which are half the size of the
7608 // output registers. For example XMM->YMM widening on X86 with AVX.
7609 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
7610 return SDValue();
7611
7612 // Widen the input vector by adding undef values.
7613 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
7614 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
7615 }
7616
7617 // If VecIn2 is unused then change it to undef.
7618 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
7619
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007620 // Check that we were able to transform all incoming values to the same type.
7621 if (VecIn2.getValueType() != VecIn1.getValueType() ||
7622 VecIn1.getValueType() != VT)
7623 return SDValue();
7624
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007625 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007626 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00007627 return SDValue();
7628
Dan Gohman7f321562007-06-25 16:23:39 +00007629 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00007630 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00007631 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007632 Ops[1] = VecIn2;
Nate Begeman9008ca62009-04-27 18:41:29 +00007633 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007634 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007635
Dan Gohman475871a2008-07-27 21:46:04 +00007636 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00007637}
7638
Dan Gohman475871a2008-07-27 21:46:04 +00007639SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007640 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
7641 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
7642 // inputs come from at most two distinct vectors, turn this into a shuffle
7643 // node.
7644
7645 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00007646 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00007647 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007648
Dan Gohman475871a2008-07-27 21:46:04 +00007649 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007650}
7651
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007652SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
7653 EVT NVT = N->getValueType(0);
7654 SDValue V = N->getOperand(0);
7655
7656 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
7657 // Handle only simple case where vector being inserted and vector
7658 // being extracted are of same type, and are half size of larger vectors.
7659 EVT BigVT = V->getOperand(0).getValueType();
7660 EVT SmallVT = V->getOperand(1).getValueType();
7661 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
7662 return SDValue();
7663
Eli Friedman26323442011-12-07 00:11:56 +00007664 // Only handle cases where both indexes are constants with the same type.
7665 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
7666 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007667
Eli Friedman26323442011-12-07 00:11:56 +00007668 if (InsIdx && ExtIdx &&
7669 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
7670 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
7671 // Combine:
7672 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
7673 // Into:
7674 // indices are equal => V1
7675 // otherwise => (extract_subvec V1, ExtIdx)
7676 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
7677 return V->getOperand(1);
7678 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
7679 V->getOperand(0), N->getOperand(1));
7680 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007681 }
7682
7683 return SDValue();
7684}
7685
Dan Gohman475871a2008-07-27 21:46:04 +00007686SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007687 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007688 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007689
Mon P Wangaeb06d22008-11-10 04:46:22 +00007690 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00007691 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007692
7693 assert(N0.getValueType().getVectorNumElements() == NumElts &&
7694 "Vector shuffle must be normalized in DAG");
7695
Craig Topper481b79c2012-01-04 08:07:43 +00007696 // Canonicalize shuffle undef, undef -> undef
7697 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
7698 return DAG.getUNDEF(VT);
7699
7700 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7701
7702 // Canonicalize shuffle v, v -> v, undef
7703 if (N0 == N1) {
7704 SmallVector<int, 8> NewMask;
7705 for (unsigned i = 0; i != NumElts; ++i) {
7706 int Idx = SVN->getMaskElt(i);
7707 if (Idx >= (int)NumElts) Idx -= NumElts;
7708 NewMask.push_back(Idx);
7709 }
7710 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
7711 &NewMask[0]);
7712 }
7713
7714 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
7715 if (N0.getOpcode() == ISD::UNDEF) {
7716 SmallVector<int, 8> NewMask;
7717 for (unsigned i = 0; i != NumElts; ++i) {
7718 int Idx = SVN->getMaskElt(i);
7719 if (Idx < 0)
7720 NewMask.push_back(Idx);
7721 else if (Idx < (int)NumElts)
7722 NewMask.push_back(Idx + NumElts);
7723 else
7724 NewMask.push_back(Idx - NumElts);
7725 }
7726 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
7727 &NewMask[0]);
7728 }
7729
7730 // Remove references to rhs if it is undef
7731 if (N1.getOpcode() == ISD::UNDEF) {
7732 bool Changed = false;
7733 SmallVector<int, 8> NewMask;
7734 for (unsigned i = 0; i != NumElts; ++i) {
7735 int Idx = SVN->getMaskElt(i);
7736 if (Idx >= (int)NumElts) {
7737 Idx = -1;
7738 Changed = true;
7739 }
7740 NewMask.push_back(Idx);
7741 }
7742 if (Changed)
7743 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
7744 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00007745
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007746 // If it is a splat, check if the argument vector is another splat or a
7747 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007748 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007749 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00007750
Dan Gohman7f321562007-06-25 16:23:39 +00007751 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00007752 // not the number of vector elements, look through it. Be careful not to
7753 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007754 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00007755 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00007756 if (ConvInput.getValueType().isVector() &&
7757 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00007758 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00007759 }
7760
Dan Gohman7f321562007-06-25 16:23:39 +00007761 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007762 assert(V->getNumOperands() == NumElts &&
7763 "BUILD_VECTOR has wrong number of operands");
7764 SDValue Base;
7765 bool AllSame = true;
7766 for (unsigned i = 0; i != NumElts; ++i) {
7767 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
7768 Base = V->getOperand(i);
7769 break;
Evan Cheng917ec982006-07-21 08:25:53 +00007770 }
Evan Cheng917ec982006-07-21 08:25:53 +00007771 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007772 // Splat of <u, u, u, u>, return <u, u, u, u>
7773 if (!Base.getNode())
7774 return N0;
7775 for (unsigned i = 0; i != NumElts; ++i) {
7776 if (V->getOperand(i) != Base) {
7777 AllSame = false;
7778 break;
7779 }
7780 }
7781 // Splat of <x, x, x, x>, return <x, x, x, x>
7782 if (AllSame)
7783 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00007784 }
7785 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00007786
7787 // If this shuffle node is simply a swizzle of another shuffle node,
7788 // optimize shuffle(shuffle(x, y), undef) -> shuffle(x, y).
7789 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
7790 N1.getOpcode() == ISD::UNDEF) {
7791
7792 SmallVector<int, 8> NewMask;
7793 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
7794
Nadav Rotem44b5e6d2012-04-02 07:11:12 +00007795 // If the source shuffle has more than one user then do not try to optimize
7796 // it because it may generate a more complex shuffle node. However, if the
7797 // source shuffle is also a swizzle (a single source shuffle), our
7798 // transformation is still likely to reduce the number of shuffles and only
7799 // generate a simple shuffle node.
7800 if (N0.getOperand(1).getOpcode() != ISD::UNDEF && !N0.hasOneUse())
7801 return SDValue();
7802
Nadav Rotem4ac90812012-04-01 19:31:22 +00007803 EVT InVT = N0.getValueType();
7804 int InNumElts = InVT.getVectorNumElements();
7805
7806 for (unsigned i = 0; i != NumElts; ++i) {
7807 int Idx = SVN->getMaskElt(i);
7808 // If we access the second (undef) operand then this index can be
7809 // canonicalized to undef as well.
7810 if (Idx >= InNumElts)
7811 Idx = -1;
7812 // Next, this index comes from the first value, which is the incoming
7813 // shuffle. Adopt the incoming index.
7814 if (Idx >= 0)
7815 Idx = OtherSV->getMaskElt(Idx);
7816
7817 NewMask.push_back(Idx);
7818 }
Nadav Rotem44b5e6d2012-04-02 07:11:12 +00007819 assert(NewMask.size() == VT.getVectorNumElements() && "Invalid mask size");
Nadav Rotem4ac90812012-04-01 19:31:22 +00007820 return DAG.getVectorShuffle(VT, N->getDebugLoc(), OtherSV->getOperand(0),
7821 OtherSV->getOperand(1), &NewMask[0]);
7822 }
7823
Dan Gohman475871a2008-07-27 21:46:04 +00007824 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007825}
7826
Jim Grosbach9a526492010-06-23 16:07:42 +00007827SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
7828 if (!TLI.getShouldFoldAtomicFences())
7829 return SDValue();
7830
7831 SDValue atomic = N->getOperand(0);
7832 switch (atomic.getOpcode()) {
7833 case ISD::ATOMIC_CMP_SWAP:
7834 case ISD::ATOMIC_SWAP:
7835 case ISD::ATOMIC_LOAD_ADD:
7836 case ISD::ATOMIC_LOAD_SUB:
7837 case ISD::ATOMIC_LOAD_AND:
7838 case ISD::ATOMIC_LOAD_OR:
7839 case ISD::ATOMIC_LOAD_XOR:
7840 case ISD::ATOMIC_LOAD_NAND:
7841 case ISD::ATOMIC_LOAD_MIN:
7842 case ISD::ATOMIC_LOAD_MAX:
7843 case ISD::ATOMIC_LOAD_UMIN:
7844 case ISD::ATOMIC_LOAD_UMAX:
7845 break;
7846 default:
7847 return SDValue();
7848 }
7849
7850 SDValue fence = atomic.getOperand(0);
7851 if (fence.getOpcode() != ISD::MEMBARRIER)
7852 return SDValue();
7853
7854 switch (atomic.getOpcode()) {
7855 case ISD::ATOMIC_CMP_SWAP:
7856 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7857 fence.getOperand(0),
7858 atomic.getOperand(1), atomic.getOperand(2),
7859 atomic.getOperand(3)), atomic.getResNo());
7860 case ISD::ATOMIC_SWAP:
7861 case ISD::ATOMIC_LOAD_ADD:
7862 case ISD::ATOMIC_LOAD_SUB:
7863 case ISD::ATOMIC_LOAD_AND:
7864 case ISD::ATOMIC_LOAD_OR:
7865 case ISD::ATOMIC_LOAD_XOR:
7866 case ISD::ATOMIC_LOAD_NAND:
7867 case ISD::ATOMIC_LOAD_MIN:
7868 case ISD::ATOMIC_LOAD_MAX:
7869 case ISD::ATOMIC_LOAD_UMIN:
7870 case ISD::ATOMIC_LOAD_UMAX:
7871 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7872 fence.getOperand(0),
7873 atomic.getOperand(1), atomic.getOperand(2)),
7874 atomic.getResNo());
7875 default:
7876 return SDValue();
7877 }
7878}
7879
Evan Cheng44f1f092006-04-20 08:56:16 +00007880/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00007881/// an AND to a vector_shuffle with the destination vector and a zero vector.
7882/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00007883/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00007884SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007885 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007886 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007887 SDValue LHS = N->getOperand(0);
7888 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00007889 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007890 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00007891 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007892 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007893 SmallVector<int, 8> Indices;
7894 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00007895 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007896 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007897 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00007898 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007899 else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007900 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007901 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007902 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00007903 else
Dan Gohman475871a2008-07-27 21:46:04 +00007904 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007905 }
7906
7907 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00007908 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007909 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007910 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007911
Dan Gohman7f321562007-06-25 16:23:39 +00007912 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00007913 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007914 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00007915 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00007916 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7917 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007918 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00007919 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007920 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00007921 }
7922 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00007923
Dan Gohman475871a2008-07-27 21:46:04 +00007924 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007925}
7926
Dan Gohman7f321562007-06-25 16:23:39 +00007927/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00007928SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007929 // After legalize, the target may be depending on adds and other
7930 // binary ops to provide legal ways to construct constants or other
7931 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00007932 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007933
Bob Wilsond7273432010-12-17 23:06:49 +00007934 assert(N->getValueType(0).isVector() &&
7935 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00007936
Dan Gohman475871a2008-07-27 21:46:04 +00007937 SDValue LHS = N->getOperand(0);
7938 SDValue RHS = N->getOperand(1);
7939 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00007940 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00007941
Dan Gohman7f321562007-06-25 16:23:39 +00007942 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00007943 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00007944 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00007945 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00007946 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00007947 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007948 SDValue LHSOp = LHS.getOperand(i);
7949 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00007950 // If these two elements can't be folded, bail out.
7951 if ((LHSOp.getOpcode() != ISD::UNDEF &&
7952 LHSOp.getOpcode() != ISD::Constant &&
7953 LHSOp.getOpcode() != ISD::ConstantFP) ||
7954 (RHSOp.getOpcode() != ISD::UNDEF &&
7955 RHSOp.getOpcode() != ISD::Constant &&
7956 RHSOp.getOpcode() != ISD::ConstantFP))
7957 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00007958
Evan Cheng7b336a82006-05-31 06:08:35 +00007959 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00007960 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
7961 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00007962 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00007963 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00007964 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00007965 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00007966 break;
7967 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00007968
Bob Wilsond7273432010-12-17 23:06:49 +00007969 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00007970 EVT RVT = RHSOp.getValueType();
7971 if (RVT != VT) {
7972 // Integer BUILD_VECTOR operands may have types larger than the element
7973 // size (e.g., when the element type is not legal). Prior to type
7974 // legalization, the types may not match between the two BUILD_VECTORS.
7975 // Truncate one of the operands to make them match.
7976 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
7977 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
7978 } else {
7979 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
7980 VT = RVT;
7981 }
7982 }
Bob Wilsond7273432010-12-17 23:06:49 +00007983 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00007984 LHSOp, RHSOp);
7985 if (FoldOp.getOpcode() != ISD::UNDEF &&
7986 FoldOp.getOpcode() != ISD::Constant &&
7987 FoldOp.getOpcode() != ISD::ConstantFP)
7988 break;
7989 Ops.push_back(FoldOp);
7990 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00007991 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007992
Bob Wilsond7273432010-12-17 23:06:49 +00007993 if (Ops.size() == LHS.getNumOperands())
7994 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7995 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00007996 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007997
Dan Gohman475871a2008-07-27 21:46:04 +00007998 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00007999}
8000
Bill Wendling836ca7d2009-01-30 23:59:18 +00008001SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
8002 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00008003 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008004
Bill Wendling836ca7d2009-01-30 23:59:18 +00008005 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00008006 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008007
Nate Begemanf845b452005-10-08 00:29:44 +00008008 // If we got a simplified select_cc node back from SimplifySelectCC, then
8009 // break it down into a new SETCC node, and a new SELECT node, and then return
8010 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00008011 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008012 // Check to see if we got a select_cc back (to turn into setcc/select).
8013 // Otherwise, just return whatever node we got back, like fabs.
8014 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008015 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
8016 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008017 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008018 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00008019 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008020 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
8021 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00008022 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008023
Nate Begemanf845b452005-10-08 00:29:44 +00008024 return SCC;
8025 }
Dan Gohman475871a2008-07-27 21:46:04 +00008026 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008027}
8028
Chris Lattner40c62d52005-10-18 06:04:22 +00008029/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
8030/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00008031/// select. Callers of this should assume that TheSelect is deleted if this
8032/// returns true. As such, they should return the appropriate thing (e.g. the
8033/// node) back to the top-level of the DAG combiner loop to avoid it being
8034/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00008035bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00008036 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008037
Nadav Rotemf94fdb62011-02-11 19:57:47 +00008038 // Cannot simplify select with vector condition
8039 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
8040
Chris Lattner40c62d52005-10-18 06:04:22 +00008041 // If this is a select from two identical things, try to pull the operation
8042 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00008043 if (LHS.getOpcode() != RHS.getOpcode() ||
8044 !LHS.hasOneUse() || !RHS.hasOneUse())
8045 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008046
Chris Lattner18061612010-09-21 15:46:59 +00008047 // If this is a load and the token chain is identical, replace the select
8048 // of two loads with a load through a select of the address to load from.
8049 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
8050 // constants have been dropped into the constant pool.
8051 if (LHS.getOpcode() == ISD::LOAD) {
8052 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
8053 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008054
Chris Lattner18061612010-09-21 15:46:59 +00008055 // Token chains must be identical.
8056 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008057 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00008058 LLD->isVolatile() || RLD->isVolatile() ||
8059 // If this is an EXTLOAD, the VT's must match.
8060 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00008061 // If this is an EXTLOAD, the kind of extension must match.
8062 (LLD->getExtensionType() != RLD->getExtensionType() &&
8063 // The only exception is if one of the extensions is anyext.
8064 LLD->getExtensionType() != ISD::EXTLOAD &&
8065 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00008066 // FIXME: this discards src value information. This is
8067 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00008068 // both potential memory locations. Since we are discarding
8069 // src value info, don't do the transformation if the memory
8070 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00008071 LLD->getPointerInfo().getAddrSpace() != 0 ||
8072 RLD->getPointerInfo().getAddrSpace() != 0)
8073 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008074
Chris Lattnerf1658062010-09-21 15:58:55 +00008075 // Check that the select condition doesn't reach either load. If so,
8076 // folding this will induce a cycle into the DAG. If not, this is safe to
8077 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00008078 SDValue Addr;
8079 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00008080 SDNode *CondNode = TheSelect->getOperand(0).getNode();
8081 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
8082 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
8083 return false;
8084 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
8085 LLD->getBasePtr().getValueType(),
8086 TheSelect->getOperand(0), LLD->getBasePtr(),
8087 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00008088 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00008089 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
8090 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
8091
8092 if ((LLD->hasAnyUseOfValue(1) &&
8093 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00008094 (RLD->hasAnyUseOfValue(1) &&
8095 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00008096 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008097
Chris Lattnerf1658062010-09-21 15:58:55 +00008098 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
8099 LLD->getBasePtr().getValueType(),
8100 TheSelect->getOperand(0),
8101 TheSelect->getOperand(1),
8102 LLD->getBasePtr(), RLD->getBasePtr(),
8103 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00008104 }
8105
Chris Lattnerf1658062010-09-21 15:58:55 +00008106 SDValue Load;
8107 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
8108 Load = DAG.getLoad(TheSelect->getValueType(0),
8109 TheSelect->getDebugLoc(),
8110 // FIXME: Discards pointer info.
8111 LLD->getChain(), Addr, MachinePointerInfo(),
8112 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008113 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00008114 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00008115 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
8116 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00008117 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00008118 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00008119 // FIXME: Discards pointer info.
8120 LLD->getChain(), Addr, MachinePointerInfo(),
8121 LLD->getMemoryVT(), LLD->isVolatile(),
8122 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00008123 }
Chris Lattnerf1658062010-09-21 15:58:55 +00008124
8125 // Users of the select now use the result of the load.
8126 CombineTo(TheSelect, Load);
8127
8128 // Users of the old loads now use the new load's chain. We know the
8129 // old-load value is dead now.
8130 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
8131 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
8132 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00008133 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008134
Chris Lattner40c62d52005-10-18 06:04:22 +00008135 return false;
8136}
8137
Chris Lattner600fec32009-03-11 05:08:08 +00008138/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
8139/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00008140SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00008141 SDValue N2, SDValue N3,
8142 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00008143 // (x ? y : y) -> y.
8144 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008145
Owen Andersone50ed302009-08-10 22:56:29 +00008146 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00008147 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
8148 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
8149 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008150
8151 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00008152 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008153 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00008154 if (SCC.getNode()) AddToWorkList(SCC.getNode());
8155 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008156
8157 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00008158 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008159 return N2;
8160 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00008161 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008162 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00008163
Nate Begemanf845b452005-10-08 00:29:44 +00008164 // Check to see if we can simplify the select into an fabs node
8165 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
8166 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00008167 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008168 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
8169 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
8170 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
8171 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008172 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008173
Nate Begemanf845b452005-10-08 00:29:44 +00008174 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
8175 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
8176 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
8177 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008178 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00008179 }
8180 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008181
Chris Lattner600fec32009-03-11 05:08:08 +00008182 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
8183 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
8184 // in it. This is a win when the constant is not otherwise available because
8185 // it replaces two constant pool loads with one. We only do this if the FP
8186 // type is known to be legal, because if it isn't, then we are before legalize
8187 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00008188 // messing with soft float) and if the ConstantFP is not legal, because if
8189 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00008190 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
8191 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
8192 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00008193 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
8194 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00008195 // If both constants have multiple uses, then we won't need to do an
8196 // extra load, they are likely around in registers for other users.
8197 (TV->hasOneUse() || FV->hasOneUse())) {
8198 Constant *Elts[] = {
8199 const_cast<ConstantFP*>(FV->getConstantFPValue()),
8200 const_cast<ConstantFP*>(TV->getConstantFPValue())
8201 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008202 Type *FPTy = Elts[0]->getType();
Chris Lattner600fec32009-03-11 05:08:08 +00008203 const TargetData &TD = *TLI.getTargetData();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008204
Chris Lattner600fec32009-03-11 05:08:08 +00008205 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00008206 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00008207 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
8208 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00008209 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00008210
8211 // Get the offsets to the 0 and 1 element of the array so that we can
8212 // select between them.
8213 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00008214 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00008215 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008216
Chris Lattner600fec32009-03-11 05:08:08 +00008217 SDValue Cond = DAG.getSetCC(DL,
8218 TLI.getSetCCResultType(N0.getValueType()),
8219 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00008220 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008221 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
8222 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00008223 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008224 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
8225 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00008226 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008227 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00008228 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008229 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00008230
8231 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008232 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008233
Nate Begemanf845b452005-10-08 00:29:44 +00008234 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00008235 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00008236 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00008237 (N1C->isNullValue() || // (a < 0) ? b : 0
8238 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00008239 EVT XType = N0.getValueType();
8240 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00008241 if (XType.bitsGE(AType)) {
Nate Begemanf845b452005-10-08 00:29:44 +00008242 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00008243 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00008244 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
8245 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008246 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00008247 SDValue ShCt = DAG.getConstant(ShCtV,
8248 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00008249 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008250 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00008251 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008252
Duncan Sands8e4eb092008-06-08 20:54:56 +00008253 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008254 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008255 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008256 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008257
8258 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008259 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008260
Bill Wendling9729c5a2009-01-31 03:12:48 +00008261 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008262 XType, N0,
8263 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008264 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00008265 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008266
Duncan Sands8e4eb092008-06-08 20:54:56 +00008267 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008268 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008269 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008270 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008271
8272 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008273 }
8274 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008275
Owen Andersoned1088a2010-09-22 22:58:22 +00008276 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
8277 // where y is has a single bit set.
8278 // A plaintext description would be, we can turn the SELECT_CC into an AND
8279 // when the condition can be materialized as an all-ones register. Any
8280 // single bit-test can be materialized as an all-ones register with
8281 // shift-left and shift-right-arith.
8282 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
8283 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008284 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00008285 N2C && N2C->isNullValue()) {
8286 SDValue AndLHS = N0->getOperand(0);
8287 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
8288 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
8289 // Shift the tested bit over the sign bit.
8290 APInt AndMask = ConstAndRHS->getAPIntValue();
8291 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008292 DAG.getConstant(AndMask.countLeadingZeros(),
8293 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008294 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008295
Owen Andersoned1088a2010-09-22 22:58:22 +00008296 // Now arithmetic right shift it all the way over, so the result is either
8297 // all-ones, or zero.
8298 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008299 DAG.getConstant(AndMask.getBitWidth()-1,
8300 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008301 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008302
Owen Andersoned1088a2010-09-22 22:58:22 +00008303 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
8304 }
8305 }
8306
Nate Begeman07ed4172005-10-10 21:26:48 +00008307 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00008308 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00008309 TLI.getBooleanContents(N0.getValueType().isVector()) ==
8310 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008311
Chris Lattner1eba01e2007-04-11 06:50:51 +00008312 // If the caller doesn't want us to simplify this into a zext of a compare,
8313 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00008314 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00008315 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008316
Nate Begeman07ed4172005-10-10 21:26:48 +00008317 // Get a SetCC of the condition
8318 // FIXME: Should probably make sure that setcc is legal if we ever have a
8319 // target where it isn't.
Dan Gohman475871a2008-07-27 21:46:04 +00008320 SDValue Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00008321 // cast from setcc result type to select result type
Duncan Sands25cf2272008-11-24 14:53:14 +00008322 if (LegalTypes) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008323 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00008324 N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00008325 if (N2.getValueType().bitsLT(SCC.getValueType()))
Bill Wendling9729c5a2009-01-31 03:12:48 +00008326 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
Chris Lattner555d8d62006-12-07 22:36:47 +00008327 else
Bill Wendling9729c5a2009-01-31 03:12:48 +00008328 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008329 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008330 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00008331 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00008332 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008333 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008334 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008335
Gabor Greifba36cb52008-08-28 21:40:38 +00008336 AddToWorkList(SCC.getNode());
8337 AddToWorkList(Temp.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00008338
Dan Gohman002e5d02008-03-13 22:13:53 +00008339 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00008340 return Temp;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008341
Nate Begeman07ed4172005-10-10 21:26:48 +00008342 // shl setcc result by log2 n2c
Bill Wendling836ca7d2009-01-30 23:59:18 +00008343 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00008344 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00008345 getShiftAmountTy(Temp.getValueType())));
Nate Begeman07ed4172005-10-10 21:26:48 +00008346 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008347
Nate Begemanf845b452005-10-08 00:29:44 +00008348 // Check to see if this is the equivalent of setcc
8349 // FIXME: Turn all of these into setcc if setcc if setcc is legal
8350 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00008351 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00008352 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00008353 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00008354 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008355 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00008356 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008357 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00008358 return Res;
8359 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008360
Bill Wendling836ca7d2009-01-30 23:59:18 +00008361 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00008362 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008363 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00008364 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008365 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008366 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008367 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00008368 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00008369 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008370 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00008371 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008372 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
8373 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00008374 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00008375 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00008376 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00008377 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008378 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00008379 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008380 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00008381 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008382 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00008383 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008384 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00008385 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00008386 }
8387 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008388
Benjamin Kramercde51102010-07-08 12:09:56 +00008389 // Check to see if this is an integer abs.
8390 // select_cc setg[te] X, 0, X, -X ->
8391 // select_cc setgt X, -1, X, -X ->
8392 // select_cc setl[te] X, 0, -X, X ->
8393 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00008394 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00008395 if (N1C) {
8396 ConstantSDNode *SubC = NULL;
8397 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
8398 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
8399 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
8400 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
8401 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
8402 (N1C->isOne() && CC == ISD::SETLT)) &&
8403 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
8404 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
8405
Owen Andersone50ed302009-08-10 22:56:29 +00008406 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00008407 if (SubC && SubC->isNullValue() && XType.isInteger()) {
8408 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
8409 N0,
8410 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008411 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00008412 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
8413 XType, N0, Shift);
8414 AddToWorkList(Shift.getNode());
8415 AddToWorkList(Add.getNode());
8416 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00008417 }
8418 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008419
Dan Gohman475871a2008-07-27 21:46:04 +00008420 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008421}
8422
Evan Chengfa1eb272007-02-08 22:13:59 +00008423/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00008424SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00008425 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008426 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008427 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00008428 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008429 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00008430}
8431
Nate Begeman69575232005-10-20 02:15:44 +00008432/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
8433/// return a DAG expression to select that will generate the same value by
8434/// multiplying by a magic number. See:
8435/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008436SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008437 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008438 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008439
Andrew Lenharth232c9102006-06-12 16:07:18 +00008440 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008441 ii != ee; ++ii)
8442 AddToWorkList(*ii);
8443 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008444}
8445
8446/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
8447/// return a DAG expression to select that will generate the same value by
8448/// multiplying by a magic number. See:
8449/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008450SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008451 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008452 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00008453
Andrew Lenharth232c9102006-06-12 16:07:18 +00008454 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008455 ii != ee; ++ii)
8456 AddToWorkList(*ii);
8457 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008458}
8459
Nate Begemancc66cdd2009-09-25 06:05:26 +00008460/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00008461// to alias with anything but itself. Provides base object and offset as
8462// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008463static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Dan Gohman46510a72010-04-15 01:51:59 +00008464 const GlobalValue *&GV, void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00008465 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008466 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008467
Jim Laskey71382342006-10-07 23:37:56 +00008468 // If it's an adding a simple constant then integrate the offset.
8469 if (Base.getOpcode() == ISD::ADD) {
8470 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
8471 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008472 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00008473 }
8474 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008475
Nate Begemancc66cdd2009-09-25 06:05:26 +00008476 // Return the underlying GlobalValue, and update the Offset. Return false
8477 // for GlobalAddressSDNode since the same GlobalAddress may be represented
8478 // by multiple nodes with different offsets.
8479 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
8480 GV = G->getGlobal();
8481 Offset += G->getOffset();
8482 return false;
8483 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008484
Nate Begemancc66cdd2009-09-25 06:05:26 +00008485 // Return the underlying Constant value, and update the Offset. Return false
8486 // for ConstantSDNodes since the same constant pool entry may be represented
8487 // by multiple nodes with different offsets.
8488 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
8489 CV = C->isMachineConstantPoolEntry() ? (void *)C->getMachineCPVal()
8490 : (void *)C->getConstVal();
8491 Offset += C->getOffset();
8492 return false;
8493 }
Jim Laskey71382342006-10-07 23:37:56 +00008494 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008495 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00008496}
8497
8498/// isAlias - Return true if there is any possibility that the two addresses
8499/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00008500bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00008501 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008502 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008503 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00008504 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008505 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008506 unsigned SrcValueAlign2,
8507 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00008508 // If they are the same then they must be aliases.
8509 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00008510
Jim Laskey71382342006-10-07 23:37:56 +00008511 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00008512 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00008513 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00008514 const GlobalValue *GV1, *GV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00008515 void *CV1, *CV2;
8516 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
8517 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00008518
Nate Begemancc66cdd2009-09-25 06:05:26 +00008519 // If they have a same base address then check to see if they overlap.
8520 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008521 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008522
Owen Anderson4a9f1502010-09-20 20:39:59 +00008523 // It is possible for different frame indices to alias each other, mostly
8524 // when tail call optimization reuses return address slots for arguments.
8525 // To catch this case, look up the actual index of frame indices to compute
8526 // the real alias relationship.
8527 if (isFrameIndex1 && isFrameIndex2) {
8528 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8529 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
8530 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
8531 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
8532 }
8533
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008534 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00008535 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008536 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
8537 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00008538
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008539 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
8540 // compared to the size and offset of the access, we may be able to prove they
8541 // do not alias. This check is conservative for now to catch cases created by
8542 // splitting vector types.
8543 if ((SrcValueAlign1 == SrcValueAlign2) &&
8544 (SrcValueOffset1 != SrcValueOffset2) &&
8545 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
8546 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
8547 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008548
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008549 // There is no overlap between these relatively aligned accesses of similar
8550 // size, return no alias.
8551 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
8552 return false;
8553 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008554
Jim Laskey07a27092006-10-18 19:08:31 +00008555 if (CombinerGlobalAA) {
8556 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00008557 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
8558 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
8559 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00008560 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008561 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
8562 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00008563 if (AAResult == AliasAnalysis::NoAlias)
8564 return false;
8565 }
Jim Laskey096c22e2006-10-18 12:29:57 +00008566
8567 // Otherwise we have to assume they alias.
8568 return true;
Jim Laskey71382342006-10-07 23:37:56 +00008569}
8570
8571/// FindAliasInfo - Extracts the relevant alias information from the memory
8572/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00008573bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00008574 SDValue &Ptr, int64_t &Size,
8575 const Value *&SrcValue,
8576 int &SrcValueOffset,
8577 unsigned &SrcValueAlign,
8578 const MDNode *&TBAAInfo) const {
8579 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
8580
8581 Ptr = LS->getBasePtr();
8582 Size = LS->getMemoryVT().getSizeInBits() >> 3;
8583 SrcValue = LS->getSrcValue();
8584 SrcValueOffset = LS->getSrcValueOffset();
8585 SrcValueAlign = LS->getOriginalAlignment();
8586 TBAAInfo = LS->getTBAAInfo();
8587 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00008588}
8589
Jim Laskey6ff23e52006-10-04 16:53:27 +00008590/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
8591/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00008592void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
8593 SmallVector<SDValue, 8> &Aliases) {
8594 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008595 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00008596
Jim Laskey279f0532006-09-25 16:29:54 +00008597 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00008598 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008599 int64_t Size;
8600 const Value *SrcValue;
8601 int SrcValueOffset;
8602 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008603 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008604 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008605 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00008606
Jim Laskey6ff23e52006-10-04 16:53:27 +00008607 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00008608 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00008609 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008610
Jim Laskeybc588b82006-10-05 15:07:25 +00008611 // Look at each chain and determine if it is an alias. If so, add it to the
8612 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00008613 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00008614 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008615 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00008616 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008617
8618 // For TokenFactor nodes, look at each operand and only continue up the
8619 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00008620 // find more and revert to original chain since the xform is unlikely to be
8621 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008622 //
8623 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00008624 // chain we found before we hit a tokenfactor rather than the original
8625 // chain.
8626 if (Depth > 6 || Aliases.size() == 2) {
8627 Aliases.clear();
8628 Aliases.push_back(OriginalChain);
8629 break;
8630 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008631
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008632 // Don't bother if we've been before.
8633 if (!Visited.insert(Chain.getNode()))
8634 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008635
Jim Laskeybc588b82006-10-05 15:07:25 +00008636 switch (Chain.getOpcode()) {
8637 case ISD::EntryToken:
8638 // Entry token is ideal chain operand, but handled in FindBetterChain.
8639 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008640
Jim Laskeybc588b82006-10-05 15:07:25 +00008641 case ISD::LOAD:
8642 case ISD::STORE: {
8643 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00008644 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008645 int64_t OpSize;
8646 const Value *OpSrcValue;
8647 int OpSrcValueOffset;
8648 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008649 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00008650 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008651 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008652 OpSrcValueAlign,
8653 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00008654
Jim Laskeybc588b82006-10-05 15:07:25 +00008655 // If chain is alias then stop here.
8656 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008657 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008658 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008659 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008660 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00008661 Aliases.push_back(Chain);
8662 } else {
8663 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00008664 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00008665 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00008666 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008667 break;
8668 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008669
Jim Laskeybc588b82006-10-05 15:07:25 +00008670 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008671 // We have to check each of the operands of the token factor for "small"
8672 // token factors, so we queue them up. Adding the operands to the queue
8673 // (stack) in reverse order maintains the original order and increases the
8674 // likelihood that getNode will find a matching token factor (CSE.)
8675 if (Chain.getNumOperands() > 16) {
8676 Aliases.push_back(Chain);
8677 break;
8678 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008679 for (unsigned n = Chain.getNumOperands(); n;)
8680 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00008681 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00008682 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008683
Jim Laskeybc588b82006-10-05 15:07:25 +00008684 default:
8685 // For all other instructions we will just have to take what we can get.
8686 Aliases.push_back(Chain);
8687 break;
Jim Laskey279f0532006-09-25 16:29:54 +00008688 }
8689 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00008690}
8691
8692/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
8693/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00008694SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
8695 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00008696
Jim Laskey6ff23e52006-10-04 16:53:27 +00008697 // Accumulate all the aliases to this node.
8698 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00008699
Dan Gohman71dc7c92011-05-17 22:20:36 +00008700 // If no operands then chain to entry token.
8701 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008702 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00008703
8704 // If a single operand then chain to it. We don't need to revisit it.
8705 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008706 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008707
Jim Laskey6ff23e52006-10-04 16:53:27 +00008708 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008709 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008710 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00008711}
8712
Nate Begeman1d4d4142005-09-01 00:19:25 +00008713// SelectionDAG::Combine - This is the entry point for the file.
8714//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008715void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00008716 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00008717 /// run - This is the main entry point to this class.
8718 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008719 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00008720}