blob: 1ed1ee77e466114911544054803ee0e0fd185f94 [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:
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000331 explicit WorkListRemover(DAGCombiner &dc)
332 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000333
Duncan Sandsedfcf592008-06-11 11:42:12 +0000334 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000335 DC.removeFromWorkList(N);
336 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000337};
338}
339
Chris Lattner24664722006-03-01 04:53:38 +0000340//===----------------------------------------------------------------------===//
341// TargetLowering::DAGCombinerInfo implementation
342//===----------------------------------------------------------------------===//
343
344void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
345 ((DAGCombiner*)DC)->AddToWorkList(N);
346}
347
Cameron Zwariched3caf92011-04-02 02:40:26 +0000348void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
349 ((DAGCombiner*)DC)->removeFromWorkList(N);
350}
351
Dan Gohman475871a2008-07-27 21:46:04 +0000352SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000353CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
354 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000355}
356
Dan Gohman475871a2008-07-27 21:46:04 +0000357SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000358CombineTo(SDNode *N, SDValue Res, bool AddTo) {
359 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000360}
361
362
Dan Gohman475871a2008-07-27 21:46:04 +0000363SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000364CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
365 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000366}
367
Dan Gohmane5af2d32009-01-29 01:59:02 +0000368void TargetLowering::DAGCombinerInfo::
369CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
370 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
371}
Chris Lattner24664722006-03-01 04:53:38 +0000372
Chris Lattner24664722006-03-01 04:53:38 +0000373//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000374// Helper Functions
375//===----------------------------------------------------------------------===//
376
377/// isNegatibleForFree - Return 1 if we can compute the negated form of the
378/// specified expression for the same cost as the expression itself, or 2 if we
379/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000380static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000381 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000382 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000383 unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000384 // No compile time optimizations on this type.
Owen Anderson825b72b2009-08-11 20:47:22 +0000385 if (Op.getValueType() == MVT::ppcf128)
Dale Johannesendb44bf82007-10-16 23:38:29 +0000386 return 0;
387
Chris Lattner29446522007-05-14 22:04:50 +0000388 // fneg is removable even if it has multiple uses.
389 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000390
Chris Lattner29446522007-05-14 22:04:50 +0000391 // Don't allow anything with multiple uses.
392 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000393
Chris Lattner3adf9512007-05-25 02:19:06 +0000394 // Don't recurse exponentially.
395 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000396
Chris Lattner29446522007-05-14 22:04:50 +0000397 switch (Op.getOpcode()) {
398 default: return false;
399 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000400 // Don't invert constant FP values after legalize. The negated constant
401 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000402 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000403 case ISD::FADD:
404 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000405 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000406
Owen Andersonafd3d562012-03-06 00:29:31 +0000407 // After operation legalization, it might not be legal to create new FSUBs.
408 if (LegalOperations &&
409 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
410 return 0;
411
Bill Wendlingd34470c2009-01-30 23:10:18 +0000412 // fold (fsub (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000413 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
414 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000415 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000416 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000417 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000418 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000419 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000420 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000421 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000422
Bill Wendlingd34470c2009-01-30 23:10:18 +0000423 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000424 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000425
Chris Lattner29446522007-05-14 22:04:50 +0000426 case ISD::FMUL:
427 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000428 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000429
Bill Wendlingd34470c2009-01-30 23:10:18 +0000430 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000431 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
432 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000433 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000434
Owen Andersonafd3d562012-03-06 00:29:31 +0000435 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000436 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000437
Chris Lattner29446522007-05-14 22:04:50 +0000438 case ISD::FP_EXTEND:
439 case ISD::FP_ROUND:
440 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000441 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000442 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000443 }
444}
445
446/// GetNegatedExpression - If isNegatibleForFree returns true, this function
447/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000448static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000449 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000450 // fneg is removable even if it has multiple uses.
451 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000452
Chris Lattner29446522007-05-14 22:04:50 +0000453 // Don't allow anything with multiple uses.
454 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000455
Chris Lattner3adf9512007-05-25 02:19:06 +0000456 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000457 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000458 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000459 case ISD::ConstantFP: {
460 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
461 V.changeSign();
462 return DAG.getConstantFP(V, Op.getValueType());
463 }
Chris Lattner29446522007-05-14 22:04:50 +0000464 case ISD::FADD:
465 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000466 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000467
Bill Wendlingd34470c2009-01-30 23:10:18 +0000468 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000469 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000470 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000471 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000472 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000473 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000474 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000475 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000476 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Bill Wendling35247c32009-01-30 00:45:56 +0000477 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000478 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000479 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000480 Op.getOperand(0));
481 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000482 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000483 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000484
Bill Wendlingd34470c2009-01-30 23:10:18 +0000485 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000486 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000487 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000488 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000489
Bill Wendlingd34470c2009-01-30 23:10:18 +0000490 // fold (fneg (fsub A, B)) -> (fsub B, A)
Bill Wendling35247c32009-01-30 00:45:56 +0000491 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
492 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000493
Chris Lattner29446522007-05-14 22:04:50 +0000494 case ISD::FMUL:
495 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000496 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000497
Bill Wendlingd34470c2009-01-30 23:10:18 +0000498 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000499 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000500 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000501 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000502 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000503 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000504 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000505 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000506
Bill Wendlingd34470c2009-01-30 23:10:18 +0000507 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Bill Wendling35247c32009-01-30 00:45:56 +0000508 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000509 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000510 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000511 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000512
Chris Lattner29446522007-05-14 22:04:50 +0000513 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000514 case ISD::FSIN:
Bill Wendling35247c32009-01-30 00:45:56 +0000515 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000516 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000517 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000518 case ISD::FP_ROUND:
Bill Wendling35247c32009-01-30 00:45:56 +0000519 return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000520 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000521 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000522 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000523 }
524}
Chris Lattner24664722006-03-01 04:53:38 +0000525
526
Nate Begeman4ebd8052005-09-01 23:24:04 +0000527// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
528// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000529// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000530// nodes based on the type of node we are checking. This simplifies life a
531// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000532static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
533 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000534 if (N.getOpcode() == ISD::SETCC) {
535 LHS = N.getOperand(0);
536 RHS = N.getOperand(1);
537 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000538 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000539 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000540 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000541 N.getOperand(2).getOpcode() == ISD::Constant &&
542 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000543 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000544 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
545 LHS = N.getOperand(0);
546 RHS = N.getOperand(1);
547 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000548 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000549 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000550 return false;
551}
552
Nate Begeman99801192005-09-07 23:25:52 +0000553// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
554// one use. If this is true, it allows the users to invert the operation for
555// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000556static bool isOneUseSetCC(SDValue N) {
557 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000558 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000559 return true;
560 return false;
561}
562
Bill Wendling35247c32009-01-30 00:45:56 +0000563SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
564 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000565 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000566 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
567 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000568 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000569 SDValue OpNode =
570 DAG.FoldConstantArithmetic(Opc, VT,
571 cast<ConstantSDNode>(N0.getOperand(1)),
572 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000573 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000574 }
575 if (N0.hasOneUse()) {
Bill Wendling35247c32009-01-30 00:45:56 +0000576 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
577 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
578 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000579 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000580 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000581 }
582 }
Bill Wendling35247c32009-01-30 00:45:56 +0000583
Nate Begemancd4d58c2006-02-03 06:46:56 +0000584 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
585 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000586 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000587 SDValue OpNode =
588 DAG.FoldConstantArithmetic(Opc, VT,
589 cast<ConstantSDNode>(N1.getOperand(1)),
590 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000591 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000592 }
593 if (N1.hasOneUse()) {
Bill Wendling35247c32009-01-30 00:45:56 +0000594 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendlingd69c3142009-01-30 02:23:43 +0000595 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000596 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000597 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000598 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000599 }
600 }
Bill Wendling35247c32009-01-30 00:45:56 +0000601
Dan Gohman475871a2008-07-27 21:46:04 +0000602 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000603}
604
Dan Gohman475871a2008-07-27 21:46:04 +0000605SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
606 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000607 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
608 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000609 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000610 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000611 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000612 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000613 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000614 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000615 assert((!To[i].getNode() ||
616 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000617 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000618 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000619 DAG.ReplaceAllUsesWith(N, To);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000620 if (AddTo) {
621 // Push the new nodes and any users onto the worklist
622 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000623 if (To[i].getNode()) {
624 AddToWorkList(To[i].getNode());
625 AddUsersToWorkList(To[i].getNode());
626 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000627 }
628 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000629
Dan Gohmandbe664a2009-01-19 21:44:21 +0000630 // Finally, if the node is now dead, remove it from the graph. The node
631 // may not be dead if the replacement process recursively simplified to
632 // something else needing this node.
633 if (N->use_empty()) {
634 // Nodes can be reintroduced into the worklist. Make sure we do not
635 // process a node that has been replaced.
636 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000637
Dan Gohmandbe664a2009-01-19 21:44:21 +0000638 // Finally, since the node is now dead, remove it from the graph.
639 DAG.DeleteNode(N);
640 }
Dan Gohman475871a2008-07-27 21:46:04 +0000641 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000642}
643
Evan Chenge5b51ac2010-04-17 06:13:15 +0000644void DAGCombiner::
645CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000646 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000647 // are deleted, make sure to remove them from our worklist.
648 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000649 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000650
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000651 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000652 AddToWorkList(TLO.New.getNode());
653 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000654
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000655 // Finally, if the node is now dead, remove it from the graph. The node
656 // may not be dead if the replacement process recursively simplified to
657 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000658 if (TLO.Old.getNode()->use_empty()) {
659 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000660
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000661 // If the operands of this node are only used by the node, they will now
662 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000663 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
664 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
665 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000666
Gabor Greifba36cb52008-08-28 21:40:38 +0000667 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000668 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000669}
670
671/// SimplifyDemandedBits - Check the specified integer node value to see if
672/// it can be simplified or if things it uses can be simplified by bit
673/// propagation. If so, return true.
674bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000675 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000676 APInt KnownZero, KnownOne;
677 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
678 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000679
Dan Gohmane5af2d32009-01-29 01:59:02 +0000680 // Revisit the node.
681 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000682
Dan Gohmane5af2d32009-01-29 01:59:02 +0000683 // Replace the old value with the new one.
684 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000685 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000686 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000687 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000688 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000689 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000690
Dan Gohmane5af2d32009-01-29 01:59:02 +0000691 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000692 return true;
693}
694
Evan Cheng95c57ea2010-04-24 04:43:44 +0000695void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
696 DebugLoc dl = Load->getDebugLoc();
697 EVT VT = Load->getValueType(0);
698 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000699
Evan Cheng95c57ea2010-04-24 04:43:44 +0000700 DEBUG(dbgs() << "\nReplacing.9 ";
701 Load->dump(&DAG);
702 dbgs() << "\nWith: ";
703 Trunc.getNode()->dump(&DAG);
704 dbgs() << '\n');
705 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000706 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
707 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
Evan Cheng95c57ea2010-04-24 04:43:44 +0000708 removeFromWorkList(Load);
709 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000710 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000711}
712
713SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
714 Replace = false;
Evan Cheng4c26e932010-04-19 19:29:22 +0000715 DebugLoc dl = Op.getDebugLoc();
Evan Chenge5b51ac2010-04-17 06:13:15 +0000716 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000717 EVT MemVT = LD->getMemoryVT();
718 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000719 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000720 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000721 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000722 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000723 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000724 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000725 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000726 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000727 LD->isNonTemporal(), LD->getAlignment());
728 }
729
Evan Cheng4c26e932010-04-19 19:29:22 +0000730 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000731 switch (Opc) {
732 default: break;
733 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000734 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000735 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000736 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000737 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000738 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000739 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000740 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000741 case ISD::Constant: {
742 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000743 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000744 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000745 }
Evan Chengcaf77402010-04-23 19:10:30 +0000746 }
747
748 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000749 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000750 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000751}
752
Evan Cheng95c57ea2010-04-24 04:43:44 +0000753SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000754 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
755 return SDValue();
756 EVT OldVT = Op.getValueType();
757 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000758 bool Replace = false;
759 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
760 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000761 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000762 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000763
764 if (Replace)
765 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
766 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000767 DAG.getValueType(OldVT));
768}
769
Evan Cheng95c57ea2010-04-24 04:43:44 +0000770SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000771 EVT OldVT = Op.getValueType();
772 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000773 bool Replace = false;
774 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
775 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000776 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000777 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000778
779 if (Replace)
780 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
781 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000782}
783
Evan Cheng64b7bf72010-04-16 06:14:10 +0000784/// PromoteIntBinOp - Promote the specified integer binary operation if the
785/// target indicates it is beneficial. e.g. On x86, it's usually better to
786/// promote i16 operations to i32 since i16 instructions are longer.
787SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
788 if (!LegalOperations)
789 return SDValue();
790
791 EVT VT = Op.getValueType();
792 if (VT.isVector() || !VT.isInteger())
793 return SDValue();
794
Evan Chenge5b51ac2010-04-17 06:13:15 +0000795 // If operation type is 'undesirable', e.g. i16 on x86, consider
796 // promoting it.
797 unsigned Opc = Op.getOpcode();
798 if (TLI.isTypeDesirableForOp(Opc, VT))
799 return SDValue();
800
Evan Cheng64b7bf72010-04-16 06:14:10 +0000801 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000802 // Consult target whether it is a good idea to promote this operation and
803 // what's the right type to promote it to.
804 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000805 assert(PVT != VT && "Don't know what type to promote to!");
806
Evan Cheng95c57ea2010-04-24 04:43:44 +0000807 bool Replace0 = false;
808 SDValue N0 = Op.getOperand(0);
809 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
810 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000811 return SDValue();
812
Evan Cheng95c57ea2010-04-24 04:43:44 +0000813 bool Replace1 = false;
814 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000815 SDValue NN1;
816 if (N0 == N1)
817 NN1 = NN0;
818 else {
819 NN1 = PromoteOperand(N1, PVT, Replace1);
820 if (NN1.getNode() == 0)
821 return SDValue();
822 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000823
Evan Cheng95c57ea2010-04-24 04:43:44 +0000824 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000825 if (NN1.getNode())
826 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000827
828 if (Replace0)
829 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
830 if (Replace1)
831 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000832
Evan Chengac7eae52010-04-27 19:48:13 +0000833 DEBUG(dbgs() << "\nPromoting ";
834 Op.getNode()->dump(&DAG));
Evan Cheng07c4e102010-04-22 20:19:46 +0000835 DebugLoc dl = Op.getDebugLoc();
836 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000837 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000838 }
839 return SDValue();
840}
841
842/// PromoteIntShiftOp - Promote the specified integer shift operation if the
843/// target indicates it is beneficial. e.g. On x86, it's usually better to
844/// promote i16 operations to i32 since i16 instructions are longer.
845SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
846 if (!LegalOperations)
847 return SDValue();
848
849 EVT VT = Op.getValueType();
850 if (VT.isVector() || !VT.isInteger())
851 return SDValue();
852
853 // If operation type is 'undesirable', e.g. i16 on x86, consider
854 // promoting it.
855 unsigned Opc = Op.getOpcode();
856 if (TLI.isTypeDesirableForOp(Opc, VT))
857 return SDValue();
858
859 EVT PVT = VT;
860 // Consult target whether it is a good idea to promote this operation and
861 // what's the right type to promote it to.
862 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
863 assert(PVT != VT && "Don't know what type to promote to!");
864
Evan Cheng95c57ea2010-04-24 04:43:44 +0000865 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000866 SDValue N0 = Op.getOperand(0);
867 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000868 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000869 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000870 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000871 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000872 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000873 if (N0.getNode() == 0)
874 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000875
Evan Chenge5b51ac2010-04-17 06:13:15 +0000876 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000877 if (Replace)
878 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000879
Evan Chengac7eae52010-04-27 19:48:13 +0000880 DEBUG(dbgs() << "\nPromoting ";
881 Op.getNode()->dump(&DAG));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000882 DebugLoc dl = Op.getDebugLoc();
883 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000884 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000885 }
886 return SDValue();
887}
888
Evan Cheng4c26e932010-04-19 19:29:22 +0000889SDValue DAGCombiner::PromoteExtend(SDValue Op) {
890 if (!LegalOperations)
891 return SDValue();
892
893 EVT VT = Op.getValueType();
894 if (VT.isVector() || !VT.isInteger())
895 return SDValue();
896
897 // If operation type is 'undesirable', e.g. i16 on x86, consider
898 // promoting it.
899 unsigned Opc = Op.getOpcode();
900 if (TLI.isTypeDesirableForOp(Opc, VT))
901 return SDValue();
902
903 EVT PVT = VT;
904 // Consult target whether it is a good idea to promote this operation and
905 // what's the right type to promote it to.
906 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
907 assert(PVT != VT && "Don't know what type to promote to!");
908 // fold (aext (aext x)) -> (aext x)
909 // fold (aext (zext x)) -> (zext x)
910 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000911 DEBUG(dbgs() << "\nPromoting ";
912 Op.getNode()->dump(&DAG));
Evan Cheng4c26e932010-04-19 19:29:22 +0000913 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
914 }
915 return SDValue();
916}
917
918bool DAGCombiner::PromoteLoad(SDValue Op) {
919 if (!LegalOperations)
920 return false;
921
922 EVT VT = Op.getValueType();
923 if (VT.isVector() || !VT.isInteger())
924 return false;
925
926 // If operation type is 'undesirable', e.g. i16 on x86, consider
927 // promoting it.
928 unsigned Opc = Op.getOpcode();
929 if (TLI.isTypeDesirableForOp(Opc, VT))
930 return false;
931
932 EVT PVT = VT;
933 // Consult target whether it is a good idea to promote this operation and
934 // what's the right type to promote it to.
935 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
936 assert(PVT != VT && "Don't know what type to promote to!");
937
938 DebugLoc dl = Op.getDebugLoc();
939 SDNode *N = Op.getNode();
940 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000941 EVT MemVT = LD->getMemoryVT();
942 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000943 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000944 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000945 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000946 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000947 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000948 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000949 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000950 LD->isNonTemporal(), LD->getAlignment());
951 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
952
Evan Cheng95c57ea2010-04-24 04:43:44 +0000953 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000954 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000955 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000956 Result.getNode()->dump(&DAG);
957 dbgs() << '\n');
958 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000959 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
960 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
Evan Cheng4c26e932010-04-19 19:29:22 +0000961 removeFromWorkList(N);
962 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000963 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000964 return true;
965 }
966 return false;
967}
968
Evan Chenge5b51ac2010-04-17 06:13:15 +0000969
Chris Lattner29446522007-05-14 22:04:50 +0000970//===----------------------------------------------------------------------===//
971// Main DAG Combiner implementation
972//===----------------------------------------------------------------------===//
973
Duncan Sands25cf2272008-11-24 14:53:14 +0000974void DAGCombiner::Run(CombineLevel AtLevel) {
975 // set the instance variables, so that the various visit routines may use it.
976 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +0000977 LegalOperations = Level >= AfterLegalizeVectorOps;
978 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +0000979
Evan Cheng17a568b2008-08-29 22:21:44 +0000980 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +0000981 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
982 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +0000983 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +0000984
Evan Cheng17a568b2008-08-29 22:21:44 +0000985 // Create a dummy node (which is not added to allnodes), that adds a reference
986 // to the root node, preventing it from being deleted, and tracking any
987 // changes of the root.
988 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +0000989
Jim Laskey26f7fa72006-10-17 19:33:52 +0000990 // The root of the dag may dangle to deleted nodes until the dag combiner is
991 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +0000992 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +0000993
James Molloy6660c052012-02-16 09:17:04 +0000994 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +0000995 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +0000996 while (!WorkListContents.empty()) {
997 SDNode *N;
998 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
999 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1000 // worklist *should* contain, and check the node we want to visit is should
1001 // actually be visited.
1002 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001003 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001004 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001005
Evan Cheng17a568b2008-08-29 22:21:44 +00001006 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1007 // N is deleted from the DAG, since they too may now be dead or may have a
1008 // reduced number of uses, allowing other xforms.
1009 if (N->use_empty() && N != &Dummy) {
1010 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1011 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001012
Evan Cheng17a568b2008-08-29 22:21:44 +00001013 DAG.DeleteNode(N);
1014 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001015 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001016
Evan Cheng17a568b2008-08-29 22:21:44 +00001017 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001018
Evan Cheng17a568b2008-08-29 22:21:44 +00001019 if (RV.getNode() == 0)
1020 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001021
Evan Cheng17a568b2008-08-29 22:21:44 +00001022 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001023
Evan Cheng17a568b2008-08-29 22:21:44 +00001024 // If we get back the same node we passed in, rather than a new node or
1025 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001026 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001027 // mechanics for us, we have no work to do in this case.
1028 if (RV.getNode() == N)
1029 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001030
Evan Cheng17a568b2008-08-29 22:21:44 +00001031 assert(N->getOpcode() != ISD::DELETED_NODE &&
1032 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1033 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001034
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001035 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001036 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001037 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001038 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001039 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001040
Devang Patel9728ea22011-05-23 22:04:42 +00001041 // Transfer debug value.
1042 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001043 WorkListRemover DeadNodes(*this);
1044 if (N->getNumValues() == RV.getNode()->getNumValues())
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001045 DAG.ReplaceAllUsesWith(N, RV.getNode());
Evan Cheng17a568b2008-08-29 22:21:44 +00001046 else {
1047 assert(N->getValueType(0) == RV.getValueType() &&
1048 N->getNumValues() == 1 && "Type mismatch");
1049 SDValue OpV = RV;
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001050 DAG.ReplaceAllUsesWith(N, &OpV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001051 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001052
Evan Cheng17a568b2008-08-29 22:21:44 +00001053 // Push the new node and any users onto the worklist
1054 AddToWorkList(RV.getNode());
1055 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001056
Evan Cheng17a568b2008-08-29 22:21:44 +00001057 // Add any uses of the old node to the worklist in case this node is the
1058 // last one that uses them. They may become dead after this node is
1059 // deleted.
1060 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1061 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001062
Dan Gohmandbe664a2009-01-19 21:44:21 +00001063 // Finally, if the node is now dead, remove it from the graph. The node
1064 // may not be dead if the replacement process recursively simplified to
1065 // something else needing this node.
1066 if (N->use_empty()) {
1067 // Nodes can be reintroduced into the worklist. Make sure we do not
1068 // process a node that has been replaced.
1069 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001070
Dan Gohmandbe664a2009-01-19 21:44:21 +00001071 // Finally, since the node is now dead, remove it from the graph.
1072 DAG.DeleteNode(N);
1073 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001074 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001075
Chris Lattner95038592005-10-05 06:35:28 +00001076 // If the root changed (e.g. it was a dead load, update the root).
1077 DAG.setRoot(Dummy.getValue());
Hal Finkel31490ba2012-04-16 03:33:22 +00001078 DAG.RemoveDeadNodes();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001079}
1080
Dan Gohman475871a2008-07-27 21:46:04 +00001081SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001082 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001083 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001084 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001085 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001086 case ISD::ADD: return visitADD(N);
1087 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001088 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001089 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001090 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001091 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001092 case ISD::MUL: return visitMUL(N);
1093 case ISD::SDIV: return visitSDIV(N);
1094 case ISD::UDIV: return visitUDIV(N);
1095 case ISD::SREM: return visitSREM(N);
1096 case ISD::UREM: return visitUREM(N);
1097 case ISD::MULHU: return visitMULHU(N);
1098 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001099 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1100 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001101 case ISD::SMULO: return visitSMULO(N);
1102 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001103 case ISD::SDIVREM: return visitSDIVREM(N);
1104 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001105 case ISD::AND: return visitAND(N);
1106 case ISD::OR: return visitOR(N);
1107 case ISD::XOR: return visitXOR(N);
1108 case ISD::SHL: return visitSHL(N);
1109 case ISD::SRA: return visitSRA(N);
1110 case ISD::SRL: return visitSRL(N);
1111 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001112 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001113 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001114 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001115 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001116 case ISD::SELECT: return visitSELECT(N);
1117 case ISD::SELECT_CC: return visitSELECT_CC(N);
1118 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001119 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1120 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001121 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001122 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1123 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001124 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001125 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001126 case ISD::FADD: return visitFADD(N);
1127 case ISD::FSUB: return visitFSUB(N);
1128 case ISD::FMUL: return visitFMUL(N);
1129 case ISD::FDIV: return visitFDIV(N);
1130 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001131 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001132 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1133 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1134 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1135 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1136 case ISD::FP_ROUND: return visitFP_ROUND(N);
1137 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1138 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1139 case ISD::FNEG: return visitFNEG(N);
1140 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001141 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001142 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001143 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001144 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001145 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001146 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001147 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1148 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001149 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001150 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001151 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001152 }
Dan Gohman475871a2008-07-27 21:46:04 +00001153 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001154}
1155
Dan Gohman475871a2008-07-27 21:46:04 +00001156SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001157 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001158
1159 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001160 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001161 assert(N->getOpcode() != ISD::DELETED_NODE &&
1162 "Node was deleted but visit returned NULL!");
1163
1164 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1165 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1166
1167 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001168 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001169 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001170
1171 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1172 }
1173 }
1174
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001175 // If nothing happened still, try promoting the operation.
1176 if (RV.getNode() == 0) {
1177 switch (N->getOpcode()) {
1178 default: break;
1179 case ISD::ADD:
1180 case ISD::SUB:
1181 case ISD::MUL:
1182 case ISD::AND:
1183 case ISD::OR:
1184 case ISD::XOR:
1185 RV = PromoteIntBinOp(SDValue(N, 0));
1186 break;
1187 case ISD::SHL:
1188 case ISD::SRA:
1189 case ISD::SRL:
1190 RV = PromoteIntShiftOp(SDValue(N, 0));
1191 break;
1192 case ISD::SIGN_EXTEND:
1193 case ISD::ZERO_EXTEND:
1194 case ISD::ANY_EXTEND:
1195 RV = PromoteExtend(SDValue(N, 0));
1196 break;
1197 case ISD::LOAD:
1198 if (PromoteLoad(SDValue(N, 0)))
1199 RV = SDValue(N, 0);
1200 break;
1201 }
1202 }
1203
Scott Michelfdc40a02009-02-17 22:15:04 +00001204 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001205 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001206 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001207 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1208 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001209 SDValue N0 = N->getOperand(0);
1210 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001211
Evan Cheng08b11732008-03-22 01:55:50 +00001212 // Constant operands are canonicalized to RHS.
1213 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001214 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001215 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1216 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001217 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001218 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001219 }
1220 }
1221
Dan Gohman389079b2007-10-08 17:57:15 +00001222 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001223}
Dan Gohman389079b2007-10-08 17:57:15 +00001224
Chris Lattner6270f682006-10-08 22:57:01 +00001225/// getInputChainForNode - Given a node, return its input chain if it has one,
1226/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001227static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001228 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001229 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001230 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001231 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001232 return N->getOperand(NumOps-1);
1233 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001234 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001235 return N->getOperand(i);
1236 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001237 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001238}
1239
Dan Gohman475871a2008-07-27 21:46:04 +00001240SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001241 // If N has two operands, where one has an input chain equal to the other,
1242 // the 'other' chain is redundant.
1243 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001244 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001245 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001246 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001247 return N->getOperand(1);
1248 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001249
Chris Lattnerc76d4412007-05-16 06:37:59 +00001250 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001251 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001252 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001253 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001254
Jim Laskey6ff23e52006-10-04 16:53:27 +00001255 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001256 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001257
Jim Laskey71382342006-10-07 23:37:56 +00001258 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001259 // encountered.
1260 for (unsigned i = 0; i < TFs.size(); ++i) {
1261 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001262
Jim Laskey6ff23e52006-10-04 16:53:27 +00001263 // Check each of the operands.
1264 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001265 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001266
Jim Laskey6ff23e52006-10-04 16:53:27 +00001267 switch (Op.getOpcode()) {
1268 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001269 // Entry tokens don't need to be added to the list. They are
1270 // rededundant.
1271 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001272 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001273
Jim Laskey6ff23e52006-10-04 16:53:27 +00001274 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001275 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001276 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001277 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001278 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001279 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001280 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001281 Changed = true;
1282 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001283 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001284 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001285
Jim Laskey6ff23e52006-10-04 16:53:27 +00001286 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001287 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001288 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001289 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001290 else
1291 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001292 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001293 }
1294 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001295 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001296
Dan Gohman475871a2008-07-27 21:46:04 +00001297 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001298
1299 // If we've change things around then replace token factor.
1300 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001301 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001302 // The entry token is the only possible outcome.
1303 Result = DAG.getEntryNode();
1304 } else {
1305 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001306 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001307 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001308 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001309
Jim Laskey274062c2006-10-13 23:32:28 +00001310 // Don't add users to work list.
1311 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001312 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001313
Jim Laskey6ff23e52006-10-04 16:53:27 +00001314 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001315}
1316
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001317/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001318SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001319 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001320 // Replacing results may cause a different MERGE_VALUES to suddenly
1321 // be CSE'd with N, and carry its uses with it. Iterate until no
1322 // uses remain, to ensure that the node can be safely deleted.
1323 do {
1324 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001325 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
Dan Gohman00edf392009-08-10 23:43:19 +00001326 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001327 removeFromWorkList(N);
1328 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001329 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001330}
1331
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001332static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001333SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1334 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001335 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001336 SDValue N00 = N0.getOperand(0);
1337 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001338 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001339
Gabor Greifba36cb52008-08-28 21:40:38 +00001340 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001341 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001342 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1343 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1344 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1345 N00.getOperand(0), N01),
1346 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1347 N00.getOperand(1), N01));
1348 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001349 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001350
Dan Gohman475871a2008-07-27 21:46:04 +00001351 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001352}
1353
Dan Gohman475871a2008-07-27 21:46:04 +00001354SDValue DAGCombiner::visitADD(SDNode *N) {
1355 SDValue N0 = N->getOperand(0);
1356 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001357 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1358 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001359 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001360
1361 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001362 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001363 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001364 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001365 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001366
Dan Gohman613e0d82007-07-03 14:03:57 +00001367 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001368 if (N0.getOpcode() == ISD::UNDEF)
1369 return N0;
1370 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001371 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001372 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001373 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001374 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001375 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001376 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001377 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001378 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001379 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001380 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001381 // fold (add Sym, c) -> Sym+c
1382 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001383 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001384 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001385 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001386 GA->getOffset() +
1387 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001388 // fold ((c1-A)+c2) -> (c1+c2)-A
1389 if (N1C && N0.getOpcode() == ISD::SUB)
1390 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001391 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001392 DAG.getConstant(N1C->getAPIntValue()+
1393 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001394 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001395 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001396 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001397 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001398 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001399 // fold ((0-A) + B) -> B-A
1400 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1401 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001402 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001403 // fold (A + (0-B)) -> A-B
1404 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1405 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001406 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001407 // fold (A+(B-A)) -> B
1408 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001409 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001410 // fold ((B-A)+A) -> B
1411 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1412 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001413 // fold (A+(B-(A+C))) to (B-C)
1414 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001415 N0 == N1.getOperand(1).getOperand(0))
1416 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001417 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001418 // fold (A+(B-(C+A))) 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(1))
1421 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001422 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001423 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001424 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1425 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001426 N0 == N1.getOperand(0).getOperand(1))
1427 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1428 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001429
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001430 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1431 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1432 SDValue N00 = N0.getOperand(0);
1433 SDValue N01 = N0.getOperand(1);
1434 SDValue N10 = N1.getOperand(0);
1435 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001436
1437 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1438 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1439 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1440 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001441 }
Chris Lattner947c2892006-03-13 06:51:27 +00001442
Dan Gohman475871a2008-07-27 21:46:04 +00001443 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1444 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001445
Chris Lattner947c2892006-03-13 06:51:27 +00001446 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001447 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001448 APInt LHSZero, LHSOne;
1449 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001450 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001451
Dan Gohman948d8ea2008-02-20 16:33:30 +00001452 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001453 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001454
Chris Lattner947c2892006-03-13 06:51:27 +00001455 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1456 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001457 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001458 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001459 }
1460 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001461
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001462 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001463 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001464 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001465 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001466 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001467 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001468 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001469 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001470 }
1471
Dan Gohmancd9e1552010-01-19 23:30:49 +00001472 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1473 if (N1.getOpcode() == ISD::SHL &&
1474 N1.getOperand(0).getOpcode() == ISD::SUB)
1475 if (ConstantSDNode *C =
1476 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1477 if (C->getAPIntValue() == 0)
1478 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1479 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1480 N1.getOperand(0).getOperand(1),
1481 N1.getOperand(1)));
1482 if (N0.getOpcode() == ISD::SHL &&
1483 N0.getOperand(0).getOpcode() == ISD::SUB)
1484 if (ConstantSDNode *C =
1485 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1486 if (C->getAPIntValue() == 0)
1487 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1488 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1489 N0.getOperand(0).getOperand(1),
1490 N0.getOperand(1)));
1491
Owen Andersonbc146b02010-09-21 20:42:50 +00001492 if (N1.getOpcode() == ISD::AND) {
1493 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001494 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001495 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1496 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001497
Owen Andersonbc146b02010-09-21 20:42:50 +00001498 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1499 // and similar xforms where the inner op is either ~0 or 0.
1500 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1501 DebugLoc DL = N->getDebugLoc();
1502 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1503 }
1504 }
1505
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001506 // add (sext i1), X -> sub X, (zext i1)
1507 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1508 N0.getOperand(0).getValueType() == MVT::i1 &&
1509 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1510 DebugLoc DL = N->getDebugLoc();
1511 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1512 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1513 }
1514
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001515 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001516}
1517
Dan Gohman475871a2008-07-27 21:46:04 +00001518SDValue DAGCombiner::visitADDC(SDNode *N) {
1519 SDValue N0 = N->getOperand(0);
1520 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001521 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1522 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001523 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001524
Chris Lattner91153682007-03-04 20:03:15 +00001525 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001526 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001527 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001528 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001529 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001530
Chris Lattner91153682007-03-04 20:03:15 +00001531 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001532 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001533 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001534
Chris Lattnerb6541762007-03-04 20:40:38 +00001535 // fold (addc x, 0) -> x + no carry out
1536 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001537 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001538 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001539
Dale Johannesen874ae252009-06-02 03:12:52 +00001540 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001541 APInt LHSZero, LHSOne;
1542 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001543 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001544
Dan Gohman948d8ea2008-02-20 16:33:30 +00001545 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001546 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001547
Chris Lattnerb6541762007-03-04 20:40:38 +00001548 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1549 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001550 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendling14036c02009-01-30 02:38:00 +00001551 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001552 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001553 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001554 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001555
Dan Gohman475871a2008-07-27 21:46:04 +00001556 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001557}
1558
Dan Gohman475871a2008-07-27 21:46:04 +00001559SDValue DAGCombiner::visitADDE(SDNode *N) {
1560 SDValue N0 = N->getOperand(0);
1561 SDValue N1 = N->getOperand(1);
1562 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001563 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1564 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001565
Chris Lattner91153682007-03-04 20:03:15 +00001566 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001567 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001568 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1569 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001570
Chris Lattnerb6541762007-03-04 20:40:38 +00001571 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001572 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001573 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001574
Dan Gohman475871a2008-07-27 21:46:04 +00001575 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001576}
1577
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001578// Since it may not be valid to emit a fold to zero for vector initializers
1579// check if we can before folding.
1580static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001581 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001582 if (!VT.isVector()) {
1583 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001584 }
1585 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001586 // Produce a vector of zeros.
1587 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1588 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1589 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1590 &Ops[0], Ops.size());
1591 }
1592 return SDValue();
1593}
1594
Dan Gohman475871a2008-07-27 21:46:04 +00001595SDValue DAGCombiner::visitSUB(SDNode *N) {
1596 SDValue N0 = N->getOperand(0);
1597 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001598 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1599 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001600 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1601 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001602 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001603
Dan Gohman7f321562007-06-25 16:23:39 +00001604 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001605 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001606 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001607 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001608 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001609
Chris Lattner854077d2005-10-17 01:07:11 +00001610 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001611 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001612 if (N0 == N1)
1613 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001614 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001615 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001616 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001617 // fold (sub x, c) -> (add x, -c)
1618 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001619 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001620 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001621 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1622 if (N0C && N0C->isAllOnesValue())
1623 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001624 // fold A-(A-B) -> B
1625 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1626 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001627 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001628 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001629 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001630 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001631 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001632 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001633 // fold C2-(A+C1) -> (C2-C1)-A
1634 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
1635 SDValue NewC = DAG.getConstant((N0C->getAPIntValue() - N1C1->getAPIntValue()), VT);
1636 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
1637 N1.getOperand(0));
1638 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001639 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001640 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001641 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1642 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001643 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001644 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1645 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001646 // fold ((A+(C+B))-B) -> A+C
1647 if (N0.getOpcode() == ISD::ADD &&
1648 N0.getOperand(1).getOpcode() == ISD::ADD &&
1649 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001650 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1651 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001652 // fold ((A-(B-C))-C) -> A-B
1653 if (N0.getOpcode() == ISD::SUB &&
1654 N0.getOperand(1).getOpcode() == ISD::SUB &&
1655 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001656 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1657 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001658
Dan Gohman613e0d82007-07-03 14:03:57 +00001659 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001660 if (N0.getOpcode() == ISD::UNDEF)
1661 return N0;
1662 if (N1.getOpcode() == ISD::UNDEF)
1663 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001664
Dan Gohman6520e202008-10-18 02:06:02 +00001665 // If the relocation model supports it, consider symbol offsets.
1666 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001667 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001668 // fold (sub Sym, c) -> Sym-c
1669 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001670 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001671 GA->getOffset() -
1672 (uint64_t)N1C->getSExtValue());
1673 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1674 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1675 if (GA->getGlobal() == GB->getGlobal())
1676 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1677 VT);
1678 }
1679
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001680 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001681}
1682
Craig Toppercc274522012-01-07 09:06:39 +00001683SDValue DAGCombiner::visitSUBC(SDNode *N) {
1684 SDValue N0 = N->getOperand(0);
1685 SDValue N1 = N->getOperand(1);
1686 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1687 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1688 EVT VT = N0.getValueType();
1689
1690 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001691 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001692 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1693 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1694 MVT::Glue));
1695
1696 // fold (subc x, x) -> 0 + no borrow
1697 if (N0 == N1)
1698 return CombineTo(N, DAG.getConstant(0, VT),
1699 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1700 MVT::Glue));
1701
1702 // fold (subc x, 0) -> x + no borrow
1703 if (N1C && N1C->isNullValue())
1704 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1705 MVT::Glue));
1706
1707 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1708 if (N0C && N0C->isAllOnesValue())
1709 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1710 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1711 MVT::Glue));
1712
1713 return SDValue();
1714}
1715
1716SDValue DAGCombiner::visitSUBE(SDNode *N) {
1717 SDValue N0 = N->getOperand(0);
1718 SDValue N1 = N->getOperand(1);
1719 SDValue CarryIn = N->getOperand(2);
1720
1721 // fold (sube x, y, false) -> (subc x, y)
1722 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1723 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1724
1725 return SDValue();
1726}
1727
Dan Gohman475871a2008-07-27 21:46:04 +00001728SDValue DAGCombiner::visitMUL(SDNode *N) {
1729 SDValue N0 = N->getOperand(0);
1730 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001731 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1732 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001733 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001734
Dan Gohman7f321562007-06-25 16:23:39 +00001735 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001736 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001737 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001738 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001739 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001740
Dan Gohman613e0d82007-07-03 14:03:57 +00001741 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001742 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001743 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001744 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001745 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001746 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001747 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001748 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001749 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001750 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001751 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001752 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001753 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001754 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001755 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1756 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001757 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001758 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001759 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001760 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001761 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001762 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001763 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1764 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001765 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001766 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001767 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1768 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001769 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001770 DAG.getConstant(Log2Val,
1771 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001772 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001773 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001774 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001775 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001776 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1777 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001778 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001779 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1780 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001781 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001782
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001783 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1784 // use.
1785 {
Dan Gohman475871a2008-07-27 21:46:04 +00001786 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001787 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1788 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001789 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001790 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001791 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001792 isa<ConstantSDNode>(N1.getOperand(1)) &&
1793 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001794 Sh = N1; Y = N0;
1795 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001796
Gabor Greifba36cb52008-08-28 21:40:38 +00001797 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001798 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1799 Sh.getOperand(0), Y);
1800 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1801 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001802 }
1803 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001804
Chris Lattnera1deca32006-03-04 23:33:26 +00001805 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001806 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001807 isa<ConstantSDNode>(N0.getOperand(1)))
1808 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1809 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1810 N0.getOperand(0), N1),
1811 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1812 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001813
Nate Begemancd4d58c2006-02-03 06:46:56 +00001814 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001815 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001816 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001817 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001818
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001819 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001820}
1821
Dan Gohman475871a2008-07-27 21:46:04 +00001822SDValue DAGCombiner::visitSDIV(SDNode *N) {
1823 SDValue N0 = N->getOperand(0);
1824 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001825 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1826 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001827 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001828
Dan Gohman7f321562007-06-25 16:23:39 +00001829 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001830 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001831 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001832 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001833 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001834
Nate Begeman1d4d4142005-09-01 00:19:25 +00001835 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001836 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001837 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001838 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001839 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001840 return N0;
1841 // fold (sdiv X, -1) -> 0-X
1842 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001843 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1844 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001845 // If we know the sign bits of both operands are zero, strength reduce to a
1846 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001847 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001848 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001849 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1850 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001851 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001852 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001853 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001854 (N1C->getAPIntValue().isPowerOf2() ||
1855 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001856 // If dividing by powers of two is cheap, then don't perform the following
1857 // fold.
1858 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001859 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001860
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001861 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001862
Chris Lattner8f4880b2006-02-16 08:02:36 +00001863 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001864 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1865 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001866 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001867 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001868
Chris Lattner8f4880b2006-02-16 08:02:36 +00001869 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001870 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1871 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001872 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001873 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001874 AddToWorkList(SRL.getNode());
1875 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001876 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001877 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001878
Nate Begeman405e3ec2005-10-21 00:02:42 +00001879 // If we're dividing by a positive value, we're done. Otherwise, we must
1880 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001881 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001882 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001883
Gabor Greifba36cb52008-08-28 21:40:38 +00001884 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001885 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1886 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001887 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001888
Nate Begeman69575232005-10-20 02:15:44 +00001889 // if integer divide is expensive and we satisfy the requirements, emit an
1890 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001891 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001892 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001893 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001894 }
Dan Gohman7f321562007-06-25 16:23:39 +00001895
Dan Gohman613e0d82007-07-03 14:03:57 +00001896 // undef / X -> 0
1897 if (N0.getOpcode() == ISD::UNDEF)
1898 return DAG.getConstant(0, VT);
1899 // X / undef -> undef
1900 if (N1.getOpcode() == ISD::UNDEF)
1901 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001902
Dan Gohman475871a2008-07-27 21:46:04 +00001903 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001904}
1905
Dan Gohman475871a2008-07-27 21:46:04 +00001906SDValue DAGCombiner::visitUDIV(SDNode *N) {
1907 SDValue N0 = N->getOperand(0);
1908 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001909 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1910 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001911 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001912
Dan Gohman7f321562007-06-25 16:23:39 +00001913 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001914 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001915 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001916 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001917 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001918
Nate Begeman1d4d4142005-09-01 00:19:25 +00001919 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001920 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001921 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001922 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001923 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001924 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001925 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001926 getShiftAmountTy(N0.getValueType())));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001927 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1928 if (N1.getOpcode() == ISD::SHL) {
1929 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001930 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001931 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001932 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1933 N1.getOperand(1),
1934 DAG.getConstant(SHC->getAPIntValue()
1935 .logBase2(),
1936 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001937 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001938 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001939 }
1940 }
1941 }
Nate Begeman69575232005-10-20 02:15:44 +00001942 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001943 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001944 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001945 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001946 }
Dan Gohman7f321562007-06-25 16:23:39 +00001947
Dan Gohman613e0d82007-07-03 14:03:57 +00001948 // undef / X -> 0
1949 if (N0.getOpcode() == ISD::UNDEF)
1950 return DAG.getConstant(0, VT);
1951 // X / undef -> undef
1952 if (N1.getOpcode() == ISD::UNDEF)
1953 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001954
Dan Gohman475871a2008-07-27 21:46:04 +00001955 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001956}
1957
Dan Gohman475871a2008-07-27 21:46:04 +00001958SDValue DAGCombiner::visitSREM(SDNode *N) {
1959 SDValue N0 = N->getOperand(0);
1960 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001961 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1962 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001963 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001964
Nate Begeman1d4d4142005-09-01 00:19:25 +00001965 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001966 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001967 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001968 // If we know the sign bits of both operands are zero, strength reduce to a
1969 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001970 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001971 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001972 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00001973 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001974
Dan Gohman77003042007-11-26 23:46:11 +00001975 // If X/C can be simplified by the division-by-constant logic, lower
1976 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001977 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001978 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001979 AddToWorkList(Div.getNode());
1980 SDValue OptimizedDiv = combine(Div.getNode());
1981 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001982 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1983 OptimizedDiv, N1);
1984 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00001985 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00001986 return Sub;
1987 }
Chris Lattner26d29902006-10-12 20:58:32 +00001988 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001989
Dan Gohman613e0d82007-07-03 14:03:57 +00001990 // undef % X -> 0
1991 if (N0.getOpcode() == ISD::UNDEF)
1992 return DAG.getConstant(0, VT);
1993 // X % undef -> undef
1994 if (N1.getOpcode() == ISD::UNDEF)
1995 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001996
Dan Gohman475871a2008-07-27 21:46:04 +00001997 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001998}
1999
Dan Gohman475871a2008-07-27 21:46:04 +00002000SDValue DAGCombiner::visitUREM(SDNode *N) {
2001 SDValue N0 = N->getOperand(0);
2002 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002003 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2004 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002005 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002006
Nate Begeman1d4d4142005-09-01 00:19:25 +00002007 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002008 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002009 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002010 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002011 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002012 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002013 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002014 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2015 if (N1.getOpcode() == ISD::SHL) {
2016 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002017 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002018 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002019 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002020 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002021 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002022 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002023 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002024 }
2025 }
2026 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002027
Dan Gohman77003042007-11-26 23:46:11 +00002028 // If X/C can be simplified by the division-by-constant logic, lower
2029 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002030 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002031 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002032 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002033 SDValue OptimizedDiv = combine(Div.getNode());
2034 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002035 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2036 OptimizedDiv, N1);
2037 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002038 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002039 return Sub;
2040 }
Chris Lattner26d29902006-10-12 20:58:32 +00002041 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002042
Dan Gohman613e0d82007-07-03 14:03:57 +00002043 // undef % X -> 0
2044 if (N0.getOpcode() == ISD::UNDEF)
2045 return DAG.getConstant(0, VT);
2046 // X % undef -> undef
2047 if (N1.getOpcode() == ISD::UNDEF)
2048 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002049
Dan Gohman475871a2008-07-27 21:46:04 +00002050 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002051}
2052
Dan Gohman475871a2008-07-27 21:46:04 +00002053SDValue DAGCombiner::visitMULHS(SDNode *N) {
2054 SDValue N0 = N->getOperand(0);
2055 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002056 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002057 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002058 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002059
Nate Begeman1d4d4142005-09-01 00:19:25 +00002060 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002061 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002062 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002063 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002064 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002065 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2066 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002067 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002068 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002069 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002070 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002071
Chris Lattnerde1c3602010-12-13 08:39:01 +00002072 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2073 // plus a shift.
2074 if (VT.isSimple() && !VT.isVector()) {
2075 MVT Simple = VT.getSimpleVT();
2076 unsigned SimpleSize = Simple.getSizeInBits();
2077 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2078 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2079 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2080 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2081 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002082 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002083 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002084 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2085 }
2086 }
Owen Anderson95771af2011-02-25 21:41:48 +00002087
Dan Gohman475871a2008-07-27 21:46:04 +00002088 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002089}
2090
Dan Gohman475871a2008-07-27 21:46:04 +00002091SDValue DAGCombiner::visitMULHU(SDNode *N) {
2092 SDValue N0 = N->getOperand(0);
2093 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002094 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002095 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002096 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002097
Nate Begeman1d4d4142005-09-01 00:19:25 +00002098 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002099 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002100 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002101 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002102 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002103 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002104 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002105 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002106 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002107
Chris Lattnerde1c3602010-12-13 08:39:01 +00002108 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2109 // plus a shift.
2110 if (VT.isSimple() && !VT.isVector()) {
2111 MVT Simple = VT.getSimpleVT();
2112 unsigned SimpleSize = Simple.getSizeInBits();
2113 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2114 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2115 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2116 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2117 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2118 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002119 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002120 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2121 }
2122 }
Owen Anderson95771af2011-02-25 21:41:48 +00002123
Dan Gohman475871a2008-07-27 21:46:04 +00002124 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002125}
2126
Dan Gohman389079b2007-10-08 17:57:15 +00002127/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2128/// compute two values. LoOp and HiOp give the opcodes for the two computations
2129/// that are being performed. Return true if a simplification was made.
2130///
Scott Michelfdc40a02009-02-17 22:15:04 +00002131SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002132 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002133 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002134 bool HiExists = N->hasAnyUseOfValue(1);
2135 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002136 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002137 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002138 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2139 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002140 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002141 }
2142
2143 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002144 bool LoExists = N->hasAnyUseOfValue(0);
2145 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002146 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002147 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002148 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2149 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002150 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002151 }
2152
Evan Cheng44711942007-11-08 09:25:29 +00002153 // If both halves are used, return as it is.
2154 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002155 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002156
2157 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002158 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002159 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2160 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002161 AddToWorkList(Lo.getNode());
2162 SDValue LoOpt = combine(Lo.getNode());
2163 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002164 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002165 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002166 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002167 }
2168
Evan Cheng44711942007-11-08 09:25:29 +00002169 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002170 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002171 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002172 AddToWorkList(Hi.getNode());
2173 SDValue HiOpt = combine(Hi.getNode());
2174 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002175 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002176 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002177 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002178 }
Bill Wendling826d1142009-01-30 03:08:40 +00002179
Dan Gohman475871a2008-07-27 21:46:04 +00002180 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002181}
2182
Dan Gohman475871a2008-07-27 21:46:04 +00002183SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2184 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002185 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002186
Chris Lattner33e77d32010-12-15 06:04:19 +00002187 EVT VT = N->getValueType(0);
2188 DebugLoc DL = N->getDebugLoc();
2189
2190 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2191 // plus a shift.
2192 if (VT.isSimple() && !VT.isVector()) {
2193 MVT Simple = VT.getSimpleVT();
2194 unsigned SimpleSize = Simple.getSizeInBits();
2195 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2196 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2197 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2198 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2199 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2200 // Compute the high part as N1.
2201 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002202 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002203 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2204 // Compute the low part as N0.
2205 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2206 return CombineTo(N, Lo, Hi);
2207 }
2208 }
Owen Anderson95771af2011-02-25 21:41:48 +00002209
Dan Gohman475871a2008-07-27 21:46:04 +00002210 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002211}
2212
Dan Gohman475871a2008-07-27 21:46:04 +00002213SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2214 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002215 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002216
Chris Lattner33e77d32010-12-15 06:04:19 +00002217 EVT VT = N->getValueType(0);
2218 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002219
Chris Lattner33e77d32010-12-15 06:04:19 +00002220 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2221 // plus a shift.
2222 if (VT.isSimple() && !VT.isVector()) {
2223 MVT Simple = VT.getSimpleVT();
2224 unsigned SimpleSize = Simple.getSizeInBits();
2225 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2226 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2227 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2228 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2229 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2230 // Compute the high part as N1.
2231 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002232 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002233 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2234 // Compute the low part as N0.
2235 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2236 return CombineTo(N, Lo, Hi);
2237 }
2238 }
Owen Anderson95771af2011-02-25 21:41:48 +00002239
Dan Gohman475871a2008-07-27 21:46:04 +00002240 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002241}
2242
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002243SDValue DAGCombiner::visitSMULO(SDNode *N) {
2244 // (smulo x, 2) -> (saddo x, x)
2245 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2246 if (C2->getAPIntValue() == 2)
2247 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2248 N->getOperand(0), N->getOperand(0));
2249
2250 return SDValue();
2251}
2252
2253SDValue DAGCombiner::visitUMULO(SDNode *N) {
2254 // (umulo x, 2) -> (uaddo x, x)
2255 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2256 if (C2->getAPIntValue() == 2)
2257 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2258 N->getOperand(0), N->getOperand(0));
2259
2260 return SDValue();
2261}
2262
Dan Gohman475871a2008-07-27 21:46:04 +00002263SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2264 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002265 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002266
Dan Gohman475871a2008-07-27 21:46:04 +00002267 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002268}
2269
Dan Gohman475871a2008-07-27 21:46:04 +00002270SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2271 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002272 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002273
Dan Gohman475871a2008-07-27 21:46:04 +00002274 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002275}
2276
Chris Lattner35e5c142006-05-05 05:51:50 +00002277/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2278/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002279SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2280 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002281 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002282 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002283
Dan Gohmanff00a552010-01-14 03:08:49 +00002284 // Bail early if none of these transforms apply.
2285 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2286
Chris Lattner540121f2006-05-05 06:31:05 +00002287 // For each of OP in AND/OR/XOR:
2288 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2289 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2290 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002291 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002292 //
2293 // do not sink logical op inside of a vector extend, since it may combine
2294 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002295 EVT Op0VT = N0.getOperand(0).getValueType();
2296 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002297 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002298 // Avoid infinite looping with PromoteIntBinOp.
2299 (N0.getOpcode() == ISD::ANY_EXTEND &&
2300 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002301 (N0.getOpcode() == ISD::TRUNCATE &&
2302 (!TLI.isZExtFree(VT, Op0VT) ||
2303 !TLI.isTruncateFree(Op0VT, VT)) &&
2304 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002305 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002306 Op0VT == N1.getOperand(0).getValueType() &&
2307 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002308 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2309 N0.getOperand(0).getValueType(),
2310 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002311 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002312 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002313 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002314
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002315 // For each of OP in SHL/SRL/SRA/AND...
2316 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2317 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2318 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002319 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002320 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002321 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002322 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2323 N0.getOperand(0).getValueType(),
2324 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002325 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002326 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2327 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002328 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002329
Nadav Rotem4ac90812012-04-01 19:31:22 +00002330 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2331 // Only perform this optimization after type legalization and before
2332 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2333 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2334 // we don't want to undo this promotion.
2335 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2336 // on scalars.
2337 if ((N0.getOpcode() == ISD::BITCAST || N0.getOpcode() == ISD::SCALAR_TO_VECTOR)
2338 && Level == AfterLegalizeVectorOps) {
2339 SDValue In0 = N0.getOperand(0);
2340 SDValue In1 = N1.getOperand(0);
2341 EVT In0Ty = In0.getValueType();
2342 EVT In1Ty = In1.getValueType();
2343 // If both incoming values are integers, and the original types are the same.
2344 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
2345 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), In0Ty, In0, In1);
2346 SDValue BC = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, Op);
2347 AddToWorkList(Op.getNode());
2348 return BC;
2349 }
2350 }
2351
2352 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2353 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2354 // If both shuffles use the same mask, and both shuffle within a single
2355 // vector, then it is worthwhile to move the swizzle after the operation.
2356 // The type-legalizer generates this pattern when loading illegal
2357 // vector types from memory. In many cases this allows additional shuffle
2358 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002359 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2360 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2361 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002362 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2363 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002364
2365 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2366 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002367
2368 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002369
2370 // Check that both shuffles use the same mask. The masks are known to be of
2371 // the same length because the result vector type is the same.
2372 bool SameMask = true;
2373 for (unsigned i = 0; i != NumElts; ++i) {
2374 int Idx0 = SVN0->getMaskElt(i);
2375 int Idx1 = SVN1->getMaskElt(i);
2376 if (Idx0 != Idx1) {
2377 SameMask = false;
2378 break;
2379 }
2380 }
2381
Craig Topperf9204232012-04-09 07:19:09 +00002382 if (SameMask) {
2383 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT,
2384 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002385 AddToWorkList(Op.getNode());
Craig Topperf9204232012-04-09 07:19:09 +00002386 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op,
2387 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002388 }
2389 }
Craig Topperf9204232012-04-09 07:19:09 +00002390
Dan Gohman475871a2008-07-27 21:46:04 +00002391 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002392}
2393
Dan Gohman475871a2008-07-27 21:46:04 +00002394SDValue DAGCombiner::visitAND(SDNode *N) {
2395 SDValue N0 = N->getOperand(0);
2396 SDValue N1 = N->getOperand(1);
2397 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002398 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2399 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002400 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002401 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002402
Dan Gohman7f321562007-06-25 16:23:39 +00002403 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002404 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002405 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002406 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002407 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002408
Dan Gohman613e0d82007-07-03 14:03:57 +00002409 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002410 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002411 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002412 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002413 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002414 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002415 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002416 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002417 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002418 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002419 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002420 return N0;
2421 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002422 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002423 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002424 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002425 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002426 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002427 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002428 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002429 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002430 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002431 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002432 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002433 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002434 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2435 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002436 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002437 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002438 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002439 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002440 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2441 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002442
Chris Lattner1ec05d12006-03-01 21:47:21 +00002443 // Replace uses of the AND with uses of the Zero extend node.
2444 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002445
Chris Lattner3603cd62006-02-02 07:17:31 +00002446 // We actually want to replace all uses of the any_extend with the
2447 // zero_extend, to avoid duplicating things. This will later cause this
2448 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002449 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002450 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002451 }
2452 }
James Molloy6259dcd2012-02-20 12:02:38 +00002453 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2454 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2455 // already be zero by virtue of the width of the base type of the load.
2456 //
2457 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2458 // more cases.
2459 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2460 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2461 N0.getOpcode() == ISD::LOAD) {
2462 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2463 N0 : N0.getOperand(0) );
2464
2465 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2466 // This can be a pure constant or a vector splat, in which case we treat the
2467 // vector as a scalar and use the splat value.
2468 APInt Constant = APInt::getNullValue(1);
2469 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2470 Constant = C->getAPIntValue();
2471 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2472 APInt SplatValue, SplatUndef;
2473 unsigned SplatBitSize;
2474 bool HasAnyUndefs;
2475 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2476 SplatBitSize, HasAnyUndefs);
2477 if (IsSplat) {
2478 // Undef bits can contribute to a possible optimisation if set, so
2479 // set them.
2480 SplatValue |= SplatUndef;
2481
2482 // The splat value may be something like "0x00FFFFFF", which means 0 for
2483 // the first vector value and FF for the rest, repeating. We need a mask
2484 // that will apply equally to all members of the vector, so AND all the
2485 // lanes of the constant together.
2486 EVT VT = Vector->getValueType(0);
2487 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
2488 Constant = APInt::getAllOnesValue(BitWidth);
2489 for (unsigned i = 0, n = VT.getVectorNumElements(); i < n; ++i)
2490 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2491 }
2492 }
2493
2494 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2495 // actually legal and isn't going to get expanded, else this is a false
2496 // optimisation.
2497 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2498 Load->getMemoryVT());
2499
2500 // Resize the constant to the same size as the original memory access before
2501 // extension. If it is still the AllOnesValue then this AND is completely
2502 // unneeded.
2503 Constant =
2504 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2505
2506 bool B;
2507 switch (Load->getExtensionType()) {
2508 default: B = false; break;
2509 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2510 case ISD::ZEXTLOAD:
2511 case ISD::NON_EXTLOAD: B = true; break;
2512 }
2513
2514 if (B && Constant.isAllOnesValue()) {
2515 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2516 // preserve semantics once we get rid of the AND.
2517 SDValue NewLoad(Load, 0);
2518 if (Load->getExtensionType() == ISD::EXTLOAD) {
2519 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2520 Load->getValueType(0), Load->getDebugLoc(),
2521 Load->getChain(), Load->getBasePtr(),
2522 Load->getOffset(), Load->getMemoryVT(),
2523 Load->getMemOperand());
2524 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
2525 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2526 }
2527
2528 // Fold the AND away, taking care not to fold to the old load node if we
2529 // replaced it.
2530 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2531
2532 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2533 }
2534 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002535 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2536 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2537 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2538 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002539
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002540 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002541 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002542 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002543 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002544 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2545 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002546 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002547 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002548 }
Bill Wendling2627a882009-01-30 20:43:18 +00002549 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002550 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002551 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2552 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002553 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002554 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002555 }
Bill Wendling2627a882009-01-30 20:43:18 +00002556 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002557 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002558 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2559 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002560 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002561 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002562 }
2563 }
2564 // canonicalize equivalent to ll == rl
2565 if (LL == RR && LR == RL) {
2566 Op1 = ISD::getSetCCSwappedOperands(Op1);
2567 std::swap(RL, RR);
2568 }
2569 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002570 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002571 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002572 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002573 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002574 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2575 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002576 }
2577 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002578
Bill Wendling2627a882009-01-30 20:43:18 +00002579 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002580 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002581 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002582 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002583 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002584
Nate Begemande996292006-02-03 22:24:05 +00002585 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2586 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002587 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002588 SimplifyDemandedBits(SDValue(N, 0)))
2589 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002590
Nate Begemanded49632005-10-13 03:11:28 +00002591 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002592 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002593 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002594 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002595 // If we zero all the possible extended bits, then we can turn this into
2596 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002597 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002598 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002599 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002600 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002601 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002602 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002603 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002604 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002605 LN0->isVolatile(), LN0->isNonTemporal(),
2606 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002607 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002608 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002609 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002610 }
2611 }
2612 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002613 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002614 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002615 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002616 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002617 // If we zero all the possible extended bits, then we can turn this into
2618 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002619 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002620 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002621 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002622 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002623 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002624 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002625 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002626 LN0->getBasePtr(), LN0->getPointerInfo(),
2627 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002628 LN0->isVolatile(), LN0->isNonTemporal(),
2629 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002630 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002631 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002632 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002633 }
2634 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002635
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002636 // fold (and (load x), 255) -> (zextload x, i8)
2637 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002638 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2639 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2640 (N0.getOpcode() == ISD::ANY_EXTEND &&
2641 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2642 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2643 LoadSDNode *LN0 = HasAnyExt
2644 ? cast<LoadSDNode>(N0.getOperand(0))
2645 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002646 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002647 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002648 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002649 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2650 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2651 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002652
Evan Chengd40d03e2010-01-06 19:38:29 +00002653 if (ExtVT == LoadedVT &&
2654 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002655 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002656
2657 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002658 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002659 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002660 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002661 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2662 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002663 AddToWorkList(N);
2664 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2665 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2666 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002667
Chris Lattneref7634c2010-01-07 21:53:27 +00002668 // Do not change the width of a volatile load.
2669 // Do not generate loads of non-round integer types since these can
2670 // be expensive (and would be wrong if the type is not byte sized).
2671 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2672 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2673 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002674
Chris Lattneref7634c2010-01-07 21:53:27 +00002675 unsigned Alignment = LN0->getAlignment();
2676 SDValue NewPtr = LN0->getBasePtr();
2677
2678 // For big endian targets, we need to add an offset to the pointer
2679 // to load the correct bytes. For little endian systems, we merely
2680 // need to read fewer bytes from the same pointer.
2681 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002682 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2683 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2684 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002685 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2686 NewPtr, DAG.getConstant(PtrOff, PtrType));
2687 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002688 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002689
2690 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002691
Chris Lattneref7634c2010-01-07 21:53:27 +00002692 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2693 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002694 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002695 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002696 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002697 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2698 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002699 AddToWorkList(N);
2700 CombineTo(LN0, Load, Load.getValue(1));
2701 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002702 }
Evan Cheng466685d2006-10-09 20:57:25 +00002703 }
Chris Lattner15045b62006-02-28 06:35:35 +00002704 }
2705 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002706
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002707 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002708}
2709
Evan Cheng9568e5c2011-06-21 06:01:08 +00002710/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2711///
2712SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2713 bool DemandHighBits) {
2714 if (!LegalOperations)
2715 return SDValue();
2716
2717 EVT VT = N->getValueType(0);
2718 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2719 return SDValue();
2720 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2721 return SDValue();
2722
2723 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2724 bool LookPassAnd0 = false;
2725 bool LookPassAnd1 = false;
2726 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2727 std::swap(N0, N1);
2728 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2729 std::swap(N0, N1);
2730 if (N0.getOpcode() == ISD::AND) {
2731 if (!N0.getNode()->hasOneUse())
2732 return SDValue();
2733 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2734 if (!N01C || N01C->getZExtValue() != 0xFF00)
2735 return SDValue();
2736 N0 = N0.getOperand(0);
2737 LookPassAnd0 = true;
2738 }
2739
2740 if (N1.getOpcode() == ISD::AND) {
2741 if (!N1.getNode()->hasOneUse())
2742 return SDValue();
2743 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2744 if (!N11C || N11C->getZExtValue() != 0xFF)
2745 return SDValue();
2746 N1 = N1.getOperand(0);
2747 LookPassAnd1 = true;
2748 }
2749
2750 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2751 std::swap(N0, N1);
2752 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2753 return SDValue();
2754 if (!N0.getNode()->hasOneUse() ||
2755 !N1.getNode()->hasOneUse())
2756 return SDValue();
2757
2758 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2759 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2760 if (!N01C || !N11C)
2761 return SDValue();
2762 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2763 return SDValue();
2764
2765 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2766 SDValue N00 = N0->getOperand(0);
2767 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2768 if (!N00.getNode()->hasOneUse())
2769 return SDValue();
2770 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2771 if (!N001C || N001C->getZExtValue() != 0xFF)
2772 return SDValue();
2773 N00 = N00.getOperand(0);
2774 LookPassAnd0 = true;
2775 }
2776
2777 SDValue N10 = N1->getOperand(0);
2778 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2779 if (!N10.getNode()->hasOneUse())
2780 return SDValue();
2781 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2782 if (!N101C || N101C->getZExtValue() != 0xFF00)
2783 return SDValue();
2784 N10 = N10.getOperand(0);
2785 LookPassAnd1 = true;
2786 }
2787
2788 if (N00 != N10)
2789 return SDValue();
2790
2791 // Make sure everything beyond the low halfword is zero since the SRL 16
2792 // will clear the top bits.
2793 unsigned OpSizeInBits = VT.getSizeInBits();
2794 if (DemandHighBits && OpSizeInBits > 16 &&
2795 (!LookPassAnd0 || !LookPassAnd1) &&
2796 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2797 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002798
Evan Cheng9568e5c2011-06-21 06:01:08 +00002799 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2800 if (OpSizeInBits > 16)
2801 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2802 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2803 return Res;
2804}
2805
2806/// isBSwapHWordElement - Return true if the specified node is an element
2807/// that makes up a 32-bit packed halfword byteswap. i.e.
2808/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2809static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2810 if (!N.getNode()->hasOneUse())
2811 return false;
2812
2813 unsigned Opc = N.getOpcode();
2814 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2815 return false;
2816
2817 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2818 if (!N1C)
2819 return false;
2820
2821 unsigned Num;
2822 switch (N1C->getZExtValue()) {
2823 default:
2824 return false;
2825 case 0xFF: Num = 0; break;
2826 case 0xFF00: Num = 1; break;
2827 case 0xFF0000: Num = 2; break;
2828 case 0xFF000000: Num = 3; break;
2829 }
2830
2831 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2832 SDValue N0 = N.getOperand(0);
2833 if (Opc == ISD::AND) {
2834 if (Num == 0 || Num == 2) {
2835 // (x >> 8) & 0xff
2836 // (x >> 8) & 0xff0000
2837 if (N0.getOpcode() != ISD::SRL)
2838 return false;
2839 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2840 if (!C || C->getZExtValue() != 8)
2841 return false;
2842 } else {
2843 // (x << 8) & 0xff00
2844 // (x << 8) & 0xff000000
2845 if (N0.getOpcode() != ISD::SHL)
2846 return false;
2847 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2848 if (!C || C->getZExtValue() != 8)
2849 return false;
2850 }
2851 } else if (Opc == ISD::SHL) {
2852 // (x & 0xff) << 8
2853 // (x & 0xff0000) << 8
2854 if (Num != 0 && Num != 2)
2855 return false;
2856 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2857 if (!C || C->getZExtValue() != 8)
2858 return false;
2859 } else { // Opc == ISD::SRL
2860 // (x & 0xff00) >> 8
2861 // (x & 0xff000000) >> 8
2862 if (Num != 1 && Num != 3)
2863 return false;
2864 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2865 if (!C || C->getZExtValue() != 8)
2866 return false;
2867 }
2868
2869 if (Parts[Num])
2870 return false;
2871
2872 Parts[Num] = N0.getOperand(0).getNode();
2873 return true;
2874}
2875
2876/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2877/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2878/// => (rotl (bswap x), 16)
2879SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2880 if (!LegalOperations)
2881 return SDValue();
2882
2883 EVT VT = N->getValueType(0);
2884 if (VT != MVT::i32)
2885 return SDValue();
2886 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2887 return SDValue();
2888
2889 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2890 // Look for either
2891 // (or (or (and), (and)), (or (and), (and)))
2892 // (or (or (or (and), (and)), (and)), (and))
2893 if (N0.getOpcode() != ISD::OR)
2894 return SDValue();
2895 SDValue N00 = N0.getOperand(0);
2896 SDValue N01 = N0.getOperand(1);
2897
2898 if (N1.getOpcode() == ISD::OR) {
2899 // (or (or (and), (and)), (or (and), (and)))
2900 SDValue N000 = N00.getOperand(0);
2901 if (!isBSwapHWordElement(N000, Parts))
2902 return SDValue();
2903
2904 SDValue N001 = N00.getOperand(1);
2905 if (!isBSwapHWordElement(N001, Parts))
2906 return SDValue();
2907 SDValue N010 = N01.getOperand(0);
2908 if (!isBSwapHWordElement(N010, Parts))
2909 return SDValue();
2910 SDValue N011 = N01.getOperand(1);
2911 if (!isBSwapHWordElement(N011, Parts))
2912 return SDValue();
2913 } else {
2914 // (or (or (or (and), (and)), (and)), (and))
2915 if (!isBSwapHWordElement(N1, Parts))
2916 return SDValue();
2917 if (!isBSwapHWordElement(N01, Parts))
2918 return SDValue();
2919 if (N00.getOpcode() != ISD::OR)
2920 return SDValue();
2921 SDValue N000 = N00.getOperand(0);
2922 if (!isBSwapHWordElement(N000, Parts))
2923 return SDValue();
2924 SDValue N001 = N00.getOperand(1);
2925 if (!isBSwapHWordElement(N001, Parts))
2926 return SDValue();
2927 }
2928
2929 // Make sure the parts are all coming from the same node.
2930 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2931 return SDValue();
2932
2933 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
2934 SDValue(Parts[0],0));
2935
2936 // Result of the bswap should be rotated by 16. If it's not legal, than
2937 // do (x << 16) | (x >> 16).
2938 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
2939 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
2940 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
2941 else if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
2942 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
2943 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
2944 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
2945 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
2946}
2947
Dan Gohman475871a2008-07-27 21:46:04 +00002948SDValue DAGCombiner::visitOR(SDNode *N) {
2949 SDValue N0 = N->getOperand(0);
2950 SDValue N1 = N->getOperand(1);
2951 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002952 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2953 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002954 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002955
Dan Gohman7f321562007-06-25 16:23:39 +00002956 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002957 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002958 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002959 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002960 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002961
Dan Gohman613e0d82007-07-03 14:03:57 +00002962 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00002963 if (!LegalOperations &&
2964 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00002965 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
2966 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
2967 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00002968 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002969 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002970 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002971 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002972 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00002973 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002974 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002975 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002976 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002977 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002978 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002979 return N1;
2980 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002981 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002982 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00002983
2984 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
2985 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
2986 if (BSwap.getNode() != 0)
2987 return BSwap;
2988 BSwap = MatchBSwapHWordLow(N, N0, N1);
2989 if (BSwap.getNode() != 0)
2990 return BSwap;
2991
Nate Begemancd4d58c2006-02-03 06:46:56 +00002992 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00002993 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002994 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002995 return ROR;
2996 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002997 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00002998 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00002999 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003000 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003001 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003002 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
3003 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3004 N0.getOperand(0), N1),
3005 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003006 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003007 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3008 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3009 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3010 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003011
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003012 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003013 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003014 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3015 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003016 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003017 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003018 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
3019 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003020 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003021 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003022 }
Bill Wendling09025642009-01-30 20:59:34 +00003023 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3024 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003025 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003026 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003027 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
3028 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003029 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003030 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003031 }
3032 }
3033 // canonicalize equivalent to ll == rl
3034 if (LL == RR && LR == RL) {
3035 Op1 = ISD::getSetCCSwappedOperands(Op1);
3036 std::swap(RL, RR);
3037 }
3038 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003039 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003040 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003041 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00003042 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00003043 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
3044 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003045 }
3046 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003047
Bill Wendling09025642009-01-30 20:59:34 +00003048 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003049 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003050 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003051 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003052 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003053
Bill Wendling09025642009-01-30 20:59:34 +00003054 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003055 if (N0.getOpcode() == ISD::AND &&
3056 N1.getOpcode() == ISD::AND &&
3057 N0.getOperand(1).getOpcode() == ISD::Constant &&
3058 N1.getOperand(1).getOpcode() == ISD::Constant &&
3059 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003060 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003061 // We can only do this xform if we know that bits from X that are set in C2
3062 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003063 const APInt &LHSMask =
3064 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3065 const APInt &RHSMask =
3066 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003067
Dan Gohmanea859be2007-06-22 14:59:07 +00003068 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3069 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003070 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3071 N0.getOperand(0), N1.getOperand(0));
3072 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3073 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003074 }
3075 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003076
Chris Lattner516b9622006-09-14 20:50:57 +00003077 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003078 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003079 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003080
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003081 // Simplify the operands using demanded-bits information.
3082 if (!VT.isVector() &&
3083 SimplifyDemandedBits(SDValue(N, 0)))
3084 return SDValue(N, 0);
3085
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003086 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003087}
3088
Chris Lattner516b9622006-09-14 20:50:57 +00003089/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003090static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003091 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003092 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003093 Mask = Op.getOperand(1);
3094 Op = Op.getOperand(0);
3095 } else {
3096 return false;
3097 }
3098 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003099
Chris Lattner516b9622006-09-14 20:50:57 +00003100 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3101 Shift = Op;
3102 return true;
3103 }
Bill Wendling09025642009-01-30 20:59:34 +00003104
Scott Michelfdc40a02009-02-17 22:15:04 +00003105 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003106}
3107
Chris Lattner516b9622006-09-14 20:50:57 +00003108// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3109// idioms for rotate, and if the target supports rotation instructions, generate
3110// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003111SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003112 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003113 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003114 if (!TLI.isTypeLegal(VT)) return 0;
3115
3116 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003117 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3118 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003119 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003120
Chris Lattner516b9622006-09-14 20:50:57 +00003121 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003122 SDValue LHSShift; // The shift.
3123 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003124 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3125 return 0; // Not part of a rotate.
3126
Dan Gohman475871a2008-07-27 21:46:04 +00003127 SDValue RHSShift; // The shift.
3128 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003129 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3130 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003131
Chris Lattner516b9622006-09-14 20:50:57 +00003132 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3133 return 0; // Not shifting the same value.
3134
3135 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3136 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003137
Chris Lattner516b9622006-09-14 20:50:57 +00003138 // Canonicalize shl to left side in a shl/srl pair.
3139 if (RHSShift.getOpcode() == ISD::SHL) {
3140 std::swap(LHS, RHS);
3141 std::swap(LHSShift, RHSShift);
3142 std::swap(LHSMask , RHSMask );
3143 }
3144
Duncan Sands83ec4b62008-06-06 12:08:01 +00003145 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003146 SDValue LHSShiftArg = LHSShift.getOperand(0);
3147 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3148 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003149
3150 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3151 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003152 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3153 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003154 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3155 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003156 if ((LShVal + RShVal) != OpSizeInBits)
3157 return 0;
3158
Dan Gohman475871a2008-07-27 21:46:04 +00003159 SDValue Rot;
Chris Lattner516b9622006-09-14 20:50:57 +00003160 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003161 Rot = DAG.getNode(ISD::ROTL, DL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00003162 else
Bill Wendling317bd702009-01-30 21:14:50 +00003163 Rot = DAG.getNode(ISD::ROTR, DL, VT, LHSShiftArg, RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003164
Chris Lattner516b9622006-09-14 20:50:57 +00003165 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003166 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003167 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003168
Gabor Greifba36cb52008-08-28 21:40:38 +00003169 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003170 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3171 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003172 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003173 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003174 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3175 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003176 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003177
Bill Wendling317bd702009-01-30 21:14:50 +00003178 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003179 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003180
Gabor Greifba36cb52008-08-28 21:40:38 +00003181 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003182 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003183
Chris Lattner516b9622006-09-14 20:50:57 +00003184 // If there is a mask here, and we have a variable shift, we can't be sure
3185 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003186 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003187 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003188
Chris Lattner516b9622006-09-14 20:50:57 +00003189 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3190 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003191 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3192 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003193 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003194 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003195 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00003196 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003197 return DAG.getNode(ISD::ROTL, DL, VT,
3198 LHSShiftArg, LHSShiftAmt).getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003199 else
Bill Wendling317bd702009-01-30 21:14:50 +00003200 return DAG.getNode(ISD::ROTR, DL, VT,
3201 LHSShiftArg, RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003202 }
Chris Lattner516b9622006-09-14 20:50:57 +00003203 }
3204 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003205
Chris Lattner516b9622006-09-14 20:50:57 +00003206 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3207 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003208 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3209 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003210 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003211 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003212 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling2692d592008-08-31 01:13:31 +00003213 if (HasROTR)
Bill Wendling317bd702009-01-30 21:14:50 +00003214 return DAG.getNode(ISD::ROTR, DL, VT,
3215 LHSShiftArg, RHSShiftAmt).getNode();
Bill Wendling2692d592008-08-31 01:13:31 +00003216 else
Bill Wendling317bd702009-01-30 21:14:50 +00003217 return DAG.getNode(ISD::ROTL, DL, VT,
3218 LHSShiftArg, LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003219 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003220 }
3221 }
3222
Dan Gohman74feef22008-10-17 01:23:35 +00003223 // Look for sign/zext/any-extended or truncate cases:
Scott Michelc9dc1142007-04-02 21:36:32 +00003224 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3225 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003226 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3227 || LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
Scott Michelc9dc1142007-04-02 21:36:32 +00003228 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3229 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003230 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3231 || RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003232 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3233 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003234 if (RExtOp0.getOpcode() == ISD::SUB &&
3235 RExtOp0.getOperand(1) == LExtOp0) {
3236 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003237 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003238 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003239 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003240 if (ConstantSDNode *SUBC =
3241 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003242 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003243 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3244 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003245 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003246 }
3247 }
3248 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3249 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003250 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003251 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003252 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003253 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003254 if (ConstantSDNode *SUBC =
3255 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003256 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003257 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3258 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003259 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003260 }
3261 }
Chris Lattner516b9622006-09-14 20:50:57 +00003262 }
3263 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003264
Chris Lattner516b9622006-09-14 20:50:57 +00003265 return 0;
3266}
3267
Dan Gohman475871a2008-07-27 21:46:04 +00003268SDValue DAGCombiner::visitXOR(SDNode *N) {
3269 SDValue N0 = N->getOperand(0);
3270 SDValue N1 = N->getOperand(1);
3271 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003272 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3273 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003274 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003275
Dan Gohman7f321562007-06-25 16:23:39 +00003276 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003277 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003278 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003279 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003280 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003281
Evan Cheng26471c42008-03-25 20:08:07 +00003282 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3283 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3284 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003285 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003286 if (N0.getOpcode() == ISD::UNDEF)
3287 return N0;
3288 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003289 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003290 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003291 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003292 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003293 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003294 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003295 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003296 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003297 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003298 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003299 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003300 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003301 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003302 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003303
Nate Begeman1d4d4142005-09-01 00:19:25 +00003304 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003305 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003306 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003307 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3308 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003309
Duncan Sands25cf2272008-11-24 14:53:14 +00003310 if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003311 switch (N0.getOpcode()) {
3312 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003313 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003314 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003315 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003316 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003317 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003318 N0.getOperand(3), NotCC);
3319 }
3320 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003321 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003322
Chris Lattner61c5ff42007-09-10 21:39:07 +00003323 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003324 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003325 N0.getNode()->hasOneUse() &&
3326 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003327 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003328 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003329 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003330 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003331 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003332 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003333
Bill Wendling317bd702009-01-30 21:14:50 +00003334 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003335 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003336 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003337 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003338 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3339 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003340 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3341 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003342 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003343 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003344 }
3345 }
Bill Wendling317bd702009-01-30 21:14:50 +00003346 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003347 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003348 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003349 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003350 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3351 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003352 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3353 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003354 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003355 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003356 }
3357 }
Bill Wendling317bd702009-01-30 21:14:50 +00003358 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003359 if (N1C && N0.getOpcode() == ISD::XOR) {
3360 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3361 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3362 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003363 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3364 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003365 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003366 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003367 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3368 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003369 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003370 }
3371 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003372 if (N0 == N1)
3373 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003374
Chris Lattner35e5c142006-05-05 05:51:50 +00003375 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3376 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003377 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003378 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003379 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003380
Chris Lattner3e104b12006-04-08 04:15:24 +00003381 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003382 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003383 SimplifyDemandedBits(SDValue(N, 0)))
3384 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003385
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003386 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003387}
3388
Chris Lattnere70da202007-12-06 07:33:36 +00003389/// visitShiftByConstant - Handle transforms common to the three shifts, when
3390/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003391SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003392 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003393 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003394
Chris Lattnere70da202007-12-06 07:33:36 +00003395 // We want to pull some binops through shifts, so that we have (and (shift))
3396 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3397 // thing happens with address calculations, so it's important to canonicalize
3398 // it.
3399 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003400
Chris Lattnere70da202007-12-06 07:33:36 +00003401 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003402 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003403 case ISD::OR:
3404 case ISD::XOR:
3405 HighBitSet = false; // We can only transform sra if the high bit is clear.
3406 break;
3407 case ISD::AND:
3408 HighBitSet = true; // We can only transform sra if the high bit is set.
3409 break;
3410 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003411 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003412 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003413 HighBitSet = false; // We can only transform sra if the high bit is clear.
3414 break;
3415 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003416
Chris Lattnere70da202007-12-06 07:33:36 +00003417 // We require the RHS of the binop to be a constant as well.
3418 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003419 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003420
3421 // FIXME: disable this unless the input to the binop is a shift by a constant.
3422 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003423 //
Bill Wendling88103372009-01-30 21:37:17 +00003424 // void foo(int *X, int i) { X[i & 1235] = 1; }
3425 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003426 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003427 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003428 BinOpLHSVal->getOpcode() != ISD::SRA &&
3429 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3430 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003431 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003432
Owen Andersone50ed302009-08-10 22:56:29 +00003433 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003434
Bill Wendling88103372009-01-30 21:37:17 +00003435 // If this is a signed shift right, and the high bit is modified by the
3436 // logical operation, do not perform the transformation. The highBitSet
3437 // boolean indicates the value of the high bit of the constant which would
3438 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003439 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003440 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3441 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003442 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003443 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003444
Chris Lattnere70da202007-12-06 07:33:36 +00003445 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003446 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3447 N->getValueType(0),
3448 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003449
3450 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003451 SDValue NewShift = DAG.getNode(N->getOpcode(),
3452 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003453 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003454
3455 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003456 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003457}
3458
Dan Gohman475871a2008-07-27 21:46:04 +00003459SDValue DAGCombiner::visitSHL(SDNode *N) {
3460 SDValue N0 = N->getOperand(0);
3461 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003462 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3463 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003464 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003465 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003466
Nate Begeman1d4d4142005-09-01 00:19:25 +00003467 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003468 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003469 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003470 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003471 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003472 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003473 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003474 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003475 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003476 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003477 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003478 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003479 // fold (shl undef, x) -> 0
3480 if (N0.getOpcode() == ISD::UNDEF)
3481 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003482 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003483 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003484 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003485 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003486 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003487 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003488 N1.getOperand(0).getOpcode() == ISD::AND &&
3489 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003490 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003491 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003492 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003493 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003494 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003495 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003496 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003497 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3498 DAG.getNode(ISD::TRUNCATE,
3499 N->getDebugLoc(),
3500 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003501 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003502 }
3503 }
3504
Dan Gohman475871a2008-07-27 21:46:04 +00003505 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3506 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003507
3508 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003509 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003510 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003511 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3512 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003513 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003514 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003515 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003516 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003517 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003518
3519 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3520 // For this to be valid, the second form must not preserve any of the bits
3521 // that are shifted out by the inner shift in the first form. This means
3522 // the outer shift size must be >= the number of bits added by the ext.
3523 // As a corollary, we don't care what kind of ext it is.
3524 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3525 N0.getOpcode() == ISD::ANY_EXTEND ||
3526 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3527 N0.getOperand(0).getOpcode() == ISD::SHL &&
3528 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003529 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003530 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3531 uint64_t c2 = N1C->getZExtValue();
3532 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3533 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3534 if (c2 >= OpSizeInBits - InnerShiftSize) {
3535 if (c1 + c2 >= OpSizeInBits)
3536 return DAG.getConstant(0, VT);
3537 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3538 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3539 N0.getOperand(0)->getOperand(0)),
3540 DAG.getConstant(c1 + c2, N1.getValueType()));
3541 }
3542 }
3543
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003544 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3545 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003546 // Only fold this if the inner shift has no other uses -- if it does, folding
3547 // this will increase the total number of instructions.
3548 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003549 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003550 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003551 if (c1 < VT.getSizeInBits()) {
3552 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003553 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3554 VT.getSizeInBits() - c1);
3555 SDValue Shift;
3556 if (c2 > c1) {
3557 Mask = Mask.shl(c2-c1);
3558 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3559 DAG.getConstant(c2-c1, N1.getValueType()));
3560 } else {
3561 Mask = Mask.lshr(c1-c2);
3562 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3563 DAG.getConstant(c1-c2, N1.getValueType()));
3564 }
3565 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3566 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003567 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003568 }
Bill Wendling88103372009-01-30 21:37:17 +00003569 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003570 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3571 SDValue HiBitsMask =
3572 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3573 VT.getSizeInBits() -
3574 N1C->getZExtValue()),
3575 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003576 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003577 HiBitsMask);
3578 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003579
Evan Chenge5b51ac2010-04-17 06:13:15 +00003580 if (N1C) {
3581 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3582 if (NewSHL.getNode())
3583 return NewSHL;
3584 }
3585
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003586 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003587}
3588
Dan Gohman475871a2008-07-27 21:46:04 +00003589SDValue DAGCombiner::visitSRA(SDNode *N) {
3590 SDValue N0 = N->getOperand(0);
3591 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003592 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3593 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003594 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003595 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003596
Bill Wendling88103372009-01-30 21:37:17 +00003597 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003598 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003599 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003600 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003601 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003602 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003603 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003604 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003605 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003606 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003607 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003608 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003609 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003610 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003611 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003612 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3613 // sext_inreg.
3614 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003615 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003616 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3617 if (VT.isVector())
3618 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3619 ExtVT, VT.getVectorNumElements());
3620 if ((!LegalOperations ||
3621 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003622 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003623 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003624 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003625
Bill Wendling88103372009-01-30 21:37:17 +00003626 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003627 if (N1C && N0.getOpcode() == ISD::SRA) {
3628 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003629 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003630 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003631 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003632 DAG.getConstant(Sum, N1C->getValueType(0)));
3633 }
3634 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003635
Bill Wendling88103372009-01-30 21:37:17 +00003636 // fold (sra (shl X, m), (sub result_size, n))
3637 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003638 // result_size - n != m.
3639 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003640 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003641 if (N0.getOpcode() == ISD::SHL) {
3642 // Get the two constanst of the shifts, CN0 = m, CN = n.
3643 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3644 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003645 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003646 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003647 EVT::getIntegerVT(*DAG.getContext(),
3648 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003649 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003650 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003651
Scott Michelfdc40a02009-02-17 22:15:04 +00003652 // If the shift is not a no-op (in which case this should be just a sign
3653 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003654 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003655 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003656 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003657 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3658 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003659 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003660
Owen Anderson95771af2011-02-25 21:41:48 +00003661 SDValue Amt = DAG.getConstant(ShiftAmt,
3662 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003663 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3664 N0.getOperand(0), Amt);
3665 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3666 Shift);
3667 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3668 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003669 }
3670 }
3671 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003672
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003673 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003674 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003675 N1.getOperand(0).getOpcode() == ISD::AND &&
3676 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003677 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003678 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003679 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003680 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003681 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003682 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003683 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003684 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003685 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003686 DAG.getNode(ISD::TRUNCATE,
3687 N->getDebugLoc(),
3688 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003689 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003690 }
3691 }
3692
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003693 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3694 // if c1 is equal to the number of bits the trunc removes
3695 if (N0.getOpcode() == ISD::TRUNCATE &&
3696 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3697 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3698 N0.getOperand(0).hasOneUse() &&
3699 N0.getOperand(0).getOperand(1).hasOneUse() &&
3700 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3701 EVT LargeVT = N0.getOperand(0).getValueType();
3702 ConstantSDNode *LargeShiftAmt =
3703 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3704
3705 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3706 LargeShiftAmt->getZExtValue()) {
3707 SDValue Amt =
3708 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003709 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003710 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3711 N0.getOperand(0).getOperand(0), Amt);
3712 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3713 }
3714 }
3715
Scott Michelfdc40a02009-02-17 22:15:04 +00003716 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003717 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3718 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003719
3720
Nate Begeman1d4d4142005-09-01 00:19:25 +00003721 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003722 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003723 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003724
Evan Chenge5b51ac2010-04-17 06:13:15 +00003725 if (N1C) {
3726 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3727 if (NewSRA.getNode())
3728 return NewSRA;
3729 }
3730
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003731 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003732}
3733
Dan Gohman475871a2008-07-27 21:46:04 +00003734SDValue DAGCombiner::visitSRL(SDNode *N) {
3735 SDValue N0 = N->getOperand(0);
3736 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003737 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3738 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003739 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003740 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003741
Nate Begeman1d4d4142005-09-01 00:19:25 +00003742 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003743 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003744 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003745 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003746 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003747 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003748 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003749 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003750 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003751 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003752 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003753 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003754 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003755 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003756 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003757 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003758
Bill Wendling88103372009-01-30 21:37:17 +00003759 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003760 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003761 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003762 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3763 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003764 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003765 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003766 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003767 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003768 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003769
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003770 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003771 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3772 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003773 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003774 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003775 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3776 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003777 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3778 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003779 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003780 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003781 if (c1 + OpSizeInBits == InnerShiftSize) {
3782 if (c1 + c2 >= InnerShiftSize)
3783 return DAG.getConstant(0, VT);
3784 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003785 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003786 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003787 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003788 }
3789 }
3790
Chris Lattnerefcddc32010-04-15 05:28:43 +00003791 // fold (srl (shl x, c), c) -> (and x, cst2)
3792 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3793 N0.getValueSizeInBits() <= 64) {
3794 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3795 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3796 DAG.getConstant(~0ULL >> ShAmt, VT));
3797 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003798
Scott Michelfdc40a02009-02-17 22:15:04 +00003799
Chris Lattner06afe072006-05-05 22:53:17 +00003800 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3801 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3802 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003803 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003804 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003805 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003806
Evan Chenge5b51ac2010-04-17 06:13:15 +00003807 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003808 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003809 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003810 N0.getOperand(0),
3811 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003812 AddToWorkList(SmallShift.getNode());
3813 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3814 }
Chris Lattner06afe072006-05-05 22:53:17 +00003815 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003816
Chris Lattner3657ffe2006-10-12 20:23:19 +00003817 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3818 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003819 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003820 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003821 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003822 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003823
Chris Lattner350bec02006-04-02 06:11:11 +00003824 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003825 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003826 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003827 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003828 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003829
Chris Lattner350bec02006-04-02 06:11:11 +00003830 // If any of the input bits are KnownOne, then the input couldn't be all
3831 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003832 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003833
Chris Lattner350bec02006-04-02 06:11:11 +00003834 // If all of the bits input the to ctlz node are known to be zero, then
3835 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003836 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00003837 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003838
Chris Lattner350bec02006-04-02 06:11:11 +00003839 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003840 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003841 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003842 // could be set on input to the CTLZ node. If this bit is set, the SRL
3843 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3844 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003845 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003846 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003847
Chris Lattner350bec02006-04-02 06:11:11 +00003848 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003849 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003850 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003851 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003852 }
Bill Wendling88103372009-01-30 21:37:17 +00003853
3854 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3855 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003856 }
3857 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003858
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003859 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003860 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003861 N1.getOperand(0).getOpcode() == ISD::AND &&
3862 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003863 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003864 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003865 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003866 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003867 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003868 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003869 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003870 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003871 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003872 DAG.getNode(ISD::TRUNCATE,
3873 N->getDebugLoc(),
3874 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003875 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003876 }
3877 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003878
Chris Lattner61a4c072007-04-18 03:06:49 +00003879 // fold operands of srl based on knowledge that the low bits are not
3880 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003881 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3882 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003883
Evan Cheng9ab2b982009-12-18 21:31:31 +00003884 if (N1C) {
3885 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3886 if (NewSRL.getNode())
3887 return NewSRL;
3888 }
3889
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003890 // Attempt to convert a srl of a load into a narrower zero-extending load.
3891 SDValue NarrowLoad = ReduceLoadWidth(N);
3892 if (NarrowLoad.getNode())
3893 return NarrowLoad;
3894
Evan Cheng9ab2b982009-12-18 21:31:31 +00003895 // Here is a common situation. We want to optimize:
3896 //
3897 // %a = ...
3898 // %b = and i32 %a, 2
3899 // %c = srl i32 %b, 1
3900 // brcond i32 %c ...
3901 //
3902 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003903 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00003904 // %a = ...
3905 // %b = and %a, 2
3906 // %c = setcc eq %b, 0
3907 // brcond %c ...
3908 //
3909 // However when after the source operand of SRL is optimized into AND, the SRL
3910 // itself may not be optimized further. Look for it and add the BRCOND into
3911 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00003912 if (N->hasOneUse()) {
3913 SDNode *Use = *N->use_begin();
3914 if (Use->getOpcode() == ISD::BRCOND)
3915 AddToWorkList(Use);
3916 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3917 // Also look pass the truncate.
3918 Use = *Use->use_begin();
3919 if (Use->getOpcode() == ISD::BRCOND)
3920 AddToWorkList(Use);
3921 }
3922 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00003923
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003924 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00003925}
3926
Dan Gohman475871a2008-07-27 21:46:04 +00003927SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3928 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003929 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003930
3931 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003932 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003933 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003934 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003935}
3936
Chandler Carruth63974b22011-12-13 01:56:10 +00003937SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
3938 SDValue N0 = N->getOperand(0);
3939 EVT VT = N->getValueType(0);
3940
3941 // fold (ctlz_zero_undef c1) -> c2
3942 if (isa<ConstantSDNode>(N0))
3943 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3944 return SDValue();
3945}
3946
Dan Gohman475871a2008-07-27 21:46:04 +00003947SDValue DAGCombiner::visitCTTZ(SDNode *N) {
3948 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003949 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003950
Nate Begeman1d4d4142005-09-01 00:19:25 +00003951 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003952 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003953 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003954 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003955}
3956
Chandler Carruth63974b22011-12-13 01:56:10 +00003957SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
3958 SDValue N0 = N->getOperand(0);
3959 EVT VT = N->getValueType(0);
3960
3961 // fold (cttz_zero_undef c1) -> c2
3962 if (isa<ConstantSDNode>(N0))
3963 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3964 return SDValue();
3965}
3966
Dan Gohman475871a2008-07-27 21:46:04 +00003967SDValue DAGCombiner::visitCTPOP(SDNode *N) {
3968 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003969 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003970
Nate Begeman1d4d4142005-09-01 00:19:25 +00003971 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003972 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003973 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003974 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003975}
3976
Dan Gohman475871a2008-07-27 21:46:04 +00003977SDValue DAGCombiner::visitSELECT(SDNode *N) {
3978 SDValue N0 = N->getOperand(0);
3979 SDValue N1 = N->getOperand(1);
3980 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00003981 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3982 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3983 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00003984 EVT VT = N->getValueType(0);
3985 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00003986
Bill Wendling34584e62009-01-30 22:02:18 +00003987 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003988 if (N1 == N2)
3989 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00003990 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003991 if (N0C && !N0C->isNullValue())
3992 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00003993 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00003994 if (N0C && N0C->isNullValue())
3995 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00003996 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00003997 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00003998 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
3999 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004000 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004001 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004002 (VT0.isInteger() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00004003 TLI.getBooleanContents(false) == TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004004 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004005 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004006 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00004007 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
4008 N0, DAG.getConstant(1, VT0));
4009 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
4010 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004011 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004012 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00004013 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
4014 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004015 }
Bill Wendling34584e62009-01-30 22:02:18 +00004016 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004017 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00004018 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004019 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004020 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004021 }
Bill Wendling34584e62009-01-30 22:02:18 +00004022 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004023 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004024 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004025 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004026 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004027 }
Bill Wendling34584e62009-01-30 22:02:18 +00004028 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004029 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00004030 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
4031 // fold (select X, X, Y) -> (or X, Y)
4032 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004033 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00004034 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4035 // fold (select X, Y, X) -> (and X, Y)
4036 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004037 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00004038 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004039
Chris Lattner40c62d52005-10-18 06:04:22 +00004040 // If we can fold this based on the true/false value, do so.
4041 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004042 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004043
Nate Begeman44728a72005-09-19 22:34:01 +00004044 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004045 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004046 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004047 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004048 // having to say they don't support SELECT_CC on every type the DAG knows
4049 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004050 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004051 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004052 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4053 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004054 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004055 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004056 }
Bill Wendling34584e62009-01-30 22:02:18 +00004057
Dan Gohman475871a2008-07-27 21:46:04 +00004058 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004059}
4060
Dan Gohman475871a2008-07-27 21:46:04 +00004061SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4062 SDValue N0 = N->getOperand(0);
4063 SDValue N1 = N->getOperand(1);
4064 SDValue N2 = N->getOperand(2);
4065 SDValue N3 = N->getOperand(3);
4066 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004067 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004068
Nate Begeman44728a72005-09-19 22:34:01 +00004069 // fold select_cc lhs, rhs, x, x, cc -> x
4070 if (N2 == N3)
4071 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004072
Chris Lattner5f42a242006-09-20 06:19:26 +00004073 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004074 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004075 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004076 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004077
Gabor Greifba36cb52008-08-28 21:40:38 +00004078 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004079 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004080 return N2; // cond always true -> true val
4081 else
4082 return N3; // cond always false -> false val
4083 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004084
Chris Lattner5f42a242006-09-20 06:19:26 +00004085 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004086 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004087 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4088 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004089 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004090
Chris Lattner40c62d52005-10-18 06:04:22 +00004091 // If we can fold this based on the true/false value, do so.
4092 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004093 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004094
Nate Begeman44728a72005-09-19 22:34:01 +00004095 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004096 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004097}
4098
Dan Gohman475871a2008-07-27 21:46:04 +00004099SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004100 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004101 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4102 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004103}
4104
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004105// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004106// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004107// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004108// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004109static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004110 unsigned ExtOpc,
4111 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004112 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004113 bool HasCopyToRegUses = false;
4114 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004115 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4116 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004117 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004118 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004119 if (User == N)
4120 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004121 if (UI.getUse().getResNo() != N0.getResNo())
4122 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004123 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004124 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004125 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4126 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4127 // Sign bits will be lost after a zext.
4128 return false;
4129 bool Add = false;
4130 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004131 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004132 if (UseOp == N0)
4133 continue;
4134 if (!isa<ConstantSDNode>(UseOp))
4135 return false;
4136 Add = true;
4137 }
4138 if (Add)
4139 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004140 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004141 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004142 // If truncates aren't free and there are users we can't
4143 // extend, it isn't worthwhile.
4144 if (!isTruncFree)
4145 return false;
4146 // Remember if this value is live-out.
4147 if (User->getOpcode() == ISD::CopyToReg)
4148 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004149 }
4150
4151 if (HasCopyToRegUses) {
4152 bool BothLiveOut = false;
4153 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4154 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004155 SDUse &Use = UI.getUse();
4156 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4157 BothLiveOut = true;
4158 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004159 }
4160 }
4161 if (BothLiveOut)
4162 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004163 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004164 return ExtendNodes.size();
4165 }
4166 return true;
4167}
4168
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004169void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4170 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4171 ISD::NodeType ExtType) {
4172 // Extend SetCC uses if necessary.
4173 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4174 SDNode *SetCC = SetCCs[i];
4175 SmallVector<SDValue, 4> Ops;
4176
4177 for (unsigned j = 0; j != 2; ++j) {
4178 SDValue SOp = SetCC->getOperand(j);
4179 if (SOp == Trunc)
4180 Ops.push_back(ExtLoad);
4181 else
4182 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4183 }
4184
4185 Ops.push_back(SetCC->getOperand(2));
4186 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4187 &Ops[0], Ops.size()));
4188 }
4189}
4190
Dan Gohman475871a2008-07-27 21:46:04 +00004191SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4192 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004193 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004194
Nate Begeman1d4d4142005-09-01 00:19:25 +00004195 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004196 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004197 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004198
Nate Begeman1d4d4142005-09-01 00:19:25 +00004199 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004200 // fold (sext (aext x)) -> (sext x)
4201 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004202 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4203 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004204
Chris Lattner22558872007-02-26 03:13:59 +00004205 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004206 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4207 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004208 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4209 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004210 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4211 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004212 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004213 // CombineTo deleted the truncate, if needed, but not what's under it.
4214 AddToWorkList(oye);
4215 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004216 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004217 }
Evan Chengc88138f2007-03-22 01:54:19 +00004218
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004219 // See if the value being truncated is already sign extended. If so, just
4220 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004221 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004222 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4223 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4224 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004225 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004226
Chris Lattner22558872007-02-26 03:13:59 +00004227 if (OpBits == DestBits) {
4228 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4229 // bits, it is already ready.
4230 if (NumSignBits > DestBits-MidBits)
4231 return Op;
4232 } else if (OpBits < DestBits) {
4233 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4234 // bits, just sext from i32.
4235 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004236 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004237 } else {
4238 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4239 // bits, just truncate to i32.
4240 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004241 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004242 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004243
Chris Lattner22558872007-02-26 03:13:59 +00004244 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004245 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4246 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004247 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004248 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004249 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004250 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4251 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004252 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004253 }
Chris Lattner6007b842006-09-21 06:00:20 +00004254 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004255
Evan Cheng110dec22005-12-14 02:19:23 +00004256 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004257 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004258 // on vectors in one instruction. We only perform this transformation on
4259 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004260 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004261 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004262 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004263 bool DoXform = true;
4264 SmallVector<SDNode*, 4> SetCCs;
4265 if (!N0.hasOneUse())
4266 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4267 if (DoXform) {
4268 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004269 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004270 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004271 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004272 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004273 LN0->isVolatile(), LN0->isNonTemporal(),
4274 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004275 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004276 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4277 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004278 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004279 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4280 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004281 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004282 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004283 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004284
4285 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4286 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004287 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4288 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004289 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004290 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004291 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004292 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004293 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004294 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004295 LN0->getBasePtr(), LN0->getPointerInfo(),
4296 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004297 LN0->isVolatile(), LN0->isNonTemporal(),
4298 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004299 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004300 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004301 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4302 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004303 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004304 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004305 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004306 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004307
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004308 // fold (sext (and/or/xor (load x), cst)) ->
4309 // (and/or/xor (sextload x), (sext cst))
4310 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4311 N0.getOpcode() == ISD::XOR) &&
4312 isa<LoadSDNode>(N0.getOperand(0)) &&
4313 N0.getOperand(1).getOpcode() == ISD::Constant &&
4314 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4315 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4316 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4317 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4318 bool DoXform = true;
4319 SmallVector<SDNode*, 4> SetCCs;
4320 if (!N0.hasOneUse())
4321 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4322 SetCCs, TLI);
4323 if (DoXform) {
4324 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4325 LN0->getChain(), LN0->getBasePtr(),
4326 LN0->getPointerInfo(),
4327 LN0->getMemoryVT(),
4328 LN0->isVolatile(),
4329 LN0->isNonTemporal(),
4330 LN0->getAlignment());
4331 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4332 Mask = Mask.sext(VT.getSizeInBits());
4333 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4334 ExtLoad, DAG.getConstant(Mask, VT));
4335 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4336 N0.getOperand(0).getDebugLoc(),
4337 N0.getOperand(0).getValueType(), ExtLoad);
4338 CombineTo(N, And);
4339 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4340 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4341 ISD::SIGN_EXTEND);
4342 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4343 }
4344 }
4345 }
4346
Chris Lattner20a35c32007-04-11 05:32:27 +00004347 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004348 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004349 // Only do this before legalize for now.
4350 if (VT.isVector() && !LegalOperations) {
4351 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004352 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4353 // of the same size as the compared operands. Only optimize sext(setcc())
4354 // if this is the case.
4355 EVT SVT = TLI.getSetCCResultType(N0VT);
4356
4357 // We know that the # elements of the results is the same as the
4358 // # elements of the compare (and the # elements of the compare result
4359 // for that matter). Check to see that they are the same size. If so,
4360 // we know that the element size of the sext'd result matches the
4361 // element size of the compare operands.
4362 if (VT.getSizeInBits() == SVT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004363 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004364 N0.getOperand(1),
4365 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004366 // If the desired elements are smaller or larger than the source
4367 // elements we can use a matching integer vector type and then
4368 // truncate/sign extend
4369 else {
Duncan Sands34727662010-07-12 08:16:59 +00004370 EVT MatchingElementType =
4371 EVT::getIntegerVT(*DAG.getContext(),
4372 N0VT.getScalarType().getSizeInBits());
4373 EVT MatchingVectorType =
4374 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4375 N0VT.getVectorNumElements());
Nadav Rotem2e506192012-04-11 08:26:11 +00004376
4377 if (SVT == MatchingVectorType) {
4378 SDValue VsetCC = DAG.getSetCC(N->getDebugLoc(), MatchingVectorType,
4379 N0.getOperand(0), N0.getOperand(1),
4380 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4381 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
4382 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004383 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004384 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004385
Chris Lattner2b7a2712009-07-08 00:31:33 +00004386 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004387 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004388 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004389 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004390 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004391 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004392 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004393 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004394 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004395 if (!LegalOperations ||
4396 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4397 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4398 DAG.getSetCC(N->getDebugLoc(),
4399 TLI.getSetCCResultType(VT),
4400 N0.getOperand(0), N0.getOperand(1),
4401 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4402 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004403 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004404
Dan Gohman8f0ad582008-04-28 16:58:24 +00004405 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004406 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004407 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004408 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004409
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004410 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004411}
4412
Rafael Espindoladecbc432012-04-09 16:06:03 +00004413// isTruncateOf - If N is a truncate of some other value, return true, record
4414// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4415// This function computes KnownZero to avoid a duplicated call to
4416// ComputeMaskedBits in the caller.
4417static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4418 APInt &KnownZero) {
4419 APInt KnownOne;
4420 if (N->getOpcode() == ISD::TRUNCATE) {
4421 Op = N->getOperand(0);
4422 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4423 return true;
4424 }
4425
4426 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4427 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4428 return false;
4429
4430 SDValue Op0 = N->getOperand(0);
4431 SDValue Op1 = N->getOperand(1);
4432 assert(Op0.getValueType() == Op1.getValueType());
4433
4434 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4435 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004436 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004437 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004438 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004439 Op = Op0;
4440 else
4441 return false;
4442
4443 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4444
4445 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4446 return false;
4447
4448 return true;
4449}
4450
Dan Gohman475871a2008-07-27 21:46:04 +00004451SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4452 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004453 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004454
Nate Begeman1d4d4142005-09-01 00:19:25 +00004455 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004456 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004457 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004458 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004459 // fold (zext (aext x)) -> (zext x)
4460 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004461 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4462 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004463
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004464 // fold (zext (truncate x)) -> (zext x) or
4465 // (zext (truncate x)) -> (truncate x)
4466 // This is valid when the truncated bits of x are already zero.
4467 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004468 SDValue Op;
4469 APInt KnownZero;
4470 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4471 APInt TruncatedBits =
4472 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4473 APInt(Op.getValueSizeInBits(), 0) :
4474 APInt::getBitsSet(Op.getValueSizeInBits(),
4475 N0.getValueSizeInBits(),
4476 std::min(Op.getValueSizeInBits(),
4477 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004478 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004479 if (VT.bitsGT(Op.getValueType()))
4480 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4481 if (VT.bitsLT(Op.getValueType()))
4482 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4483
4484 return Op;
4485 }
4486 }
4487
Evan Chengc88138f2007-03-22 01:54:19 +00004488 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4489 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004490 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004491 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4492 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004493 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4494 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004495 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004496 // CombineTo deleted the truncate, if needed, but not what's under it.
4497 AddToWorkList(oye);
4498 }
Eli Friedmane545d382011-04-16 23:25:34 +00004499 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004500 }
Evan Chengc88138f2007-03-22 01:54:19 +00004501 }
4502
Chris Lattner6007b842006-09-21 06:00:20 +00004503 // fold (zext (truncate x)) -> (and x, mask)
4504 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004505 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004506
4507 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4508 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4509 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4510 if (NarrowLoad.getNode()) {
4511 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4512 if (NarrowLoad.getNode() != N0.getNode()) {
4513 CombineTo(N0.getNode(), NarrowLoad);
4514 // CombineTo deleted the truncate, if needed, but not what's under it.
4515 AddToWorkList(oye);
4516 }
4517 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4518 }
4519
Dan Gohman475871a2008-07-27 21:46:04 +00004520 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004521 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004522 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004523 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004524 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004525 }
Dan Gohman87862e72009-12-11 21:31:27 +00004526 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4527 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004528 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004529
Dan Gohman97121ba2009-04-08 00:15:30 +00004530 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4531 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004532 if (N0.getOpcode() == ISD::AND &&
4533 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004534 N0.getOperand(1).getOpcode() == ISD::Constant &&
4535 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4536 N0.getValueType()) ||
4537 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004538 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004539 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004540 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004541 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004542 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004543 }
Dan Gohman220a8232008-03-03 23:51:38 +00004544 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004545 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004546 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4547 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004548 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004549
Evan Cheng110dec22005-12-14 02:19:23 +00004550 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004551 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004552 // on vectors in one instruction. We only perform this transformation on
4553 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004554 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004555 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004556 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004557 bool DoXform = true;
4558 SmallVector<SDNode*, 4> SetCCs;
4559 if (!N0.hasOneUse())
4560 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4561 if (DoXform) {
4562 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004563 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004564 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004565 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004566 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004567 LN0->isVolatile(), LN0->isNonTemporal(),
4568 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004569 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004570 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4571 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004572 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004573
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004574 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4575 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004576 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004577 }
Evan Cheng110dec22005-12-14 02:19:23 +00004578 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004579
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004580 // fold (zext (and/or/xor (load x), cst)) ->
4581 // (and/or/xor (zextload x), (zext cst))
4582 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4583 N0.getOpcode() == ISD::XOR) &&
4584 isa<LoadSDNode>(N0.getOperand(0)) &&
4585 N0.getOperand(1).getOpcode() == ISD::Constant &&
4586 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4587 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4588 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4589 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4590 bool DoXform = true;
4591 SmallVector<SDNode*, 4> SetCCs;
4592 if (!N0.hasOneUse())
4593 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4594 SetCCs, TLI);
4595 if (DoXform) {
4596 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4597 LN0->getChain(), LN0->getBasePtr(),
4598 LN0->getPointerInfo(),
4599 LN0->getMemoryVT(),
4600 LN0->isVolatile(),
4601 LN0->isNonTemporal(),
4602 LN0->getAlignment());
4603 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4604 Mask = Mask.zext(VT.getSizeInBits());
4605 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4606 ExtLoad, DAG.getConstant(Mask, VT));
4607 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4608 N0.getOperand(0).getDebugLoc(),
4609 N0.getOperand(0).getValueType(), ExtLoad);
4610 CombineTo(N, And);
4611 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4612 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4613 ISD::ZERO_EXTEND);
4614 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4615 }
4616 }
4617 }
4618
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004619 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4620 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004621 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4622 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004623 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004624 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004625 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004626 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004627 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004628 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004629 LN0->getBasePtr(), LN0->getPointerInfo(),
4630 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004631 LN0->isVolatile(), LN0->isNonTemporal(),
4632 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004633 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004634 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004635 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4636 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004637 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004638 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004639 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004640 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004641
Chris Lattner20a35c32007-04-11 05:32:27 +00004642 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004643 if (!LegalOperations && VT.isVector()) {
4644 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4645 // Only do this before legalize for now.
4646 EVT N0VT = N0.getOperand(0).getValueType();
4647 EVT EltVT = VT.getVectorElementType();
4648 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4649 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004650 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004651 // We know that the # elements of the results is the same as the
4652 // # elements of the compare (and the # elements of the compare result
4653 // for that matter). Check to see that they are the same size. If so,
4654 // we know that the element size of the sext'd result matches the
4655 // element size of the compare operands.
4656 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004657 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004658 N0.getOperand(1),
4659 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4660 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4661 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004662
4663 // If the desired elements are smaller or larger than the source
4664 // elements we can use a matching integer vector type and then
4665 // truncate/sign extend
4666 EVT MatchingElementType =
4667 EVT::getIntegerVT(*DAG.getContext(),
4668 N0VT.getScalarType().getSizeInBits());
4669 EVT MatchingVectorType =
4670 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4671 N0VT.getVectorNumElements());
4672 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004673 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004674 N0.getOperand(1),
4675 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4676 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4677 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4678 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4679 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004680 }
4681
4682 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004683 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004684 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004685 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004686 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004687 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004688 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004689
Evan Cheng9818c042009-12-15 03:00:32 +00004690 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004691 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004692 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004693 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4694 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004695 SDValue ShAmt = N0.getOperand(1);
4696 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004697 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004698 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004699 // If the original shl may be shifting out bits, do not perform this
4700 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004701 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4702 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4703 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004704 return SDValue();
4705 }
Chris Lattnere0751182011-02-13 19:09:16 +00004706
4707 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004708
4709 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004710 if (VT.getSizeInBits() >= 256)
4711 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004712
Chris Lattnere0751182011-02-13 19:09:16 +00004713 return DAG.getNode(N0.getOpcode(), DL, VT,
4714 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4715 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004716 }
4717
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004718 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004719}
4720
Dan Gohman475871a2008-07-27 21:46:04 +00004721SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4722 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004723 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004724
Chris Lattner5ffc0662006-05-05 05:58:59 +00004725 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004726 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004727 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004728 // fold (aext (aext x)) -> (aext x)
4729 // fold (aext (zext x)) -> (zext x)
4730 // fold (aext (sext x)) -> (sext x)
4731 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4732 N0.getOpcode() == ISD::ZERO_EXTEND ||
4733 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004734 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004735
Evan Chengc88138f2007-03-22 01:54:19 +00004736 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4737 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4738 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004739 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4740 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004741 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4742 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004743 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004744 // CombineTo deleted the truncate, if needed, but not what's under it.
4745 AddToWorkList(oye);
4746 }
Eli Friedmane545d382011-04-16 23:25:34 +00004747 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004748 }
Evan Chengc88138f2007-03-22 01:54:19 +00004749 }
4750
Chris Lattner84750582006-09-20 06:29:17 +00004751 // fold (aext (truncate x))
4752 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004753 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004754 if (TruncOp.getValueType() == VT)
4755 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004756 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004757 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4758 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004759 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004760
Dan Gohman97121ba2009-04-08 00:15:30 +00004761 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4762 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004763 if (N0.getOpcode() == ISD::AND &&
4764 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004765 N0.getOperand(1).getOpcode() == ISD::Constant &&
4766 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4767 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004768 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004769 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004770 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004771 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004772 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004773 }
Dan Gohman220a8232008-03-03 23:51:38 +00004774 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004775 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004776 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4777 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004778 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004779
Chris Lattner5ffc0662006-05-05 05:58:59 +00004780 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004781 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004782 // on vectors in one instruction. We only perform this transformation on
4783 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004784 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004785 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004786 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004787 bool DoXform = true;
4788 SmallVector<SDNode*, 4> SetCCs;
4789 if (!N0.hasOneUse())
4790 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4791 if (DoXform) {
4792 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004793 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004794 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004795 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004796 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004797 LN0->isVolatile(), LN0->isNonTemporal(),
4798 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004799 CombineTo(N, ExtLoad);
4800 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4801 N0.getValueType(), ExtLoad);
4802 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004803 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4804 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004805 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4806 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004807 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004808
Chris Lattner5ffc0662006-05-05 05:58:59 +00004809 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4810 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4811 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004812 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004813 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004814 N0.hasOneUse()) {
4815 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004816 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004817 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4818 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004819 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004820 LN0->isVolatile(), LN0->isNonTemporal(),
4821 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004822 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004823 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004824 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4825 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004826 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004827 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004828 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004829
Chris Lattner20a35c32007-04-11 05:32:27 +00004830 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004831 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4832 // Only do this before legalize for now.
4833 if (VT.isVector() && !LegalOperations) {
4834 EVT N0VT = N0.getOperand(0).getValueType();
4835 // We know that the # elements of the results is the same as the
4836 // # elements of the compare (and the # elements of the compare result
4837 // for that matter). Check to see that they are the same size. If so,
4838 // we know that the element size of the sext'd result matches the
4839 // element size of the compare operands.
4840 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004841 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004842 N0.getOperand(1),
4843 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004844 // If the desired elements are smaller or larger than the source
4845 // elements we can use a matching integer vector type and then
4846 // truncate/sign extend
4847 else {
Duncan Sands34727662010-07-12 08:16:59 +00004848 EVT MatchingElementType =
4849 EVT::getIntegerVT(*DAG.getContext(),
4850 N0VT.getScalarType().getSizeInBits());
4851 EVT MatchingVectorType =
4852 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4853 N0VT.getVectorNumElements());
4854 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004855 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004856 N0.getOperand(1),
4857 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4858 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004859 }
4860 }
4861
4862 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004863 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004864 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004865 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004866 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004867 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004868 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004869 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004870
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004871 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004872}
4873
Chris Lattner2b4c2792007-10-13 06:35:54 +00004874/// GetDemandedBits - See if the specified operand can be simplified with the
4875/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004876/// simpler operand, otherwise return a null SDValue.
4877SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004878 switch (V.getOpcode()) {
4879 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004880 case ISD::Constant: {
4881 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4882 assert(CV != 0 && "Const value should be ConstSDNode.");
4883 const APInt &CVal = CV->getAPIntValue();
4884 APInt NewVal = CVal & Mask;
4885 if (NewVal != CVal) {
4886 return DAG.getConstant(NewVal, V.getValueType());
4887 }
4888 break;
4889 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004890 case ISD::OR:
4891 case ISD::XOR:
4892 // If the LHS or RHS don't contribute bits to the or, drop them.
4893 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4894 return V.getOperand(1);
4895 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4896 return V.getOperand(0);
4897 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004898 case ISD::SRL:
4899 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00004900 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00004901 break;
4902 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4903 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004904 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00004905
Dan Gohmancc91d632009-01-03 19:22:06 +00004906 // Watch out for shift count overflow though.
4907 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004908 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00004909 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00004910 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004911 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00004912 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00004913 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004914 }
Dan Gohman475871a2008-07-27 21:46:04 +00004915 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00004916}
4917
Evan Chengc88138f2007-03-22 01:54:19 +00004918/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4919/// bits and then truncated to a narrower type and where N is a multiple
4920/// of number of bits of the narrower type, transform it to a narrower load
4921/// from address + N / num of bits of new type. If the result is to be
4922/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00004923SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00004924 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004925
Evan Chengc88138f2007-03-22 01:54:19 +00004926 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00004927 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004928 EVT VT = N->getValueType(0);
4929 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00004930
Dan Gohman7f8613e2008-08-14 20:04:46 +00004931 // This transformation isn't valid for vector loads.
4932 if (VT.isVector())
4933 return SDValue();
4934
Dan Gohmand1996362010-01-09 02:13:55 +00004935 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00004936 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00004937 if (Opc == ISD::SIGN_EXTEND_INREG) {
4938 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00004939 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004940 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00004941 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004942 ExtType = ISD::ZEXTLOAD;
4943 N0 = SDValue(N, 0);
4944 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
4945 if (!N01) return SDValue();
4946 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
4947 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00004948 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00004949 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
4950 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004951
Owen Andersone50ed302009-08-10 22:56:29 +00004952 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00004953
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004954 // Do not generate loads of non-round integer types since these can
4955 // be expensive (and would be wrong if the type is not byte sized).
4956 if (!ExtVT.isRound())
4957 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004958
Evan Chengc88138f2007-03-22 01:54:19 +00004959 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004960 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00004961 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004962 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004963 // Is the shift amount a multiple of size of VT?
4964 if ((ShAmt & (EVTBits-1)) == 0) {
4965 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00004966 // Is the load width a multiple of size of VT?
4967 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00004968 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004969 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004970
Chris Lattnercbf68df2010-12-22 08:02:57 +00004971 // At this point, we must have a load or else we can't do the transform.
4972 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004973
Chris Lattner2831a192010-10-01 05:36:09 +00004974 // If the shift amount is larger than the input type then we're not
4975 // accessing any of the loaded bytes. If the load was a zextload/extload
4976 // then the result of the shift+trunc is zero/undef (handled elsewhere).
4977 // If the load was a sextload then the result is a splat of the sign bit
4978 // of the extended byte. This is not worth optimizing for.
Chris Lattnercbf68df2010-12-22 08:02:57 +00004979 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00004980 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004981 }
4982 }
4983
Dan Gohman394d6292010-11-03 01:47:46 +00004984 // If the load is shifted left (and the result isn't shifted back right),
4985 // we can fold the truncate through the shift.
4986 unsigned ShLeftAmt = 0;
4987 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00004988 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00004989 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
4990 ShLeftAmt = N01->getZExtValue();
4991 N0 = N0.getOperand(0);
4992 }
4993 }
Owen Anderson95771af2011-02-25 21:41:48 +00004994
Chris Lattner4c32bc22010-12-22 07:36:50 +00004995 // If we haven't found a load, we can't narrow it. Don't transform one with
4996 // multiple uses, this would require adding a new load.
4997 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
4998 // Don't change the width of a volatile load.
4999 cast<LoadSDNode>(N0)->isVolatile())
5000 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005001
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005002 // Verify that we are actually reducing a load width here.
5003 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005004 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005005
Chris Lattner4c32bc22010-12-22 07:36:50 +00005006 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5007 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005008
Chris Lattner4c32bc22010-12-22 07:36:50 +00005009 // For big endian targets, we need to adjust the offset to the pointer to
5010 // load the correct bytes.
5011 if (TLI.isBigEndian()) {
5012 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5013 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5014 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005015 }
5016
Chris Lattner4c32bc22010-12-22 07:36:50 +00005017 uint64_t PtrOff = ShAmt / 8;
5018 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
5019 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
5020 PtrType, LN0->getBasePtr(),
5021 DAG.getConstant(PtrOff, PtrType));
5022 AddToWorkList(NewPtr.getNode());
5023
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005024 SDValue Load;
5025 if (ExtType == ISD::NON_EXTLOAD)
5026 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
5027 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005028 LN0->isVolatile(), LN0->isNonTemporal(),
5029 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005030 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00005031 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005032 LN0->getPointerInfo().getWithOffset(PtrOff),
5033 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5034 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005035
5036 // Replace the old load's chain with the new load's chain.
5037 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005038 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005039
5040 // Shift the result left, if we've swallowed a left shift.
5041 SDValue Result = Load;
5042 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005043 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005044 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5045 ShImmTy = VT;
5046 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
5047 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
5048 }
5049
5050 // Return the new loaded value.
5051 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005052}
5053
Dan Gohman475871a2008-07-27 21:46:04 +00005054SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5055 SDValue N0 = N->getOperand(0);
5056 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005057 EVT VT = N->getValueType(0);
5058 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005059 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005060 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005061
Nate Begeman1d4d4142005-09-01 00:19:25 +00005062 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005063 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00005064 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005065
Chris Lattner541a24f2006-05-06 22:43:44 +00005066 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005067 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005068 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005069
Nate Begeman646d7e22005-09-02 21:18:40 +00005070 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5071 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00005072 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00005073 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5074 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00005075 }
Chris Lattner4b37e872006-05-08 21:18:59 +00005076
Dan Gohman75dcf082008-07-31 00:50:31 +00005077 // fold (sext_in_reg (sext x)) -> (sext x)
5078 // fold (sext_in_reg (aext x)) -> (sext x)
5079 // if x is small enough.
5080 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5081 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005082 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5083 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00005084 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005085 }
5086
Chris Lattner95a5e052007-04-17 19:03:21 +00005087 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005088 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005089 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005090
Chris Lattner95a5e052007-04-17 19:03:21 +00005091 // fold operands of sext_in_reg based on knowledge that the top bits are not
5092 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005093 if (SimplifyDemandedBits(SDValue(N, 0)))
5094 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005095
Evan Chengc88138f2007-03-22 01:54:19 +00005096 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5097 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005098 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005099 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005100 return NarrowLoad;
5101
Bill Wendling8509c902009-01-30 22:33:24 +00005102 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
5103 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005104 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5105 if (N0.getOpcode() == ISD::SRL) {
5106 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005107 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Chris Lattner4b37e872006-05-08 21:18:59 +00005108 // We can turn this into an SRA iff the input to the SRL is already sign
5109 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005110 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005111 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005112 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5113 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005114 }
5115 }
Evan Chengc88138f2007-03-22 01:54:19 +00005116
Nate Begemanded49632005-10-13 03:11:28 +00005117 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005118 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005119 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005120 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005121 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005122 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005123 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005124 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005125 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005126 LN0->getBasePtr(), LN0->getPointerInfo(),
5127 EVT,
David Greene1e559442010-02-15 17:00:31 +00005128 LN0->isVolatile(), LN0->isNonTemporal(),
5129 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005130 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005131 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005132 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005133 }
5134 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005135 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005136 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005137 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005138 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005139 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005140 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005141 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005142 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005143 LN0->getBasePtr(), LN0->getPointerInfo(),
5144 EVT,
David Greene1e559442010-02-15 17:00:31 +00005145 LN0->isVolatile(), LN0->isNonTemporal(),
5146 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005147 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005148 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005149 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005150 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005151
5152 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5153 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5154 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5155 N0.getOperand(1), false);
5156 if (BSwap.getNode() != 0)
5157 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5158 BSwap, N1);
5159 }
5160
Dan Gohman475871a2008-07-27 21:46:04 +00005161 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005162}
5163
Dan Gohman475871a2008-07-27 21:46:04 +00005164SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5165 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005166 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005167 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005168
5169 // noop truncate
5170 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005171 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005172 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005173 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005174 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005175 // fold (truncate (truncate x)) -> (truncate x)
5176 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005177 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005178 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005179 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5180 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005181 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005182 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005183 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005184 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5185 N0.getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005186 else if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005187 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005188 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005189 else
5190 // if the source and dest are the same type, we can drop both the extend
Evan Chengd40d03e2010-01-06 19:38:29 +00005191 // and the truncate.
Nate Begeman83e75ec2005-09-06 04:43:02 +00005192 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005193 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005194
Nadav Rotemcc870a82012-02-05 11:39:23 +00005195 // Fold extract-and-trunc into a narrow extract. For example:
5196 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5197 // i32 y = TRUNCATE(i64 x)
5198 // -- becomes --
5199 // v16i8 b = BITCAST (v2i64 val)
5200 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5201 //
5202 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005203 // creates this pattern) and before operation legalization after which
5204 // we need to be more careful about the vector instructions that we generate.
5205 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5206 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5207
5208 EVT VecTy = N0.getOperand(0).getValueType();
5209 EVT ExTy = N0.getValueType();
5210 EVT TrTy = N->getValueType(0);
5211
5212 unsigned NumElem = VecTy.getVectorNumElements();
5213 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5214
5215 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5216 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5217
5218 SDValue EltNo = N0->getOperand(1);
5219 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5220 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5221
5222 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5223
5224 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5225 NVT, N0.getOperand(0));
5226
5227 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5228 N->getDebugLoc(), TrTy, V,
5229 DAG.getConstant(Index, MVT::i32));
5230 }
5231 }
5232
Chris Lattner2b4c2792007-10-13 06:35:54 +00005233 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005234 // only the low bits are being used.
5235 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005236 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005237 // may have different active low bits.
5238 if (!VT.isVector()) {
5239 SDValue Shorter =
5240 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5241 VT.getSizeInBits()));
5242 if (Shorter.getNode())
5243 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5244 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005245 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005246 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005247 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5248 SDValue Reduced = ReduceLoadWidth(N);
5249 if (Reduced.getNode())
5250 return Reduced;
5251 }
5252
5253 // Simplify the operands using demanded-bits information.
5254 if (!VT.isVector() &&
5255 SimplifyDemandedBits(SDValue(N, 0)))
5256 return SDValue(N, 0);
5257
Evan Chenge5b51ac2010-04-17 06:13:15 +00005258 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005259}
5260
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005261static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005262 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005263 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005264 return Elt.getNode();
5265 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005266}
5267
5268/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005269/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005270SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005271 assert(N->getOpcode() == ISD::BUILD_PAIR);
5272
Nate Begemanabc01992009-06-05 21:37:30 +00005273 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5274 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005275 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5276 LD1->getPointerInfo().getAddrSpace() !=
5277 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005278 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005279 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005280
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005281 if (ISD::isNON_EXTLoad(LD2) &&
5282 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005283 // If both are volatile this would reduce the number of volatile loads.
5284 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005285 !LD1->isVolatile() &&
5286 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005287 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005288 unsigned Align = LD1->getAlignment();
Dan Gohman6448d912008-09-04 15:39:15 +00005289 unsigned NewAlign = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005290 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005291
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005292 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005293 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005294 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005295 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005296 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005297 }
Bill Wendling67a67682009-01-30 22:44:24 +00005298
Dan Gohman475871a2008-07-27 21:46:04 +00005299 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005300}
5301
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005302SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005303 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005304 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005305
Dan Gohman7f321562007-06-25 16:23:39 +00005306 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5307 // Only do this before legalize, since afterward the target may be depending
5308 // on the bitconvert.
5309 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005310 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005311 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005312 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005313 bool isSimple = true;
5314 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5315 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5316 N0.getOperand(i).getOpcode() != ISD::Constant &&
5317 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005318 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005319 break;
5320 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005321
Owen Andersone50ed302009-08-10 22:56:29 +00005322 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005323 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005324 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005325 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005326 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005327 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005328
Dan Gohman3dd168d2008-09-05 01:58:21 +00005329 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005330 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005331 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005332 if (Res.getNode() != N) {
5333 if (!LegalOperations ||
5334 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5335 return Res;
5336
5337 // Folding it resulted in an illegal node, and it's too late to
5338 // do that. Clean up the old node and forego the transformation.
5339 // Ideally this won't happen very often, because instcombine
5340 // and the earlier dagcombine runs (where illegal nodes are
5341 // permitted) should have folded most of them already.
5342 DAG.DeleteNode(Res.getNode());
5343 }
Chris Lattner94683772005-12-23 05:30:37 +00005344 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005345
Bill Wendling67a67682009-01-30 22:44:24 +00005346 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005347 if (N0.getOpcode() == ISD::BITCAST)
5348 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005349 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005350
Chris Lattner57104102005-12-23 05:44:41 +00005351 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005352 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005353 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005354 // Do not change the width of a volatile load.
5355 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005356 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005357 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman6448d912008-09-04 15:39:15 +00005358 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005359 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005360 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005361
Evan Cheng59d5b682007-05-07 21:27:48 +00005362 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005363 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005364 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005365 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005366 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005367 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005368 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005369 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005370 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005371 Load.getValue(1));
5372 return Load;
5373 }
Chris Lattner57104102005-12-23 05:44:41 +00005374 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005375
Bill Wendling67a67682009-01-30 22:44:24 +00005376 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5377 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005378 // This often reduces constant pool loads.
Owen Anderson29f60f32012-04-02 22:10:29 +00005379 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) ||
5380 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005381 N0.getNode()->hasOneUse() && VT.isInteger() && !VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005382 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005383 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005384 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005385
Duncan Sands83ec4b62008-06-06 12:08:01 +00005386 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005387 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005388 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5389 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005390 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005391 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5392 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005393 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005394
Bill Wendling67a67682009-01-30 22:44:24 +00005395 // fold (bitconvert (fcopysign cst, x)) ->
5396 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5397 // Note that we don't handle (copysign x, cst) because this can always be
5398 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005399 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005400 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005401 VT.isInteger() && !VT.isVector()) {
5402 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005403 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005404 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005405 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005406 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005407 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005408
Duncan Sands25cf2272008-11-24 14:53:14 +00005409 // If X has a different width than the result/lhs, sext it or truncate it.
5410 unsigned VTWidth = VT.getSizeInBits();
5411 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005412 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005413 AddToWorkList(X.getNode());
5414 } else if (OrigXWidth > VTWidth) {
5415 // To get the sign bit in the right place, we have to shift it right
5416 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005417 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005418 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005419 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5420 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005421 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005422 AddToWorkList(X.getNode());
5423 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005424
Duncan Sands25cf2272008-11-24 14:53:14 +00005425 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005426 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005427 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005428 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005429
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005430 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005431 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005432 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005433 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005434 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005435
Bill Wendling67a67682009-01-30 22:44:24 +00005436 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005437 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005438 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005439
Scott Michelfdc40a02009-02-17 22:15:04 +00005440 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005441 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005442 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5443 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005444 return CombineLD;
5445 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005446
Dan Gohman475871a2008-07-27 21:46:04 +00005447 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005448}
5449
Dan Gohman475871a2008-07-27 21:46:04 +00005450SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005451 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005452 return CombineConsecutiveLoads(N, VT);
5453}
5454
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005455/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005456/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005457/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005458SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005459ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005460 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005461
Chris Lattner6258fb22006-04-02 02:53:43 +00005462 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005463 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005464
Duncan Sands83ec4b62008-06-06 12:08:01 +00005465 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5466 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005467
Chris Lattner6258fb22006-04-02 02:53:43 +00005468 // If this is a conversion of N elements of one type to N elements of another
5469 // type, convert each element. This handles FP<->INT cases.
5470 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005471 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5472 BV->getValueType(0).getVectorNumElements());
5473
5474 // Due to the FP element handling below calling this routine recursively,
5475 // we can end up with a scalar-to-vector node here.
5476 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005477 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5478 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005479 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005480
Dan Gohman475871a2008-07-27 21:46:04 +00005481 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005482 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005483 SDValue Op = BV->getOperand(i);
5484 // If the vector element type is not legal, the BUILD_VECTOR operands
5485 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005486 if (Op.getValueType() != SrcEltVT)
5487 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005488 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005489 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005490 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005491 }
Evan Chenga87008d2009-02-25 22:49:59 +00005492 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5493 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005494 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005495
Chris Lattner6258fb22006-04-02 02:53:43 +00005496 // Otherwise, we're growing or shrinking the elements. To avoid having to
5497 // handle annoying details of growing/shrinking FP values, we convert them to
5498 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005499 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005500 // Convert the input float vector to a int vector where the elements are the
5501 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005502 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005503 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005504 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005505 SrcEltVT = IntVT;
5506 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005507
Chris Lattner6258fb22006-04-02 02:53:43 +00005508 // Now we know the input is an integer vector. If the output is a FP type,
5509 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005510 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005511 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005512 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005513 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005514
Chris Lattner6258fb22006-04-02 02:53:43 +00005515 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005516 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005517 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005518
Chris Lattner6258fb22006-04-02 02:53:43 +00005519 // Okay, we know the src/dst types are both integers of differing types.
5520 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005521 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005522 if (SrcBitSize < DstBitSize) {
5523 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005524
Dan Gohman475871a2008-07-27 21:46:04 +00005525 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005526 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005527 i += NumInputsPerOutput) {
5528 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005529 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005530 bool EltIsUndef = true;
5531 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5532 // Shift the previously computed bits over.
5533 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005534 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005535 if (Op.getOpcode() == ISD::UNDEF) continue;
5536 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005537
Jay Foad40f8f622010-12-07 08:25:19 +00005538 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005539 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005540 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005541
Chris Lattner6258fb22006-04-02 02:53:43 +00005542 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005543 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005544 else
5545 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5546 }
5547
Owen Anderson23b9b192009-08-12 00:36:31 +00005548 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005549 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5550 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005551 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005552
Chris Lattner6258fb22006-04-02 02:53:43 +00005553 // Finally, this must be the case where we are shrinking elements: each input
5554 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005555 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005556 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005557 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5558 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005559 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005560
Dan Gohman7f321562007-06-25 16:23:39 +00005561 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005562 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5563 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005564 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005565 continue;
5566 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005567
Jay Foad40f8f622010-12-07 08:25:19 +00005568 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5569 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005570
Chris Lattner6258fb22006-04-02 02:53:43 +00005571 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005572 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005573 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005574 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005575 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005576 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5577 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005578 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005579 }
5580
5581 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005582 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005583 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5584 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005585
Evan Chenga87008d2009-02-25 22:49:59 +00005586 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5587 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005588}
5589
Dan Gohman475871a2008-07-27 21:46:04 +00005590SDValue DAGCombiner::visitFADD(SDNode *N) {
5591 SDValue N0 = N->getOperand(0);
5592 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005593 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5594 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005595 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005596
Dan Gohman7f321562007-06-25 16:23:39 +00005597 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005598 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005599 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005600 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005601 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005602
Bill Wendlingb0162f52009-01-30 22:53:48 +00005603 // fold (fadd c1, c2) -> (fadd c1, c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005604 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005605 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005606 // canonicalize constant to RHS
5607 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005608 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5609 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005610 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5611 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005612 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005613 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005614 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5615 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005616 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005617 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005618 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005619 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5620 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005621 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005622 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005623
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005624 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005625 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5626 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5627 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005628 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005629 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5630 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005631
Dan Gohman475871a2008-07-27 21:46:04 +00005632 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005633}
5634
Dan Gohman475871a2008-07-27 21:46:04 +00005635SDValue DAGCombiner::visitFSUB(SDNode *N) {
5636 SDValue N0 = N->getOperand(0);
5637 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005638 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5639 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005640 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005641
Dan Gohman7f321562007-06-25 16:23:39 +00005642 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005643 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005644 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005645 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005646 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005647
Nate Begemana0e221d2005-10-18 00:28:13 +00005648 // fold (fsub c1, c2) -> c1-c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005649 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005650 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005651 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005652 if (DAG.getTarget().Options.UnsafeFPMath &&
5653 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005654 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005655 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005656 if (DAG.getTarget().Options.UnsafeFPMath &&
5657 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005658 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005659 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005660 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005661 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005662 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005663 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005664 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005665 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005666 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005667
Bill Wendling5a894342012-03-15 05:12:00 +00005668 // If 'unsafe math' is enabled, fold
5669 // (fsub x, (fadd x, y)) -> (fneg y) &
5670 // (fsub x, (fadd y, x)) -> (fneg y)
5671 if (DAG.getTarget().Options.UnsafeFPMath) {
5672 if (N1.getOpcode() == ISD::FADD) {
5673 SDValue N10 = N1->getOperand(0);
5674 SDValue N11 = N1->getOperand(1);
5675
5676 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
5677 &DAG.getTarget().Options))
5678 return GetNegatedExpression(N11, DAG, LegalOperations);
5679 else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
5680 &DAG.getTarget().Options))
5681 return GetNegatedExpression(N10, DAG, LegalOperations);
5682 }
5683 }
5684
Dan Gohman475871a2008-07-27 21:46:04 +00005685 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005686}
5687
Dan Gohman475871a2008-07-27 21:46:04 +00005688SDValue DAGCombiner::visitFMUL(SDNode *N) {
5689 SDValue N0 = N->getOperand(0);
5690 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005691 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5692 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005693 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005694 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005695
Dan Gohman7f321562007-06-25 16:23:39 +00005696 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005697 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005698 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005699 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005700 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005701
Nate Begeman11af4ea2005-10-17 20:40:11 +00005702 // fold (fmul c1, c2) -> c1*c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005703 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005704 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005705 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00005706 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005707 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5708 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005709 if (DAG.getTarget().Options.UnsafeFPMath &&
5710 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005711 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00005712 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005713 if (DAG.getTarget().Options.UnsafeFPMath &&
5714 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00005715 return N1;
Nate Begeman11af4ea2005-10-17 20:40:11 +00005716 // fold (fmul X, 2.0) -> (fadd X, X)
5717 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005718 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00005719 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00005720 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00005721 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005722 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005723
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005724 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005725 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005726 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005727 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005728 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005729 // Both can be negated for free, check to see if at least one is cheaper
5730 // negated.
5731 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005732 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005733 GetNegatedExpression(N0, DAG, LegalOperations),
5734 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005735 }
5736 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005737
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005738 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005739 if (DAG.getTarget().Options.UnsafeFPMath &&
5740 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005741 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005742 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00005743 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00005744 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005745
Dan Gohman475871a2008-07-27 21:46:04 +00005746 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005747}
5748
Dan Gohman475871a2008-07-27 21:46:04 +00005749SDValue DAGCombiner::visitFDIV(SDNode *N) {
5750 SDValue N0 = N->getOperand(0);
5751 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005752 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5753 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005754 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005755 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005756
Dan Gohman7f321562007-06-25 16:23:39 +00005757 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005758 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005759 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005760 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005761 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005762
Nate Begemana148d982006-01-18 22:35:16 +00005763 // fold (fdiv c1, c2) -> c1/c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005764 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005765 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005766
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00005767 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
5768 if (N1CFP && VT != MVT::ppcf128 && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00005769 // Compute the reciprocal 1.0 / c2.
5770 APFloat N1APF = N1CFP->getValueAPF();
5771 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
5772 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00005773 // Only do the transform if the reciprocal is a legal fp immediate that
5774 // isn't too nasty (eg NaN, denormal, ...).
5775 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00005776 (!LegalOperations ||
5777 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
5778 // backend)... we should handle this gracefully after Legalize.
5779 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
5780 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
5781 TLI.isFPImmLegal(Recip, VT)))
Duncan Sands961d6662012-04-07 20:04:00 +00005782 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0,
5783 DAG.getConstantFP(Recip, VT));
5784 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005785
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005786 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005787 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005788 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005789 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005790 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005791 // Both can be negated for free, check to see if at least one is cheaper
5792 // negated.
5793 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00005794 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005795 GetNegatedExpression(N0, DAG, LegalOperations),
5796 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005797 }
5798 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005799
Dan Gohman475871a2008-07-27 21:46:04 +00005800 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005801}
5802
Dan Gohman475871a2008-07-27 21:46:04 +00005803SDValue DAGCombiner::visitFREM(SDNode *N) {
5804 SDValue N0 = N->getOperand(0);
5805 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005806 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5807 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005808 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00005809
Nate Begemana148d982006-01-18 22:35:16 +00005810 // fold (frem c1, c2) -> fmod(c1,c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005811 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005812 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00005813
Dan Gohman475871a2008-07-27 21:46:04 +00005814 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005815}
5816
Dan Gohman475871a2008-07-27 21:46:04 +00005817SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
5818 SDValue N0 = N->getOperand(0);
5819 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00005820 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5821 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005822 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00005823
Owen Anderson825b72b2009-08-11 20:47:22 +00005824 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005825 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005826
Chris Lattner12d83032006-03-05 05:30:57 +00005827 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00005828 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00005829 // copysign(x, c1) -> fabs(x) iff ispos(c1)
5830 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00005831 if (!V.isNegative()) {
5832 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005833 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00005834 } else {
5835 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005836 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00005837 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00005838 }
Chris Lattner12d83032006-03-05 05:30:57 +00005839 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005840
Chris Lattner12d83032006-03-05 05:30:57 +00005841 // copysign(fabs(x), y) -> copysign(x, y)
5842 // copysign(fneg(x), y) -> copysign(x, y)
5843 // copysign(copysign(x,z), y) -> copysign(x, y)
5844 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
5845 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005846 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5847 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00005848
5849 // copysign(x, abs(y)) -> abs(x)
5850 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005851 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005852
Chris Lattner12d83032006-03-05 05:30:57 +00005853 // copysign(x, copysign(y,z)) -> copysign(x, z)
5854 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005855 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5856 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005857
Chris Lattner12d83032006-03-05 05:30:57 +00005858 // copysign(x, fp_extend(y)) -> copysign(x, y)
5859 // copysign(x, fp_round(y)) -> copysign(x, y)
5860 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005861 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5862 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00005863
Dan Gohman475871a2008-07-27 21:46:04 +00005864 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00005865}
5866
Dan Gohman475871a2008-07-27 21:46:04 +00005867SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
5868 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005869 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005870 EVT VT = N->getValueType(0);
5871 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00005872
Nate Begeman1d4d4142005-09-01 00:19:25 +00005873 // fold (sint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005874 if (N0C && OpVT != MVT::ppcf128 &&
5875 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005876 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005877 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005878 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005879
Chris Lattnercda88752008-06-26 00:16:49 +00005880 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
5881 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005882 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
5883 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005884 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005885 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005886 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005887 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005888
Dan Gohman475871a2008-07-27 21:46:04 +00005889 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005890}
5891
Dan Gohman475871a2008-07-27 21:46:04 +00005892SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
5893 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005894 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005895 EVT VT = N->getValueType(0);
5896 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00005897
Nate Begeman1d4d4142005-09-01 00:19:25 +00005898 // fold (uint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005899 if (N0C && OpVT != MVT::ppcf128 &&
5900 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005901 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005902 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005903 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005904
Chris Lattnercda88752008-06-26 00:16:49 +00005905 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
5906 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005907 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
5908 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005909 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005910 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005911 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005912 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005913
Dan Gohman475871a2008-07-27 21:46:04 +00005914 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005915}
5916
Dan Gohman475871a2008-07-27 21:46:04 +00005917SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
5918 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005919 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005920 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005921
Nate Begeman1d4d4142005-09-01 00:19:25 +00005922 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00005923 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005924 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
5925
Dan Gohman475871a2008-07-27 21:46:04 +00005926 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005927}
5928
Dan Gohman475871a2008-07-27 21:46:04 +00005929SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
5930 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005931 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005932 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005933
Nate Begeman1d4d4142005-09-01 00:19:25 +00005934 // fold (fp_to_uint c1fp) -> c1
Owen Anderson825b72b2009-08-11 20:47:22 +00005935 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005936 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
5937
Dan Gohman475871a2008-07-27 21:46:04 +00005938 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005939}
5940
Dan Gohman475871a2008-07-27 21:46:04 +00005941SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
5942 SDValue N0 = N->getOperand(0);
5943 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005944 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005945 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005946
Nate Begeman1d4d4142005-09-01 00:19:25 +00005947 // fold (fp_round c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00005948 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005949 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005950
Chris Lattner79dbea52006-03-13 06:26:26 +00005951 // fold (fp_round (fp_extend x)) -> x
5952 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
5953 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005954
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005955 // fold (fp_round (fp_round x)) -> (fp_round x)
5956 if (N0.getOpcode() == ISD::FP_ROUND) {
5957 // This is a value preserving truncation if both round's are.
5958 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005959 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00005960 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005961 DAG.getIntPtrConstant(IsTrunc));
5962 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005963
Chris Lattner79dbea52006-03-13 06:26:26 +00005964 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00005965 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00005966 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
5967 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00005968 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00005969 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5970 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00005971 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005972
Dan Gohman475871a2008-07-27 21:46:04 +00005973 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005974}
5975
Dan Gohman475871a2008-07-27 21:46:04 +00005976SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
5977 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005978 EVT VT = N->getValueType(0);
5979 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00005980 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005981
Nate Begeman1d4d4142005-09-01 00:19:25 +00005982 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00005983 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005984 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00005985 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005986 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005987
Dan Gohman475871a2008-07-27 21:46:04 +00005988 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005989}
5990
Dan Gohman475871a2008-07-27 21:46:04 +00005991SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
5992 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005993 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005994 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005995
Chris Lattner5938bef2007-12-29 06:55:23 +00005996 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00005997 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00005998 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00005999 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006000
Nate Begeman1d4d4142005-09-01 00:19:25 +00006001 // fold (fp_extend c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00006002 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006003 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006004
6005 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6006 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006007 if (N0.getOpcode() == ISD::FP_ROUND
6008 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006009 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006010 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006011 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006012 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
6013 In, N0.getOperand(1));
6014 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006015 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006016
Chris Lattner0bd48932008-01-17 07:00:52 +00006017 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006018 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006019 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006020 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006021 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00006022 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006023 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006024 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006025 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006026 LN0->isVolatile(), LN0->isNonTemporal(),
6027 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006028 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006029 CombineTo(N0.getNode(),
6030 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
6031 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006032 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006033 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006034 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006035
Dan Gohman475871a2008-07-27 21:46:04 +00006036 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006037}
6038
Dan Gohman475871a2008-07-27 21:46:04 +00006039SDValue DAGCombiner::visitFNEG(SDNode *N) {
6040 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006041 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006042
Owen Andersonafd3d562012-03-06 00:29:31 +00006043 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6044 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006045 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006046
Chris Lattner3bd39d42008-01-27 17:42:27 +00006047 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6048 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006049 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006050 !VT.isVector() &&
6051 N0.getNode()->hasOneUse() &&
6052 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006053 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006054 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006055 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006056 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
6057 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006058 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006059 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006060 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006061 }
6062 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006063
Dan Gohman475871a2008-07-27 21:46:04 +00006064 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006065}
6066
Dan Gohman475871a2008-07-27 21:46:04 +00006067SDValue DAGCombiner::visitFABS(SDNode *N) {
6068 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006069 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006070 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006071
Nate Begeman1d4d4142005-09-01 00:19:25 +00006072 // fold (fabs c1) -> fabs(c1)
Owen Anderson825b72b2009-08-11 20:47:22 +00006073 if (N0CFP && VT != MVT::ppcf128)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006074 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006075 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006076 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006077 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006078 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006079 // fold (fabs (fcopysign x, y)) -> (fabs x)
6080 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006081 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006082
Chris Lattner3bd39d42008-01-27 17:42:27 +00006083 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6084 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006085 if (!TLI.isFAbsFree(VT) &&
6086 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006087 N0.getOperand(0).getValueType().isInteger() &&
6088 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006089 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006090 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006091 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006092 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006093 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006094 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006095 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006096 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006097 }
6098 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006099
Dan Gohman475871a2008-07-27 21:46:04 +00006100 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006101}
6102
Dan Gohman475871a2008-07-27 21:46:04 +00006103SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6104 SDValue Chain = N->getOperand(0);
6105 SDValue N1 = N->getOperand(1);
6106 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006107
Dan Gohmane0f06c72009-11-17 00:47:23 +00006108 // If N is a constant we could fold this into a fallthrough or unconditional
6109 // branch. However that doesn't happen very often in normal code, because
6110 // Instcombine/SimplifyCFG should have handled the available opportunities.
6111 // If we did this folding here, it would be necessary to update the
6112 // MachineBasicBlock CFG, which is awkward.
6113
Nate Begeman750ac1b2006-02-01 07:19:44 +00006114 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6115 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006116 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006117 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
6118 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006119 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006120 N1.getOperand(0), N1.getOperand(1), N2);
6121 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006122
Evan Cheng2a135ae2010-10-04 22:41:01 +00006123 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6124 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6125 (N1.getOperand(0).hasOneUse() &&
6126 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6127 SDNode *Trunc = 0;
6128 if (N1.getOpcode() == ISD::TRUNCATE) {
6129 // Look pass the truncate.
6130 Trunc = N1.getNode();
6131 N1 = N1.getOperand(0);
6132 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006133
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006134 // Match this pattern so that we can generate simpler code:
6135 //
6136 // %a = ...
6137 // %b = and i32 %a, 2
6138 // %c = srl i32 %b, 1
6139 // brcond i32 %c ...
6140 //
6141 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006142 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006143 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006144 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006145 // %c = setcc eq %b, 0
6146 // brcond %c ...
6147 //
6148 // This applies only when the AND constant value has one bit set and the
6149 // SRL constant is equal to the log2 of the AND constant. The back-end is
6150 // smart enough to convert the result into a TEST/JMP sequence.
6151 SDValue Op0 = N1.getOperand(0);
6152 SDValue Op1 = N1.getOperand(1);
6153
6154 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006155 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006156 SDValue AndOp1 = Op0.getOperand(1);
6157
6158 if (AndOp1.getOpcode() == ISD::Constant) {
6159 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6160
6161 if (AndConst.isPowerOf2() &&
6162 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6163 SDValue SetCC =
6164 DAG.getSetCC(N->getDebugLoc(),
6165 TLI.getSetCCResultType(Op0.getValueType()),
6166 Op0, DAG.getConstant(0, Op0.getValueType()),
6167 ISD::SETNE);
6168
Evan Chengd40d03e2010-01-06 19:38:29 +00006169 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6170 MVT::Other, Chain, SetCC, N2);
6171 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6172 // will convert it back to (X & C1) >> C2.
6173 CombineTo(N, NewBRCond, false);
6174 // Truncate is dead.
6175 if (Trunc) {
6176 removeFromWorkList(Trunc);
6177 DAG.DeleteNode(Trunc);
6178 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006179 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006180 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006181 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006182 removeFromWorkList(N1.getNode());
6183 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006184 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006185 }
6186 }
6187 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006188
6189 if (Trunc)
6190 // Restore N1 if the above transformation doesn't match.
6191 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006192 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006193
Evan Cheng2c755ba2010-02-27 07:36:59 +00006194 // Transform br(xor(x, y)) -> br(x != y)
6195 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6196 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6197 SDNode *TheXor = N1.getNode();
6198 SDValue Op0 = TheXor->getOperand(0);
6199 SDValue Op1 = TheXor->getOperand(1);
6200 if (Op0.getOpcode() == Op1.getOpcode()) {
6201 // Avoid missing important xor optimizations.
6202 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00006203 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006204 DEBUG(dbgs() << "\nReplacing.8 ";
6205 TheXor->dump(&DAG);
6206 dbgs() << "\nWith: ";
6207 Tmp.getNode()->dump(&DAG);
6208 dbgs() << '\n');
6209 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006210 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
Evan Cheng2c755ba2010-02-27 07:36:59 +00006211 removeFromWorkList(TheXor);
6212 DAG.DeleteNode(TheXor);
6213 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6214 MVT::Other, Chain, Tmp, N2);
6215 }
6216 }
6217
6218 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6219 bool Equal = false;
6220 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6221 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6222 Op0.getOpcode() == ISD::XOR) {
6223 TheXor = Op0.getNode();
6224 Equal = true;
6225 }
6226
Evan Cheng2a135ae2010-10-04 22:41:01 +00006227 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006228 if (LegalTypes)
6229 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6230 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6231 SetCCVT,
6232 Op0, Op1,
6233 Equal ? ISD::SETEQ : ISD::SETNE);
6234 // Replace the uses of XOR with SETCC
6235 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006236 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006237 removeFromWorkList(N1.getNode());
6238 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006239 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6240 MVT::Other, Chain, SetCC, N2);
6241 }
6242 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006243
Dan Gohman475871a2008-07-27 21:46:04 +00006244 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006245}
6246
Chris Lattner3ea0b472005-10-05 06:47:48 +00006247// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6248//
Dan Gohman475871a2008-07-27 21:46:04 +00006249SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006250 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006251 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006252
Dan Gohmane0f06c72009-11-17 00:47:23 +00006253 // If N is a constant we could fold this into a fallthrough or unconditional
6254 // branch. However that doesn't happen very often in normal code, because
6255 // Instcombine/SimplifyCFG should have handled the available opportunities.
6256 // If we did this folding here, it would be necessary to update the
6257 // MachineBasicBlock CFG, which is awkward.
6258
Duncan Sands8eab8a22008-06-09 11:32:28 +00006259 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006260 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006261 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6262 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006263 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006264
Nate Begemane17daeb2005-10-05 21:43:42 +00006265 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006266 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006267 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006268 N->getOperand(0), Simp.getOperand(2),
6269 Simp.getOperand(0), Simp.getOperand(1),
6270 N->getOperand(4));
6271
Dan Gohman475871a2008-07-27 21:46:04 +00006272 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006273}
6274
Evan Chengc4b527a2012-01-13 01:37:24 +00006275/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6276/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00006277/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00006278static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6279 SelectionDAG &DAG,
6280 const TargetLowering &TLI) {
6281 EVT VT;
6282 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6283 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6284 return false;
6285 VT = Use->getValueType(0);
6286 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6287 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6288 return false;
6289 VT = ST->getValue().getValueType();
6290 } else
6291 return false;
6292
6293 TargetLowering::AddrMode AM;
6294 if (N->getOpcode() == ISD::ADD) {
6295 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6296 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006297 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006298 AM.BaseOffs = Offset->getSExtValue();
6299 else
Evan Cheng03be3622012-03-06 23:33:32 +00006300 // [reg +/- reg]
6301 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006302 } else if (N->getOpcode() == ISD::SUB) {
6303 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6304 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006305 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006306 AM.BaseOffs = -Offset->getSExtValue();
6307 else
Evan Cheng03be3622012-03-06 23:33:32 +00006308 // [reg +/- reg]
6309 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006310 } else
6311 return false;
6312
6313 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6314}
6315
Duncan Sandsec87aa82008-06-15 20:12:31 +00006316/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6317/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006318/// and it has other uses besides the load / store. After the
6319/// transformation, the new indexed load / store has effectively folded
6320/// the add / subtract in and all of its other uses are redirected to the
6321/// new load / store.
6322bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006323 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006324 return false;
6325
6326 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006327 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006328 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006329 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006330 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006331 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006332 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006333 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006334 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6335 return false;
6336 Ptr = LD->getBasePtr();
6337 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006338 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006339 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006340 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006341 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6342 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6343 return false;
6344 Ptr = ST->getBasePtr();
6345 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006346 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006347 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006348 }
Chris Lattner448f2192006-11-11 00:39:41 +00006349
Chris Lattner9f1794e2006-11-11 00:56:29 +00006350 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6351 // out. There is no reason to make this a preinc/predec.
6352 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006353 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006354 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006355
Chris Lattner9f1794e2006-11-11 00:56:29 +00006356 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006357 SDValue BasePtr;
6358 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006359 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6360 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6361 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006362 // Don't create a indexed load / store with zero offset.
6363 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006364 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006365 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006366
Chris Lattner41e53fd2006-11-11 01:00:15 +00006367 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006368 // 1) The new base ptr is a frame index.
6369 // 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 +00006370 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006371 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006372 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006373 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006374
Chris Lattner41e53fd2006-11-11 01:00:15 +00006375 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6376 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006377 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006378 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006379
Chris Lattner41e53fd2006-11-11 01:00:15 +00006380 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006381 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006382 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006383 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006384 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006385 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006386
Evan Chengc843abe2007-05-24 02:35:39 +00006387 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006388 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006389
6390 // Caches for hasPredecessorHelper
6391 SmallPtrSet<const SDNode *, 32> Visited;
6392 SmallVector<const SDNode *, 16> Worklist;
6393
Gabor Greifba36cb52008-08-28 21:40:38 +00006394 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6395 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006396 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006397 if (Use == N)
6398 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006399 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006400 return false;
6401
Evan Chengc4b527a2012-01-13 01:37:24 +00006402 // If Ptr may be folded in addressing mode of other use, then it's
6403 // not profitable to do this transformation.
6404 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006405 RealUse = true;
6406 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006407
Chris Lattner9f1794e2006-11-11 00:56:29 +00006408 if (!RealUse)
6409 return false;
6410
Dan Gohman475871a2008-07-27 21:46:04 +00006411 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006412 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006413 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6414 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006415 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006416 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6417 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006418 ++PreIndexedNodes;
6419 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006420 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006421 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006422 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006423 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006424 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006425 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006426 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006427 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6428 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006429 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006430 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006431 }
6432
Chris Lattner9f1794e2006-11-11 00:56:29 +00006433 // Finally, since the node is now dead, remove it from the graph.
6434 DAG.DeleteNode(N);
6435
6436 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006437 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greifba36cb52008-08-28 21:40:38 +00006438 removeFromWorkList(Ptr.getNode());
6439 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006440
6441 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006442}
6443
Duncan Sandsec87aa82008-06-15 20:12:31 +00006444/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006445/// add / sub of the base pointer node into a post-indexed load / store.
6446/// The transformation folded the add / subtract into the new indexed
6447/// load / store effectively and all of its uses are redirected to the
6448/// new load / store.
6449bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006450 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006451 return false;
6452
6453 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006454 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006455 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006456 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006457 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006458 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006459 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006460 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6461 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6462 return false;
6463 Ptr = LD->getBasePtr();
6464 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006465 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006466 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006467 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006468 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6469 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6470 return false;
6471 Ptr = ST->getBasePtr();
6472 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006473 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006474 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006475 }
Chris Lattner448f2192006-11-11 00:39:41 +00006476
Gabor Greifba36cb52008-08-28 21:40:38 +00006477 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006478 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006479
Gabor Greifba36cb52008-08-28 21:40:38 +00006480 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6481 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006482 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006483 if (Op == N ||
6484 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6485 continue;
6486
Dan Gohman475871a2008-07-27 21:46:04 +00006487 SDValue BasePtr;
6488 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006489 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6490 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00006491 // Don't create a indexed load / store with zero offset.
6492 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006493 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006494 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006495
Chris Lattner9f1794e2006-11-11 00:56:29 +00006496 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00006497 // 1) All uses are load / store ops that use it as base ptr (and
6498 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00006499 // 2) Op must be independent of N, i.e. Op is neither a predecessor
6500 // nor a successor of N. Otherwise, if Op is folded that would
6501 // create a cycle.
6502
Evan Chengcaab1292009-05-06 18:25:01 +00006503 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6504 continue;
6505
Chris Lattner9f1794e2006-11-11 00:56:29 +00006506 // Check for #1.
6507 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006508 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6509 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00006510 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00006511 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00006512 continue;
6513
Chris Lattner9f1794e2006-11-11 00:56:29 +00006514 // If all the uses are load / store addresses, then don't do the
6515 // transformation.
6516 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6517 bool RealUse = false;
6518 for (SDNode::use_iterator III = Use->use_begin(),
6519 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00006520 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00006521 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006522 RealUse = true;
6523 }
Chris Lattner448f2192006-11-11 00:39:41 +00006524
Chris Lattner9f1794e2006-11-11 00:56:29 +00006525 if (!RealUse) {
6526 TryNext = true;
6527 break;
Chris Lattner448f2192006-11-11 00:39:41 +00006528 }
6529 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006530 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006531
Chris Lattner9f1794e2006-11-11 00:56:29 +00006532 if (TryNext)
6533 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006534
Chris Lattner9f1794e2006-11-11 00:56:29 +00006535 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00006536 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006537 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00006538 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6539 BasePtr, Offset, AM)
6540 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6541 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006542 ++PostIndexedNodes;
6543 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006544 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006545 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006546 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006547 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006548 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006549 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006550 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006551 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6552 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006553 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006554 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner448f2192006-11-11 00:39:41 +00006555 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006556
Chris Lattner9f1794e2006-11-11 00:56:29 +00006557 // Finally, since the node is now dead, remove it from the graph.
6558 DAG.DeleteNode(N);
6559
6560 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00006561 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006562 Result.getValue(isLoad ? 1 : 0));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006563 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006564 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006565 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006566 }
6567 }
6568 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006569
Chris Lattner448f2192006-11-11 00:39:41 +00006570 return false;
6571}
6572
Dan Gohman475871a2008-07-27 21:46:04 +00006573SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00006574 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006575 SDValue Chain = LD->getChain();
6576 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00006577
Evan Cheng45a7ca92007-05-01 00:38:21 +00006578 // If load is not volatile and there are no uses of the loaded value (and
6579 // the updated indexed value in case of indexed loads), change uses of the
6580 // chain value into uses of the chain input (i.e. delete the dead load).
6581 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006582 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00006583 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00006584 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00006585 // It's not safe to use the two value CombineTo variant here. e.g.
6586 // v1, chain2 = load chain1, loc
6587 // v2, chain3 = load chain2, loc
6588 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00006589 // Now we replace use of chain2 with chain1. This makes the second load
6590 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00006591 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006592 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006593 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006594 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006595 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006596 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006597 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendlingc0debad2009-01-30 23:27:35 +00006598
Chris Lattner125991a2008-01-24 07:57:06 +00006599 if (N->use_empty()) {
6600 removeFromWorkList(N);
6601 DAG.DeleteNode(N);
6602 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006603
Dan Gohman475871a2008-07-27 21:46:04 +00006604 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00006605 }
Evan Cheng498f5592007-05-01 08:53:39 +00006606 } else {
6607 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00006608 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00006609 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00006610 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00006611 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006612 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006613 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006614 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006615 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006616 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006617 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman475871a2008-07-27 21:46:04 +00006618 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006619 DAG.getUNDEF(N->getValueType(1)));
6620 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng02c42852008-01-16 23:11:54 +00006621 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00006622 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006623 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00006624 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00006625 }
6626 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006627
Chris Lattner01a22022005-10-10 22:04:48 +00006628 // If this load is directly stored, replace the load value with the stored
6629 // value.
6630 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006631 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00006632 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00006633 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00006634 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
6635 if (PrevST->getBasePtr() == Ptr &&
6636 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006637 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00006638 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006639 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006640
Evan Cheng255f20f2010-04-01 06:04:33 +00006641 // Try to infer better alignment information than the load already has.
6642 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00006643 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
6644 if (Align > LD->getAlignment())
6645 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
6646 LD->getValueType(0),
6647 Chain, Ptr, LD->getPointerInfo(),
6648 LD->getMemoryVT(),
6649 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00006650 }
6651 }
6652
Jim Laskey7ca56af2006-10-11 13:47:09 +00006653 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00006654 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00006655 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00006656
Jim Laskey6ff23e52006-10-04 16:53:27 +00006657 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00006658 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00006659 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006660
Jim Laskey279f0532006-09-25 16:29:54 +00006661 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006662 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00006663 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00006664 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00006665 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006666 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006667 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00006668 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
6669 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00006670 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006671 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00006672 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006673 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00006674 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006675 }
Jim Laskey279f0532006-09-25 16:29:54 +00006676
Jim Laskey6ff23e52006-10-04 16:53:27 +00006677 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00006678 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00006679 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006680
Nate Begemanb6aef5c2009-09-15 00:18:30 +00006681 // Make sure the new and old chains are cleaned up.
6682 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006683
Jim Laskey274062c2006-10-13 23:32:28 +00006684 // Replace uses with load result and token factor. Don't add users
6685 // to work list.
6686 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00006687 }
6688 }
6689
Evan Cheng7fc033a2006-11-03 03:06:21 +00006690 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00006691 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00006692 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00006693
Dan Gohman475871a2008-07-27 21:46:04 +00006694 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00006695}
6696
Chris Lattner2392ae72010-04-15 04:48:01 +00006697/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
6698/// load is having specific bytes cleared out. If so, return the byte size
6699/// being masked out and the shift amount.
6700static std::pair<unsigned, unsigned>
6701CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
6702 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006703
Chris Lattner2392ae72010-04-15 04:48:01 +00006704 // Check for the structure we're looking for.
6705 if (V->getOpcode() != ISD::AND ||
6706 !isa<ConstantSDNode>(V->getOperand(1)) ||
6707 !ISD::isNormalLoad(V->getOperand(0).getNode()))
6708 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006709
Chris Lattnere6987582010-04-15 06:10:49 +00006710 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00006711 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00006712 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006713
Chris Lattnere6987582010-04-15 06:10:49 +00006714 // The store should be chained directly to the load or be an operand of a
6715 // tokenfactor.
6716 if (LD == Chain.getNode())
6717 ; // ok.
6718 else if (Chain->getOpcode() != ISD::TokenFactor)
6719 return Result; // Fail.
6720 else {
6721 bool isOk = false;
6722 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
6723 if (Chain->getOperand(i).getNode() == LD) {
6724 isOk = true;
6725 break;
6726 }
6727 if (!isOk) return Result;
6728 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006729
Chris Lattner2392ae72010-04-15 04:48:01 +00006730 // This only handles simple types.
6731 if (V.getValueType() != MVT::i16 &&
6732 V.getValueType() != MVT::i32 &&
6733 V.getValueType() != MVT::i64)
6734 return Result;
6735
6736 // Check the constant mask. Invert it so that the bits being masked out are
6737 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
6738 // follow the sign bit for uniformity.
6739 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
6740 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
6741 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
6742 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
6743 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
6744 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006745
Chris Lattner2392ae72010-04-15 04:48:01 +00006746 // See if we have a continuous run of bits. If so, we have 0*1+0*
6747 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
6748 return Result;
6749
6750 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
6751 if (V.getValueType() != MVT::i64 && NotMaskLZ)
6752 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006753
Chris Lattner2392ae72010-04-15 04:48:01 +00006754 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
6755 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006756 case 1:
6757 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00006758 case 4: break;
6759 default: return Result; // All one mask, or 5-byte mask.
6760 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006761
Chris Lattner2392ae72010-04-15 04:48:01 +00006762 // Verify that the first bit starts at a multiple of mask so that the access
6763 // is aligned the same as the access width.
6764 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006765
Chris Lattner2392ae72010-04-15 04:48:01 +00006766 Result.first = MaskedBytes;
6767 Result.second = NotMaskTZ/8;
6768 return Result;
6769}
6770
6771
6772/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
6773/// provides a value as specified by MaskInfo. If so, replace the specified
6774/// store with a narrower store of truncated IVal.
6775static SDNode *
6776ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
6777 SDValue IVal, StoreSDNode *St,
6778 DAGCombiner *DC) {
6779 unsigned NumBytes = MaskInfo.first;
6780 unsigned ByteShift = MaskInfo.second;
6781 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006782
Chris Lattner2392ae72010-04-15 04:48:01 +00006783 // Check to see if IVal is all zeros in the part being masked in by the 'or'
6784 // that uses this. If not, this is not a replacement.
6785 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
6786 ByteShift*8, (ByteShift+NumBytes)*8);
6787 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006788
Chris Lattner2392ae72010-04-15 04:48:01 +00006789 // Check that it is legal on the target to do this. It is legal if the new
6790 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
6791 // legalization.
6792 MVT VT = MVT::getIntegerVT(NumBytes*8);
6793 if (!DC->isTypeLegal(VT))
6794 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006795
Chris Lattner2392ae72010-04-15 04:48:01 +00006796 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
6797 // shifted by ByteShift and truncated down to NumBytes.
6798 if (ByteShift)
6799 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00006800 DAG.getConstant(ByteShift*8,
6801 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00006802
6803 // Figure out the offset for the store and the alignment of the access.
6804 unsigned StOffset;
6805 unsigned NewAlign = St->getAlignment();
6806
6807 if (DAG.getTargetLoweringInfo().isLittleEndian())
6808 StOffset = ByteShift;
6809 else
6810 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006811
Chris Lattner2392ae72010-04-15 04:48:01 +00006812 SDValue Ptr = St->getBasePtr();
6813 if (StOffset) {
6814 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
6815 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
6816 NewAlign = MinAlign(NewAlign, StOffset);
6817 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006818
Chris Lattner2392ae72010-04-15 04:48:01 +00006819 // Truncate down to the new size.
6820 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006821
Chris Lattner2392ae72010-04-15 04:48:01 +00006822 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006823 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006824 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00006825 false, false, NewAlign).getNode();
6826}
6827
Evan Cheng8b944d32009-05-28 00:35:15 +00006828
6829/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
6830/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
6831/// of the loaded bits, try narrowing the load and store if it would end up
6832/// being a win for performance or code size.
6833SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
6834 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00006835 if (ST->isVolatile())
6836 return SDValue();
6837
Evan Cheng8b944d32009-05-28 00:35:15 +00006838 SDValue Chain = ST->getChain();
6839 SDValue Value = ST->getValue();
6840 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00006841 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00006842
6843 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00006844 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006845
6846 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006847
Chris Lattner2392ae72010-04-15 04:48:01 +00006848 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
6849 // is a byte mask indicating a consecutive number of bytes, check to see if
6850 // Y is known to provide just those bytes. If so, we try to replace the
6851 // load + replace + store sequence with a single (narrower) store, which makes
6852 // the load dead.
6853 if (Opc == ISD::OR) {
6854 std::pair<unsigned, unsigned> MaskedLoad;
6855 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
6856 if (MaskedLoad.first)
6857 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6858 Value.getOperand(1), ST,this))
6859 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006860
Chris Lattner2392ae72010-04-15 04:48:01 +00006861 // Or is commutative, so try swapping X and Y.
6862 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
6863 if (MaskedLoad.first)
6864 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6865 Value.getOperand(0), ST,this))
6866 return SDValue(NewST, 0);
6867 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006868
Evan Cheng8b944d32009-05-28 00:35:15 +00006869 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
6870 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00006871 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006872
6873 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00006874 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
6875 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00006876 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00006877 if (LD->getBasePtr() != Ptr ||
6878 LD->getPointerInfo().getAddrSpace() !=
6879 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00006880 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006881
6882 // Find the type to narrow it the load / op / store to.
6883 SDValue N1 = Value.getOperand(1);
6884 unsigned BitWidth = N1.getValueSizeInBits();
6885 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
6886 if (Opc == ISD::AND)
6887 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00006888 if (Imm == 0 || Imm.isAllOnesValue())
6889 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006890 unsigned ShAmt = Imm.countTrailingZeros();
6891 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
6892 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00006893 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006894 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00006895 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00006896 TLI.isNarrowingProfitable(VT, NewVT))) {
6897 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00006898 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006899 }
Evan Chengcdcecc02009-05-28 18:41:02 +00006900 if (NewBW >= BitWidth)
6901 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006902
6903 // If the lsb changed does not start at the type bitwidth boundary,
6904 // start at the previous one.
6905 if (ShAmt % NewBW)
6906 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
6907 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
6908 if ((Imm & Mask) == Imm) {
6909 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
6910 if (Opc == ISD::AND)
6911 NewImm ^= APInt::getAllOnesValue(NewBW);
6912 uint64_t PtrOff = ShAmt / 8;
6913 // For big endian targets, we need to adjust the offset to the pointer to
6914 // load the correct bytes.
6915 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00006916 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00006917
6918 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006919 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Chris Lattner2392ae72010-04-15 04:48:01 +00006920 if (NewAlign < TLI.getTargetData()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00006921 return SDValue();
6922
Evan Cheng8b944d32009-05-28 00:35:15 +00006923 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
6924 Ptr.getValueType(), Ptr,
6925 DAG.getConstant(PtrOff, Ptr.getValueType()));
6926 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
6927 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006928 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006929 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006930 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006931 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
6932 DAG.getConstant(NewImm, NewVT));
6933 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
6934 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006935 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006936 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006937
6938 AddToWorkList(NewPtr.getNode());
6939 AddToWorkList(NewLD.getNode());
6940 AddToWorkList(NewVal.getNode());
6941 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006942 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Cheng8b944d32009-05-28 00:35:15 +00006943 ++OpsNarrowed;
6944 return NewST;
6945 }
6946 }
6947
Evan Chengcdcecc02009-05-28 18:41:02 +00006948 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006949}
6950
Evan Cheng31959b12011-02-02 01:06:55 +00006951/// TransformFPLoadStorePair - For a given floating point load / store pair,
6952/// if the load value isn't used by any other operations, then consider
6953/// transforming the pair to integer load / store operations if the target
6954/// deems the transformation profitable.
6955SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
6956 StoreSDNode *ST = cast<StoreSDNode>(N);
6957 SDValue Chain = ST->getChain();
6958 SDValue Value = ST->getValue();
6959 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
6960 Value.hasOneUse() &&
6961 Chain == SDValue(Value.getNode(), 1)) {
6962 LoadSDNode *LD = cast<LoadSDNode>(Value);
6963 EVT VT = LD->getMemoryVT();
6964 if (!VT.isFloatingPoint() ||
6965 VT != ST->getMemoryVT() ||
6966 LD->isNonTemporal() ||
6967 ST->isNonTemporal() ||
6968 LD->getPointerInfo().getAddrSpace() != 0 ||
6969 ST->getPointerInfo().getAddrSpace() != 0)
6970 return SDValue();
6971
6972 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
6973 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
6974 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
6975 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
6976 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
6977 return SDValue();
6978
6979 unsigned LDAlign = LD->getAlignment();
6980 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006981 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Evan Cheng31959b12011-02-02 01:06:55 +00006982 unsigned ABIAlign = TLI.getTargetData()->getABITypeAlignment(IntVTTy);
6983 if (LDAlign < ABIAlign || STAlign < ABIAlign)
6984 return SDValue();
6985
6986 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
6987 LD->getChain(), LD->getBasePtr(),
6988 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006989 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00006990
6991 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
6992 NewLD, ST->getBasePtr(),
6993 ST->getPointerInfo(),
6994 false, false, STAlign);
6995
6996 AddToWorkList(NewLD.getNode());
6997 AddToWorkList(NewST.getNode());
6998 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006999 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Cheng31959b12011-02-02 01:06:55 +00007000 ++LdStFP2Int;
7001 return NewST;
7002 }
7003
7004 return SDValue();
7005}
7006
Dan Gohman475871a2008-07-27 21:46:04 +00007007SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007008 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007009 SDValue Chain = ST->getChain();
7010 SDValue Value = ST->getValue();
7011 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007012
Evan Cheng59d5b682007-05-07 21:27:48 +00007013 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00007014 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007015 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007016 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00007017 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00007018 EVT SVT = Value.getOperand(0).getValueType();
Dan Gohman1ba519b2009-02-20 23:29:13 +00007019 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00007020 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007021 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00007022 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007023 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00007024 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00007025 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007026 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00007027 }
Owen Andersona34d9362011-04-14 17:30:49 +00007028
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007029 // Turn 'store undef, Ptr' -> nothing.
7030 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
7031 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007032
Nate Begeman2cbba892006-12-11 02:23:46 +00007033 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00007034 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007035 // NOTE: If the original store is volatile, this transform must not increase
7036 // the number of stores. For example, on x86-32 an f64 can be stored in one
7037 // processor operation but an i64 (which is not legal) requires two. So the
7038 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00007039 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00007040 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00007041 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007042 default: llvm_unreachable("Unknown FP type");
Owen Anderson825b72b2009-08-11 20:47:22 +00007043 case MVT::f80: // We don't do this for these yet.
7044 case MVT::f128:
7045 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00007046 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007047 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00007048 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007049 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00007050 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00007051 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00007052 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007053 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007054 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00007055 }
7056 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007057 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00007058 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007059 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007060 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00007061 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00007062 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00007063 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007064 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007065 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007066 }
Owen Andersona34d9362011-04-14 17:30:49 +00007067
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007068 if (!ST->isVolatile() &&
7069 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00007070 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00007071 // argument passing. Since this is so common, custom legalize the
7072 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00007073 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007074 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
7075 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00007076 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00007077
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007078 unsigned Alignment = ST->getAlignment();
7079 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00007080 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007081
Bill Wendlingc144a572009-01-30 23:36:47 +00007082 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007083 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007084 isVolatile, isNonTemporal,
7085 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00007086 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00007087 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00007088 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00007089 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007090 Ptr, ST->getPointerInfo().getWithOffset(4),
7091 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00007092 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00007093 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00007094 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00007095 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007096
Chris Lattner62be1a72006-12-12 04:16:14 +00007097 break;
Evan Cheng25ece662006-12-11 17:25:19 +00007098 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007099 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007100 }
7101
Evan Cheng255f20f2010-04-01 06:04:33 +00007102 // Try to infer better alignment information than the store already has.
7103 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007104 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7105 if (Align > ST->getAlignment())
7106 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
7107 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
7108 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007109 }
7110 }
7111
Evan Cheng31959b12011-02-02 01:06:55 +00007112 // Try transforming a pair floating point load / store ops to integer
7113 // load / store ops.
7114 SDValue NewST = TransformFPLoadStorePair(N);
7115 if (NewST.getNode())
7116 return NewST;
7117
Scott Michelfdc40a02009-02-17 22:15:04 +00007118 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007119 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007120 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007121
Jim Laskey6ff23e52006-10-04 16:53:27 +00007122 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007123 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007124 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007125
7126 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007127 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007128 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007129 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007130 ST->getMemoryVT(), ST->isVolatile(),
7131 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007132 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00007133 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007134 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007135 ST->isVolatile(), ST->isNonTemporal(),
7136 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007137 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007138
Jim Laskey279f0532006-09-25 16:29:54 +00007139 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00007140 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007141 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00007142
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007143 // Make sure the new and old chains are cleaned up.
7144 AddToWorkList(Token.getNode());
7145
Jim Laskey274062c2006-10-13 23:32:28 +00007146 // Don't add users to work list.
7147 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007148 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00007149 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007150
Evan Cheng33dbedc2006-11-05 09:31:14 +00007151 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007152 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007153 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00007154
Chris Lattner3c872852007-12-29 06:26:16 +00007155 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00007156 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00007157 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00007158 // See if we can simplify the input to this truncstore with knowledge that
7159 // only the low bits are being used. For example:
7160 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00007161 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007162 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00007163 APInt::getLowBitsSet(
7164 Value.getValueType().getScalarType().getSizeInBits(),
7165 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00007166 AddToWorkList(Value.getNode());
7167 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00007168 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007169 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007170 ST->isVolatile(), ST->isNonTemporal(),
7171 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00007172
Chris Lattnere33544c2007-10-13 06:58:48 +00007173 // Otherwise, see if we can simplify the operation with
7174 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00007175 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00007176 APInt::getLowBitsSet(
7177 Value.getValueType().getScalarType().getSizeInBits(),
7178 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00007179 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00007180 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007181
Chris Lattner3c872852007-12-29 06:26:16 +00007182 // If this is a load followed by a store to the same location, then the store
7183 // is dead/noop.
7184 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007185 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007186 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00007187 // There can't be any side effects between the load and store, such as
7188 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00007189 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00007190 // The store is dead, remove it.
7191 return Chain;
7192 }
7193 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007194
Chris Lattnerddf89562008-01-17 19:59:44 +00007195 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
7196 // truncating store. We can do this even if this is already a truncstore.
7197 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00007198 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007199 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007200 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007201 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007202 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007203 ST->isVolatile(), ST->isNonTemporal(),
7204 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00007205 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007206
Evan Cheng8b944d32009-05-28 00:35:15 +00007207 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00007208}
7209
Dan Gohman475871a2008-07-27 21:46:04 +00007210SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
7211 SDValue InVec = N->getOperand(0);
7212 SDValue InVal = N->getOperand(1);
7213 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00007214 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00007215
Bob Wilson492fd452010-05-19 23:42:58 +00007216 // If the inserted element is an UNDEF, just use the input vector.
7217 if (InVal.getOpcode() == ISD::UNDEF)
7218 return InVec;
7219
Nadav Rotem609d54e2011-02-12 14:40:33 +00007220 EVT VT = InVec.getValueType();
7221
Owen Anderson95771af2011-02-25 21:41:48 +00007222 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00007223 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
7224 return SDValue();
7225
Eli Friedman9db817f2011-09-09 21:04:06 +00007226 // Check that we know which element is being inserted
7227 if (!isa<ConstantSDNode>(EltNo))
7228 return SDValue();
7229 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007230
Eli Friedman9db817f2011-09-09 21:04:06 +00007231 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
7232 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
7233 // vector elements.
7234 SmallVector<SDValue, 8> Ops;
7235 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
7236 Ops.append(InVec.getNode()->op_begin(),
7237 InVec.getNode()->op_end());
7238 } else if (InVec.getOpcode() == ISD::UNDEF) {
7239 unsigned NElts = VT.getVectorNumElements();
7240 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
7241 } else {
7242 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007243 }
Eli Friedman9db817f2011-09-09 21:04:06 +00007244
7245 // Insert the element
7246 if (Elt < Ops.size()) {
7247 // All the operands of BUILD_VECTOR must have the same type;
7248 // we enforce that here.
7249 EVT OpVT = Ops[0].getValueType();
7250 if (InVal.getValueType() != OpVT)
7251 InVal = OpVT.bitsGT(InVal.getValueType()) ?
7252 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
7253 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
7254 Ops[Elt] = InVal;
7255 }
7256
7257 // Return the new vector
7258 return DAG.getNode(ISD::BUILD_VECTOR, dl,
7259 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00007260}
7261
Dan Gohman475871a2008-07-27 21:46:04 +00007262SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007263 // (vextract (scalar_to_vector val, 0) -> val
7264 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00007265 EVT VT = InVec.getValueType();
7266 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007267
Duncan Sandsc356f332011-05-09 08:03:33 +00007268 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
7269 // Check if the result type doesn't match the inserted element type. A
7270 // SCALAR_TO_VECTOR may truncate the inserted element and the
7271 // EXTRACT_VECTOR_ELT may widen the extracted vector.
7272 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00007273 if (InOp.getValueType() != NVT) {
7274 assert(InOp.getValueType().isInteger() && NVT.isInteger());
7275 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
7276 }
7277 return InOp;
7278 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007279
Nadav Rotemba05c912012-01-17 21:44:01 +00007280 SDValue EltNo = N->getOperand(1);
7281 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
7282
7283 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
7284 // We only perform this optimization before the op legalization phase because
7285 // we may introduce new vector instructions which are not backed by TD patterns.
7286 // For example on AVX, extracting elements from a wide vector without using
7287 // extract_subvector.
7288 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
7289 && ConstEltNo && !LegalOperations) {
7290 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
7291 int NumElem = VT.getVectorNumElements();
7292 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
7293 // Find the new index to extract from.
7294 int OrigElt = SVOp->getMaskElt(Elt);
7295
7296 // Extracting an undef index is undef.
7297 if (OrigElt == -1)
7298 return DAG.getUNDEF(NVT);
7299
7300 // Select the right vector half to extract from.
7301 if (OrigElt < NumElem) {
7302 InVec = InVec->getOperand(0);
7303 } else {
7304 InVec = InVec->getOperand(1);
7305 OrigElt -= NumElem;
7306 }
7307
7308 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
7309 InVec, DAG.getConstant(OrigElt, MVT::i32));
7310 }
7311
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007312 // Perform only after legalization to ensure build_vector / vector_shuffle
7313 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00007314 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007315
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007316 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
7317 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
7318 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00007319
Nadav Rotemba05c912012-01-17 21:44:01 +00007320 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00007321 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00007322 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00007323 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00007324 EVT ExtVT = VT.getVectorElementType();
7325 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00007326
Evan Cheng84387ea2012-03-13 22:00:52 +00007327 // If the result of load has to be truncated, then it's not necessarily
7328 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00007329 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00007330 return SDValue();
7331
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007332 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007333 // Don't duplicate a load with other uses.
7334 if (!InVec.hasOneUse())
7335 return SDValue();
7336
Owen Andersone50ed302009-08-10 22:56:29 +00007337 EVT BCVT = InVec.getOperand(0).getValueType();
7338 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007339 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00007340 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
7341 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007342 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00007343 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007344 NewLoad = true;
7345 }
Evan Cheng513da432007-10-06 08:19:55 +00007346
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007347 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00007348 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00007349 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007350 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00007351 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00007352 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00007353 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007354 // Don't duplicate a load with other uses.
7355 if (!InVec.hasOneUse())
7356 return SDValue();
7357
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007358 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00007359 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007360 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
7361 // =>
7362 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00007363
Eli Friedmand6e25602011-12-26 22:49:32 +00007364 // Don't duplicate a load with other uses.
7365 if (!InVec.hasOneUse())
7366 return SDValue();
7367
Mon P Wanga60b5232008-12-11 00:26:16 +00007368 // If the bit convert changed the number of elements, it is unsafe
7369 // to examine the mask.
7370 if (BCNumEltsChanged)
7371 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00007372
7373 // Select the input vector, guarding against out of range extract vector.
7374 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00007375 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00007376 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
7377
Eli Friedmand6e25602011-12-26 22:49:32 +00007378 if (InVec.getOpcode() == ISD::BITCAST) {
7379 // Don't duplicate a load with other uses.
7380 if (!InVec.hasOneUse())
7381 return SDValue();
7382
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007383 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00007384 }
Gabor Greifba36cb52008-08-28 21:40:38 +00007385 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007386 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00007387 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00007388 }
7389 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007390
Eli Friedmand6e25602011-12-26 22:49:32 +00007391 // Make sure we found a non-volatile load and the extractelement is
7392 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00007393 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00007394 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007395
Eric Christopherd81f17a2010-11-03 20:44:42 +00007396 // If Idx was -1 above, Elt is going to be -1, so just return undef.
7397 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00007398 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00007399
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007400 unsigned Align = LN0->getAlignment();
7401 if (NewLoad) {
7402 // Check the resultant load doesn't need a higher alignment than the
7403 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00007404 unsigned NewAlign =
Eric Christopher503a64d2010-12-09 04:48:06 +00007405 TLI.getTargetData()
7406 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00007407
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007408 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007409 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00007410
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007411 Align = NewAlign;
7412 }
7413
Dan Gohman475871a2008-07-27 21:46:04 +00007414 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00007415 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007416
Eric Christopherd81f17a2010-11-03 20:44:42 +00007417 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00007418 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007419 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007420 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007421 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00007422 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007423 DAG.getConstant(PtrOff, PtrType));
7424 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007425
Eli Friedman4db4add2011-11-16 23:50:22 +00007426 // The replacement we need to do here is a little tricky: we need to
7427 // replace an extractelement of a load with a load.
7428 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00007429 // Note that this replacement assumes that the extractvalue is the only
7430 // use of the load; that's okay because we don't want to perform this
7431 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00007432 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00007433 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00007434 if (NVT.bitsGT(LVT)) {
7435 // If the result type of vextract is wider than the load, then issue an
7436 // extending load instead.
7437 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
7438 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
7439 Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(),
7440 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
7441 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007442 Chain = Load.getValue(1);
7443 } else {
Evan Cheng84387ea2012-03-13 22:00:52 +00007444 Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
7445 LN0->getPointerInfo().getWithOffset(PtrOff),
7446 LN0->isVolatile(), LN0->isNonTemporal(),
7447 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007448 Chain = Load.getValue(1);
7449 if (NVT.bitsLT(LVT))
7450 Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load);
7451 else
7452 Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load);
7453 }
Eli Friedman4db4add2011-11-16 23:50:22 +00007454 WorkListRemover DeadNodes(*this);
7455 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00007456 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007457 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedman4db4add2011-11-16 23:50:22 +00007458 // Since we're explcitly calling ReplaceAllUses, add the new node to the
7459 // worklist explicitly as well.
7460 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00007461 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00007462 // Make sure to revisit this node to clean it up; it will usually be dead.
7463 AddToWorkList(N);
7464 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00007465 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007466
Dan Gohman475871a2008-07-27 21:46:04 +00007467 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00007468}
Evan Cheng513da432007-10-06 08:19:55 +00007469
Dan Gohman475871a2008-07-27 21:46:04 +00007470SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007471 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007472 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007473 EVT VT = N->getValueType(0);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007474 // Check to see if this is a BUILD_VECTOR of a bunch of values
7475 // which come from any_extend or zero_extend nodes. If so, we can create
7476 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00007477 // optimizations. We do not handle sign-extend because we can't fill the sign
7478 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007479 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00007480 bool AllAnyExt = true;
7481 bool AllUndef = true;
7482 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007483 SDValue In = N->getOperand(i);
7484 // Ignore undef inputs.
7485 if (In.getOpcode() == ISD::UNDEF) continue;
Craig Topperd3b58892012-01-17 09:09:48 +00007486 AllUndef = false;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007487
7488 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
7489 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
7490
Nadav Rotemf47368b2011-10-31 20:08:25 +00007491 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007492 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00007493 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007494 break;
7495 }
7496
7497 // The input is a ZeroExt or AnyExt. Check the original type.
7498 EVT InTy = In.getOperand(0).getValueType();
7499
7500 // Check that all of the widened source types are the same.
7501 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007502 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007503 SourceType = InTy;
7504 else if (InTy != SourceType) {
7505 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007506 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007507 break;
7508 }
7509
7510 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00007511 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007512 }
7513
Craig Topperd3b58892012-01-17 09:09:48 +00007514 if (AllUndef)
7515 return DAG.getUNDEF(VT);
Nadav Rotemf47368b2011-10-31 20:08:25 +00007516
7517 // In order to have valid types, all of the inputs must be extended from the
7518 // same source type and all of the inputs must be any or zero extend.
7519 // Scalar sizes must be a power of two.
7520 EVT OutScalarTy = N->getValueType(0).getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007521 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00007522 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
7523 isPowerOf2_32(SourceType.getSizeInBits());
7524
7525 // We perform this optimization post type-legalization because
7526 // the type-legalizer often scalarizes integer-promoted vectors.
7527 // Performing this optimization before may create bit-casts which
7528 // will be type-legalized to complex code sequences.
7529 // We perform this optimization only before the operation legalizer because we
7530 // may introduce illegal operations.
Nadav Rotem6431ff92012-03-15 08:49:06 +00007531 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
7532 // turn into a single shuffle instruction.
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007533 if ((Level == AfterLegalizeVectorOps || Level == AfterLegalizeTypes) &&
7534 ValidTypes) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007535 bool isLE = TLI.isLittleEndian();
Nadav Rotemf47368b2011-10-31 20:08:25 +00007536 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007537 assert(ElemRatio > 1 && "Invalid element size ratio");
Craig Topperd3b58892012-01-17 09:09:48 +00007538 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
Nadav Rotemf47368b2011-10-31 20:08:25 +00007539 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007540
7541 unsigned NewBVElems = ElemRatio * N->getValueType(0).getVectorNumElements();
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007542 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007543
7544 // Populate the new build_vector
7545 for (unsigned i=0; i < N->getNumOperands(); ++i) {
7546 SDValue Cast = N->getOperand(i);
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007547 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
7548 Cast.getOpcode() == ISD::ZERO_EXTEND ||
7549 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
Nadav Rotemb00418a2011-10-29 21:23:04 +00007550 SDValue In;
7551 if (Cast.getOpcode() == ISD::UNDEF)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007552 In = DAG.getUNDEF(SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007553 else
7554 In = Cast->getOperand(0);
7555 unsigned Index = isLE ? (i * ElemRatio) :
7556 (i * ElemRatio + (ElemRatio - 1));
7557
7558 assert(Index < Ops.size() && "Invalid index");
7559 Ops[Index] = In;
7560 }
7561
7562 // The type of the new BUILD_VECTOR node.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007563 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007564 assert(VecVT.getSizeInBits() == N->getValueType(0).getSizeInBits() &&
7565 "Invalid vector size");
Nadav Rotemf47368b2011-10-31 20:08:25 +00007566 // Check if the new vector type is legal.
7567 if (!isTypeLegal(VecVT)) return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007568
7569 // Make the new BUILD_VECTOR.
7570 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7571 VecVT, &Ops[0], Ops.size());
7572
Nadav Rotem6431ff92012-03-15 08:49:06 +00007573 // The new BUILD_VECTOR node has the potential to be further optimized.
7574 AddToWorkList(BV.getNode());
Nadav Rotemb00418a2011-10-29 21:23:04 +00007575 // Bitcast to the desired type.
7576 return DAG.getNode(ISD::BITCAST, dl, N->getValueType(0), BV);
7577 }
Chris Lattnerca242442006-03-19 01:27:56 +00007578
Dan Gohman7f321562007-06-25 16:23:39 +00007579 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
7580 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
7581 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00007582
7583 // May only combine to shuffle after legalize if shuffle is legal.
7584 if (LegalOperations &&
7585 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
7586 return SDValue();
7587
Dan Gohman475871a2008-07-27 21:46:04 +00007588 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007589 for (unsigned i = 0; i != NumInScalars; ++i) {
7590 // Ignore undef inputs.
7591 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007592
Dan Gohman7f321562007-06-25 16:23:39 +00007593 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00007594 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00007595 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00007596 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00007597 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007598 break;
7599 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007600
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007601 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00007602 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007603 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
7604 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007605
Gabor Greifba36cb52008-08-28 21:40:38 +00007606 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007607 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00007608 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007609 VecIn2 = ExtractedFromVec;
7610 } else {
7611 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007612 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007613 break;
7614 }
7615 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007616
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007617 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00007618 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007619 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007620 for (unsigned i = 0; i != NumInScalars; ++i) {
7621 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007622 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007623 continue;
7624 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007625
Rafael Espindola15684b22009-04-24 12:40:33 +00007626 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00007627 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00007628 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007629 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00007630 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
7631 if (ExtIndex > VT.getVectorNumElements())
7632 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007633
Nate Begeman5a5ca152009-04-29 05:20:52 +00007634 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007635 continue;
7636 }
7637
7638 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00007639 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007640 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007641 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007642
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007643 // We can't generate a shuffle node with mismatched input and output types.
7644 // Attempt to transform a single input vector to the correct type.
7645 if ((VT != VecIn1.getValueType())) {
7646 // We don't support shuffeling between TWO values of different types.
7647 if (VecIn2.getNode() != 0)
7648 return SDValue();
7649
7650 // We only support widening of vectors which are half the size of the
7651 // output registers. For example XMM->YMM widening on X86 with AVX.
7652 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
7653 return SDValue();
7654
7655 // Widen the input vector by adding undef values.
7656 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
7657 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
7658 }
7659
7660 // If VecIn2 is unused then change it to undef.
7661 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
7662
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007663 // Check that we were able to transform all incoming values to the same type.
7664 if (VecIn2.getValueType() != VecIn1.getValueType() ||
7665 VecIn1.getValueType() != VT)
7666 return SDValue();
7667
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007668 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007669 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00007670 return SDValue();
7671
Dan Gohman7f321562007-06-25 16:23:39 +00007672 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00007673 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00007674 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007675 Ops[1] = VecIn2;
Nate Begeman9008ca62009-04-27 18:41:29 +00007676 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007677 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007678
Dan Gohman475871a2008-07-27 21:46:04 +00007679 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00007680}
7681
Dan Gohman475871a2008-07-27 21:46:04 +00007682SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007683 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
7684 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
7685 // inputs come from at most two distinct vectors, turn this into a shuffle
7686 // node.
7687
7688 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00007689 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00007690 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007691
Dan Gohman475871a2008-07-27 21:46:04 +00007692 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007693}
7694
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007695SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
7696 EVT NVT = N->getValueType(0);
7697 SDValue V = N->getOperand(0);
7698
7699 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
7700 // Handle only simple case where vector being inserted and vector
7701 // being extracted are of same type, and are half size of larger vectors.
7702 EVT BigVT = V->getOperand(0).getValueType();
7703 EVT SmallVT = V->getOperand(1).getValueType();
7704 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
7705 return SDValue();
7706
Eli Friedman26323442011-12-07 00:11:56 +00007707 // Only handle cases where both indexes are constants with the same type.
7708 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
7709 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007710
Eli Friedman26323442011-12-07 00:11:56 +00007711 if (InsIdx && ExtIdx &&
7712 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
7713 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
7714 // Combine:
7715 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
7716 // Into:
7717 // indices are equal => V1
7718 // otherwise => (extract_subvec V1, ExtIdx)
7719 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
7720 return V->getOperand(1);
7721 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
7722 V->getOperand(0), N->getOperand(1));
7723 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007724 }
7725
7726 return SDValue();
7727}
7728
Dan Gohman475871a2008-07-27 21:46:04 +00007729SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007730 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007731 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007732
Mon P Wangaeb06d22008-11-10 04:46:22 +00007733 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00007734 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007735
Craig Topperae1bec52012-04-09 05:16:56 +00007736 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00007737
Craig Topper481b79c2012-01-04 08:07:43 +00007738 // Canonicalize shuffle undef, undef -> undef
7739 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
7740 return DAG.getUNDEF(VT);
7741
7742 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7743
7744 // Canonicalize shuffle v, v -> v, undef
7745 if (N0 == N1) {
7746 SmallVector<int, 8> NewMask;
7747 for (unsigned i = 0; i != NumElts; ++i) {
7748 int Idx = SVN->getMaskElt(i);
7749 if (Idx >= (int)NumElts) Idx -= NumElts;
7750 NewMask.push_back(Idx);
7751 }
7752 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
7753 &NewMask[0]);
7754 }
7755
7756 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
7757 if (N0.getOpcode() == ISD::UNDEF) {
7758 SmallVector<int, 8> NewMask;
7759 for (unsigned i = 0; i != NumElts; ++i) {
7760 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00007761 if (Idx >= 0) {
7762 if (Idx < (int)NumElts)
7763 Idx += NumElts;
7764 else
7765 Idx -= NumElts;
7766 }
7767 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00007768 }
7769 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
7770 &NewMask[0]);
7771 }
7772
7773 // Remove references to rhs if it is undef
7774 if (N1.getOpcode() == ISD::UNDEF) {
7775 bool Changed = false;
7776 SmallVector<int, 8> NewMask;
7777 for (unsigned i = 0; i != NumElts; ++i) {
7778 int Idx = SVN->getMaskElt(i);
7779 if (Idx >= (int)NumElts) {
7780 Idx = -1;
7781 Changed = true;
7782 }
7783 NewMask.push_back(Idx);
7784 }
7785 if (Changed)
7786 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
7787 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00007788
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007789 // If it is a splat, check if the argument vector is another splat or a
7790 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007791 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007792 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00007793
Dan Gohman7f321562007-06-25 16:23:39 +00007794 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00007795 // not the number of vector elements, look through it. Be careful not to
7796 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007797 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00007798 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00007799 if (ConvInput.getValueType().isVector() &&
7800 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00007801 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00007802 }
7803
Dan Gohman7f321562007-06-25 16:23:39 +00007804 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007805 assert(V->getNumOperands() == NumElts &&
7806 "BUILD_VECTOR has wrong number of operands");
7807 SDValue Base;
7808 bool AllSame = true;
7809 for (unsigned i = 0; i != NumElts; ++i) {
7810 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
7811 Base = V->getOperand(i);
7812 break;
Evan Cheng917ec982006-07-21 08:25:53 +00007813 }
Evan Cheng917ec982006-07-21 08:25:53 +00007814 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007815 // Splat of <u, u, u, u>, return <u, u, u, u>
7816 if (!Base.getNode())
7817 return N0;
7818 for (unsigned i = 0; i != NumElts; ++i) {
7819 if (V->getOperand(i) != Base) {
7820 AllSame = false;
7821 break;
7822 }
7823 }
7824 // Splat of <x, x, x, x>, return <x, x, x, x>
7825 if (AllSame)
7826 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00007827 }
7828 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00007829
7830 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007831 // and it reverses the swizzle of the previous shuffle then we can
7832 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00007833 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
7834 N1.getOpcode() == ISD::UNDEF) {
7835
Nadav Rotem4ac90812012-04-01 19:31:22 +00007836 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
7837
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007838 // Shuffle nodes can only reverse shuffles with a single non-undef value.
7839 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
7840 return SDValue();
7841
Craig Topperae1bec52012-04-09 05:16:56 +00007842 // The incoming shuffle must be of the same type as the result of the
7843 // current shuffle.
7844 assert(OtherSV->getOperand(0).getValueType() == VT &&
7845 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00007846
7847 for (unsigned i = 0; i != NumElts; ++i) {
7848 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00007849 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00007850 // Next, this index comes from the first value, which is the incoming
7851 // shuffle. Adopt the incoming index.
7852 if (Idx >= 0)
7853 Idx = OtherSV->getMaskElt(Idx);
7854
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007855 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00007856 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007857 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00007858 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007859
7860 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00007861 }
7862
Dan Gohman475871a2008-07-27 21:46:04 +00007863 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007864}
7865
Jim Grosbach9a526492010-06-23 16:07:42 +00007866SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
7867 if (!TLI.getShouldFoldAtomicFences())
7868 return SDValue();
7869
7870 SDValue atomic = N->getOperand(0);
7871 switch (atomic.getOpcode()) {
7872 case ISD::ATOMIC_CMP_SWAP:
7873 case ISD::ATOMIC_SWAP:
7874 case ISD::ATOMIC_LOAD_ADD:
7875 case ISD::ATOMIC_LOAD_SUB:
7876 case ISD::ATOMIC_LOAD_AND:
7877 case ISD::ATOMIC_LOAD_OR:
7878 case ISD::ATOMIC_LOAD_XOR:
7879 case ISD::ATOMIC_LOAD_NAND:
7880 case ISD::ATOMIC_LOAD_MIN:
7881 case ISD::ATOMIC_LOAD_MAX:
7882 case ISD::ATOMIC_LOAD_UMIN:
7883 case ISD::ATOMIC_LOAD_UMAX:
7884 break;
7885 default:
7886 return SDValue();
7887 }
7888
7889 SDValue fence = atomic.getOperand(0);
7890 if (fence.getOpcode() != ISD::MEMBARRIER)
7891 return SDValue();
7892
7893 switch (atomic.getOpcode()) {
7894 case ISD::ATOMIC_CMP_SWAP:
7895 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7896 fence.getOperand(0),
7897 atomic.getOperand(1), atomic.getOperand(2),
7898 atomic.getOperand(3)), atomic.getResNo());
7899 case ISD::ATOMIC_SWAP:
7900 case ISD::ATOMIC_LOAD_ADD:
7901 case ISD::ATOMIC_LOAD_SUB:
7902 case ISD::ATOMIC_LOAD_AND:
7903 case ISD::ATOMIC_LOAD_OR:
7904 case ISD::ATOMIC_LOAD_XOR:
7905 case ISD::ATOMIC_LOAD_NAND:
7906 case ISD::ATOMIC_LOAD_MIN:
7907 case ISD::ATOMIC_LOAD_MAX:
7908 case ISD::ATOMIC_LOAD_UMIN:
7909 case ISD::ATOMIC_LOAD_UMAX:
7910 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7911 fence.getOperand(0),
7912 atomic.getOperand(1), atomic.getOperand(2)),
7913 atomic.getResNo());
7914 default:
7915 return SDValue();
7916 }
7917}
7918
Evan Cheng44f1f092006-04-20 08:56:16 +00007919/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00007920/// an AND to a vector_shuffle with the destination vector and a zero vector.
7921/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00007922/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00007923SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007924 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007925 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007926 SDValue LHS = N->getOperand(0);
7927 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00007928 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007929 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00007930 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007931 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007932 SmallVector<int, 8> Indices;
7933 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00007934 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007935 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007936 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00007937 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00007938
7939 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007940 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007941 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007942 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00007943 else
Dan Gohman475871a2008-07-27 21:46:04 +00007944 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007945 }
7946
7947 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00007948 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007949 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007950 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007951
Dan Gohman7f321562007-06-25 16:23:39 +00007952 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00007953 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007954 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00007955 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00007956 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7957 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007958 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00007959 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007960 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00007961 }
7962 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00007963
Dan Gohman475871a2008-07-27 21:46:04 +00007964 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007965}
7966
Dan Gohman7f321562007-06-25 16:23:39 +00007967/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00007968SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007969 // After legalize, the target may be depending on adds and other
7970 // binary ops to provide legal ways to construct constants or other
7971 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00007972 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007973
Bob Wilsond7273432010-12-17 23:06:49 +00007974 assert(N->getValueType(0).isVector() &&
7975 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00007976
Dan Gohman475871a2008-07-27 21:46:04 +00007977 SDValue LHS = N->getOperand(0);
7978 SDValue RHS = N->getOperand(1);
7979 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00007980 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00007981
Dan Gohman7f321562007-06-25 16:23:39 +00007982 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00007983 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00007984 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00007985 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00007986 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00007987 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007988 SDValue LHSOp = LHS.getOperand(i);
7989 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00007990 // If these two elements can't be folded, bail out.
7991 if ((LHSOp.getOpcode() != ISD::UNDEF &&
7992 LHSOp.getOpcode() != ISD::Constant &&
7993 LHSOp.getOpcode() != ISD::ConstantFP) ||
7994 (RHSOp.getOpcode() != ISD::UNDEF &&
7995 RHSOp.getOpcode() != ISD::Constant &&
7996 RHSOp.getOpcode() != ISD::ConstantFP))
7997 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00007998
Evan Cheng7b336a82006-05-31 06:08:35 +00007999 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00008000 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
8001 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00008002 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008003 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00008004 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008005 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00008006 break;
8007 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008008
Bob Wilsond7273432010-12-17 23:06:49 +00008009 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00008010 EVT RVT = RHSOp.getValueType();
8011 if (RVT != VT) {
8012 // Integer BUILD_VECTOR operands may have types larger than the element
8013 // size (e.g., when the element type is not legal). Prior to type
8014 // legalization, the types may not match between the two BUILD_VECTORS.
8015 // Truncate one of the operands to make them match.
8016 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
8017 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
8018 } else {
8019 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
8020 VT = RVT;
8021 }
8022 }
Bob Wilsond7273432010-12-17 23:06:49 +00008023 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00008024 LHSOp, RHSOp);
8025 if (FoldOp.getOpcode() != ISD::UNDEF &&
8026 FoldOp.getOpcode() != ISD::Constant &&
8027 FoldOp.getOpcode() != ISD::ConstantFP)
8028 break;
8029 Ops.push_back(FoldOp);
8030 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00008031 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008032
Bob Wilsond7273432010-12-17 23:06:49 +00008033 if (Ops.size() == LHS.getNumOperands())
8034 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8035 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00008036 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008037
Dan Gohman475871a2008-07-27 21:46:04 +00008038 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00008039}
8040
Bill Wendling836ca7d2009-01-30 23:59:18 +00008041SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
8042 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00008043 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008044
Bill Wendling836ca7d2009-01-30 23:59:18 +00008045 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00008046 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008047
Nate Begemanf845b452005-10-08 00:29:44 +00008048 // If we got a simplified select_cc node back from SimplifySelectCC, then
8049 // break it down into a new SETCC node, and a new SELECT node, and then return
8050 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00008051 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008052 // Check to see if we got a select_cc back (to turn into setcc/select).
8053 // Otherwise, just return whatever node we got back, like fabs.
8054 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008055 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
8056 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008057 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008058 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00008059 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008060 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
8061 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00008062 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008063
Nate Begemanf845b452005-10-08 00:29:44 +00008064 return SCC;
8065 }
Dan Gohman475871a2008-07-27 21:46:04 +00008066 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008067}
8068
Chris Lattner40c62d52005-10-18 06:04:22 +00008069/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
8070/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00008071/// select. Callers of this should assume that TheSelect is deleted if this
8072/// returns true. As such, they should return the appropriate thing (e.g. the
8073/// node) back to the top-level of the DAG combiner loop to avoid it being
8074/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00008075bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00008076 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008077
Nadav Rotemf94fdb62011-02-11 19:57:47 +00008078 // Cannot simplify select with vector condition
8079 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
8080
Chris Lattner40c62d52005-10-18 06:04:22 +00008081 // If this is a select from two identical things, try to pull the operation
8082 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00008083 if (LHS.getOpcode() != RHS.getOpcode() ||
8084 !LHS.hasOneUse() || !RHS.hasOneUse())
8085 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008086
Chris Lattner18061612010-09-21 15:46:59 +00008087 // If this is a load and the token chain is identical, replace the select
8088 // of two loads with a load through a select of the address to load from.
8089 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
8090 // constants have been dropped into the constant pool.
8091 if (LHS.getOpcode() == ISD::LOAD) {
8092 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
8093 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008094
Chris Lattner18061612010-09-21 15:46:59 +00008095 // Token chains must be identical.
8096 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008097 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00008098 LLD->isVolatile() || RLD->isVolatile() ||
8099 // If this is an EXTLOAD, the VT's must match.
8100 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00008101 // If this is an EXTLOAD, the kind of extension must match.
8102 (LLD->getExtensionType() != RLD->getExtensionType() &&
8103 // The only exception is if one of the extensions is anyext.
8104 LLD->getExtensionType() != ISD::EXTLOAD &&
8105 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00008106 // FIXME: this discards src value information. This is
8107 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00008108 // both potential memory locations. Since we are discarding
8109 // src value info, don't do the transformation if the memory
8110 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00008111 LLD->getPointerInfo().getAddrSpace() != 0 ||
8112 RLD->getPointerInfo().getAddrSpace() != 0)
8113 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008114
Chris Lattnerf1658062010-09-21 15:58:55 +00008115 // Check that the select condition doesn't reach either load. If so,
8116 // folding this will induce a cycle into the DAG. If not, this is safe to
8117 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00008118 SDValue Addr;
8119 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00008120 SDNode *CondNode = TheSelect->getOperand(0).getNode();
8121 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
8122 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
8123 return false;
8124 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
8125 LLD->getBasePtr().getValueType(),
8126 TheSelect->getOperand(0), LLD->getBasePtr(),
8127 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00008128 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00008129 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
8130 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
8131
8132 if ((LLD->hasAnyUseOfValue(1) &&
8133 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00008134 (RLD->hasAnyUseOfValue(1) &&
8135 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00008136 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008137
Chris Lattnerf1658062010-09-21 15:58:55 +00008138 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
8139 LLD->getBasePtr().getValueType(),
8140 TheSelect->getOperand(0),
8141 TheSelect->getOperand(1),
8142 LLD->getBasePtr(), RLD->getBasePtr(),
8143 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00008144 }
8145
Chris Lattnerf1658062010-09-21 15:58:55 +00008146 SDValue Load;
8147 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
8148 Load = DAG.getLoad(TheSelect->getValueType(0),
8149 TheSelect->getDebugLoc(),
8150 // FIXME: Discards pointer info.
8151 LLD->getChain(), Addr, MachinePointerInfo(),
8152 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008153 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00008154 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00008155 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
8156 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00008157 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00008158 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00008159 // FIXME: Discards pointer info.
8160 LLD->getChain(), Addr, MachinePointerInfo(),
8161 LLD->getMemoryVT(), LLD->isVolatile(),
8162 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00008163 }
Chris Lattnerf1658062010-09-21 15:58:55 +00008164
8165 // Users of the select now use the result of the load.
8166 CombineTo(TheSelect, Load);
8167
8168 // Users of the old loads now use the new load's chain. We know the
8169 // old-load value is dead now.
8170 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
8171 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
8172 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00008173 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008174
Chris Lattner40c62d52005-10-18 06:04:22 +00008175 return false;
8176}
8177
Chris Lattner600fec32009-03-11 05:08:08 +00008178/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
8179/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00008180SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00008181 SDValue N2, SDValue N3,
8182 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00008183 // (x ? y : y) -> y.
8184 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008185
Owen Andersone50ed302009-08-10 22:56:29 +00008186 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00008187 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
8188 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
8189 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008190
8191 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00008192 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008193 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00008194 if (SCC.getNode()) AddToWorkList(SCC.getNode());
8195 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008196
8197 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00008198 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008199 return N2;
8200 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00008201 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008202 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00008203
Nate Begemanf845b452005-10-08 00:29:44 +00008204 // Check to see if we can simplify the select into an fabs node
8205 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
8206 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00008207 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008208 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
8209 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
8210 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
8211 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008212 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008213
Nate Begemanf845b452005-10-08 00:29:44 +00008214 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
8215 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
8216 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
8217 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008218 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00008219 }
8220 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008221
Chris Lattner600fec32009-03-11 05:08:08 +00008222 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
8223 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
8224 // in it. This is a win when the constant is not otherwise available because
8225 // it replaces two constant pool loads with one. We only do this if the FP
8226 // type is known to be legal, because if it isn't, then we are before legalize
8227 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00008228 // messing with soft float) and if the ConstantFP is not legal, because if
8229 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00008230 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
8231 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
8232 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00008233 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
8234 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00008235 // If both constants have multiple uses, then we won't need to do an
8236 // extra load, they are likely around in registers for other users.
8237 (TV->hasOneUse() || FV->hasOneUse())) {
8238 Constant *Elts[] = {
8239 const_cast<ConstantFP*>(FV->getConstantFPValue()),
8240 const_cast<ConstantFP*>(TV->getConstantFPValue())
8241 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008242 Type *FPTy = Elts[0]->getType();
Chris Lattner600fec32009-03-11 05:08:08 +00008243 const TargetData &TD = *TLI.getTargetData();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008244
Chris Lattner600fec32009-03-11 05:08:08 +00008245 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00008246 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00008247 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
8248 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00008249 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00008250
8251 // Get the offsets to the 0 and 1 element of the array so that we can
8252 // select between them.
8253 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00008254 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00008255 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008256
Chris Lattner600fec32009-03-11 05:08:08 +00008257 SDValue Cond = DAG.getSetCC(DL,
8258 TLI.getSetCCResultType(N0.getValueType()),
8259 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00008260 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008261 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
8262 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00008263 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008264 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
8265 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00008266 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008267 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00008268 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008269 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00008270
8271 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008272 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008273
Nate Begemanf845b452005-10-08 00:29:44 +00008274 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00008275 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00008276 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00008277 (N1C->isNullValue() || // (a < 0) ? b : 0
8278 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00008279 EVT XType = N0.getValueType();
8280 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00008281 if (XType.bitsGE(AType)) {
Nate Begemanf845b452005-10-08 00:29:44 +00008282 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00008283 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00008284 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
8285 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008286 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00008287 SDValue ShCt = DAG.getConstant(ShCtV,
8288 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00008289 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008290 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00008291 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008292
Duncan Sands8e4eb092008-06-08 20:54:56 +00008293 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008294 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008295 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008296 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008297
8298 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008299 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008300
Bill Wendling9729c5a2009-01-31 03:12:48 +00008301 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008302 XType, N0,
8303 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008304 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00008305 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008306
Duncan Sands8e4eb092008-06-08 20:54:56 +00008307 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008308 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008309 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008310 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008311
8312 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008313 }
8314 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008315
Owen Andersoned1088a2010-09-22 22:58:22 +00008316 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
8317 // where y is has a single bit set.
8318 // A plaintext description would be, we can turn the SELECT_CC into an AND
8319 // when the condition can be materialized as an all-ones register. Any
8320 // single bit-test can be materialized as an all-ones register with
8321 // shift-left and shift-right-arith.
8322 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
8323 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008324 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00008325 N2C && N2C->isNullValue()) {
8326 SDValue AndLHS = N0->getOperand(0);
8327 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
8328 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
8329 // Shift the tested bit over the sign bit.
8330 APInt AndMask = ConstAndRHS->getAPIntValue();
8331 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008332 DAG.getConstant(AndMask.countLeadingZeros(),
8333 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008334 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008335
Owen Andersoned1088a2010-09-22 22:58:22 +00008336 // Now arithmetic right shift it all the way over, so the result is either
8337 // all-ones, or zero.
8338 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008339 DAG.getConstant(AndMask.getBitWidth()-1,
8340 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008341 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008342
Owen Andersoned1088a2010-09-22 22:58:22 +00008343 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
8344 }
8345 }
8346
Nate Begeman07ed4172005-10-10 21:26:48 +00008347 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00008348 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00008349 TLI.getBooleanContents(N0.getValueType().isVector()) ==
8350 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008351
Chris Lattner1eba01e2007-04-11 06:50:51 +00008352 // If the caller doesn't want us to simplify this into a zext of a compare,
8353 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00008354 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00008355 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008356
Nate Begeman07ed4172005-10-10 21:26:48 +00008357 // Get a SetCC of the condition
8358 // FIXME: Should probably make sure that setcc is legal if we ever have a
8359 // target where it isn't.
Dan Gohman475871a2008-07-27 21:46:04 +00008360 SDValue Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00008361 // cast from setcc result type to select result type
Duncan Sands25cf2272008-11-24 14:53:14 +00008362 if (LegalTypes) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008363 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00008364 N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00008365 if (N2.getValueType().bitsLT(SCC.getValueType()))
Bill Wendling9729c5a2009-01-31 03:12:48 +00008366 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
Chris Lattner555d8d62006-12-07 22:36:47 +00008367 else
Bill Wendling9729c5a2009-01-31 03:12:48 +00008368 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008369 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008370 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00008371 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00008372 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008373 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008374 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008375
Gabor Greifba36cb52008-08-28 21:40:38 +00008376 AddToWorkList(SCC.getNode());
8377 AddToWorkList(Temp.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00008378
Dan Gohman002e5d02008-03-13 22:13:53 +00008379 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00008380 return Temp;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008381
Nate Begeman07ed4172005-10-10 21:26:48 +00008382 // shl setcc result by log2 n2c
Bill Wendling836ca7d2009-01-30 23:59:18 +00008383 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00008384 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00008385 getShiftAmountTy(Temp.getValueType())));
Nate Begeman07ed4172005-10-10 21:26:48 +00008386 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008387
Nate Begemanf845b452005-10-08 00:29:44 +00008388 // Check to see if this is the equivalent of setcc
8389 // FIXME: Turn all of these into setcc if setcc if setcc is legal
8390 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00008391 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00008392 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00008393 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00008394 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008395 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00008396 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008397 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00008398 return Res;
8399 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008400
Bill Wendling836ca7d2009-01-30 23:59:18 +00008401 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00008402 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008403 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00008404 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008405 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008406 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008407 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00008408 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00008409 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008410 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00008411 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008412 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
8413 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00008414 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00008415 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00008416 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00008417 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008418 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00008419 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008420 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00008421 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008422 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00008423 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008424 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00008425 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00008426 }
8427 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008428
Benjamin Kramercde51102010-07-08 12:09:56 +00008429 // Check to see if this is an integer abs.
8430 // select_cc setg[te] X, 0, X, -X ->
8431 // select_cc setgt X, -1, X, -X ->
8432 // select_cc setl[te] X, 0, -X, X ->
8433 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00008434 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00008435 if (N1C) {
8436 ConstantSDNode *SubC = NULL;
8437 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
8438 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
8439 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
8440 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
8441 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
8442 (N1C->isOne() && CC == ISD::SETLT)) &&
8443 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
8444 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
8445
Owen Andersone50ed302009-08-10 22:56:29 +00008446 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00008447 if (SubC && SubC->isNullValue() && XType.isInteger()) {
8448 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
8449 N0,
8450 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008451 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00008452 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
8453 XType, N0, Shift);
8454 AddToWorkList(Shift.getNode());
8455 AddToWorkList(Add.getNode());
8456 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00008457 }
8458 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008459
Dan Gohman475871a2008-07-27 21:46:04 +00008460 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008461}
8462
Evan Chengfa1eb272007-02-08 22:13:59 +00008463/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00008464SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00008465 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008466 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008467 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00008468 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008469 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00008470}
8471
Nate Begeman69575232005-10-20 02:15:44 +00008472/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
8473/// return a DAG expression to select that will generate the same value by
8474/// multiplying by a magic number. See:
8475/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008476SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008477 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008478 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008479
Andrew Lenharth232c9102006-06-12 16:07:18 +00008480 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008481 ii != ee; ++ii)
8482 AddToWorkList(*ii);
8483 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008484}
8485
8486/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
8487/// return a DAG expression to select that will generate the same value by
8488/// multiplying by a magic number. See:
8489/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008490SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008491 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008492 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00008493
Andrew Lenharth232c9102006-06-12 16:07:18 +00008494 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008495 ii != ee; ++ii)
8496 AddToWorkList(*ii);
8497 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008498}
8499
Nate Begemancc66cdd2009-09-25 06:05:26 +00008500/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00008501// to alias with anything but itself. Provides base object and offset as
8502// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008503static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Dan Gohman46510a72010-04-15 01:51:59 +00008504 const GlobalValue *&GV, void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00008505 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008506 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008507
Jim Laskey71382342006-10-07 23:37:56 +00008508 // If it's an adding a simple constant then integrate the offset.
8509 if (Base.getOpcode() == ISD::ADD) {
8510 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
8511 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008512 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00008513 }
8514 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008515
Nate Begemancc66cdd2009-09-25 06:05:26 +00008516 // Return the underlying GlobalValue, and update the Offset. Return false
8517 // for GlobalAddressSDNode since the same GlobalAddress may be represented
8518 // by multiple nodes with different offsets.
8519 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
8520 GV = G->getGlobal();
8521 Offset += G->getOffset();
8522 return false;
8523 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008524
Nate Begemancc66cdd2009-09-25 06:05:26 +00008525 // Return the underlying Constant value, and update the Offset. Return false
8526 // for ConstantSDNodes since the same constant pool entry may be represented
8527 // by multiple nodes with different offsets.
8528 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
8529 CV = C->isMachineConstantPoolEntry() ? (void *)C->getMachineCPVal()
8530 : (void *)C->getConstVal();
8531 Offset += C->getOffset();
8532 return false;
8533 }
Jim Laskey71382342006-10-07 23:37:56 +00008534 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008535 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00008536}
8537
8538/// isAlias - Return true if there is any possibility that the two addresses
8539/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00008540bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00008541 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008542 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008543 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00008544 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008545 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008546 unsigned SrcValueAlign2,
8547 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00008548 // If they are the same then they must be aliases.
8549 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00008550
Jim Laskey71382342006-10-07 23:37:56 +00008551 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00008552 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00008553 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00008554 const GlobalValue *GV1, *GV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00008555 void *CV1, *CV2;
8556 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
8557 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00008558
Nate Begemancc66cdd2009-09-25 06:05:26 +00008559 // If they have a same base address then check to see if they overlap.
8560 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008561 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008562
Owen Anderson4a9f1502010-09-20 20:39:59 +00008563 // It is possible for different frame indices to alias each other, mostly
8564 // when tail call optimization reuses return address slots for arguments.
8565 // To catch this case, look up the actual index of frame indices to compute
8566 // the real alias relationship.
8567 if (isFrameIndex1 && isFrameIndex2) {
8568 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8569 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
8570 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
8571 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
8572 }
8573
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008574 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00008575 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008576 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
8577 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00008578
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008579 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
8580 // compared to the size and offset of the access, we may be able to prove they
8581 // do not alias. This check is conservative for now to catch cases created by
8582 // splitting vector types.
8583 if ((SrcValueAlign1 == SrcValueAlign2) &&
8584 (SrcValueOffset1 != SrcValueOffset2) &&
8585 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
8586 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
8587 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008588
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008589 // There is no overlap between these relatively aligned accesses of similar
8590 // size, return no alias.
8591 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
8592 return false;
8593 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008594
Jim Laskey07a27092006-10-18 19:08:31 +00008595 if (CombinerGlobalAA) {
8596 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00008597 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
8598 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
8599 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00008600 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008601 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
8602 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00008603 if (AAResult == AliasAnalysis::NoAlias)
8604 return false;
8605 }
Jim Laskey096c22e2006-10-18 12:29:57 +00008606
8607 // Otherwise we have to assume they alias.
8608 return true;
Jim Laskey71382342006-10-07 23:37:56 +00008609}
8610
8611/// FindAliasInfo - Extracts the relevant alias information from the memory
8612/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00008613bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00008614 SDValue &Ptr, int64_t &Size,
8615 const Value *&SrcValue,
8616 int &SrcValueOffset,
8617 unsigned &SrcValueAlign,
8618 const MDNode *&TBAAInfo) const {
8619 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
8620
8621 Ptr = LS->getBasePtr();
8622 Size = LS->getMemoryVT().getSizeInBits() >> 3;
8623 SrcValue = LS->getSrcValue();
8624 SrcValueOffset = LS->getSrcValueOffset();
8625 SrcValueAlign = LS->getOriginalAlignment();
8626 TBAAInfo = LS->getTBAAInfo();
8627 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00008628}
8629
Jim Laskey6ff23e52006-10-04 16:53:27 +00008630/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
8631/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00008632void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
8633 SmallVector<SDValue, 8> &Aliases) {
8634 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008635 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00008636
Jim Laskey279f0532006-09-25 16:29:54 +00008637 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00008638 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008639 int64_t Size;
8640 const Value *SrcValue;
8641 int SrcValueOffset;
8642 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008643 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008644 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008645 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00008646
Jim Laskey6ff23e52006-10-04 16:53:27 +00008647 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00008648 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00008649 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008650
Jim Laskeybc588b82006-10-05 15:07:25 +00008651 // Look at each chain and determine if it is an alias. If so, add it to the
8652 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00008653 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00008654 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008655 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00008656 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008657
8658 // For TokenFactor nodes, look at each operand and only continue up the
8659 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00008660 // find more and revert to original chain since the xform is unlikely to be
8661 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008662 //
8663 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00008664 // chain we found before we hit a tokenfactor rather than the original
8665 // chain.
8666 if (Depth > 6 || Aliases.size() == 2) {
8667 Aliases.clear();
8668 Aliases.push_back(OriginalChain);
8669 break;
8670 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008671
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008672 // Don't bother if we've been before.
8673 if (!Visited.insert(Chain.getNode()))
8674 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008675
Jim Laskeybc588b82006-10-05 15:07:25 +00008676 switch (Chain.getOpcode()) {
8677 case ISD::EntryToken:
8678 // Entry token is ideal chain operand, but handled in FindBetterChain.
8679 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008680
Jim Laskeybc588b82006-10-05 15:07:25 +00008681 case ISD::LOAD:
8682 case ISD::STORE: {
8683 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00008684 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008685 int64_t OpSize;
8686 const Value *OpSrcValue;
8687 int OpSrcValueOffset;
8688 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008689 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00008690 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008691 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008692 OpSrcValueAlign,
8693 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00008694
Jim Laskeybc588b82006-10-05 15:07:25 +00008695 // If chain is alias then stop here.
8696 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008697 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008698 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008699 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008700 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00008701 Aliases.push_back(Chain);
8702 } else {
8703 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00008704 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00008705 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00008706 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008707 break;
8708 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008709
Jim Laskeybc588b82006-10-05 15:07:25 +00008710 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008711 // We have to check each of the operands of the token factor for "small"
8712 // token factors, so we queue them up. Adding the operands to the queue
8713 // (stack) in reverse order maintains the original order and increases the
8714 // likelihood that getNode will find a matching token factor (CSE.)
8715 if (Chain.getNumOperands() > 16) {
8716 Aliases.push_back(Chain);
8717 break;
8718 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008719 for (unsigned n = Chain.getNumOperands(); n;)
8720 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00008721 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00008722 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008723
Jim Laskeybc588b82006-10-05 15:07:25 +00008724 default:
8725 // For all other instructions we will just have to take what we can get.
8726 Aliases.push_back(Chain);
8727 break;
Jim Laskey279f0532006-09-25 16:29:54 +00008728 }
8729 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00008730}
8731
8732/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
8733/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00008734SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
8735 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00008736
Jim Laskey6ff23e52006-10-04 16:53:27 +00008737 // Accumulate all the aliases to this node.
8738 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00008739
Dan Gohman71dc7c92011-05-17 22:20:36 +00008740 // If no operands then chain to entry token.
8741 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008742 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00008743
8744 // If a single operand then chain to it. We don't need to revisit it.
8745 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008746 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008747
Jim Laskey6ff23e52006-10-04 16:53:27 +00008748 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008749 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008750 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00008751}
8752
Nate Begeman1d4d4142005-09-01 00:19:25 +00008753// SelectionDAG::Combine - This is the entry point for the file.
8754//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008755void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00008756 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00008757 /// run - This is the main entry point to this class.
8758 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008759 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00008760}