blob: 747bc446a718bf319f094411e730d3f0f68aa6ef [file] [log] [blame]
Nate Begeman4ebd8052005-09-01 23:24:04 +00001//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
Nate Begeman1d4d4142005-09-01 00:19:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begeman1d4d4142005-09-01 00:19:25 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass combines dag nodes to form fewer, simpler DAG nodes. It can be run
11// both before and after the DAG is legalized.
Scott Michelfdc40a02009-02-17 22:15:04 +000012//
Dan Gohman41287002009-04-25 17:09:45 +000013// This pass is not a substitute for the LLVM IR instcombine pass. This pass is
14// primarily intended to handle simplification opportunities that are implicit
15// in the LLVM IR and exposed by the various codegen lowering phases.
16//
Nate Begeman1d4d4142005-09-01 00:19:25 +000017//===----------------------------------------------------------------------===//
18
19#define DEBUG_TYPE "dagcombine"
Nate Begeman1d4d4142005-09-01 00:19:25 +000020#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner600fec32009-03-11 05:08:08 +000021#include "llvm/DerivedTypes.h"
Owen Andersona90b3dc2009-07-15 21:51:10 +000022#include "llvm/LLVMContext.h"
Chris Lattner00161a62008-01-25 07:20:16 +000023#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000025#include "llvm/Analysis/AliasAnalysis.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000026#include "llvm/Target/TargetData.h"
Nate Begeman1d4d4142005-09-01 00:19:25 +000027#include "llvm/Target/TargetLowering.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000028#include "llvm/Target/TargetMachine.h"
Chris Lattnerddae4bd2007-01-08 23:04:05 +000029#include "llvm/Target/TargetOptions.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000030#include "llvm/ADT/SmallPtrSet.h"
31#include "llvm/ADT/Statistic.h"
Jim Laskeyd1aed7a2006-09-21 16:28:59 +000032#include "llvm/Support/CommandLine.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000033#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000034#include "llvm/Support/ErrorHandling.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000035#include "llvm/Support/MathExtras.h"
Chris Lattnerbbbfa992009-08-23 06:35:02 +000036#include "llvm/Support/raw_ostream.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000037#include <algorithm>
Nate Begeman1d4d4142005-09-01 00:19:25 +000038using namespace llvm;
39
Chris Lattnercd3245a2006-12-19 22:41:21 +000040STATISTIC(NodesCombined , "Number of dag nodes combined");
41STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
42STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
Evan Cheng8b944d32009-05-28 00:35:15 +000043STATISTIC(OpsNarrowed , "Number of load/op/store narrowed");
Evan Cheng31959b12011-02-02 01:06:55 +000044STATISTIC(LdStFP2Int , "Number of fp load/store pairs transformed to int");
Chris Lattnercd3245a2006-12-19 22:41:21 +000045
Nate Begeman1d4d4142005-09-01 00:19:25 +000046namespace {
Jim Laskey71382342006-10-07 23:37:56 +000047 static cl::opt<bool>
Owen Anderson0dcc8142010-09-19 21:01:26 +000048 CombinerAA("combiner-alias-analysis", cl::Hidden,
Jim Laskey26f7fa72006-10-17 19:33:52 +000049 cl::desc("Turn on alias analysis during testing"));
Jim Laskey3ad175b2006-10-12 15:22:24 +000050
Jim Laskey07a27092006-10-18 19:08:31 +000051 static cl::opt<bool>
52 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
53 cl::desc("Include global information in alias analysis"));
54
Jim Laskeybc588b82006-10-05 15:07:25 +000055//------------------------------ DAGCombiner ---------------------------------//
56
Nick Lewycky6726b6d2009-10-25 06:33:48 +000057 class DAGCombiner {
Nate Begeman1d4d4142005-09-01 00:19:25 +000058 SelectionDAG &DAG;
Dan Gohman79ce2762009-01-15 19:20:50 +000059 const TargetLowering &TLI;
Duncan Sands25cf2272008-11-24 14:53:14 +000060 CombineLevel Level;
Bill Wendling98a366d2009-04-29 23:29:43 +000061 CodeGenOpt::Level OptLevel;
Duncan Sands25cf2272008-11-24 14:53:14 +000062 bool LegalOperations;
63 bool LegalTypes;
Nate Begeman1d4d4142005-09-01 00:19:25 +000064
65 // Worklist of all of the nodes that need to be simplified.
James Molloy6660c052012-02-16 09:17:04 +000066 //
67 // This has the semantics that when adding to the worklist,
68 // the item added must be next to be processed. It should
69 // also only appear once. The naive approach to this takes
70 // linear time.
71 //
72 // To reduce the insert/remove time to logarithmic, we use
73 // a set and a vector to maintain our worklist.
74 //
75 // The set contains the items on the worklist, but does not
76 // maintain the order they should be visited.
77 //
78 // The vector maintains the order nodes should be visited, but may
79 // contain duplicate or removed nodes. When choosing a node to
80 // visit, we pop off the order stack until we find an item that is
81 // also in the contents set. All operations are O(log N).
82 SmallPtrSet<SDNode*, 64> WorkListContents;
Benjamin Kramerd5f76902012-03-10 00:23:58 +000083 SmallVector<SDNode*, 64> WorkListOrder;
Nate Begeman1d4d4142005-09-01 00:19:25 +000084
Jim Laskeyc7c3f112006-10-16 20:52:31 +000085 // AA - Used for DAG load/store alias analysis.
86 AliasAnalysis &AA;
87
Nate Begeman1d4d4142005-09-01 00:19:25 +000088 /// AddUsersToWorkList - When an instruction is simplified, add all users of
89 /// the instruction to the work lists because they might get more simplified
90 /// now.
91 ///
92 void AddUsersToWorkList(SDNode *N) {
93 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000094 UI != UE; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +000095 AddToWorkList(*UI);
Nate Begeman1d4d4142005-09-01 00:19:25 +000096 }
97
Dan Gohman389079b2007-10-08 17:57:15 +000098 /// visit - call the node-specific routine that knows how to fold each
99 /// particular type of node.
Dan Gohman475871a2008-07-27 21:46:04 +0000100 SDValue visit(SDNode *N);
Dan Gohman389079b2007-10-08 17:57:15 +0000101
Chris Lattner24664722006-03-01 04:53:38 +0000102 public:
James Molloy6afa3f72012-02-16 09:48:07 +0000103 /// AddToWorkList - Add to the work list making sure its instance is at the
James Molloy6660c052012-02-16 09:17:04 +0000104 /// back (next to be processed.)
Chris Lattner5750df92006-03-01 04:03:14 +0000105 void AddToWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000106 WorkListContents.insert(N);
107 WorkListOrder.push_back(N);
Chris Lattner5750df92006-03-01 04:03:14 +0000108 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000109
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000110 /// removeFromWorkList - remove all instances of N from the worklist.
111 ///
112 void removeFromWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000113 WorkListContents.erase(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000114 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000115
Dan Gohman475871a2008-07-27 21:46:04 +0000116 SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000117 bool AddTo = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000118
Dan Gohman475871a2008-07-27 21:46:04 +0000119 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) {
Jim Laskey274062c2006-10-13 23:32:28 +0000120 return CombineTo(N, &Res, 1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000121 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000122
Dan Gohman475871a2008-07-27 21:46:04 +0000123 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000124 bool AddTo = true) {
Dan Gohman475871a2008-07-27 21:46:04 +0000125 SDValue To[] = { Res0, Res1 };
Jim Laskey274062c2006-10-13 23:32:28 +0000126 return CombineTo(N, To, 2, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000127 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000128
129 void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO);
Scott Michelfdc40a02009-02-17 22:15:04 +0000130
131 private:
132
Chris Lattner012f2412006-02-17 21:58:01 +0000133 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000134 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000135 /// propagation. If so, return true.
Dan Gohman475871a2008-07-27 21:46:04 +0000136 bool SimplifyDemandedBits(SDValue Op) {
Dan Gohman87862e72009-12-11 21:31:27 +0000137 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
138 APInt Demanded = APInt::getAllOnesValue(BitWidth);
Dan Gohman7b8d4a92008-02-27 00:25:32 +0000139 return SimplifyDemandedBits(Op, Demanded);
140 }
141
Dan Gohman475871a2008-07-27 21:46:04 +0000142 bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded);
Chris Lattner87514ca2005-10-10 22:31:19 +0000143
Chris Lattner448f2192006-11-11 00:39:41 +0000144 bool CombineToPreIndexedLoadStore(SDNode *N);
145 bool CombineToPostIndexedLoadStore(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000146
Evan Cheng95c57ea2010-04-24 04:43:44 +0000147 void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad);
148 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
149 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
150 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000151 SDValue PromoteIntBinOp(SDValue Op);
Evan Cheng07c4e102010-04-22 20:19:46 +0000152 SDValue PromoteIntShiftOp(SDValue Op);
Evan Cheng4c26e932010-04-19 19:29:22 +0000153 SDValue PromoteExtend(SDValue Op);
154 bool PromoteLoad(SDValue Op);
Scott Michelfdc40a02009-02-17 22:15:04 +0000155
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +0000156 void ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
157 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
158 ISD::NodeType ExtType);
159
Dan Gohman389079b2007-10-08 17:57:15 +0000160 /// combine - call the node-specific routine that knows how to fold each
161 /// particular type of node. If that doesn't do anything, try the
162 /// target-specific DAG combines.
Dan Gohman475871a2008-07-27 21:46:04 +0000163 SDValue combine(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000164
165 // Visitation implementation - Implement dag node combining for different
166 // node types. The semantics are as follows:
167 // Return Value:
Evan Cheng17a568b2008-08-29 22:21:44 +0000168 // SDValue.getNode() == 0 - No change was made
169 // SDValue.getNode() == N - N was replaced, is dead and has been handled.
170 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000171 //
Dan Gohman475871a2008-07-27 21:46:04 +0000172 SDValue visitTokenFactor(SDNode *N);
173 SDValue visitMERGE_VALUES(SDNode *N);
174 SDValue visitADD(SDNode *N);
175 SDValue visitSUB(SDNode *N);
176 SDValue visitADDC(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000177 SDValue visitSUBC(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000178 SDValue visitADDE(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000179 SDValue visitSUBE(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000180 SDValue visitMUL(SDNode *N);
181 SDValue visitSDIV(SDNode *N);
182 SDValue visitUDIV(SDNode *N);
183 SDValue visitSREM(SDNode *N);
184 SDValue visitUREM(SDNode *N);
185 SDValue visitMULHU(SDNode *N);
186 SDValue visitMULHS(SDNode *N);
187 SDValue visitSMUL_LOHI(SDNode *N);
188 SDValue visitUMUL_LOHI(SDNode *N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +0000189 SDValue visitSMULO(SDNode *N);
190 SDValue visitUMULO(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000191 SDValue visitSDIVREM(SDNode *N);
192 SDValue visitUDIVREM(SDNode *N);
193 SDValue visitAND(SDNode *N);
194 SDValue visitOR(SDNode *N);
195 SDValue visitXOR(SDNode *N);
196 SDValue SimplifyVBinOp(SDNode *N);
197 SDValue visitSHL(SDNode *N);
198 SDValue visitSRA(SDNode *N);
199 SDValue visitSRL(SDNode *N);
200 SDValue visitCTLZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000201 SDValue visitCTLZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000202 SDValue visitCTTZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000203 SDValue visitCTTZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000204 SDValue visitCTPOP(SDNode *N);
205 SDValue visitSELECT(SDNode *N);
206 SDValue visitSELECT_CC(SDNode *N);
207 SDValue visitSETCC(SDNode *N);
208 SDValue visitSIGN_EXTEND(SDNode *N);
209 SDValue visitZERO_EXTEND(SDNode *N);
210 SDValue visitANY_EXTEND(SDNode *N);
211 SDValue visitSIGN_EXTEND_INREG(SDNode *N);
212 SDValue visitTRUNCATE(SDNode *N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000213 SDValue visitBITCAST(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000214 SDValue visitBUILD_PAIR(SDNode *N);
215 SDValue visitFADD(SDNode *N);
216 SDValue visitFSUB(SDNode *N);
217 SDValue visitFMUL(SDNode *N);
Owen Anderson062c0a52012-05-02 22:17:40 +0000218 SDValue visitFMA(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000219 SDValue visitFDIV(SDNode *N);
220 SDValue visitFREM(SDNode *N);
221 SDValue visitFCOPYSIGN(SDNode *N);
222 SDValue visitSINT_TO_FP(SDNode *N);
223 SDValue visitUINT_TO_FP(SDNode *N);
224 SDValue visitFP_TO_SINT(SDNode *N);
225 SDValue visitFP_TO_UINT(SDNode *N);
226 SDValue visitFP_ROUND(SDNode *N);
227 SDValue visitFP_ROUND_INREG(SDNode *N);
228 SDValue visitFP_EXTEND(SDNode *N);
229 SDValue visitFNEG(SDNode *N);
230 SDValue visitFABS(SDNode *N);
231 SDValue visitBRCOND(SDNode *N);
232 SDValue visitBR_CC(SDNode *N);
233 SDValue visitLOAD(SDNode *N);
234 SDValue visitSTORE(SDNode *N);
235 SDValue visitINSERT_VECTOR_ELT(SDNode *N);
236 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
237 SDValue visitBUILD_VECTOR(SDNode *N);
238 SDValue visitCONCAT_VECTORS(SDNode *N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +0000239 SDValue visitEXTRACT_SUBVECTOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000240 SDValue visitVECTOR_SHUFFLE(SDNode *N);
Jim Grosbach9a526492010-06-23 16:07:42 +0000241 SDValue visitMEMBARRIER(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000242
Dan Gohman475871a2008-07-27 21:46:04 +0000243 SDValue XformToShuffleWithZero(SDNode *N);
Bill Wendling35247c32009-01-30 00:45:56 +0000244 SDValue ReassociateOps(unsigned Opc, DebugLoc DL, SDValue LHS, SDValue RHS);
Scott Michelfdc40a02009-02-17 22:15:04 +0000245
Dan Gohman475871a2008-07-27 21:46:04 +0000246 SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
Chris Lattnere70da202007-12-06 07:33:36 +0000247
Dan Gohman475871a2008-07-27 21:46:04 +0000248 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
249 SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Bill Wendling836ca7d2009-01-30 23:59:18 +0000250 SDValue SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2);
Scott Michelfdc40a02009-02-17 22:15:04 +0000251 SDValue SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2,
252 SDValue N3, ISD::CondCode CC,
Bill Wendling836ca7d2009-01-30 23:59:18 +0000253 bool NotExtCompare = false);
Owen Andersone50ed302009-08-10 22:56:29 +0000254 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +0000255 DebugLoc DL, bool foldBooleans = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000256 SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Chris Lattner5eee4272008-01-26 01:09:19 +0000257 unsigned HiOp);
Owen Andersone50ed302009-08-10 22:56:29 +0000258 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000259 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
Dan Gohman475871a2008-07-27 21:46:04 +0000260 SDValue BuildSDIV(SDNode *N);
261 SDValue BuildUDIV(SDNode *N);
Evan Cheng9568e5c2011-06-21 06:01:08 +0000262 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
263 bool DemandHighBits = true);
264 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
Bill Wendling317bd702009-01-30 21:14:50 +0000265 SDNode *MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL);
Dan Gohman475871a2008-07-27 21:46:04 +0000266 SDValue ReduceLoadWidth(SDNode *N);
Evan Cheng8b944d32009-05-28 00:35:15 +0000267 SDValue ReduceLoadOpStoreWidth(SDNode *N);
Evan Cheng31959b12011-02-02 01:06:55 +0000268 SDValue TransformFPLoadStorePair(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000269
Dan Gohman475871a2008-07-27 21:46:04 +0000270 SDValue GetDemandedBits(SDValue V, const APInt &Mask);
Scott Michelfdc40a02009-02-17 22:15:04 +0000271
Jim Laskey6ff23e52006-10-04 16:53:27 +0000272 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
273 /// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000274 void GatherAllAliases(SDNode *N, SDValue OriginalChain,
275 SmallVector<SDValue, 8> &Aliases);
Jim Laskey6ff23e52006-10-04 16:53:27 +0000276
Jim Laskey096c22e2006-10-18 12:29:57 +0000277 /// isAlias - Return true if there is any possibility that the two addresses
278 /// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +0000279 bool isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +0000280 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000281 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000282 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +0000283 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000284 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000285 unsigned SrcValueAlign2,
286 const MDNode *TBAAInfo2) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000287
Jim Laskey7ca56af2006-10-11 13:47:09 +0000288 /// FindAliasInfo - Extracts the relevant alias information from the memory
289 /// node. Returns true if the operand was a load.
290 bool FindAliasInfo(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000291 SDValue &Ptr, int64_t &Size,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000292 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000293 unsigned &SrcValueAlignment,
294 const MDNode *&TBAAInfo) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000295
Jim Laskey279f0532006-09-25 16:29:54 +0000296 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000297 /// looking for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +0000298 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands92abc622009-01-31 15:50:11 +0000299
Chris Lattner2392ae72010-04-15 04:48:01 +0000300 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000301 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000302 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000303 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000304
Nate Begeman1d4d4142005-09-01 00:19:25 +0000305 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000306 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000307
Chris Lattner2392ae72010-04-15 04:48:01 +0000308 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000309
Chris Lattner2392ae72010-04-15 04:48:01 +0000310 /// getShiftAmountTy - Returns a type large enough to hold any valid
311 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000312 EVT getShiftAmountTy(EVT LHSTy) {
313 return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000314 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000315
Chris Lattner2392ae72010-04-15 04:48:01 +0000316 /// isTypeLegal - This method returns true if we are running before type
317 /// legalization or if the specified VT is legal.
318 bool isTypeLegal(const EVT &VT) {
319 if (!LegalTypes) return true;
320 return TLI.isTypeLegal(VT);
321 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000322 };
323}
324
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000325
326namespace {
327/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
328/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000329class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000330 DAGCombiner &DC;
331public:
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000332 explicit WorkListRemover(DAGCombiner &dc)
333 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000334
Duncan Sandsedfcf592008-06-11 11:42:12 +0000335 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000336 DC.removeFromWorkList(N);
337 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000338};
339}
340
Chris Lattner24664722006-03-01 04:53:38 +0000341//===----------------------------------------------------------------------===//
342// TargetLowering::DAGCombinerInfo implementation
343//===----------------------------------------------------------------------===//
344
345void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
346 ((DAGCombiner*)DC)->AddToWorkList(N);
347}
348
Cameron Zwariched3caf92011-04-02 02:40:26 +0000349void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
350 ((DAGCombiner*)DC)->removeFromWorkList(N);
351}
352
Dan Gohman475871a2008-07-27 21:46:04 +0000353SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000354CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
355 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000356}
357
Dan Gohman475871a2008-07-27 21:46:04 +0000358SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000359CombineTo(SDNode *N, SDValue Res, bool AddTo) {
360 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000361}
362
363
Dan Gohman475871a2008-07-27 21:46:04 +0000364SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000365CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
366 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000367}
368
Dan Gohmane5af2d32009-01-29 01:59:02 +0000369void TargetLowering::DAGCombinerInfo::
370CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
371 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
372}
Chris Lattner24664722006-03-01 04:53:38 +0000373
Chris Lattner24664722006-03-01 04:53:38 +0000374//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000375// Helper Functions
376//===----------------------------------------------------------------------===//
377
378/// isNegatibleForFree - Return 1 if we can compute the negated form of the
379/// specified expression for the same cost as the expression itself, or 2 if we
380/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000381static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000382 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000383 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000384 unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000385 // No compile time optimizations on this type.
Owen Anderson825b72b2009-08-11 20:47:22 +0000386 if (Op.getValueType() == MVT::ppcf128)
Dale Johannesendb44bf82007-10-16 23:38:29 +0000387 return 0;
388
Chris Lattner29446522007-05-14 22:04:50 +0000389 // fneg is removable even if it has multiple uses.
390 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000391
Chris Lattner29446522007-05-14 22:04:50 +0000392 // Don't allow anything with multiple uses.
393 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000394
Chris Lattner3adf9512007-05-25 02:19:06 +0000395 // Don't recurse exponentially.
396 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000397
Chris Lattner29446522007-05-14 22:04:50 +0000398 switch (Op.getOpcode()) {
399 default: return false;
400 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000401 // Don't invert constant FP values after legalize. The negated constant
402 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000403 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000404 case ISD::FADD:
405 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000406 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000407
Owen Andersonafd3d562012-03-06 00:29:31 +0000408 // After operation legalization, it might not be legal to create new FSUBs.
409 if (LegalOperations &&
410 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
411 return 0;
412
Bill Wendlingd34470c2009-01-30 23:10:18 +0000413 // fold (fsub (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000414 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
415 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000416 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000417 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000418 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000419 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000420 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000421 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000422 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000423
Bill Wendlingd34470c2009-01-30 23:10:18 +0000424 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000425 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000426
Chris Lattner29446522007-05-14 22:04:50 +0000427 case ISD::FMUL:
428 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000429 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000430
Bill Wendlingd34470c2009-01-30 23:10:18 +0000431 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000432 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
433 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000434 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000435
Owen Andersonafd3d562012-03-06 00:29:31 +0000436 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000437 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000438
Chris Lattner29446522007-05-14 22:04:50 +0000439 case ISD::FP_EXTEND:
440 case ISD::FP_ROUND:
441 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000442 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000443 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000444 }
445}
446
447/// GetNegatedExpression - If isNegatibleForFree returns true, this function
448/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000449static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000450 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000451 // fneg is removable even if it has multiple uses.
452 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000453
Chris Lattner29446522007-05-14 22:04:50 +0000454 // Don't allow anything with multiple uses.
455 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000456
Chris Lattner3adf9512007-05-25 02:19:06 +0000457 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000458 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000459 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000460 case ISD::ConstantFP: {
461 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
462 V.changeSign();
463 return DAG.getConstantFP(V, Op.getValueType());
464 }
Chris Lattner29446522007-05-14 22:04:50 +0000465 case ISD::FADD:
466 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000467 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000468
Bill Wendlingd34470c2009-01-30 23:10:18 +0000469 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000470 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000471 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000472 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000473 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000474 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000475 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000476 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000477 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Bill Wendling35247c32009-01-30 00:45:56 +0000478 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000479 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000480 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000481 Op.getOperand(0));
482 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000483 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000484 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000485
Bill Wendlingd34470c2009-01-30 23:10:18 +0000486 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000487 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000488 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000489 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000490
Bill Wendlingd34470c2009-01-30 23:10:18 +0000491 // fold (fneg (fsub A, B)) -> (fsub B, A)
Bill Wendling35247c32009-01-30 00:45:56 +0000492 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
493 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000494
Chris Lattner29446522007-05-14 22:04:50 +0000495 case ISD::FMUL:
496 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000497 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000498
Bill Wendlingd34470c2009-01-30 23:10:18 +0000499 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000500 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000501 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000502 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000503 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000504 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000505 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000506 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000507
Bill Wendlingd34470c2009-01-30 23:10:18 +0000508 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Bill Wendling35247c32009-01-30 00:45:56 +0000509 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000510 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000511 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000512 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000513
Chris Lattner29446522007-05-14 22:04:50 +0000514 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000515 case ISD::FSIN:
Bill Wendling35247c32009-01-30 00:45:56 +0000516 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000517 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000518 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000519 case ISD::FP_ROUND:
Bill Wendling35247c32009-01-30 00:45:56 +0000520 return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000521 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000522 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000523 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000524 }
525}
Chris Lattner24664722006-03-01 04:53:38 +0000526
527
Nate Begeman4ebd8052005-09-01 23:24:04 +0000528// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
529// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000530// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000531// nodes based on the type of node we are checking. This simplifies life a
532// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000533static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
534 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000535 if (N.getOpcode() == ISD::SETCC) {
536 LHS = N.getOperand(0);
537 RHS = N.getOperand(1);
538 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000539 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000540 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000541 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000542 N.getOperand(2).getOpcode() == ISD::Constant &&
543 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000544 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000545 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
546 LHS = N.getOperand(0);
547 RHS = N.getOperand(1);
548 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000549 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000550 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000551 return false;
552}
553
Nate Begeman99801192005-09-07 23:25:52 +0000554// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
555// one use. If this is true, it allows the users to invert the operation for
556// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000557static bool isOneUseSetCC(SDValue N) {
558 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000559 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000560 return true;
561 return false;
562}
563
Bill Wendling35247c32009-01-30 00:45:56 +0000564SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
565 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000566 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000567 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
568 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000569 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000570 SDValue OpNode =
571 DAG.FoldConstantArithmetic(Opc, VT,
572 cast<ConstantSDNode>(N0.getOperand(1)),
573 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000574 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000575 }
576 if (N0.hasOneUse()) {
Bill Wendling35247c32009-01-30 00:45:56 +0000577 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
578 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
579 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000580 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000581 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000582 }
583 }
Bill Wendling35247c32009-01-30 00:45:56 +0000584
Nate Begemancd4d58c2006-02-03 06:46:56 +0000585 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
586 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000587 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000588 SDValue OpNode =
589 DAG.FoldConstantArithmetic(Opc, VT,
590 cast<ConstantSDNode>(N1.getOperand(1)),
591 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000592 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000593 }
594 if (N1.hasOneUse()) {
Bill Wendling35247c32009-01-30 00:45:56 +0000595 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendlingd69c3142009-01-30 02:23:43 +0000596 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000597 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000598 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000599 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000600 }
601 }
Bill Wendling35247c32009-01-30 00:45:56 +0000602
Dan Gohman475871a2008-07-27 21:46:04 +0000603 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000604}
605
Dan Gohman475871a2008-07-27 21:46:04 +0000606SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
607 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000608 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
609 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000610 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000611 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000612 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000613 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000614 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000615 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000616 assert((!To[i].getNode() ||
617 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000618 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000619 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000620 DAG.ReplaceAllUsesWith(N, To);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000621 if (AddTo) {
622 // Push the new nodes and any users onto the worklist
623 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000624 if (To[i].getNode()) {
625 AddToWorkList(To[i].getNode());
626 AddUsersToWorkList(To[i].getNode());
627 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000628 }
629 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000630
Dan Gohmandbe664a2009-01-19 21:44:21 +0000631 // Finally, if the node is now dead, remove it from the graph. The node
632 // may not be dead if the replacement process recursively simplified to
633 // something else needing this node.
634 if (N->use_empty()) {
635 // Nodes can be reintroduced into the worklist. Make sure we do not
636 // process a node that has been replaced.
637 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000638
Dan Gohmandbe664a2009-01-19 21:44:21 +0000639 // Finally, since the node is now dead, remove it from the graph.
640 DAG.DeleteNode(N);
641 }
Dan Gohman475871a2008-07-27 21:46:04 +0000642 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000643}
644
Evan Chenge5b51ac2010-04-17 06:13:15 +0000645void DAGCombiner::
646CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000647 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000648 // are deleted, make sure to remove them from our worklist.
649 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000650 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000651
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000652 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000653 AddToWorkList(TLO.New.getNode());
654 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000655
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000656 // Finally, if the node is now dead, remove it from the graph. The node
657 // may not be dead if the replacement process recursively simplified to
658 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000659 if (TLO.Old.getNode()->use_empty()) {
660 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000661
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000662 // If the operands of this node are only used by the node, they will now
663 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000664 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
665 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
666 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000667
Gabor Greifba36cb52008-08-28 21:40:38 +0000668 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000669 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000670}
671
672/// SimplifyDemandedBits - Check the specified integer node value to see if
673/// it can be simplified or if things it uses can be simplified by bit
674/// propagation. If so, return true.
675bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000676 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000677 APInt KnownZero, KnownOne;
678 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
679 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000680
Dan Gohmane5af2d32009-01-29 01:59:02 +0000681 // Revisit the node.
682 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000683
Dan Gohmane5af2d32009-01-29 01:59:02 +0000684 // Replace the old value with the new one.
685 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000686 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000687 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000688 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000689 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000690 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000691
Dan Gohmane5af2d32009-01-29 01:59:02 +0000692 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000693 return true;
694}
695
Evan Cheng95c57ea2010-04-24 04:43:44 +0000696void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
697 DebugLoc dl = Load->getDebugLoc();
698 EVT VT = Load->getValueType(0);
699 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000700
Evan Cheng95c57ea2010-04-24 04:43:44 +0000701 DEBUG(dbgs() << "\nReplacing.9 ";
702 Load->dump(&DAG);
703 dbgs() << "\nWith: ";
704 Trunc.getNode()->dump(&DAG);
705 dbgs() << '\n');
706 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000707 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
708 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
Evan Cheng95c57ea2010-04-24 04:43:44 +0000709 removeFromWorkList(Load);
710 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000711 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000712}
713
714SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
715 Replace = false;
Evan Cheng4c26e932010-04-19 19:29:22 +0000716 DebugLoc dl = Op.getDebugLoc();
Evan Chenge5b51ac2010-04-17 06:13:15 +0000717 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000718 EVT MemVT = LD->getMemoryVT();
719 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000720 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000721 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000722 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000723 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000724 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000725 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000726 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000727 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000728 LD->isNonTemporal(), LD->getAlignment());
729 }
730
Evan Cheng4c26e932010-04-19 19:29:22 +0000731 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000732 switch (Opc) {
733 default: break;
734 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000735 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000736 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000737 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000738 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000739 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000740 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000741 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000742 case ISD::Constant: {
743 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000744 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000745 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000746 }
Evan Chengcaf77402010-04-23 19:10:30 +0000747 }
748
749 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000750 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000751 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000752}
753
Evan Cheng95c57ea2010-04-24 04:43:44 +0000754SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000755 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
756 return SDValue();
757 EVT OldVT = Op.getValueType();
758 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000759 bool Replace = false;
760 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
761 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000762 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000763 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000764
765 if (Replace)
766 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
767 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000768 DAG.getValueType(OldVT));
769}
770
Evan Cheng95c57ea2010-04-24 04:43:44 +0000771SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000772 EVT OldVT = Op.getValueType();
773 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000774 bool Replace = false;
775 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
776 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000777 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000778 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000779
780 if (Replace)
781 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
782 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000783}
784
Evan Cheng64b7bf72010-04-16 06:14:10 +0000785/// PromoteIntBinOp - Promote the specified integer binary operation if the
786/// target indicates it is beneficial. e.g. On x86, it's usually better to
787/// promote i16 operations to i32 since i16 instructions are longer.
788SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
789 if (!LegalOperations)
790 return SDValue();
791
792 EVT VT = Op.getValueType();
793 if (VT.isVector() || !VT.isInteger())
794 return SDValue();
795
Evan Chenge5b51ac2010-04-17 06:13:15 +0000796 // If operation type is 'undesirable', e.g. i16 on x86, consider
797 // promoting it.
798 unsigned Opc = Op.getOpcode();
799 if (TLI.isTypeDesirableForOp(Opc, VT))
800 return SDValue();
801
Evan Cheng64b7bf72010-04-16 06:14:10 +0000802 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000803 // Consult target whether it is a good idea to promote this operation and
804 // what's the right type to promote it to.
805 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000806 assert(PVT != VT && "Don't know what type to promote to!");
807
Evan Cheng95c57ea2010-04-24 04:43:44 +0000808 bool Replace0 = false;
809 SDValue N0 = Op.getOperand(0);
810 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
811 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000812 return SDValue();
813
Evan Cheng95c57ea2010-04-24 04:43:44 +0000814 bool Replace1 = false;
815 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000816 SDValue NN1;
817 if (N0 == N1)
818 NN1 = NN0;
819 else {
820 NN1 = PromoteOperand(N1, PVT, Replace1);
821 if (NN1.getNode() == 0)
822 return SDValue();
823 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000824
Evan Cheng95c57ea2010-04-24 04:43:44 +0000825 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000826 if (NN1.getNode())
827 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000828
829 if (Replace0)
830 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
831 if (Replace1)
832 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000833
Evan Chengac7eae52010-04-27 19:48:13 +0000834 DEBUG(dbgs() << "\nPromoting ";
835 Op.getNode()->dump(&DAG));
Evan Cheng07c4e102010-04-22 20:19:46 +0000836 DebugLoc dl = Op.getDebugLoc();
837 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000838 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000839 }
840 return SDValue();
841}
842
843/// PromoteIntShiftOp - Promote the specified integer shift operation if the
844/// target indicates it is beneficial. e.g. On x86, it's usually better to
845/// promote i16 operations to i32 since i16 instructions are longer.
846SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
847 if (!LegalOperations)
848 return SDValue();
849
850 EVT VT = Op.getValueType();
851 if (VT.isVector() || !VT.isInteger())
852 return SDValue();
853
854 // If operation type is 'undesirable', e.g. i16 on x86, consider
855 // promoting it.
856 unsigned Opc = Op.getOpcode();
857 if (TLI.isTypeDesirableForOp(Opc, VT))
858 return SDValue();
859
860 EVT PVT = VT;
861 // Consult target whether it is a good idea to promote this operation and
862 // what's the right type to promote it to.
863 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
864 assert(PVT != VT && "Don't know what type to promote to!");
865
Evan Cheng95c57ea2010-04-24 04:43:44 +0000866 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000867 SDValue N0 = Op.getOperand(0);
868 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000869 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000870 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000871 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000872 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000873 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000874 if (N0.getNode() == 0)
875 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000876
Evan Chenge5b51ac2010-04-17 06:13:15 +0000877 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000878 if (Replace)
879 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000880
Evan Chengac7eae52010-04-27 19:48:13 +0000881 DEBUG(dbgs() << "\nPromoting ";
882 Op.getNode()->dump(&DAG));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000883 DebugLoc dl = Op.getDebugLoc();
884 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000885 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000886 }
887 return SDValue();
888}
889
Evan Cheng4c26e932010-04-19 19:29:22 +0000890SDValue DAGCombiner::PromoteExtend(SDValue Op) {
891 if (!LegalOperations)
892 return SDValue();
893
894 EVT VT = Op.getValueType();
895 if (VT.isVector() || !VT.isInteger())
896 return SDValue();
897
898 // If operation type is 'undesirable', e.g. i16 on x86, consider
899 // promoting it.
900 unsigned Opc = Op.getOpcode();
901 if (TLI.isTypeDesirableForOp(Opc, VT))
902 return SDValue();
903
904 EVT PVT = VT;
905 // Consult target whether it is a good idea to promote this operation and
906 // what's the right type to promote it to.
907 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
908 assert(PVT != VT && "Don't know what type to promote to!");
909 // fold (aext (aext x)) -> (aext x)
910 // fold (aext (zext x)) -> (zext x)
911 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000912 DEBUG(dbgs() << "\nPromoting ";
913 Op.getNode()->dump(&DAG));
Evan Cheng4c26e932010-04-19 19:29:22 +0000914 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
915 }
916 return SDValue();
917}
918
919bool DAGCombiner::PromoteLoad(SDValue Op) {
920 if (!LegalOperations)
921 return false;
922
923 EVT VT = Op.getValueType();
924 if (VT.isVector() || !VT.isInteger())
925 return false;
926
927 // If operation type is 'undesirable', e.g. i16 on x86, consider
928 // promoting it.
929 unsigned Opc = Op.getOpcode();
930 if (TLI.isTypeDesirableForOp(Opc, VT))
931 return false;
932
933 EVT PVT = VT;
934 // Consult target whether it is a good idea to promote this operation and
935 // what's the right type to promote it to.
936 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
937 assert(PVT != VT && "Don't know what type to promote to!");
938
939 DebugLoc dl = Op.getDebugLoc();
940 SDNode *N = Op.getNode();
941 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000942 EVT MemVT = LD->getMemoryVT();
943 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000944 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000945 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000946 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000947 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000948 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000949 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000950 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000951 LD->isNonTemporal(), LD->getAlignment());
952 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
953
Evan Cheng95c57ea2010-04-24 04:43:44 +0000954 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000955 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000956 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000957 Result.getNode()->dump(&DAG);
958 dbgs() << '\n');
959 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000960 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
961 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
Evan Cheng4c26e932010-04-19 19:29:22 +0000962 removeFromWorkList(N);
963 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000964 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000965 return true;
966 }
967 return false;
968}
969
Evan Chenge5b51ac2010-04-17 06:13:15 +0000970
Chris Lattner29446522007-05-14 22:04:50 +0000971//===----------------------------------------------------------------------===//
972// Main DAG Combiner implementation
973//===----------------------------------------------------------------------===//
974
Duncan Sands25cf2272008-11-24 14:53:14 +0000975void DAGCombiner::Run(CombineLevel AtLevel) {
976 // set the instance variables, so that the various visit routines may use it.
977 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +0000978 LegalOperations = Level >= AfterLegalizeVectorOps;
979 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +0000980
Evan Cheng17a568b2008-08-29 22:21:44 +0000981 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +0000982 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
983 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +0000984 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +0000985
Evan Cheng17a568b2008-08-29 22:21:44 +0000986 // Create a dummy node (which is not added to allnodes), that adds a reference
987 // to the root node, preventing it from being deleted, and tracking any
988 // changes of the root.
989 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +0000990
Jim Laskey26f7fa72006-10-17 19:33:52 +0000991 // The root of the dag may dangle to deleted nodes until the dag combiner is
992 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +0000993 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +0000994
James Molloy6660c052012-02-16 09:17:04 +0000995 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +0000996 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +0000997 while (!WorkListContents.empty()) {
998 SDNode *N;
999 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1000 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1001 // worklist *should* contain, and check the node we want to visit is should
1002 // actually be visited.
1003 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001004 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001005 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001006
Evan Cheng17a568b2008-08-29 22:21:44 +00001007 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1008 // N is deleted from the DAG, since they too may now be dead or may have a
1009 // reduced number of uses, allowing other xforms.
1010 if (N->use_empty() && N != &Dummy) {
1011 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1012 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001013
Evan Cheng17a568b2008-08-29 22:21:44 +00001014 DAG.DeleteNode(N);
1015 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001016 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001017
Evan Cheng17a568b2008-08-29 22:21:44 +00001018 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001019
Evan Cheng17a568b2008-08-29 22:21:44 +00001020 if (RV.getNode() == 0)
1021 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001022
Evan Cheng17a568b2008-08-29 22:21:44 +00001023 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001024
Evan Cheng17a568b2008-08-29 22:21:44 +00001025 // If we get back the same node we passed in, rather than a new node or
1026 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001027 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001028 // mechanics for us, we have no work to do in this case.
1029 if (RV.getNode() == N)
1030 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001031
Evan Cheng17a568b2008-08-29 22:21:44 +00001032 assert(N->getOpcode() != ISD::DELETED_NODE &&
1033 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1034 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001035
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001036 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001037 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001038 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001039 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001040 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001041
Devang Patel9728ea22011-05-23 22:04:42 +00001042 // Transfer debug value.
1043 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001044 WorkListRemover DeadNodes(*this);
1045 if (N->getNumValues() == RV.getNode()->getNumValues())
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001046 DAG.ReplaceAllUsesWith(N, RV.getNode());
Evan Cheng17a568b2008-08-29 22:21:44 +00001047 else {
1048 assert(N->getValueType(0) == RV.getValueType() &&
1049 N->getNumValues() == 1 && "Type mismatch");
1050 SDValue OpV = RV;
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001051 DAG.ReplaceAllUsesWith(N, &OpV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001052 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001053
Evan Cheng17a568b2008-08-29 22:21:44 +00001054 // Push the new node and any users onto the worklist
1055 AddToWorkList(RV.getNode());
1056 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001057
Evan Cheng17a568b2008-08-29 22:21:44 +00001058 // Add any uses of the old node to the worklist in case this node is the
1059 // last one that uses them. They may become dead after this node is
1060 // deleted.
1061 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1062 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001063
Dan Gohmandbe664a2009-01-19 21:44:21 +00001064 // Finally, if the node is now dead, remove it from the graph. The node
1065 // may not be dead if the replacement process recursively simplified to
1066 // something else needing this node.
1067 if (N->use_empty()) {
1068 // Nodes can be reintroduced into the worklist. Make sure we do not
1069 // process a node that has been replaced.
1070 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001071
Dan Gohmandbe664a2009-01-19 21:44:21 +00001072 // Finally, since the node is now dead, remove it from the graph.
1073 DAG.DeleteNode(N);
1074 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001075 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001076
Chris Lattner95038592005-10-05 06:35:28 +00001077 // If the root changed (e.g. it was a dead load, update the root).
1078 DAG.setRoot(Dummy.getValue());
Hal Finkel31490ba2012-04-16 03:33:22 +00001079 DAG.RemoveDeadNodes();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001080}
1081
Dan Gohman475871a2008-07-27 21:46:04 +00001082SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001083 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001084 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001085 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001086 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001087 case ISD::ADD: return visitADD(N);
1088 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001089 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001090 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001091 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001092 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001093 case ISD::MUL: return visitMUL(N);
1094 case ISD::SDIV: return visitSDIV(N);
1095 case ISD::UDIV: return visitUDIV(N);
1096 case ISD::SREM: return visitSREM(N);
1097 case ISD::UREM: return visitUREM(N);
1098 case ISD::MULHU: return visitMULHU(N);
1099 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001100 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1101 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001102 case ISD::SMULO: return visitSMULO(N);
1103 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001104 case ISD::SDIVREM: return visitSDIVREM(N);
1105 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001106 case ISD::AND: return visitAND(N);
1107 case ISD::OR: return visitOR(N);
1108 case ISD::XOR: return visitXOR(N);
1109 case ISD::SHL: return visitSHL(N);
1110 case ISD::SRA: return visitSRA(N);
1111 case ISD::SRL: return visitSRL(N);
1112 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001113 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001114 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001115 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001116 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001117 case ISD::SELECT: return visitSELECT(N);
1118 case ISD::SELECT_CC: return visitSELECT_CC(N);
1119 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001120 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1121 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001122 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001123 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1124 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001125 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001126 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001127 case ISD::FADD: return visitFADD(N);
1128 case ISD::FSUB: return visitFSUB(N);
1129 case ISD::FMUL: return visitFMUL(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00001130 case ISD::FMA: return visitFMA(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001131 case ISD::FDIV: return visitFDIV(N);
1132 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001133 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001134 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1135 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1136 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1137 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1138 case ISD::FP_ROUND: return visitFP_ROUND(N);
1139 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1140 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1141 case ISD::FNEG: return visitFNEG(N);
1142 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001143 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001144 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001145 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001146 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001147 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001148 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001149 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1150 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001151 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001152 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001153 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001154 }
Dan Gohman475871a2008-07-27 21:46:04 +00001155 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001156}
1157
Dan Gohman475871a2008-07-27 21:46:04 +00001158SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001159 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001160
1161 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001162 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001163 assert(N->getOpcode() != ISD::DELETED_NODE &&
1164 "Node was deleted but visit returned NULL!");
1165
1166 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1167 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1168
1169 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001170 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001171 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001172
1173 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1174 }
1175 }
1176
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001177 // If nothing happened still, try promoting the operation.
1178 if (RV.getNode() == 0) {
1179 switch (N->getOpcode()) {
1180 default: break;
1181 case ISD::ADD:
1182 case ISD::SUB:
1183 case ISD::MUL:
1184 case ISD::AND:
1185 case ISD::OR:
1186 case ISD::XOR:
1187 RV = PromoteIntBinOp(SDValue(N, 0));
1188 break;
1189 case ISD::SHL:
1190 case ISD::SRA:
1191 case ISD::SRL:
1192 RV = PromoteIntShiftOp(SDValue(N, 0));
1193 break;
1194 case ISD::SIGN_EXTEND:
1195 case ISD::ZERO_EXTEND:
1196 case ISD::ANY_EXTEND:
1197 RV = PromoteExtend(SDValue(N, 0));
1198 break;
1199 case ISD::LOAD:
1200 if (PromoteLoad(SDValue(N, 0)))
1201 RV = SDValue(N, 0);
1202 break;
1203 }
1204 }
1205
Scott Michelfdc40a02009-02-17 22:15:04 +00001206 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001207 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001208 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001209 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1210 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001211 SDValue N0 = N->getOperand(0);
1212 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001213
Evan Cheng08b11732008-03-22 01:55:50 +00001214 // Constant operands are canonicalized to RHS.
1215 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001216 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001217 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1218 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001219 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001220 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001221 }
1222 }
1223
Dan Gohman389079b2007-10-08 17:57:15 +00001224 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001225}
Dan Gohman389079b2007-10-08 17:57:15 +00001226
Chris Lattner6270f682006-10-08 22:57:01 +00001227/// getInputChainForNode - Given a node, return its input chain if it has one,
1228/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001229static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001230 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001231 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001232 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001233 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001234 return N->getOperand(NumOps-1);
1235 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001236 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001237 return N->getOperand(i);
1238 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001239 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001240}
1241
Dan Gohman475871a2008-07-27 21:46:04 +00001242SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001243 // If N has two operands, where one has an input chain equal to the other,
1244 // the 'other' chain is redundant.
1245 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001246 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001247 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001248 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001249 return N->getOperand(1);
1250 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001251
Chris Lattnerc76d4412007-05-16 06:37:59 +00001252 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001253 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001254 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001255 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001256
Jim Laskey6ff23e52006-10-04 16:53:27 +00001257 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001258 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001259
Jim Laskey71382342006-10-07 23:37:56 +00001260 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001261 // encountered.
1262 for (unsigned i = 0; i < TFs.size(); ++i) {
1263 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001264
Jim Laskey6ff23e52006-10-04 16:53:27 +00001265 // Check each of the operands.
1266 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001267 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001268
Jim Laskey6ff23e52006-10-04 16:53:27 +00001269 switch (Op.getOpcode()) {
1270 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001271 // Entry tokens don't need to be added to the list. They are
1272 // rededundant.
1273 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001274 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001275
Jim Laskey6ff23e52006-10-04 16:53:27 +00001276 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001277 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001278 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001279 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001280 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001281 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001282 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001283 Changed = true;
1284 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001285 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001286 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001287
Jim Laskey6ff23e52006-10-04 16:53:27 +00001288 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001289 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001290 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001291 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001292 else
1293 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001294 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001295 }
1296 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001297 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001298
Dan Gohman475871a2008-07-27 21:46:04 +00001299 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001300
1301 // If we've change things around then replace token factor.
1302 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001303 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001304 // The entry token is the only possible outcome.
1305 Result = DAG.getEntryNode();
1306 } else {
1307 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001308 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001309 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001310 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001311
Jim Laskey274062c2006-10-13 23:32:28 +00001312 // Don't add users to work list.
1313 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001314 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001315
Jim Laskey6ff23e52006-10-04 16:53:27 +00001316 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001317}
1318
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001319/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001320SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001321 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001322 // Replacing results may cause a different MERGE_VALUES to suddenly
1323 // be CSE'd with N, and carry its uses with it. Iterate until no
1324 // uses remain, to ensure that the node can be safely deleted.
Pete Cooper3affd9e2012-06-20 19:35:43 +00001325 // First add the users of this node to the work list so that they
1326 // can be tried again once they have new operands.
1327 AddUsersToWorkList(N);
Dan Gohman00edf392009-08-10 23:43:19 +00001328 do {
1329 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001330 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
Dan Gohman00edf392009-08-10 23:43:19 +00001331 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001332 removeFromWorkList(N);
1333 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001334 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001335}
1336
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001337static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001338SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1339 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001340 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001341 SDValue N00 = N0.getOperand(0);
1342 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001343 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001344
Gabor Greifba36cb52008-08-28 21:40:38 +00001345 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001346 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001347 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1348 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1349 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1350 N00.getOperand(0), N01),
1351 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1352 N00.getOperand(1), N01));
1353 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001354 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001355
Dan Gohman475871a2008-07-27 21:46:04 +00001356 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001357}
1358
Dan Gohman475871a2008-07-27 21:46:04 +00001359SDValue DAGCombiner::visitADD(SDNode *N) {
1360 SDValue N0 = N->getOperand(0);
1361 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001362 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1363 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001364 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001365
1366 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001367 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001368 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001369 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001370 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001371
Dan Gohman613e0d82007-07-03 14:03:57 +00001372 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001373 if (N0.getOpcode() == ISD::UNDEF)
1374 return N0;
1375 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001376 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001377 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001378 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001379 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001380 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001381 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001382 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001383 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001384 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001385 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001386 // fold (add Sym, c) -> Sym+c
1387 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001388 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001389 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001390 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001391 GA->getOffset() +
1392 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001393 // fold ((c1-A)+c2) -> (c1+c2)-A
1394 if (N1C && N0.getOpcode() == ISD::SUB)
1395 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001396 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001397 DAG.getConstant(N1C->getAPIntValue()+
1398 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001399 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001400 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001401 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001402 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001403 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001404 // fold ((0-A) + B) -> B-A
1405 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1406 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001407 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001408 // fold (A + (0-B)) -> A-B
1409 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1410 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001411 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001412 // fold (A+(B-A)) -> B
1413 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001414 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001415 // fold ((B-A)+A) -> B
1416 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1417 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001418 // fold (A+(B-(A+C))) to (B-C)
1419 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001420 N0 == N1.getOperand(1).getOperand(0))
1421 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001422 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001423 // fold (A+(B-(C+A))) to (B-C)
1424 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001425 N0 == N1.getOperand(1).getOperand(1))
1426 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001427 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001428 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001429 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1430 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001431 N0 == N1.getOperand(0).getOperand(1))
1432 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1433 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001434
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001435 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1436 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1437 SDValue N00 = N0.getOperand(0);
1438 SDValue N01 = N0.getOperand(1);
1439 SDValue N10 = N1.getOperand(0);
1440 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001441
1442 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1443 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1444 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1445 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001446 }
Chris Lattner947c2892006-03-13 06:51:27 +00001447
Dan Gohman475871a2008-07-27 21:46:04 +00001448 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1449 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001450
Chris Lattner947c2892006-03-13 06:51:27 +00001451 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001452 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001453 APInt LHSZero, LHSOne;
1454 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001455 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001456
Dan Gohman948d8ea2008-02-20 16:33:30 +00001457 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001458 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001459
Chris Lattner947c2892006-03-13 06:51:27 +00001460 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1461 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001462 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001463 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001464 }
1465 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001466
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001467 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001468 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001469 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001470 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001471 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001472 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001473 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001474 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001475 }
1476
Dan Gohmancd9e1552010-01-19 23:30:49 +00001477 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1478 if (N1.getOpcode() == ISD::SHL &&
1479 N1.getOperand(0).getOpcode() == ISD::SUB)
1480 if (ConstantSDNode *C =
1481 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1482 if (C->getAPIntValue() == 0)
1483 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1484 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1485 N1.getOperand(0).getOperand(1),
1486 N1.getOperand(1)));
1487 if (N0.getOpcode() == ISD::SHL &&
1488 N0.getOperand(0).getOpcode() == ISD::SUB)
1489 if (ConstantSDNode *C =
1490 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1491 if (C->getAPIntValue() == 0)
1492 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1493 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1494 N0.getOperand(0).getOperand(1),
1495 N0.getOperand(1)));
1496
Owen Andersonbc146b02010-09-21 20:42:50 +00001497 if (N1.getOpcode() == ISD::AND) {
1498 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001499 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001500 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1501 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001502
Owen Andersonbc146b02010-09-21 20:42:50 +00001503 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1504 // and similar xforms where the inner op is either ~0 or 0.
1505 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1506 DebugLoc DL = N->getDebugLoc();
1507 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1508 }
1509 }
1510
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001511 // add (sext i1), X -> sub X, (zext i1)
1512 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1513 N0.getOperand(0).getValueType() == MVT::i1 &&
1514 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1515 DebugLoc DL = N->getDebugLoc();
1516 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1517 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1518 }
1519
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001520 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001521}
1522
Dan Gohman475871a2008-07-27 21:46:04 +00001523SDValue DAGCombiner::visitADDC(SDNode *N) {
1524 SDValue N0 = N->getOperand(0);
1525 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001526 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1527 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001528 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001529
Chris Lattner91153682007-03-04 20:03:15 +00001530 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001531 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001532 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001533 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001534 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001535
Chris Lattner91153682007-03-04 20:03:15 +00001536 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001537 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001538 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001539
Chris Lattnerb6541762007-03-04 20:40:38 +00001540 // fold (addc x, 0) -> x + no carry out
1541 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001542 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001543 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001544
Dale Johannesen874ae252009-06-02 03:12:52 +00001545 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001546 APInt LHSZero, LHSOne;
1547 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001548 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001549
Dan Gohman948d8ea2008-02-20 16:33:30 +00001550 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001551 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001552
Chris Lattnerb6541762007-03-04 20:40:38 +00001553 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1554 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001555 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendling14036c02009-01-30 02:38:00 +00001556 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001557 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001558 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001559 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001560
Dan Gohman475871a2008-07-27 21:46:04 +00001561 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001562}
1563
Dan Gohman475871a2008-07-27 21:46:04 +00001564SDValue DAGCombiner::visitADDE(SDNode *N) {
1565 SDValue N0 = N->getOperand(0);
1566 SDValue N1 = N->getOperand(1);
1567 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001568 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1569 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001570
Chris Lattner91153682007-03-04 20:03:15 +00001571 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001572 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001573 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1574 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001575
Chris Lattnerb6541762007-03-04 20:40:38 +00001576 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001577 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001578 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001579
Dan Gohman475871a2008-07-27 21:46:04 +00001580 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001581}
1582
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001583// Since it may not be valid to emit a fold to zero for vector initializers
1584// check if we can before folding.
1585static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001586 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001587 if (!VT.isVector()) {
1588 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001589 }
1590 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001591 // Produce a vector of zeros.
1592 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1593 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1594 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1595 &Ops[0], Ops.size());
1596 }
1597 return SDValue();
1598}
1599
Dan Gohman475871a2008-07-27 21:46:04 +00001600SDValue DAGCombiner::visitSUB(SDNode *N) {
1601 SDValue N0 = N->getOperand(0);
1602 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001603 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1604 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001605 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1606 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001607 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001608
Dan Gohman7f321562007-06-25 16:23:39 +00001609 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001610 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001611 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001612 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001613 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001614
Chris Lattner854077d2005-10-17 01:07:11 +00001615 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001616 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001617 if (N0 == N1)
1618 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001619 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001620 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001621 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001622 // fold (sub x, c) -> (add x, -c)
1623 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001624 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001625 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001626 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1627 if (N0C && N0C->isAllOnesValue())
1628 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001629 // fold A-(A-B) -> B
1630 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1631 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001632 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001633 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001634 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001635 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001636 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001637 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001638 // fold C2-(A+C1) -> (C2-C1)-A
1639 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
1640 SDValue NewC = DAG.getConstant((N0C->getAPIntValue() - N1C1->getAPIntValue()), VT);
1641 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
Bill Wendling96cb1122012-07-19 00:04:14 +00001642 N1.getOperand(0));
Eric Christopher7332e6e2011-07-14 01:12:15 +00001643 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001644 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001645 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001646 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1647 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001648 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001649 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1650 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001651 // fold ((A+(C+B))-B) -> A+C
1652 if (N0.getOpcode() == ISD::ADD &&
1653 N0.getOperand(1).getOpcode() == ISD::ADD &&
1654 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001655 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1656 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001657 // fold ((A-(B-C))-C) -> A-B
1658 if (N0.getOpcode() == ISD::SUB &&
1659 N0.getOperand(1).getOpcode() == ISD::SUB &&
1660 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001661 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1662 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001663
Dan Gohman613e0d82007-07-03 14:03:57 +00001664 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001665 if (N0.getOpcode() == ISD::UNDEF)
1666 return N0;
1667 if (N1.getOpcode() == ISD::UNDEF)
1668 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001669
Dan Gohman6520e202008-10-18 02:06:02 +00001670 // If the relocation model supports it, consider symbol offsets.
1671 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001672 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001673 // fold (sub Sym, c) -> Sym-c
1674 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001675 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001676 GA->getOffset() -
1677 (uint64_t)N1C->getSExtValue());
1678 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1679 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1680 if (GA->getGlobal() == GB->getGlobal())
1681 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1682 VT);
1683 }
1684
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001685 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001686}
1687
Craig Toppercc274522012-01-07 09:06:39 +00001688SDValue DAGCombiner::visitSUBC(SDNode *N) {
1689 SDValue N0 = N->getOperand(0);
1690 SDValue N1 = N->getOperand(1);
1691 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1692 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1693 EVT VT = N0.getValueType();
1694
1695 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001696 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001697 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1698 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1699 MVT::Glue));
1700
1701 // fold (subc x, x) -> 0 + no borrow
1702 if (N0 == N1)
1703 return CombineTo(N, DAG.getConstant(0, VT),
1704 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1705 MVT::Glue));
1706
1707 // fold (subc x, 0) -> x + no borrow
1708 if (N1C && N1C->isNullValue())
1709 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1710 MVT::Glue));
1711
1712 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1713 if (N0C && N0C->isAllOnesValue())
1714 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1715 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1716 MVT::Glue));
1717
1718 return SDValue();
1719}
1720
1721SDValue DAGCombiner::visitSUBE(SDNode *N) {
1722 SDValue N0 = N->getOperand(0);
1723 SDValue N1 = N->getOperand(1);
1724 SDValue CarryIn = N->getOperand(2);
1725
1726 // fold (sube x, y, false) -> (subc x, y)
1727 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1728 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1729
1730 return SDValue();
1731}
1732
Dan Gohman475871a2008-07-27 21:46:04 +00001733SDValue DAGCombiner::visitMUL(SDNode *N) {
1734 SDValue N0 = N->getOperand(0);
1735 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001736 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1737 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001738 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001739
Dan Gohman7f321562007-06-25 16:23:39 +00001740 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001741 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001742 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001743 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001744 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001745
Dan Gohman613e0d82007-07-03 14:03:57 +00001746 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001747 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001748 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001749 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001750 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001751 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001752 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001753 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001754 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001755 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001756 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001757 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001758 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001759 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001760 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1761 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001762 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001763 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001764 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001765 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001766 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001767 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001768 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1769 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001770 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001771 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001772 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1773 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001774 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001775 DAG.getConstant(Log2Val,
1776 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001777 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001778 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001779 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001780 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001781 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1782 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001783 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001784 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1785 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001786 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001787
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001788 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1789 // use.
1790 {
Dan Gohman475871a2008-07-27 21:46:04 +00001791 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001792 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1793 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001794 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001795 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001796 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001797 isa<ConstantSDNode>(N1.getOperand(1)) &&
1798 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001799 Sh = N1; Y = N0;
1800 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001801
Gabor Greifba36cb52008-08-28 21:40:38 +00001802 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001803 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1804 Sh.getOperand(0), Y);
1805 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1806 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001807 }
1808 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001809
Chris Lattnera1deca32006-03-04 23:33:26 +00001810 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001811 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001812 isa<ConstantSDNode>(N0.getOperand(1)))
1813 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1814 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1815 N0.getOperand(0), N1),
1816 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1817 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001818
Nate Begemancd4d58c2006-02-03 06:46:56 +00001819 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001820 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001821 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001822 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001823
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001824 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001825}
1826
Dan Gohman475871a2008-07-27 21:46:04 +00001827SDValue DAGCombiner::visitSDIV(SDNode *N) {
1828 SDValue N0 = N->getOperand(0);
1829 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001830 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1831 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001832 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001833
Dan Gohman7f321562007-06-25 16:23:39 +00001834 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001835 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001836 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001837 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001838 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001839
Nate Begeman1d4d4142005-09-01 00:19:25 +00001840 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001841 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001842 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001843 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001844 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001845 return N0;
1846 // fold (sdiv X, -1) -> 0-X
1847 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001848 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1849 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001850 // If we know the sign bits of both operands are zero, strength reduce to a
1851 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001852 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001853 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001854 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1855 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001856 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001857 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001858 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001859 (N1C->getAPIntValue().isPowerOf2() ||
1860 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001861 // If dividing by powers of two is cheap, then don't perform the following
1862 // fold.
1863 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001864 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001865
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001866 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001867
Chris Lattner8f4880b2006-02-16 08:02:36 +00001868 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001869 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1870 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001871 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001872 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001873
Chris Lattner8f4880b2006-02-16 08:02:36 +00001874 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001875 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1876 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001877 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001878 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001879 AddToWorkList(SRL.getNode());
1880 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001881 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001882 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001883
Nate Begeman405e3ec2005-10-21 00:02:42 +00001884 // If we're dividing by a positive value, we're done. Otherwise, we must
1885 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001886 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001887 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001888
Gabor Greifba36cb52008-08-28 21:40:38 +00001889 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001890 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1891 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001892 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001893
Nate Begeman69575232005-10-20 02:15:44 +00001894 // if integer divide is expensive and we satisfy the requirements, emit an
1895 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001896 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001897 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001898 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001899 }
Dan Gohman7f321562007-06-25 16:23:39 +00001900
Dan Gohman613e0d82007-07-03 14:03:57 +00001901 // undef / X -> 0
1902 if (N0.getOpcode() == ISD::UNDEF)
1903 return DAG.getConstant(0, VT);
1904 // X / undef -> undef
1905 if (N1.getOpcode() == ISD::UNDEF)
1906 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001907
Dan Gohman475871a2008-07-27 21:46:04 +00001908 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001909}
1910
Dan Gohman475871a2008-07-27 21:46:04 +00001911SDValue DAGCombiner::visitUDIV(SDNode *N) {
1912 SDValue N0 = N->getOperand(0);
1913 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001914 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1915 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001916 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001917
Dan Gohman7f321562007-06-25 16:23:39 +00001918 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001919 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001920 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001921 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001922 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001923
Nate Begeman1d4d4142005-09-01 00:19:25 +00001924 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001925 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001926 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001927 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001928 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001929 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001930 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001931 getShiftAmountTy(N0.getValueType())));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001932 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1933 if (N1.getOpcode() == ISD::SHL) {
1934 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001935 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001936 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001937 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1938 N1.getOperand(1),
1939 DAG.getConstant(SHC->getAPIntValue()
1940 .logBase2(),
1941 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001942 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001943 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001944 }
1945 }
1946 }
Nate Begeman69575232005-10-20 02:15:44 +00001947 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001948 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001949 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001950 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001951 }
Dan Gohman7f321562007-06-25 16:23:39 +00001952
Dan Gohman613e0d82007-07-03 14:03:57 +00001953 // undef / X -> 0
1954 if (N0.getOpcode() == ISD::UNDEF)
1955 return DAG.getConstant(0, VT);
1956 // X / undef -> undef
1957 if (N1.getOpcode() == ISD::UNDEF)
1958 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001959
Dan Gohman475871a2008-07-27 21:46:04 +00001960 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001961}
1962
Dan Gohman475871a2008-07-27 21:46:04 +00001963SDValue DAGCombiner::visitSREM(SDNode *N) {
1964 SDValue N0 = N->getOperand(0);
1965 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001966 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1967 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001968 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001969
Nate Begeman1d4d4142005-09-01 00:19:25 +00001970 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001971 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001972 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001973 // If we know the sign bits of both operands are zero, strength reduce to a
1974 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001975 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001976 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001977 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00001978 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001979
Dan Gohman77003042007-11-26 23:46:11 +00001980 // If X/C can be simplified by the division-by-constant logic, lower
1981 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001982 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001983 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001984 AddToWorkList(Div.getNode());
1985 SDValue OptimizedDiv = combine(Div.getNode());
1986 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001987 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1988 OptimizedDiv, N1);
1989 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00001990 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00001991 return Sub;
1992 }
Chris Lattner26d29902006-10-12 20:58:32 +00001993 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001994
Dan Gohman613e0d82007-07-03 14:03:57 +00001995 // undef % X -> 0
1996 if (N0.getOpcode() == ISD::UNDEF)
1997 return DAG.getConstant(0, VT);
1998 // X % undef -> undef
1999 if (N1.getOpcode() == ISD::UNDEF)
2000 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002001
Dan Gohman475871a2008-07-27 21:46:04 +00002002 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002003}
2004
Dan Gohman475871a2008-07-27 21:46:04 +00002005SDValue DAGCombiner::visitUREM(SDNode *N) {
2006 SDValue N0 = N->getOperand(0);
2007 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002008 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2009 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002010 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002011
Nate Begeman1d4d4142005-09-01 00:19:25 +00002012 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002013 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002014 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002015 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002016 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002017 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002018 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002019 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2020 if (N1.getOpcode() == ISD::SHL) {
2021 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002022 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002023 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002024 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002025 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002026 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002027 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002028 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002029 }
2030 }
2031 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002032
Dan Gohman77003042007-11-26 23:46:11 +00002033 // If X/C can be simplified by the division-by-constant logic, lower
2034 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002035 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002036 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002037 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002038 SDValue OptimizedDiv = combine(Div.getNode());
2039 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002040 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2041 OptimizedDiv, N1);
2042 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002043 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002044 return Sub;
2045 }
Chris Lattner26d29902006-10-12 20:58:32 +00002046 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002047
Dan Gohman613e0d82007-07-03 14:03:57 +00002048 // undef % X -> 0
2049 if (N0.getOpcode() == ISD::UNDEF)
2050 return DAG.getConstant(0, VT);
2051 // X % undef -> undef
2052 if (N1.getOpcode() == ISD::UNDEF)
2053 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002054
Dan Gohman475871a2008-07-27 21:46:04 +00002055 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002056}
2057
Dan Gohman475871a2008-07-27 21:46:04 +00002058SDValue DAGCombiner::visitMULHS(SDNode *N) {
2059 SDValue N0 = N->getOperand(0);
2060 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002061 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002062 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002063 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002064
Nate Begeman1d4d4142005-09-01 00:19:25 +00002065 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002066 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002067 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002068 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002069 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002070 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2071 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002072 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002073 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002074 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002075 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002076
Chris Lattnerde1c3602010-12-13 08:39:01 +00002077 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2078 // plus a shift.
2079 if (VT.isSimple() && !VT.isVector()) {
2080 MVT Simple = VT.getSimpleVT();
2081 unsigned SimpleSize = Simple.getSizeInBits();
2082 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2083 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2084 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2085 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2086 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002087 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002088 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002089 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2090 }
2091 }
Owen Anderson95771af2011-02-25 21:41:48 +00002092
Dan Gohman475871a2008-07-27 21:46:04 +00002093 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002094}
2095
Dan Gohman475871a2008-07-27 21:46:04 +00002096SDValue DAGCombiner::visitMULHU(SDNode *N) {
2097 SDValue N0 = N->getOperand(0);
2098 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002099 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002100 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002101 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002102
Nate Begeman1d4d4142005-09-01 00:19:25 +00002103 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002104 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002105 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002106 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002107 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002108 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002109 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002110 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002111 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002112
Chris Lattnerde1c3602010-12-13 08:39:01 +00002113 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2114 // plus a shift.
2115 if (VT.isSimple() && !VT.isVector()) {
2116 MVT Simple = VT.getSimpleVT();
2117 unsigned SimpleSize = Simple.getSizeInBits();
2118 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2119 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2120 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2121 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2122 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2123 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002124 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002125 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2126 }
2127 }
Owen Anderson95771af2011-02-25 21:41:48 +00002128
Dan Gohman475871a2008-07-27 21:46:04 +00002129 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002130}
2131
Dan Gohman389079b2007-10-08 17:57:15 +00002132/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2133/// compute two values. LoOp and HiOp give the opcodes for the two computations
2134/// that are being performed. Return true if a simplification was made.
2135///
Scott Michelfdc40a02009-02-17 22:15:04 +00002136SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002137 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002138 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002139 bool HiExists = N->hasAnyUseOfValue(1);
2140 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002141 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002142 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002143 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2144 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002145 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002146 }
2147
2148 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002149 bool LoExists = N->hasAnyUseOfValue(0);
2150 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002151 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002152 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002153 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2154 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002155 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002156 }
2157
Evan Cheng44711942007-11-08 09:25:29 +00002158 // If both halves are used, return as it is.
2159 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002160 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002161
2162 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002163 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002164 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2165 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002166 AddToWorkList(Lo.getNode());
2167 SDValue LoOpt = combine(Lo.getNode());
2168 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002169 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002170 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002171 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002172 }
2173
Evan Cheng44711942007-11-08 09:25:29 +00002174 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002175 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002176 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002177 AddToWorkList(Hi.getNode());
2178 SDValue HiOpt = combine(Hi.getNode());
2179 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002180 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002181 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002182 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002183 }
Bill Wendling826d1142009-01-30 03:08:40 +00002184
Dan Gohman475871a2008-07-27 21:46:04 +00002185 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002186}
2187
Dan Gohman475871a2008-07-27 21:46:04 +00002188SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2189 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002190 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002191
Chris Lattner33e77d32010-12-15 06:04:19 +00002192 EVT VT = N->getValueType(0);
2193 DebugLoc DL = N->getDebugLoc();
2194
2195 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2196 // plus a shift.
2197 if (VT.isSimple() && !VT.isVector()) {
2198 MVT Simple = VT.getSimpleVT();
2199 unsigned SimpleSize = Simple.getSizeInBits();
2200 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2201 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2202 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2203 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2204 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2205 // Compute the high part as N1.
2206 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002207 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002208 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2209 // Compute the low part as N0.
2210 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2211 return CombineTo(N, Lo, Hi);
2212 }
2213 }
Owen Anderson95771af2011-02-25 21:41:48 +00002214
Dan Gohman475871a2008-07-27 21:46:04 +00002215 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002216}
2217
Dan Gohman475871a2008-07-27 21:46:04 +00002218SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2219 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002220 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002221
Chris Lattner33e77d32010-12-15 06:04:19 +00002222 EVT VT = N->getValueType(0);
2223 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002224
Chris Lattner33e77d32010-12-15 06:04:19 +00002225 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2226 // plus a shift.
2227 if (VT.isSimple() && !VT.isVector()) {
2228 MVT Simple = VT.getSimpleVT();
2229 unsigned SimpleSize = Simple.getSizeInBits();
2230 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2231 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2232 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2233 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2234 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2235 // Compute the high part as N1.
2236 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002237 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002238 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2239 // Compute the low part as N0.
2240 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2241 return CombineTo(N, Lo, Hi);
2242 }
2243 }
Owen Anderson95771af2011-02-25 21:41:48 +00002244
Dan Gohman475871a2008-07-27 21:46:04 +00002245 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002246}
2247
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002248SDValue DAGCombiner::visitSMULO(SDNode *N) {
2249 // (smulo x, 2) -> (saddo x, x)
2250 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2251 if (C2->getAPIntValue() == 2)
2252 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2253 N->getOperand(0), N->getOperand(0));
2254
2255 return SDValue();
2256}
2257
2258SDValue DAGCombiner::visitUMULO(SDNode *N) {
2259 // (umulo x, 2) -> (uaddo x, x)
2260 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2261 if (C2->getAPIntValue() == 2)
2262 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2263 N->getOperand(0), N->getOperand(0));
2264
2265 return SDValue();
2266}
2267
Dan Gohman475871a2008-07-27 21:46:04 +00002268SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2269 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002270 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002271
Dan Gohman475871a2008-07-27 21:46:04 +00002272 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002273}
2274
Dan Gohman475871a2008-07-27 21:46:04 +00002275SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2276 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002277 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002278
Dan Gohman475871a2008-07-27 21:46:04 +00002279 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002280}
2281
Chris Lattner35e5c142006-05-05 05:51:50 +00002282/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2283/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002284SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2285 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002286 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002287 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002288
Dan Gohmanff00a552010-01-14 03:08:49 +00002289 // Bail early if none of these transforms apply.
2290 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2291
Chris Lattner540121f2006-05-05 06:31:05 +00002292 // For each of OP in AND/OR/XOR:
2293 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2294 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2295 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002296 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002297 //
2298 // do not sink logical op inside of a vector extend, since it may combine
2299 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002300 EVT Op0VT = N0.getOperand(0).getValueType();
2301 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002302 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002303 // Avoid infinite looping with PromoteIntBinOp.
2304 (N0.getOpcode() == ISD::ANY_EXTEND &&
2305 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002306 (N0.getOpcode() == ISD::TRUNCATE &&
2307 (!TLI.isZExtFree(VT, Op0VT) ||
2308 !TLI.isTruncateFree(Op0VT, VT)) &&
2309 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002310 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002311 Op0VT == N1.getOperand(0).getValueType() &&
2312 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002313 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2314 N0.getOperand(0).getValueType(),
2315 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002316 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002317 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002318 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002319
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002320 // For each of OP in SHL/SRL/SRA/AND...
2321 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2322 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2323 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002324 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002325 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002326 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002327 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2328 N0.getOperand(0).getValueType(),
2329 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002330 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002331 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2332 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002333 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002334
Nadav Rotem4ac90812012-04-01 19:31:22 +00002335 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2336 // Only perform this optimization after type legalization and before
2337 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2338 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2339 // we don't want to undo this promotion.
2340 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2341 // on scalars.
2342 if ((N0.getOpcode() == ISD::BITCAST || N0.getOpcode() == ISD::SCALAR_TO_VECTOR)
Nadav Rotem2dd83eb2012-07-10 13:25:08 +00002343 && Level == AfterLegalizeTypes) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002344 SDValue In0 = N0.getOperand(0);
2345 SDValue In1 = N1.getOperand(0);
2346 EVT In0Ty = In0.getValueType();
2347 EVT In1Ty = In1.getValueType();
2348 // If both incoming values are integers, and the original types are the same.
2349 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
2350 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), In0Ty, In0, In1);
2351 SDValue BC = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, Op);
2352 AddToWorkList(Op.getNode());
2353 return BC;
2354 }
2355 }
2356
2357 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2358 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2359 // If both shuffles use the same mask, and both shuffle within a single
2360 // vector, then it is worthwhile to move the swizzle after the operation.
2361 // The type-legalizer generates this pattern when loading illegal
2362 // vector types from memory. In many cases this allows additional shuffle
2363 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002364 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2365 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2366 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002367 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2368 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002369
2370 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2371 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002372
2373 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002374
2375 // Check that both shuffles use the same mask. The masks are known to be of
2376 // the same length because the result vector type is the same.
2377 bool SameMask = true;
2378 for (unsigned i = 0; i != NumElts; ++i) {
2379 int Idx0 = SVN0->getMaskElt(i);
2380 int Idx1 = SVN1->getMaskElt(i);
2381 if (Idx0 != Idx1) {
2382 SameMask = false;
2383 break;
2384 }
2385 }
2386
Craig Topperf9204232012-04-09 07:19:09 +00002387 if (SameMask) {
2388 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT,
2389 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002390 AddToWorkList(Op.getNode());
Craig Topperf9204232012-04-09 07:19:09 +00002391 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op,
2392 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002393 }
2394 }
Craig Topperf9204232012-04-09 07:19:09 +00002395
Dan Gohman475871a2008-07-27 21:46:04 +00002396 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002397}
2398
Dan Gohman475871a2008-07-27 21:46:04 +00002399SDValue DAGCombiner::visitAND(SDNode *N) {
2400 SDValue N0 = N->getOperand(0);
2401 SDValue N1 = N->getOperand(1);
2402 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002403 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2404 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002405 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002406 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002407
Dan Gohman7f321562007-06-25 16:23:39 +00002408 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002409 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002410 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002411 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002412 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002413
Dan Gohman613e0d82007-07-03 14:03:57 +00002414 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002415 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002416 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002417 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002418 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002419 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002420 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002421 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002422 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002423 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002424 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002425 return N0;
2426 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002427 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002428 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002429 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002430 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002431 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002432 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002433 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002434 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002435 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002436 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002437 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002438 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002439 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2440 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002441 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002442 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002443 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002444 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002445 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2446 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002447
Chris Lattner1ec05d12006-03-01 21:47:21 +00002448 // Replace uses of the AND with uses of the Zero extend node.
2449 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002450
Chris Lattner3603cd62006-02-02 07:17:31 +00002451 // We actually want to replace all uses of the any_extend with the
2452 // zero_extend, to avoid duplicating things. This will later cause this
2453 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002454 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002455 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002456 }
2457 }
James Molloy6259dcd2012-02-20 12:02:38 +00002458 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2459 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2460 // already be zero by virtue of the width of the base type of the load.
2461 //
2462 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2463 // more cases.
2464 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2465 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2466 N0.getOpcode() == ISD::LOAD) {
2467 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2468 N0 : N0.getOperand(0) );
2469
2470 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2471 // This can be a pure constant or a vector splat, in which case we treat the
2472 // vector as a scalar and use the splat value.
2473 APInt Constant = APInt::getNullValue(1);
2474 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2475 Constant = C->getAPIntValue();
2476 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2477 APInt SplatValue, SplatUndef;
2478 unsigned SplatBitSize;
2479 bool HasAnyUndefs;
2480 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2481 SplatBitSize, HasAnyUndefs);
2482 if (IsSplat) {
2483 // Undef bits can contribute to a possible optimisation if set, so
2484 // set them.
2485 SplatValue |= SplatUndef;
2486
2487 // The splat value may be something like "0x00FFFFFF", which means 0 for
2488 // the first vector value and FF for the rest, repeating. We need a mask
2489 // that will apply equally to all members of the vector, so AND all the
2490 // lanes of the constant together.
2491 EVT VT = Vector->getValueType(0);
2492 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
2493 Constant = APInt::getAllOnesValue(BitWidth);
2494 for (unsigned i = 0, n = VT.getVectorNumElements(); i < n; ++i)
2495 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2496 }
2497 }
2498
2499 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2500 // actually legal and isn't going to get expanded, else this is a false
2501 // optimisation.
2502 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2503 Load->getMemoryVT());
2504
2505 // Resize the constant to the same size as the original memory access before
2506 // extension. If it is still the AllOnesValue then this AND is completely
2507 // unneeded.
2508 Constant =
2509 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2510
2511 bool B;
2512 switch (Load->getExtensionType()) {
2513 default: B = false; break;
2514 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2515 case ISD::ZEXTLOAD:
2516 case ISD::NON_EXTLOAD: B = true; break;
2517 }
2518
2519 if (B && Constant.isAllOnesValue()) {
2520 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2521 // preserve semantics once we get rid of the AND.
2522 SDValue NewLoad(Load, 0);
2523 if (Load->getExtensionType() == ISD::EXTLOAD) {
2524 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2525 Load->getValueType(0), Load->getDebugLoc(),
2526 Load->getChain(), Load->getBasePtr(),
2527 Load->getOffset(), Load->getMemoryVT(),
2528 Load->getMemOperand());
2529 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
Hal Finkeld65e4632012-06-20 15:42:48 +00002530 if (Load->getNumValues() == 3) {
2531 // PRE/POST_INC loads have 3 values.
2532 SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1),
2533 NewLoad.getValue(2) };
2534 CombineTo(Load, To, 3, true);
2535 } else {
2536 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2537 }
James Molloy6259dcd2012-02-20 12:02:38 +00002538 }
2539
2540 // Fold the AND away, taking care not to fold to the old load node if we
2541 // replaced it.
2542 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2543
2544 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2545 }
2546 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002547 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2548 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2549 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2550 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002551
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002552 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002553 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002554 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002555 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002556 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2557 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002558 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002559 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002560 }
Bill Wendling2627a882009-01-30 20:43:18 +00002561 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002562 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002563 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2564 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002565 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002566 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002567 }
Bill Wendling2627a882009-01-30 20:43:18 +00002568 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002569 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002570 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2571 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002572 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002573 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002574 }
2575 }
2576 // canonicalize equivalent to ll == rl
2577 if (LL == RR && LR == RL) {
2578 Op1 = ISD::getSetCCSwappedOperands(Op1);
2579 std::swap(RL, RR);
2580 }
2581 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002582 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002583 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002584 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002585 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002586 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2587 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002588 }
2589 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002590
Bill Wendling2627a882009-01-30 20:43:18 +00002591 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002592 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002593 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002594 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002595 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002596
Nate Begemande996292006-02-03 22:24:05 +00002597 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2598 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002599 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002600 SimplifyDemandedBits(SDValue(N, 0)))
2601 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002602
Nate Begemanded49632005-10-13 03:11:28 +00002603 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002604 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002605 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002606 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002607 // If we zero all the possible extended bits, then we can turn this into
2608 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002609 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002610 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002611 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002612 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002613 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002614 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002615 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002616 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002617 LN0->isVolatile(), LN0->isNonTemporal(),
2618 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002619 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002620 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002621 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002622 }
2623 }
2624 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002625 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002626 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002627 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002628 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002629 // If we zero all the possible extended bits, then we can turn this into
2630 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002631 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002632 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002633 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002634 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002635 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002636 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002637 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002638 LN0->getBasePtr(), LN0->getPointerInfo(),
2639 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002640 LN0->isVolatile(), LN0->isNonTemporal(),
2641 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002642 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002643 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002644 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002645 }
2646 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002647
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002648 // fold (and (load x), 255) -> (zextload x, i8)
2649 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002650 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2651 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2652 (N0.getOpcode() == ISD::ANY_EXTEND &&
2653 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2654 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2655 LoadSDNode *LN0 = HasAnyExt
2656 ? cast<LoadSDNode>(N0.getOperand(0))
2657 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002658 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002659 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002660 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002661 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2662 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2663 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002664
Evan Chengd40d03e2010-01-06 19:38:29 +00002665 if (ExtVT == LoadedVT &&
2666 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002667 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002668
2669 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002670 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002671 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002672 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002673 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2674 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002675 AddToWorkList(N);
2676 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2677 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2678 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002679
Chris Lattneref7634c2010-01-07 21:53:27 +00002680 // Do not change the width of a volatile load.
2681 // Do not generate loads of non-round integer types since these can
2682 // be expensive (and would be wrong if the type is not byte sized).
2683 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2684 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2685 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002686
Chris Lattneref7634c2010-01-07 21:53:27 +00002687 unsigned Alignment = LN0->getAlignment();
2688 SDValue NewPtr = LN0->getBasePtr();
2689
2690 // For big endian targets, we need to add an offset to the pointer
2691 // to load the correct bytes. For little endian systems, we merely
2692 // need to read fewer bytes from the same pointer.
2693 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002694 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2695 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2696 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002697 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2698 NewPtr, DAG.getConstant(PtrOff, PtrType));
2699 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002700 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002701
2702 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002703
Chris Lattneref7634c2010-01-07 21:53:27 +00002704 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2705 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002706 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002707 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002708 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002709 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2710 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002711 AddToWorkList(N);
2712 CombineTo(LN0, Load, Load.getValue(1));
2713 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002714 }
Evan Cheng466685d2006-10-09 20:57:25 +00002715 }
Chris Lattner15045b62006-02-28 06:35:35 +00002716 }
2717 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002718
Evan Chenga9e13ba2012-07-17 18:54:11 +00002719 if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
2720 VT.getSizeInBits() <= 64) {
2721 if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2722 APInt ADDC = ADDI->getAPIntValue();
2723 if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2724 // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal
2725 // immediate for an add, but it is legal if its top c2 bits are set,
2726 // transform the ADD so the immediate doesn't need to be materialized
2727 // in a register.
2728 if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
2729 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
2730 SRLI->getZExtValue());
2731 if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) {
2732 ADDC |= Mask;
2733 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2734 SDValue NewAdd =
2735 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
2736 N0.getOperand(0), DAG.getConstant(ADDC, VT));
2737 CombineTo(N0.getNode(), NewAdd);
2738 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2739 }
2740 }
2741 }
2742 }
2743 }
2744 }
2745
2746
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002747 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002748}
2749
Evan Cheng9568e5c2011-06-21 06:01:08 +00002750/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2751///
2752SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2753 bool DemandHighBits) {
2754 if (!LegalOperations)
2755 return SDValue();
2756
2757 EVT VT = N->getValueType(0);
2758 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2759 return SDValue();
2760 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2761 return SDValue();
2762
2763 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2764 bool LookPassAnd0 = false;
2765 bool LookPassAnd1 = false;
2766 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2767 std::swap(N0, N1);
2768 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2769 std::swap(N0, N1);
2770 if (N0.getOpcode() == ISD::AND) {
2771 if (!N0.getNode()->hasOneUse())
2772 return SDValue();
2773 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2774 if (!N01C || N01C->getZExtValue() != 0xFF00)
2775 return SDValue();
2776 N0 = N0.getOperand(0);
2777 LookPassAnd0 = true;
2778 }
2779
2780 if (N1.getOpcode() == ISD::AND) {
2781 if (!N1.getNode()->hasOneUse())
2782 return SDValue();
2783 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2784 if (!N11C || N11C->getZExtValue() != 0xFF)
2785 return SDValue();
2786 N1 = N1.getOperand(0);
2787 LookPassAnd1 = true;
2788 }
2789
2790 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2791 std::swap(N0, N1);
2792 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2793 return SDValue();
2794 if (!N0.getNode()->hasOneUse() ||
2795 !N1.getNode()->hasOneUse())
2796 return SDValue();
2797
2798 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2799 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2800 if (!N01C || !N11C)
2801 return SDValue();
2802 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2803 return SDValue();
2804
2805 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2806 SDValue N00 = N0->getOperand(0);
2807 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2808 if (!N00.getNode()->hasOneUse())
2809 return SDValue();
2810 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2811 if (!N001C || N001C->getZExtValue() != 0xFF)
2812 return SDValue();
2813 N00 = N00.getOperand(0);
2814 LookPassAnd0 = true;
2815 }
2816
2817 SDValue N10 = N1->getOperand(0);
2818 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2819 if (!N10.getNode()->hasOneUse())
2820 return SDValue();
2821 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2822 if (!N101C || N101C->getZExtValue() != 0xFF00)
2823 return SDValue();
2824 N10 = N10.getOperand(0);
2825 LookPassAnd1 = true;
2826 }
2827
2828 if (N00 != N10)
2829 return SDValue();
2830
2831 // Make sure everything beyond the low halfword is zero since the SRL 16
2832 // will clear the top bits.
2833 unsigned OpSizeInBits = VT.getSizeInBits();
2834 if (DemandHighBits && OpSizeInBits > 16 &&
2835 (!LookPassAnd0 || !LookPassAnd1) &&
2836 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2837 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002838
Evan Cheng9568e5c2011-06-21 06:01:08 +00002839 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2840 if (OpSizeInBits > 16)
2841 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2842 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2843 return Res;
2844}
2845
2846/// isBSwapHWordElement - Return true if the specified node is an element
2847/// that makes up a 32-bit packed halfword byteswap. i.e.
2848/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2849static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2850 if (!N.getNode()->hasOneUse())
2851 return false;
2852
2853 unsigned Opc = N.getOpcode();
2854 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2855 return false;
2856
2857 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2858 if (!N1C)
2859 return false;
2860
2861 unsigned Num;
2862 switch (N1C->getZExtValue()) {
2863 default:
2864 return false;
2865 case 0xFF: Num = 0; break;
2866 case 0xFF00: Num = 1; break;
2867 case 0xFF0000: Num = 2; break;
2868 case 0xFF000000: Num = 3; break;
2869 }
2870
2871 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2872 SDValue N0 = N.getOperand(0);
2873 if (Opc == ISD::AND) {
2874 if (Num == 0 || Num == 2) {
2875 // (x >> 8) & 0xff
2876 // (x >> 8) & 0xff0000
2877 if (N0.getOpcode() != ISD::SRL)
2878 return false;
2879 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2880 if (!C || C->getZExtValue() != 8)
2881 return false;
2882 } else {
2883 // (x << 8) & 0xff00
2884 // (x << 8) & 0xff000000
2885 if (N0.getOpcode() != ISD::SHL)
2886 return false;
2887 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2888 if (!C || C->getZExtValue() != 8)
2889 return false;
2890 }
2891 } else if (Opc == ISD::SHL) {
2892 // (x & 0xff) << 8
2893 // (x & 0xff0000) << 8
2894 if (Num != 0 && Num != 2)
2895 return false;
2896 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2897 if (!C || C->getZExtValue() != 8)
2898 return false;
2899 } else { // Opc == ISD::SRL
2900 // (x & 0xff00) >> 8
2901 // (x & 0xff000000) >> 8
2902 if (Num != 1 && Num != 3)
2903 return false;
2904 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2905 if (!C || C->getZExtValue() != 8)
2906 return false;
2907 }
2908
2909 if (Parts[Num])
2910 return false;
2911
2912 Parts[Num] = N0.getOperand(0).getNode();
2913 return true;
2914}
2915
2916/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2917/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2918/// => (rotl (bswap x), 16)
2919SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2920 if (!LegalOperations)
2921 return SDValue();
2922
2923 EVT VT = N->getValueType(0);
2924 if (VT != MVT::i32)
2925 return SDValue();
2926 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2927 return SDValue();
2928
2929 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2930 // Look for either
2931 // (or (or (and), (and)), (or (and), (and)))
2932 // (or (or (or (and), (and)), (and)), (and))
2933 if (N0.getOpcode() != ISD::OR)
2934 return SDValue();
2935 SDValue N00 = N0.getOperand(0);
2936 SDValue N01 = N0.getOperand(1);
2937
2938 if (N1.getOpcode() == ISD::OR) {
2939 // (or (or (and), (and)), (or (and), (and)))
2940 SDValue N000 = N00.getOperand(0);
2941 if (!isBSwapHWordElement(N000, Parts))
2942 return SDValue();
2943
2944 SDValue N001 = N00.getOperand(1);
2945 if (!isBSwapHWordElement(N001, Parts))
2946 return SDValue();
2947 SDValue N010 = N01.getOperand(0);
2948 if (!isBSwapHWordElement(N010, Parts))
2949 return SDValue();
2950 SDValue N011 = N01.getOperand(1);
2951 if (!isBSwapHWordElement(N011, Parts))
2952 return SDValue();
2953 } else {
2954 // (or (or (or (and), (and)), (and)), (and))
2955 if (!isBSwapHWordElement(N1, Parts))
2956 return SDValue();
2957 if (!isBSwapHWordElement(N01, Parts))
2958 return SDValue();
2959 if (N00.getOpcode() != ISD::OR)
2960 return SDValue();
2961 SDValue N000 = N00.getOperand(0);
2962 if (!isBSwapHWordElement(N000, Parts))
2963 return SDValue();
2964 SDValue N001 = N00.getOperand(1);
2965 if (!isBSwapHWordElement(N001, Parts))
2966 return SDValue();
2967 }
2968
2969 // Make sure the parts are all coming from the same node.
2970 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2971 return SDValue();
2972
2973 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
2974 SDValue(Parts[0],0));
2975
2976 // Result of the bswap should be rotated by 16. If it's not legal, than
2977 // do (x << 16) | (x >> 16).
2978 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
2979 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
2980 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
2981 else if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
2982 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
2983 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
2984 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
2985 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
2986}
2987
Dan Gohman475871a2008-07-27 21:46:04 +00002988SDValue DAGCombiner::visitOR(SDNode *N) {
2989 SDValue N0 = N->getOperand(0);
2990 SDValue N1 = N->getOperand(1);
2991 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002992 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2993 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002994 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002995
Dan Gohman7f321562007-06-25 16:23:39 +00002996 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002997 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002998 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002999 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003000 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003001
Dan Gohman613e0d82007-07-03 14:03:57 +00003002 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00003003 if (!LegalOperations &&
3004 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00003005 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
3006 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
3007 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003008 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003009 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003010 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003011 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003012 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00003013 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003014 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003015 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003016 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003017 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003018 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003019 return N1;
3020 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003021 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003022 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00003023
3024 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
3025 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
3026 if (BSwap.getNode() != 0)
3027 return BSwap;
3028 BSwap = MatchBSwapHWordLow(N, N0, N1);
3029 if (BSwap.getNode() != 0)
3030 return BSwap;
3031
Nate Begemancd4d58c2006-02-03 06:46:56 +00003032 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00003033 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003034 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003035 return ROR;
3036 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003037 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003038 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003039 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003040 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003041 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003042 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
3043 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3044 N0.getOperand(0), N1),
3045 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003046 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003047 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3048 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3049 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3050 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003051
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003052 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003053 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003054 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3055 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003056 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003057 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003058 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
3059 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003060 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003061 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003062 }
Bill Wendling09025642009-01-30 20:59:34 +00003063 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3064 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003065 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003066 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003067 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
3068 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003069 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003070 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003071 }
3072 }
3073 // canonicalize equivalent to ll == rl
3074 if (LL == RR && LR == RL) {
3075 Op1 = ISD::getSetCCSwappedOperands(Op1);
3076 std::swap(RL, RR);
3077 }
3078 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003079 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003080 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003081 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00003082 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00003083 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
3084 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003085 }
3086 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003087
Bill Wendling09025642009-01-30 20:59:34 +00003088 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003089 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003090 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003091 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003092 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003093
Bill Wendling09025642009-01-30 20:59:34 +00003094 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003095 if (N0.getOpcode() == ISD::AND &&
3096 N1.getOpcode() == ISD::AND &&
3097 N0.getOperand(1).getOpcode() == ISD::Constant &&
3098 N1.getOperand(1).getOpcode() == ISD::Constant &&
3099 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003100 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003101 // We can only do this xform if we know that bits from X that are set in C2
3102 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003103 const APInt &LHSMask =
3104 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3105 const APInt &RHSMask =
3106 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003107
Dan Gohmanea859be2007-06-22 14:59:07 +00003108 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3109 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003110 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3111 N0.getOperand(0), N1.getOperand(0));
3112 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3113 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003114 }
3115 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003116
Chris Lattner516b9622006-09-14 20:50:57 +00003117 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003118 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003119 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003120
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003121 // Simplify the operands using demanded-bits information.
3122 if (!VT.isVector() &&
3123 SimplifyDemandedBits(SDValue(N, 0)))
3124 return SDValue(N, 0);
3125
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003126 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003127}
3128
Chris Lattner516b9622006-09-14 20:50:57 +00003129/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003130static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003131 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003132 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003133 Mask = Op.getOperand(1);
3134 Op = Op.getOperand(0);
3135 } else {
3136 return false;
3137 }
3138 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003139
Chris Lattner516b9622006-09-14 20:50:57 +00003140 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3141 Shift = Op;
3142 return true;
3143 }
Bill Wendling09025642009-01-30 20:59:34 +00003144
Scott Michelfdc40a02009-02-17 22:15:04 +00003145 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003146}
3147
Chris Lattner516b9622006-09-14 20:50:57 +00003148// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3149// idioms for rotate, and if the target supports rotation instructions, generate
3150// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003151SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003152 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003153 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003154 if (!TLI.isTypeLegal(VT)) return 0;
3155
3156 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003157 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3158 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003159 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003160
Chris Lattner516b9622006-09-14 20:50:57 +00003161 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003162 SDValue LHSShift; // The shift.
3163 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003164 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3165 return 0; // Not part of a rotate.
3166
Dan Gohman475871a2008-07-27 21:46:04 +00003167 SDValue RHSShift; // The shift.
3168 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003169 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3170 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003171
Chris Lattner516b9622006-09-14 20:50:57 +00003172 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3173 return 0; // Not shifting the same value.
3174
3175 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3176 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003177
Chris Lattner516b9622006-09-14 20:50:57 +00003178 // Canonicalize shl to left side in a shl/srl pair.
3179 if (RHSShift.getOpcode() == ISD::SHL) {
3180 std::swap(LHS, RHS);
3181 std::swap(LHSShift, RHSShift);
3182 std::swap(LHSMask , RHSMask );
3183 }
3184
Duncan Sands83ec4b62008-06-06 12:08:01 +00003185 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003186 SDValue LHSShiftArg = LHSShift.getOperand(0);
3187 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3188 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003189
3190 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3191 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003192 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3193 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003194 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3195 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003196 if ((LShVal + RShVal) != OpSizeInBits)
3197 return 0;
3198
Dan Gohman475871a2008-07-27 21:46:04 +00003199 SDValue Rot;
Chris Lattner516b9622006-09-14 20:50:57 +00003200 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003201 Rot = DAG.getNode(ISD::ROTL, DL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00003202 else
Bill Wendling317bd702009-01-30 21:14:50 +00003203 Rot = DAG.getNode(ISD::ROTR, DL, VT, LHSShiftArg, RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003204
Chris Lattner516b9622006-09-14 20:50:57 +00003205 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003206 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003207 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003208
Gabor Greifba36cb52008-08-28 21:40:38 +00003209 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003210 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3211 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003212 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003213 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003214 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3215 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003216 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003217
Bill Wendling317bd702009-01-30 21:14:50 +00003218 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003219 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003220
Gabor Greifba36cb52008-08-28 21:40:38 +00003221 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003222 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003223
Chris Lattner516b9622006-09-14 20:50:57 +00003224 // If there is a mask here, and we have a variable shift, we can't be sure
3225 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003226 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003227 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003228
Chris Lattner516b9622006-09-14 20:50:57 +00003229 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3230 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003231 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3232 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003233 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003234 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003235 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00003236 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003237 return DAG.getNode(ISD::ROTL, DL, VT,
3238 LHSShiftArg, LHSShiftAmt).getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003239 else
Bill Wendling317bd702009-01-30 21:14:50 +00003240 return DAG.getNode(ISD::ROTR, DL, VT,
3241 LHSShiftArg, RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003242 }
Chris Lattner516b9622006-09-14 20:50:57 +00003243 }
3244 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003245
Chris Lattner516b9622006-09-14 20:50:57 +00003246 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3247 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003248 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3249 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003250 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003251 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003252 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling2692d592008-08-31 01:13:31 +00003253 if (HasROTR)
Bill Wendling317bd702009-01-30 21:14:50 +00003254 return DAG.getNode(ISD::ROTR, DL, VT,
3255 LHSShiftArg, RHSShiftAmt).getNode();
Bill Wendling2692d592008-08-31 01:13:31 +00003256 else
Bill Wendling317bd702009-01-30 21:14:50 +00003257 return DAG.getNode(ISD::ROTL, DL, VT,
3258 LHSShiftArg, LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003259 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003260 }
3261 }
3262
Dan Gohman74feef22008-10-17 01:23:35 +00003263 // Look for sign/zext/any-extended or truncate cases:
Scott Michelc9dc1142007-04-02 21:36:32 +00003264 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3265 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003266 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3267 || LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
Scott Michelc9dc1142007-04-02 21:36:32 +00003268 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3269 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003270 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3271 || RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003272 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3273 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003274 if (RExtOp0.getOpcode() == ISD::SUB &&
3275 RExtOp0.getOperand(1) == LExtOp0) {
3276 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003277 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003278 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003279 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003280 if (ConstantSDNode *SUBC =
3281 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003282 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003283 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3284 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003285 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003286 }
3287 }
3288 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3289 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003290 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003291 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003292 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003293 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003294 if (ConstantSDNode *SUBC =
3295 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003296 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003297 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3298 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003299 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003300 }
3301 }
Chris Lattner516b9622006-09-14 20:50:57 +00003302 }
3303 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003304
Chris Lattner516b9622006-09-14 20:50:57 +00003305 return 0;
3306}
3307
Dan Gohman475871a2008-07-27 21:46:04 +00003308SDValue DAGCombiner::visitXOR(SDNode *N) {
3309 SDValue N0 = N->getOperand(0);
3310 SDValue N1 = N->getOperand(1);
3311 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003312 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3313 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003314 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003315
Dan Gohman7f321562007-06-25 16:23:39 +00003316 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003317 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003318 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003319 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003320 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003321
Evan Cheng26471c42008-03-25 20:08:07 +00003322 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3323 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3324 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003325 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003326 if (N0.getOpcode() == ISD::UNDEF)
3327 return N0;
3328 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003329 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003330 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003331 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003332 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003333 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003334 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003335 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003336 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003337 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003338 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003339 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003340 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003341 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003342 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003343
Nate Begeman1d4d4142005-09-01 00:19:25 +00003344 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003345 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003346 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003347 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3348 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003349
Duncan Sands25cf2272008-11-24 14:53:14 +00003350 if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003351 switch (N0.getOpcode()) {
3352 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003353 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003354 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003355 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003356 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003357 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003358 N0.getOperand(3), NotCC);
3359 }
3360 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003361 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003362
Chris Lattner61c5ff42007-09-10 21:39:07 +00003363 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003364 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003365 N0.getNode()->hasOneUse() &&
3366 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003367 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003368 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003369 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003370 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003371 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003372 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003373
Bill Wendling317bd702009-01-30 21:14:50 +00003374 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003375 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003376 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003377 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003378 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3379 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003380 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3381 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003382 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003383 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003384 }
3385 }
Bill Wendling317bd702009-01-30 21:14:50 +00003386 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003387 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003388 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003389 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003390 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3391 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003392 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3393 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003394 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003395 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003396 }
3397 }
Bill Wendling317bd702009-01-30 21:14:50 +00003398 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003399 if (N1C && N0.getOpcode() == ISD::XOR) {
3400 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3401 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3402 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003403 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3404 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003405 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003406 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003407 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3408 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003409 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003410 }
3411 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003412 if (N0 == N1)
3413 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003414
Chris Lattner35e5c142006-05-05 05:51:50 +00003415 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3416 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003417 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003418 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003419 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003420
Chris Lattner3e104b12006-04-08 04:15:24 +00003421 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003422 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003423 SimplifyDemandedBits(SDValue(N, 0)))
3424 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003425
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003426 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003427}
3428
Chris Lattnere70da202007-12-06 07:33:36 +00003429/// visitShiftByConstant - Handle transforms common to the three shifts, when
3430/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003431SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003432 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003433 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003434
Chris Lattnere70da202007-12-06 07:33:36 +00003435 // We want to pull some binops through shifts, so that we have (and (shift))
3436 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3437 // thing happens with address calculations, so it's important to canonicalize
3438 // it.
3439 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003440
Chris Lattnere70da202007-12-06 07:33:36 +00003441 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003442 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003443 case ISD::OR:
3444 case ISD::XOR:
3445 HighBitSet = false; // We can only transform sra if the high bit is clear.
3446 break;
3447 case ISD::AND:
3448 HighBitSet = true; // We can only transform sra if the high bit is set.
3449 break;
3450 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003451 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003452 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003453 HighBitSet = false; // We can only transform sra if the high bit is clear.
3454 break;
3455 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003456
Chris Lattnere70da202007-12-06 07:33:36 +00003457 // We require the RHS of the binop to be a constant as well.
3458 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003459 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003460
3461 // FIXME: disable this unless the input to the binop is a shift by a constant.
3462 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003463 //
Bill Wendling88103372009-01-30 21:37:17 +00003464 // void foo(int *X, int i) { X[i & 1235] = 1; }
3465 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003466 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003467 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003468 BinOpLHSVal->getOpcode() != ISD::SRA &&
3469 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3470 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003471 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003472
Owen Andersone50ed302009-08-10 22:56:29 +00003473 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003474
Bill Wendling88103372009-01-30 21:37:17 +00003475 // If this is a signed shift right, and the high bit is modified by the
3476 // logical operation, do not perform the transformation. The highBitSet
3477 // boolean indicates the value of the high bit of the constant which would
3478 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003479 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003480 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3481 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003482 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003483 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003484
Chris Lattnere70da202007-12-06 07:33:36 +00003485 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003486 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3487 N->getValueType(0),
3488 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003489
3490 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003491 SDValue NewShift = DAG.getNode(N->getOpcode(),
3492 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003493 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003494
3495 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003496 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003497}
3498
Dan Gohman475871a2008-07-27 21:46:04 +00003499SDValue DAGCombiner::visitSHL(SDNode *N) {
3500 SDValue N0 = N->getOperand(0);
3501 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003502 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3503 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003504 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003505 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003506
Nate Begeman1d4d4142005-09-01 00:19:25 +00003507 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003508 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003509 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003510 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003511 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003512 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003513 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003514 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003515 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003516 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003517 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003518 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003519 // fold (shl undef, x) -> 0
3520 if (N0.getOpcode() == ISD::UNDEF)
3521 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003522 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003523 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003524 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003525 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003526 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003527 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003528 N1.getOperand(0).getOpcode() == ISD::AND &&
3529 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003530 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003531 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003532 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003533 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003534 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003535 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003536 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003537 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3538 DAG.getNode(ISD::TRUNCATE,
3539 N->getDebugLoc(),
3540 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003541 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003542 }
3543 }
3544
Dan Gohman475871a2008-07-27 21:46:04 +00003545 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3546 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003547
3548 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003549 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003550 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003551 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3552 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003553 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003554 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003555 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003556 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003557 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003558
3559 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3560 // For this to be valid, the second form must not preserve any of the bits
3561 // that are shifted out by the inner shift in the first form. This means
3562 // the outer shift size must be >= the number of bits added by the ext.
3563 // As a corollary, we don't care what kind of ext it is.
3564 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3565 N0.getOpcode() == ISD::ANY_EXTEND ||
3566 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3567 N0.getOperand(0).getOpcode() == ISD::SHL &&
3568 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003569 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003570 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3571 uint64_t c2 = N1C->getZExtValue();
3572 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3573 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3574 if (c2 >= OpSizeInBits - InnerShiftSize) {
3575 if (c1 + c2 >= OpSizeInBits)
3576 return DAG.getConstant(0, VT);
3577 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3578 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3579 N0.getOperand(0)->getOperand(0)),
3580 DAG.getConstant(c1 + c2, N1.getValueType()));
3581 }
3582 }
3583
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003584 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3585 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003586 // Only fold this if the inner shift has no other uses -- if it does, folding
3587 // this will increase the total number of instructions.
3588 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003589 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003590 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003591 if (c1 < VT.getSizeInBits()) {
3592 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003593 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3594 VT.getSizeInBits() - c1);
3595 SDValue Shift;
3596 if (c2 > c1) {
3597 Mask = Mask.shl(c2-c1);
3598 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3599 DAG.getConstant(c2-c1, N1.getValueType()));
3600 } else {
3601 Mask = Mask.lshr(c1-c2);
3602 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3603 DAG.getConstant(c1-c2, N1.getValueType()));
3604 }
3605 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3606 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003607 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003608 }
Bill Wendling88103372009-01-30 21:37:17 +00003609 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003610 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3611 SDValue HiBitsMask =
3612 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3613 VT.getSizeInBits() -
3614 N1C->getZExtValue()),
3615 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003616 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003617 HiBitsMask);
3618 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003619
Evan Chenge5b51ac2010-04-17 06:13:15 +00003620 if (N1C) {
3621 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3622 if (NewSHL.getNode())
3623 return NewSHL;
3624 }
3625
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003626 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003627}
3628
Dan Gohman475871a2008-07-27 21:46:04 +00003629SDValue DAGCombiner::visitSRA(SDNode *N) {
3630 SDValue N0 = N->getOperand(0);
3631 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003632 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3633 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003634 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003635 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003636
Bill Wendling88103372009-01-30 21:37:17 +00003637 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003638 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003639 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003640 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003641 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003642 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003643 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003644 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003645 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003646 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003647 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003648 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003649 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003650 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003651 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003652 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3653 // sext_inreg.
3654 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003655 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003656 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3657 if (VT.isVector())
3658 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3659 ExtVT, VT.getVectorNumElements());
3660 if ((!LegalOperations ||
3661 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003662 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003663 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003664 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003665
Bill Wendling88103372009-01-30 21:37:17 +00003666 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003667 if (N1C && N0.getOpcode() == ISD::SRA) {
3668 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003669 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003670 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003671 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003672 DAG.getConstant(Sum, N1C->getValueType(0)));
3673 }
3674 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003675
Bill Wendling88103372009-01-30 21:37:17 +00003676 // fold (sra (shl X, m), (sub result_size, n))
3677 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003678 // result_size - n != m.
3679 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003680 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003681 if (N0.getOpcode() == ISD::SHL) {
3682 // Get the two constanst of the shifts, CN0 = m, CN = n.
3683 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3684 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003685 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003686 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003687 EVT::getIntegerVT(*DAG.getContext(),
3688 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003689 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003690 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003691
Scott Michelfdc40a02009-02-17 22:15:04 +00003692 // If the shift is not a no-op (in which case this should be just a sign
3693 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003694 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003695 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003696 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003697 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3698 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003699 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003700
Owen Anderson95771af2011-02-25 21:41:48 +00003701 SDValue Amt = DAG.getConstant(ShiftAmt,
3702 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003703 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3704 N0.getOperand(0), Amt);
3705 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3706 Shift);
3707 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3708 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003709 }
3710 }
3711 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003712
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003713 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003714 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003715 N1.getOperand(0).getOpcode() == ISD::AND &&
3716 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003717 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003718 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003719 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003720 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003721 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003722 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003723 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003724 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003725 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003726 DAG.getNode(ISD::TRUNCATE,
3727 N->getDebugLoc(),
3728 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003729 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003730 }
3731 }
3732
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003733 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3734 // if c1 is equal to the number of bits the trunc removes
3735 if (N0.getOpcode() == ISD::TRUNCATE &&
3736 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3737 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3738 N0.getOperand(0).hasOneUse() &&
3739 N0.getOperand(0).getOperand(1).hasOneUse() &&
3740 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3741 EVT LargeVT = N0.getOperand(0).getValueType();
3742 ConstantSDNode *LargeShiftAmt =
3743 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3744
3745 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3746 LargeShiftAmt->getZExtValue()) {
3747 SDValue Amt =
3748 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003749 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003750 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3751 N0.getOperand(0).getOperand(0), Amt);
3752 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3753 }
3754 }
3755
Scott Michelfdc40a02009-02-17 22:15:04 +00003756 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003757 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3758 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003759
3760
Nate Begeman1d4d4142005-09-01 00:19:25 +00003761 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003762 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003763 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003764
Evan Chenge5b51ac2010-04-17 06:13:15 +00003765 if (N1C) {
3766 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3767 if (NewSRA.getNode())
3768 return NewSRA;
3769 }
3770
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003771 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003772}
3773
Dan Gohman475871a2008-07-27 21:46:04 +00003774SDValue DAGCombiner::visitSRL(SDNode *N) {
3775 SDValue N0 = N->getOperand(0);
3776 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003777 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3778 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003779 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003780 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003781
Nate Begeman1d4d4142005-09-01 00:19:25 +00003782 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003783 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003784 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003785 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003786 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003787 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003788 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003789 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003790 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003791 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003792 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003793 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003794 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003795 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003796 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003797 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003798
Bill Wendling88103372009-01-30 21:37:17 +00003799 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003800 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003801 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003802 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3803 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003804 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003805 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003806 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003807 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003808 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003809
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003810 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003811 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3812 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003813 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003814 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003815 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3816 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003817 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3818 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003819 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003820 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003821 if (c1 + OpSizeInBits == InnerShiftSize) {
3822 if (c1 + c2 >= InnerShiftSize)
3823 return DAG.getConstant(0, VT);
3824 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003825 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003826 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003827 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003828 }
3829 }
3830
Chris Lattnerefcddc32010-04-15 05:28:43 +00003831 // fold (srl (shl x, c), c) -> (and x, cst2)
3832 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3833 N0.getValueSizeInBits() <= 64) {
3834 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3835 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3836 DAG.getConstant(~0ULL >> ShAmt, VT));
3837 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003838
Scott Michelfdc40a02009-02-17 22:15:04 +00003839
Chris Lattner06afe072006-05-05 22:53:17 +00003840 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3841 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3842 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003843 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003844 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003845 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003846
Evan Chenge5b51ac2010-04-17 06:13:15 +00003847 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003848 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003849 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003850 N0.getOperand(0),
3851 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003852 AddToWorkList(SmallShift.getNode());
3853 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3854 }
Chris Lattner06afe072006-05-05 22:53:17 +00003855 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003856
Chris Lattner3657ffe2006-10-12 20:23:19 +00003857 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3858 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003859 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003860 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003861 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003862 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003863
Chris Lattner350bec02006-04-02 06:11:11 +00003864 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003865 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003866 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003867 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003868 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003869
Chris Lattner350bec02006-04-02 06:11:11 +00003870 // If any of the input bits are KnownOne, then the input couldn't be all
3871 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003872 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003873
Chris Lattner350bec02006-04-02 06:11:11 +00003874 // If all of the bits input the to ctlz node are known to be zero, then
3875 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003876 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00003877 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003878
Chris Lattner350bec02006-04-02 06:11:11 +00003879 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003880 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003881 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003882 // could be set on input to the CTLZ node. If this bit is set, the SRL
3883 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3884 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003885 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003886 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003887
Chris Lattner350bec02006-04-02 06:11:11 +00003888 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003889 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003890 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003891 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003892 }
Bill Wendling88103372009-01-30 21:37:17 +00003893
3894 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3895 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003896 }
3897 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003898
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003899 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003900 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003901 N1.getOperand(0).getOpcode() == ISD::AND &&
3902 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003903 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003904 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003905 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003906 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003907 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003908 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003909 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003910 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003911 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003912 DAG.getNode(ISD::TRUNCATE,
3913 N->getDebugLoc(),
3914 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003915 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003916 }
3917 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003918
Chris Lattner61a4c072007-04-18 03:06:49 +00003919 // fold operands of srl based on knowledge that the low bits are not
3920 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003921 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3922 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003923
Evan Cheng9ab2b982009-12-18 21:31:31 +00003924 if (N1C) {
3925 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3926 if (NewSRL.getNode())
3927 return NewSRL;
3928 }
3929
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003930 // Attempt to convert a srl of a load into a narrower zero-extending load.
3931 SDValue NarrowLoad = ReduceLoadWidth(N);
3932 if (NarrowLoad.getNode())
3933 return NarrowLoad;
3934
Evan Cheng9ab2b982009-12-18 21:31:31 +00003935 // Here is a common situation. We want to optimize:
3936 //
3937 // %a = ...
3938 // %b = and i32 %a, 2
3939 // %c = srl i32 %b, 1
3940 // brcond i32 %c ...
3941 //
3942 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003943 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00003944 // %a = ...
3945 // %b = and %a, 2
3946 // %c = setcc eq %b, 0
3947 // brcond %c ...
3948 //
3949 // However when after the source operand of SRL is optimized into AND, the SRL
3950 // itself may not be optimized further. Look for it and add the BRCOND into
3951 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00003952 if (N->hasOneUse()) {
3953 SDNode *Use = *N->use_begin();
3954 if (Use->getOpcode() == ISD::BRCOND)
3955 AddToWorkList(Use);
3956 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3957 // Also look pass the truncate.
3958 Use = *Use->use_begin();
3959 if (Use->getOpcode() == ISD::BRCOND)
3960 AddToWorkList(Use);
3961 }
3962 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00003963
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003964 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00003965}
3966
Dan Gohman475871a2008-07-27 21:46:04 +00003967SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3968 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003969 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003970
3971 // fold (ctlz 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::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003974 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003975}
3976
Chandler Carruth63974b22011-12-13 01:56:10 +00003977SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
3978 SDValue N0 = N->getOperand(0);
3979 EVT VT = N->getValueType(0);
3980
3981 // fold (ctlz_zero_undef c1) -> c2
3982 if (isa<ConstantSDNode>(N0))
3983 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3984 return SDValue();
3985}
3986
Dan Gohman475871a2008-07-27 21:46:04 +00003987SDValue DAGCombiner::visitCTTZ(SDNode *N) {
3988 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003989 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003990
Nate Begeman1d4d4142005-09-01 00:19:25 +00003991 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003992 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003993 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003994 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003995}
3996
Chandler Carruth63974b22011-12-13 01:56:10 +00003997SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
3998 SDValue N0 = N->getOperand(0);
3999 EVT VT = N->getValueType(0);
4000
4001 // fold (cttz_zero_undef c1) -> c2
4002 if (isa<ConstantSDNode>(N0))
4003 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
4004 return SDValue();
4005}
4006
Dan Gohman475871a2008-07-27 21:46:04 +00004007SDValue DAGCombiner::visitCTPOP(SDNode *N) {
4008 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004009 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004010
Nate Begeman1d4d4142005-09-01 00:19:25 +00004011 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004012 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004013 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004014 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004015}
4016
Dan Gohman475871a2008-07-27 21:46:04 +00004017SDValue DAGCombiner::visitSELECT(SDNode *N) {
4018 SDValue N0 = N->getOperand(0);
4019 SDValue N1 = N->getOperand(1);
4020 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004021 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4022 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4023 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00004024 EVT VT = N->getValueType(0);
4025 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00004026
Bill Wendling34584e62009-01-30 22:02:18 +00004027 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004028 if (N1 == N2)
4029 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004030 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004031 if (N0C && !N0C->isNullValue())
4032 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004033 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00004034 if (N0C && N0C->isNullValue())
4035 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004036 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004037 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00004038 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4039 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004040 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004041 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004042 (VT0.isInteger() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00004043 TLI.getBooleanContents(false) == TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004044 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004045 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004046 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00004047 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
4048 N0, DAG.getConstant(1, VT0));
4049 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
4050 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004051 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004052 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00004053 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
4054 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004055 }
Bill Wendling34584e62009-01-30 22:02:18 +00004056 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004057 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00004058 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004059 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004060 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004061 }
Bill Wendling34584e62009-01-30 22:02:18 +00004062 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004063 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004064 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004065 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004066 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004067 }
Bill Wendling34584e62009-01-30 22:02:18 +00004068 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004069 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00004070 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
4071 // fold (select X, X, Y) -> (or X, Y)
4072 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004073 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00004074 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4075 // fold (select X, Y, X) -> (and X, Y)
4076 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004077 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00004078 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004079
Chris Lattner40c62d52005-10-18 06:04:22 +00004080 // If we can fold this based on the true/false value, do so.
4081 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004082 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004083
Nate Begeman44728a72005-09-19 22:34:01 +00004084 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004085 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004086 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004087 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004088 // having to say they don't support SELECT_CC on every type the DAG knows
4089 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004090 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004091 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004092 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4093 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004094 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004095 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004096 }
Bill Wendling34584e62009-01-30 22:02:18 +00004097
Dan Gohman475871a2008-07-27 21:46:04 +00004098 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004099}
4100
Dan Gohman475871a2008-07-27 21:46:04 +00004101SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4102 SDValue N0 = N->getOperand(0);
4103 SDValue N1 = N->getOperand(1);
4104 SDValue N2 = N->getOperand(2);
4105 SDValue N3 = N->getOperand(3);
4106 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004107 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004108
Nate Begeman44728a72005-09-19 22:34:01 +00004109 // fold select_cc lhs, rhs, x, x, cc -> x
4110 if (N2 == N3)
4111 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004112
Chris Lattner5f42a242006-09-20 06:19:26 +00004113 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004114 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004115 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004116 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004117
Gabor Greifba36cb52008-08-28 21:40:38 +00004118 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004119 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004120 return N2; // cond always true -> true val
4121 else
4122 return N3; // cond always false -> false val
4123 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004124
Chris Lattner5f42a242006-09-20 06:19:26 +00004125 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004126 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004127 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4128 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004129 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004130
Chris Lattner40c62d52005-10-18 06:04:22 +00004131 // If we can fold this based on the true/false value, do so.
4132 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004133 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004134
Nate Begeman44728a72005-09-19 22:34:01 +00004135 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004136 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004137}
4138
Dan Gohman475871a2008-07-27 21:46:04 +00004139SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004140 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004141 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4142 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004143}
4144
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004145// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004146// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004147// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004148// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004149static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004150 unsigned ExtOpc,
4151 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004152 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004153 bool HasCopyToRegUses = false;
4154 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004155 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4156 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004157 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004158 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004159 if (User == N)
4160 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004161 if (UI.getUse().getResNo() != N0.getResNo())
4162 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004163 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004164 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004165 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4166 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4167 // Sign bits will be lost after a zext.
4168 return false;
4169 bool Add = false;
4170 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004171 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004172 if (UseOp == N0)
4173 continue;
4174 if (!isa<ConstantSDNode>(UseOp))
4175 return false;
4176 Add = true;
4177 }
4178 if (Add)
4179 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004180 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004181 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004182 // If truncates aren't free and there are users we can't
4183 // extend, it isn't worthwhile.
4184 if (!isTruncFree)
4185 return false;
4186 // Remember if this value is live-out.
4187 if (User->getOpcode() == ISD::CopyToReg)
4188 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004189 }
4190
4191 if (HasCopyToRegUses) {
4192 bool BothLiveOut = false;
4193 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4194 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004195 SDUse &Use = UI.getUse();
4196 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4197 BothLiveOut = true;
4198 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004199 }
4200 }
4201 if (BothLiveOut)
4202 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004203 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004204 return ExtendNodes.size();
4205 }
4206 return true;
4207}
4208
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004209void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4210 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4211 ISD::NodeType ExtType) {
4212 // Extend SetCC uses if necessary.
4213 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4214 SDNode *SetCC = SetCCs[i];
4215 SmallVector<SDValue, 4> Ops;
4216
4217 for (unsigned j = 0; j != 2; ++j) {
4218 SDValue SOp = SetCC->getOperand(j);
4219 if (SOp == Trunc)
4220 Ops.push_back(ExtLoad);
4221 else
4222 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4223 }
4224
4225 Ops.push_back(SetCC->getOperand(2));
4226 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4227 &Ops[0], Ops.size()));
4228 }
4229}
4230
Dan Gohman475871a2008-07-27 21:46:04 +00004231SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4232 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004233 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004234
Nate Begeman1d4d4142005-09-01 00:19:25 +00004235 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004236 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004237 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004238
Nate Begeman1d4d4142005-09-01 00:19:25 +00004239 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004240 // fold (sext (aext x)) -> (sext x)
4241 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004242 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4243 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004244
Chris Lattner22558872007-02-26 03:13:59 +00004245 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004246 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4247 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004248 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4249 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004250 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4251 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004252 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004253 // CombineTo deleted the truncate, if needed, but not what's under it.
4254 AddToWorkList(oye);
4255 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004256 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004257 }
Evan Chengc88138f2007-03-22 01:54:19 +00004258
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004259 // See if the value being truncated is already sign extended. If so, just
4260 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004261 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004262 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4263 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4264 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004265 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004266
Chris Lattner22558872007-02-26 03:13:59 +00004267 if (OpBits == DestBits) {
4268 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4269 // bits, it is already ready.
4270 if (NumSignBits > DestBits-MidBits)
4271 return Op;
4272 } else if (OpBits < DestBits) {
4273 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4274 // bits, just sext from i32.
4275 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004276 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004277 } else {
4278 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4279 // bits, just truncate to i32.
4280 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004281 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004282 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004283
Chris Lattner22558872007-02-26 03:13:59 +00004284 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004285 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4286 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004287 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004288 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004289 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004290 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4291 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004292 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004293 }
Chris Lattner6007b842006-09-21 06:00:20 +00004294 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004295
Evan Cheng110dec22005-12-14 02:19:23 +00004296 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004297 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004298 // on vectors in one instruction. We only perform this transformation on
4299 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004300 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004301 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004302 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004303 bool DoXform = true;
4304 SmallVector<SDNode*, 4> SetCCs;
4305 if (!N0.hasOneUse())
4306 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4307 if (DoXform) {
4308 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004309 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004310 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004311 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004312 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004313 LN0->isVolatile(), LN0->isNonTemporal(),
4314 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004315 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004316 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4317 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004318 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004319 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4320 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004321 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004322 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004323 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004324
4325 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4326 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004327 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4328 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004329 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004330 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004331 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004332 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004333 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004334 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004335 LN0->getBasePtr(), LN0->getPointerInfo(),
4336 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004337 LN0->isVolatile(), LN0->isNonTemporal(),
4338 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004339 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004340 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004341 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4342 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004343 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004344 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004345 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004346 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004347
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004348 // fold (sext (and/or/xor (load x), cst)) ->
4349 // (and/or/xor (sextload x), (sext cst))
4350 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4351 N0.getOpcode() == ISD::XOR) &&
4352 isa<LoadSDNode>(N0.getOperand(0)) &&
4353 N0.getOperand(1).getOpcode() == ISD::Constant &&
4354 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4355 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4356 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4357 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4358 bool DoXform = true;
4359 SmallVector<SDNode*, 4> SetCCs;
4360 if (!N0.hasOneUse())
4361 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4362 SetCCs, TLI);
4363 if (DoXform) {
4364 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4365 LN0->getChain(), LN0->getBasePtr(),
4366 LN0->getPointerInfo(),
4367 LN0->getMemoryVT(),
4368 LN0->isVolatile(),
4369 LN0->isNonTemporal(),
4370 LN0->getAlignment());
4371 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4372 Mask = Mask.sext(VT.getSizeInBits());
4373 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4374 ExtLoad, DAG.getConstant(Mask, VT));
4375 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4376 N0.getOperand(0).getDebugLoc(),
4377 N0.getOperand(0).getValueType(), ExtLoad);
4378 CombineTo(N, And);
4379 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4380 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4381 ISD::SIGN_EXTEND);
4382 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4383 }
4384 }
4385 }
4386
Chris Lattner20a35c32007-04-11 05:32:27 +00004387 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004388 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004389 // Only do this before legalize for now.
4390 if (VT.isVector() && !LegalOperations) {
4391 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004392 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4393 // of the same size as the compared operands. Only optimize sext(setcc())
4394 // if this is the case.
4395 EVT SVT = TLI.getSetCCResultType(N0VT);
4396
4397 // We know that the # elements of the results is the same as the
4398 // # elements of the compare (and the # elements of the compare result
4399 // for that matter). Check to see that they are the same size. If so,
4400 // we know that the element size of the sext'd result matches the
4401 // element size of the compare operands.
4402 if (VT.getSizeInBits() == SVT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004403 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004404 N0.getOperand(1),
4405 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004406 // If the desired elements are smaller or larger than the source
4407 // elements we can use a matching integer vector type and then
4408 // truncate/sign extend
4409 else {
Duncan Sands34727662010-07-12 08:16:59 +00004410 EVT MatchingElementType =
4411 EVT::getIntegerVT(*DAG.getContext(),
4412 N0VT.getScalarType().getSizeInBits());
4413 EVT MatchingVectorType =
4414 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4415 N0VT.getVectorNumElements());
Nadav Rotem2e506192012-04-11 08:26:11 +00004416
4417 if (SVT == MatchingVectorType) {
4418 SDValue VsetCC = DAG.getSetCC(N->getDebugLoc(), MatchingVectorType,
4419 N0.getOperand(0), N0.getOperand(1),
4420 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4421 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
4422 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004423 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004424 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004425
Chris Lattner2b7a2712009-07-08 00:31:33 +00004426 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004427 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004428 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004429 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004430 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004431 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004432 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004433 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004434 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004435 if (!LegalOperations ||
4436 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4437 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4438 DAG.getSetCC(N->getDebugLoc(),
4439 TLI.getSetCCResultType(VT),
4440 N0.getOperand(0), N0.getOperand(1),
4441 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4442 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004443 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004444
Dan Gohman8f0ad582008-04-28 16:58:24 +00004445 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004446 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004447 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004448 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004449
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004450 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004451}
4452
Rafael Espindoladecbc432012-04-09 16:06:03 +00004453// isTruncateOf - If N is a truncate of some other value, return true, record
4454// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4455// This function computes KnownZero to avoid a duplicated call to
4456// ComputeMaskedBits in the caller.
4457static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4458 APInt &KnownZero) {
4459 APInt KnownOne;
4460 if (N->getOpcode() == ISD::TRUNCATE) {
4461 Op = N->getOperand(0);
4462 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4463 return true;
4464 }
4465
4466 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4467 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4468 return false;
4469
4470 SDValue Op0 = N->getOperand(0);
4471 SDValue Op1 = N->getOperand(1);
4472 assert(Op0.getValueType() == Op1.getValueType());
4473
4474 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4475 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004476 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004477 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004478 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004479 Op = Op0;
4480 else
4481 return false;
4482
4483 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4484
4485 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4486 return false;
4487
4488 return true;
4489}
4490
Dan Gohman475871a2008-07-27 21:46:04 +00004491SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4492 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004493 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004494
Nate Begeman1d4d4142005-09-01 00:19:25 +00004495 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004496 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004497 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004498 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004499 // fold (zext (aext x)) -> (zext x)
4500 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004501 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4502 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004503
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004504 // fold (zext (truncate x)) -> (zext x) or
4505 // (zext (truncate x)) -> (truncate x)
4506 // This is valid when the truncated bits of x are already zero.
4507 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004508 SDValue Op;
4509 APInt KnownZero;
4510 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4511 APInt TruncatedBits =
4512 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4513 APInt(Op.getValueSizeInBits(), 0) :
4514 APInt::getBitsSet(Op.getValueSizeInBits(),
4515 N0.getValueSizeInBits(),
4516 std::min(Op.getValueSizeInBits(),
4517 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004518 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004519 if (VT.bitsGT(Op.getValueType()))
4520 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4521 if (VT.bitsLT(Op.getValueType()))
4522 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4523
4524 return Op;
4525 }
4526 }
4527
Evan Chengc88138f2007-03-22 01:54:19 +00004528 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4529 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004530 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004531 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4532 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004533 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4534 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004535 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004536 // CombineTo deleted the truncate, if needed, but not what's under it.
4537 AddToWorkList(oye);
4538 }
Eli Friedmane545d382011-04-16 23:25:34 +00004539 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004540 }
Evan Chengc88138f2007-03-22 01:54:19 +00004541 }
4542
Chris Lattner6007b842006-09-21 06:00:20 +00004543 // fold (zext (truncate x)) -> (and x, mask)
4544 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004545 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004546
4547 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4548 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4549 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4550 if (NarrowLoad.getNode()) {
4551 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4552 if (NarrowLoad.getNode() != N0.getNode()) {
4553 CombineTo(N0.getNode(), NarrowLoad);
4554 // CombineTo deleted the truncate, if needed, but not what's under it.
4555 AddToWorkList(oye);
4556 }
4557 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4558 }
4559
Dan Gohman475871a2008-07-27 21:46:04 +00004560 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004561 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004562 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004563 AddToWorkList(Op.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004564 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004565 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004566 AddToWorkList(Op.getNode());
Chris Lattner6007b842006-09-21 06:00:20 +00004567 }
Dan Gohman87862e72009-12-11 21:31:27 +00004568 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4569 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004570 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004571
Dan Gohman97121ba2009-04-08 00:15:30 +00004572 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4573 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004574 if (N0.getOpcode() == ISD::AND &&
4575 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004576 N0.getOperand(1).getOpcode() == ISD::Constant &&
4577 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4578 N0.getValueType()) ||
4579 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004580 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004581 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004582 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004583 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004584 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004585 }
Dan Gohman220a8232008-03-03 23:51:38 +00004586 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004587 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004588 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4589 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004590 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004591
Evan Cheng110dec22005-12-14 02:19:23 +00004592 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004593 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004594 // on vectors in one instruction. We only perform this transformation on
4595 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004596 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004597 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004598 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004599 bool DoXform = true;
4600 SmallVector<SDNode*, 4> SetCCs;
4601 if (!N0.hasOneUse())
4602 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4603 if (DoXform) {
4604 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004605 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004606 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004607 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004608 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004609 LN0->isVolatile(), LN0->isNonTemporal(),
4610 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004611 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004612 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4613 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004614 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004615
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004616 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4617 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004618 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004619 }
Evan Cheng110dec22005-12-14 02:19:23 +00004620 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004621
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004622 // fold (zext (and/or/xor (load x), cst)) ->
4623 // (and/or/xor (zextload x), (zext cst))
4624 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4625 N0.getOpcode() == ISD::XOR) &&
4626 isa<LoadSDNode>(N0.getOperand(0)) &&
4627 N0.getOperand(1).getOpcode() == ISD::Constant &&
4628 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4629 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4630 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4631 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4632 bool DoXform = true;
4633 SmallVector<SDNode*, 4> SetCCs;
4634 if (!N0.hasOneUse())
4635 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4636 SetCCs, TLI);
4637 if (DoXform) {
4638 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4639 LN0->getChain(), LN0->getBasePtr(),
4640 LN0->getPointerInfo(),
4641 LN0->getMemoryVT(),
4642 LN0->isVolatile(),
4643 LN0->isNonTemporal(),
4644 LN0->getAlignment());
4645 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4646 Mask = Mask.zext(VT.getSizeInBits());
4647 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4648 ExtLoad, DAG.getConstant(Mask, VT));
4649 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4650 N0.getOperand(0).getDebugLoc(),
4651 N0.getOperand(0).getValueType(), ExtLoad);
4652 CombineTo(N, And);
4653 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4654 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4655 ISD::ZERO_EXTEND);
4656 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4657 }
4658 }
4659 }
4660
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004661 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4662 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004663 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4664 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004665 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004666 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004667 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004668 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004669 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004670 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004671 LN0->getBasePtr(), LN0->getPointerInfo(),
4672 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004673 LN0->isVolatile(), LN0->isNonTemporal(),
4674 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004675 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004676 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004677 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4678 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004679 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004680 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004681 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004682 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004683
Chris Lattner20a35c32007-04-11 05:32:27 +00004684 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004685 if (!LegalOperations && VT.isVector()) {
4686 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4687 // Only do this before legalize for now.
4688 EVT N0VT = N0.getOperand(0).getValueType();
4689 EVT EltVT = VT.getVectorElementType();
4690 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4691 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004692 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004693 // We know that the # elements of the results is the same as the
4694 // # elements of the compare (and the # elements of the compare result
4695 // for that matter). Check to see that they are the same size. If so,
4696 // we know that the element size of the sext'd result matches the
4697 // element size of the compare operands.
4698 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004699 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004700 N0.getOperand(1),
4701 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4702 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4703 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004704
4705 // If the desired elements are smaller or larger than the source
4706 // elements we can use a matching integer vector type and then
4707 // truncate/sign extend
4708 EVT MatchingElementType =
4709 EVT::getIntegerVT(*DAG.getContext(),
4710 N0VT.getScalarType().getSizeInBits());
4711 EVT MatchingVectorType =
4712 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4713 N0VT.getVectorNumElements());
4714 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004715 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004716 N0.getOperand(1),
4717 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4718 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4719 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4720 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4721 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004722 }
4723
4724 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004725 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004726 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004727 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004728 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004729 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004730 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004731
Evan Cheng9818c042009-12-15 03:00:32 +00004732 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004733 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004734 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004735 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4736 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004737 SDValue ShAmt = N0.getOperand(1);
4738 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004739 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004740 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004741 // If the original shl may be shifting out bits, do not perform this
4742 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004743 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4744 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4745 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004746 return SDValue();
4747 }
Chris Lattnere0751182011-02-13 19:09:16 +00004748
4749 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004750
4751 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004752 if (VT.getSizeInBits() >= 256)
4753 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004754
Chris Lattnere0751182011-02-13 19:09:16 +00004755 return DAG.getNode(N0.getOpcode(), DL, VT,
4756 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4757 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004758 }
4759
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004760 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004761}
4762
Dan Gohman475871a2008-07-27 21:46:04 +00004763SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4764 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004765 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004766
Chris Lattner5ffc0662006-05-05 05:58:59 +00004767 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004768 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004769 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004770 // fold (aext (aext x)) -> (aext x)
4771 // fold (aext (zext x)) -> (zext x)
4772 // fold (aext (sext x)) -> (sext x)
4773 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4774 N0.getOpcode() == ISD::ZERO_EXTEND ||
4775 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004776 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004777
Evan Chengc88138f2007-03-22 01:54:19 +00004778 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4779 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4780 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004781 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4782 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004783 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4784 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004785 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004786 // CombineTo deleted the truncate, if needed, but not what's under it.
4787 AddToWorkList(oye);
4788 }
Eli Friedmane545d382011-04-16 23:25:34 +00004789 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004790 }
Evan Chengc88138f2007-03-22 01:54:19 +00004791 }
4792
Chris Lattner84750582006-09-20 06:29:17 +00004793 // fold (aext (truncate x))
4794 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004795 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004796 if (TruncOp.getValueType() == VT)
4797 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004798 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004799 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4800 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004801 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004802
Dan Gohman97121ba2009-04-08 00:15:30 +00004803 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4804 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004805 if (N0.getOpcode() == ISD::AND &&
4806 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004807 N0.getOperand(1).getOpcode() == ISD::Constant &&
4808 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4809 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004810 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004811 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004812 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004813 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004814 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004815 }
Dan Gohman220a8232008-03-03 23:51:38 +00004816 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004817 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004818 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4819 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004820 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004821
Chris Lattner5ffc0662006-05-05 05:58:59 +00004822 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004823 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004824 // on vectors in one instruction. We only perform this transformation on
4825 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004826 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004827 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004828 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004829 bool DoXform = true;
4830 SmallVector<SDNode*, 4> SetCCs;
4831 if (!N0.hasOneUse())
4832 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4833 if (DoXform) {
4834 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004835 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004836 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004837 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004838 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004839 LN0->isVolatile(), LN0->isNonTemporal(),
4840 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004841 CombineTo(N, ExtLoad);
4842 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4843 N0.getValueType(), ExtLoad);
4844 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004845 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4846 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004847 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4848 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004849 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004850
Chris Lattner5ffc0662006-05-05 05:58:59 +00004851 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4852 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4853 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004854 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004855 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004856 N0.hasOneUse()) {
4857 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004858 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004859 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4860 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004861 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004862 LN0->isVolatile(), LN0->isNonTemporal(),
4863 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004864 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004865 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004866 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4867 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004868 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004869 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004870 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004871
Chris Lattner20a35c32007-04-11 05:32:27 +00004872 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004873 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4874 // Only do this before legalize for now.
4875 if (VT.isVector() && !LegalOperations) {
4876 EVT N0VT = N0.getOperand(0).getValueType();
4877 // We know that the # elements of the results is the same as the
4878 // # elements of the compare (and the # elements of the compare result
4879 // for that matter). Check to see that they are the same size. If so,
4880 // we know that the element size of the sext'd result matches the
4881 // element size of the compare operands.
4882 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004883 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004884 N0.getOperand(1),
4885 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004886 // If the desired elements are smaller or larger than the source
4887 // elements we can use a matching integer vector type and then
4888 // truncate/sign extend
4889 else {
Duncan Sands34727662010-07-12 08:16:59 +00004890 EVT MatchingElementType =
4891 EVT::getIntegerVT(*DAG.getContext(),
4892 N0VT.getScalarType().getSizeInBits());
4893 EVT MatchingVectorType =
4894 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4895 N0VT.getVectorNumElements());
4896 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004897 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004898 N0.getOperand(1),
4899 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4900 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004901 }
4902 }
4903
4904 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004905 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004906 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004907 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004908 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004909 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004910 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004911 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004912
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004913 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004914}
4915
Chris Lattner2b4c2792007-10-13 06:35:54 +00004916/// GetDemandedBits - See if the specified operand can be simplified with the
4917/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004918/// simpler operand, otherwise return a null SDValue.
4919SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004920 switch (V.getOpcode()) {
4921 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004922 case ISD::Constant: {
4923 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4924 assert(CV != 0 && "Const value should be ConstSDNode.");
4925 const APInt &CVal = CV->getAPIntValue();
4926 APInt NewVal = CVal & Mask;
4927 if (NewVal != CVal) {
4928 return DAG.getConstant(NewVal, V.getValueType());
4929 }
4930 break;
4931 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004932 case ISD::OR:
4933 case ISD::XOR:
4934 // If the LHS or RHS don't contribute bits to the or, drop them.
4935 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4936 return V.getOperand(1);
4937 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4938 return V.getOperand(0);
4939 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004940 case ISD::SRL:
4941 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00004942 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00004943 break;
4944 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4945 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004946 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00004947
Dan Gohmancc91d632009-01-03 19:22:06 +00004948 // Watch out for shift count overflow though.
4949 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004950 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00004951 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00004952 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004953 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00004954 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00004955 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004956 }
Dan Gohman475871a2008-07-27 21:46:04 +00004957 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00004958}
4959
Evan Chengc88138f2007-03-22 01:54:19 +00004960/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4961/// bits and then truncated to a narrower type and where N is a multiple
4962/// of number of bits of the narrower type, transform it to a narrower load
4963/// from address + N / num of bits of new type. If the result is to be
4964/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00004965SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00004966 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004967
Evan Chengc88138f2007-03-22 01:54:19 +00004968 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00004969 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004970 EVT VT = N->getValueType(0);
4971 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00004972
Dan Gohman7f8613e2008-08-14 20:04:46 +00004973 // This transformation isn't valid for vector loads.
4974 if (VT.isVector())
4975 return SDValue();
4976
Dan Gohmand1996362010-01-09 02:13:55 +00004977 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00004978 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00004979 if (Opc == ISD::SIGN_EXTEND_INREG) {
4980 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00004981 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004982 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00004983 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004984 ExtType = ISD::ZEXTLOAD;
4985 N0 = SDValue(N, 0);
4986 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
4987 if (!N01) return SDValue();
4988 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
4989 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00004990 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00004991 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
4992 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004993
Owen Andersone50ed302009-08-10 22:56:29 +00004994 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00004995
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004996 // Do not generate loads of non-round integer types since these can
4997 // be expensive (and would be wrong if the type is not byte sized).
4998 if (!ExtVT.isRound())
4999 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005000
Evan Chengc88138f2007-03-22 01:54:19 +00005001 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005002 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00005003 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005004 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005005 // Is the shift amount a multiple of size of VT?
5006 if ((ShAmt & (EVTBits-1)) == 0) {
5007 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00005008 // Is the load width a multiple of size of VT?
5009 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005010 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005011 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005012
Chris Lattnercbf68df2010-12-22 08:02:57 +00005013 // At this point, we must have a load or else we can't do the transform.
5014 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005015
Chris Lattner2831a192010-10-01 05:36:09 +00005016 // If the shift amount is larger than the input type then we're not
5017 // accessing any of the loaded bytes. If the load was a zextload/extload
5018 // then the result of the shift+trunc is zero/undef (handled elsewhere).
5019 // If the load was a sextload then the result is a splat of the sign bit
5020 // of the extended byte. This is not worth optimizing for.
Chris Lattnercbf68df2010-12-22 08:02:57 +00005021 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00005022 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005023 }
5024 }
5025
Dan Gohman394d6292010-11-03 01:47:46 +00005026 // If the load is shifted left (and the result isn't shifted back right),
5027 // we can fold the truncate through the shift.
5028 unsigned ShLeftAmt = 0;
5029 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00005030 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00005031 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5032 ShLeftAmt = N01->getZExtValue();
5033 N0 = N0.getOperand(0);
5034 }
5035 }
Owen Anderson95771af2011-02-25 21:41:48 +00005036
Chris Lattner4c32bc22010-12-22 07:36:50 +00005037 // If we haven't found a load, we can't narrow it. Don't transform one with
5038 // multiple uses, this would require adding a new load.
5039 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
5040 // Don't change the width of a volatile load.
5041 cast<LoadSDNode>(N0)->isVolatile())
5042 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005043
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005044 // Verify that we are actually reducing a load width here.
5045 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005046 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005047
Chris Lattner4c32bc22010-12-22 07:36:50 +00005048 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5049 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005050
Evan Cheng16436df2012-06-26 01:19:33 +00005051 if (PtrType == MVT::Untyped || PtrType.isExtended())
5052 // It's not possible to generate a constant of extended or untyped type.
5053 return SDValue();
5054
Chris Lattner4c32bc22010-12-22 07:36:50 +00005055 // For big endian targets, we need to adjust the offset to the pointer to
5056 // load the correct bytes.
5057 if (TLI.isBigEndian()) {
5058 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5059 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5060 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005061 }
5062
Chris Lattner4c32bc22010-12-22 07:36:50 +00005063 uint64_t PtrOff = ShAmt / 8;
5064 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
5065 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
5066 PtrType, LN0->getBasePtr(),
5067 DAG.getConstant(PtrOff, PtrType));
5068 AddToWorkList(NewPtr.getNode());
5069
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005070 SDValue Load;
5071 if (ExtType == ISD::NON_EXTLOAD)
5072 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
5073 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005074 LN0->isVolatile(), LN0->isNonTemporal(),
5075 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005076 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00005077 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005078 LN0->getPointerInfo().getWithOffset(PtrOff),
5079 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5080 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005081
5082 // Replace the old load's chain with the new load's chain.
5083 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005084 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005085
5086 // Shift the result left, if we've swallowed a left shift.
5087 SDValue Result = Load;
5088 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005089 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005090 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5091 ShImmTy = VT;
5092 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
5093 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
5094 }
5095
5096 // Return the new loaded value.
5097 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005098}
5099
Dan Gohman475871a2008-07-27 21:46:04 +00005100SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5101 SDValue N0 = N->getOperand(0);
5102 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005103 EVT VT = N->getValueType(0);
5104 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005105 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005106 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005107
Nate Begeman1d4d4142005-09-01 00:19:25 +00005108 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005109 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00005110 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005111
Chris Lattner541a24f2006-05-06 22:43:44 +00005112 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005113 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005114 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005115
Nate Begeman646d7e22005-09-02 21:18:40 +00005116 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5117 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00005118 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00005119 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5120 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00005121 }
Chris Lattner4b37e872006-05-08 21:18:59 +00005122
Dan Gohman75dcf082008-07-31 00:50:31 +00005123 // fold (sext_in_reg (sext x)) -> (sext x)
5124 // fold (sext_in_reg (aext x)) -> (sext x)
5125 // if x is small enough.
5126 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5127 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005128 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5129 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00005130 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005131 }
5132
Chris Lattner95a5e052007-04-17 19:03:21 +00005133 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005134 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005135 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005136
Chris Lattner95a5e052007-04-17 19:03:21 +00005137 // fold operands of sext_in_reg based on knowledge that the top bits are not
5138 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005139 if (SimplifyDemandedBits(SDValue(N, 0)))
5140 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005141
Evan Chengc88138f2007-03-22 01:54:19 +00005142 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5143 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005144 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005145 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005146 return NarrowLoad;
5147
Bill Wendling8509c902009-01-30 22:33:24 +00005148 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
5149 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005150 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5151 if (N0.getOpcode() == ISD::SRL) {
5152 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005153 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Chris Lattner4b37e872006-05-08 21:18:59 +00005154 // We can turn this into an SRA iff the input to the SRL is already sign
5155 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005156 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005157 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005158 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5159 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005160 }
5161 }
Evan Chengc88138f2007-03-22 01:54:19 +00005162
Nate Begemanded49632005-10-13 03:11:28 +00005163 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005164 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005165 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005166 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005167 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005168 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005169 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005170 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005171 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005172 LN0->getBasePtr(), LN0->getPointerInfo(),
5173 EVT,
David Greene1e559442010-02-15 17:00:31 +00005174 LN0->isVolatile(), LN0->isNonTemporal(),
5175 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005176 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005177 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005178 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005179 }
5180 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005181 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005182 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005183 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005184 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005185 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005186 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005187 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005188 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005189 LN0->getBasePtr(), LN0->getPointerInfo(),
5190 EVT,
David Greene1e559442010-02-15 17:00:31 +00005191 LN0->isVolatile(), LN0->isNonTemporal(),
5192 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005193 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005194 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005195 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005196 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005197
5198 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5199 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5200 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5201 N0.getOperand(1), false);
5202 if (BSwap.getNode() != 0)
5203 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5204 BSwap, N1);
5205 }
5206
Dan Gohman475871a2008-07-27 21:46:04 +00005207 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005208}
5209
Dan Gohman475871a2008-07-27 21:46:04 +00005210SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5211 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005212 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005213 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005214
5215 // noop truncate
5216 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005217 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005218 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005219 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005220 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005221 // fold (truncate (truncate x)) -> (truncate x)
5222 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005223 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005224 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005225 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5226 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005227 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005228 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005229 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005230 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5231 N0.getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005232 else if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005233 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005234 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005235 else
5236 // if the source and dest are the same type, we can drop both the extend
Evan Chengd40d03e2010-01-06 19:38:29 +00005237 // and the truncate.
Nate Begeman83e75ec2005-09-06 04:43:02 +00005238 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005239 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005240
Nadav Rotemcc870a82012-02-05 11:39:23 +00005241 // Fold extract-and-trunc into a narrow extract. For example:
5242 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5243 // i32 y = TRUNCATE(i64 x)
5244 // -- becomes --
5245 // v16i8 b = BITCAST (v2i64 val)
5246 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5247 //
5248 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005249 // creates this pattern) and before operation legalization after which
5250 // we need to be more careful about the vector instructions that we generate.
5251 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5252 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5253
5254 EVT VecTy = N0.getOperand(0).getValueType();
5255 EVT ExTy = N0.getValueType();
5256 EVT TrTy = N->getValueType(0);
5257
5258 unsigned NumElem = VecTy.getVectorNumElements();
5259 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5260
5261 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5262 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5263
5264 SDValue EltNo = N0->getOperand(1);
5265 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5266 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005267 EVT IndexTy = N0->getOperand(1).getValueType();
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005268 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5269
5270 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5271 NVT, N0.getOperand(0));
5272
5273 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5274 N->getDebugLoc(), TrTy, V,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005275 DAG.getConstant(Index, IndexTy));
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005276 }
5277 }
5278
Chris Lattner2b4c2792007-10-13 06:35:54 +00005279 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005280 // only the low bits are being used.
5281 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005282 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005283 // may have different active low bits.
5284 if (!VT.isVector()) {
5285 SDValue Shorter =
5286 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5287 VT.getSizeInBits()));
5288 if (Shorter.getNode())
5289 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5290 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005291 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005292 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005293 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5294 SDValue Reduced = ReduceLoadWidth(N);
5295 if (Reduced.getNode())
5296 return Reduced;
5297 }
5298
5299 // Simplify the operands using demanded-bits information.
5300 if (!VT.isVector() &&
5301 SimplifyDemandedBits(SDValue(N, 0)))
5302 return SDValue(N, 0);
5303
Evan Chenge5b51ac2010-04-17 06:13:15 +00005304 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005305}
5306
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005307static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005308 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005309 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005310 return Elt.getNode();
5311 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005312}
5313
5314/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005315/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005316SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005317 assert(N->getOpcode() == ISD::BUILD_PAIR);
5318
Nate Begemanabc01992009-06-05 21:37:30 +00005319 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5320 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005321 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5322 LD1->getPointerInfo().getAddrSpace() !=
5323 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005324 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005325 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005326
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005327 if (ISD::isNON_EXTLoad(LD2) &&
5328 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005329 // If both are volatile this would reduce the number of volatile loads.
5330 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005331 !LD1->isVolatile() &&
5332 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005333 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005334 unsigned Align = LD1->getAlignment();
Dan Gohman6448d912008-09-04 15:39:15 +00005335 unsigned NewAlign = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005336 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005337
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005338 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005339 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005340 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005341 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005342 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005343 }
Bill Wendling67a67682009-01-30 22:44:24 +00005344
Dan Gohman475871a2008-07-27 21:46:04 +00005345 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005346}
5347
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005348SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005349 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005350 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005351
Dan Gohman7f321562007-06-25 16:23:39 +00005352 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5353 // Only do this before legalize, since afterward the target may be depending
5354 // on the bitconvert.
5355 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005356 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005357 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005358 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005359 bool isSimple = true;
5360 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5361 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5362 N0.getOperand(i).getOpcode() != ISD::Constant &&
5363 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005364 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005365 break;
5366 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005367
Owen Andersone50ed302009-08-10 22:56:29 +00005368 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005369 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005370 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005371 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005372 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005373 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005374
Dan Gohman3dd168d2008-09-05 01:58:21 +00005375 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005376 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005377 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005378 if (Res.getNode() != N) {
5379 if (!LegalOperations ||
5380 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5381 return Res;
5382
5383 // Folding it resulted in an illegal node, and it's too late to
5384 // do that. Clean up the old node and forego the transformation.
5385 // Ideally this won't happen very often, because instcombine
5386 // and the earlier dagcombine runs (where illegal nodes are
5387 // permitted) should have folded most of them already.
5388 DAG.DeleteNode(Res.getNode());
5389 }
Chris Lattner94683772005-12-23 05:30:37 +00005390 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005391
Bill Wendling67a67682009-01-30 22:44:24 +00005392 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005393 if (N0.getOpcode() == ISD::BITCAST)
5394 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005395 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005396
Chris Lattner57104102005-12-23 05:44:41 +00005397 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005398 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005399 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005400 // Do not change the width of a volatile load.
5401 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005402 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005403 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman6448d912008-09-04 15:39:15 +00005404 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005405 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005406 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005407
Evan Cheng59d5b682007-05-07 21:27:48 +00005408 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005409 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005410 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005411 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005412 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005413 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005414 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005415 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005416 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005417 Load.getValue(1));
5418 return Load;
5419 }
Chris Lattner57104102005-12-23 05:44:41 +00005420 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005421
Bill Wendling67a67682009-01-30 22:44:24 +00005422 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5423 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005424 // This often reduces constant pool loads.
Owen Anderson29f60f32012-04-02 22:10:29 +00005425 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) ||
5426 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005427 N0.getNode()->hasOneUse() && VT.isInteger() && !VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005428 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005429 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005430 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005431
Duncan Sands83ec4b62008-06-06 12:08:01 +00005432 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005433 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005434 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5435 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005436 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005437 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5438 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005439 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005440
Bill Wendling67a67682009-01-30 22:44:24 +00005441 // fold (bitconvert (fcopysign cst, x)) ->
5442 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5443 // Note that we don't handle (copysign x, cst) because this can always be
5444 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005445 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005446 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005447 VT.isInteger() && !VT.isVector()) {
5448 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005449 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005450 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005451 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005452 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005453 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005454
Duncan Sands25cf2272008-11-24 14:53:14 +00005455 // If X has a different width than the result/lhs, sext it or truncate it.
5456 unsigned VTWidth = VT.getSizeInBits();
5457 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005458 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005459 AddToWorkList(X.getNode());
5460 } else if (OrigXWidth > VTWidth) {
5461 // To get the sign bit in the right place, we have to shift it right
5462 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005463 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005464 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005465 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5466 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005467 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005468 AddToWorkList(X.getNode());
5469 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005470
Duncan Sands25cf2272008-11-24 14:53:14 +00005471 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005472 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005473 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005474 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005475
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005476 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005477 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005478 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005479 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005480 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005481
Bill Wendling67a67682009-01-30 22:44:24 +00005482 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005483 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005484 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005485
Scott Michelfdc40a02009-02-17 22:15:04 +00005486 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005487 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005488 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5489 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005490 return CombineLD;
5491 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005492
Dan Gohman475871a2008-07-27 21:46:04 +00005493 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005494}
5495
Dan Gohman475871a2008-07-27 21:46:04 +00005496SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005497 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005498 return CombineConsecutiveLoads(N, VT);
5499}
5500
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005501/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005502/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005503/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005504SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005505ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005506 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005507
Chris Lattner6258fb22006-04-02 02:53:43 +00005508 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005509 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005510
Duncan Sands83ec4b62008-06-06 12:08:01 +00005511 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5512 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005513
Chris Lattner6258fb22006-04-02 02:53:43 +00005514 // If this is a conversion of N elements of one type to N elements of another
5515 // type, convert each element. This handles FP<->INT cases.
5516 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005517 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5518 BV->getValueType(0).getVectorNumElements());
5519
5520 // Due to the FP element handling below calling this routine recursively,
5521 // we can end up with a scalar-to-vector node here.
5522 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005523 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5524 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005525 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005526
Dan Gohman475871a2008-07-27 21:46:04 +00005527 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005528 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005529 SDValue Op = BV->getOperand(i);
5530 // If the vector element type is not legal, the BUILD_VECTOR operands
5531 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005532 if (Op.getValueType() != SrcEltVT)
5533 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005534 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005535 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005536 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005537 }
Evan Chenga87008d2009-02-25 22:49:59 +00005538 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5539 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005540 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005541
Chris Lattner6258fb22006-04-02 02:53:43 +00005542 // Otherwise, we're growing or shrinking the elements. To avoid having to
5543 // handle annoying details of growing/shrinking FP values, we convert them to
5544 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005545 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005546 // Convert the input float vector to a int vector where the elements are the
5547 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005548 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005549 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005550 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005551 SrcEltVT = IntVT;
5552 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005553
Chris Lattner6258fb22006-04-02 02:53:43 +00005554 // Now we know the input is an integer vector. If the output is a FP type,
5555 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005556 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005557 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005558 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005559 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005560
Chris Lattner6258fb22006-04-02 02:53:43 +00005561 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005562 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005563 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005564
Chris Lattner6258fb22006-04-02 02:53:43 +00005565 // Okay, we know the src/dst types are both integers of differing types.
5566 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005567 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005568 if (SrcBitSize < DstBitSize) {
5569 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005570
Dan Gohman475871a2008-07-27 21:46:04 +00005571 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005572 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005573 i += NumInputsPerOutput) {
5574 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005575 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005576 bool EltIsUndef = true;
5577 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5578 // Shift the previously computed bits over.
5579 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005580 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005581 if (Op.getOpcode() == ISD::UNDEF) continue;
5582 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005583
Jay Foad40f8f622010-12-07 08:25:19 +00005584 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005585 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005586 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005587
Chris Lattner6258fb22006-04-02 02:53:43 +00005588 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005589 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005590 else
5591 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5592 }
5593
Owen Anderson23b9b192009-08-12 00:36:31 +00005594 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005595 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5596 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005597 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005598
Chris Lattner6258fb22006-04-02 02:53:43 +00005599 // Finally, this must be the case where we are shrinking elements: each input
5600 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005601 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005602 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005603 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5604 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005605 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005606
Dan Gohman7f321562007-06-25 16:23:39 +00005607 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005608 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5609 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005610 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005611 continue;
5612 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005613
Jay Foad40f8f622010-12-07 08:25:19 +00005614 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5615 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005616
Chris Lattner6258fb22006-04-02 02:53:43 +00005617 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005618 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005619 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005620 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005621 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005622 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5623 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005624 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005625 }
5626
5627 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005628 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005629 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5630 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005631
Evan Chenga87008d2009-02-25 22:49:59 +00005632 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5633 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005634}
5635
Dan Gohman475871a2008-07-27 21:46:04 +00005636SDValue DAGCombiner::visitFADD(SDNode *N) {
5637 SDValue N0 = N->getOperand(0);
5638 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005639 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5640 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005641 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005642
Dan Gohman7f321562007-06-25 16:23:39 +00005643 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005644 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005645 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005646 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005647 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005648
Lang Hames01806942012-06-14 20:37:15 +00005649 // fold (fadd c1, c2) -> c1 + c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005650 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005651 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005652 // canonicalize constant to RHS
5653 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005654 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5655 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005656 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5657 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005658 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005659 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005660 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5661 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005662 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005663 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005664 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005665 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5666 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005667 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005668 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005669
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005670 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005671 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5672 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5673 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005674 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005675 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5676 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005677
Lang Hamesd693caf2012-06-19 22:51:23 +00005678 // FADD -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005679 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005680 DAG.getTarget().Options.UnsafeFPMath) &&
5681 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
5682 TLI.isOperationLegal(ISD::FMA, VT)) {
5683
5684 // fold (fadd (fmul x, y), z) -> (fma x, y, z)
5685 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
5686 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5687 N0.getOperand(0), N0.getOperand(1), N1);
5688 }
5689
5690 // fold (fadd x, (fmul y, z)) -> (fma x, y, z)
5691 // Note: Commutes FADD operands.
5692 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
5693 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5694 N1.getOperand(0), N1.getOperand(1), N0);
5695 }
5696 }
5697
Dan Gohman475871a2008-07-27 21:46:04 +00005698 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005699}
5700
Dan Gohman475871a2008-07-27 21:46:04 +00005701SDValue DAGCombiner::visitFSUB(SDNode *N) {
5702 SDValue N0 = N->getOperand(0);
5703 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005704 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5705 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005706 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005707
Dan Gohman7f321562007-06-25 16:23:39 +00005708 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005709 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005710 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005711 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005712 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005713
Nate Begemana0e221d2005-10-18 00:28:13 +00005714 // fold (fsub c1, c2) -> c1-c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005715 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005716 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005717 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005718 if (DAG.getTarget().Options.UnsafeFPMath &&
5719 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005720 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005721 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005722 if (DAG.getTarget().Options.UnsafeFPMath &&
5723 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005724 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005725 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005726 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005727 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005728 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005729 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005730 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005731 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005732 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005733
Bill Wendling5a894342012-03-15 05:12:00 +00005734 // If 'unsafe math' is enabled, fold
Owen Anderson713e9532012-05-07 20:51:25 +00005735 // (fsub x, x) -> 0.0 &
Bill Wendling5a894342012-03-15 05:12:00 +00005736 // (fsub x, (fadd x, y)) -> (fneg y) &
5737 // (fsub x, (fadd y, x)) -> (fneg y)
5738 if (DAG.getTarget().Options.UnsafeFPMath) {
Owen Anderson713e9532012-05-07 20:51:25 +00005739 if (N0 == N1)
5740 return DAG.getConstantFP(0.0f, VT);
5741
Bill Wendling5a894342012-03-15 05:12:00 +00005742 if (N1.getOpcode() == ISD::FADD) {
5743 SDValue N10 = N1->getOperand(0);
5744 SDValue N11 = N1->getOperand(1);
5745
5746 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
5747 &DAG.getTarget().Options))
5748 return GetNegatedExpression(N11, DAG, LegalOperations);
5749 else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
5750 &DAG.getTarget().Options))
5751 return GetNegatedExpression(N10, DAG, LegalOperations);
5752 }
5753 }
5754
Lang Hamesd693caf2012-06-19 22:51:23 +00005755 // FSUB -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005756 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005757 DAG.getTarget().Options.UnsafeFPMath) &&
5758 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
5759 TLI.isOperationLegal(ISD::FMA, VT)) {
5760
5761 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z))
5762 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
5763 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5764 N0.getOperand(0), N0.getOperand(1),
5765 DAG.getNode(ISD::FNEG, N1->getDebugLoc(), VT, N1));
5766 }
5767
5768 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x)
5769 // Note: Commutes FSUB operands.
5770 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
5771 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5772 DAG.getNode(ISD::FNEG, N1->getDebugLoc(), VT,
5773 N1.getOperand(0)),
5774 N1.getOperand(1), N0);
5775 }
5776 }
5777
Dan Gohman475871a2008-07-27 21:46:04 +00005778 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005779}
5780
Dan Gohman475871a2008-07-27 21:46:04 +00005781SDValue DAGCombiner::visitFMUL(SDNode *N) {
5782 SDValue N0 = N->getOperand(0);
5783 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005784 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5785 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005786 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005787 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005788
Dan Gohman7f321562007-06-25 16:23:39 +00005789 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005790 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005791 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005792 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005793 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005794
Nate Begeman11af4ea2005-10-17 20:40:11 +00005795 // fold (fmul c1, c2) -> c1*c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005796 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005797 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005798 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00005799 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005800 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5801 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005802 if (DAG.getTarget().Options.UnsafeFPMath &&
5803 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005804 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00005805 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005806 if (DAG.getTarget().Options.UnsafeFPMath &&
5807 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00005808 return N1;
Owen Anderson363e4b92012-05-02 21:32:35 +00005809 // fold (fmul A, 1.0) -> A
5810 if (N1CFP && N1CFP->isExactlyValue(1.0))
5811 return N0;
Nate Begeman11af4ea2005-10-17 20:40:11 +00005812 // fold (fmul X, 2.0) -> (fadd X, X)
5813 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005814 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00005815 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00005816 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00005817 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005818 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005819
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005820 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005821 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005822 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005823 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005824 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005825 // Both can be negated for free, check to see if at least one is cheaper
5826 // negated.
5827 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005828 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005829 GetNegatedExpression(N0, DAG, LegalOperations),
5830 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005831 }
5832 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005833
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005834 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005835 if (DAG.getTarget().Options.UnsafeFPMath &&
5836 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005837 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005838 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00005839 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00005840 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005841
Dan Gohman475871a2008-07-27 21:46:04 +00005842 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005843}
5844
Owen Anderson062c0a52012-05-02 22:17:40 +00005845SDValue DAGCombiner::visitFMA(SDNode *N) {
5846 SDValue N0 = N->getOperand(0);
5847 SDValue N1 = N->getOperand(1);
5848 SDValue N2 = N->getOperand(2);
5849 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5850 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
5851 EVT VT = N->getValueType(0);
5852
5853 if (N0CFP && N0CFP->isExactlyValue(1.0))
5854 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N2);
5855 if (N1CFP && N1CFP->isExactlyValue(1.0))
5856 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N2);
5857
Owen Anderson85ef6f42012-05-30 18:50:39 +00005858 // Canonicalize (fma c, x, y) -> (fma x, c, y)
Owen Andersonf917d202012-05-30 18:54:50 +00005859 if (N0CFP && !N1CFP)
Owen Anderson85ef6f42012-05-30 18:50:39 +00005860 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, N1, N0, N2);
5861
Owen Anderson062c0a52012-05-02 22:17:40 +00005862 return SDValue();
5863}
5864
Dan Gohman475871a2008-07-27 21:46:04 +00005865SDValue DAGCombiner::visitFDIV(SDNode *N) {
5866 SDValue N0 = N->getOperand(0);
5867 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005868 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5869 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005870 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005871 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005872
Dan Gohman7f321562007-06-25 16:23:39 +00005873 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005874 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005875 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005876 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005877 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005878
Nate Begemana148d982006-01-18 22:35:16 +00005879 // fold (fdiv c1, c2) -> c1/c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005880 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005881 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005882
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00005883 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
5884 if (N1CFP && VT != MVT::ppcf128 && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00005885 // Compute the reciprocal 1.0 / c2.
5886 APFloat N1APF = N1CFP->getValueAPF();
5887 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
5888 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00005889 // Only do the transform if the reciprocal is a legal fp immediate that
5890 // isn't too nasty (eg NaN, denormal, ...).
5891 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00005892 (!LegalOperations ||
5893 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
5894 // backend)... we should handle this gracefully after Legalize.
5895 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
5896 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
5897 TLI.isFPImmLegal(Recip, VT)))
Duncan Sands961d6662012-04-07 20:04:00 +00005898 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0,
5899 DAG.getConstantFP(Recip, VT));
5900 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005901
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005902 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005903 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005904 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005905 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005906 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005907 // Both can be negated for free, check to see if at least one is cheaper
5908 // negated.
5909 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00005910 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005911 GetNegatedExpression(N0, DAG, LegalOperations),
5912 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005913 }
5914 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005915
Dan Gohman475871a2008-07-27 21:46:04 +00005916 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005917}
5918
Dan Gohman475871a2008-07-27 21:46:04 +00005919SDValue DAGCombiner::visitFREM(SDNode *N) {
5920 SDValue N0 = N->getOperand(0);
5921 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005922 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5923 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005924 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00005925
Nate Begemana148d982006-01-18 22:35:16 +00005926 // fold (frem c1, c2) -> fmod(c1,c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005927 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005928 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00005929
Dan Gohman475871a2008-07-27 21:46:04 +00005930 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005931}
5932
Dan Gohman475871a2008-07-27 21:46:04 +00005933SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
5934 SDValue N0 = N->getOperand(0);
5935 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00005936 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5937 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005938 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00005939
Owen Anderson825b72b2009-08-11 20:47:22 +00005940 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005941 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005942
Chris Lattner12d83032006-03-05 05:30:57 +00005943 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00005944 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00005945 // copysign(x, c1) -> fabs(x) iff ispos(c1)
5946 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00005947 if (!V.isNegative()) {
5948 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005949 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00005950 } else {
5951 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005952 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00005953 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00005954 }
Chris Lattner12d83032006-03-05 05:30:57 +00005955 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005956
Chris Lattner12d83032006-03-05 05:30:57 +00005957 // copysign(fabs(x), y) -> copysign(x, y)
5958 // copysign(fneg(x), y) -> copysign(x, y)
5959 // copysign(copysign(x,z), y) -> copysign(x, y)
5960 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
5961 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005962 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5963 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00005964
5965 // copysign(x, abs(y)) -> abs(x)
5966 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005967 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005968
Chris Lattner12d83032006-03-05 05:30:57 +00005969 // copysign(x, copysign(y,z)) -> copysign(x, z)
5970 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005971 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5972 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005973
Chris Lattner12d83032006-03-05 05:30:57 +00005974 // copysign(x, fp_extend(y)) -> copysign(x, y)
5975 // copysign(x, fp_round(y)) -> copysign(x, y)
5976 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005977 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5978 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00005979
Dan Gohman475871a2008-07-27 21:46:04 +00005980 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00005981}
5982
Dan Gohman475871a2008-07-27 21:46:04 +00005983SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
5984 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005985 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005986 EVT VT = N->getValueType(0);
5987 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00005988
Nate Begeman1d4d4142005-09-01 00:19:25 +00005989 // fold (sint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005990 if (N0C && OpVT != MVT::ppcf128 &&
5991 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005992 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005993 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005994 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005995
Chris Lattnercda88752008-06-26 00:16:49 +00005996 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
5997 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005998 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
5999 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006000 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006001 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006002 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006003 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006004
Nadav Rotemed1a3352012-07-23 07:59:50 +00006005 // The next optimizations are desireable only if SELECT_CC can be lowered.
6006 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6007 // having to say they don't support SELECT_CC on every type the DAG knows
6008 // about, since there is no way to mark an opcode illegal at all value types
6009 // (See also visitSELECT)
6010 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6011 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6012 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 &&
6013 !VT.isVector() &&
6014 (!LegalOperations ||
6015 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6016 SDValue Ops[] =
6017 { N0.getOperand(0), N0.getOperand(1),
6018 DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT),
6019 N0.getOperand(2) };
6020 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6021 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006022
Nadav Rotemed1a3352012-07-23 07:59:50 +00006023 // fold (sint_to_fp (zext (setcc x, y, cc))) ->
6024 // (select_cc x, y, 1.0, 0.0,, cc)
6025 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
6026 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() &&
6027 (!LegalOperations ||
6028 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6029 SDValue Ops[] =
6030 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1),
6031 DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT),
6032 N0.getOperand(0).getOperand(2) };
6033 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6034 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006035 }
6036
Dan Gohman475871a2008-07-27 21:46:04 +00006037 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006038}
6039
Dan Gohman475871a2008-07-27 21:46:04 +00006040SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
6041 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006042 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006043 EVT VT = N->getValueType(0);
6044 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00006045
Nate Begeman1d4d4142005-09-01 00:19:25 +00006046 // fold (uint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00006047 if (N0C && OpVT != MVT::ppcf128 &&
6048 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006049 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006050 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006051 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006052
Chris Lattnercda88752008-06-26 00:16:49 +00006053 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6054 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006055 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6056 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006057 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006058 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006059 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006060 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006061
Nadav Rotemed1a3352012-07-23 07:59:50 +00006062 // The next optimizations are desireable only if SELECT_CC can be lowered.
6063 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6064 // having to say they don't support SELECT_CC on every type the DAG knows
6065 // about, since there is no way to mark an opcode illegal at all value types
6066 // (See also visitSELECT)
6067 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6068 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
Owen Andersond9bf71f2012-07-09 20:31:12 +00006069
Nadav Rotemed1a3352012-07-23 07:59:50 +00006070 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() &&
6071 (!LegalOperations ||
6072 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6073 SDValue Ops[] =
6074 { N0.getOperand(0), N0.getOperand(1),
6075 DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT),
6076 N0.getOperand(2) };
6077 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6078 }
6079 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006080
Dan Gohman475871a2008-07-27 21:46:04 +00006081 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006082}
6083
Dan Gohman475871a2008-07-27 21:46:04 +00006084SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
6085 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006086 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006087 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006088
Nate Begeman1d4d4142005-09-01 00:19:25 +00006089 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00006090 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006091 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
6092
Dan Gohman475871a2008-07-27 21:46:04 +00006093 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006094}
6095
Dan Gohman475871a2008-07-27 21:46:04 +00006096SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
6097 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006098 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006099 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006100
Nate Begeman1d4d4142005-09-01 00:19:25 +00006101 // fold (fp_to_uint c1fp) -> c1
Owen Anderson825b72b2009-08-11 20:47:22 +00006102 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006103 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
6104
Dan Gohman475871a2008-07-27 21:46:04 +00006105 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006106}
6107
Dan Gohman475871a2008-07-27 21:46:04 +00006108SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
6109 SDValue N0 = N->getOperand(0);
6110 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006111 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006112 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006113
Nate Begeman1d4d4142005-09-01 00:19:25 +00006114 // fold (fp_round c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00006115 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006116 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006117
Chris Lattner79dbea52006-03-13 06:26:26 +00006118 // fold (fp_round (fp_extend x)) -> x
6119 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
6120 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006121
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006122 // fold (fp_round (fp_round x)) -> (fp_round x)
6123 if (N0.getOpcode() == ISD::FP_ROUND) {
6124 // This is a value preserving truncation if both round's are.
6125 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006126 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00006127 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006128 DAG.getIntPtrConstant(IsTrunc));
6129 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006130
Chris Lattner79dbea52006-03-13 06:26:26 +00006131 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00006132 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00006133 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
6134 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00006135 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00006136 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6137 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00006138 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006139
Dan Gohman475871a2008-07-27 21:46:04 +00006140 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006141}
6142
Dan Gohman475871a2008-07-27 21:46:04 +00006143SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6144 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006145 EVT VT = N->getValueType(0);
6146 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00006147 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006148
Nate Begeman1d4d4142005-09-01 00:19:25 +00006149 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00006150 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00006151 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006152 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006153 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006154
Dan Gohman475871a2008-07-27 21:46:04 +00006155 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006156}
6157
Dan Gohman475871a2008-07-27 21:46:04 +00006158SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6159 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006160 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006161 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006162
Chris Lattner5938bef2007-12-29 06:55:23 +00006163 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00006164 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00006165 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00006166 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006167
Nate Begeman1d4d4142005-09-01 00:19:25 +00006168 // fold (fp_extend c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00006169 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006170 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006171
6172 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6173 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006174 if (N0.getOpcode() == ISD::FP_ROUND
6175 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006176 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006177 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006178 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006179 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
6180 In, N0.getOperand(1));
6181 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006182 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006183
Chris Lattner0bd48932008-01-17 07:00:52 +00006184 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006185 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006186 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006187 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006188 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00006189 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006190 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006191 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006192 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006193 LN0->isVolatile(), LN0->isNonTemporal(),
6194 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006195 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006196 CombineTo(N0.getNode(),
6197 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
6198 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006199 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006200 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006201 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006202
Dan Gohman475871a2008-07-27 21:46:04 +00006203 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006204}
6205
Dan Gohman475871a2008-07-27 21:46:04 +00006206SDValue DAGCombiner::visitFNEG(SDNode *N) {
6207 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006208 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006209
Owen Andersonafd3d562012-03-06 00:29:31 +00006210 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6211 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006212 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006213
Chris Lattner3bd39d42008-01-27 17:42:27 +00006214 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6215 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006216 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006217 !VT.isVector() &&
6218 N0.getNode()->hasOneUse() &&
6219 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006220 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006221 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006222 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006223 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
6224 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006225 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006226 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006227 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006228 }
6229 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006230
Dan Gohman475871a2008-07-27 21:46:04 +00006231 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006232}
6233
Dan Gohman475871a2008-07-27 21:46:04 +00006234SDValue DAGCombiner::visitFABS(SDNode *N) {
6235 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006236 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006237 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006238
Nate Begeman1d4d4142005-09-01 00:19:25 +00006239 // fold (fabs c1) -> fabs(c1)
Owen Anderson825b72b2009-08-11 20:47:22 +00006240 if (N0CFP && VT != MVT::ppcf128)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006241 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006242 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006243 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006244 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006245 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006246 // fold (fabs (fcopysign x, y)) -> (fabs x)
6247 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006248 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006249
Chris Lattner3bd39d42008-01-27 17:42:27 +00006250 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6251 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006252 if (!TLI.isFAbsFree(VT) &&
6253 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006254 N0.getOperand(0).getValueType().isInteger() &&
6255 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006256 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006257 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006258 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006259 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006260 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006261 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006262 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006263 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006264 }
6265 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006266
Dan Gohman475871a2008-07-27 21:46:04 +00006267 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006268}
6269
Dan Gohman475871a2008-07-27 21:46:04 +00006270SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6271 SDValue Chain = N->getOperand(0);
6272 SDValue N1 = N->getOperand(1);
6273 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006274
Dan Gohmane0f06c72009-11-17 00:47:23 +00006275 // If N is a constant we could fold this into a fallthrough or unconditional
6276 // branch. However that doesn't happen very often in normal code, because
6277 // Instcombine/SimplifyCFG should have handled the available opportunities.
6278 // If we did this folding here, it would be necessary to update the
6279 // MachineBasicBlock CFG, which is awkward.
6280
Nate Begeman750ac1b2006-02-01 07:19:44 +00006281 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6282 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006283 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006284 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
6285 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006286 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006287 N1.getOperand(0), N1.getOperand(1), N2);
6288 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006289
Evan Cheng2a135ae2010-10-04 22:41:01 +00006290 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6291 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6292 (N1.getOperand(0).hasOneUse() &&
6293 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6294 SDNode *Trunc = 0;
6295 if (N1.getOpcode() == ISD::TRUNCATE) {
6296 // Look pass the truncate.
6297 Trunc = N1.getNode();
6298 N1 = N1.getOperand(0);
6299 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006300
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006301 // Match this pattern so that we can generate simpler code:
6302 //
6303 // %a = ...
6304 // %b = and i32 %a, 2
6305 // %c = srl i32 %b, 1
6306 // brcond i32 %c ...
6307 //
6308 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006309 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006310 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006311 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006312 // %c = setcc eq %b, 0
6313 // brcond %c ...
6314 //
6315 // This applies only when the AND constant value has one bit set and the
6316 // SRL constant is equal to the log2 of the AND constant. The back-end is
6317 // smart enough to convert the result into a TEST/JMP sequence.
6318 SDValue Op0 = N1.getOperand(0);
6319 SDValue Op1 = N1.getOperand(1);
6320
6321 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006322 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006323 SDValue AndOp1 = Op0.getOperand(1);
6324
6325 if (AndOp1.getOpcode() == ISD::Constant) {
6326 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6327
6328 if (AndConst.isPowerOf2() &&
6329 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6330 SDValue SetCC =
6331 DAG.getSetCC(N->getDebugLoc(),
6332 TLI.getSetCCResultType(Op0.getValueType()),
6333 Op0, DAG.getConstant(0, Op0.getValueType()),
6334 ISD::SETNE);
6335
Evan Chengd40d03e2010-01-06 19:38:29 +00006336 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6337 MVT::Other, Chain, SetCC, N2);
6338 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6339 // will convert it back to (X & C1) >> C2.
6340 CombineTo(N, NewBRCond, false);
6341 // Truncate is dead.
6342 if (Trunc) {
6343 removeFromWorkList(Trunc);
6344 DAG.DeleteNode(Trunc);
6345 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006346 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006347 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006348 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006349 removeFromWorkList(N1.getNode());
6350 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006351 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006352 }
6353 }
6354 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006355
6356 if (Trunc)
6357 // Restore N1 if the above transformation doesn't match.
6358 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006359 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006360
Evan Cheng2c755ba2010-02-27 07:36:59 +00006361 // Transform br(xor(x, y)) -> br(x != y)
6362 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6363 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6364 SDNode *TheXor = N1.getNode();
6365 SDValue Op0 = TheXor->getOperand(0);
6366 SDValue Op1 = TheXor->getOperand(1);
6367 if (Op0.getOpcode() == Op1.getOpcode()) {
6368 // Avoid missing important xor optimizations.
6369 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00006370 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006371 DEBUG(dbgs() << "\nReplacing.8 ";
6372 TheXor->dump(&DAG);
6373 dbgs() << "\nWith: ";
6374 Tmp.getNode()->dump(&DAG);
6375 dbgs() << '\n');
6376 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006377 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
Evan Cheng2c755ba2010-02-27 07:36:59 +00006378 removeFromWorkList(TheXor);
6379 DAG.DeleteNode(TheXor);
6380 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6381 MVT::Other, Chain, Tmp, N2);
6382 }
6383 }
6384
6385 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6386 bool Equal = false;
6387 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6388 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6389 Op0.getOpcode() == ISD::XOR) {
6390 TheXor = Op0.getNode();
6391 Equal = true;
6392 }
6393
Evan Cheng2a135ae2010-10-04 22:41:01 +00006394 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006395 if (LegalTypes)
6396 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6397 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6398 SetCCVT,
6399 Op0, Op1,
6400 Equal ? ISD::SETEQ : ISD::SETNE);
6401 // Replace the uses of XOR with SETCC
6402 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006403 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006404 removeFromWorkList(N1.getNode());
6405 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006406 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6407 MVT::Other, Chain, SetCC, N2);
6408 }
6409 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006410
Dan Gohman475871a2008-07-27 21:46:04 +00006411 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006412}
6413
Chris Lattner3ea0b472005-10-05 06:47:48 +00006414// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6415//
Dan Gohman475871a2008-07-27 21:46:04 +00006416SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006417 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006418 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006419
Dan Gohmane0f06c72009-11-17 00:47:23 +00006420 // If N is a constant we could fold this into a fallthrough or unconditional
6421 // branch. However that doesn't happen very often in normal code, because
6422 // Instcombine/SimplifyCFG should have handled the available opportunities.
6423 // If we did this folding here, it would be necessary to update the
6424 // MachineBasicBlock CFG, which is awkward.
6425
Duncan Sands8eab8a22008-06-09 11:32:28 +00006426 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006427 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006428 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6429 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006430 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006431
Nate Begemane17daeb2005-10-05 21:43:42 +00006432 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006433 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006434 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006435 N->getOperand(0), Simp.getOperand(2),
6436 Simp.getOperand(0), Simp.getOperand(1),
6437 N->getOperand(4));
6438
Dan Gohman475871a2008-07-27 21:46:04 +00006439 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006440}
6441
Evan Chengc4b527a2012-01-13 01:37:24 +00006442/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6443/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00006444/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00006445static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6446 SelectionDAG &DAG,
6447 const TargetLowering &TLI) {
6448 EVT VT;
6449 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6450 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6451 return false;
6452 VT = Use->getValueType(0);
6453 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6454 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6455 return false;
6456 VT = ST->getValue().getValueType();
6457 } else
6458 return false;
6459
6460 TargetLowering::AddrMode AM;
6461 if (N->getOpcode() == ISD::ADD) {
6462 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6463 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006464 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006465 AM.BaseOffs = Offset->getSExtValue();
6466 else
Evan Cheng03be3622012-03-06 23:33:32 +00006467 // [reg +/- reg]
6468 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006469 } else if (N->getOpcode() == ISD::SUB) {
6470 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6471 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006472 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006473 AM.BaseOffs = -Offset->getSExtValue();
6474 else
Evan Cheng03be3622012-03-06 23:33:32 +00006475 // [reg +/- reg]
6476 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006477 } else
6478 return false;
6479
6480 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6481}
6482
Duncan Sandsec87aa82008-06-15 20:12:31 +00006483/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6484/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006485/// and it has other uses besides the load / store. After the
6486/// transformation, the new indexed load / store has effectively folded
6487/// the add / subtract in and all of its other uses are redirected to the
6488/// new load / store.
6489bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006490 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006491 return false;
6492
6493 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006494 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006495 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006496 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006497 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006498 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006499 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006500 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006501 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6502 return false;
6503 Ptr = LD->getBasePtr();
6504 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006505 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006506 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006507 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006508 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6509 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6510 return false;
6511 Ptr = ST->getBasePtr();
6512 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006513 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006514 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006515 }
Chris Lattner448f2192006-11-11 00:39:41 +00006516
Chris Lattner9f1794e2006-11-11 00:56:29 +00006517 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6518 // out. There is no reason to make this a preinc/predec.
6519 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006520 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006521 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006522
Chris Lattner9f1794e2006-11-11 00:56:29 +00006523 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006524 SDValue BasePtr;
6525 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006526 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6527 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6528 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006529 // Don't create a indexed load / store with zero offset.
6530 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006531 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006532 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006533
Chris Lattner41e53fd2006-11-11 01:00:15 +00006534 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006535 // 1) The new base ptr is a frame index.
6536 // 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 +00006537 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006538 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006539 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006540 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006541
Chris Lattner41e53fd2006-11-11 01:00:15 +00006542 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6543 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006544 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006545 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006546
Chris Lattner41e53fd2006-11-11 01:00:15 +00006547 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006548 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006549 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006550 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006551 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006552 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006553
Evan Chengc843abe2007-05-24 02:35:39 +00006554 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006555 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006556
6557 // Caches for hasPredecessorHelper
6558 SmallPtrSet<const SDNode *, 32> Visited;
6559 SmallVector<const SDNode *, 16> Worklist;
6560
Gabor Greifba36cb52008-08-28 21:40:38 +00006561 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6562 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006563 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006564 if (Use == N)
6565 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006566 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006567 return false;
6568
Evan Chengc4b527a2012-01-13 01:37:24 +00006569 // If Ptr may be folded in addressing mode of other use, then it's
6570 // not profitable to do this transformation.
6571 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006572 RealUse = true;
6573 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006574
Chris Lattner9f1794e2006-11-11 00:56:29 +00006575 if (!RealUse)
6576 return false;
6577
Dan Gohman475871a2008-07-27 21:46:04 +00006578 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006579 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006580 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6581 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006582 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006583 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6584 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006585 ++PreIndexedNodes;
6586 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006587 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006588 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006589 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006590 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006591 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006592 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006593 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006594 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6595 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006596 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006597 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006598 }
6599
Chris Lattner9f1794e2006-11-11 00:56:29 +00006600 // Finally, since the node is now dead, remove it from the graph.
6601 DAG.DeleteNode(N);
6602
6603 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006604 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greifba36cb52008-08-28 21:40:38 +00006605 removeFromWorkList(Ptr.getNode());
6606 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006607
6608 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006609}
6610
Duncan Sandsec87aa82008-06-15 20:12:31 +00006611/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006612/// add / sub of the base pointer node into a post-indexed load / store.
6613/// The transformation folded the add / subtract into the new indexed
6614/// load / store effectively and all of its uses are redirected to the
6615/// new load / store.
6616bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006617 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006618 return false;
6619
6620 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006621 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006622 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006623 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006624 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006625 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006626 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006627 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6628 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6629 return false;
6630 Ptr = LD->getBasePtr();
6631 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006632 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006633 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006634 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006635 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6636 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6637 return false;
6638 Ptr = ST->getBasePtr();
6639 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006640 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006641 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006642 }
Chris Lattner448f2192006-11-11 00:39:41 +00006643
Gabor Greifba36cb52008-08-28 21:40:38 +00006644 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006645 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006646
Gabor Greifba36cb52008-08-28 21:40:38 +00006647 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6648 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006649 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006650 if (Op == N ||
6651 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6652 continue;
6653
Dan Gohman475871a2008-07-27 21:46:04 +00006654 SDValue BasePtr;
6655 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006656 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6657 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00006658 // Don't create a indexed load / store with zero offset.
6659 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006660 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006661 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006662
Chris Lattner9f1794e2006-11-11 00:56:29 +00006663 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00006664 // 1) All uses are load / store ops that use it as base ptr (and
6665 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00006666 // 2) Op must be independent of N, i.e. Op is neither a predecessor
6667 // nor a successor of N. Otherwise, if Op is folded that would
6668 // create a cycle.
6669
Evan Chengcaab1292009-05-06 18:25:01 +00006670 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6671 continue;
6672
Chris Lattner9f1794e2006-11-11 00:56:29 +00006673 // Check for #1.
6674 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006675 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6676 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00006677 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00006678 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00006679 continue;
6680
Chris Lattner9f1794e2006-11-11 00:56:29 +00006681 // If all the uses are load / store addresses, then don't do the
6682 // transformation.
6683 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6684 bool RealUse = false;
6685 for (SDNode::use_iterator III = Use->use_begin(),
6686 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00006687 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00006688 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006689 RealUse = true;
6690 }
Chris Lattner448f2192006-11-11 00:39:41 +00006691
Chris Lattner9f1794e2006-11-11 00:56:29 +00006692 if (!RealUse) {
6693 TryNext = true;
6694 break;
Chris Lattner448f2192006-11-11 00:39:41 +00006695 }
6696 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006697 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006698
Chris Lattner9f1794e2006-11-11 00:56:29 +00006699 if (TryNext)
6700 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006701
Chris Lattner9f1794e2006-11-11 00:56:29 +00006702 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00006703 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006704 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00006705 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6706 BasePtr, Offset, AM)
6707 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6708 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006709 ++PostIndexedNodes;
6710 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006711 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006712 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006713 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006714 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006715 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006716 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006717 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006718 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6719 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006720 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006721 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner448f2192006-11-11 00:39:41 +00006722 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006723
Chris Lattner9f1794e2006-11-11 00:56:29 +00006724 // Finally, since the node is now dead, remove it from the graph.
6725 DAG.DeleteNode(N);
6726
6727 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00006728 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006729 Result.getValue(isLoad ? 1 : 0));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006730 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006731 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006732 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006733 }
6734 }
6735 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006736
Chris Lattner448f2192006-11-11 00:39:41 +00006737 return false;
6738}
6739
Dan Gohman475871a2008-07-27 21:46:04 +00006740SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00006741 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006742 SDValue Chain = LD->getChain();
6743 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00006744
Evan Cheng45a7ca92007-05-01 00:38:21 +00006745 // If load is not volatile and there are no uses of the loaded value (and
6746 // the updated indexed value in case of indexed loads), change uses of the
6747 // chain value into uses of the chain input (i.e. delete the dead load).
6748 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006749 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00006750 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00006751 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00006752 // It's not safe to use the two value CombineTo variant here. e.g.
6753 // v1, chain2 = load chain1, loc
6754 // v2, chain3 = load chain2, loc
6755 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00006756 // Now we replace use of chain2 with chain1. This makes the second load
6757 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00006758 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006759 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006760 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006761 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006762 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006763 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006764 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendlingc0debad2009-01-30 23:27:35 +00006765
Chris Lattner125991a2008-01-24 07:57:06 +00006766 if (N->use_empty()) {
6767 removeFromWorkList(N);
6768 DAG.DeleteNode(N);
6769 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006770
Dan Gohman475871a2008-07-27 21:46:04 +00006771 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00006772 }
Evan Cheng498f5592007-05-01 08:53:39 +00006773 } else {
6774 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00006775 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00006776 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00006777 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00006778 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006779 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006780 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006781 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006782 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006783 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006784 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman475871a2008-07-27 21:46:04 +00006785 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006786 DAG.getUNDEF(N->getValueType(1)));
6787 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng02c42852008-01-16 23:11:54 +00006788 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00006789 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006790 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00006791 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00006792 }
6793 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006794
Chris Lattner01a22022005-10-10 22:04:48 +00006795 // If this load is directly stored, replace the load value with the stored
6796 // value.
6797 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006798 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00006799 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00006800 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00006801 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
6802 if (PrevST->getBasePtr() == Ptr &&
6803 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006804 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00006805 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006806 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006807
Evan Cheng255f20f2010-04-01 06:04:33 +00006808 // Try to infer better alignment information than the load already has.
6809 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00006810 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
6811 if (Align > LD->getAlignment())
6812 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
6813 LD->getValueType(0),
6814 Chain, Ptr, LD->getPointerInfo(),
6815 LD->getMemoryVT(),
6816 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00006817 }
6818 }
6819
Jim Laskey7ca56af2006-10-11 13:47:09 +00006820 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00006821 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00006822 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00006823
Jim Laskey6ff23e52006-10-04 16:53:27 +00006824 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00006825 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00006826 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006827
Jim Laskey279f0532006-09-25 16:29:54 +00006828 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006829 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00006830 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00006831 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00006832 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006833 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006834 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00006835 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
6836 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00006837 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006838 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00006839 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006840 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00006841 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006842 }
Jim Laskey279f0532006-09-25 16:29:54 +00006843
Jim Laskey6ff23e52006-10-04 16:53:27 +00006844 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00006845 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00006846 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006847
Nate Begemanb6aef5c2009-09-15 00:18:30 +00006848 // Make sure the new and old chains are cleaned up.
6849 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006850
Jim Laskey274062c2006-10-13 23:32:28 +00006851 // Replace uses with load result and token factor. Don't add users
6852 // to work list.
6853 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00006854 }
6855 }
6856
Evan Cheng7fc033a2006-11-03 03:06:21 +00006857 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00006858 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00006859 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00006860
Dan Gohman475871a2008-07-27 21:46:04 +00006861 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00006862}
6863
Chris Lattner2392ae72010-04-15 04:48:01 +00006864/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
6865/// load is having specific bytes cleared out. If so, return the byte size
6866/// being masked out and the shift amount.
6867static std::pair<unsigned, unsigned>
6868CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
6869 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006870
Chris Lattner2392ae72010-04-15 04:48:01 +00006871 // Check for the structure we're looking for.
6872 if (V->getOpcode() != ISD::AND ||
6873 !isa<ConstantSDNode>(V->getOperand(1)) ||
6874 !ISD::isNormalLoad(V->getOperand(0).getNode()))
6875 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006876
Chris Lattnere6987582010-04-15 06:10:49 +00006877 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00006878 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00006879 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006880
Chris Lattnere6987582010-04-15 06:10:49 +00006881 // The store should be chained directly to the load or be an operand of a
6882 // tokenfactor.
6883 if (LD == Chain.getNode())
6884 ; // ok.
6885 else if (Chain->getOpcode() != ISD::TokenFactor)
6886 return Result; // Fail.
6887 else {
6888 bool isOk = false;
6889 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
6890 if (Chain->getOperand(i).getNode() == LD) {
6891 isOk = true;
6892 break;
6893 }
6894 if (!isOk) return Result;
6895 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006896
Chris Lattner2392ae72010-04-15 04:48:01 +00006897 // This only handles simple types.
6898 if (V.getValueType() != MVT::i16 &&
6899 V.getValueType() != MVT::i32 &&
6900 V.getValueType() != MVT::i64)
6901 return Result;
6902
6903 // Check the constant mask. Invert it so that the bits being masked out are
6904 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
6905 // follow the sign bit for uniformity.
6906 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
6907 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
6908 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
6909 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
6910 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
6911 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006912
Chris Lattner2392ae72010-04-15 04:48:01 +00006913 // See if we have a continuous run of bits. If so, we have 0*1+0*
6914 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
6915 return Result;
6916
6917 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
6918 if (V.getValueType() != MVT::i64 && NotMaskLZ)
6919 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006920
Chris Lattner2392ae72010-04-15 04:48:01 +00006921 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
6922 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006923 case 1:
6924 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00006925 case 4: break;
6926 default: return Result; // All one mask, or 5-byte mask.
6927 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006928
Chris Lattner2392ae72010-04-15 04:48:01 +00006929 // Verify that the first bit starts at a multiple of mask so that the access
6930 // is aligned the same as the access width.
6931 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006932
Chris Lattner2392ae72010-04-15 04:48:01 +00006933 Result.first = MaskedBytes;
6934 Result.second = NotMaskTZ/8;
6935 return Result;
6936}
6937
6938
6939/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
6940/// provides a value as specified by MaskInfo. If so, replace the specified
6941/// store with a narrower store of truncated IVal.
6942static SDNode *
6943ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
6944 SDValue IVal, StoreSDNode *St,
6945 DAGCombiner *DC) {
6946 unsigned NumBytes = MaskInfo.first;
6947 unsigned ByteShift = MaskInfo.second;
6948 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006949
Chris Lattner2392ae72010-04-15 04:48:01 +00006950 // Check to see if IVal is all zeros in the part being masked in by the 'or'
6951 // that uses this. If not, this is not a replacement.
6952 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
6953 ByteShift*8, (ByteShift+NumBytes)*8);
6954 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006955
Chris Lattner2392ae72010-04-15 04:48:01 +00006956 // Check that it is legal on the target to do this. It is legal if the new
6957 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
6958 // legalization.
6959 MVT VT = MVT::getIntegerVT(NumBytes*8);
6960 if (!DC->isTypeLegal(VT))
6961 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006962
Chris Lattner2392ae72010-04-15 04:48:01 +00006963 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
6964 // shifted by ByteShift and truncated down to NumBytes.
6965 if (ByteShift)
6966 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00006967 DAG.getConstant(ByteShift*8,
6968 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00006969
6970 // Figure out the offset for the store and the alignment of the access.
6971 unsigned StOffset;
6972 unsigned NewAlign = St->getAlignment();
6973
6974 if (DAG.getTargetLoweringInfo().isLittleEndian())
6975 StOffset = ByteShift;
6976 else
6977 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006978
Chris Lattner2392ae72010-04-15 04:48:01 +00006979 SDValue Ptr = St->getBasePtr();
6980 if (StOffset) {
6981 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
6982 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
6983 NewAlign = MinAlign(NewAlign, StOffset);
6984 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006985
Chris Lattner2392ae72010-04-15 04:48:01 +00006986 // Truncate down to the new size.
6987 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006988
Chris Lattner2392ae72010-04-15 04:48:01 +00006989 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006990 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006991 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00006992 false, false, NewAlign).getNode();
6993}
6994
Evan Cheng8b944d32009-05-28 00:35:15 +00006995
6996/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
6997/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
6998/// of the loaded bits, try narrowing the load and store if it would end up
6999/// being a win for performance or code size.
7000SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
7001 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00007002 if (ST->isVolatile())
7003 return SDValue();
7004
Evan Cheng8b944d32009-05-28 00:35:15 +00007005 SDValue Chain = ST->getChain();
7006 SDValue Value = ST->getValue();
7007 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00007008 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00007009
7010 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00007011 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007012
7013 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007014
Chris Lattner2392ae72010-04-15 04:48:01 +00007015 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
7016 // is a byte mask indicating a consecutive number of bytes, check to see if
7017 // Y is known to provide just those bytes. If so, we try to replace the
7018 // load + replace + store sequence with a single (narrower) store, which makes
7019 // the load dead.
7020 if (Opc == ISD::OR) {
7021 std::pair<unsigned, unsigned> MaskedLoad;
7022 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
7023 if (MaskedLoad.first)
7024 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7025 Value.getOperand(1), ST,this))
7026 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007027
Chris Lattner2392ae72010-04-15 04:48:01 +00007028 // Or is commutative, so try swapping X and Y.
7029 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
7030 if (MaskedLoad.first)
7031 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7032 Value.getOperand(0), ST,this))
7033 return SDValue(NewST, 0);
7034 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007035
Evan Cheng8b944d32009-05-28 00:35:15 +00007036 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
7037 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00007038 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007039
7040 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00007041 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
7042 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00007043 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00007044 if (LD->getBasePtr() != Ptr ||
7045 LD->getPointerInfo().getAddrSpace() !=
7046 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00007047 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007048
7049 // Find the type to narrow it the load / op / store to.
7050 SDValue N1 = Value.getOperand(1);
7051 unsigned BitWidth = N1.getValueSizeInBits();
7052 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
7053 if (Opc == ISD::AND)
7054 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00007055 if (Imm == 0 || Imm.isAllOnesValue())
7056 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007057 unsigned ShAmt = Imm.countTrailingZeros();
7058 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
7059 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00007060 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007061 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00007062 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00007063 TLI.isNarrowingProfitable(VT, NewVT))) {
7064 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00007065 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007066 }
Evan Chengcdcecc02009-05-28 18:41:02 +00007067 if (NewBW >= BitWidth)
7068 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007069
7070 // If the lsb changed does not start at the type bitwidth boundary,
7071 // start at the previous one.
7072 if (ShAmt % NewBW)
7073 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
7074 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
7075 if ((Imm & Mask) == Imm) {
7076 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
7077 if (Opc == ISD::AND)
7078 NewImm ^= APInt::getAllOnesValue(NewBW);
7079 uint64_t PtrOff = ShAmt / 8;
7080 // For big endian targets, we need to adjust the offset to the pointer to
7081 // load the correct bytes.
7082 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00007083 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00007084
7085 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007086 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Chris Lattner2392ae72010-04-15 04:48:01 +00007087 if (NewAlign < TLI.getTargetData()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00007088 return SDValue();
7089
Evan Cheng8b944d32009-05-28 00:35:15 +00007090 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
7091 Ptr.getValueType(), Ptr,
7092 DAG.getConstant(PtrOff, Ptr.getValueType()));
7093 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
7094 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007095 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007096 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007097 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007098 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
7099 DAG.getConstant(NewImm, NewVT));
7100 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
7101 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007102 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007103 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007104
7105 AddToWorkList(NewPtr.getNode());
7106 AddToWorkList(NewLD.getNode());
7107 AddToWorkList(NewVal.getNode());
7108 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007109 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Cheng8b944d32009-05-28 00:35:15 +00007110 ++OpsNarrowed;
7111 return NewST;
7112 }
7113 }
7114
Evan Chengcdcecc02009-05-28 18:41:02 +00007115 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007116}
7117
Evan Cheng31959b12011-02-02 01:06:55 +00007118/// TransformFPLoadStorePair - For a given floating point load / store pair,
7119/// if the load value isn't used by any other operations, then consider
7120/// transforming the pair to integer load / store operations if the target
7121/// deems the transformation profitable.
7122SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
7123 StoreSDNode *ST = cast<StoreSDNode>(N);
7124 SDValue Chain = ST->getChain();
7125 SDValue Value = ST->getValue();
7126 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
7127 Value.hasOneUse() &&
7128 Chain == SDValue(Value.getNode(), 1)) {
7129 LoadSDNode *LD = cast<LoadSDNode>(Value);
7130 EVT VT = LD->getMemoryVT();
7131 if (!VT.isFloatingPoint() ||
7132 VT != ST->getMemoryVT() ||
7133 LD->isNonTemporal() ||
7134 ST->isNonTemporal() ||
7135 LD->getPointerInfo().getAddrSpace() != 0 ||
7136 ST->getPointerInfo().getAddrSpace() != 0)
7137 return SDValue();
7138
7139 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
7140 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
7141 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
7142 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
7143 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
7144 return SDValue();
7145
7146 unsigned LDAlign = LD->getAlignment();
7147 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007148 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Evan Cheng31959b12011-02-02 01:06:55 +00007149 unsigned ABIAlign = TLI.getTargetData()->getABITypeAlignment(IntVTTy);
7150 if (LDAlign < ABIAlign || STAlign < ABIAlign)
7151 return SDValue();
7152
7153 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
7154 LD->getChain(), LD->getBasePtr(),
7155 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007156 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00007157
7158 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
7159 NewLD, ST->getBasePtr(),
7160 ST->getPointerInfo(),
7161 false, false, STAlign);
7162
7163 AddToWorkList(NewLD.getNode());
7164 AddToWorkList(NewST.getNode());
7165 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007166 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Cheng31959b12011-02-02 01:06:55 +00007167 ++LdStFP2Int;
7168 return NewST;
7169 }
7170
7171 return SDValue();
7172}
7173
Dan Gohman475871a2008-07-27 21:46:04 +00007174SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007175 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007176 SDValue Chain = ST->getChain();
7177 SDValue Value = ST->getValue();
7178 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007179
Evan Cheng59d5b682007-05-07 21:27:48 +00007180 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00007181 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007182 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007183 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00007184 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00007185 EVT SVT = Value.getOperand(0).getValueType();
Dan Gohman1ba519b2009-02-20 23:29:13 +00007186 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00007187 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007188 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00007189 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007190 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00007191 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00007192 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007193 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00007194 }
Owen Andersona34d9362011-04-14 17:30:49 +00007195
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007196 // Turn 'store undef, Ptr' -> nothing.
7197 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
7198 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007199
Nate Begeman2cbba892006-12-11 02:23:46 +00007200 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00007201 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007202 // NOTE: If the original store is volatile, this transform must not increase
7203 // the number of stores. For example, on x86-32 an f64 can be stored in one
7204 // processor operation but an i64 (which is not legal) requires two. So the
7205 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00007206 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00007207 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00007208 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007209 default: llvm_unreachable("Unknown FP type");
Pete Cooper438c0402012-06-21 18:00:39 +00007210 case MVT::f16: // We don't do this for these yet.
7211 case MVT::f80:
Owen Anderson825b72b2009-08-11 20:47:22 +00007212 case MVT::f128:
7213 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00007214 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007215 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00007216 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007217 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00007218 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00007219 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00007220 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007221 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007222 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00007223 }
7224 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007225 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00007226 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007227 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007228 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00007229 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00007230 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00007231 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007232 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007233 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007234 }
Owen Andersona34d9362011-04-14 17:30:49 +00007235
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007236 if (!ST->isVolatile() &&
7237 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00007238 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00007239 // argument passing. Since this is so common, custom legalize the
7240 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00007241 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007242 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
7243 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00007244 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00007245
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007246 unsigned Alignment = ST->getAlignment();
7247 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00007248 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007249
Bill Wendlingc144a572009-01-30 23:36:47 +00007250 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007251 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007252 isVolatile, isNonTemporal,
7253 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00007254 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00007255 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00007256 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00007257 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007258 Ptr, ST->getPointerInfo().getWithOffset(4),
7259 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00007260 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00007261 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00007262 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00007263 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007264
Chris Lattner62be1a72006-12-12 04:16:14 +00007265 break;
Evan Cheng25ece662006-12-11 17:25:19 +00007266 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007267 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007268 }
7269
Evan Cheng255f20f2010-04-01 06:04:33 +00007270 // Try to infer better alignment information than the store already has.
7271 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007272 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7273 if (Align > ST->getAlignment())
7274 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
7275 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
7276 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007277 }
7278 }
7279
Evan Cheng31959b12011-02-02 01:06:55 +00007280 // Try transforming a pair floating point load / store ops to integer
7281 // load / store ops.
7282 SDValue NewST = TransformFPLoadStorePair(N);
7283 if (NewST.getNode())
7284 return NewST;
7285
Scott Michelfdc40a02009-02-17 22:15:04 +00007286 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007287 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007288 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007289
Jim Laskey6ff23e52006-10-04 16:53:27 +00007290 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007291 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007292 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007293
7294 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007295 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007296 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007297 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007298 ST->getMemoryVT(), ST->isVolatile(),
7299 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007300 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00007301 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007302 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007303 ST->isVolatile(), ST->isNonTemporal(),
7304 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007305 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007306
Jim Laskey279f0532006-09-25 16:29:54 +00007307 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00007308 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007309 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00007310
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007311 // Make sure the new and old chains are cleaned up.
7312 AddToWorkList(Token.getNode());
7313
Jim Laskey274062c2006-10-13 23:32:28 +00007314 // Don't add users to work list.
7315 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007316 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00007317 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007318
Evan Cheng33dbedc2006-11-05 09:31:14 +00007319 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007320 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007321 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00007322
Chris Lattner3c872852007-12-29 06:26:16 +00007323 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00007324 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00007325 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00007326 // See if we can simplify the input to this truncstore with knowledge that
7327 // only the low bits are being used. For example:
7328 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00007329 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007330 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00007331 APInt::getLowBitsSet(
7332 Value.getValueType().getScalarType().getSizeInBits(),
7333 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00007334 AddToWorkList(Value.getNode());
7335 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00007336 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007337 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007338 ST->isVolatile(), ST->isNonTemporal(),
7339 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00007340
Chris Lattnere33544c2007-10-13 06:58:48 +00007341 // Otherwise, see if we can simplify the operation with
7342 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00007343 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00007344 APInt::getLowBitsSet(
7345 Value.getValueType().getScalarType().getSizeInBits(),
7346 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00007347 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00007348 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007349
Chris Lattner3c872852007-12-29 06:26:16 +00007350 // If this is a load followed by a store to the same location, then the store
7351 // is dead/noop.
7352 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007353 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007354 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00007355 // There can't be any side effects between the load and store, such as
7356 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00007357 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00007358 // The store is dead, remove it.
7359 return Chain;
7360 }
7361 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007362
Chris Lattnerddf89562008-01-17 19:59:44 +00007363 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
7364 // truncating store. We can do this even if this is already a truncstore.
7365 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00007366 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007367 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007368 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007369 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007370 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007371 ST->isVolatile(), ST->isNonTemporal(),
7372 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00007373 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007374
Evan Cheng8b944d32009-05-28 00:35:15 +00007375 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00007376}
7377
Dan Gohman475871a2008-07-27 21:46:04 +00007378SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
7379 SDValue InVec = N->getOperand(0);
7380 SDValue InVal = N->getOperand(1);
7381 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00007382 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00007383
Bob Wilson492fd452010-05-19 23:42:58 +00007384 // If the inserted element is an UNDEF, just use the input vector.
7385 if (InVal.getOpcode() == ISD::UNDEF)
7386 return InVec;
7387
Nadav Rotem609d54e2011-02-12 14:40:33 +00007388 EVT VT = InVec.getValueType();
7389
Owen Anderson95771af2011-02-25 21:41:48 +00007390 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00007391 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
7392 return SDValue();
7393
Eli Friedman9db817f2011-09-09 21:04:06 +00007394 // Check that we know which element is being inserted
7395 if (!isa<ConstantSDNode>(EltNo))
7396 return SDValue();
7397 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007398
Eli Friedman9db817f2011-09-09 21:04:06 +00007399 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
7400 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
7401 // vector elements.
7402 SmallVector<SDValue, 8> Ops;
7403 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
7404 Ops.append(InVec.getNode()->op_begin(),
7405 InVec.getNode()->op_end());
7406 } else if (InVec.getOpcode() == ISD::UNDEF) {
7407 unsigned NElts = VT.getVectorNumElements();
7408 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
7409 } else {
7410 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007411 }
Eli Friedman9db817f2011-09-09 21:04:06 +00007412
7413 // Insert the element
7414 if (Elt < Ops.size()) {
7415 // All the operands of BUILD_VECTOR must have the same type;
7416 // we enforce that here.
7417 EVT OpVT = Ops[0].getValueType();
7418 if (InVal.getValueType() != OpVT)
7419 InVal = OpVT.bitsGT(InVal.getValueType()) ?
7420 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
7421 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
7422 Ops[Elt] = InVal;
7423 }
7424
7425 // Return the new vector
7426 return DAG.getNode(ISD::BUILD_VECTOR, dl,
7427 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00007428}
7429
Dan Gohman475871a2008-07-27 21:46:04 +00007430SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007431 // (vextract (scalar_to_vector val, 0) -> val
7432 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00007433 EVT VT = InVec.getValueType();
7434 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007435
Duncan Sandsc356f332011-05-09 08:03:33 +00007436 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
7437 // Check if the result type doesn't match the inserted element type. A
7438 // SCALAR_TO_VECTOR may truncate the inserted element and the
7439 // EXTRACT_VECTOR_ELT may widen the extracted vector.
7440 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00007441 if (InOp.getValueType() != NVT) {
7442 assert(InOp.getValueType().isInteger() && NVT.isInteger());
7443 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
7444 }
7445 return InOp;
7446 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007447
Nadav Rotemba05c912012-01-17 21:44:01 +00007448 SDValue EltNo = N->getOperand(1);
7449 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
7450
7451 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
7452 // We only perform this optimization before the op legalization phase because
7453 // we may introduce new vector instructions which are not backed by TD patterns.
7454 // For example on AVX, extracting elements from a wide vector without using
7455 // extract_subvector.
7456 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
7457 && ConstEltNo && !LegalOperations) {
7458 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
7459 int NumElem = VT.getVectorNumElements();
7460 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
7461 // Find the new index to extract from.
7462 int OrigElt = SVOp->getMaskElt(Elt);
7463
7464 // Extracting an undef index is undef.
7465 if (OrigElt == -1)
7466 return DAG.getUNDEF(NVT);
7467
7468 // Select the right vector half to extract from.
7469 if (OrigElt < NumElem) {
7470 InVec = InVec->getOperand(0);
7471 } else {
7472 InVec = InVec->getOperand(1);
7473 OrigElt -= NumElem;
7474 }
7475
Jim Grosbacha249f7d2012-05-08 20:56:07 +00007476 EVT IndexTy = N->getOperand(1).getValueType();
Nadav Rotemba05c912012-01-17 21:44:01 +00007477 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00007478 InVec, DAG.getConstant(OrigElt, IndexTy));
Nadav Rotemba05c912012-01-17 21:44:01 +00007479 }
7480
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007481 // Perform only after legalization to ensure build_vector / vector_shuffle
7482 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00007483 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007484
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007485 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
7486 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
7487 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00007488
Nadav Rotemba05c912012-01-17 21:44:01 +00007489 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00007490 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00007491 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00007492 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00007493 EVT ExtVT = VT.getVectorElementType();
7494 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00007495
Evan Cheng84387ea2012-03-13 22:00:52 +00007496 // If the result of load has to be truncated, then it's not necessarily
7497 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00007498 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00007499 return SDValue();
7500
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007501 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007502 // Don't duplicate a load with other uses.
7503 if (!InVec.hasOneUse())
7504 return SDValue();
7505
Owen Andersone50ed302009-08-10 22:56:29 +00007506 EVT BCVT = InVec.getOperand(0).getValueType();
7507 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007508 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00007509 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
7510 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007511 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00007512 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007513 NewLoad = true;
7514 }
Evan Cheng513da432007-10-06 08:19:55 +00007515
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007516 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00007517 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00007518 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007519 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00007520 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00007521 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00007522 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007523 // Don't duplicate a load with other uses.
7524 if (!InVec.hasOneUse())
7525 return SDValue();
7526
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007527 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00007528 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007529 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
7530 // =>
7531 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00007532
Eli Friedmand6e25602011-12-26 22:49:32 +00007533 // Don't duplicate a load with other uses.
7534 if (!InVec.hasOneUse())
7535 return SDValue();
7536
Mon P Wanga60b5232008-12-11 00:26:16 +00007537 // If the bit convert changed the number of elements, it is unsafe
7538 // to examine the mask.
7539 if (BCNumEltsChanged)
7540 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00007541
7542 // Select the input vector, guarding against out of range extract vector.
7543 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00007544 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00007545 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
7546
Eli Friedmand6e25602011-12-26 22:49:32 +00007547 if (InVec.getOpcode() == ISD::BITCAST) {
7548 // Don't duplicate a load with other uses.
7549 if (!InVec.hasOneUse())
7550 return SDValue();
7551
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007552 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00007553 }
Gabor Greifba36cb52008-08-28 21:40:38 +00007554 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007555 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00007556 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00007557 }
7558 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007559
Eli Friedmand6e25602011-12-26 22:49:32 +00007560 // Make sure we found a non-volatile load and the extractelement is
7561 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00007562 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00007563 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007564
Eric Christopherd81f17a2010-11-03 20:44:42 +00007565 // If Idx was -1 above, Elt is going to be -1, so just return undef.
7566 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00007567 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00007568
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007569 unsigned Align = LN0->getAlignment();
7570 if (NewLoad) {
7571 // Check the resultant load doesn't need a higher alignment than the
7572 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00007573 unsigned NewAlign =
Eric Christopher503a64d2010-12-09 04:48:06 +00007574 TLI.getTargetData()
7575 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00007576
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007577 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007578 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00007579
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007580 Align = NewAlign;
7581 }
7582
Dan Gohman475871a2008-07-27 21:46:04 +00007583 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00007584 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007585
Eric Christopherd81f17a2010-11-03 20:44:42 +00007586 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00007587 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007588 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007589 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007590 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00007591 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007592 DAG.getConstant(PtrOff, PtrType));
7593 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007594
Eli Friedman4db4add2011-11-16 23:50:22 +00007595 // The replacement we need to do here is a little tricky: we need to
7596 // replace an extractelement of a load with a load.
7597 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00007598 // Note that this replacement assumes that the extractvalue is the only
7599 // use of the load; that's okay because we don't want to perform this
7600 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00007601 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00007602 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00007603 if (NVT.bitsGT(LVT)) {
7604 // If the result type of vextract is wider than the load, then issue an
7605 // extending load instead.
7606 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
7607 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
7608 Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(),
7609 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
7610 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007611 Chain = Load.getValue(1);
7612 } else {
Evan Cheng84387ea2012-03-13 22:00:52 +00007613 Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
7614 LN0->getPointerInfo().getWithOffset(PtrOff),
7615 LN0->isVolatile(), LN0->isNonTemporal(),
7616 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007617 Chain = Load.getValue(1);
7618 if (NVT.bitsLT(LVT))
7619 Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load);
7620 else
7621 Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load);
7622 }
Eli Friedman4db4add2011-11-16 23:50:22 +00007623 WorkListRemover DeadNodes(*this);
7624 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00007625 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007626 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedman4db4add2011-11-16 23:50:22 +00007627 // Since we're explcitly calling ReplaceAllUses, add the new node to the
7628 // worklist explicitly as well.
7629 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00007630 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00007631 // Make sure to revisit this node to clean it up; it will usually be dead.
7632 AddToWorkList(N);
7633 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00007634 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007635
Dan Gohman475871a2008-07-27 21:46:04 +00007636 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00007637}
Evan Cheng513da432007-10-06 08:19:55 +00007638
Dan Gohman475871a2008-07-27 21:46:04 +00007639SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007640 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007641 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007642 EVT VT = N->getValueType(0);
Nadav Rotemb87bdac2012-07-15 08:38:23 +00007643
7644 // A vector built entirely of undefs is undef.
7645 if (ISD::allOperandsUndef(N))
7646 return DAG.getUNDEF(VT);
7647
Nadav Rotemb00418a2011-10-29 21:23:04 +00007648 // Check to see if this is a BUILD_VECTOR of a bunch of values
7649 // which come from any_extend or zero_extend nodes. If so, we can create
7650 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00007651 // optimizations. We do not handle sign-extend because we can't fill the sign
7652 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007653 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00007654 bool AllAnyExt = true;
Nadav Rotemb87bdac2012-07-15 08:38:23 +00007655
Craig Topperd3b58892012-01-17 09:09:48 +00007656 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007657 SDValue In = N->getOperand(i);
7658 // Ignore undef inputs.
7659 if (In.getOpcode() == ISD::UNDEF) continue;
7660
7661 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
7662 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
7663
Nadav Rotemf47368b2011-10-31 20:08:25 +00007664 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007665 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00007666 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007667 break;
7668 }
7669
7670 // The input is a ZeroExt or AnyExt. Check the original type.
7671 EVT InTy = In.getOperand(0).getValueType();
7672
7673 // Check that all of the widened source types are the same.
7674 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007675 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007676 SourceType = InTy;
7677 else if (InTy != SourceType) {
7678 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007679 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007680 break;
7681 }
7682
7683 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00007684 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007685 }
7686
Nadav Rotemf47368b2011-10-31 20:08:25 +00007687 // In order to have valid types, all of the inputs must be extended from the
7688 // same source type and all of the inputs must be any or zero extend.
7689 // Scalar sizes must be a power of two.
7690 EVT OutScalarTy = N->getValueType(0).getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007691 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00007692 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
7693 isPowerOf2_32(SourceType.getSizeInBits());
7694
7695 // We perform this optimization post type-legalization because
7696 // the type-legalizer often scalarizes integer-promoted vectors.
7697 // Performing this optimization before may create bit-casts which
7698 // will be type-legalized to complex code sequences.
7699 // We perform this optimization only before the operation legalizer because we
7700 // may introduce illegal operations.
Nadav Rotem6431ff92012-03-15 08:49:06 +00007701 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
7702 // turn into a single shuffle instruction.
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007703 if ((Level == AfterLegalizeVectorOps || Level == AfterLegalizeTypes) &&
7704 ValidTypes) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007705 bool isLE = TLI.isLittleEndian();
Nadav Rotemf47368b2011-10-31 20:08:25 +00007706 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007707 assert(ElemRatio > 1 && "Invalid element size ratio");
Craig Topperd3b58892012-01-17 09:09:48 +00007708 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
Nadav Rotemf47368b2011-10-31 20:08:25 +00007709 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007710
7711 unsigned NewBVElems = ElemRatio * N->getValueType(0).getVectorNumElements();
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007712 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007713
7714 // Populate the new build_vector
7715 for (unsigned i=0; i < N->getNumOperands(); ++i) {
7716 SDValue Cast = N->getOperand(i);
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007717 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
7718 Cast.getOpcode() == ISD::ZERO_EXTEND ||
7719 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
Nadav Rotemb00418a2011-10-29 21:23:04 +00007720 SDValue In;
7721 if (Cast.getOpcode() == ISD::UNDEF)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007722 In = DAG.getUNDEF(SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007723 else
7724 In = Cast->getOperand(0);
7725 unsigned Index = isLE ? (i * ElemRatio) :
7726 (i * ElemRatio + (ElemRatio - 1));
7727
7728 assert(Index < Ops.size() && "Invalid index");
7729 Ops[Index] = In;
7730 }
7731
7732 // The type of the new BUILD_VECTOR node.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007733 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007734 assert(VecVT.getSizeInBits() == N->getValueType(0).getSizeInBits() &&
7735 "Invalid vector size");
Nadav Rotemf47368b2011-10-31 20:08:25 +00007736 // Check if the new vector type is legal.
7737 if (!isTypeLegal(VecVT)) return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007738
7739 // Make the new BUILD_VECTOR.
7740 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7741 VecVT, &Ops[0], Ops.size());
7742
Nadav Rotem6431ff92012-03-15 08:49:06 +00007743 // The new BUILD_VECTOR node has the potential to be further optimized.
7744 AddToWorkList(BV.getNode());
Nadav Rotemb00418a2011-10-29 21:23:04 +00007745 // Bitcast to the desired type.
7746 return DAG.getNode(ISD::BITCAST, dl, N->getValueType(0), BV);
7747 }
Chris Lattnerca242442006-03-19 01:27:56 +00007748
Dan Gohman7f321562007-06-25 16:23:39 +00007749 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
7750 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
7751 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00007752
7753 // May only combine to shuffle after legalize if shuffle is legal.
7754 if (LegalOperations &&
7755 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
7756 return SDValue();
7757
Dan Gohman475871a2008-07-27 21:46:04 +00007758 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007759 for (unsigned i = 0; i != NumInScalars; ++i) {
7760 // Ignore undef inputs.
7761 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007762
Dan Gohman7f321562007-06-25 16:23:39 +00007763 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00007764 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00007765 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00007766 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00007767 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007768 break;
7769 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007770
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007771 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00007772 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007773 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
7774 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007775
Gabor Greifba36cb52008-08-28 21:40:38 +00007776 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007777 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00007778 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007779 VecIn2 = ExtractedFromVec;
7780 } else {
7781 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007782 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007783 break;
7784 }
7785 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007786
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007787 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00007788 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007789 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007790 for (unsigned i = 0; i != NumInScalars; ++i) {
7791 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007792 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007793 continue;
7794 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007795
Rafael Espindola15684b22009-04-24 12:40:33 +00007796 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00007797 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00007798 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007799 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00007800 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
7801 if (ExtIndex > VT.getVectorNumElements())
7802 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007803
Nate Begeman5a5ca152009-04-29 05:20:52 +00007804 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007805 continue;
7806 }
7807
7808 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00007809 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007810 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007811 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007812
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007813 // We can't generate a shuffle node with mismatched input and output types.
7814 // Attempt to transform a single input vector to the correct type.
7815 if ((VT != VecIn1.getValueType())) {
7816 // We don't support shuffeling between TWO values of different types.
7817 if (VecIn2.getNode() != 0)
7818 return SDValue();
7819
7820 // We only support widening of vectors which are half the size of the
7821 // output registers. For example XMM->YMM widening on X86 with AVX.
7822 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
7823 return SDValue();
7824
7825 // Widen the input vector by adding undef values.
7826 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
7827 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
7828 }
7829
7830 // If VecIn2 is unused then change it to undef.
7831 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
7832
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007833 // Check that we were able to transform all incoming values to the same type.
7834 if (VecIn2.getValueType() != VecIn1.getValueType() ||
7835 VecIn1.getValueType() != VT)
7836 return SDValue();
7837
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007838 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007839 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00007840 return SDValue();
7841
Dan Gohman7f321562007-06-25 16:23:39 +00007842 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00007843 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00007844 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007845 Ops[1] = VecIn2;
Nate Begeman9008ca62009-04-27 18:41:29 +00007846 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007847 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007848
Dan Gohman475871a2008-07-27 21:46:04 +00007849 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00007850}
7851
Dan Gohman475871a2008-07-27 21:46:04 +00007852SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007853 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
7854 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
7855 // inputs come from at most two distinct vectors, turn this into a shuffle
7856 // node.
7857
7858 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00007859 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00007860 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007861
Nadav Rotemb7e230d2012-07-14 21:30:27 +00007862 // Check if all of the operands are undefs.
Nadav Rotemb87bdac2012-07-15 08:38:23 +00007863 if (ISD::allOperandsUndef(N))
Nadav Rotemb7e230d2012-07-14 21:30:27 +00007864 return DAG.getUNDEF(N->getValueType(0));
7865
Dan Gohman475871a2008-07-27 21:46:04 +00007866 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007867}
7868
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007869SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
7870 EVT NVT = N->getValueType(0);
7871 SDValue V = N->getOperand(0);
7872
7873 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
7874 // Handle only simple case where vector being inserted and vector
7875 // being extracted are of same type, and are half size of larger vectors.
7876 EVT BigVT = V->getOperand(0).getValueType();
7877 EVT SmallVT = V->getOperand(1).getValueType();
7878 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
7879 return SDValue();
7880
Eli Friedman26323442011-12-07 00:11:56 +00007881 // Only handle cases where both indexes are constants with the same type.
7882 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
7883 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007884
Eli Friedman26323442011-12-07 00:11:56 +00007885 if (InsIdx && ExtIdx &&
7886 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
7887 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
7888 // Combine:
7889 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
7890 // Into:
7891 // indices are equal => V1
7892 // otherwise => (extract_subvec V1, ExtIdx)
7893 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
7894 return V->getOperand(1);
7895 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
7896 V->getOperand(0), N->getOperand(1));
7897 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007898 }
7899
7900 return SDValue();
7901}
7902
Dan Gohman475871a2008-07-27 21:46:04 +00007903SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007904 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007905 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007906
Mon P Wangaeb06d22008-11-10 04:46:22 +00007907 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00007908 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007909
Craig Topperae1bec52012-04-09 05:16:56 +00007910 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00007911
Craig Topper481b79c2012-01-04 08:07:43 +00007912 // Canonicalize shuffle undef, undef -> undef
7913 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
7914 return DAG.getUNDEF(VT);
7915
7916 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7917
7918 // Canonicalize shuffle v, v -> v, undef
7919 if (N0 == N1) {
7920 SmallVector<int, 8> NewMask;
7921 for (unsigned i = 0; i != NumElts; ++i) {
7922 int Idx = SVN->getMaskElt(i);
7923 if (Idx >= (int)NumElts) Idx -= NumElts;
7924 NewMask.push_back(Idx);
7925 }
7926 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
7927 &NewMask[0]);
7928 }
7929
7930 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
7931 if (N0.getOpcode() == ISD::UNDEF) {
7932 SmallVector<int, 8> NewMask;
7933 for (unsigned i = 0; i != NumElts; ++i) {
7934 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00007935 if (Idx >= 0) {
7936 if (Idx < (int)NumElts)
7937 Idx += NumElts;
7938 else
7939 Idx -= NumElts;
7940 }
7941 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00007942 }
7943 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
7944 &NewMask[0]);
7945 }
7946
7947 // Remove references to rhs if it is undef
7948 if (N1.getOpcode() == ISD::UNDEF) {
7949 bool Changed = false;
7950 SmallVector<int, 8> NewMask;
7951 for (unsigned i = 0; i != NumElts; ++i) {
7952 int Idx = SVN->getMaskElt(i);
7953 if (Idx >= (int)NumElts) {
7954 Idx = -1;
7955 Changed = true;
7956 }
7957 NewMask.push_back(Idx);
7958 }
7959 if (Changed)
7960 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
7961 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00007962
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007963 // If it is a splat, check if the argument vector is another splat or a
7964 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007965 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007966 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00007967
Dan Gohman7f321562007-06-25 16:23:39 +00007968 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00007969 // not the number of vector elements, look through it. Be careful not to
7970 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007971 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00007972 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00007973 if (ConvInput.getValueType().isVector() &&
7974 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00007975 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00007976 }
7977
Dan Gohman7f321562007-06-25 16:23:39 +00007978 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007979 assert(V->getNumOperands() == NumElts &&
7980 "BUILD_VECTOR has wrong number of operands");
7981 SDValue Base;
7982 bool AllSame = true;
7983 for (unsigned i = 0; i != NumElts; ++i) {
7984 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
7985 Base = V->getOperand(i);
7986 break;
Evan Cheng917ec982006-07-21 08:25:53 +00007987 }
Evan Cheng917ec982006-07-21 08:25:53 +00007988 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007989 // Splat of <u, u, u, u>, return <u, u, u, u>
7990 if (!Base.getNode())
7991 return N0;
7992 for (unsigned i = 0; i != NumElts; ++i) {
7993 if (V->getOperand(i) != Base) {
7994 AllSame = false;
7995 break;
7996 }
7997 }
7998 // Splat of <x, x, x, x>, return <x, x, x, x>
7999 if (AllSame)
8000 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00008001 }
8002 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00008003
8004 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008005 // and it reverses the swizzle of the previous shuffle then we can
8006 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00008007 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
8008 N1.getOpcode() == ISD::UNDEF) {
8009
Nadav Rotem4ac90812012-04-01 19:31:22 +00008010 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
8011
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008012 // Shuffle nodes can only reverse shuffles with a single non-undef value.
8013 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
8014 return SDValue();
8015
Craig Topperae1bec52012-04-09 05:16:56 +00008016 // The incoming shuffle must be of the same type as the result of the
8017 // current shuffle.
8018 assert(OtherSV->getOperand(0).getValueType() == VT &&
8019 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00008020
8021 for (unsigned i = 0; i != NumElts; ++i) {
8022 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00008023 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00008024 // Next, this index comes from the first value, which is the incoming
8025 // shuffle. Adopt the incoming index.
8026 if (Idx >= 0)
8027 Idx = OtherSV->getMaskElt(Idx);
8028
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008029 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00008030 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008031 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00008032 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008033
8034 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00008035 }
8036
Dan Gohman475871a2008-07-27 21:46:04 +00008037 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00008038}
8039
Jim Grosbach9a526492010-06-23 16:07:42 +00008040SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
8041 if (!TLI.getShouldFoldAtomicFences())
8042 return SDValue();
8043
8044 SDValue atomic = N->getOperand(0);
8045 switch (atomic.getOpcode()) {
8046 case ISD::ATOMIC_CMP_SWAP:
8047 case ISD::ATOMIC_SWAP:
8048 case ISD::ATOMIC_LOAD_ADD:
8049 case ISD::ATOMIC_LOAD_SUB:
8050 case ISD::ATOMIC_LOAD_AND:
8051 case ISD::ATOMIC_LOAD_OR:
8052 case ISD::ATOMIC_LOAD_XOR:
8053 case ISD::ATOMIC_LOAD_NAND:
8054 case ISD::ATOMIC_LOAD_MIN:
8055 case ISD::ATOMIC_LOAD_MAX:
8056 case ISD::ATOMIC_LOAD_UMIN:
8057 case ISD::ATOMIC_LOAD_UMAX:
8058 break;
8059 default:
8060 return SDValue();
8061 }
8062
8063 SDValue fence = atomic.getOperand(0);
8064 if (fence.getOpcode() != ISD::MEMBARRIER)
8065 return SDValue();
8066
8067 switch (atomic.getOpcode()) {
8068 case ISD::ATOMIC_CMP_SWAP:
8069 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
8070 fence.getOperand(0),
8071 atomic.getOperand(1), atomic.getOperand(2),
8072 atomic.getOperand(3)), atomic.getResNo());
8073 case ISD::ATOMIC_SWAP:
8074 case ISD::ATOMIC_LOAD_ADD:
8075 case ISD::ATOMIC_LOAD_SUB:
8076 case ISD::ATOMIC_LOAD_AND:
8077 case ISD::ATOMIC_LOAD_OR:
8078 case ISD::ATOMIC_LOAD_XOR:
8079 case ISD::ATOMIC_LOAD_NAND:
8080 case ISD::ATOMIC_LOAD_MIN:
8081 case ISD::ATOMIC_LOAD_MAX:
8082 case ISD::ATOMIC_LOAD_UMIN:
8083 case ISD::ATOMIC_LOAD_UMAX:
8084 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
8085 fence.getOperand(0),
8086 atomic.getOperand(1), atomic.getOperand(2)),
8087 atomic.getResNo());
8088 default:
8089 return SDValue();
8090 }
8091}
8092
Evan Cheng44f1f092006-04-20 08:56:16 +00008093/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00008094/// an AND to a vector_shuffle with the destination vector and a zero vector.
8095/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00008096/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00008097SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00008098 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00008099 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008100 SDValue LHS = N->getOperand(0);
8101 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00008102 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008103 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00008104 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00008105 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008106 SmallVector<int, 8> Indices;
8107 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00008108 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008109 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00008110 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00008111 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00008112
8113 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00008114 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00008115 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00008116 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00008117 else
Dan Gohman475871a2008-07-27 21:46:04 +00008118 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008119 }
8120
8121 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00008122 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00008123 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008124 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008125
Dan Gohman7f321562007-06-25 16:23:39 +00008126 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00008127 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00008128 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00008129 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00008130 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8131 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008132 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00008133 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008134 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00008135 }
8136 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008137
Dan Gohman475871a2008-07-27 21:46:04 +00008138 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008139}
8140
Dan Gohman7f321562007-06-25 16:23:39 +00008141/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00008142SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00008143 // After legalize, the target may be depending on adds and other
8144 // binary ops to provide legal ways to construct constants or other
8145 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00008146 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00008147
Bob Wilsond7273432010-12-17 23:06:49 +00008148 assert(N->getValueType(0).isVector() &&
8149 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00008150
Dan Gohman475871a2008-07-27 21:46:04 +00008151 SDValue LHS = N->getOperand(0);
8152 SDValue RHS = N->getOperand(1);
8153 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00008154 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00008155
Dan Gohman7f321562007-06-25 16:23:39 +00008156 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00008157 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00008158 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00008159 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00008160 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00008161 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008162 SDValue LHSOp = LHS.getOperand(i);
8163 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00008164 // If these two elements can't be folded, bail out.
8165 if ((LHSOp.getOpcode() != ISD::UNDEF &&
8166 LHSOp.getOpcode() != ISD::Constant &&
8167 LHSOp.getOpcode() != ISD::ConstantFP) ||
8168 (RHSOp.getOpcode() != ISD::UNDEF &&
8169 RHSOp.getOpcode() != ISD::Constant &&
8170 RHSOp.getOpcode() != ISD::ConstantFP))
8171 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008172
Evan Cheng7b336a82006-05-31 06:08:35 +00008173 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00008174 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
8175 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00008176 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008177 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00008178 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008179 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00008180 break;
8181 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008182
Bob Wilsond7273432010-12-17 23:06:49 +00008183 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00008184 EVT RVT = RHSOp.getValueType();
8185 if (RVT != VT) {
8186 // Integer BUILD_VECTOR operands may have types larger than the element
8187 // size (e.g., when the element type is not legal). Prior to type
8188 // legalization, the types may not match between the two BUILD_VECTORS.
8189 // Truncate one of the operands to make them match.
8190 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
8191 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
8192 } else {
8193 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
8194 VT = RVT;
8195 }
8196 }
Bob Wilsond7273432010-12-17 23:06:49 +00008197 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00008198 LHSOp, RHSOp);
8199 if (FoldOp.getOpcode() != ISD::UNDEF &&
8200 FoldOp.getOpcode() != ISD::Constant &&
8201 FoldOp.getOpcode() != ISD::ConstantFP)
8202 break;
8203 Ops.push_back(FoldOp);
8204 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00008205 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008206
Bob Wilsond7273432010-12-17 23:06:49 +00008207 if (Ops.size() == LHS.getNumOperands())
8208 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8209 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00008210 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008211
Dan Gohman475871a2008-07-27 21:46:04 +00008212 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00008213}
8214
Bill Wendling836ca7d2009-01-30 23:59:18 +00008215SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
8216 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00008217 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008218
Bill Wendling836ca7d2009-01-30 23:59:18 +00008219 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00008220 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008221
Nate Begemanf845b452005-10-08 00:29:44 +00008222 // If we got a simplified select_cc node back from SimplifySelectCC, then
8223 // break it down into a new SETCC node, and a new SELECT node, and then return
8224 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00008225 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008226 // Check to see if we got a select_cc back (to turn into setcc/select).
8227 // Otherwise, just return whatever node we got back, like fabs.
8228 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008229 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
8230 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008231 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008232 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00008233 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008234 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
8235 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00008236 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008237
Nate Begemanf845b452005-10-08 00:29:44 +00008238 return SCC;
8239 }
Dan Gohman475871a2008-07-27 21:46:04 +00008240 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008241}
8242
Chris Lattner40c62d52005-10-18 06:04:22 +00008243/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
8244/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00008245/// select. Callers of this should assume that TheSelect is deleted if this
8246/// returns true. As such, they should return the appropriate thing (e.g. the
8247/// node) back to the top-level of the DAG combiner loop to avoid it being
8248/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00008249bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00008250 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008251
Nadav Rotemf94fdb62011-02-11 19:57:47 +00008252 // Cannot simplify select with vector condition
8253 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
8254
Chris Lattner40c62d52005-10-18 06:04:22 +00008255 // If this is a select from two identical things, try to pull the operation
8256 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00008257 if (LHS.getOpcode() != RHS.getOpcode() ||
8258 !LHS.hasOneUse() || !RHS.hasOneUse())
8259 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008260
Chris Lattner18061612010-09-21 15:46:59 +00008261 // If this is a load and the token chain is identical, replace the select
8262 // of two loads with a load through a select of the address to load from.
8263 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
8264 // constants have been dropped into the constant pool.
8265 if (LHS.getOpcode() == ISD::LOAD) {
8266 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
8267 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008268
Chris Lattner18061612010-09-21 15:46:59 +00008269 // Token chains must be identical.
8270 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008271 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00008272 LLD->isVolatile() || RLD->isVolatile() ||
8273 // If this is an EXTLOAD, the VT's must match.
8274 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00008275 // If this is an EXTLOAD, the kind of extension must match.
8276 (LLD->getExtensionType() != RLD->getExtensionType() &&
8277 // The only exception is if one of the extensions is anyext.
8278 LLD->getExtensionType() != ISD::EXTLOAD &&
8279 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00008280 // FIXME: this discards src value information. This is
8281 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00008282 // both potential memory locations. Since we are discarding
8283 // src value info, don't do the transformation if the memory
8284 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00008285 LLD->getPointerInfo().getAddrSpace() != 0 ||
8286 RLD->getPointerInfo().getAddrSpace() != 0)
8287 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008288
Chris Lattnerf1658062010-09-21 15:58:55 +00008289 // Check that the select condition doesn't reach either load. If so,
8290 // folding this will induce a cycle into the DAG. If not, this is safe to
8291 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00008292 SDValue Addr;
8293 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00008294 SDNode *CondNode = TheSelect->getOperand(0).getNode();
8295 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
8296 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
8297 return false;
8298 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
8299 LLD->getBasePtr().getValueType(),
8300 TheSelect->getOperand(0), LLD->getBasePtr(),
8301 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00008302 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00008303 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
8304 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
8305
8306 if ((LLD->hasAnyUseOfValue(1) &&
8307 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00008308 (RLD->hasAnyUseOfValue(1) &&
8309 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00008310 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008311
Chris Lattnerf1658062010-09-21 15:58:55 +00008312 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
8313 LLD->getBasePtr().getValueType(),
8314 TheSelect->getOperand(0),
8315 TheSelect->getOperand(1),
8316 LLD->getBasePtr(), RLD->getBasePtr(),
8317 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00008318 }
8319
Chris Lattnerf1658062010-09-21 15:58:55 +00008320 SDValue Load;
8321 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
8322 Load = DAG.getLoad(TheSelect->getValueType(0),
8323 TheSelect->getDebugLoc(),
8324 // FIXME: Discards pointer info.
8325 LLD->getChain(), Addr, MachinePointerInfo(),
8326 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008327 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00008328 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00008329 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
8330 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00008331 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00008332 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00008333 // FIXME: Discards pointer info.
8334 LLD->getChain(), Addr, MachinePointerInfo(),
8335 LLD->getMemoryVT(), LLD->isVolatile(),
8336 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00008337 }
Chris Lattnerf1658062010-09-21 15:58:55 +00008338
8339 // Users of the select now use the result of the load.
8340 CombineTo(TheSelect, Load);
8341
8342 // Users of the old loads now use the new load's chain. We know the
8343 // old-load value is dead now.
8344 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
8345 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
8346 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00008347 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008348
Chris Lattner40c62d52005-10-18 06:04:22 +00008349 return false;
8350}
8351
Chris Lattner600fec32009-03-11 05:08:08 +00008352/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
8353/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00008354SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00008355 SDValue N2, SDValue N3,
8356 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00008357 // (x ? y : y) -> y.
8358 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008359
Owen Andersone50ed302009-08-10 22:56:29 +00008360 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00008361 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
8362 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
8363 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008364
8365 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00008366 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008367 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00008368 if (SCC.getNode()) AddToWorkList(SCC.getNode());
8369 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008370
8371 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00008372 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008373 return N2;
8374 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00008375 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008376 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00008377
Nate Begemanf845b452005-10-08 00:29:44 +00008378 // Check to see if we can simplify the select into an fabs node
8379 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
8380 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00008381 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008382 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
8383 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
8384 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
8385 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008386 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008387
Nate Begemanf845b452005-10-08 00:29:44 +00008388 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
8389 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
8390 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
8391 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008392 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00008393 }
8394 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008395
Chris Lattner600fec32009-03-11 05:08:08 +00008396 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
8397 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
8398 // in it. This is a win when the constant is not otherwise available because
8399 // it replaces two constant pool loads with one. We only do this if the FP
8400 // type is known to be legal, because if it isn't, then we are before legalize
8401 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00008402 // messing with soft float) and if the ConstantFP is not legal, because if
8403 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00008404 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
8405 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
8406 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00008407 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
8408 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00008409 // If both constants have multiple uses, then we won't need to do an
8410 // extra load, they are likely around in registers for other users.
8411 (TV->hasOneUse() || FV->hasOneUse())) {
8412 Constant *Elts[] = {
8413 const_cast<ConstantFP*>(FV->getConstantFPValue()),
8414 const_cast<ConstantFP*>(TV->getConstantFPValue())
8415 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008416 Type *FPTy = Elts[0]->getType();
Chris Lattner600fec32009-03-11 05:08:08 +00008417 const TargetData &TD = *TLI.getTargetData();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008418
Chris Lattner600fec32009-03-11 05:08:08 +00008419 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00008420 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00008421 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
8422 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00008423 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00008424
8425 // Get the offsets to the 0 and 1 element of the array so that we can
8426 // select between them.
8427 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00008428 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00008429 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008430
Chris Lattner600fec32009-03-11 05:08:08 +00008431 SDValue Cond = DAG.getSetCC(DL,
8432 TLI.getSetCCResultType(N0.getValueType()),
8433 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00008434 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008435 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
8436 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00008437 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008438 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
8439 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00008440 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008441 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00008442 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008443 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00008444
8445 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008446 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008447
Nate Begemanf845b452005-10-08 00:29:44 +00008448 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00008449 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00008450 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00008451 (N1C->isNullValue() || // (a < 0) ? b : 0
8452 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00008453 EVT XType = N0.getValueType();
8454 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00008455 if (XType.bitsGE(AType)) {
Nate Begemanf845b452005-10-08 00:29:44 +00008456 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00008457 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00008458 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
8459 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008460 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00008461 SDValue ShCt = DAG.getConstant(ShCtV,
8462 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00008463 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008464 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00008465 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008466
Duncan Sands8e4eb092008-06-08 20:54:56 +00008467 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008468 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008469 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008470 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008471
8472 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008473 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008474
Bill Wendling9729c5a2009-01-31 03:12:48 +00008475 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008476 XType, N0,
8477 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008478 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00008479 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008480
Duncan Sands8e4eb092008-06-08 20:54:56 +00008481 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008482 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008483 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008484 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008485
8486 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008487 }
8488 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008489
Owen Andersoned1088a2010-09-22 22:58:22 +00008490 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
8491 // where y is has a single bit set.
8492 // A plaintext description would be, we can turn the SELECT_CC into an AND
8493 // when the condition can be materialized as an all-ones register. Any
8494 // single bit-test can be materialized as an all-ones register with
8495 // shift-left and shift-right-arith.
8496 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
8497 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008498 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00008499 N2C && N2C->isNullValue()) {
8500 SDValue AndLHS = N0->getOperand(0);
8501 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
8502 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
8503 // Shift the tested bit over the sign bit.
8504 APInt AndMask = ConstAndRHS->getAPIntValue();
8505 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008506 DAG.getConstant(AndMask.countLeadingZeros(),
8507 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008508 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008509
Owen Andersoned1088a2010-09-22 22:58:22 +00008510 // Now arithmetic right shift it all the way over, so the result is either
8511 // all-ones, or zero.
8512 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008513 DAG.getConstant(AndMask.getBitWidth()-1,
8514 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008515 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008516
Owen Andersoned1088a2010-09-22 22:58:22 +00008517 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
8518 }
8519 }
8520
Nate Begeman07ed4172005-10-10 21:26:48 +00008521 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00008522 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00008523 TLI.getBooleanContents(N0.getValueType().isVector()) ==
8524 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008525
Chris Lattner1eba01e2007-04-11 06:50:51 +00008526 // If the caller doesn't want us to simplify this into a zext of a compare,
8527 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00008528 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00008529 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008530
Nate Begeman07ed4172005-10-10 21:26:48 +00008531 // Get a SetCC of the condition
8532 // FIXME: Should probably make sure that setcc is legal if we ever have a
8533 // target where it isn't.
Dan Gohman475871a2008-07-27 21:46:04 +00008534 SDValue Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00008535 // cast from setcc result type to select result type
Duncan Sands25cf2272008-11-24 14:53:14 +00008536 if (LegalTypes) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008537 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00008538 N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00008539 if (N2.getValueType().bitsLT(SCC.getValueType()))
Bill Wendling9729c5a2009-01-31 03:12:48 +00008540 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
Chris Lattner555d8d62006-12-07 22:36:47 +00008541 else
Bill Wendling9729c5a2009-01-31 03:12:48 +00008542 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008543 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008544 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00008545 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00008546 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008547 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008548 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008549
Gabor Greifba36cb52008-08-28 21:40:38 +00008550 AddToWorkList(SCC.getNode());
8551 AddToWorkList(Temp.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00008552
Dan Gohman002e5d02008-03-13 22:13:53 +00008553 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00008554 return Temp;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008555
Nate Begeman07ed4172005-10-10 21:26:48 +00008556 // shl setcc result by log2 n2c
Bill Wendling836ca7d2009-01-30 23:59:18 +00008557 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00008558 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00008559 getShiftAmountTy(Temp.getValueType())));
Nate Begeman07ed4172005-10-10 21:26:48 +00008560 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008561
Nate Begemanf845b452005-10-08 00:29:44 +00008562 // Check to see if this is the equivalent of setcc
8563 // FIXME: Turn all of these into setcc if setcc if setcc is legal
8564 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00008565 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00008566 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00008567 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00008568 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008569 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00008570 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008571 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00008572 return Res;
8573 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008574
Bill Wendling836ca7d2009-01-30 23:59:18 +00008575 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00008576 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008577 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00008578 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008579 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008580 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008581 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00008582 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00008583 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008584 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00008585 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008586 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
8587 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00008588 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00008589 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00008590 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00008591 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008592 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00008593 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008594 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00008595 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008596 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00008597 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008598 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00008599 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00008600 }
8601 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008602
Benjamin Kramercde51102010-07-08 12:09:56 +00008603 // Check to see if this is an integer abs.
8604 // select_cc setg[te] X, 0, X, -X ->
8605 // select_cc setgt X, -1, X, -X ->
8606 // select_cc setl[te] X, 0, -X, X ->
8607 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00008608 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00008609 if (N1C) {
8610 ConstantSDNode *SubC = NULL;
8611 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
8612 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
8613 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
8614 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
8615 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
8616 (N1C->isOne() && CC == ISD::SETLT)) &&
8617 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
8618 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
8619
Owen Andersone50ed302009-08-10 22:56:29 +00008620 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00008621 if (SubC && SubC->isNullValue() && XType.isInteger()) {
8622 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
8623 N0,
8624 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008625 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00008626 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
8627 XType, N0, Shift);
8628 AddToWorkList(Shift.getNode());
8629 AddToWorkList(Add.getNode());
8630 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00008631 }
8632 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008633
Dan Gohman475871a2008-07-27 21:46:04 +00008634 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008635}
8636
Evan Chengfa1eb272007-02-08 22:13:59 +00008637/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00008638SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00008639 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008640 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008641 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00008642 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008643 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00008644}
8645
Nate Begeman69575232005-10-20 02:15:44 +00008646/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
8647/// return a DAG expression to select that will generate the same value by
8648/// multiplying by a magic number. See:
8649/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008650SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008651 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008652 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008653
Andrew Lenharth232c9102006-06-12 16:07:18 +00008654 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008655 ii != ee; ++ii)
8656 AddToWorkList(*ii);
8657 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008658}
8659
8660/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
8661/// return a DAG expression to select that will generate the same value by
8662/// multiplying by a magic number. See:
8663/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008664SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008665 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008666 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00008667
Andrew Lenharth232c9102006-06-12 16:07:18 +00008668 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008669 ii != ee; ++ii)
8670 AddToWorkList(*ii);
8671 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008672}
8673
Nate Begemancc66cdd2009-09-25 06:05:26 +00008674/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00008675// to alias with anything but itself. Provides base object and offset as
8676// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008677static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Dan Gohman46510a72010-04-15 01:51:59 +00008678 const GlobalValue *&GV, void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00008679 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008680 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008681
Jim Laskey71382342006-10-07 23:37:56 +00008682 // If it's an adding a simple constant then integrate the offset.
8683 if (Base.getOpcode() == ISD::ADD) {
8684 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
8685 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008686 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00008687 }
8688 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008689
Nate Begemancc66cdd2009-09-25 06:05:26 +00008690 // Return the underlying GlobalValue, and update the Offset. Return false
8691 // for GlobalAddressSDNode since the same GlobalAddress may be represented
8692 // by multiple nodes with different offsets.
8693 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
8694 GV = G->getGlobal();
8695 Offset += G->getOffset();
8696 return false;
8697 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008698
Nate Begemancc66cdd2009-09-25 06:05:26 +00008699 // Return the underlying Constant value, and update the Offset. Return false
8700 // for ConstantSDNodes since the same constant pool entry may be represented
8701 // by multiple nodes with different offsets.
8702 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
8703 CV = C->isMachineConstantPoolEntry() ? (void *)C->getMachineCPVal()
8704 : (void *)C->getConstVal();
8705 Offset += C->getOffset();
8706 return false;
8707 }
Jim Laskey71382342006-10-07 23:37:56 +00008708 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008709 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00008710}
8711
8712/// isAlias - Return true if there is any possibility that the two addresses
8713/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00008714bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00008715 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008716 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008717 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00008718 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008719 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008720 unsigned SrcValueAlign2,
8721 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00008722 // If they are the same then they must be aliases.
8723 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00008724
Jim Laskey71382342006-10-07 23:37:56 +00008725 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00008726 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00008727 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00008728 const GlobalValue *GV1, *GV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00008729 void *CV1, *CV2;
8730 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
8731 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00008732
Nate Begemancc66cdd2009-09-25 06:05:26 +00008733 // If they have a same base address then check to see if they overlap.
8734 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008735 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008736
Owen Anderson4a9f1502010-09-20 20:39:59 +00008737 // It is possible for different frame indices to alias each other, mostly
8738 // when tail call optimization reuses return address slots for arguments.
8739 // To catch this case, look up the actual index of frame indices to compute
8740 // the real alias relationship.
8741 if (isFrameIndex1 && isFrameIndex2) {
8742 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8743 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
8744 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
8745 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
8746 }
8747
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008748 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00008749 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008750 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
8751 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00008752
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008753 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
8754 // compared to the size and offset of the access, we may be able to prove they
8755 // do not alias. This check is conservative for now to catch cases created by
8756 // splitting vector types.
8757 if ((SrcValueAlign1 == SrcValueAlign2) &&
8758 (SrcValueOffset1 != SrcValueOffset2) &&
8759 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
8760 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
8761 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008762
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008763 // There is no overlap between these relatively aligned accesses of similar
8764 // size, return no alias.
8765 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
8766 return false;
8767 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008768
Jim Laskey07a27092006-10-18 19:08:31 +00008769 if (CombinerGlobalAA) {
8770 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00008771 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
8772 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
8773 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00008774 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008775 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
8776 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00008777 if (AAResult == AliasAnalysis::NoAlias)
8778 return false;
8779 }
Jim Laskey096c22e2006-10-18 12:29:57 +00008780
8781 // Otherwise we have to assume they alias.
8782 return true;
Jim Laskey71382342006-10-07 23:37:56 +00008783}
8784
8785/// FindAliasInfo - Extracts the relevant alias information from the memory
8786/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00008787bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00008788 SDValue &Ptr, int64_t &Size,
8789 const Value *&SrcValue,
8790 int &SrcValueOffset,
8791 unsigned &SrcValueAlign,
8792 const MDNode *&TBAAInfo) const {
8793 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
8794
8795 Ptr = LS->getBasePtr();
8796 Size = LS->getMemoryVT().getSizeInBits() >> 3;
8797 SrcValue = LS->getSrcValue();
8798 SrcValueOffset = LS->getSrcValueOffset();
8799 SrcValueAlign = LS->getOriginalAlignment();
8800 TBAAInfo = LS->getTBAAInfo();
8801 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00008802}
8803
Jim Laskey6ff23e52006-10-04 16:53:27 +00008804/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
8805/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00008806void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
8807 SmallVector<SDValue, 8> &Aliases) {
8808 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008809 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00008810
Jim Laskey279f0532006-09-25 16:29:54 +00008811 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00008812 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008813 int64_t Size;
8814 const Value *SrcValue;
8815 int SrcValueOffset;
8816 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008817 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008818 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008819 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00008820
Jim Laskey6ff23e52006-10-04 16:53:27 +00008821 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00008822 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00008823 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008824
Jim Laskeybc588b82006-10-05 15:07:25 +00008825 // Look at each chain and determine if it is an alias. If so, add it to the
8826 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00008827 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00008828 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008829 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00008830 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008831
8832 // For TokenFactor nodes, look at each operand and only continue up the
8833 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00008834 // find more and revert to original chain since the xform is unlikely to be
8835 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008836 //
8837 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00008838 // chain we found before we hit a tokenfactor rather than the original
8839 // chain.
8840 if (Depth > 6 || Aliases.size() == 2) {
8841 Aliases.clear();
8842 Aliases.push_back(OriginalChain);
8843 break;
8844 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008845
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008846 // Don't bother if we've been before.
8847 if (!Visited.insert(Chain.getNode()))
8848 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008849
Jim Laskeybc588b82006-10-05 15:07:25 +00008850 switch (Chain.getOpcode()) {
8851 case ISD::EntryToken:
8852 // Entry token is ideal chain operand, but handled in FindBetterChain.
8853 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008854
Jim Laskeybc588b82006-10-05 15:07:25 +00008855 case ISD::LOAD:
8856 case ISD::STORE: {
8857 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00008858 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008859 int64_t OpSize;
8860 const Value *OpSrcValue;
8861 int OpSrcValueOffset;
8862 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008863 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00008864 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008865 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008866 OpSrcValueAlign,
8867 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00008868
Jim Laskeybc588b82006-10-05 15:07:25 +00008869 // If chain is alias then stop here.
8870 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008871 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008872 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008873 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008874 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00008875 Aliases.push_back(Chain);
8876 } else {
8877 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00008878 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00008879 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00008880 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008881 break;
8882 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008883
Jim Laskeybc588b82006-10-05 15:07:25 +00008884 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008885 // We have to check each of the operands of the token factor for "small"
8886 // token factors, so we queue them up. Adding the operands to the queue
8887 // (stack) in reverse order maintains the original order and increases the
8888 // likelihood that getNode will find a matching token factor (CSE.)
8889 if (Chain.getNumOperands() > 16) {
8890 Aliases.push_back(Chain);
8891 break;
8892 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008893 for (unsigned n = Chain.getNumOperands(); n;)
8894 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00008895 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00008896 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008897
Jim Laskeybc588b82006-10-05 15:07:25 +00008898 default:
8899 // For all other instructions we will just have to take what we can get.
8900 Aliases.push_back(Chain);
8901 break;
Jim Laskey279f0532006-09-25 16:29:54 +00008902 }
8903 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00008904}
8905
8906/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
8907/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00008908SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
8909 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00008910
Jim Laskey6ff23e52006-10-04 16:53:27 +00008911 // Accumulate all the aliases to this node.
8912 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00008913
Dan Gohman71dc7c92011-05-17 22:20:36 +00008914 // If no operands then chain to entry token.
8915 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008916 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00008917
8918 // If a single operand then chain to it. We don't need to revisit it.
8919 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008920 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008921
Jim Laskey6ff23e52006-10-04 16:53:27 +00008922 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008923 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008924 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00008925}
8926
Nate Begeman1d4d4142005-09-01 00:19:25 +00008927// SelectionDAG::Combine - This is the entry point for the file.
8928//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008929void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00008930 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00008931 /// run - This is the main entry point to this class.
8932 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008933 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00008934}