blob: 2931d2de97bd7298da3d85ffac934ff77fea2dc1 [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);
Craig Topperdd201ff2012-09-11 01:45:21 +0000197 SDValue SimplifyVUnaryOp(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000198 SDValue visitSHL(SDNode *N);
199 SDValue visitSRA(SDNode *N);
200 SDValue visitSRL(SDNode *N);
201 SDValue visitCTLZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000202 SDValue visitCTLZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000203 SDValue visitCTTZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000204 SDValue visitCTTZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000205 SDValue visitCTPOP(SDNode *N);
206 SDValue visitSELECT(SDNode *N);
207 SDValue visitSELECT_CC(SDNode *N);
208 SDValue visitSETCC(SDNode *N);
209 SDValue visitSIGN_EXTEND(SDNode *N);
210 SDValue visitZERO_EXTEND(SDNode *N);
211 SDValue visitANY_EXTEND(SDNode *N);
212 SDValue visitSIGN_EXTEND_INREG(SDNode *N);
213 SDValue visitTRUNCATE(SDNode *N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000214 SDValue visitBITCAST(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000215 SDValue visitBUILD_PAIR(SDNode *N);
216 SDValue visitFADD(SDNode *N);
217 SDValue visitFSUB(SDNode *N);
218 SDValue visitFMUL(SDNode *N);
Owen Anderson062c0a52012-05-02 22:17:40 +0000219 SDValue visitFMA(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000220 SDValue visitFDIV(SDNode *N);
221 SDValue visitFREM(SDNode *N);
222 SDValue visitFCOPYSIGN(SDNode *N);
223 SDValue visitSINT_TO_FP(SDNode *N);
224 SDValue visitUINT_TO_FP(SDNode *N);
225 SDValue visitFP_TO_SINT(SDNode *N);
226 SDValue visitFP_TO_UINT(SDNode *N);
227 SDValue visitFP_ROUND(SDNode *N);
228 SDValue visitFP_ROUND_INREG(SDNode *N);
229 SDValue visitFP_EXTEND(SDNode *N);
230 SDValue visitFNEG(SDNode *N);
231 SDValue visitFABS(SDNode *N);
Owen Anderson7c626d32012-08-13 23:32:49 +0000232 SDValue visitFCEIL(SDNode *N);
233 SDValue visitFTRUNC(SDNode *N);
234 SDValue visitFFLOOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000235 SDValue visitBRCOND(SDNode *N);
236 SDValue visitBR_CC(SDNode *N);
237 SDValue visitLOAD(SDNode *N);
238 SDValue visitSTORE(SDNode *N);
239 SDValue visitINSERT_VECTOR_ELT(SDNode *N);
240 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
241 SDValue visitBUILD_VECTOR(SDNode *N);
242 SDValue visitCONCAT_VECTORS(SDNode *N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +0000243 SDValue visitEXTRACT_SUBVECTOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000244 SDValue visitVECTOR_SHUFFLE(SDNode *N);
Jim Grosbach9a526492010-06-23 16:07:42 +0000245 SDValue visitMEMBARRIER(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000246
Dan Gohman475871a2008-07-27 21:46:04 +0000247 SDValue XformToShuffleWithZero(SDNode *N);
Bill Wendling35247c32009-01-30 00:45:56 +0000248 SDValue ReassociateOps(unsigned Opc, DebugLoc DL, SDValue LHS, SDValue RHS);
Scott Michelfdc40a02009-02-17 22:15:04 +0000249
Dan Gohman475871a2008-07-27 21:46:04 +0000250 SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
Chris Lattnere70da202007-12-06 07:33:36 +0000251
Dan Gohman475871a2008-07-27 21:46:04 +0000252 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
253 SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Bill Wendling836ca7d2009-01-30 23:59:18 +0000254 SDValue SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2);
Scott Michelfdc40a02009-02-17 22:15:04 +0000255 SDValue SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2,
256 SDValue N3, ISD::CondCode CC,
Bill Wendling836ca7d2009-01-30 23:59:18 +0000257 bool NotExtCompare = false);
Owen Andersone50ed302009-08-10 22:56:29 +0000258 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +0000259 DebugLoc DL, bool foldBooleans = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000260 SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Chris Lattner5eee4272008-01-26 01:09:19 +0000261 unsigned HiOp);
Owen Andersone50ed302009-08-10 22:56:29 +0000262 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000263 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
Dan Gohman475871a2008-07-27 21:46:04 +0000264 SDValue BuildSDIV(SDNode *N);
265 SDValue BuildUDIV(SDNode *N);
Evan Cheng9568e5c2011-06-21 06:01:08 +0000266 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
267 bool DemandHighBits = true);
268 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
Bill Wendling317bd702009-01-30 21:14:50 +0000269 SDNode *MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL);
Dan Gohman475871a2008-07-27 21:46:04 +0000270 SDValue ReduceLoadWidth(SDNode *N);
Evan Cheng8b944d32009-05-28 00:35:15 +0000271 SDValue ReduceLoadOpStoreWidth(SDNode *N);
Evan Cheng31959b12011-02-02 01:06:55 +0000272 SDValue TransformFPLoadStorePair(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000273
Dan Gohman475871a2008-07-27 21:46:04 +0000274 SDValue GetDemandedBits(SDValue V, const APInt &Mask);
Scott Michelfdc40a02009-02-17 22:15:04 +0000275
Jim Laskey6ff23e52006-10-04 16:53:27 +0000276 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
277 /// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000278 void GatherAllAliases(SDNode *N, SDValue OriginalChain,
279 SmallVector<SDValue, 8> &Aliases);
Jim Laskey6ff23e52006-10-04 16:53:27 +0000280
Jim Laskey096c22e2006-10-18 12:29:57 +0000281 /// isAlias - Return true if there is any possibility that the two addresses
282 /// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +0000283 bool isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +0000284 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000285 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000286 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +0000287 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000288 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000289 unsigned SrcValueAlign2,
290 const MDNode *TBAAInfo2) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000291
Jim Laskey7ca56af2006-10-11 13:47:09 +0000292 /// FindAliasInfo - Extracts the relevant alias information from the memory
293 /// node. Returns true if the operand was a load.
294 bool FindAliasInfo(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000295 SDValue &Ptr, int64_t &Size,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000296 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000297 unsigned &SrcValueAlignment,
298 const MDNode *&TBAAInfo) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000299
Jim Laskey279f0532006-09-25 16:29:54 +0000300 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000301 /// looking for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +0000302 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands92abc622009-01-31 15:50:11 +0000303
Chris Lattner2392ae72010-04-15 04:48:01 +0000304 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000305 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000306 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000307 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000308
Nate Begeman1d4d4142005-09-01 00:19:25 +0000309 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000310 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000311
Chris Lattner2392ae72010-04-15 04:48:01 +0000312 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000313
Chris Lattner2392ae72010-04-15 04:48:01 +0000314 /// getShiftAmountTy - Returns a type large enough to hold any valid
315 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000316 EVT getShiftAmountTy(EVT LHSTy) {
317 return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000318 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000319
Chris Lattner2392ae72010-04-15 04:48:01 +0000320 /// isTypeLegal - This method returns true if we are running before type
321 /// legalization or if the specified VT is legal.
322 bool isTypeLegal(const EVT &VT) {
323 if (!LegalTypes) return true;
324 return TLI.isTypeLegal(VT);
325 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000326 };
327}
328
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000329
330namespace {
331/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
332/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000333class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000334 DAGCombiner &DC;
335public:
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000336 explicit WorkListRemover(DAGCombiner &dc)
337 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000338
Duncan Sandsedfcf592008-06-11 11:42:12 +0000339 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000340 DC.removeFromWorkList(N);
341 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000342};
343}
344
Chris Lattner24664722006-03-01 04:53:38 +0000345//===----------------------------------------------------------------------===//
346// TargetLowering::DAGCombinerInfo implementation
347//===----------------------------------------------------------------------===//
348
349void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
350 ((DAGCombiner*)DC)->AddToWorkList(N);
351}
352
Cameron Zwariched3caf92011-04-02 02:40:26 +0000353void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
354 ((DAGCombiner*)DC)->removeFromWorkList(N);
355}
356
Dan Gohman475871a2008-07-27 21:46:04 +0000357SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000358CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
359 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000360}
361
Dan Gohman475871a2008-07-27 21:46:04 +0000362SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000363CombineTo(SDNode *N, SDValue Res, bool AddTo) {
364 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000365}
366
367
Dan Gohman475871a2008-07-27 21:46:04 +0000368SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000369CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
370 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000371}
372
Dan Gohmane5af2d32009-01-29 01:59:02 +0000373void TargetLowering::DAGCombinerInfo::
374CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
375 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
376}
Chris Lattner24664722006-03-01 04:53:38 +0000377
Chris Lattner24664722006-03-01 04:53:38 +0000378//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000379// Helper Functions
380//===----------------------------------------------------------------------===//
381
382/// isNegatibleForFree - Return 1 if we can compute the negated form of the
383/// specified expression for the same cost as the expression itself, or 2 if we
384/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000385static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000386 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000387 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000388 unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000389 // No compile time optimizations on this type.
Owen Anderson825b72b2009-08-11 20:47:22 +0000390 if (Op.getValueType() == MVT::ppcf128)
Dale Johannesendb44bf82007-10-16 23:38:29 +0000391 return 0;
392
Chris Lattner29446522007-05-14 22:04:50 +0000393 // fneg is removable even if it has multiple uses.
394 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000395
Chris Lattner29446522007-05-14 22:04:50 +0000396 // Don't allow anything with multiple uses.
397 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000398
Chris Lattner3adf9512007-05-25 02:19:06 +0000399 // Don't recurse exponentially.
400 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000401
Chris Lattner29446522007-05-14 22:04:50 +0000402 switch (Op.getOpcode()) {
403 default: return false;
404 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000405 // Don't invert constant FP values after legalize. The negated constant
406 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000407 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000408 case ISD::FADD:
409 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000410 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000411
Owen Andersonafd3d562012-03-06 00:29:31 +0000412 // After operation legalization, it might not be legal to create new FSUBs.
413 if (LegalOperations &&
414 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
415 return 0;
416
Craig Topper956342b2012-09-09 22:58:45 +0000417 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000418 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
419 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000420 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000421 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000422 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000423 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000424 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000425 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000426 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000427
Bill Wendlingd34470c2009-01-30 23:10:18 +0000428 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000429 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000430
Chris Lattner29446522007-05-14 22:04:50 +0000431 case ISD::FMUL:
432 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000433 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000434
Bill Wendlingd34470c2009-01-30 23:10:18 +0000435 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000436 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
437 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000438 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000439
Owen Andersonafd3d562012-03-06 00:29:31 +0000440 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000441 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000442
Chris Lattner29446522007-05-14 22:04:50 +0000443 case ISD::FP_EXTEND:
444 case ISD::FP_ROUND:
445 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000446 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000447 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000448 }
449}
450
451/// GetNegatedExpression - If isNegatibleForFree returns true, this function
452/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000453static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000454 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000455 // fneg is removable even if it has multiple uses.
456 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000457
Chris Lattner29446522007-05-14 22:04:50 +0000458 // Don't allow anything with multiple uses.
459 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000460
Chris Lattner3adf9512007-05-25 02:19:06 +0000461 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000462 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000463 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000464 case ISD::ConstantFP: {
465 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
466 V.changeSign();
467 return DAG.getConstantFP(V, Op.getValueType());
468 }
Chris Lattner29446522007-05-14 22:04:50 +0000469 case ISD::FADD:
470 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000471 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000472
Bill Wendlingd34470c2009-01-30 23:10:18 +0000473 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000474 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000475 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000476 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000477 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000478 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000479 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000480 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000481 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Bill Wendling35247c32009-01-30 00:45:56 +0000482 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000483 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000484 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000485 Op.getOperand(0));
486 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000487 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000488 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000489
Bill Wendlingd34470c2009-01-30 23:10:18 +0000490 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000491 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000492 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000493 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000494
Bill Wendlingd34470c2009-01-30 23:10:18 +0000495 // fold (fneg (fsub A, B)) -> (fsub B, A)
Bill Wendling35247c32009-01-30 00:45:56 +0000496 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
497 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000498
Chris Lattner29446522007-05-14 22:04:50 +0000499 case ISD::FMUL:
500 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000501 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000502
Bill Wendlingd34470c2009-01-30 23:10:18 +0000503 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000504 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000505 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000506 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000507 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000508 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000509 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000510 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000511
Bill Wendlingd34470c2009-01-30 23:10:18 +0000512 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Bill Wendling35247c32009-01-30 00:45:56 +0000513 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000514 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000515 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000516 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000517
Chris Lattner29446522007-05-14 22:04:50 +0000518 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000519 case ISD::FSIN:
Bill Wendling35247c32009-01-30 00:45:56 +0000520 return DAG.getNode(Op.getOpcode(), 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 case ISD::FP_ROUND:
Bill Wendling35247c32009-01-30 00:45:56 +0000524 return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000525 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000526 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000527 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000528 }
529}
Chris Lattner24664722006-03-01 04:53:38 +0000530
531
Nate Begeman4ebd8052005-09-01 23:24:04 +0000532// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
533// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000534// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000535// nodes based on the type of node we are checking. This simplifies life a
536// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000537static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
538 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000539 if (N.getOpcode() == ISD::SETCC) {
540 LHS = N.getOperand(0);
541 RHS = N.getOperand(1);
542 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000543 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000544 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000545 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000546 N.getOperand(2).getOpcode() == ISD::Constant &&
547 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000548 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000549 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
550 LHS = N.getOperand(0);
551 RHS = N.getOperand(1);
552 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000553 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000554 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000555 return false;
556}
557
Nate Begeman99801192005-09-07 23:25:52 +0000558// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
559// one use. If this is true, it allows the users to invert the operation for
560// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000561static bool isOneUseSetCC(SDValue N) {
562 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000563 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000564 return true;
565 return false;
566}
567
Bill Wendling35247c32009-01-30 00:45:56 +0000568SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
569 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000570 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000571 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
572 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000573 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000574 SDValue OpNode =
575 DAG.FoldConstantArithmetic(Opc, VT,
576 cast<ConstantSDNode>(N0.getOperand(1)),
577 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000578 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000579 }
580 if (N0.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000581 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendling35247c32009-01-30 00:45:56 +0000582 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
583 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000584 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000585 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000586 }
587 }
Bill Wendling35247c32009-01-30 00:45:56 +0000588
Nate Begemancd4d58c2006-02-03 06:46:56 +0000589 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
590 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000591 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000592 SDValue OpNode =
593 DAG.FoldConstantArithmetic(Opc, VT,
594 cast<ConstantSDNode>(N1.getOperand(1)),
595 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000596 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000597 }
598 if (N1.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000599 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendlingd69c3142009-01-30 02:23:43 +0000600 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000601 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000602 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000603 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000604 }
605 }
Bill Wendling35247c32009-01-30 00:45:56 +0000606
Dan Gohman475871a2008-07-27 21:46:04 +0000607 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000608}
609
Dan Gohman475871a2008-07-27 21:46:04 +0000610SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
611 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000612 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
613 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000614 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000615 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000616 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000617 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000618 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000619 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000620 assert((!To[i].getNode() ||
621 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000622 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000623 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000624 DAG.ReplaceAllUsesWith(N, To);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000625 if (AddTo) {
626 // Push the new nodes and any users onto the worklist
627 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000628 if (To[i].getNode()) {
629 AddToWorkList(To[i].getNode());
630 AddUsersToWorkList(To[i].getNode());
631 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000632 }
633 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000634
Dan Gohmandbe664a2009-01-19 21:44:21 +0000635 // Finally, if the node is now dead, remove it from the graph. The node
636 // may not be dead if the replacement process recursively simplified to
637 // something else needing this node.
638 if (N->use_empty()) {
639 // Nodes can be reintroduced into the worklist. Make sure we do not
640 // process a node that has been replaced.
641 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000642
Dan Gohmandbe664a2009-01-19 21:44:21 +0000643 // Finally, since the node is now dead, remove it from the graph.
644 DAG.DeleteNode(N);
645 }
Dan Gohman475871a2008-07-27 21:46:04 +0000646 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000647}
648
Evan Chenge5b51ac2010-04-17 06:13:15 +0000649void DAGCombiner::
650CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000651 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000652 // are deleted, make sure to remove them from our worklist.
653 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000654 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000655
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000656 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000657 AddToWorkList(TLO.New.getNode());
658 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000659
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000660 // Finally, if the node is now dead, remove it from the graph. The node
661 // may not be dead if the replacement process recursively simplified to
662 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000663 if (TLO.Old.getNode()->use_empty()) {
664 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000665
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000666 // If the operands of this node are only used by the node, they will now
667 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000668 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
669 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
670 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000671
Gabor Greifba36cb52008-08-28 21:40:38 +0000672 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000673 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000674}
675
676/// SimplifyDemandedBits - Check the specified integer node value to see if
677/// it can be simplified or if things it uses can be simplified by bit
678/// propagation. If so, return true.
679bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000680 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000681 APInt KnownZero, KnownOne;
682 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
683 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000684
Dan Gohmane5af2d32009-01-29 01:59:02 +0000685 // Revisit the node.
686 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000687
Dan Gohmane5af2d32009-01-29 01:59:02 +0000688 // Replace the old value with the new one.
689 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000690 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000691 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000692 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000693 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000694 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000695
Dan Gohmane5af2d32009-01-29 01:59:02 +0000696 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000697 return true;
698}
699
Evan Cheng95c57ea2010-04-24 04:43:44 +0000700void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
701 DebugLoc dl = Load->getDebugLoc();
702 EVT VT = Load->getValueType(0);
703 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000704
Evan Cheng95c57ea2010-04-24 04:43:44 +0000705 DEBUG(dbgs() << "\nReplacing.9 ";
706 Load->dump(&DAG);
707 dbgs() << "\nWith: ";
708 Trunc.getNode()->dump(&DAG);
709 dbgs() << '\n');
710 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000711 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
712 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
Evan Cheng95c57ea2010-04-24 04:43:44 +0000713 removeFromWorkList(Load);
714 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000715 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000716}
717
718SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
719 Replace = false;
Evan Cheng4c26e932010-04-19 19:29:22 +0000720 DebugLoc dl = Op.getDebugLoc();
Evan Chenge5b51ac2010-04-17 06:13:15 +0000721 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000722 EVT MemVT = LD->getMemoryVT();
723 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000724 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000725 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000726 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000727 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000728 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000729 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000730 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000731 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000732 LD->isNonTemporal(), LD->getAlignment());
733 }
734
Evan Cheng4c26e932010-04-19 19:29:22 +0000735 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000736 switch (Opc) {
737 default: break;
738 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000739 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000740 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000741 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000742 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000743 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000744 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000745 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000746 case ISD::Constant: {
747 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000748 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000749 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000750 }
Evan Chengcaf77402010-04-23 19:10:30 +0000751 }
752
753 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000754 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000755 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000756}
757
Evan Cheng95c57ea2010-04-24 04:43:44 +0000758SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000759 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
760 return SDValue();
761 EVT OldVT = Op.getValueType();
762 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000763 bool Replace = false;
764 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
765 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000766 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000767 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000768
769 if (Replace)
770 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
771 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000772 DAG.getValueType(OldVT));
773}
774
Evan Cheng95c57ea2010-04-24 04:43:44 +0000775SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000776 EVT OldVT = Op.getValueType();
777 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000778 bool Replace = false;
779 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
780 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000781 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000782 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000783
784 if (Replace)
785 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
786 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000787}
788
Evan Cheng64b7bf72010-04-16 06:14:10 +0000789/// PromoteIntBinOp - Promote the specified integer binary operation if the
790/// target indicates it is beneficial. e.g. On x86, it's usually better to
791/// promote i16 operations to i32 since i16 instructions are longer.
792SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
793 if (!LegalOperations)
794 return SDValue();
795
796 EVT VT = Op.getValueType();
797 if (VT.isVector() || !VT.isInteger())
798 return SDValue();
799
Evan Chenge5b51ac2010-04-17 06:13:15 +0000800 // If operation type is 'undesirable', e.g. i16 on x86, consider
801 // promoting it.
802 unsigned Opc = Op.getOpcode();
803 if (TLI.isTypeDesirableForOp(Opc, VT))
804 return SDValue();
805
Evan Cheng64b7bf72010-04-16 06:14:10 +0000806 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000807 // Consult target whether it is a good idea to promote this operation and
808 // what's the right type to promote it to.
809 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000810 assert(PVT != VT && "Don't know what type to promote to!");
811
Evan Cheng95c57ea2010-04-24 04:43:44 +0000812 bool Replace0 = false;
813 SDValue N0 = Op.getOperand(0);
814 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
815 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000816 return SDValue();
817
Evan Cheng95c57ea2010-04-24 04:43:44 +0000818 bool Replace1 = false;
819 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000820 SDValue NN1;
821 if (N0 == N1)
822 NN1 = NN0;
823 else {
824 NN1 = PromoteOperand(N1, PVT, Replace1);
825 if (NN1.getNode() == 0)
826 return SDValue();
827 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000828
Evan Cheng95c57ea2010-04-24 04:43:44 +0000829 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000830 if (NN1.getNode())
831 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000832
833 if (Replace0)
834 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
835 if (Replace1)
836 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000837
Evan Chengac7eae52010-04-27 19:48:13 +0000838 DEBUG(dbgs() << "\nPromoting ";
839 Op.getNode()->dump(&DAG));
Evan Cheng07c4e102010-04-22 20:19:46 +0000840 DebugLoc dl = Op.getDebugLoc();
841 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000842 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000843 }
844 return SDValue();
845}
846
847/// PromoteIntShiftOp - Promote the specified integer shift operation if the
848/// target indicates it is beneficial. e.g. On x86, it's usually better to
849/// promote i16 operations to i32 since i16 instructions are longer.
850SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
851 if (!LegalOperations)
852 return SDValue();
853
854 EVT VT = Op.getValueType();
855 if (VT.isVector() || !VT.isInteger())
856 return SDValue();
857
858 // If operation type is 'undesirable', e.g. i16 on x86, consider
859 // promoting it.
860 unsigned Opc = Op.getOpcode();
861 if (TLI.isTypeDesirableForOp(Opc, VT))
862 return SDValue();
863
864 EVT PVT = VT;
865 // Consult target whether it is a good idea to promote this operation and
866 // what's the right type to promote it to.
867 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
868 assert(PVT != VT && "Don't know what type to promote to!");
869
Evan Cheng95c57ea2010-04-24 04:43:44 +0000870 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000871 SDValue N0 = Op.getOperand(0);
872 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000873 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000874 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000875 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000876 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000877 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000878 if (N0.getNode() == 0)
879 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000880
Evan Chenge5b51ac2010-04-17 06:13:15 +0000881 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000882 if (Replace)
883 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000884
Evan Chengac7eae52010-04-27 19:48:13 +0000885 DEBUG(dbgs() << "\nPromoting ";
886 Op.getNode()->dump(&DAG));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000887 DebugLoc dl = Op.getDebugLoc();
888 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000889 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000890 }
891 return SDValue();
892}
893
Evan Cheng4c26e932010-04-19 19:29:22 +0000894SDValue DAGCombiner::PromoteExtend(SDValue Op) {
895 if (!LegalOperations)
896 return SDValue();
897
898 EVT VT = Op.getValueType();
899 if (VT.isVector() || !VT.isInteger())
900 return SDValue();
901
902 // If operation type is 'undesirable', e.g. i16 on x86, consider
903 // promoting it.
904 unsigned Opc = Op.getOpcode();
905 if (TLI.isTypeDesirableForOp(Opc, VT))
906 return SDValue();
907
908 EVT PVT = VT;
909 // Consult target whether it is a good idea to promote this operation and
910 // what's the right type to promote it to.
911 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
912 assert(PVT != VT && "Don't know what type to promote to!");
913 // fold (aext (aext x)) -> (aext x)
914 // fold (aext (zext x)) -> (zext x)
915 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000916 DEBUG(dbgs() << "\nPromoting ";
917 Op.getNode()->dump(&DAG));
Evan Cheng4c26e932010-04-19 19:29:22 +0000918 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
919 }
920 return SDValue();
921}
922
923bool DAGCombiner::PromoteLoad(SDValue Op) {
924 if (!LegalOperations)
925 return false;
926
927 EVT VT = Op.getValueType();
928 if (VT.isVector() || !VT.isInteger())
929 return false;
930
931 // If operation type is 'undesirable', e.g. i16 on x86, consider
932 // promoting it.
933 unsigned Opc = Op.getOpcode();
934 if (TLI.isTypeDesirableForOp(Opc, VT))
935 return false;
936
937 EVT PVT = VT;
938 // Consult target whether it is a good idea to promote this operation and
939 // what's the right type to promote it to.
940 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
941 assert(PVT != VT && "Don't know what type to promote to!");
942
943 DebugLoc dl = Op.getDebugLoc();
944 SDNode *N = Op.getNode();
945 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000946 EVT MemVT = LD->getMemoryVT();
947 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000948 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000949 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000950 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000951 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000952 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000953 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000954 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000955 LD->isNonTemporal(), LD->getAlignment());
956 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
957
Evan Cheng95c57ea2010-04-24 04:43:44 +0000958 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000959 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000960 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000961 Result.getNode()->dump(&DAG);
962 dbgs() << '\n');
963 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000964 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
965 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
Evan Cheng4c26e932010-04-19 19:29:22 +0000966 removeFromWorkList(N);
967 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000968 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000969 return true;
970 }
971 return false;
972}
973
Evan Chenge5b51ac2010-04-17 06:13:15 +0000974
Chris Lattner29446522007-05-14 22:04:50 +0000975//===----------------------------------------------------------------------===//
976// Main DAG Combiner implementation
977//===----------------------------------------------------------------------===//
978
Duncan Sands25cf2272008-11-24 14:53:14 +0000979void DAGCombiner::Run(CombineLevel AtLevel) {
980 // set the instance variables, so that the various visit routines may use it.
981 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +0000982 LegalOperations = Level >= AfterLegalizeVectorOps;
983 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +0000984
Evan Cheng17a568b2008-08-29 22:21:44 +0000985 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +0000986 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
987 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +0000988 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +0000989
Evan Cheng17a568b2008-08-29 22:21:44 +0000990 // Create a dummy node (which is not added to allnodes), that adds a reference
991 // to the root node, preventing it from being deleted, and tracking any
992 // changes of the root.
993 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +0000994
Jim Laskey26f7fa72006-10-17 19:33:52 +0000995 // The root of the dag may dangle to deleted nodes until the dag combiner is
996 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +0000997 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +0000998
James Molloy6660c052012-02-16 09:17:04 +0000999 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +00001000 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +00001001 while (!WorkListContents.empty()) {
1002 SDNode *N;
1003 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1004 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1005 // worklist *should* contain, and check the node we want to visit is should
1006 // actually be visited.
1007 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001008 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001009 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001010
Evan Cheng17a568b2008-08-29 22:21:44 +00001011 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1012 // N is deleted from the DAG, since they too may now be dead or may have a
1013 // reduced number of uses, allowing other xforms.
1014 if (N->use_empty() && N != &Dummy) {
1015 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1016 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001017
Evan Cheng17a568b2008-08-29 22:21:44 +00001018 DAG.DeleteNode(N);
1019 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001020 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001021
Evan Cheng17a568b2008-08-29 22:21:44 +00001022 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001023
Evan Cheng17a568b2008-08-29 22:21:44 +00001024 if (RV.getNode() == 0)
1025 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001026
Evan Cheng17a568b2008-08-29 22:21:44 +00001027 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001028
Evan Cheng17a568b2008-08-29 22:21:44 +00001029 // If we get back the same node we passed in, rather than a new node or
1030 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001031 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001032 // mechanics for us, we have no work to do in this case.
1033 if (RV.getNode() == N)
1034 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001035
Evan Cheng17a568b2008-08-29 22:21:44 +00001036 assert(N->getOpcode() != ISD::DELETED_NODE &&
1037 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1038 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001039
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001040 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001041 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001042 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001043 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001044 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001045
Devang Patel9728ea22011-05-23 22:04:42 +00001046 // Transfer debug value.
1047 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001048 WorkListRemover DeadNodes(*this);
1049 if (N->getNumValues() == RV.getNode()->getNumValues())
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001050 DAG.ReplaceAllUsesWith(N, RV.getNode());
Evan Cheng17a568b2008-08-29 22:21:44 +00001051 else {
1052 assert(N->getValueType(0) == RV.getValueType() &&
1053 N->getNumValues() == 1 && "Type mismatch");
1054 SDValue OpV = RV;
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001055 DAG.ReplaceAllUsesWith(N, &OpV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001056 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001057
Evan Cheng17a568b2008-08-29 22:21:44 +00001058 // Push the new node and any users onto the worklist
1059 AddToWorkList(RV.getNode());
1060 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001061
Evan Cheng17a568b2008-08-29 22:21:44 +00001062 // Add any uses of the old node to the worklist in case this node is the
1063 // last one that uses them. They may become dead after this node is
1064 // deleted.
1065 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1066 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001067
Dan Gohmandbe664a2009-01-19 21:44:21 +00001068 // Finally, if the node is now dead, remove it from the graph. The node
1069 // may not be dead if the replacement process recursively simplified to
1070 // something else needing this node.
1071 if (N->use_empty()) {
1072 // Nodes can be reintroduced into the worklist. Make sure we do not
1073 // process a node that has been replaced.
1074 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001075
Dan Gohmandbe664a2009-01-19 21:44:21 +00001076 // Finally, since the node is now dead, remove it from the graph.
1077 DAG.DeleteNode(N);
1078 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001079 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001080
Chris Lattner95038592005-10-05 06:35:28 +00001081 // If the root changed (e.g. it was a dead load, update the root).
1082 DAG.setRoot(Dummy.getValue());
Hal Finkel31490ba2012-04-16 03:33:22 +00001083 DAG.RemoveDeadNodes();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001084}
1085
Dan Gohman475871a2008-07-27 21:46:04 +00001086SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001087 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001088 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001089 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001090 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001091 case ISD::ADD: return visitADD(N);
1092 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001093 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001094 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001095 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001096 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001097 case ISD::MUL: return visitMUL(N);
1098 case ISD::SDIV: return visitSDIV(N);
1099 case ISD::UDIV: return visitUDIV(N);
1100 case ISD::SREM: return visitSREM(N);
1101 case ISD::UREM: return visitUREM(N);
1102 case ISD::MULHU: return visitMULHU(N);
1103 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001104 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1105 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001106 case ISD::SMULO: return visitSMULO(N);
1107 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001108 case ISD::SDIVREM: return visitSDIVREM(N);
1109 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001110 case ISD::AND: return visitAND(N);
1111 case ISD::OR: return visitOR(N);
1112 case ISD::XOR: return visitXOR(N);
1113 case ISD::SHL: return visitSHL(N);
1114 case ISD::SRA: return visitSRA(N);
1115 case ISD::SRL: return visitSRL(N);
1116 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001117 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001118 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001119 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001120 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001121 case ISD::SELECT: return visitSELECT(N);
1122 case ISD::SELECT_CC: return visitSELECT_CC(N);
1123 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001124 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1125 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001126 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001127 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1128 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001129 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001130 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001131 case ISD::FADD: return visitFADD(N);
1132 case ISD::FSUB: return visitFSUB(N);
1133 case ISD::FMUL: return visitFMUL(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00001134 case ISD::FMA: return visitFMA(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001135 case ISD::FDIV: return visitFDIV(N);
1136 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001137 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001138 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1139 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1140 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1141 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1142 case ISD::FP_ROUND: return visitFP_ROUND(N);
1143 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1144 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1145 case ISD::FNEG: return visitFNEG(N);
1146 case ISD::FABS: return visitFABS(N);
Owen Anderson7c626d32012-08-13 23:32:49 +00001147 case ISD::FFLOOR: return visitFFLOOR(N);
1148 case ISD::FCEIL: return visitFCEIL(N);
1149 case ISD::FTRUNC: return visitFTRUNC(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001150 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001151 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001152 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001153 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001154 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001155 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001156 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1157 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001158 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001159 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001160 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001161 }
Dan Gohman475871a2008-07-27 21:46:04 +00001162 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001163}
1164
Dan Gohman475871a2008-07-27 21:46:04 +00001165SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001166 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001167
1168 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001169 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001170 assert(N->getOpcode() != ISD::DELETED_NODE &&
1171 "Node was deleted but visit returned NULL!");
1172
1173 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1174 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1175
1176 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001177 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001178 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001179
1180 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1181 }
1182 }
1183
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001184 // If nothing happened still, try promoting the operation.
1185 if (RV.getNode() == 0) {
1186 switch (N->getOpcode()) {
1187 default: break;
1188 case ISD::ADD:
1189 case ISD::SUB:
1190 case ISD::MUL:
1191 case ISD::AND:
1192 case ISD::OR:
1193 case ISD::XOR:
1194 RV = PromoteIntBinOp(SDValue(N, 0));
1195 break;
1196 case ISD::SHL:
1197 case ISD::SRA:
1198 case ISD::SRL:
1199 RV = PromoteIntShiftOp(SDValue(N, 0));
1200 break;
1201 case ISD::SIGN_EXTEND:
1202 case ISD::ZERO_EXTEND:
1203 case ISD::ANY_EXTEND:
1204 RV = PromoteExtend(SDValue(N, 0));
1205 break;
1206 case ISD::LOAD:
1207 if (PromoteLoad(SDValue(N, 0)))
1208 RV = SDValue(N, 0);
1209 break;
1210 }
1211 }
1212
Scott Michelfdc40a02009-02-17 22:15:04 +00001213 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001214 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001215 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001216 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1217 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001218 SDValue N0 = N->getOperand(0);
1219 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001220
Evan Cheng08b11732008-03-22 01:55:50 +00001221 // Constant operands are canonicalized to RHS.
1222 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001223 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001224 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1225 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001226 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001227 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001228 }
1229 }
1230
Dan Gohman389079b2007-10-08 17:57:15 +00001231 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001232}
Dan Gohman389079b2007-10-08 17:57:15 +00001233
Chris Lattner6270f682006-10-08 22:57:01 +00001234/// getInputChainForNode - Given a node, return its input chain if it has one,
1235/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001236static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001237 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001238 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001239 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001240 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001241 return N->getOperand(NumOps-1);
1242 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001243 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001244 return N->getOperand(i);
1245 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001246 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001247}
1248
Dan Gohman475871a2008-07-27 21:46:04 +00001249SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001250 // If N has two operands, where one has an input chain equal to the other,
1251 // the 'other' chain is redundant.
1252 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001253 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001254 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001255 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001256 return N->getOperand(1);
1257 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001258
Chris Lattnerc76d4412007-05-16 06:37:59 +00001259 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001260 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001261 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001262 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001263
Jim Laskey6ff23e52006-10-04 16:53:27 +00001264 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001265 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001266
Jim Laskey71382342006-10-07 23:37:56 +00001267 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001268 // encountered.
1269 for (unsigned i = 0; i < TFs.size(); ++i) {
1270 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001271
Jim Laskey6ff23e52006-10-04 16:53:27 +00001272 // Check each of the operands.
1273 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001274 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001275
Jim Laskey6ff23e52006-10-04 16:53:27 +00001276 switch (Op.getOpcode()) {
1277 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001278 // Entry tokens don't need to be added to the list. They are
1279 // rededundant.
1280 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001281 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001282
Jim Laskey6ff23e52006-10-04 16:53:27 +00001283 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001284 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001285 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001286 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001287 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001288 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001289 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001290 Changed = true;
1291 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001292 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001293 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001294
Jim Laskey6ff23e52006-10-04 16:53:27 +00001295 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001296 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001297 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001298 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001299 else
1300 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001301 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001302 }
1303 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001304 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001305
Dan Gohman475871a2008-07-27 21:46:04 +00001306 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001307
1308 // If we've change things around then replace token factor.
1309 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001310 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001311 // The entry token is the only possible outcome.
1312 Result = DAG.getEntryNode();
1313 } else {
1314 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001315 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001316 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001317 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001318
Jim Laskey274062c2006-10-13 23:32:28 +00001319 // Don't add users to work list.
1320 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001321 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001322
Jim Laskey6ff23e52006-10-04 16:53:27 +00001323 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001324}
1325
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001326/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001327SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001328 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001329 // Replacing results may cause a different MERGE_VALUES to suddenly
1330 // be CSE'd with N, and carry its uses with it. Iterate until no
1331 // uses remain, to ensure that the node can be safely deleted.
Pete Cooper3affd9e2012-06-20 19:35:43 +00001332 // First add the users of this node to the work list so that they
1333 // can be tried again once they have new operands.
1334 AddUsersToWorkList(N);
Dan Gohman00edf392009-08-10 23:43:19 +00001335 do {
1336 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001337 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
Dan Gohman00edf392009-08-10 23:43:19 +00001338 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001339 removeFromWorkList(N);
1340 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001341 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001342}
1343
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001344static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001345SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1346 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001347 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001348 SDValue N00 = N0.getOperand(0);
1349 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001350 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001351
Gabor Greifba36cb52008-08-28 21:40:38 +00001352 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001353 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001354 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1355 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1356 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1357 N00.getOperand(0), N01),
1358 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1359 N00.getOperand(1), N01));
1360 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001361 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001362
Dan Gohman475871a2008-07-27 21:46:04 +00001363 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001364}
1365
Dan Gohman475871a2008-07-27 21:46:04 +00001366SDValue DAGCombiner::visitADD(SDNode *N) {
1367 SDValue N0 = N->getOperand(0);
1368 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001369 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1370 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001371 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001372
1373 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001374 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001375 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001376 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001377 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001378
Dan Gohman613e0d82007-07-03 14:03:57 +00001379 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001380 if (N0.getOpcode() == ISD::UNDEF)
1381 return N0;
1382 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001383 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001384 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001385 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001386 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001387 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001388 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001389 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001390 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001391 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001392 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001393 // fold (add Sym, c) -> Sym+c
1394 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001395 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001396 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001397 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001398 GA->getOffset() +
1399 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001400 // fold ((c1-A)+c2) -> (c1+c2)-A
1401 if (N1C && N0.getOpcode() == ISD::SUB)
1402 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001403 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001404 DAG.getConstant(N1C->getAPIntValue()+
1405 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001406 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001407 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001408 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001409 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001410 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001411 // fold ((0-A) + B) -> B-A
1412 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1413 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001414 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001415 // fold (A + (0-B)) -> A-B
1416 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1417 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001418 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001419 // fold (A+(B-A)) -> B
1420 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001421 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001422 // fold ((B-A)+A) -> B
1423 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1424 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001425 // fold (A+(B-(A+C))) to (B-C)
1426 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001427 N0 == N1.getOperand(1).getOperand(0))
1428 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001429 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001430 // fold (A+(B-(C+A))) to (B-C)
1431 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001432 N0 == N1.getOperand(1).getOperand(1))
1433 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001434 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001435 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001436 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1437 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001438 N0 == N1.getOperand(0).getOperand(1))
1439 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1440 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001441
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001442 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1443 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1444 SDValue N00 = N0.getOperand(0);
1445 SDValue N01 = N0.getOperand(1);
1446 SDValue N10 = N1.getOperand(0);
1447 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001448
1449 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1450 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1451 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1452 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001453 }
Chris Lattner947c2892006-03-13 06:51:27 +00001454
Dan Gohman475871a2008-07-27 21:46:04 +00001455 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1456 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001457
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001458 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001459 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001460 APInt LHSZero, LHSOne;
1461 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001462 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001463
Dan Gohman948d8ea2008-02-20 16:33:30 +00001464 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001465 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001466
Chris Lattner947c2892006-03-13 06:51:27 +00001467 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1468 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001469 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001470 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001471 }
1472 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001473
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001474 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001475 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001476 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001477 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001478 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001479 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001480 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001481 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001482 }
1483
Dan Gohmancd9e1552010-01-19 23:30:49 +00001484 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1485 if (N1.getOpcode() == ISD::SHL &&
1486 N1.getOperand(0).getOpcode() == ISD::SUB)
1487 if (ConstantSDNode *C =
1488 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1489 if (C->getAPIntValue() == 0)
1490 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1491 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1492 N1.getOperand(0).getOperand(1),
1493 N1.getOperand(1)));
1494 if (N0.getOpcode() == ISD::SHL &&
1495 N0.getOperand(0).getOpcode() == ISD::SUB)
1496 if (ConstantSDNode *C =
1497 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1498 if (C->getAPIntValue() == 0)
1499 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1500 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1501 N0.getOperand(0).getOperand(1),
1502 N0.getOperand(1)));
1503
Owen Andersonbc146b02010-09-21 20:42:50 +00001504 if (N1.getOpcode() == ISD::AND) {
1505 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001506 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001507 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1508 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001509
Owen Andersonbc146b02010-09-21 20:42:50 +00001510 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1511 // and similar xforms where the inner op is either ~0 or 0.
1512 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1513 DebugLoc DL = N->getDebugLoc();
1514 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1515 }
1516 }
1517
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001518 // add (sext i1), X -> sub X, (zext i1)
1519 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1520 N0.getOperand(0).getValueType() == MVT::i1 &&
1521 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1522 DebugLoc DL = N->getDebugLoc();
1523 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1524 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1525 }
1526
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001527 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001528}
1529
Dan Gohman475871a2008-07-27 21:46:04 +00001530SDValue DAGCombiner::visitADDC(SDNode *N) {
1531 SDValue N0 = N->getOperand(0);
1532 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001533 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1534 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001535 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001536
Chris Lattner91153682007-03-04 20:03:15 +00001537 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001538 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001539 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001540 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001541 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001542
Chris Lattner91153682007-03-04 20:03:15 +00001543 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001544 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001545 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001546
Chris Lattnerb6541762007-03-04 20:40:38 +00001547 // fold (addc x, 0) -> x + no carry out
1548 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001549 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001550 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001551
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001552 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001553 APInt LHSZero, LHSOne;
1554 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001555 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001556
Dan Gohman948d8ea2008-02-20 16:33:30 +00001557 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001558 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001559
Chris Lattnerb6541762007-03-04 20:40:38 +00001560 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1561 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001562 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendling14036c02009-01-30 02:38:00 +00001563 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001564 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001565 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001566 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001567
Dan Gohman475871a2008-07-27 21:46:04 +00001568 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001569}
1570
Dan Gohman475871a2008-07-27 21:46:04 +00001571SDValue DAGCombiner::visitADDE(SDNode *N) {
1572 SDValue N0 = N->getOperand(0);
1573 SDValue N1 = N->getOperand(1);
1574 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001575 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1576 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001577
Chris Lattner91153682007-03-04 20:03:15 +00001578 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001579 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001580 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1581 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001582
Chris Lattnerb6541762007-03-04 20:40:38 +00001583 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001584 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001585 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001586
Dan Gohman475871a2008-07-27 21:46:04 +00001587 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001588}
1589
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001590// Since it may not be valid to emit a fold to zero for vector initializers
1591// check if we can before folding.
1592static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001593 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001594 if (!VT.isVector()) {
1595 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001596 }
1597 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001598 // Produce a vector of zeros.
1599 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1600 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1601 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1602 &Ops[0], Ops.size());
1603 }
1604 return SDValue();
1605}
1606
Dan Gohman475871a2008-07-27 21:46:04 +00001607SDValue DAGCombiner::visitSUB(SDNode *N) {
1608 SDValue N0 = N->getOperand(0);
1609 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001610 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1611 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001612 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1613 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001614 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001615
Dan Gohman7f321562007-06-25 16:23:39 +00001616 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001617 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001618 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001619 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001620 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001621
Chris Lattner854077d2005-10-17 01:07:11 +00001622 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001623 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001624 if (N0 == N1)
1625 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001626 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001627 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001628 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001629 // fold (sub x, c) -> (add x, -c)
1630 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001631 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001632 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001633 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1634 if (N0C && N0C->isAllOnesValue())
1635 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001636 // fold A-(A-B) -> B
1637 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1638 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001639 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001640 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001641 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001642 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001643 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001644 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001645 // fold C2-(A+C1) -> (C2-C1)-A
1646 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00001647 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(),
1648 VT);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001649 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
Bill Wendling96cb1122012-07-19 00:04:14 +00001650 N1.getOperand(0));
Eric Christopher7332e6e2011-07-14 01:12:15 +00001651 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001652 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001653 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001654 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1655 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001656 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001657 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1658 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001659 // fold ((A+(C+B))-B) -> A+C
1660 if (N0.getOpcode() == ISD::ADD &&
1661 N0.getOperand(1).getOpcode() == ISD::ADD &&
1662 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001663 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1664 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001665 // fold ((A-(B-C))-C) -> A-B
1666 if (N0.getOpcode() == ISD::SUB &&
1667 N0.getOperand(1).getOpcode() == ISD::SUB &&
1668 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001669 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1670 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001671
Dan Gohman613e0d82007-07-03 14:03:57 +00001672 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001673 if (N0.getOpcode() == ISD::UNDEF)
1674 return N0;
1675 if (N1.getOpcode() == ISD::UNDEF)
1676 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001677
Dan Gohman6520e202008-10-18 02:06:02 +00001678 // If the relocation model supports it, consider symbol offsets.
1679 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001680 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001681 // fold (sub Sym, c) -> Sym-c
1682 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001683 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001684 GA->getOffset() -
1685 (uint64_t)N1C->getSExtValue());
1686 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1687 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1688 if (GA->getGlobal() == GB->getGlobal())
1689 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1690 VT);
1691 }
1692
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001693 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001694}
1695
Craig Toppercc274522012-01-07 09:06:39 +00001696SDValue DAGCombiner::visitSUBC(SDNode *N) {
1697 SDValue N0 = N->getOperand(0);
1698 SDValue N1 = N->getOperand(1);
1699 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1700 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1701 EVT VT = N0.getValueType();
1702
1703 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001704 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001705 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1706 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1707 MVT::Glue));
1708
1709 // fold (subc x, x) -> 0 + no borrow
1710 if (N0 == N1)
1711 return CombineTo(N, DAG.getConstant(0, VT),
1712 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1713 MVT::Glue));
1714
1715 // fold (subc x, 0) -> x + no borrow
1716 if (N1C && N1C->isNullValue())
1717 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1718 MVT::Glue));
1719
1720 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1721 if (N0C && N0C->isAllOnesValue())
1722 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1723 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1724 MVT::Glue));
1725
1726 return SDValue();
1727}
1728
1729SDValue DAGCombiner::visitSUBE(SDNode *N) {
1730 SDValue N0 = N->getOperand(0);
1731 SDValue N1 = N->getOperand(1);
1732 SDValue CarryIn = N->getOperand(2);
1733
1734 // fold (sube x, y, false) -> (subc x, y)
1735 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1736 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1737
1738 return SDValue();
1739}
1740
Dan Gohman475871a2008-07-27 21:46:04 +00001741SDValue DAGCombiner::visitMUL(SDNode *N) {
1742 SDValue N0 = N->getOperand(0);
1743 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001744 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1745 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001746 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001747
Dan Gohman7f321562007-06-25 16:23:39 +00001748 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001749 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001750 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001751 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001752 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001753
Dan Gohman613e0d82007-07-03 14:03:57 +00001754 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001755 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001756 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001757 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001758 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001759 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001760 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001761 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001762 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001763 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001764 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001765 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001766 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001767 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001768 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1769 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001770 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001771 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001772 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001773 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001774 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001775 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001776 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1777 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001778 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001779 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001780 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1781 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001782 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001783 DAG.getConstant(Log2Val,
1784 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001785 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001786 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001787 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001788 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001789 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1790 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001791 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001792 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1793 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001794 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001795
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001796 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1797 // use.
1798 {
Dan Gohman475871a2008-07-27 21:46:04 +00001799 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001800 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1801 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001802 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001803 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001804 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001805 isa<ConstantSDNode>(N1.getOperand(1)) &&
1806 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001807 Sh = N1; Y = N0;
1808 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001809
Gabor Greifba36cb52008-08-28 21:40:38 +00001810 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001811 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1812 Sh.getOperand(0), Y);
1813 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1814 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001815 }
1816 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001817
Chris Lattnera1deca32006-03-04 23:33:26 +00001818 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001819 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001820 isa<ConstantSDNode>(N0.getOperand(1)))
1821 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1822 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1823 N0.getOperand(0), N1),
1824 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1825 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001826
Nate Begemancd4d58c2006-02-03 06:46:56 +00001827 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001828 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001829 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001830 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001831
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001832 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001833}
1834
Dan Gohman475871a2008-07-27 21:46:04 +00001835SDValue DAGCombiner::visitSDIV(SDNode *N) {
1836 SDValue N0 = N->getOperand(0);
1837 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001838 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1839 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001840 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001841
Dan Gohman7f321562007-06-25 16:23:39 +00001842 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001843 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001844 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001845 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001846 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001847
Nate Begeman1d4d4142005-09-01 00:19:25 +00001848 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001849 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001850 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001851 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001852 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001853 return N0;
1854 // fold (sdiv X, -1) -> 0-X
1855 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001856 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1857 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001858 // If we know the sign bits of both operands are zero, strength reduce to a
1859 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001860 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001861 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001862 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1863 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001864 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001865 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001866 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001867 (N1C->getAPIntValue().isPowerOf2() ||
1868 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001869 // If dividing by powers of two is cheap, then don't perform the following
1870 // fold.
1871 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001872 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001873
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001874 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001875
Chris Lattner8f4880b2006-02-16 08:02:36 +00001876 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001877 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1878 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001879 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001880 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001881
Chris Lattner8f4880b2006-02-16 08:02:36 +00001882 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001883 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1884 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001885 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001886 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001887 AddToWorkList(SRL.getNode());
1888 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001889 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001890 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001891
Nate Begeman405e3ec2005-10-21 00:02:42 +00001892 // If we're dividing by a positive value, we're done. Otherwise, we must
1893 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001894 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001895 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001896
Gabor Greifba36cb52008-08-28 21:40:38 +00001897 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001898 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1899 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001900 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001901
Nate Begeman69575232005-10-20 02:15:44 +00001902 // if integer divide is expensive and we satisfy the requirements, emit an
1903 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001904 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001905 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001906 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001907 }
Dan Gohman7f321562007-06-25 16:23:39 +00001908
Dan Gohman613e0d82007-07-03 14:03:57 +00001909 // undef / X -> 0
1910 if (N0.getOpcode() == ISD::UNDEF)
1911 return DAG.getConstant(0, VT);
1912 // X / undef -> undef
1913 if (N1.getOpcode() == ISD::UNDEF)
1914 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001915
Dan Gohman475871a2008-07-27 21:46:04 +00001916 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001917}
1918
Dan Gohman475871a2008-07-27 21:46:04 +00001919SDValue DAGCombiner::visitUDIV(SDNode *N) {
1920 SDValue N0 = N->getOperand(0);
1921 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001922 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1923 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001924 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001925
Dan Gohman7f321562007-06-25 16:23:39 +00001926 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001927 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001928 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001929 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001930 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001931
Nate Begeman1d4d4142005-09-01 00:19:25 +00001932 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001933 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001934 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001935 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001936 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001937 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001938 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001939 getShiftAmountTy(N0.getValueType())));
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001940 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001941 if (N1.getOpcode() == ISD::SHL) {
1942 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001943 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001944 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001945 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1946 N1.getOperand(1),
1947 DAG.getConstant(SHC->getAPIntValue()
1948 .logBase2(),
1949 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001950 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001951 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001952 }
1953 }
1954 }
Nate Begeman69575232005-10-20 02:15:44 +00001955 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001956 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001957 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001958 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001959 }
Dan Gohman7f321562007-06-25 16:23:39 +00001960
Dan Gohman613e0d82007-07-03 14:03:57 +00001961 // undef / X -> 0
1962 if (N0.getOpcode() == ISD::UNDEF)
1963 return DAG.getConstant(0, VT);
1964 // X / undef -> undef
1965 if (N1.getOpcode() == ISD::UNDEF)
1966 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001967
Dan Gohman475871a2008-07-27 21:46:04 +00001968 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001969}
1970
Dan Gohman475871a2008-07-27 21:46:04 +00001971SDValue DAGCombiner::visitSREM(SDNode *N) {
1972 SDValue N0 = N->getOperand(0);
1973 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001974 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1975 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001976 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001977
Nate Begeman1d4d4142005-09-01 00:19:25 +00001978 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001979 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001980 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001981 // If we know the sign bits of both operands are zero, strength reduce to a
1982 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001983 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001984 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001985 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00001986 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001987
Dan Gohman77003042007-11-26 23:46:11 +00001988 // If X/C can be simplified by the division-by-constant logic, lower
1989 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001990 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001991 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001992 AddToWorkList(Div.getNode());
1993 SDValue OptimizedDiv = combine(Div.getNode());
1994 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001995 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1996 OptimizedDiv, N1);
1997 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00001998 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00001999 return Sub;
2000 }
Chris Lattner26d29902006-10-12 20:58:32 +00002001 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002002
Dan Gohman613e0d82007-07-03 14:03:57 +00002003 // undef % X -> 0
2004 if (N0.getOpcode() == ISD::UNDEF)
2005 return DAG.getConstant(0, VT);
2006 // X % undef -> undef
2007 if (N1.getOpcode() == ISD::UNDEF)
2008 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002009
Dan Gohman475871a2008-07-27 21:46:04 +00002010 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002011}
2012
Dan Gohman475871a2008-07-27 21:46:04 +00002013SDValue DAGCombiner::visitUREM(SDNode *N) {
2014 SDValue N0 = N->getOperand(0);
2015 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002016 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2017 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002018 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002019
Nate Begeman1d4d4142005-09-01 00:19:25 +00002020 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002021 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002022 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002023 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002024 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002025 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002026 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002027 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2028 if (N1.getOpcode() == ISD::SHL) {
2029 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002030 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002031 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002032 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002033 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002034 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002035 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002036 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002037 }
2038 }
2039 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002040
Dan Gohman77003042007-11-26 23:46:11 +00002041 // If X/C can be simplified by the division-by-constant logic, lower
2042 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002043 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002044 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002045 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002046 SDValue OptimizedDiv = combine(Div.getNode());
2047 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002048 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2049 OptimizedDiv, N1);
2050 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002051 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002052 return Sub;
2053 }
Chris Lattner26d29902006-10-12 20:58:32 +00002054 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002055
Dan Gohman613e0d82007-07-03 14:03:57 +00002056 // undef % X -> 0
2057 if (N0.getOpcode() == ISD::UNDEF)
2058 return DAG.getConstant(0, VT);
2059 // X % undef -> undef
2060 if (N1.getOpcode() == ISD::UNDEF)
2061 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002062
Dan Gohman475871a2008-07-27 21:46:04 +00002063 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002064}
2065
Dan Gohman475871a2008-07-27 21:46:04 +00002066SDValue DAGCombiner::visitMULHS(SDNode *N) {
2067 SDValue N0 = N->getOperand(0);
2068 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002069 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002070 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002071 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002072
Nate Begeman1d4d4142005-09-01 00:19:25 +00002073 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002074 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002075 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002076 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002077 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002078 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2079 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002080 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002081 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002082 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002083 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002084
Chris Lattnerde1c3602010-12-13 08:39:01 +00002085 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2086 // plus a shift.
2087 if (VT.isSimple() && !VT.isVector()) {
2088 MVT Simple = VT.getSimpleVT();
2089 unsigned SimpleSize = Simple.getSizeInBits();
2090 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2091 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2092 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2093 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2094 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002095 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002096 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002097 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2098 }
2099 }
Owen Anderson95771af2011-02-25 21:41:48 +00002100
Dan Gohman475871a2008-07-27 21:46:04 +00002101 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002102}
2103
Dan Gohman475871a2008-07-27 21:46:04 +00002104SDValue DAGCombiner::visitMULHU(SDNode *N) {
2105 SDValue N0 = N->getOperand(0);
2106 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002107 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002108 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002109 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002110
Nate Begeman1d4d4142005-09-01 00:19:25 +00002111 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002112 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002113 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002114 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002115 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002116 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002117 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002118 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002119 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002120
Chris Lattnerde1c3602010-12-13 08:39:01 +00002121 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2122 // plus a shift.
2123 if (VT.isSimple() && !VT.isVector()) {
2124 MVT Simple = VT.getSimpleVT();
2125 unsigned SimpleSize = Simple.getSizeInBits();
2126 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2127 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2128 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2129 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2130 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2131 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002132 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002133 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2134 }
2135 }
Owen Anderson95771af2011-02-25 21:41:48 +00002136
Dan Gohman475871a2008-07-27 21:46:04 +00002137 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002138}
2139
Dan Gohman389079b2007-10-08 17:57:15 +00002140/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2141/// compute two values. LoOp and HiOp give the opcodes for the two computations
2142/// that are being performed. Return true if a simplification was made.
2143///
Scott Michelfdc40a02009-02-17 22:15:04 +00002144SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002145 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002146 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002147 bool HiExists = N->hasAnyUseOfValue(1);
2148 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002149 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002150 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002151 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2152 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002153 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002154 }
2155
2156 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002157 bool LoExists = N->hasAnyUseOfValue(0);
2158 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002159 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002160 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002161 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2162 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002163 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002164 }
2165
Evan Cheng44711942007-11-08 09:25:29 +00002166 // If both halves are used, return as it is.
2167 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002168 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002169
2170 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002171 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002172 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2173 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002174 AddToWorkList(Lo.getNode());
2175 SDValue LoOpt = combine(Lo.getNode());
2176 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002177 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002178 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002179 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002180 }
2181
Evan Cheng44711942007-11-08 09:25:29 +00002182 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002183 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002184 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002185 AddToWorkList(Hi.getNode());
2186 SDValue HiOpt = combine(Hi.getNode());
2187 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002188 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002189 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002190 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002191 }
Bill Wendling826d1142009-01-30 03:08:40 +00002192
Dan Gohman475871a2008-07-27 21:46:04 +00002193 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002194}
2195
Dan Gohman475871a2008-07-27 21:46:04 +00002196SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2197 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002198 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002199
Chris Lattner33e77d32010-12-15 06:04:19 +00002200 EVT VT = N->getValueType(0);
2201 DebugLoc DL = N->getDebugLoc();
2202
2203 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2204 // plus a shift.
2205 if (VT.isSimple() && !VT.isVector()) {
2206 MVT Simple = VT.getSimpleVT();
2207 unsigned SimpleSize = Simple.getSizeInBits();
2208 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2209 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2210 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2211 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2212 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2213 // Compute the high part as N1.
2214 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002215 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002216 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2217 // Compute the low part as N0.
2218 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2219 return CombineTo(N, Lo, Hi);
2220 }
2221 }
Owen Anderson95771af2011-02-25 21:41:48 +00002222
Dan Gohman475871a2008-07-27 21:46:04 +00002223 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002224}
2225
Dan Gohman475871a2008-07-27 21:46:04 +00002226SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2227 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002228 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002229
Chris Lattner33e77d32010-12-15 06:04:19 +00002230 EVT VT = N->getValueType(0);
2231 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002232
Chris Lattner33e77d32010-12-15 06:04:19 +00002233 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2234 // plus a shift.
2235 if (VT.isSimple() && !VT.isVector()) {
2236 MVT Simple = VT.getSimpleVT();
2237 unsigned SimpleSize = Simple.getSizeInBits();
2238 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2239 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2240 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2241 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2242 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2243 // Compute the high part as N1.
2244 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002245 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002246 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2247 // Compute the low part as N0.
2248 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2249 return CombineTo(N, Lo, Hi);
2250 }
2251 }
Owen Anderson95771af2011-02-25 21:41:48 +00002252
Dan Gohman475871a2008-07-27 21:46:04 +00002253 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002254}
2255
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002256SDValue DAGCombiner::visitSMULO(SDNode *N) {
2257 // (smulo x, 2) -> (saddo x, x)
2258 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2259 if (C2->getAPIntValue() == 2)
2260 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2261 N->getOperand(0), N->getOperand(0));
2262
2263 return SDValue();
2264}
2265
2266SDValue DAGCombiner::visitUMULO(SDNode *N) {
2267 // (umulo x, 2) -> (uaddo x, x)
2268 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2269 if (C2->getAPIntValue() == 2)
2270 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2271 N->getOperand(0), N->getOperand(0));
2272
2273 return SDValue();
2274}
2275
Dan Gohman475871a2008-07-27 21:46:04 +00002276SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2277 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002278 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002279
Dan Gohman475871a2008-07-27 21:46:04 +00002280 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002281}
2282
Dan Gohman475871a2008-07-27 21:46:04 +00002283SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2284 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002285 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002286
Dan Gohman475871a2008-07-27 21:46:04 +00002287 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002288}
2289
Chris Lattner35e5c142006-05-05 05:51:50 +00002290/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2291/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002292SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2293 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002294 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002295 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002296
Dan Gohmanff00a552010-01-14 03:08:49 +00002297 // Bail early if none of these transforms apply.
2298 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2299
Chris Lattner540121f2006-05-05 06:31:05 +00002300 // For each of OP in AND/OR/XOR:
2301 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2302 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2303 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002304 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002305 //
2306 // do not sink logical op inside of a vector extend, since it may combine
2307 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002308 EVT Op0VT = N0.getOperand(0).getValueType();
2309 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002310 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002311 // Avoid infinite looping with PromoteIntBinOp.
2312 (N0.getOpcode() == ISD::ANY_EXTEND &&
2313 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002314 (N0.getOpcode() == ISD::TRUNCATE &&
2315 (!TLI.isZExtFree(VT, Op0VT) ||
2316 !TLI.isTruncateFree(Op0VT, VT)) &&
2317 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002318 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002319 Op0VT == N1.getOperand(0).getValueType() &&
2320 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002321 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2322 N0.getOperand(0).getValueType(),
2323 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002324 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002325 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002326 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002327
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002328 // For each of OP in SHL/SRL/SRA/AND...
2329 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2330 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2331 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002332 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002333 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002334 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002335 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2336 N0.getOperand(0).getValueType(),
2337 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002338 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002339 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2340 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002341 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002342
Nadav Rotem4ac90812012-04-01 19:31:22 +00002343 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2344 // Only perform this optimization after type legalization and before
2345 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2346 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2347 // we don't want to undo this promotion.
2348 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2349 // on scalars.
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002350 if ((N0.getOpcode() == ISD::BITCAST ||
2351 N0.getOpcode() == ISD::SCALAR_TO_VECTOR) &&
2352 Level == AfterLegalizeTypes) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002353 SDValue In0 = N0.getOperand(0);
2354 SDValue In1 = N1.getOperand(0);
2355 EVT In0Ty = In0.getValueType();
2356 EVT In1Ty = In1.getValueType();
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002357 DebugLoc DL = N->getDebugLoc();
2358 // If both incoming values are integers, and the original types are the
2359 // same.
Nadav Rotem4ac90812012-04-01 19:31:22 +00002360 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002361 SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1);
2362 SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002363 AddToWorkList(Op.getNode());
2364 return BC;
2365 }
2366 }
2367
2368 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2369 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2370 // If both shuffles use the same mask, and both shuffle within a single
2371 // vector, then it is worthwhile to move the swizzle after the operation.
2372 // The type-legalizer generates this pattern when loading illegal
2373 // vector types from memory. In many cases this allows additional shuffle
2374 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002375 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2376 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2377 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002378 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2379 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002380
2381 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2382 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002383
2384 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002385
2386 // Check that both shuffles use the same mask. The masks are known to be of
2387 // the same length because the result vector type is the same.
2388 bool SameMask = true;
2389 for (unsigned i = 0; i != NumElts; ++i) {
2390 int Idx0 = SVN0->getMaskElt(i);
2391 int Idx1 = SVN1->getMaskElt(i);
2392 if (Idx0 != Idx1) {
2393 SameMask = false;
2394 break;
2395 }
2396 }
2397
Craig Topperf9204232012-04-09 07:19:09 +00002398 if (SameMask) {
2399 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT,
2400 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002401 AddToWorkList(Op.getNode());
Craig Topperf9204232012-04-09 07:19:09 +00002402 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op,
2403 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002404 }
2405 }
Craig Topperf9204232012-04-09 07:19:09 +00002406
Dan Gohman475871a2008-07-27 21:46:04 +00002407 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002408}
2409
Dan Gohman475871a2008-07-27 21:46:04 +00002410SDValue DAGCombiner::visitAND(SDNode *N) {
2411 SDValue N0 = N->getOperand(0);
2412 SDValue N1 = N->getOperand(1);
2413 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002414 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2415 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002416 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002417 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002418
Dan Gohman7f321562007-06-25 16:23:39 +00002419 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002420 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002421 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002422 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002423 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002424
Dan Gohman613e0d82007-07-03 14:03:57 +00002425 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002426 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002427 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002428 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002429 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002430 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002431 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002432 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002433 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002434 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002435 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002436 return N0;
2437 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002438 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002439 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002440 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002441 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002442 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002443 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002444 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002445 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002446 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002447 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002448 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002449 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002450 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2451 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002452 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002453 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002454 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002455 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002456 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2457 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002458
Chris Lattner1ec05d12006-03-01 21:47:21 +00002459 // Replace uses of the AND with uses of the Zero extend node.
2460 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002461
Chris Lattner3603cd62006-02-02 07:17:31 +00002462 // We actually want to replace all uses of the any_extend with the
2463 // zero_extend, to avoid duplicating things. This will later cause this
2464 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002465 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002466 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002467 }
2468 }
James Molloy6259dcd2012-02-20 12:02:38 +00002469 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2470 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2471 // already be zero by virtue of the width of the base type of the load.
2472 //
2473 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2474 // more cases.
2475 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2476 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2477 N0.getOpcode() == ISD::LOAD) {
2478 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2479 N0 : N0.getOperand(0) );
2480
2481 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2482 // This can be a pure constant or a vector splat, in which case we treat the
2483 // vector as a scalar and use the splat value.
2484 APInt Constant = APInt::getNullValue(1);
2485 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2486 Constant = C->getAPIntValue();
2487 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2488 APInt SplatValue, SplatUndef;
2489 unsigned SplatBitSize;
2490 bool HasAnyUndefs;
2491 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2492 SplatBitSize, HasAnyUndefs);
2493 if (IsSplat) {
2494 // Undef bits can contribute to a possible optimisation if set, so
2495 // set them.
2496 SplatValue |= SplatUndef;
2497
2498 // The splat value may be something like "0x00FFFFFF", which means 0 for
2499 // the first vector value and FF for the rest, repeating. We need a mask
2500 // that will apply equally to all members of the vector, so AND all the
2501 // lanes of the constant together.
2502 EVT VT = Vector->getValueType(0);
2503 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002504
2505 // If the splat value has been compressed to a bitlength lower
2506 // than the size of the vector lane, we need to re-expand it to
2507 // the lane size.
2508 if (BitWidth > SplatBitSize)
2509 for (SplatValue = SplatValue.zextOrTrunc(BitWidth);
2510 SplatBitSize < BitWidth;
2511 SplatBitSize = SplatBitSize * 2)
2512 SplatValue |= SplatValue.shl(SplatBitSize);
2513
James Molloy6259dcd2012-02-20 12:02:38 +00002514 Constant = APInt::getAllOnesValue(BitWidth);
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002515 for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i)
James Molloy6259dcd2012-02-20 12:02:38 +00002516 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2517 }
2518 }
2519
2520 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2521 // actually legal and isn't going to get expanded, else this is a false
2522 // optimisation.
2523 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2524 Load->getMemoryVT());
2525
2526 // Resize the constant to the same size as the original memory access before
2527 // extension. If it is still the AllOnesValue then this AND is completely
2528 // unneeded.
2529 Constant =
2530 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2531
2532 bool B;
2533 switch (Load->getExtensionType()) {
2534 default: B = false; break;
2535 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2536 case ISD::ZEXTLOAD:
2537 case ISD::NON_EXTLOAD: B = true; break;
2538 }
2539
2540 if (B && Constant.isAllOnesValue()) {
2541 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2542 // preserve semantics once we get rid of the AND.
2543 SDValue NewLoad(Load, 0);
2544 if (Load->getExtensionType() == ISD::EXTLOAD) {
2545 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2546 Load->getValueType(0), Load->getDebugLoc(),
2547 Load->getChain(), Load->getBasePtr(),
2548 Load->getOffset(), Load->getMemoryVT(),
2549 Load->getMemOperand());
2550 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
Hal Finkeld65e4632012-06-20 15:42:48 +00002551 if (Load->getNumValues() == 3) {
2552 // PRE/POST_INC loads have 3 values.
2553 SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1),
2554 NewLoad.getValue(2) };
2555 CombineTo(Load, To, 3, true);
2556 } else {
2557 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2558 }
James Molloy6259dcd2012-02-20 12:02:38 +00002559 }
2560
2561 // Fold the AND away, taking care not to fold to the old load node if we
2562 // replaced it.
2563 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2564
2565 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2566 }
2567 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002568 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2569 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2570 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2571 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002572
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002573 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002574 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002575 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002576 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002577 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2578 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002579 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002580 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002581 }
Bill Wendling2627a882009-01-30 20:43:18 +00002582 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002583 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002584 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2585 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002586 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002587 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002588 }
Bill Wendling2627a882009-01-30 20:43:18 +00002589 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002590 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002591 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2592 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002593 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002594 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002595 }
2596 }
2597 // canonicalize equivalent to ll == rl
2598 if (LL == RR && LR == RL) {
2599 Op1 = ISD::getSetCCSwappedOperands(Op1);
2600 std::swap(RL, RR);
2601 }
2602 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002603 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002604 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002605 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002606 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002607 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2608 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002609 }
2610 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002611
Bill Wendling2627a882009-01-30 20:43:18 +00002612 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002613 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002614 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002615 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002616 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002617
Nate Begemande996292006-02-03 22:24:05 +00002618 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2619 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002620 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002621 SimplifyDemandedBits(SDValue(N, 0)))
2622 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002623
Nate Begemanded49632005-10-13 03:11:28 +00002624 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002625 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002626 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002627 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002628 // If we zero all the possible extended bits, then we can turn this into
2629 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002630 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002631 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002632 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002633 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002634 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002635 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002636 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002637 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002638 LN0->isVolatile(), LN0->isNonTemporal(),
2639 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002640 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002641 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002642 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002643 }
2644 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002645 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002646 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002647 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002648 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002649 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002650 // If we zero all the possible extended bits, then we can turn this into
2651 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002652 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002653 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002654 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002655 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002656 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002657 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002658 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002659 LN0->getBasePtr(), LN0->getPointerInfo(),
2660 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002661 LN0->isVolatile(), LN0->isNonTemporal(),
2662 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002663 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002664 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002665 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002666 }
2667 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002668
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002669 // fold (and (load x), 255) -> (zextload x, i8)
2670 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002671 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2672 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2673 (N0.getOpcode() == ISD::ANY_EXTEND &&
2674 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2675 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2676 LoadSDNode *LN0 = HasAnyExt
2677 ? cast<LoadSDNode>(N0.getOperand(0))
2678 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002679 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002680 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002681 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002682 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2683 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2684 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002685
Evan Chengd40d03e2010-01-06 19:38:29 +00002686 if (ExtVT == LoadedVT &&
2687 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002688 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002689
2690 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002691 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002692 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002693 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002694 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2695 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002696 AddToWorkList(N);
2697 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2698 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2699 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002700
Chris Lattneref7634c2010-01-07 21:53:27 +00002701 // Do not change the width of a volatile load.
2702 // Do not generate loads of non-round integer types since these can
2703 // be expensive (and would be wrong if the type is not byte sized).
2704 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2705 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2706 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002707
Chris Lattneref7634c2010-01-07 21:53:27 +00002708 unsigned Alignment = LN0->getAlignment();
2709 SDValue NewPtr = LN0->getBasePtr();
2710
2711 // For big endian targets, we need to add an offset to the pointer
2712 // to load the correct bytes. For little endian systems, we merely
2713 // need to read fewer bytes from the same pointer.
2714 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002715 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2716 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2717 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002718 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2719 NewPtr, DAG.getConstant(PtrOff, PtrType));
2720 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002721 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002722
2723 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002724
Chris Lattneref7634c2010-01-07 21:53:27 +00002725 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2726 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002727 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002728 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002729 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002730 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2731 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002732 AddToWorkList(N);
2733 CombineTo(LN0, Load, Load.getValue(1));
2734 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002735 }
Evan Cheng466685d2006-10-09 20:57:25 +00002736 }
Chris Lattner15045b62006-02-28 06:35:35 +00002737 }
2738 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002739
Evan Chenga9e13ba2012-07-17 18:54:11 +00002740 if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
2741 VT.getSizeInBits() <= 64) {
2742 if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2743 APInt ADDC = ADDI->getAPIntValue();
2744 if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2745 // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal
2746 // immediate for an add, but it is legal if its top c2 bits are set,
2747 // transform the ADD so the immediate doesn't need to be materialized
2748 // in a register.
2749 if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
2750 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
2751 SRLI->getZExtValue());
2752 if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) {
2753 ADDC |= Mask;
2754 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2755 SDValue NewAdd =
2756 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
2757 N0.getOperand(0), DAG.getConstant(ADDC, VT));
2758 CombineTo(N0.getNode(), NewAdd);
2759 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2760 }
2761 }
2762 }
2763 }
2764 }
2765 }
2766
2767
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002768 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002769}
2770
Evan Cheng9568e5c2011-06-21 06:01:08 +00002771/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2772///
2773SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2774 bool DemandHighBits) {
2775 if (!LegalOperations)
2776 return SDValue();
2777
2778 EVT VT = N->getValueType(0);
2779 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2780 return SDValue();
2781 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2782 return SDValue();
2783
2784 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2785 bool LookPassAnd0 = false;
2786 bool LookPassAnd1 = false;
2787 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2788 std::swap(N0, N1);
2789 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2790 std::swap(N0, N1);
2791 if (N0.getOpcode() == ISD::AND) {
2792 if (!N0.getNode()->hasOneUse())
2793 return SDValue();
2794 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2795 if (!N01C || N01C->getZExtValue() != 0xFF00)
2796 return SDValue();
2797 N0 = N0.getOperand(0);
2798 LookPassAnd0 = true;
2799 }
2800
2801 if (N1.getOpcode() == ISD::AND) {
2802 if (!N1.getNode()->hasOneUse())
2803 return SDValue();
2804 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2805 if (!N11C || N11C->getZExtValue() != 0xFF)
2806 return SDValue();
2807 N1 = N1.getOperand(0);
2808 LookPassAnd1 = true;
2809 }
2810
2811 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2812 std::swap(N0, N1);
2813 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2814 return SDValue();
2815 if (!N0.getNode()->hasOneUse() ||
2816 !N1.getNode()->hasOneUse())
2817 return SDValue();
2818
2819 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2820 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2821 if (!N01C || !N11C)
2822 return SDValue();
2823 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2824 return SDValue();
2825
2826 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2827 SDValue N00 = N0->getOperand(0);
2828 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2829 if (!N00.getNode()->hasOneUse())
2830 return SDValue();
2831 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2832 if (!N001C || N001C->getZExtValue() != 0xFF)
2833 return SDValue();
2834 N00 = N00.getOperand(0);
2835 LookPassAnd0 = true;
2836 }
2837
2838 SDValue N10 = N1->getOperand(0);
2839 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2840 if (!N10.getNode()->hasOneUse())
2841 return SDValue();
2842 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2843 if (!N101C || N101C->getZExtValue() != 0xFF00)
2844 return SDValue();
2845 N10 = N10.getOperand(0);
2846 LookPassAnd1 = true;
2847 }
2848
2849 if (N00 != N10)
2850 return SDValue();
2851
2852 // Make sure everything beyond the low halfword is zero since the SRL 16
2853 // will clear the top bits.
2854 unsigned OpSizeInBits = VT.getSizeInBits();
2855 if (DemandHighBits && OpSizeInBits > 16 &&
2856 (!LookPassAnd0 || !LookPassAnd1) &&
2857 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2858 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002859
Evan Cheng9568e5c2011-06-21 06:01:08 +00002860 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2861 if (OpSizeInBits > 16)
2862 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2863 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2864 return Res;
2865}
2866
2867/// isBSwapHWordElement - Return true if the specified node is an element
2868/// that makes up a 32-bit packed halfword byteswap. i.e.
2869/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2870static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2871 if (!N.getNode()->hasOneUse())
2872 return false;
2873
2874 unsigned Opc = N.getOpcode();
2875 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2876 return false;
2877
2878 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2879 if (!N1C)
2880 return false;
2881
2882 unsigned Num;
2883 switch (N1C->getZExtValue()) {
2884 default:
2885 return false;
2886 case 0xFF: Num = 0; break;
2887 case 0xFF00: Num = 1; break;
2888 case 0xFF0000: Num = 2; break;
2889 case 0xFF000000: Num = 3; break;
2890 }
2891
2892 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2893 SDValue N0 = N.getOperand(0);
2894 if (Opc == ISD::AND) {
2895 if (Num == 0 || Num == 2) {
2896 // (x >> 8) & 0xff
2897 // (x >> 8) & 0xff0000
2898 if (N0.getOpcode() != ISD::SRL)
2899 return false;
2900 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2901 if (!C || C->getZExtValue() != 8)
2902 return false;
2903 } else {
2904 // (x << 8) & 0xff00
2905 // (x << 8) & 0xff000000
2906 if (N0.getOpcode() != ISD::SHL)
2907 return false;
2908 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2909 if (!C || C->getZExtValue() != 8)
2910 return false;
2911 }
2912 } else if (Opc == ISD::SHL) {
2913 // (x & 0xff) << 8
2914 // (x & 0xff0000) << 8
2915 if (Num != 0 && Num != 2)
2916 return false;
2917 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2918 if (!C || C->getZExtValue() != 8)
2919 return false;
2920 } else { // Opc == ISD::SRL
2921 // (x & 0xff00) >> 8
2922 // (x & 0xff000000) >> 8
2923 if (Num != 1 && Num != 3)
2924 return false;
2925 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2926 if (!C || C->getZExtValue() != 8)
2927 return false;
2928 }
2929
2930 if (Parts[Num])
2931 return false;
2932
2933 Parts[Num] = N0.getOperand(0).getNode();
2934 return true;
2935}
2936
2937/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2938/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2939/// => (rotl (bswap x), 16)
2940SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2941 if (!LegalOperations)
2942 return SDValue();
2943
2944 EVT VT = N->getValueType(0);
2945 if (VT != MVT::i32)
2946 return SDValue();
2947 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2948 return SDValue();
2949
2950 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2951 // Look for either
2952 // (or (or (and), (and)), (or (and), (and)))
2953 // (or (or (or (and), (and)), (and)), (and))
2954 if (N0.getOpcode() != ISD::OR)
2955 return SDValue();
2956 SDValue N00 = N0.getOperand(0);
2957 SDValue N01 = N0.getOperand(1);
2958
2959 if (N1.getOpcode() == ISD::OR) {
2960 // (or (or (and), (and)), (or (and), (and)))
2961 SDValue N000 = N00.getOperand(0);
2962 if (!isBSwapHWordElement(N000, Parts))
2963 return SDValue();
2964
2965 SDValue N001 = N00.getOperand(1);
2966 if (!isBSwapHWordElement(N001, Parts))
2967 return SDValue();
2968 SDValue N010 = N01.getOperand(0);
2969 if (!isBSwapHWordElement(N010, Parts))
2970 return SDValue();
2971 SDValue N011 = N01.getOperand(1);
2972 if (!isBSwapHWordElement(N011, Parts))
2973 return SDValue();
2974 } else {
2975 // (or (or (or (and), (and)), (and)), (and))
2976 if (!isBSwapHWordElement(N1, Parts))
2977 return SDValue();
2978 if (!isBSwapHWordElement(N01, Parts))
2979 return SDValue();
2980 if (N00.getOpcode() != ISD::OR)
2981 return SDValue();
2982 SDValue N000 = N00.getOperand(0);
2983 if (!isBSwapHWordElement(N000, Parts))
2984 return SDValue();
2985 SDValue N001 = N00.getOperand(1);
2986 if (!isBSwapHWordElement(N001, Parts))
2987 return SDValue();
2988 }
2989
2990 // Make sure the parts are all coming from the same node.
2991 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2992 return SDValue();
2993
2994 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
2995 SDValue(Parts[0],0));
2996
2997 // Result of the bswap should be rotated by 16. If it's not legal, than
2998 // do (x << 16) | (x >> 16).
2999 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
3000 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
3001 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
3002 else if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
3003 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
3004 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
3005 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
3006 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
3007}
3008
Dan Gohman475871a2008-07-27 21:46:04 +00003009SDValue DAGCombiner::visitOR(SDNode *N) {
3010 SDValue N0 = N->getOperand(0);
3011 SDValue N1 = N->getOperand(1);
3012 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00003013 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3014 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003015 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003016
Dan Gohman7f321562007-06-25 16:23:39 +00003017 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003018 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003019 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003020 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003021 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003022
Dan Gohman613e0d82007-07-03 14:03:57 +00003023 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00003024 if (!LegalOperations &&
3025 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00003026 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
3027 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
3028 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003029 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003030 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003031 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003032 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003033 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00003034 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003035 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003036 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003037 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003038 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003039 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003040 return N1;
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003041 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003042 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003043 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00003044
3045 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
3046 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
3047 if (BSwap.getNode() != 0)
3048 return BSwap;
3049 BSwap = MatchBSwapHWordLow(N, N0, N1);
3050 if (BSwap.getNode() != 0)
3051 return BSwap;
3052
Nate Begemancd4d58c2006-02-03 06:46:56 +00003053 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00003054 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003055 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003056 return ROR;
3057 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003058 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003059 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003060 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003061 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003062 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003063 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
3064 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3065 N0.getOperand(0), N1),
3066 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003067 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003068 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3069 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3070 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3071 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003072
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003073 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003074 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003075 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3076 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003077 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003078 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003079 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
3080 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003081 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003082 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003083 }
Bill Wendling09025642009-01-30 20:59:34 +00003084 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3085 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003086 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003087 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003088 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
3089 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003090 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003091 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003092 }
3093 }
3094 // canonicalize equivalent to ll == rl
3095 if (LL == RR && LR == RL) {
3096 Op1 = ISD::getSetCCSwappedOperands(Op1);
3097 std::swap(RL, RR);
3098 }
3099 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003100 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003101 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003102 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00003103 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00003104 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
3105 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003106 }
3107 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003108
Bill Wendling09025642009-01-30 20:59:34 +00003109 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003110 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003111 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003112 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003113 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003114
Bill Wendling09025642009-01-30 20:59:34 +00003115 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003116 if (N0.getOpcode() == ISD::AND &&
3117 N1.getOpcode() == ISD::AND &&
3118 N0.getOperand(1).getOpcode() == ISD::Constant &&
3119 N1.getOperand(1).getOpcode() == ISD::Constant &&
3120 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003121 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003122 // We can only do this xform if we know that bits from X that are set in C2
3123 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003124 const APInt &LHSMask =
3125 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3126 const APInt &RHSMask =
3127 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003128
Dan Gohmanea859be2007-06-22 14:59:07 +00003129 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3130 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003131 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3132 N0.getOperand(0), N1.getOperand(0));
3133 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3134 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003135 }
3136 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003137
Chris Lattner516b9622006-09-14 20:50:57 +00003138 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003139 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003140 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003141
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003142 // Simplify the operands using demanded-bits information.
3143 if (!VT.isVector() &&
3144 SimplifyDemandedBits(SDValue(N, 0)))
3145 return SDValue(N, 0);
3146
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003147 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003148}
3149
Chris Lattner516b9622006-09-14 20:50:57 +00003150/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003151static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003152 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003153 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003154 Mask = Op.getOperand(1);
3155 Op = Op.getOperand(0);
3156 } else {
3157 return false;
3158 }
3159 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003160
Chris Lattner516b9622006-09-14 20:50:57 +00003161 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3162 Shift = Op;
3163 return true;
3164 }
Bill Wendling09025642009-01-30 20:59:34 +00003165
Scott Michelfdc40a02009-02-17 22:15:04 +00003166 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003167}
3168
Chris Lattner516b9622006-09-14 20:50:57 +00003169// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3170// idioms for rotate, and if the target supports rotation instructions, generate
3171// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003172SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003173 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003174 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003175 if (!TLI.isTypeLegal(VT)) return 0;
3176
3177 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003178 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3179 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003180 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003181
Chris Lattner516b9622006-09-14 20:50:57 +00003182 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003183 SDValue LHSShift; // The shift.
3184 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003185 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3186 return 0; // Not part of a rotate.
3187
Dan Gohman475871a2008-07-27 21:46:04 +00003188 SDValue RHSShift; // The shift.
3189 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003190 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3191 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003192
Chris Lattner516b9622006-09-14 20:50:57 +00003193 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3194 return 0; // Not shifting the same value.
3195
3196 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3197 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003198
Chris Lattner516b9622006-09-14 20:50:57 +00003199 // Canonicalize shl to left side in a shl/srl pair.
3200 if (RHSShift.getOpcode() == ISD::SHL) {
3201 std::swap(LHS, RHS);
3202 std::swap(LHSShift, RHSShift);
3203 std::swap(LHSMask , RHSMask );
3204 }
3205
Duncan Sands83ec4b62008-06-06 12:08:01 +00003206 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003207 SDValue LHSShiftArg = LHSShift.getOperand(0);
3208 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3209 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003210
3211 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3212 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003213 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3214 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003215 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3216 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003217 if ((LShVal + RShVal) != OpSizeInBits)
3218 return 0;
3219
Dan Gohman475871a2008-07-27 21:46:04 +00003220 SDValue Rot;
Chris Lattner516b9622006-09-14 20:50:57 +00003221 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003222 Rot = DAG.getNode(ISD::ROTL, DL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00003223 else
Bill Wendling317bd702009-01-30 21:14:50 +00003224 Rot = DAG.getNode(ISD::ROTR, DL, VT, LHSShiftArg, RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003225
Chris Lattner516b9622006-09-14 20:50:57 +00003226 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003227 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003228 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003229
Gabor Greifba36cb52008-08-28 21:40:38 +00003230 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003231 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3232 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003233 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003234 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003235 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3236 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003237 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003238
Bill Wendling317bd702009-01-30 21:14:50 +00003239 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003240 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003241
Gabor Greifba36cb52008-08-28 21:40:38 +00003242 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003243 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003244
Chris Lattner516b9622006-09-14 20:50:57 +00003245 // If there is a mask here, and we have a variable shift, we can't be sure
3246 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003247 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003248 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003249
Chris Lattner516b9622006-09-14 20:50:57 +00003250 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3251 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003252 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3253 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003254 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003255 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003256 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00003257 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003258 return DAG.getNode(ISD::ROTL, DL, VT,
3259 LHSShiftArg, LHSShiftAmt).getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003260 else
Bill Wendling317bd702009-01-30 21:14:50 +00003261 return DAG.getNode(ISD::ROTR, DL, VT,
3262 LHSShiftArg, RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003263 }
Chris Lattner516b9622006-09-14 20:50:57 +00003264 }
3265 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003266
Chris Lattner516b9622006-09-14 20:50:57 +00003267 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3268 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003269 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3270 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003271 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003272 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003273 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling2692d592008-08-31 01:13:31 +00003274 if (HasROTR)
Bill Wendling317bd702009-01-30 21:14:50 +00003275 return DAG.getNode(ISD::ROTR, DL, VT,
3276 LHSShiftArg, RHSShiftAmt).getNode();
Bill Wendling2692d592008-08-31 01:13:31 +00003277 else
Bill Wendling317bd702009-01-30 21:14:50 +00003278 return DAG.getNode(ISD::ROTL, DL, VT,
3279 LHSShiftArg, LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003280 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003281 }
3282 }
3283
Dan Gohman74feef22008-10-17 01:23:35 +00003284 // Look for sign/zext/any-extended or truncate cases:
Scott Michelc9dc1142007-04-02 21:36:32 +00003285 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3286 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003287 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3288 || LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
Scott Michelc9dc1142007-04-02 21:36:32 +00003289 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3290 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003291 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3292 || RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003293 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3294 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003295 if (RExtOp0.getOpcode() == ISD::SUB &&
3296 RExtOp0.getOperand(1) == LExtOp0) {
3297 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003298 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003299 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003300 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003301 if (ConstantSDNode *SUBC =
3302 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003303 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003304 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3305 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003306 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003307 }
3308 }
3309 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3310 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003311 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003312 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003313 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003314 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003315 if (ConstantSDNode *SUBC =
3316 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003317 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003318 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3319 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003320 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003321 }
3322 }
Chris Lattner516b9622006-09-14 20:50:57 +00003323 }
3324 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003325
Chris Lattner516b9622006-09-14 20:50:57 +00003326 return 0;
3327}
3328
Dan Gohman475871a2008-07-27 21:46:04 +00003329SDValue DAGCombiner::visitXOR(SDNode *N) {
3330 SDValue N0 = N->getOperand(0);
3331 SDValue N1 = N->getOperand(1);
3332 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003333 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3334 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003335 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003336
Dan Gohman7f321562007-06-25 16:23:39 +00003337 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003338 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003339 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003340 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003341 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003342
Evan Cheng26471c42008-03-25 20:08:07 +00003343 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3344 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3345 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003346 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003347 if (N0.getOpcode() == ISD::UNDEF)
3348 return N0;
3349 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003350 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003351 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003352 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003353 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003354 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003355 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003356 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003357 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003358 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003359 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003360 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003361 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003362 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003363 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003364
Nate Begeman1d4d4142005-09-01 00:19:25 +00003365 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003366 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003367 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003368 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3369 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003370
Duncan Sands25cf2272008-11-24 14:53:14 +00003371 if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003372 switch (N0.getOpcode()) {
3373 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003374 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003375 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003376 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003377 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003378 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003379 N0.getOperand(3), NotCC);
3380 }
3381 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003382 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003383
Chris Lattner61c5ff42007-09-10 21:39:07 +00003384 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003385 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003386 N0.getNode()->hasOneUse() &&
3387 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003388 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003389 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003390 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003391 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003392 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003393 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003394
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003395 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003396 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003397 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003398 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003399 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3400 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003401 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3402 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003403 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003404 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003405 }
3406 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003407 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003408 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003409 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003410 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003411 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3412 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003413 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3414 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003415 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003416 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003417 }
3418 }
Bill Wendling317bd702009-01-30 21:14:50 +00003419 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003420 if (N1C && N0.getOpcode() == ISD::XOR) {
3421 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3422 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3423 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003424 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3425 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003426 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003427 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003428 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3429 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003430 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003431 }
3432 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003433 if (N0 == N1)
3434 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003435
Chris Lattner35e5c142006-05-05 05:51:50 +00003436 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3437 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003438 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003439 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003440 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003441
Chris Lattner3e104b12006-04-08 04:15:24 +00003442 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003443 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003444 SimplifyDemandedBits(SDValue(N, 0)))
3445 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003446
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003447 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003448}
3449
Chris Lattnere70da202007-12-06 07:33:36 +00003450/// visitShiftByConstant - Handle transforms common to the three shifts, when
3451/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003452SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003453 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003454 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003455
Chris Lattnere70da202007-12-06 07:33:36 +00003456 // We want to pull some binops through shifts, so that we have (and (shift))
3457 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3458 // thing happens with address calculations, so it's important to canonicalize
3459 // it.
3460 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003461
Chris Lattnere70da202007-12-06 07:33:36 +00003462 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003463 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003464 case ISD::OR:
3465 case ISD::XOR:
3466 HighBitSet = false; // We can only transform sra if the high bit is clear.
3467 break;
3468 case ISD::AND:
3469 HighBitSet = true; // We can only transform sra if the high bit is set.
3470 break;
3471 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003472 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003473 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003474 HighBitSet = false; // We can only transform sra if the high bit is clear.
3475 break;
3476 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003477
Chris Lattnere70da202007-12-06 07:33:36 +00003478 // We require the RHS of the binop to be a constant as well.
3479 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003480 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003481
3482 // FIXME: disable this unless the input to the binop is a shift by a constant.
3483 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003484 //
Bill Wendling88103372009-01-30 21:37:17 +00003485 // void foo(int *X, int i) { X[i & 1235] = 1; }
3486 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003487 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003488 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003489 BinOpLHSVal->getOpcode() != ISD::SRA &&
3490 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3491 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003492 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003493
Owen Andersone50ed302009-08-10 22:56:29 +00003494 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003495
Bill Wendling88103372009-01-30 21:37:17 +00003496 // If this is a signed shift right, and the high bit is modified by the
3497 // logical operation, do not perform the transformation. The highBitSet
3498 // boolean indicates the value of the high bit of the constant which would
3499 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003500 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003501 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3502 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003503 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003504 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003505
Chris Lattnere70da202007-12-06 07:33:36 +00003506 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003507 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3508 N->getValueType(0),
3509 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003510
3511 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003512 SDValue NewShift = DAG.getNode(N->getOpcode(),
3513 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003514 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003515
3516 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003517 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003518}
3519
Dan Gohman475871a2008-07-27 21:46:04 +00003520SDValue DAGCombiner::visitSHL(SDNode *N) {
3521 SDValue N0 = N->getOperand(0);
3522 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003523 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3524 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003525 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003526 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003527
Nate Begeman1d4d4142005-09-01 00:19:25 +00003528 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003529 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003530 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003531 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003532 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003533 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003534 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003535 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003536 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003537 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003538 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003539 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003540 // fold (shl undef, x) -> 0
3541 if (N0.getOpcode() == ISD::UNDEF)
3542 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003543 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003544 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003545 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003546 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003547 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003548 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003549 N1.getOperand(0).getOpcode() == ISD::AND &&
3550 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003551 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003552 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003553 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003554 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003555 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003556 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003557 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003558 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3559 DAG.getNode(ISD::TRUNCATE,
3560 N->getDebugLoc(),
3561 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003562 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003563 }
3564 }
3565
Dan Gohman475871a2008-07-27 21:46:04 +00003566 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3567 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003568
3569 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003570 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003571 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003572 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3573 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003574 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003575 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003576 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003577 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003578 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003579
3580 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3581 // For this to be valid, the second form must not preserve any of the bits
3582 // that are shifted out by the inner shift in the first form. This means
3583 // the outer shift size must be >= the number of bits added by the ext.
3584 // As a corollary, we don't care what kind of ext it is.
3585 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3586 N0.getOpcode() == ISD::ANY_EXTEND ||
3587 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3588 N0.getOperand(0).getOpcode() == ISD::SHL &&
3589 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003590 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003591 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3592 uint64_t c2 = N1C->getZExtValue();
3593 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3594 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3595 if (c2 >= OpSizeInBits - InnerShiftSize) {
3596 if (c1 + c2 >= OpSizeInBits)
3597 return DAG.getConstant(0, VT);
3598 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3599 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3600 N0.getOperand(0)->getOperand(0)),
3601 DAG.getConstant(c1 + c2, N1.getValueType()));
3602 }
3603 }
3604
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003605 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3606 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003607 // Only fold this if the inner shift has no other uses -- if it does, folding
3608 // this will increase the total number of instructions.
3609 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003610 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003611 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003612 if (c1 < VT.getSizeInBits()) {
3613 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003614 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3615 VT.getSizeInBits() - c1);
3616 SDValue Shift;
3617 if (c2 > c1) {
3618 Mask = Mask.shl(c2-c1);
3619 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3620 DAG.getConstant(c2-c1, N1.getValueType()));
3621 } else {
3622 Mask = Mask.lshr(c1-c2);
3623 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3624 DAG.getConstant(c1-c2, N1.getValueType()));
3625 }
3626 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3627 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003628 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003629 }
Bill Wendling88103372009-01-30 21:37:17 +00003630 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003631 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3632 SDValue HiBitsMask =
3633 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3634 VT.getSizeInBits() -
3635 N1C->getZExtValue()),
3636 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003637 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003638 HiBitsMask);
3639 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003640
Evan Chenge5b51ac2010-04-17 06:13:15 +00003641 if (N1C) {
3642 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3643 if (NewSHL.getNode())
3644 return NewSHL;
3645 }
3646
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003647 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003648}
3649
Dan Gohman475871a2008-07-27 21:46:04 +00003650SDValue DAGCombiner::visitSRA(SDNode *N) {
3651 SDValue N0 = N->getOperand(0);
3652 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003653 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3654 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003655 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003656 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003657
Bill Wendling88103372009-01-30 21:37:17 +00003658 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003659 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003660 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003661 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003662 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003663 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003664 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003665 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003666 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003667 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003668 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003669 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003670 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003671 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003672 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003673 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3674 // sext_inreg.
3675 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003676 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003677 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3678 if (VT.isVector())
3679 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3680 ExtVT, VT.getVectorNumElements());
3681 if ((!LegalOperations ||
3682 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003683 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003684 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003685 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003686
Bill Wendling88103372009-01-30 21:37:17 +00003687 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003688 if (N1C && N0.getOpcode() == ISD::SRA) {
3689 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003690 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003691 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003692 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003693 DAG.getConstant(Sum, N1C->getValueType(0)));
3694 }
3695 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003696
Bill Wendling88103372009-01-30 21:37:17 +00003697 // fold (sra (shl X, m), (sub result_size, n))
3698 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003699 // result_size - n != m.
3700 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003701 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003702 if (N0.getOpcode() == ISD::SHL) {
3703 // Get the two constanst of the shifts, CN0 = m, CN = n.
3704 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3705 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003706 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003707 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003708 EVT::getIntegerVT(*DAG.getContext(),
3709 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003710 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003711 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003712
Scott Michelfdc40a02009-02-17 22:15:04 +00003713 // If the shift is not a no-op (in which case this should be just a sign
3714 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003715 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003716 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003717 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003718 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3719 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003720 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003721
Owen Anderson95771af2011-02-25 21:41:48 +00003722 SDValue Amt = DAG.getConstant(ShiftAmt,
3723 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003724 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3725 N0.getOperand(0), Amt);
3726 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3727 Shift);
3728 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3729 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003730 }
3731 }
3732 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003733
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003734 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003735 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003736 N1.getOperand(0).getOpcode() == ISD::AND &&
3737 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003738 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003739 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003740 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003741 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003742 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003743 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003744 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003745 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003746 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003747 DAG.getNode(ISD::TRUNCATE,
3748 N->getDebugLoc(),
3749 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003750 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003751 }
3752 }
3753
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003754 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3755 // if c1 is equal to the number of bits the trunc removes
3756 if (N0.getOpcode() == ISD::TRUNCATE &&
3757 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3758 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3759 N0.getOperand(0).hasOneUse() &&
3760 N0.getOperand(0).getOperand(1).hasOneUse() &&
3761 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3762 EVT LargeVT = N0.getOperand(0).getValueType();
3763 ConstantSDNode *LargeShiftAmt =
3764 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3765
3766 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3767 LargeShiftAmt->getZExtValue()) {
3768 SDValue Amt =
3769 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003770 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003771 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3772 N0.getOperand(0).getOperand(0), Amt);
3773 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3774 }
3775 }
3776
Scott Michelfdc40a02009-02-17 22:15:04 +00003777 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003778 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3779 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003780
3781
Nate Begeman1d4d4142005-09-01 00:19:25 +00003782 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003783 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003784 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003785
Evan Chenge5b51ac2010-04-17 06:13:15 +00003786 if (N1C) {
3787 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3788 if (NewSRA.getNode())
3789 return NewSRA;
3790 }
3791
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003792 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003793}
3794
Dan Gohman475871a2008-07-27 21:46:04 +00003795SDValue DAGCombiner::visitSRL(SDNode *N) {
3796 SDValue N0 = N->getOperand(0);
3797 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003798 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3799 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003800 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003801 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003802
Nate Begeman1d4d4142005-09-01 00:19:25 +00003803 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003804 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003805 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003806 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003807 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003808 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003809 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003810 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003811 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003812 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003813 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003814 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003815 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003816 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003817 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003818 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003819
Bill Wendling88103372009-01-30 21:37:17 +00003820 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003821 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003822 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003823 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3824 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003825 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003826 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003827 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003828 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003829 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003830
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003831 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003832 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3833 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003834 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003835 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003836 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3837 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003838 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3839 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003840 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003841 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003842 if (c1 + OpSizeInBits == InnerShiftSize) {
3843 if (c1 + c2 >= InnerShiftSize)
3844 return DAG.getConstant(0, VT);
3845 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003846 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003847 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003848 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003849 }
3850 }
3851
Chris Lattnerefcddc32010-04-15 05:28:43 +00003852 // fold (srl (shl x, c), c) -> (and x, cst2)
3853 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3854 N0.getValueSizeInBits() <= 64) {
3855 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3856 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3857 DAG.getConstant(~0ULL >> ShAmt, VT));
3858 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003859
Scott Michelfdc40a02009-02-17 22:15:04 +00003860
Chris Lattner06afe072006-05-05 22:53:17 +00003861 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3862 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3863 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003864 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003865 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003866 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003867
Evan Chenge5b51ac2010-04-17 06:13:15 +00003868 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003869 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003870 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003871 N0.getOperand(0),
3872 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003873 AddToWorkList(SmallShift.getNode());
3874 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3875 }
Chris Lattner06afe072006-05-05 22:53:17 +00003876 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003877
Chris Lattner3657ffe2006-10-12 20:23:19 +00003878 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3879 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003880 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003881 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003882 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003883 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003884
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003885 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003886 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003887 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003888 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003889 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003890
Chris Lattner350bec02006-04-02 06:11:11 +00003891 // If any of the input bits are KnownOne, then the input couldn't be all
3892 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003893 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003894
Chris Lattner350bec02006-04-02 06:11:11 +00003895 // If all of the bits input the to ctlz node are known to be zero, then
3896 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003897 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00003898 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003899
Chris Lattner350bec02006-04-02 06:11:11 +00003900 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003901 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003902 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003903 // could be set on input to the CTLZ node. If this bit is set, the SRL
3904 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3905 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003906 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003907 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003908
Chris Lattner350bec02006-04-02 06:11:11 +00003909 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003910 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003911 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003912 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003913 }
Bill Wendling88103372009-01-30 21:37:17 +00003914
3915 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3916 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003917 }
3918 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003919
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003920 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003921 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003922 N1.getOperand(0).getOpcode() == ISD::AND &&
3923 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003924 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003925 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003926 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003927 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003928 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003929 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003930 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003931 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003932 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003933 DAG.getNode(ISD::TRUNCATE,
3934 N->getDebugLoc(),
3935 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003936 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003937 }
3938 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003939
Chris Lattner61a4c072007-04-18 03:06:49 +00003940 // fold operands of srl based on knowledge that the low bits are not
3941 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003942 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3943 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003944
Evan Cheng9ab2b982009-12-18 21:31:31 +00003945 if (N1C) {
3946 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3947 if (NewSRL.getNode())
3948 return NewSRL;
3949 }
3950
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003951 // Attempt to convert a srl of a load into a narrower zero-extending load.
3952 SDValue NarrowLoad = ReduceLoadWidth(N);
3953 if (NarrowLoad.getNode())
3954 return NarrowLoad;
3955
Evan Cheng9ab2b982009-12-18 21:31:31 +00003956 // Here is a common situation. We want to optimize:
3957 //
3958 // %a = ...
3959 // %b = and i32 %a, 2
3960 // %c = srl i32 %b, 1
3961 // brcond i32 %c ...
3962 //
3963 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003964 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00003965 // %a = ...
3966 // %b = and %a, 2
3967 // %c = setcc eq %b, 0
3968 // brcond %c ...
3969 //
3970 // However when after the source operand of SRL is optimized into AND, the SRL
3971 // itself may not be optimized further. Look for it and add the BRCOND into
3972 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00003973 if (N->hasOneUse()) {
3974 SDNode *Use = *N->use_begin();
3975 if (Use->getOpcode() == ISD::BRCOND)
3976 AddToWorkList(Use);
3977 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3978 // Also look pass the truncate.
3979 Use = *Use->use_begin();
3980 if (Use->getOpcode() == ISD::BRCOND)
3981 AddToWorkList(Use);
3982 }
3983 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00003984
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003985 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00003986}
3987
Dan Gohman475871a2008-07-27 21:46:04 +00003988SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3989 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003990 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003991
3992 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003993 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003994 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003995 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003996}
3997
Chandler Carruth63974b22011-12-13 01:56:10 +00003998SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
3999 SDValue N0 = N->getOperand(0);
4000 EVT VT = N->getValueType(0);
4001
4002 // fold (ctlz_zero_undef c1) -> c2
4003 if (isa<ConstantSDNode>(N0))
4004 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
4005 return SDValue();
4006}
4007
Dan Gohman475871a2008-07-27 21:46:04 +00004008SDValue DAGCombiner::visitCTTZ(SDNode *N) {
4009 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004010 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004011
Nate Begeman1d4d4142005-09-01 00:19:25 +00004012 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004013 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004014 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004015 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004016}
4017
Chandler Carruth63974b22011-12-13 01:56:10 +00004018SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
4019 SDValue N0 = N->getOperand(0);
4020 EVT VT = N->getValueType(0);
4021
4022 // fold (cttz_zero_undef c1) -> c2
4023 if (isa<ConstantSDNode>(N0))
4024 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
4025 return SDValue();
4026}
4027
Dan Gohman475871a2008-07-27 21:46:04 +00004028SDValue DAGCombiner::visitCTPOP(SDNode *N) {
4029 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004030 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004031
Nate Begeman1d4d4142005-09-01 00:19:25 +00004032 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004033 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004034 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004035 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004036}
4037
Dan Gohman475871a2008-07-27 21:46:04 +00004038SDValue DAGCombiner::visitSELECT(SDNode *N) {
4039 SDValue N0 = N->getOperand(0);
4040 SDValue N1 = N->getOperand(1);
4041 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004042 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4043 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4044 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00004045 EVT VT = N->getValueType(0);
4046 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00004047
Bill Wendling34584e62009-01-30 22:02:18 +00004048 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004049 if (N1 == N2)
4050 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004051 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004052 if (N0C && !N0C->isNullValue())
4053 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004054 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00004055 if (N0C && N0C->isNullValue())
4056 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004057 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004058 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00004059 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4060 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004061 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004062 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004063 (VT0.isInteger() &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00004064 TLI.getBooleanContents(false) ==
4065 TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004066 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004067 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004068 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00004069 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
4070 N0, DAG.getConstant(1, VT0));
4071 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
4072 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004073 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004074 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00004075 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
4076 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004077 }
Bill Wendling34584e62009-01-30 22:02:18 +00004078 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004079 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00004080 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004081 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004082 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004083 }
Bill Wendling34584e62009-01-30 22:02:18 +00004084 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004085 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004086 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004087 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004088 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004089 }
Bill Wendling34584e62009-01-30 22:02:18 +00004090 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004091 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00004092 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
4093 // fold (select X, X, Y) -> (or X, Y)
4094 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004095 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00004096 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4097 // fold (select X, Y, X) -> (and X, Y)
4098 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004099 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00004100 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004101
Chris Lattner40c62d52005-10-18 06:04:22 +00004102 // If we can fold this based on the true/false value, do so.
4103 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004104 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004105
Nate Begeman44728a72005-09-19 22:34:01 +00004106 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004107 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004108 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004109 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004110 // having to say they don't support SELECT_CC on every type the DAG knows
4111 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004112 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004113 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004114 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4115 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004116 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004117 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004118 }
Bill Wendling34584e62009-01-30 22:02:18 +00004119
Dan Gohman475871a2008-07-27 21:46:04 +00004120 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004121}
4122
Dan Gohman475871a2008-07-27 21:46:04 +00004123SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4124 SDValue N0 = N->getOperand(0);
4125 SDValue N1 = N->getOperand(1);
4126 SDValue N2 = N->getOperand(2);
4127 SDValue N3 = N->getOperand(3);
4128 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004129 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004130
Nate Begeman44728a72005-09-19 22:34:01 +00004131 // fold select_cc lhs, rhs, x, x, cc -> x
4132 if (N2 == N3)
4133 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004134
Chris Lattner5f42a242006-09-20 06:19:26 +00004135 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004136 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004137 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004138 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004139
Gabor Greifba36cb52008-08-28 21:40:38 +00004140 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004141 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004142 return N2; // cond always true -> true val
4143 else
4144 return N3; // cond always false -> false val
4145 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004146
Chris Lattner5f42a242006-09-20 06:19:26 +00004147 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004148 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004149 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4150 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004151 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004152
Chris Lattner40c62d52005-10-18 06:04:22 +00004153 // If we can fold this based on the true/false value, do so.
4154 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004155 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004156
Nate Begeman44728a72005-09-19 22:34:01 +00004157 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004158 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004159}
4160
Dan Gohman475871a2008-07-27 21:46:04 +00004161SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004162 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004163 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4164 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004165}
4166
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004167// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004168// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004169// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004170// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004171static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004172 unsigned ExtOpc,
4173 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004174 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004175 bool HasCopyToRegUses = false;
4176 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004177 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4178 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004179 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004180 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004181 if (User == N)
4182 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004183 if (UI.getUse().getResNo() != N0.getResNo())
4184 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004185 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004186 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004187 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4188 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4189 // Sign bits will be lost after a zext.
4190 return false;
4191 bool Add = false;
4192 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004193 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004194 if (UseOp == N0)
4195 continue;
4196 if (!isa<ConstantSDNode>(UseOp))
4197 return false;
4198 Add = true;
4199 }
4200 if (Add)
4201 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004202 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004203 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004204 // If truncates aren't free and there are users we can't
4205 // extend, it isn't worthwhile.
4206 if (!isTruncFree)
4207 return false;
4208 // Remember if this value is live-out.
4209 if (User->getOpcode() == ISD::CopyToReg)
4210 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004211 }
4212
4213 if (HasCopyToRegUses) {
4214 bool BothLiveOut = false;
4215 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4216 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004217 SDUse &Use = UI.getUse();
4218 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4219 BothLiveOut = true;
4220 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004221 }
4222 }
4223 if (BothLiveOut)
4224 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004225 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004226 return ExtendNodes.size();
4227 }
4228 return true;
4229}
4230
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004231void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4232 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4233 ISD::NodeType ExtType) {
4234 // Extend SetCC uses if necessary.
4235 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4236 SDNode *SetCC = SetCCs[i];
4237 SmallVector<SDValue, 4> Ops;
4238
4239 for (unsigned j = 0; j != 2; ++j) {
4240 SDValue SOp = SetCC->getOperand(j);
4241 if (SOp == Trunc)
4242 Ops.push_back(ExtLoad);
4243 else
4244 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4245 }
4246
4247 Ops.push_back(SetCC->getOperand(2));
4248 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4249 &Ops[0], Ops.size()));
4250 }
4251}
4252
Dan Gohman475871a2008-07-27 21:46:04 +00004253SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4254 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004255 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004256
Nate Begeman1d4d4142005-09-01 00:19:25 +00004257 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004258 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004259 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004260
Nate Begeman1d4d4142005-09-01 00:19:25 +00004261 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004262 // fold (sext (aext x)) -> (sext x)
4263 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004264 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4265 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004266
Chris Lattner22558872007-02-26 03:13:59 +00004267 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004268 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4269 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004270 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4271 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004272 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4273 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004274 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004275 // CombineTo deleted the truncate, if needed, but not what's under it.
4276 AddToWorkList(oye);
4277 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004278 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004279 }
Evan Chengc88138f2007-03-22 01:54:19 +00004280
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004281 // See if the value being truncated is already sign extended. If so, just
4282 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004283 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004284 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4285 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4286 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004287 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004288
Chris Lattner22558872007-02-26 03:13:59 +00004289 if (OpBits == DestBits) {
4290 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4291 // bits, it is already ready.
4292 if (NumSignBits > DestBits-MidBits)
4293 return Op;
4294 } else if (OpBits < DestBits) {
4295 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4296 // bits, just sext from i32.
4297 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004298 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004299 } else {
4300 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4301 // bits, just truncate to i32.
4302 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004303 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004304 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004305
Chris Lattner22558872007-02-26 03:13:59 +00004306 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004307 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4308 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004309 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004310 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004311 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004312 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4313 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004314 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004315 }
Chris Lattner6007b842006-09-21 06:00:20 +00004316 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004317
Evan Cheng110dec22005-12-14 02:19:23 +00004318 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004319 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004320 // on vectors in one instruction. We only perform this transformation on
4321 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004322 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004323 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004324 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004325 bool DoXform = true;
4326 SmallVector<SDNode*, 4> SetCCs;
4327 if (!N0.hasOneUse())
4328 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4329 if (DoXform) {
4330 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004331 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004332 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004333 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004334 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004335 LN0->isVolatile(), LN0->isNonTemporal(),
4336 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004337 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004338 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4339 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004340 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004341 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4342 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004343 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004344 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004345 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004346
4347 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4348 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004349 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4350 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004351 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004352 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004353 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004354 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004355 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004356 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004357 LN0->getBasePtr(), LN0->getPointerInfo(),
4358 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004359 LN0->isVolatile(), LN0->isNonTemporal(),
4360 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004361 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004362 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004363 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4364 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004365 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004366 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004367 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004368 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004369
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004370 // fold (sext (and/or/xor (load x), cst)) ->
4371 // (and/or/xor (sextload x), (sext cst))
4372 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4373 N0.getOpcode() == ISD::XOR) &&
4374 isa<LoadSDNode>(N0.getOperand(0)) &&
4375 N0.getOperand(1).getOpcode() == ISD::Constant &&
4376 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4377 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4378 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4379 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4380 bool DoXform = true;
4381 SmallVector<SDNode*, 4> SetCCs;
4382 if (!N0.hasOneUse())
4383 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4384 SetCCs, TLI);
4385 if (DoXform) {
4386 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4387 LN0->getChain(), LN0->getBasePtr(),
4388 LN0->getPointerInfo(),
4389 LN0->getMemoryVT(),
4390 LN0->isVolatile(),
4391 LN0->isNonTemporal(),
4392 LN0->getAlignment());
4393 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4394 Mask = Mask.sext(VT.getSizeInBits());
4395 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4396 ExtLoad, DAG.getConstant(Mask, VT));
4397 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4398 N0.getOperand(0).getDebugLoc(),
4399 N0.getOperand(0).getValueType(), ExtLoad);
4400 CombineTo(N, And);
4401 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4402 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4403 ISD::SIGN_EXTEND);
4404 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4405 }
4406 }
4407 }
4408
Chris Lattner20a35c32007-04-11 05:32:27 +00004409 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004410 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004411 // Only do this before legalize for now.
4412 if (VT.isVector() && !LegalOperations) {
4413 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004414 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4415 // of the same size as the compared operands. Only optimize sext(setcc())
4416 // if this is the case.
4417 EVT SVT = TLI.getSetCCResultType(N0VT);
4418
4419 // We know that the # elements of the results is the same as the
4420 // # elements of the compare (and the # elements of the compare result
4421 // for that matter). Check to see that they are the same size. If so,
4422 // we know that the element size of the sext'd result matches the
4423 // element size of the compare operands.
4424 if (VT.getSizeInBits() == SVT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004425 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004426 N0.getOperand(1),
4427 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004428 // If the desired elements are smaller or larger than the source
4429 // elements we can use a matching integer vector type and then
4430 // truncate/sign extend
4431 else {
Duncan Sands34727662010-07-12 08:16:59 +00004432 EVT MatchingElementType =
4433 EVT::getIntegerVT(*DAG.getContext(),
4434 N0VT.getScalarType().getSizeInBits());
4435 EVT MatchingVectorType =
4436 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4437 N0VT.getVectorNumElements());
Nadav Rotem2e506192012-04-11 08:26:11 +00004438
4439 if (SVT == MatchingVectorType) {
4440 SDValue VsetCC = DAG.getSetCC(N->getDebugLoc(), MatchingVectorType,
4441 N0.getOperand(0), N0.getOperand(1),
4442 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4443 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
4444 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004445 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004446 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004447
Chris Lattner2b7a2712009-07-08 00:31:33 +00004448 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004449 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004450 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004451 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004452 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004453 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004454 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004455 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004456 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004457 if (!LegalOperations ||
4458 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4459 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4460 DAG.getSetCC(N->getDebugLoc(),
4461 TLI.getSetCCResultType(VT),
4462 N0.getOperand(0), N0.getOperand(1),
4463 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4464 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004465 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004466
Dan Gohman8f0ad582008-04-28 16:58:24 +00004467 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004468 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004469 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004470 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004471
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004472 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004473}
4474
Rafael Espindoladecbc432012-04-09 16:06:03 +00004475// isTruncateOf - If N is a truncate of some other value, return true, record
4476// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4477// This function computes KnownZero to avoid a duplicated call to
4478// ComputeMaskedBits in the caller.
4479static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4480 APInt &KnownZero) {
4481 APInt KnownOne;
4482 if (N->getOpcode() == ISD::TRUNCATE) {
4483 Op = N->getOperand(0);
4484 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4485 return true;
4486 }
4487
4488 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4489 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4490 return false;
4491
4492 SDValue Op0 = N->getOperand(0);
4493 SDValue Op1 = N->getOperand(1);
4494 assert(Op0.getValueType() == Op1.getValueType());
4495
4496 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4497 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004498 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004499 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004500 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004501 Op = Op0;
4502 else
4503 return false;
4504
4505 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4506
4507 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4508 return false;
4509
4510 return true;
4511}
4512
Dan Gohman475871a2008-07-27 21:46:04 +00004513SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4514 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004515 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004516
Nate Begeman1d4d4142005-09-01 00:19:25 +00004517 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004518 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004519 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004520 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004521 // fold (zext (aext x)) -> (zext x)
4522 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004523 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4524 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004525
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004526 // fold (zext (truncate x)) -> (zext x) or
4527 // (zext (truncate x)) -> (truncate x)
4528 // This is valid when the truncated bits of x are already zero.
4529 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004530 SDValue Op;
4531 APInt KnownZero;
4532 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4533 APInt TruncatedBits =
4534 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4535 APInt(Op.getValueSizeInBits(), 0) :
4536 APInt::getBitsSet(Op.getValueSizeInBits(),
4537 N0.getValueSizeInBits(),
4538 std::min(Op.getValueSizeInBits(),
4539 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004540 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004541 if (VT.bitsGT(Op.getValueType()))
4542 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4543 if (VT.bitsLT(Op.getValueType()))
4544 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4545
4546 return Op;
4547 }
4548 }
4549
Evan Chengc88138f2007-03-22 01:54:19 +00004550 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4551 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004552 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004553 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4554 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004555 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4556 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004557 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004558 // CombineTo deleted the truncate, if needed, but not what's under it.
4559 AddToWorkList(oye);
4560 }
Eli Friedmane545d382011-04-16 23:25:34 +00004561 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004562 }
Evan Chengc88138f2007-03-22 01:54:19 +00004563 }
4564
Chris Lattner6007b842006-09-21 06:00:20 +00004565 // fold (zext (truncate x)) -> (and x, mask)
4566 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004567 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004568
4569 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4570 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4571 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4572 if (NarrowLoad.getNode()) {
4573 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4574 if (NarrowLoad.getNode() != N0.getNode()) {
4575 CombineTo(N0.getNode(), NarrowLoad);
4576 // CombineTo deleted the truncate, if needed, but not what's under it.
4577 AddToWorkList(oye);
4578 }
4579 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4580 }
4581
Dan Gohman475871a2008-07-27 21:46:04 +00004582 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004583 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004584 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004585 AddToWorkList(Op.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004586 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004587 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004588 AddToWorkList(Op.getNode());
Chris Lattner6007b842006-09-21 06:00:20 +00004589 }
Dan Gohman87862e72009-12-11 21:31:27 +00004590 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4591 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004592 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004593
Dan Gohman97121ba2009-04-08 00:15:30 +00004594 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4595 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004596 if (N0.getOpcode() == ISD::AND &&
4597 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004598 N0.getOperand(1).getOpcode() == ISD::Constant &&
4599 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4600 N0.getValueType()) ||
4601 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004602 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004603 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004604 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004605 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004606 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004607 }
Dan Gohman220a8232008-03-03 23:51:38 +00004608 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004609 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004610 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4611 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004612 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004613
Evan Cheng110dec22005-12-14 02:19:23 +00004614 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004615 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004616 // on vectors in one instruction. We only perform this transformation on
4617 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004618 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004619 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004620 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004621 bool DoXform = true;
4622 SmallVector<SDNode*, 4> SetCCs;
4623 if (!N0.hasOneUse())
4624 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4625 if (DoXform) {
4626 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004627 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004628 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004629 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004630 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004631 LN0->isVolatile(), LN0->isNonTemporal(),
4632 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004633 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004634 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4635 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004636 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004637
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004638 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4639 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004640 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004641 }
Evan Cheng110dec22005-12-14 02:19:23 +00004642 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004643
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004644 // fold (zext (and/or/xor (load x), cst)) ->
4645 // (and/or/xor (zextload x), (zext cst))
4646 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4647 N0.getOpcode() == ISD::XOR) &&
4648 isa<LoadSDNode>(N0.getOperand(0)) &&
4649 N0.getOperand(1).getOpcode() == ISD::Constant &&
4650 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4651 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4652 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4653 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4654 bool DoXform = true;
4655 SmallVector<SDNode*, 4> SetCCs;
4656 if (!N0.hasOneUse())
4657 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4658 SetCCs, TLI);
4659 if (DoXform) {
4660 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4661 LN0->getChain(), LN0->getBasePtr(),
4662 LN0->getPointerInfo(),
4663 LN0->getMemoryVT(),
4664 LN0->isVolatile(),
4665 LN0->isNonTemporal(),
4666 LN0->getAlignment());
4667 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4668 Mask = Mask.zext(VT.getSizeInBits());
4669 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4670 ExtLoad, DAG.getConstant(Mask, VT));
4671 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4672 N0.getOperand(0).getDebugLoc(),
4673 N0.getOperand(0).getValueType(), ExtLoad);
4674 CombineTo(N, And);
4675 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4676 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4677 ISD::ZERO_EXTEND);
4678 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4679 }
4680 }
4681 }
4682
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004683 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4684 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004685 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4686 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004687 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004688 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004689 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004690 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004691 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004692 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004693 LN0->getBasePtr(), LN0->getPointerInfo(),
4694 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004695 LN0->isVolatile(), LN0->isNonTemporal(),
4696 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004697 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004698 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004699 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4700 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004701 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004702 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004703 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004704 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004705
Chris Lattner20a35c32007-04-11 05:32:27 +00004706 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004707 if (!LegalOperations && VT.isVector()) {
4708 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4709 // Only do this before legalize for now.
4710 EVT N0VT = N0.getOperand(0).getValueType();
4711 EVT EltVT = VT.getVectorElementType();
4712 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4713 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004714 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004715 // We know that the # elements of the results is the same as the
4716 // # elements of the compare (and the # elements of the compare result
4717 // for that matter). Check to see that they are the same size. If so,
4718 // we know that the element size of the sext'd result matches the
4719 // element size of the compare operands.
4720 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004721 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004722 N0.getOperand(1),
4723 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4724 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4725 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004726
4727 // If the desired elements are smaller or larger than the source
4728 // elements we can use a matching integer vector type and then
4729 // truncate/sign extend
4730 EVT MatchingElementType =
4731 EVT::getIntegerVT(*DAG.getContext(),
4732 N0VT.getScalarType().getSizeInBits());
4733 EVT MatchingVectorType =
4734 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4735 N0VT.getVectorNumElements());
4736 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004737 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004738 N0.getOperand(1),
4739 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4740 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4741 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4742 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4743 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004744 }
4745
4746 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004747 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004748 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004749 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004750 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004751 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004752 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004753
Evan Cheng9818c042009-12-15 03:00:32 +00004754 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004755 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004756 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004757 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4758 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004759 SDValue ShAmt = N0.getOperand(1);
4760 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004761 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004762 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004763 // If the original shl may be shifting out bits, do not perform this
4764 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004765 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4766 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4767 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004768 return SDValue();
4769 }
Chris Lattnere0751182011-02-13 19:09:16 +00004770
4771 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004772
4773 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004774 if (VT.getSizeInBits() >= 256)
4775 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004776
Chris Lattnere0751182011-02-13 19:09:16 +00004777 return DAG.getNode(N0.getOpcode(), DL, VT,
4778 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4779 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004780 }
4781
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004782 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004783}
4784
Dan Gohman475871a2008-07-27 21:46:04 +00004785SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4786 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004787 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004788
Chris Lattner5ffc0662006-05-05 05:58:59 +00004789 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004790 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004791 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004792 // fold (aext (aext x)) -> (aext x)
4793 // fold (aext (zext x)) -> (zext x)
4794 // fold (aext (sext x)) -> (sext x)
4795 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4796 N0.getOpcode() == ISD::ZERO_EXTEND ||
4797 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004798 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004799
Evan Chengc88138f2007-03-22 01:54:19 +00004800 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4801 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4802 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004803 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4804 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004805 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4806 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004807 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004808 // CombineTo deleted the truncate, if needed, but not what's under it.
4809 AddToWorkList(oye);
4810 }
Eli Friedmane545d382011-04-16 23:25:34 +00004811 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004812 }
Evan Chengc88138f2007-03-22 01:54:19 +00004813 }
4814
Chris Lattner84750582006-09-20 06:29:17 +00004815 // fold (aext (truncate x))
4816 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004817 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004818 if (TruncOp.getValueType() == VT)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00004819 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004820 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004821 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4822 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004823 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004824
Dan Gohman97121ba2009-04-08 00:15:30 +00004825 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4826 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004827 if (N0.getOpcode() == ISD::AND &&
4828 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004829 N0.getOperand(1).getOpcode() == ISD::Constant &&
4830 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4831 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004832 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004833 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004834 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004835 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004836 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004837 }
Dan Gohman220a8232008-03-03 23:51:38 +00004838 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004839 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004840 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4841 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004842 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004843
Chris Lattner5ffc0662006-05-05 05:58:59 +00004844 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004845 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004846 // on vectors in one instruction. We only perform this transformation on
4847 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004848 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004849 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004850 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004851 bool DoXform = true;
4852 SmallVector<SDNode*, 4> SetCCs;
4853 if (!N0.hasOneUse())
4854 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4855 if (DoXform) {
4856 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004857 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004858 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004859 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004860 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004861 LN0->isVolatile(), LN0->isNonTemporal(),
4862 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004863 CombineTo(N, ExtLoad);
4864 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4865 N0.getValueType(), ExtLoad);
4866 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004867 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4868 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004869 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4870 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004871 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004872
Chris Lattner5ffc0662006-05-05 05:58:59 +00004873 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4874 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4875 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004876 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004877 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004878 N0.hasOneUse()) {
4879 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004880 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004881 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4882 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004883 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004884 LN0->isVolatile(), LN0->isNonTemporal(),
4885 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004886 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004887 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004888 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4889 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004890 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004891 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004892 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004893
Chris Lattner20a35c32007-04-11 05:32:27 +00004894 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004895 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4896 // Only do this before legalize for now.
4897 if (VT.isVector() && !LegalOperations) {
4898 EVT N0VT = N0.getOperand(0).getValueType();
4899 // We know that the # elements of the results is the same as the
4900 // # elements of the compare (and the # elements of the compare result
4901 // for that matter). Check to see that they are the same size. If so,
4902 // we know that the element size of the sext'd result matches the
4903 // element size of the compare operands.
4904 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004905 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004906 N0.getOperand(1),
4907 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004908 // If the desired elements are smaller or larger than the source
4909 // elements we can use a matching integer vector type and then
4910 // truncate/sign extend
4911 else {
Duncan Sands34727662010-07-12 08:16:59 +00004912 EVT MatchingElementType =
4913 EVT::getIntegerVT(*DAG.getContext(),
4914 N0VT.getScalarType().getSizeInBits());
4915 EVT MatchingVectorType =
4916 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4917 N0VT.getVectorNumElements());
4918 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004919 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004920 N0.getOperand(1),
4921 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4922 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004923 }
4924 }
4925
4926 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004927 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004928 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004929 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004930 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004931 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004932 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004933 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004934
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004935 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004936}
4937
Chris Lattner2b4c2792007-10-13 06:35:54 +00004938/// GetDemandedBits - See if the specified operand can be simplified with the
4939/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004940/// simpler operand, otherwise return a null SDValue.
4941SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004942 switch (V.getOpcode()) {
4943 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004944 case ISD::Constant: {
4945 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4946 assert(CV != 0 && "Const value should be ConstSDNode.");
4947 const APInt &CVal = CV->getAPIntValue();
4948 APInt NewVal = CVal & Mask;
4949 if (NewVal != CVal) {
4950 return DAG.getConstant(NewVal, V.getValueType());
4951 }
4952 break;
4953 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004954 case ISD::OR:
4955 case ISD::XOR:
4956 // If the LHS or RHS don't contribute bits to the or, drop them.
4957 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4958 return V.getOperand(1);
4959 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4960 return V.getOperand(0);
4961 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004962 case ISD::SRL:
4963 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00004964 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00004965 break;
4966 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4967 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004968 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00004969
Dan Gohmancc91d632009-01-03 19:22:06 +00004970 // Watch out for shift count overflow though.
4971 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004972 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00004973 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00004974 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004975 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00004976 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00004977 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004978 }
Dan Gohman475871a2008-07-27 21:46:04 +00004979 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00004980}
4981
Evan Chengc88138f2007-03-22 01:54:19 +00004982/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4983/// bits and then truncated to a narrower type and where N is a multiple
4984/// of number of bits of the narrower type, transform it to a narrower load
4985/// from address + N / num of bits of new type. If the result is to be
4986/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00004987SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00004988 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004989
Evan Chengc88138f2007-03-22 01:54:19 +00004990 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00004991 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004992 EVT VT = N->getValueType(0);
4993 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00004994
Dan Gohman7f8613e2008-08-14 20:04:46 +00004995 // This transformation isn't valid for vector loads.
4996 if (VT.isVector())
4997 return SDValue();
4998
Dan Gohmand1996362010-01-09 02:13:55 +00004999 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00005000 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00005001 if (Opc == ISD::SIGN_EXTEND_INREG) {
5002 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00005003 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005004 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00005005 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005006 ExtType = ISD::ZEXTLOAD;
5007 N0 = SDValue(N, 0);
5008 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
5009 if (!N01) return SDValue();
5010 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
5011 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00005012 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00005013 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
5014 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005015
Owen Andersone50ed302009-08-10 22:56:29 +00005016 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00005017
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005018 // Do not generate loads of non-round integer types since these can
5019 // be expensive (and would be wrong if the type is not byte sized).
5020 if (!ExtVT.isRound())
5021 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005022
Evan Chengc88138f2007-03-22 01:54:19 +00005023 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005024 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00005025 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005026 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005027 // Is the shift amount a multiple of size of VT?
5028 if ((ShAmt & (EVTBits-1)) == 0) {
5029 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00005030 // Is the load width a multiple of size of VT?
5031 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005032 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005033 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005034
Chris Lattnercbf68df2010-12-22 08:02:57 +00005035 // At this point, we must have a load or else we can't do the transform.
5036 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005037
Chris Lattner2831a192010-10-01 05:36:09 +00005038 // If the shift amount is larger than the input type then we're not
5039 // accessing any of the loaded bytes. If the load was a zextload/extload
5040 // then the result of the shift+trunc is zero/undef (handled elsewhere).
5041 // If the load was a sextload then the result is a splat of the sign bit
5042 // of the extended byte. This is not worth optimizing for.
Chris Lattnercbf68df2010-12-22 08:02:57 +00005043 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00005044 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005045 }
5046 }
5047
Dan Gohman394d6292010-11-03 01:47:46 +00005048 // If the load is shifted left (and the result isn't shifted back right),
5049 // we can fold the truncate through the shift.
5050 unsigned ShLeftAmt = 0;
5051 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00005052 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00005053 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5054 ShLeftAmt = N01->getZExtValue();
5055 N0 = N0.getOperand(0);
5056 }
5057 }
Owen Anderson95771af2011-02-25 21:41:48 +00005058
Chris Lattner4c32bc22010-12-22 07:36:50 +00005059 // If we haven't found a load, we can't narrow it. Don't transform one with
5060 // multiple uses, this would require adding a new load.
5061 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
5062 // Don't change the width of a volatile load.
5063 cast<LoadSDNode>(N0)->isVolatile())
5064 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005065
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005066 // Verify that we are actually reducing a load width here.
5067 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005068 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005069
Chris Lattner4c32bc22010-12-22 07:36:50 +00005070 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5071 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005072
Evan Cheng16436df2012-06-26 01:19:33 +00005073 if (PtrType == MVT::Untyped || PtrType.isExtended())
5074 // It's not possible to generate a constant of extended or untyped type.
5075 return SDValue();
5076
Chris Lattner4c32bc22010-12-22 07:36:50 +00005077 // For big endian targets, we need to adjust the offset to the pointer to
5078 // load the correct bytes.
5079 if (TLI.isBigEndian()) {
5080 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5081 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5082 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005083 }
5084
Chris Lattner4c32bc22010-12-22 07:36:50 +00005085 uint64_t PtrOff = ShAmt / 8;
5086 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
5087 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
5088 PtrType, LN0->getBasePtr(),
5089 DAG.getConstant(PtrOff, PtrType));
5090 AddToWorkList(NewPtr.getNode());
5091
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005092 SDValue Load;
5093 if (ExtType == ISD::NON_EXTLOAD)
5094 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
5095 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005096 LN0->isVolatile(), LN0->isNonTemporal(),
5097 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005098 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00005099 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005100 LN0->getPointerInfo().getWithOffset(PtrOff),
5101 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5102 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005103
5104 // Replace the old load's chain with the new load's chain.
5105 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005106 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005107
5108 // Shift the result left, if we've swallowed a left shift.
5109 SDValue Result = Load;
5110 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005111 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005112 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5113 ShImmTy = VT;
5114 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
5115 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
5116 }
5117
5118 // Return the new loaded value.
5119 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005120}
5121
Dan Gohman475871a2008-07-27 21:46:04 +00005122SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5123 SDValue N0 = N->getOperand(0);
5124 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005125 EVT VT = N->getValueType(0);
5126 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005127 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005128 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005129
Nate Begeman1d4d4142005-09-01 00:19:25 +00005130 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005131 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00005132 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005133
Chris Lattner541a24f2006-05-06 22:43:44 +00005134 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005135 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005136 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005137
Nate Begeman646d7e22005-09-02 21:18:40 +00005138 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5139 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00005140 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00005141 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5142 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00005143 }
Chris Lattner4b37e872006-05-08 21:18:59 +00005144
Dan Gohman75dcf082008-07-31 00:50:31 +00005145 // fold (sext_in_reg (sext x)) -> (sext x)
5146 // fold (sext_in_reg (aext x)) -> (sext x)
5147 // if x is small enough.
5148 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5149 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005150 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5151 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00005152 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005153 }
5154
Chris Lattner95a5e052007-04-17 19:03:21 +00005155 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005156 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005157 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005158
Chris Lattner95a5e052007-04-17 19:03:21 +00005159 // fold operands of sext_in_reg based on knowledge that the top bits are not
5160 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005161 if (SimplifyDemandedBits(SDValue(N, 0)))
5162 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005163
Evan Chengc88138f2007-03-22 01:54:19 +00005164 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5165 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005166 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005167 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005168 return NarrowLoad;
5169
Bill Wendling8509c902009-01-30 22:33:24 +00005170 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005171 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005172 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5173 if (N0.getOpcode() == ISD::SRL) {
5174 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005175 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005176 // We can turn this into an SRA iff the input to the SRL is already sign
Chris Lattner4b37e872006-05-08 21:18:59 +00005177 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005178 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005179 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005180 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5181 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005182 }
5183 }
Evan Chengc88138f2007-03-22 01:54:19 +00005184
Nate Begemanded49632005-10-13 03:11:28 +00005185 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005186 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005187 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005188 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005189 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005190 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005191 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005192 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005193 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005194 LN0->getBasePtr(), LN0->getPointerInfo(),
5195 EVT,
David Greene1e559442010-02-15 17:00:31 +00005196 LN0->isVolatile(), LN0->isNonTemporal(),
5197 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005198 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005199 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005200 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005201 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005202 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005203 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005204 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005205 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005206 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005207 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005208 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005209 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005210 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005211 LN0->getBasePtr(), LN0->getPointerInfo(),
5212 EVT,
David Greene1e559442010-02-15 17:00:31 +00005213 LN0->isVolatile(), LN0->isNonTemporal(),
5214 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005215 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005216 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005217 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005218 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005219
5220 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5221 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5222 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5223 N0.getOperand(1), false);
5224 if (BSwap.getNode() != 0)
5225 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5226 BSwap, N1);
5227 }
5228
Dan Gohman475871a2008-07-27 21:46:04 +00005229 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005230}
5231
Dan Gohman475871a2008-07-27 21:46:04 +00005232SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5233 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005234 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005235 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005236
5237 // noop truncate
5238 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005239 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005240 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005241 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005242 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005243 // fold (truncate (truncate x)) -> (truncate x)
5244 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005245 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005246 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005247 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5248 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005249 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005250 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005251 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005252 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5253 N0.getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005254 else if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005255 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005256 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005257 else
5258 // if the source and dest are the same type, we can drop both the extend
Evan Chengd40d03e2010-01-06 19:38:29 +00005259 // and the truncate.
Nate Begeman83e75ec2005-09-06 04:43:02 +00005260 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005261 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005262
Nadav Rotemcc870a82012-02-05 11:39:23 +00005263 // Fold extract-and-trunc into a narrow extract. For example:
5264 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5265 // i32 y = TRUNCATE(i64 x)
5266 // -- becomes --
5267 // v16i8 b = BITCAST (v2i64 val)
5268 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5269 //
5270 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005271 // creates this pattern) and before operation legalization after which
5272 // we need to be more careful about the vector instructions that we generate.
5273 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5274 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5275
5276 EVT VecTy = N0.getOperand(0).getValueType();
5277 EVT ExTy = N0.getValueType();
5278 EVT TrTy = N->getValueType(0);
5279
5280 unsigned NumElem = VecTy.getVectorNumElements();
5281 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5282
5283 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5284 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5285
5286 SDValue EltNo = N0->getOperand(1);
5287 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5288 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005289 EVT IndexTy = N0->getOperand(1).getValueType();
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005290 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5291
5292 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5293 NVT, N0.getOperand(0));
5294
5295 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5296 N->getDebugLoc(), TrTy, V,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005297 DAG.getConstant(Index, IndexTy));
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005298 }
5299 }
5300
Chris Lattner2b4c2792007-10-13 06:35:54 +00005301 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005302 // only the low bits are being used.
5303 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005304 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005305 // may have different active low bits.
5306 if (!VT.isVector()) {
5307 SDValue Shorter =
5308 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5309 VT.getSizeInBits()));
5310 if (Shorter.getNode())
5311 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5312 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005313 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005314 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005315 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5316 SDValue Reduced = ReduceLoadWidth(N);
5317 if (Reduced.getNode())
5318 return Reduced;
5319 }
5320
5321 // Simplify the operands using demanded-bits information.
5322 if (!VT.isVector() &&
5323 SimplifyDemandedBits(SDValue(N, 0)))
5324 return SDValue(N, 0);
5325
Evan Chenge5b51ac2010-04-17 06:13:15 +00005326 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005327}
5328
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005329static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005330 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005331 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005332 return Elt.getNode();
5333 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005334}
5335
5336/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005337/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005338SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005339 assert(N->getOpcode() == ISD::BUILD_PAIR);
5340
Nate Begemanabc01992009-06-05 21:37:30 +00005341 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5342 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005343 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5344 LD1->getPointerInfo().getAddrSpace() !=
5345 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005346 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005347 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005348
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005349 if (ISD::isNON_EXTLoad(LD2) &&
5350 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005351 // If both are volatile this would reduce the number of volatile loads.
5352 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005353 !LD1->isVolatile() &&
5354 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005355 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005356 unsigned Align = LD1->getAlignment();
Dan Gohman6448d912008-09-04 15:39:15 +00005357 unsigned NewAlign = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005358 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005359
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005360 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005361 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005362 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005363 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005364 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005365 }
Bill Wendling67a67682009-01-30 22:44:24 +00005366
Dan Gohman475871a2008-07-27 21:46:04 +00005367 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005368}
5369
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005370SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005371 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005372 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005373
Dan Gohman7f321562007-06-25 16:23:39 +00005374 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5375 // Only do this before legalize, since afterward the target may be depending
5376 // on the bitconvert.
5377 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005378 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005379 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005380 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005381 bool isSimple = true;
5382 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5383 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5384 N0.getOperand(i).getOpcode() != ISD::Constant &&
5385 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005386 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005387 break;
5388 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005389
Owen Andersone50ed302009-08-10 22:56:29 +00005390 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005391 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005392 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005393 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005394 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005395 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005396
Dan Gohman3dd168d2008-09-05 01:58:21 +00005397 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005398 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005399 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005400 if (Res.getNode() != N) {
5401 if (!LegalOperations ||
5402 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5403 return Res;
5404
5405 // Folding it resulted in an illegal node, and it's too late to
5406 // do that. Clean up the old node and forego the transformation.
5407 // Ideally this won't happen very often, because instcombine
5408 // and the earlier dagcombine runs (where illegal nodes are
5409 // permitted) should have folded most of them already.
5410 DAG.DeleteNode(Res.getNode());
5411 }
Chris Lattner94683772005-12-23 05:30:37 +00005412 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005413
Bill Wendling67a67682009-01-30 22:44:24 +00005414 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005415 if (N0.getOpcode() == ISD::BITCAST)
5416 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005417 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005418
Chris Lattner57104102005-12-23 05:44:41 +00005419 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005420 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005421 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005422 // Do not change the width of a volatile load.
5423 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005424 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005425 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman6448d912008-09-04 15:39:15 +00005426 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005427 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005428 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005429
Evan Cheng59d5b682007-05-07 21:27:48 +00005430 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005431 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005432 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005433 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005434 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005435 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005436 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005437 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005438 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005439 Load.getValue(1));
5440 return Load;
5441 }
Chris Lattner57104102005-12-23 05:44:41 +00005442 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005443
Bill Wendling67a67682009-01-30 22:44:24 +00005444 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5445 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005446 // This often reduces constant pool loads.
Owen Anderson29f60f32012-04-02 22:10:29 +00005447 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) ||
5448 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) &&
Nadav Rotem91a7e012012-09-13 14:54:28 +00005449 N0.getNode()->hasOneUse() && VT.isInteger() &&
5450 !VT.isVector() && !N0.getValueType().isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005451 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005452 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005453 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005454
Duncan Sands83ec4b62008-06-06 12:08:01 +00005455 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005456 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005457 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5458 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005459 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005460 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5461 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005462 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005463
Bill Wendling67a67682009-01-30 22:44:24 +00005464 // fold (bitconvert (fcopysign cst, x)) ->
5465 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5466 // Note that we don't handle (copysign x, cst) because this can always be
5467 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005468 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005469 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005470 VT.isInteger() && !VT.isVector()) {
5471 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005472 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005473 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005474 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005475 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005476 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005477
Duncan Sands25cf2272008-11-24 14:53:14 +00005478 // If X has a different width than the result/lhs, sext it or truncate it.
5479 unsigned VTWidth = VT.getSizeInBits();
5480 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005481 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005482 AddToWorkList(X.getNode());
5483 } else if (OrigXWidth > VTWidth) {
5484 // To get the sign bit in the right place, we have to shift it right
5485 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005486 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005487 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005488 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5489 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005490 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005491 AddToWorkList(X.getNode());
5492 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005493
Duncan Sands25cf2272008-11-24 14:53:14 +00005494 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005495 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005496 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005497 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005498
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005499 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005500 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005501 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005502 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005503 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005504
Bill Wendling67a67682009-01-30 22:44:24 +00005505 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005506 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005507 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005508
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005509 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005510 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005511 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5512 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005513 return CombineLD;
5514 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005515
Dan Gohman475871a2008-07-27 21:46:04 +00005516 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005517}
5518
Dan Gohman475871a2008-07-27 21:46:04 +00005519SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005520 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005521 return CombineConsecutiveLoads(N, VT);
5522}
5523
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005524/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005525/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005526/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005527SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005528ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005529 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005530
Chris Lattner6258fb22006-04-02 02:53:43 +00005531 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005532 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005533
Duncan Sands83ec4b62008-06-06 12:08:01 +00005534 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5535 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005536
Chris Lattner6258fb22006-04-02 02:53:43 +00005537 // If this is a conversion of N elements of one type to N elements of another
5538 // type, convert each element. This handles FP<->INT cases.
5539 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005540 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5541 BV->getValueType(0).getVectorNumElements());
5542
5543 // Due to the FP element handling below calling this routine recursively,
5544 // we can end up with a scalar-to-vector node here.
5545 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005546 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5547 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005548 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005549
Dan Gohman475871a2008-07-27 21:46:04 +00005550 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005551 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005552 SDValue Op = BV->getOperand(i);
5553 // If the vector element type is not legal, the BUILD_VECTOR operands
5554 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005555 if (Op.getValueType() != SrcEltVT)
5556 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005557 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005558 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005559 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005560 }
Evan Chenga87008d2009-02-25 22:49:59 +00005561 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5562 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005563 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005564
Chris Lattner6258fb22006-04-02 02:53:43 +00005565 // Otherwise, we're growing or shrinking the elements. To avoid having to
5566 // handle annoying details of growing/shrinking FP values, we convert them to
5567 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005568 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005569 // Convert the input float vector to a int vector where the elements are the
5570 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005571 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005572 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005573 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005574 SrcEltVT = IntVT;
5575 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005576
Chris Lattner6258fb22006-04-02 02:53:43 +00005577 // Now we know the input is an integer vector. If the output is a FP type,
5578 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005579 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005580 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005581 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005582 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005583
Chris Lattner6258fb22006-04-02 02:53:43 +00005584 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005585 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005586 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005587
Chris Lattner6258fb22006-04-02 02:53:43 +00005588 // Okay, we know the src/dst types are both integers of differing types.
5589 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005590 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005591 if (SrcBitSize < DstBitSize) {
5592 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005593
Dan Gohman475871a2008-07-27 21:46:04 +00005594 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005595 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005596 i += NumInputsPerOutput) {
5597 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005598 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005599 bool EltIsUndef = true;
5600 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5601 // Shift the previously computed bits over.
5602 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005603 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005604 if (Op.getOpcode() == ISD::UNDEF) continue;
5605 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005606
Jay Foad40f8f622010-12-07 08:25:19 +00005607 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005608 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005609 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005610
Chris Lattner6258fb22006-04-02 02:53:43 +00005611 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005612 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005613 else
5614 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5615 }
5616
Owen Anderson23b9b192009-08-12 00:36:31 +00005617 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005618 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5619 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005620 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005621
Chris Lattner6258fb22006-04-02 02:53:43 +00005622 // Finally, this must be the case where we are shrinking elements: each input
5623 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005624 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005625 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005626 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5627 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005628 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005629
Dan Gohman7f321562007-06-25 16:23:39 +00005630 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005631 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5632 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005633 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005634 continue;
5635 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005636
Jay Foad40f8f622010-12-07 08:25:19 +00005637 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5638 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005639
Chris Lattner6258fb22006-04-02 02:53:43 +00005640 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005641 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005642 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005643 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005644 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005645 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5646 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005647 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005648 }
5649
5650 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005651 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005652 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5653 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005654
Evan Chenga87008d2009-02-25 22:49:59 +00005655 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5656 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005657}
5658
Dan Gohman475871a2008-07-27 21:46:04 +00005659SDValue DAGCombiner::visitFADD(SDNode *N) {
5660 SDValue N0 = N->getOperand(0);
5661 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005662 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5663 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005664 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005665
Dan Gohman7f321562007-06-25 16:23:39 +00005666 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005667 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005668 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005669 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005670 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005671
Lang Hames01806942012-06-14 20:37:15 +00005672 // fold (fadd c1, c2) -> c1 + c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005673 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005674 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005675 // canonicalize constant to RHS
5676 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005677 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5678 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005679 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5680 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005681 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005682 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005683 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005684 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005685 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005686 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005687 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005688 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005689 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005690 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005691 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005692
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005693 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005694 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5695 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5696 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005697 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005698 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5699 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005700
Owen Anderson43da6c72012-08-30 23:35:16 +00005701 // In unsafe math mode, we can fold chains of FADD's of the same value
5702 // into multiplications. This transform is not safe in general because
5703 // we are reducing the number of rounding steps.
5704 if (DAG.getTarget().Options.UnsafeFPMath &&
5705 TLI.isOperationLegalOrCustom(ISD::FMUL, VT) &&
5706 !N0CFP && !N1CFP) {
5707 if (N0.getOpcode() == ISD::FMUL) {
5708 ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
5709 ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
5710
5711 // (fadd (fmul c, x), x) -> (fmul c+1, x)
5712 if (CFP00 && !CFP01 && N0.getOperand(1) == N1) {
5713 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5714 SDValue(CFP00, 0),
5715 DAG.getConstantFP(1.0, VT));
5716 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5717 N1, NewCFP);
5718 }
5719
5720 // (fadd (fmul x, c), x) -> (fmul c+1, x)
5721 if (CFP01 && !CFP00 && N0.getOperand(0) == N1) {
5722 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5723 SDValue(CFP01, 0),
5724 DAG.getConstantFP(1.0, VT));
5725 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5726 N1, NewCFP);
5727 }
5728
5729 // (fadd (fadd x, x), x) -> (fmul 3.0, x)
5730 if (!CFP00 && !CFP01 && N0.getOperand(0) == N0.getOperand(1) &&
5731 N0.getOperand(0) == N1) {
5732 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5733 N1, DAG.getConstantFP(3.0, VT));
5734 }
5735
5736 // (fadd (fmul c, x), (fadd x, x)) -> (fmul c+2, x)
5737 if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD &&
5738 N1.getOperand(0) == N1.getOperand(1) &&
5739 N0.getOperand(1) == N1.getOperand(0)) {
5740 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5741 SDValue(CFP00, 0),
5742 DAG.getConstantFP(2.0, VT));
5743 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5744 N0.getOperand(1), NewCFP);
5745 }
5746
5747 // (fadd (fmul x, c), (fadd x, x)) -> (fmul c+2, x)
5748 if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD &&
5749 N1.getOperand(0) == N1.getOperand(1) &&
5750 N0.getOperand(0) == N1.getOperand(0)) {
5751 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5752 SDValue(CFP01, 0),
5753 DAG.getConstantFP(2.0, VT));
5754 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5755 N0.getOperand(0), NewCFP);
5756 }
5757 }
5758
5759 if (N1.getOpcode() == ISD::FMUL) {
5760 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
5761 ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1));
5762
5763 // (fadd x, (fmul c, x)) -> (fmul c+1, x)
5764 if (CFP10 && !CFP11 && N1.getOperand(1) == N0) {
5765 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5766 SDValue(CFP10, 0),
5767 DAG.getConstantFP(1.0, VT));
5768 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5769 N0, NewCFP);
5770 }
5771
5772 // (fadd x, (fmul x, c)) -> (fmul c+1, x)
5773 if (CFP11 && !CFP10 && N1.getOperand(0) == N0) {
5774 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5775 SDValue(CFP11, 0),
5776 DAG.getConstantFP(1.0, VT));
5777 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5778 N0, NewCFP);
5779 }
5780
5781 // (fadd x, (fadd x, x)) -> (fmul 3.0, x)
5782 if (!CFP10 && !CFP11 && N1.getOperand(0) == N1.getOperand(1) &&
5783 N1.getOperand(0) == N0) {
5784 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5785 N0, DAG.getConstantFP(3.0, VT));
5786 }
5787
5788 // (fadd (fadd x, x), (fmul c, x)) -> (fmul c+2, x)
5789 if (CFP10 && !CFP11 && N1.getOpcode() == ISD::FADD &&
5790 N1.getOperand(0) == N1.getOperand(1) &&
5791 N0.getOperand(1) == N1.getOperand(0)) {
5792 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5793 SDValue(CFP10, 0),
5794 DAG.getConstantFP(2.0, VT));
5795 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5796 N0.getOperand(1), NewCFP);
5797 }
5798
5799 // (fadd (fadd x, x), (fmul x, c)) -> (fmul c+2, x)
5800 if (CFP11 && !CFP10 && N1.getOpcode() == ISD::FADD &&
5801 N1.getOperand(0) == N1.getOperand(1) &&
5802 N0.getOperand(0) == N1.getOperand(0)) {
5803 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5804 SDValue(CFP11, 0),
5805 DAG.getConstantFP(2.0, VT));
5806 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5807 N0.getOperand(0), NewCFP);
5808 }
5809 }
5810
5811 // (fadd (fadd x, x), (fadd x, x)) -> (fmul 4.0, x)
5812 if (N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD &&
5813 N0.getOperand(0) == N0.getOperand(1) &&
5814 N1.getOperand(0) == N1.getOperand(1) &&
5815 N0.getOperand(0) == N1.getOperand(0)) {
5816 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5817 N0.getOperand(0),
5818 DAG.getConstantFP(4.0, VT));
5819 }
5820 }
5821
Lang Hamesd693caf2012-06-19 22:51:23 +00005822 // FADD -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005823 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005824 DAG.getTarget().Options.UnsafeFPMath) &&
5825 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005826 TLI.isOperationLegalOrCustom(ISD::FMA, VT)) {
Lang Hamesd693caf2012-06-19 22:51:23 +00005827
5828 // fold (fadd (fmul x, y), z) -> (fma x, y, z)
5829 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
5830 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5831 N0.getOperand(0), N0.getOperand(1), N1);
5832 }
Owen Anderson43da6c72012-08-30 23:35:16 +00005833
Michael Liaob79bff52012-09-01 04:09:16 +00005834 // fold (fadd x, (fmul y, z)) -> (fma y, z, x)
Lang Hamesd693caf2012-06-19 22:51:23 +00005835 // Note: Commutes FADD operands.
5836 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
5837 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5838 N1.getOperand(0), N1.getOperand(1), N0);
5839 }
5840 }
5841
Dan Gohman475871a2008-07-27 21:46:04 +00005842 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005843}
5844
Dan Gohman475871a2008-07-27 21:46:04 +00005845SDValue DAGCombiner::visitFSUB(SDNode *N) {
5846 SDValue N0 = N->getOperand(0);
5847 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005848 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5849 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005850 EVT VT = N->getValueType(0);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005851 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005852
Dan Gohman7f321562007-06-25 16:23:39 +00005853 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005854 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005855 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005856 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005857 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005858
Nate Begemana0e221d2005-10-18 00:28:13 +00005859 // fold (fsub c1, c2) -> c1-c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005860 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005861 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005862 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005863 if (DAG.getTarget().Options.UnsafeFPMath &&
5864 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005865 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005866 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005867 if (DAG.getTarget().Options.UnsafeFPMath &&
5868 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005869 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005870 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005871 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005872 return DAG.getNode(ISD::FNEG, dl, VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005873 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005874 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005875 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005876 return DAG.getNode(ISD::FADD, dl, VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005877 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005878
Bill Wendling5a894342012-03-15 05:12:00 +00005879 // If 'unsafe math' is enabled, fold
Owen Anderson713e9532012-05-07 20:51:25 +00005880 // (fsub x, x) -> 0.0 &
Bill Wendling5a894342012-03-15 05:12:00 +00005881 // (fsub x, (fadd x, y)) -> (fneg y) &
5882 // (fsub x, (fadd y, x)) -> (fneg y)
5883 if (DAG.getTarget().Options.UnsafeFPMath) {
Owen Anderson713e9532012-05-07 20:51:25 +00005884 if (N0 == N1)
5885 return DAG.getConstantFP(0.0f, VT);
5886
Bill Wendling5a894342012-03-15 05:12:00 +00005887 if (N1.getOpcode() == ISD::FADD) {
5888 SDValue N10 = N1->getOperand(0);
5889 SDValue N11 = N1->getOperand(1);
5890
5891 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
5892 &DAG.getTarget().Options))
5893 return GetNegatedExpression(N11, DAG, LegalOperations);
5894 else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
5895 &DAG.getTarget().Options))
5896 return GetNegatedExpression(N10, DAG, LegalOperations);
5897 }
5898 }
5899
Lang Hamesd693caf2012-06-19 22:51:23 +00005900 // FSUB -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005901 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005902 DAG.getTarget().Options.UnsafeFPMath) &&
5903 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005904 TLI.isOperationLegalOrCustom(ISD::FMA, VT)) {
Lang Hamesd693caf2012-06-19 22:51:23 +00005905
5906 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z))
5907 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005908 return DAG.getNode(ISD::FMA, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00005909 N0.getOperand(0), N0.getOperand(1),
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005910 DAG.getNode(ISD::FNEG, dl, VT, N1));
Lang Hamesd693caf2012-06-19 22:51:23 +00005911 }
5912
5913 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x)
5914 // Note: Commutes FSUB operands.
5915 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005916 return DAG.getNode(ISD::FMA, dl, VT,
5917 DAG.getNode(ISD::FNEG, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00005918 N1.getOperand(0)),
5919 N1.getOperand(1), N0);
5920 }
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005921
5922 // fold (fsub (-(fmul, x, y)), z) -> (fma (fneg x), y, (fneg z))
5923 if (N0.getOpcode() == ISD::FNEG &&
5924 N0.getOperand(0).getOpcode() == ISD::FMUL &&
5925 N0->hasOneUse() && N0.getOperand(0).hasOneUse()) {
5926 SDValue N00 = N0.getOperand(0).getOperand(0);
5927 SDValue N01 = N0.getOperand(0).getOperand(1);
5928 return DAG.getNode(ISD::FMA, dl, VT,
5929 DAG.getNode(ISD::FNEG, dl, VT, N00), N01,
5930 DAG.getNode(ISD::FNEG, dl, VT, N1));
5931 }
Lang Hamesd693caf2012-06-19 22:51:23 +00005932 }
5933
Dan Gohman475871a2008-07-27 21:46:04 +00005934 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005935}
5936
Dan Gohman475871a2008-07-27 21:46:04 +00005937SDValue DAGCombiner::visitFMUL(SDNode *N) {
5938 SDValue N0 = N->getOperand(0);
5939 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005940 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5941 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005942 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005943 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005944
Dan Gohman7f321562007-06-25 16:23:39 +00005945 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005946 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005947 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005948 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005949 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005950
Nate Begeman11af4ea2005-10-17 20:40:11 +00005951 // fold (fmul c1, c2) -> c1*c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005952 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005953 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005954 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00005955 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005956 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5957 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005958 if (DAG.getTarget().Options.UnsafeFPMath &&
5959 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005960 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00005961 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005962 if (DAG.getTarget().Options.UnsafeFPMath &&
5963 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00005964 return N1;
Owen Anderson363e4b92012-05-02 21:32:35 +00005965 // fold (fmul A, 1.0) -> A
5966 if (N1CFP && N1CFP->isExactlyValue(1.0))
5967 return N0;
Nate Begeman11af4ea2005-10-17 20:40:11 +00005968 // fold (fmul X, 2.0) -> (fadd X, X)
5969 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005970 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00005971 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00005972 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00005973 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005974 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005975
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005976 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005977 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005978 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005979 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005980 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005981 // Both can be negated for free, check to see if at least one is cheaper
5982 // negated.
5983 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005984 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005985 GetNegatedExpression(N0, DAG, LegalOperations),
5986 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005987 }
5988 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005989
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005990 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005991 if (DAG.getTarget().Options.UnsafeFPMath &&
5992 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005993 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005994 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00005995 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00005996 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005997
Dan Gohman475871a2008-07-27 21:46:04 +00005998 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005999}
6000
Owen Anderson062c0a52012-05-02 22:17:40 +00006001SDValue DAGCombiner::visitFMA(SDNode *N) {
6002 SDValue N0 = N->getOperand(0);
6003 SDValue N1 = N->getOperand(1);
6004 SDValue N2 = N->getOperand(2);
6005 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6006 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6007 EVT VT = N->getValueType(0);
Owen Anderson58d57292012-09-01 06:04:27 +00006008 DebugLoc dl = N->getDebugLoc();
Owen Anderson062c0a52012-05-02 22:17:40 +00006009
6010 if (N0CFP && N0CFP->isExactlyValue(1.0))
6011 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N2);
6012 if (N1CFP && N1CFP->isExactlyValue(1.0))
6013 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N2);
6014
Owen Anderson85ef6f42012-05-30 18:50:39 +00006015 // Canonicalize (fma c, x, y) -> (fma x, c, y)
Owen Andersonf917d202012-05-30 18:54:50 +00006016 if (N0CFP && !N1CFP)
Owen Anderson85ef6f42012-05-30 18:50:39 +00006017 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, N1, N0, N2);
6018
Owen Anderson58d57292012-09-01 06:04:27 +00006019 // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2)
6020 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6021 N2.getOpcode() == ISD::FMUL &&
6022 N0 == N2.getOperand(0) &&
6023 N2.getOperand(1).getOpcode() == ISD::ConstantFP) {
6024 return DAG.getNode(ISD::FMUL, dl, VT, N0,
6025 DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1)));
6026 }
6027
6028
6029 // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y)
6030 if (DAG.getTarget().Options.UnsafeFPMath &&
6031 N0.getOpcode() == ISD::FMUL && N1CFP &&
6032 N0.getOperand(1).getOpcode() == ISD::ConstantFP) {
6033 return DAG.getNode(ISD::FMA, dl, VT,
6034 N0.getOperand(0),
6035 DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)),
6036 N2);
6037 }
6038
6039 // (fma x, 1, y) -> (fadd x, y)
6040 // (fma x, -1, y) -> (fadd (fneg x), y)
6041 if (N1CFP) {
6042 if (N1CFP->isExactlyValue(1.0))
6043 return DAG.getNode(ISD::FADD, dl, VT, N0, N2);
6044
6045 if (N1CFP->isExactlyValue(-1.0) &&
6046 (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) {
6047 SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0);
6048 AddToWorkList(RHSNeg.getNode());
6049 return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg);
6050 }
6051 }
6052
6053 // (fma x, c, x) -> (fmul x, (c+1))
6054 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2) {
6055 return DAG.getNode(ISD::FMUL, dl, VT,
6056 N0,
6057 DAG.getNode(ISD::FADD, dl, VT,
6058 N1, DAG.getConstantFP(1.0, VT)));
6059 }
6060
6061 // (fma x, c, (fneg x)) -> (fmul x, (c-1))
6062 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6063 N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0) {
6064 return DAG.getNode(ISD::FMUL, dl, VT,
6065 N0,
6066 DAG.getNode(ISD::FADD, dl, VT,
6067 N1, DAG.getConstantFP(-1.0, VT)));
6068 }
6069
6070
Owen Anderson062c0a52012-05-02 22:17:40 +00006071 return SDValue();
6072}
6073
Dan Gohman475871a2008-07-27 21:46:04 +00006074SDValue DAGCombiner::visitFDIV(SDNode *N) {
6075 SDValue N0 = N->getOperand(0);
6076 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006077 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6078 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006079 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006080 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006081
Dan Gohman7f321562007-06-25 16:23:39 +00006082 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006083 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006084 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006085 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006086 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006087
Nate Begemana148d982006-01-18 22:35:16 +00006088 // fold (fdiv c1, c2) -> c1/c2
Owen Anderson825b72b2009-08-11 20:47:22 +00006089 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006090 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006091
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00006092 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
6093 if (N1CFP && VT != MVT::ppcf128 && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00006094 // Compute the reciprocal 1.0 / c2.
6095 APFloat N1APF = N1CFP->getValueAPF();
6096 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
6097 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00006098 // Only do the transform if the reciprocal is a legal fp immediate that
6099 // isn't too nasty (eg NaN, denormal, ...).
6100 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00006101 (!LegalOperations ||
6102 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
6103 // backend)... we should handle this gracefully after Legalize.
6104 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
6105 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
6106 TLI.isFPImmLegal(Recip, VT)))
Duncan Sands961d6662012-04-07 20:04:00 +00006107 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0,
6108 DAG.getConstantFP(Recip, VT));
6109 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006110
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006111 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006112 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006113 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006114 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006115 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006116 // Both can be negated for free, check to see if at least one is cheaper
6117 // negated.
6118 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00006119 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006120 GetNegatedExpression(N0, DAG, LegalOperations),
6121 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006122 }
6123 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006124
Dan Gohman475871a2008-07-27 21:46:04 +00006125 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006126}
6127
Dan Gohman475871a2008-07-27 21:46:04 +00006128SDValue DAGCombiner::visitFREM(SDNode *N) {
6129 SDValue N0 = N->getOperand(0);
6130 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006131 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6132 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006133 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00006134
Nate Begemana148d982006-01-18 22:35:16 +00006135 // fold (frem c1, c2) -> fmod(c1,c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00006136 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006137 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00006138
Dan Gohman475871a2008-07-27 21:46:04 +00006139 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006140}
6141
Dan Gohman475871a2008-07-27 21:46:04 +00006142SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
6143 SDValue N0 = N->getOperand(0);
6144 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00006145 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6146 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006147 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00006148
Owen Anderson825b72b2009-08-11 20:47:22 +00006149 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00006150 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006151
Chris Lattner12d83032006-03-05 05:30:57 +00006152 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00006153 const APFloat& V = N1CFP->getValueAPF();
Sylvestre Ledru94c22712012-09-27 10:14:43 +00006154 // copysign(x, c1) -> fabs(x) iff ispos(c1)
6155 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00006156 if (!V.isNegative()) {
6157 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006158 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00006159 } else {
6160 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006161 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00006162 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00006163 }
Chris Lattner12d83032006-03-05 05:30:57 +00006164 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006165
Chris Lattner12d83032006-03-05 05:30:57 +00006166 // copysign(fabs(x), y) -> copysign(x, y)
6167 // copysign(fneg(x), y) -> copysign(x, y)
6168 // copysign(copysign(x,z), y) -> copysign(x, y)
6169 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
6170 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006171 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6172 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00006173
6174 // copysign(x, abs(y)) -> abs(x)
6175 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006176 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006177
Chris Lattner12d83032006-03-05 05:30:57 +00006178 // copysign(x, copysign(y,z)) -> copysign(x, z)
6179 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006180 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6181 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006182
Chris Lattner12d83032006-03-05 05:30:57 +00006183 // copysign(x, fp_extend(y)) -> copysign(x, y)
6184 // copysign(x, fp_round(y)) -> copysign(x, y)
6185 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006186 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6187 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006188
Dan Gohman475871a2008-07-27 21:46:04 +00006189 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00006190}
6191
Dan Gohman475871a2008-07-27 21:46:04 +00006192SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
6193 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006194 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006195 EVT VT = N->getValueType(0);
6196 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00006197
Nate Begeman1d4d4142005-09-01 00:19:25 +00006198 // fold (sint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00006199 if (N0C && OpVT != MVT::ppcf128 &&
6200 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006201 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006202 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006203 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006204
Chris Lattnercda88752008-06-26 00:16:49 +00006205 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
6206 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006207 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
6208 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006209 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006210 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006211 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006212 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006213
Nadav Rotemed1a3352012-07-23 07:59:50 +00006214 // The next optimizations are desireable only if SELECT_CC can be lowered.
6215 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6216 // having to say they don't support SELECT_CC on every type the DAG knows
6217 // about, since there is no way to mark an opcode illegal at all value types
6218 // (See also visitSELECT)
6219 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6220 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6221 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 &&
6222 !VT.isVector() &&
6223 (!LegalOperations ||
6224 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6225 SDValue Ops[] =
6226 { N0.getOperand(0), N0.getOperand(1),
6227 DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT),
6228 N0.getOperand(2) };
6229 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6230 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006231
Nadav Rotemed1a3352012-07-23 07:59:50 +00006232 // fold (sint_to_fp (zext (setcc x, y, cc))) ->
6233 // (select_cc x, y, 1.0, 0.0,, cc)
6234 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
6235 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() &&
6236 (!LegalOperations ||
6237 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6238 SDValue Ops[] =
6239 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1),
6240 DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT),
6241 N0.getOperand(0).getOperand(2) };
6242 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6243 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006244 }
6245
Dan Gohman475871a2008-07-27 21:46:04 +00006246 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006247}
6248
Dan Gohman475871a2008-07-27 21:46:04 +00006249SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
6250 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006251 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006252 EVT VT = N->getValueType(0);
6253 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00006254
Nate Begeman1d4d4142005-09-01 00:19:25 +00006255 // fold (uint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00006256 if (N0C && OpVT != MVT::ppcf128 &&
6257 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006258 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006259 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006260 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006261
Chris Lattnercda88752008-06-26 00:16:49 +00006262 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6263 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006264 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6265 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006266 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006267 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006268 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006269 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006270
Nadav Rotemed1a3352012-07-23 07:59:50 +00006271 // The next optimizations are desireable only if SELECT_CC can be lowered.
6272 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6273 // having to say they don't support SELECT_CC on every type the DAG knows
6274 // about, since there is no way to mark an opcode illegal at all value types
6275 // (See also visitSELECT)
6276 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6277 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
Owen Andersond9bf71f2012-07-09 20:31:12 +00006278
Nadav Rotemed1a3352012-07-23 07:59:50 +00006279 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() &&
6280 (!LegalOperations ||
6281 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6282 SDValue Ops[] =
6283 { N0.getOperand(0), N0.getOperand(1),
6284 DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT),
6285 N0.getOperand(2) };
6286 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6287 }
6288 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006289
Dan Gohman475871a2008-07-27 21:46:04 +00006290 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006291}
6292
Dan Gohman475871a2008-07-27 21:46:04 +00006293SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
6294 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006295 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006296 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006297
Nate Begeman1d4d4142005-09-01 00:19:25 +00006298 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00006299 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006300 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
6301
Dan Gohman475871a2008-07-27 21:46:04 +00006302 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006303}
6304
Dan Gohman475871a2008-07-27 21:46:04 +00006305SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
6306 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006307 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006308 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006309
Nate Begeman1d4d4142005-09-01 00:19:25 +00006310 // fold (fp_to_uint c1fp) -> c1
Owen Anderson825b72b2009-08-11 20:47:22 +00006311 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006312 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
6313
Dan Gohman475871a2008-07-27 21:46:04 +00006314 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006315}
6316
Dan Gohman475871a2008-07-27 21:46:04 +00006317SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
6318 SDValue N0 = N->getOperand(0);
6319 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006320 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006321 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006322
Nate Begeman1d4d4142005-09-01 00:19:25 +00006323 // fold (fp_round c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00006324 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006325 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006326
Chris Lattner79dbea52006-03-13 06:26:26 +00006327 // fold (fp_round (fp_extend x)) -> x
6328 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
6329 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006330
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006331 // fold (fp_round (fp_round x)) -> (fp_round x)
6332 if (N0.getOpcode() == ISD::FP_ROUND) {
6333 // This is a value preserving truncation if both round's are.
6334 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006335 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00006336 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006337 DAG.getIntPtrConstant(IsTrunc));
6338 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006339
Chris Lattner79dbea52006-03-13 06:26:26 +00006340 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00006341 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00006342 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
6343 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00006344 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00006345 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6346 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00006347 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006348
Dan Gohman475871a2008-07-27 21:46:04 +00006349 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006350}
6351
Dan Gohman475871a2008-07-27 21:46:04 +00006352SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6353 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006354 EVT VT = N->getValueType(0);
6355 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00006356 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006357
Nate Begeman1d4d4142005-09-01 00:19:25 +00006358 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00006359 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00006360 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006361 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006362 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006363
Dan Gohman475871a2008-07-27 21:46:04 +00006364 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006365}
6366
Dan Gohman475871a2008-07-27 21:46:04 +00006367SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6368 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006369 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006370 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006371
Chris Lattner5938bef2007-12-29 06:55:23 +00006372 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00006373 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00006374 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00006375 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006376
Nate Begeman1d4d4142005-09-01 00:19:25 +00006377 // fold (fp_extend c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00006378 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006379 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006380
6381 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6382 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006383 if (N0.getOpcode() == ISD::FP_ROUND
6384 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006385 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006386 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006387 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006388 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
6389 In, N0.getOperand(1));
6390 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006391 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006392
Chris Lattner0bd48932008-01-17 07:00:52 +00006393 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006394 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006395 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006396 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006397 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00006398 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006399 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006400 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006401 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006402 LN0->isVolatile(), LN0->isNonTemporal(),
6403 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006404 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006405 CombineTo(N0.getNode(),
6406 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
6407 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006408 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006409 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006410 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006411
Dan Gohman475871a2008-07-27 21:46:04 +00006412 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006413}
6414
Dan Gohman475871a2008-07-27 21:46:04 +00006415SDValue DAGCombiner::visitFNEG(SDNode *N) {
6416 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006417 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006418
Craig Topperdd201ff2012-09-11 01:45:21 +00006419 if (VT.isVector()) {
6420 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6421 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper956342b2012-09-09 22:58:45 +00006422 }
6423
Owen Andersonafd3d562012-03-06 00:29:31 +00006424 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6425 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006426 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006427
Chris Lattner3bd39d42008-01-27 17:42:27 +00006428 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6429 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006430 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006431 !VT.isVector() &&
6432 N0.getNode()->hasOneUse() &&
6433 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006434 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006435 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006436 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006437 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
6438 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006439 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006440 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006441 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006442 }
6443 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006444
Owen Anderson58d57292012-09-01 06:04:27 +00006445 // (fneg (fmul c, x)) -> (fmul -c, x)
6446 if (N0.getOpcode() == ISD::FMUL) {
6447 ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
6448 if (CFP1) {
6449 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
6450 N0.getOperand(0),
6451 DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
6452 N0.getOperand(1)));
6453 }
6454 }
6455
Dan Gohman475871a2008-07-27 21:46:04 +00006456 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006457}
6458
Owen Anderson7c626d32012-08-13 23:32:49 +00006459SDValue DAGCombiner::visitFCEIL(SDNode *N) {
6460 SDValue N0 = N->getOperand(0);
6461 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6462 EVT VT = N->getValueType(0);
6463
6464 // fold (fceil c1) -> fceil(c1)
6465 if (N0CFP && VT != MVT::ppcf128)
6466 return DAG.getNode(ISD::FCEIL, N->getDebugLoc(), VT, N0);
6467
6468 return SDValue();
6469}
6470
6471SDValue DAGCombiner::visitFTRUNC(SDNode *N) {
6472 SDValue N0 = N->getOperand(0);
6473 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6474 EVT VT = N->getValueType(0);
6475
6476 // fold (ftrunc c1) -> ftrunc(c1)
6477 if (N0CFP && VT != MVT::ppcf128)
6478 return DAG.getNode(ISD::FTRUNC, N->getDebugLoc(), VT, N0);
6479
6480 return SDValue();
6481}
6482
6483SDValue DAGCombiner::visitFFLOOR(SDNode *N) {
6484 SDValue N0 = N->getOperand(0);
6485 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6486 EVT VT = N->getValueType(0);
6487
6488 // fold (ffloor c1) -> ffloor(c1)
6489 if (N0CFP && VT != MVT::ppcf128)
6490 return DAG.getNode(ISD::FFLOOR, N->getDebugLoc(), VT, N0);
6491
6492 return SDValue();
6493}
6494
Dan Gohman475871a2008-07-27 21:46:04 +00006495SDValue DAGCombiner::visitFABS(SDNode *N) {
6496 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006497 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006498 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006499
Craig Topperdd201ff2012-09-11 01:45:21 +00006500 if (VT.isVector()) {
6501 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6502 if (FoldedVOp.getNode()) return FoldedVOp;
6503 }
6504
Nate Begeman1d4d4142005-09-01 00:19:25 +00006505 // fold (fabs c1) -> fabs(c1)
Owen Anderson825b72b2009-08-11 20:47:22 +00006506 if (N0CFP && VT != MVT::ppcf128)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006507 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006508 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006509 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006510 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006511 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006512 // fold (fabs (fcopysign x, y)) -> (fabs x)
6513 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006514 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006515
Chris Lattner3bd39d42008-01-27 17:42:27 +00006516 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6517 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006518 if (!TLI.isFAbsFree(VT) &&
6519 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006520 N0.getOperand(0).getValueType().isInteger() &&
6521 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006522 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006523 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006524 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006525 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006526 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006527 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006528 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006529 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006530 }
6531 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006532
Dan Gohman475871a2008-07-27 21:46:04 +00006533 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006534}
6535
Dan Gohman475871a2008-07-27 21:46:04 +00006536SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6537 SDValue Chain = N->getOperand(0);
6538 SDValue N1 = N->getOperand(1);
6539 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006540
Dan Gohmane0f06c72009-11-17 00:47:23 +00006541 // If N is a constant we could fold this into a fallthrough or unconditional
6542 // branch. However that doesn't happen very often in normal code, because
6543 // Instcombine/SimplifyCFG should have handled the available opportunities.
6544 // If we did this folding here, it would be necessary to update the
6545 // MachineBasicBlock CFG, which is awkward.
6546
Nate Begeman750ac1b2006-02-01 07:19:44 +00006547 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6548 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006549 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006550 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
6551 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006552 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006553 N1.getOperand(0), N1.getOperand(1), N2);
6554 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006555
Evan Cheng2a135ae2010-10-04 22:41:01 +00006556 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6557 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6558 (N1.getOperand(0).hasOneUse() &&
6559 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6560 SDNode *Trunc = 0;
6561 if (N1.getOpcode() == ISD::TRUNCATE) {
6562 // Look pass the truncate.
6563 Trunc = N1.getNode();
6564 N1 = N1.getOperand(0);
6565 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006566
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006567 // Match this pattern so that we can generate simpler code:
6568 //
6569 // %a = ...
6570 // %b = and i32 %a, 2
6571 // %c = srl i32 %b, 1
6572 // brcond i32 %c ...
6573 //
6574 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006575 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006576 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006577 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006578 // %c = setcc eq %b, 0
6579 // brcond %c ...
6580 //
6581 // This applies only when the AND constant value has one bit set and the
6582 // SRL constant is equal to the log2 of the AND constant. The back-end is
6583 // smart enough to convert the result into a TEST/JMP sequence.
6584 SDValue Op0 = N1.getOperand(0);
6585 SDValue Op1 = N1.getOperand(1);
6586
6587 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006588 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006589 SDValue AndOp1 = Op0.getOperand(1);
6590
6591 if (AndOp1.getOpcode() == ISD::Constant) {
6592 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6593
6594 if (AndConst.isPowerOf2() &&
6595 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6596 SDValue SetCC =
6597 DAG.getSetCC(N->getDebugLoc(),
6598 TLI.getSetCCResultType(Op0.getValueType()),
6599 Op0, DAG.getConstant(0, Op0.getValueType()),
6600 ISD::SETNE);
6601
Evan Chengd40d03e2010-01-06 19:38:29 +00006602 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6603 MVT::Other, Chain, SetCC, N2);
6604 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6605 // will convert it back to (X & C1) >> C2.
6606 CombineTo(N, NewBRCond, false);
6607 // Truncate is dead.
6608 if (Trunc) {
6609 removeFromWorkList(Trunc);
6610 DAG.DeleteNode(Trunc);
6611 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006612 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006613 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006614 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006615 removeFromWorkList(N1.getNode());
6616 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006617 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006618 }
6619 }
6620 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006621
6622 if (Trunc)
6623 // Restore N1 if the above transformation doesn't match.
6624 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006625 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006626
Evan Cheng2c755ba2010-02-27 07:36:59 +00006627 // Transform br(xor(x, y)) -> br(x != y)
6628 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6629 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6630 SDNode *TheXor = N1.getNode();
6631 SDValue Op0 = TheXor->getOperand(0);
6632 SDValue Op1 = TheXor->getOperand(1);
6633 if (Op0.getOpcode() == Op1.getOpcode()) {
6634 // Avoid missing important xor optimizations.
6635 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00006636 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006637 DEBUG(dbgs() << "\nReplacing.8 ";
6638 TheXor->dump(&DAG);
6639 dbgs() << "\nWith: ";
6640 Tmp.getNode()->dump(&DAG);
6641 dbgs() << '\n');
6642 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006643 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
Evan Cheng2c755ba2010-02-27 07:36:59 +00006644 removeFromWorkList(TheXor);
6645 DAG.DeleteNode(TheXor);
6646 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6647 MVT::Other, Chain, Tmp, N2);
6648 }
6649 }
6650
6651 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6652 bool Equal = false;
6653 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6654 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6655 Op0.getOpcode() == ISD::XOR) {
6656 TheXor = Op0.getNode();
6657 Equal = true;
6658 }
6659
Evan Cheng2a135ae2010-10-04 22:41:01 +00006660 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006661 if (LegalTypes)
6662 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6663 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6664 SetCCVT,
6665 Op0, Op1,
6666 Equal ? ISD::SETEQ : ISD::SETNE);
6667 // Replace the uses of XOR with SETCC
6668 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006669 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006670 removeFromWorkList(N1.getNode());
6671 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006672 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6673 MVT::Other, Chain, SetCC, N2);
6674 }
6675 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006676
Dan Gohman475871a2008-07-27 21:46:04 +00006677 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006678}
6679
Chris Lattner3ea0b472005-10-05 06:47:48 +00006680// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6681//
Dan Gohman475871a2008-07-27 21:46:04 +00006682SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006683 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006684 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006685
Dan Gohmane0f06c72009-11-17 00:47:23 +00006686 // If N is a constant we could fold this into a fallthrough or unconditional
6687 // branch. However that doesn't happen very often in normal code, because
6688 // Instcombine/SimplifyCFG should have handled the available opportunities.
6689 // If we did this folding here, it would be necessary to update the
6690 // MachineBasicBlock CFG, which is awkward.
6691
Duncan Sands8eab8a22008-06-09 11:32:28 +00006692 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006693 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006694 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6695 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006696 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006697
Nate Begemane17daeb2005-10-05 21:43:42 +00006698 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006699 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006700 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006701 N->getOperand(0), Simp.getOperand(2),
6702 Simp.getOperand(0), Simp.getOperand(1),
6703 N->getOperand(4));
6704
Dan Gohman475871a2008-07-27 21:46:04 +00006705 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006706}
6707
Evan Chengc4b527a2012-01-13 01:37:24 +00006708/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6709/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00006710/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00006711static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6712 SelectionDAG &DAG,
6713 const TargetLowering &TLI) {
6714 EVT VT;
6715 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6716 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6717 return false;
6718 VT = Use->getValueType(0);
6719 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6720 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6721 return false;
6722 VT = ST->getValue().getValueType();
6723 } else
6724 return false;
6725
6726 TargetLowering::AddrMode AM;
6727 if (N->getOpcode() == ISD::ADD) {
6728 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6729 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006730 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006731 AM.BaseOffs = Offset->getSExtValue();
6732 else
Evan Cheng03be3622012-03-06 23:33:32 +00006733 // [reg +/- reg]
6734 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006735 } else if (N->getOpcode() == ISD::SUB) {
6736 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6737 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006738 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006739 AM.BaseOffs = -Offset->getSExtValue();
6740 else
Evan Cheng03be3622012-03-06 23:33:32 +00006741 // [reg +/- reg]
6742 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006743 } else
6744 return false;
6745
6746 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6747}
6748
Duncan Sandsec87aa82008-06-15 20:12:31 +00006749/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6750/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006751/// and it has other uses besides the load / store. After the
6752/// transformation, the new indexed load / store has effectively folded
6753/// the add / subtract in and all of its other uses are redirected to the
6754/// new load / store.
6755bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006756 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006757 return false;
6758
6759 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006760 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006761 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006762 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006763 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006764 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006765 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006766 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006767 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6768 return false;
6769 Ptr = LD->getBasePtr();
6770 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006771 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006772 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006773 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006774 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6775 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6776 return false;
6777 Ptr = ST->getBasePtr();
6778 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006779 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006780 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006781 }
Chris Lattner448f2192006-11-11 00:39:41 +00006782
Chris Lattner9f1794e2006-11-11 00:56:29 +00006783 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6784 // out. There is no reason to make this a preinc/predec.
6785 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006786 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006787 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006788
Chris Lattner9f1794e2006-11-11 00:56:29 +00006789 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006790 SDValue BasePtr;
6791 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006792 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6793 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6794 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006795 // Don't create a indexed load / store with zero offset.
6796 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006797 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006798 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006799
Chris Lattner41e53fd2006-11-11 01:00:15 +00006800 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006801 // 1) The new base ptr is a frame index.
6802 // 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 +00006803 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006804 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006805 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006806 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006807
Chris Lattner41e53fd2006-11-11 01:00:15 +00006808 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6809 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006810 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006811 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006812
Chris Lattner41e53fd2006-11-11 01:00:15 +00006813 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006814 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006815 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006816 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006817 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006818 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006819
Evan Chengc843abe2007-05-24 02:35:39 +00006820 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006821 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006822
6823 // Caches for hasPredecessorHelper
6824 SmallPtrSet<const SDNode *, 32> Visited;
6825 SmallVector<const SDNode *, 16> Worklist;
6826
Gabor Greifba36cb52008-08-28 21:40:38 +00006827 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6828 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006829 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006830 if (Use == N)
6831 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006832 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006833 return false;
6834
Evan Chengc4b527a2012-01-13 01:37:24 +00006835 // If Ptr may be folded in addressing mode of other use, then it's
6836 // not profitable to do this transformation.
6837 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006838 RealUse = true;
6839 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006840
Chris Lattner9f1794e2006-11-11 00:56:29 +00006841 if (!RealUse)
6842 return false;
6843
Dan Gohman475871a2008-07-27 21:46:04 +00006844 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006845 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006846 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6847 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006848 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006849 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6850 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006851 ++PreIndexedNodes;
6852 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006853 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006854 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006855 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006856 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006857 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006858 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006859 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006860 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6861 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006862 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006863 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006864 }
6865
Chris Lattner9f1794e2006-11-11 00:56:29 +00006866 // Finally, since the node is now dead, remove it from the graph.
6867 DAG.DeleteNode(N);
6868
6869 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006870 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greifba36cb52008-08-28 21:40:38 +00006871 removeFromWorkList(Ptr.getNode());
6872 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006873
6874 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006875}
6876
Duncan Sandsec87aa82008-06-15 20:12:31 +00006877/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006878/// add / sub of the base pointer node into a post-indexed load / store.
6879/// The transformation folded the add / subtract into the new indexed
6880/// load / store effectively and all of its uses are redirected to the
6881/// new load / store.
6882bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006883 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006884 return false;
6885
6886 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006887 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006888 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006889 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006890 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006891 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006892 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006893 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6894 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6895 return false;
6896 Ptr = LD->getBasePtr();
6897 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006898 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006899 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006900 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006901 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6902 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6903 return false;
6904 Ptr = ST->getBasePtr();
6905 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006906 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006907 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006908 }
Chris Lattner448f2192006-11-11 00:39:41 +00006909
Gabor Greifba36cb52008-08-28 21:40:38 +00006910 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006911 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006912
Gabor Greifba36cb52008-08-28 21:40:38 +00006913 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6914 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006915 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006916 if (Op == N ||
6917 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6918 continue;
6919
Dan Gohman475871a2008-07-27 21:46:04 +00006920 SDValue BasePtr;
6921 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006922 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6923 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00006924 // Don't create a indexed load / store with zero offset.
6925 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006926 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006927 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006928
Chris Lattner9f1794e2006-11-11 00:56:29 +00006929 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00006930 // 1) All uses are load / store ops that use it as base ptr (and
6931 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00006932 // 2) Op must be independent of N, i.e. Op is neither a predecessor
6933 // nor a successor of N. Otherwise, if Op is folded that would
6934 // create a cycle.
6935
Evan Chengcaab1292009-05-06 18:25:01 +00006936 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6937 continue;
6938
Chris Lattner9f1794e2006-11-11 00:56:29 +00006939 // Check for #1.
6940 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006941 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6942 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00006943 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00006944 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00006945 continue;
6946
Chris Lattner9f1794e2006-11-11 00:56:29 +00006947 // If all the uses are load / store addresses, then don't do the
6948 // transformation.
6949 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6950 bool RealUse = false;
6951 for (SDNode::use_iterator III = Use->use_begin(),
6952 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00006953 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00006954 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006955 RealUse = true;
6956 }
Chris Lattner448f2192006-11-11 00:39:41 +00006957
Chris Lattner9f1794e2006-11-11 00:56:29 +00006958 if (!RealUse) {
6959 TryNext = true;
6960 break;
Chris Lattner448f2192006-11-11 00:39:41 +00006961 }
6962 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006963 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006964
Chris Lattner9f1794e2006-11-11 00:56:29 +00006965 if (TryNext)
6966 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006967
Chris Lattner9f1794e2006-11-11 00:56:29 +00006968 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00006969 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006970 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00006971 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6972 BasePtr, Offset, AM)
6973 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6974 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006975 ++PostIndexedNodes;
6976 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006977 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006978 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006979 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006980 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006981 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006982 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006983 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006984 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6985 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006986 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006987 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner448f2192006-11-11 00:39:41 +00006988 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006989
Chris Lattner9f1794e2006-11-11 00:56:29 +00006990 // Finally, since the node is now dead, remove it from the graph.
6991 DAG.DeleteNode(N);
6992
6993 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00006994 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006995 Result.getValue(isLoad ? 1 : 0));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006996 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006997 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006998 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006999 }
7000 }
7001 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007002
Chris Lattner448f2192006-11-11 00:39:41 +00007003 return false;
7004}
7005
Dan Gohman475871a2008-07-27 21:46:04 +00007006SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00007007 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007008 SDValue Chain = LD->getChain();
7009 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007010
Evan Cheng45a7ca92007-05-01 00:38:21 +00007011 // If load is not volatile and there are no uses of the loaded value (and
7012 // the updated indexed value in case of indexed loads), change uses of the
7013 // chain value into uses of the chain input (i.e. delete the dead load).
7014 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007015 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00007016 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00007017 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00007018 // It's not safe to use the two value CombineTo variant here. e.g.
7019 // v1, chain2 = load chain1, loc
7020 // v2, chain3 = load chain2, loc
7021 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00007022 // Now we replace use of chain2 with chain1. This makes the second load
7023 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00007024 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007025 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007026 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007027 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007028 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007029 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007030 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendlingc0debad2009-01-30 23:27:35 +00007031
Chris Lattner125991a2008-01-24 07:57:06 +00007032 if (N->use_empty()) {
7033 removeFromWorkList(N);
7034 DAG.DeleteNode(N);
7035 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007036
Dan Gohman475871a2008-07-27 21:46:04 +00007037 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00007038 }
Evan Cheng498f5592007-05-01 08:53:39 +00007039 } else {
7040 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00007041 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00007042 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007043 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00007044 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007045 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007046 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007047 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007048 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007049 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007050 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman475871a2008-07-27 21:46:04 +00007051 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007052 DAG.getUNDEF(N->getValueType(1)));
7053 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng02c42852008-01-16 23:11:54 +00007054 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00007055 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007056 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00007057 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00007058 }
7059 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007060
Chris Lattner01a22022005-10-10 22:04:48 +00007061 // If this load is directly stored, replace the load value with the stored
7062 // value.
7063 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007064 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00007065 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007066 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007067 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
7068 if (PrevST->getBasePtr() == Ptr &&
7069 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007070 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00007071 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007072 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007073
Evan Cheng255f20f2010-04-01 06:04:33 +00007074 // Try to infer better alignment information than the load already has.
7075 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007076 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7077 if (Align > LD->getAlignment())
7078 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
7079 LD->getValueType(0),
7080 Chain, Ptr, LD->getPointerInfo(),
7081 LD->getMemoryVT(),
7082 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007083 }
7084 }
7085
Jim Laskey7ca56af2006-10-11 13:47:09 +00007086 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007087 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007088 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007089
Jim Laskey6ff23e52006-10-04 16:53:27 +00007090 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007091 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007092 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007093
Jim Laskey279f0532006-09-25 16:29:54 +00007094 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007095 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00007096 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00007097 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007098 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007099 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007100 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00007101 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
7102 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00007103 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007104 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007105 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007106 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00007107 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007108 }
Jim Laskey279f0532006-09-25 16:29:54 +00007109
Jim Laskey6ff23e52006-10-04 16:53:27 +00007110 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00007111 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007112 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007113
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007114 // Make sure the new and old chains are cleaned up.
7115 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007116
Jim Laskey274062c2006-10-13 23:32:28 +00007117 // Replace uses with load result and token factor. Don't add users
7118 // to work list.
7119 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007120 }
7121 }
7122
Evan Cheng7fc033a2006-11-03 03:06:21 +00007123 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007124 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007125 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00007126
Dan Gohman475871a2008-07-27 21:46:04 +00007127 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00007128}
7129
Chris Lattner2392ae72010-04-15 04:48:01 +00007130/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
7131/// load is having specific bytes cleared out. If so, return the byte size
7132/// being masked out and the shift amount.
7133static std::pair<unsigned, unsigned>
7134CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
7135 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007136
Chris Lattner2392ae72010-04-15 04:48:01 +00007137 // Check for the structure we're looking for.
7138 if (V->getOpcode() != ISD::AND ||
7139 !isa<ConstantSDNode>(V->getOperand(1)) ||
7140 !ISD::isNormalLoad(V->getOperand(0).getNode()))
7141 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007142
Chris Lattnere6987582010-04-15 06:10:49 +00007143 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00007144 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00007145 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007146
Chris Lattnere6987582010-04-15 06:10:49 +00007147 // The store should be chained directly to the load or be an operand of a
7148 // tokenfactor.
7149 if (LD == Chain.getNode())
7150 ; // ok.
7151 else if (Chain->getOpcode() != ISD::TokenFactor)
7152 return Result; // Fail.
7153 else {
7154 bool isOk = false;
7155 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
7156 if (Chain->getOperand(i).getNode() == LD) {
7157 isOk = true;
7158 break;
7159 }
7160 if (!isOk) return Result;
7161 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007162
Chris Lattner2392ae72010-04-15 04:48:01 +00007163 // This only handles simple types.
7164 if (V.getValueType() != MVT::i16 &&
7165 V.getValueType() != MVT::i32 &&
7166 V.getValueType() != MVT::i64)
7167 return Result;
7168
7169 // Check the constant mask. Invert it so that the bits being masked out are
7170 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
7171 // follow the sign bit for uniformity.
7172 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
7173 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
7174 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
7175 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
7176 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
7177 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007178
Chris Lattner2392ae72010-04-15 04:48:01 +00007179 // See if we have a continuous run of bits. If so, we have 0*1+0*
7180 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
7181 return Result;
7182
7183 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
7184 if (V.getValueType() != MVT::i64 && NotMaskLZ)
7185 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007186
Chris Lattner2392ae72010-04-15 04:48:01 +00007187 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
7188 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007189 case 1:
7190 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00007191 case 4: break;
7192 default: return Result; // All one mask, or 5-byte mask.
7193 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007194
Chris Lattner2392ae72010-04-15 04:48:01 +00007195 // Verify that the first bit starts at a multiple of mask so that the access
7196 // is aligned the same as the access width.
7197 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007198
Chris Lattner2392ae72010-04-15 04:48:01 +00007199 Result.first = MaskedBytes;
7200 Result.second = NotMaskTZ/8;
7201 return Result;
7202}
7203
7204
7205/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
7206/// provides a value as specified by MaskInfo. If so, replace the specified
7207/// store with a narrower store of truncated IVal.
7208static SDNode *
7209ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
7210 SDValue IVal, StoreSDNode *St,
7211 DAGCombiner *DC) {
7212 unsigned NumBytes = MaskInfo.first;
7213 unsigned ByteShift = MaskInfo.second;
7214 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007215
Chris Lattner2392ae72010-04-15 04:48:01 +00007216 // Check to see if IVal is all zeros in the part being masked in by the 'or'
7217 // that uses this. If not, this is not a replacement.
7218 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
7219 ByteShift*8, (ByteShift+NumBytes)*8);
7220 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007221
Chris Lattner2392ae72010-04-15 04:48:01 +00007222 // Check that it is legal on the target to do this. It is legal if the new
7223 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
7224 // legalization.
7225 MVT VT = MVT::getIntegerVT(NumBytes*8);
7226 if (!DC->isTypeLegal(VT))
7227 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007228
Chris Lattner2392ae72010-04-15 04:48:01 +00007229 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
7230 // shifted by ByteShift and truncated down to NumBytes.
7231 if (ByteShift)
7232 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00007233 DAG.getConstant(ByteShift*8,
7234 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00007235
7236 // Figure out the offset for the store and the alignment of the access.
7237 unsigned StOffset;
7238 unsigned NewAlign = St->getAlignment();
7239
7240 if (DAG.getTargetLoweringInfo().isLittleEndian())
7241 StOffset = ByteShift;
7242 else
7243 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007244
Chris Lattner2392ae72010-04-15 04:48:01 +00007245 SDValue Ptr = St->getBasePtr();
7246 if (StOffset) {
7247 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
7248 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
7249 NewAlign = MinAlign(NewAlign, StOffset);
7250 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007251
Chris Lattner2392ae72010-04-15 04:48:01 +00007252 // Truncate down to the new size.
7253 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007254
Chris Lattner2392ae72010-04-15 04:48:01 +00007255 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007256 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007257 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00007258 false, false, NewAlign).getNode();
7259}
7260
Evan Cheng8b944d32009-05-28 00:35:15 +00007261
7262/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
7263/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
7264/// of the loaded bits, try narrowing the load and store if it would end up
7265/// being a win for performance or code size.
7266SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
7267 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00007268 if (ST->isVolatile())
7269 return SDValue();
7270
Evan Cheng8b944d32009-05-28 00:35:15 +00007271 SDValue Chain = ST->getChain();
7272 SDValue Value = ST->getValue();
7273 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00007274 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00007275
7276 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00007277 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007278
7279 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007280
Chris Lattner2392ae72010-04-15 04:48:01 +00007281 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
7282 // is a byte mask indicating a consecutive number of bytes, check to see if
7283 // Y is known to provide just those bytes. If so, we try to replace the
7284 // load + replace + store sequence with a single (narrower) store, which makes
7285 // the load dead.
7286 if (Opc == ISD::OR) {
7287 std::pair<unsigned, unsigned> MaskedLoad;
7288 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
7289 if (MaskedLoad.first)
7290 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7291 Value.getOperand(1), ST,this))
7292 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007293
Chris Lattner2392ae72010-04-15 04:48:01 +00007294 // Or is commutative, so try swapping X and Y.
7295 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
7296 if (MaskedLoad.first)
7297 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7298 Value.getOperand(0), ST,this))
7299 return SDValue(NewST, 0);
7300 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007301
Evan Cheng8b944d32009-05-28 00:35:15 +00007302 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
7303 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00007304 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007305
7306 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00007307 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
7308 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00007309 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00007310 if (LD->getBasePtr() != Ptr ||
7311 LD->getPointerInfo().getAddrSpace() !=
7312 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00007313 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007314
7315 // Find the type to narrow it the load / op / store to.
7316 SDValue N1 = Value.getOperand(1);
7317 unsigned BitWidth = N1.getValueSizeInBits();
7318 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
7319 if (Opc == ISD::AND)
7320 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00007321 if (Imm == 0 || Imm.isAllOnesValue())
7322 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007323 unsigned ShAmt = Imm.countTrailingZeros();
7324 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
7325 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00007326 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007327 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00007328 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00007329 TLI.isNarrowingProfitable(VT, NewVT))) {
7330 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00007331 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007332 }
Evan Chengcdcecc02009-05-28 18:41:02 +00007333 if (NewBW >= BitWidth)
7334 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007335
7336 // If the lsb changed does not start at the type bitwidth boundary,
7337 // start at the previous one.
7338 if (ShAmt % NewBW)
7339 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
7340 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
7341 if ((Imm & Mask) == Imm) {
7342 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
7343 if (Opc == ISD::AND)
7344 NewImm ^= APInt::getAllOnesValue(NewBW);
7345 uint64_t PtrOff = ShAmt / 8;
7346 // For big endian targets, we need to adjust the offset to the pointer to
7347 // load the correct bytes.
7348 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00007349 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00007350
7351 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007352 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Chris Lattner2392ae72010-04-15 04:48:01 +00007353 if (NewAlign < TLI.getTargetData()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00007354 return SDValue();
7355
Evan Cheng8b944d32009-05-28 00:35:15 +00007356 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
7357 Ptr.getValueType(), Ptr,
7358 DAG.getConstant(PtrOff, Ptr.getValueType()));
7359 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
7360 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007361 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007362 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007363 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007364 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
7365 DAG.getConstant(NewImm, NewVT));
7366 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
7367 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007368 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007369 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007370
7371 AddToWorkList(NewPtr.getNode());
7372 AddToWorkList(NewLD.getNode());
7373 AddToWorkList(NewVal.getNode());
7374 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007375 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Cheng8b944d32009-05-28 00:35:15 +00007376 ++OpsNarrowed;
7377 return NewST;
7378 }
7379 }
7380
Evan Chengcdcecc02009-05-28 18:41:02 +00007381 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007382}
7383
Evan Cheng31959b12011-02-02 01:06:55 +00007384/// TransformFPLoadStorePair - For a given floating point load / store pair,
7385/// if the load value isn't used by any other operations, then consider
7386/// transforming the pair to integer load / store operations if the target
7387/// deems the transformation profitable.
7388SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
7389 StoreSDNode *ST = cast<StoreSDNode>(N);
7390 SDValue Chain = ST->getChain();
7391 SDValue Value = ST->getValue();
7392 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
7393 Value.hasOneUse() &&
7394 Chain == SDValue(Value.getNode(), 1)) {
7395 LoadSDNode *LD = cast<LoadSDNode>(Value);
7396 EVT VT = LD->getMemoryVT();
7397 if (!VT.isFloatingPoint() ||
7398 VT != ST->getMemoryVT() ||
7399 LD->isNonTemporal() ||
7400 ST->isNonTemporal() ||
7401 LD->getPointerInfo().getAddrSpace() != 0 ||
7402 ST->getPointerInfo().getAddrSpace() != 0)
7403 return SDValue();
7404
7405 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
7406 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
7407 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
7408 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
7409 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
7410 return SDValue();
7411
7412 unsigned LDAlign = LD->getAlignment();
7413 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007414 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Evan Cheng31959b12011-02-02 01:06:55 +00007415 unsigned ABIAlign = TLI.getTargetData()->getABITypeAlignment(IntVTTy);
7416 if (LDAlign < ABIAlign || STAlign < ABIAlign)
7417 return SDValue();
7418
7419 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
7420 LD->getChain(), LD->getBasePtr(),
7421 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007422 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00007423
7424 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
7425 NewLD, ST->getBasePtr(),
7426 ST->getPointerInfo(),
7427 false, false, STAlign);
7428
7429 AddToWorkList(NewLD.getNode());
7430 AddToWorkList(NewST.getNode());
7431 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007432 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Cheng31959b12011-02-02 01:06:55 +00007433 ++LdStFP2Int;
7434 return NewST;
7435 }
7436
7437 return SDValue();
7438}
7439
Dan Gohman475871a2008-07-27 21:46:04 +00007440SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007441 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007442 SDValue Chain = ST->getChain();
7443 SDValue Value = ST->getValue();
7444 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007445
Evan Cheng59d5b682007-05-07 21:27:48 +00007446 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00007447 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007448 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007449 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00007450 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00007451 EVT SVT = Value.getOperand(0).getValueType();
Dan Gohman1ba519b2009-02-20 23:29:13 +00007452 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00007453 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007454 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00007455 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007456 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00007457 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00007458 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007459 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00007460 }
Owen Andersona34d9362011-04-14 17:30:49 +00007461
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007462 // Turn 'store undef, Ptr' -> nothing.
7463 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
7464 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007465
Nate Begeman2cbba892006-12-11 02:23:46 +00007466 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00007467 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007468 // NOTE: If the original store is volatile, this transform must not increase
7469 // the number of stores. For example, on x86-32 an f64 can be stored in one
7470 // processor operation but an i64 (which is not legal) requires two. So the
7471 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00007472 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00007473 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00007474 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007475 default: llvm_unreachable("Unknown FP type");
Pete Cooper438c0402012-06-21 18:00:39 +00007476 case MVT::f16: // We don't do this for these yet.
7477 case MVT::f80:
Owen Anderson825b72b2009-08-11 20:47:22 +00007478 case MVT::f128:
7479 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00007480 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007481 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00007482 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007483 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00007484 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00007485 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00007486 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007487 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007488 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00007489 }
7490 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007491 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00007492 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007493 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007494 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00007495 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00007496 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00007497 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007498 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007499 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007500 }
Owen Andersona34d9362011-04-14 17:30:49 +00007501
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007502 if (!ST->isVolatile() &&
7503 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00007504 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00007505 // argument passing. Since this is so common, custom legalize the
7506 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00007507 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007508 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
7509 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00007510 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00007511
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007512 unsigned Alignment = ST->getAlignment();
7513 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00007514 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007515
Bill Wendlingc144a572009-01-30 23:36:47 +00007516 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007517 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007518 isVolatile, isNonTemporal,
7519 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00007520 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00007521 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00007522 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00007523 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007524 Ptr, ST->getPointerInfo().getWithOffset(4),
7525 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00007526 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00007527 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00007528 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00007529 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007530
Chris Lattner62be1a72006-12-12 04:16:14 +00007531 break;
Evan Cheng25ece662006-12-11 17:25:19 +00007532 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007533 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007534 }
7535
Evan Cheng255f20f2010-04-01 06:04:33 +00007536 // Try to infer better alignment information than the store already has.
7537 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007538 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7539 if (Align > ST->getAlignment())
7540 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
7541 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
7542 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007543 }
7544 }
7545
Evan Cheng31959b12011-02-02 01:06:55 +00007546 // Try transforming a pair floating point load / store ops to integer
7547 // load / store ops.
7548 SDValue NewST = TransformFPLoadStorePair(N);
7549 if (NewST.getNode())
7550 return NewST;
7551
Scott Michelfdc40a02009-02-17 22:15:04 +00007552 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007553 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007554 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007555
Jim Laskey6ff23e52006-10-04 16:53:27 +00007556 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007557 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007558 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007559
7560 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007561 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007562 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007563 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007564 ST->getMemoryVT(), ST->isVolatile(),
7565 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007566 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00007567 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007568 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007569 ST->isVolatile(), ST->isNonTemporal(),
7570 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007571 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007572
Jim Laskey279f0532006-09-25 16:29:54 +00007573 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00007574 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007575 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00007576
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007577 // Make sure the new and old chains are cleaned up.
7578 AddToWorkList(Token.getNode());
7579
Jim Laskey274062c2006-10-13 23:32:28 +00007580 // Don't add users to work list.
7581 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007582 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00007583 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007584
Evan Cheng33dbedc2006-11-05 09:31:14 +00007585 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007586 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007587 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00007588
Chris Lattner3c872852007-12-29 06:26:16 +00007589 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00007590 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00007591 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00007592 // See if we can simplify the input to this truncstore with knowledge that
7593 // only the low bits are being used. For example:
7594 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00007595 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007596 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00007597 APInt::getLowBitsSet(
7598 Value.getValueType().getScalarType().getSizeInBits(),
7599 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00007600 AddToWorkList(Value.getNode());
7601 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00007602 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007603 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007604 ST->isVolatile(), ST->isNonTemporal(),
7605 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00007606
Chris Lattnere33544c2007-10-13 06:58:48 +00007607 // Otherwise, see if we can simplify the operation with
7608 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00007609 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00007610 APInt::getLowBitsSet(
7611 Value.getValueType().getScalarType().getSizeInBits(),
7612 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00007613 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00007614 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007615
Chris Lattner3c872852007-12-29 06:26:16 +00007616 // If this is a load followed by a store to the same location, then the store
7617 // is dead/noop.
7618 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007619 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007620 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00007621 // There can't be any side effects between the load and store, such as
7622 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00007623 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00007624 // The store is dead, remove it.
7625 return Chain;
7626 }
7627 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007628
Chris Lattnerddf89562008-01-17 19:59:44 +00007629 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
7630 // truncating store. We can do this even if this is already a truncstore.
7631 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00007632 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007633 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007634 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007635 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007636 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007637 ST->isVolatile(), ST->isNonTemporal(),
7638 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00007639 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007640
Evan Cheng8b944d32009-05-28 00:35:15 +00007641 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00007642}
7643
Dan Gohman475871a2008-07-27 21:46:04 +00007644SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
7645 SDValue InVec = N->getOperand(0);
7646 SDValue InVal = N->getOperand(1);
7647 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00007648 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00007649
Bob Wilson492fd452010-05-19 23:42:58 +00007650 // If the inserted element is an UNDEF, just use the input vector.
7651 if (InVal.getOpcode() == ISD::UNDEF)
7652 return InVec;
7653
Nadav Rotem609d54e2011-02-12 14:40:33 +00007654 EVT VT = InVec.getValueType();
7655
Owen Anderson95771af2011-02-25 21:41:48 +00007656 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00007657 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
7658 return SDValue();
7659
Eli Friedman9db817f2011-09-09 21:04:06 +00007660 // Check that we know which element is being inserted
7661 if (!isa<ConstantSDNode>(EltNo))
7662 return SDValue();
7663 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007664
Eli Friedman9db817f2011-09-09 21:04:06 +00007665 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
7666 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
7667 // vector elements.
7668 SmallVector<SDValue, 8> Ops;
7669 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
7670 Ops.append(InVec.getNode()->op_begin(),
7671 InVec.getNode()->op_end());
7672 } else if (InVec.getOpcode() == ISD::UNDEF) {
7673 unsigned NElts = VT.getVectorNumElements();
7674 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
7675 } else {
7676 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007677 }
Eli Friedman9db817f2011-09-09 21:04:06 +00007678
7679 // Insert the element
7680 if (Elt < Ops.size()) {
7681 // All the operands of BUILD_VECTOR must have the same type;
7682 // we enforce that here.
7683 EVT OpVT = Ops[0].getValueType();
7684 if (InVal.getValueType() != OpVT)
7685 InVal = OpVT.bitsGT(InVal.getValueType()) ?
7686 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
7687 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
7688 Ops[Elt] = InVal;
7689 }
7690
7691 // Return the new vector
7692 return DAG.getNode(ISD::BUILD_VECTOR, dl,
7693 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00007694}
7695
Dan Gohman475871a2008-07-27 21:46:04 +00007696SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007697 // (vextract (scalar_to_vector val, 0) -> val
7698 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00007699 EVT VT = InVec.getValueType();
7700 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007701
Duncan Sandsc356f332011-05-09 08:03:33 +00007702 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
7703 // Check if the result type doesn't match the inserted element type. A
7704 // SCALAR_TO_VECTOR may truncate the inserted element and the
7705 // EXTRACT_VECTOR_ELT may widen the extracted vector.
7706 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00007707 if (InOp.getValueType() != NVT) {
7708 assert(InOp.getValueType().isInteger() && NVT.isInteger());
7709 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
7710 }
7711 return InOp;
7712 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007713
Nadav Rotemba05c912012-01-17 21:44:01 +00007714 SDValue EltNo = N->getOperand(1);
7715 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
7716
7717 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
7718 // We only perform this optimization before the op legalization phase because
Nadav Rotem6dfabb62012-09-20 08:53:31 +00007719 // we may introduce new vector instructions which are not backed by TD
7720 // patterns. For example on AVX, extracting elements from a wide vector
7721 // without using extract_subvector.
Nadav Rotemba05c912012-01-17 21:44:01 +00007722 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
7723 && ConstEltNo && !LegalOperations) {
7724 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
7725 int NumElem = VT.getVectorNumElements();
7726 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
7727 // Find the new index to extract from.
7728 int OrigElt = SVOp->getMaskElt(Elt);
7729
7730 // Extracting an undef index is undef.
7731 if (OrigElt == -1)
7732 return DAG.getUNDEF(NVT);
7733
7734 // Select the right vector half to extract from.
7735 if (OrigElt < NumElem) {
7736 InVec = InVec->getOperand(0);
7737 } else {
7738 InVec = InVec->getOperand(1);
7739 OrigElt -= NumElem;
7740 }
7741
Jim Grosbacha249f7d2012-05-08 20:56:07 +00007742 EVT IndexTy = N->getOperand(1).getValueType();
Nadav Rotemba05c912012-01-17 21:44:01 +00007743 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00007744 InVec, DAG.getConstant(OrigElt, IndexTy));
Nadav Rotemba05c912012-01-17 21:44:01 +00007745 }
7746
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007747 // Perform only after legalization to ensure build_vector / vector_shuffle
7748 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00007749 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007750
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007751 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
7752 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
7753 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00007754
Nadav Rotemba05c912012-01-17 21:44:01 +00007755 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00007756 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00007757 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00007758 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00007759 EVT ExtVT = VT.getVectorElementType();
7760 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00007761
Evan Cheng84387ea2012-03-13 22:00:52 +00007762 // If the result of load has to be truncated, then it's not necessarily
7763 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00007764 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00007765 return SDValue();
7766
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007767 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007768 // Don't duplicate a load with other uses.
7769 if (!InVec.hasOneUse())
7770 return SDValue();
7771
Owen Andersone50ed302009-08-10 22:56:29 +00007772 EVT BCVT = InVec.getOperand(0).getValueType();
7773 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007774 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00007775 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
7776 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007777 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00007778 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007779 NewLoad = true;
7780 }
Evan Cheng513da432007-10-06 08:19:55 +00007781
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007782 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00007783 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00007784 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007785 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00007786 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00007787 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00007788 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007789 // Don't duplicate a load with other uses.
7790 if (!InVec.hasOneUse())
7791 return SDValue();
7792
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007793 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00007794 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007795 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
7796 // =>
7797 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00007798
Eli Friedmand6e25602011-12-26 22:49:32 +00007799 // Don't duplicate a load with other uses.
7800 if (!InVec.hasOneUse())
7801 return SDValue();
7802
Mon P Wanga60b5232008-12-11 00:26:16 +00007803 // If the bit convert changed the number of elements, it is unsafe
7804 // to examine the mask.
7805 if (BCNumEltsChanged)
7806 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00007807
7808 // Select the input vector, guarding against out of range extract vector.
7809 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00007810 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00007811 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
7812
Eli Friedmand6e25602011-12-26 22:49:32 +00007813 if (InVec.getOpcode() == ISD::BITCAST) {
7814 // Don't duplicate a load with other uses.
7815 if (!InVec.hasOneUse())
7816 return SDValue();
7817
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007818 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00007819 }
Gabor Greifba36cb52008-08-28 21:40:38 +00007820 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007821 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00007822 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00007823 }
7824 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007825
Eli Friedmand6e25602011-12-26 22:49:32 +00007826 // Make sure we found a non-volatile load and the extractelement is
7827 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00007828 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00007829 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007830
Eric Christopherd81f17a2010-11-03 20:44:42 +00007831 // If Idx was -1 above, Elt is going to be -1, so just return undef.
7832 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00007833 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00007834
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007835 unsigned Align = LN0->getAlignment();
7836 if (NewLoad) {
7837 // Check the resultant load doesn't need a higher alignment than the
7838 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00007839 unsigned NewAlign =
Eric Christopher503a64d2010-12-09 04:48:06 +00007840 TLI.getTargetData()
7841 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00007842
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007843 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007844 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00007845
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007846 Align = NewAlign;
7847 }
7848
Dan Gohman475871a2008-07-27 21:46:04 +00007849 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00007850 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007851
Eric Christopherd81f17a2010-11-03 20:44:42 +00007852 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00007853 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007854 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007855 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007856 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00007857 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007858 DAG.getConstant(PtrOff, PtrType));
7859 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007860
Eli Friedman4db4add2011-11-16 23:50:22 +00007861 // The replacement we need to do here is a little tricky: we need to
7862 // replace an extractelement of a load with a load.
7863 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00007864 // Note that this replacement assumes that the extractvalue is the only
7865 // use of the load; that's okay because we don't want to perform this
7866 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00007867 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00007868 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00007869 if (NVT.bitsGT(LVT)) {
7870 // If the result type of vextract is wider than the load, then issue an
7871 // extending load instead.
7872 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
7873 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
7874 Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(),
7875 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
7876 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007877 Chain = Load.getValue(1);
7878 } else {
Evan Cheng84387ea2012-03-13 22:00:52 +00007879 Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
7880 LN0->getPointerInfo().getWithOffset(PtrOff),
7881 LN0->isVolatile(), LN0->isNonTemporal(),
7882 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007883 Chain = Load.getValue(1);
7884 if (NVT.bitsLT(LVT))
7885 Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load);
7886 else
7887 Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load);
7888 }
Eli Friedman4db4add2011-11-16 23:50:22 +00007889 WorkListRemover DeadNodes(*this);
7890 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00007891 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007892 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedman4db4add2011-11-16 23:50:22 +00007893 // Since we're explcitly calling ReplaceAllUses, add the new node to the
7894 // worklist explicitly as well.
7895 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00007896 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00007897 // Make sure to revisit this node to clean it up; it will usually be dead.
7898 AddToWorkList(N);
7899 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00007900 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007901
Dan Gohman475871a2008-07-27 21:46:04 +00007902 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00007903}
Evan Cheng513da432007-10-06 08:19:55 +00007904
Dan Gohman475871a2008-07-27 21:46:04 +00007905SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007906 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007907 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007908 EVT VT = N->getValueType(0);
Nadav Rotemb87bdac2012-07-15 08:38:23 +00007909
7910 // A vector built entirely of undefs is undef.
7911 if (ISD::allOperandsUndef(N))
7912 return DAG.getUNDEF(VT);
7913
Nadav Rotemb00418a2011-10-29 21:23:04 +00007914 // Check to see if this is a BUILD_VECTOR of a bunch of values
7915 // which come from any_extend or zero_extend nodes. If so, we can create
7916 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00007917 // optimizations. We do not handle sign-extend because we can't fill the sign
7918 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007919 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00007920 bool AllAnyExt = true;
Nadav Rotemb87bdac2012-07-15 08:38:23 +00007921
Craig Topperd3b58892012-01-17 09:09:48 +00007922 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007923 SDValue In = N->getOperand(i);
7924 // Ignore undef inputs.
7925 if (In.getOpcode() == ISD::UNDEF) continue;
7926
7927 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
7928 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
7929
Nadav Rotemf47368b2011-10-31 20:08:25 +00007930 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007931 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00007932 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007933 break;
7934 }
7935
7936 // The input is a ZeroExt or AnyExt. Check the original type.
7937 EVT InTy = In.getOperand(0).getValueType();
7938
7939 // Check that all of the widened source types are the same.
7940 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007941 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007942 SourceType = InTy;
7943 else if (InTy != SourceType) {
7944 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007945 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007946 break;
7947 }
7948
7949 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00007950 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007951 }
7952
Nadav Rotemf47368b2011-10-31 20:08:25 +00007953 // In order to have valid types, all of the inputs must be extended from the
7954 // same source type and all of the inputs must be any or zero extend.
7955 // Scalar sizes must be a power of two.
7956 EVT OutScalarTy = N->getValueType(0).getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007957 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00007958 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
7959 isPowerOf2_32(SourceType.getSizeInBits());
7960
7961 // We perform this optimization post type-legalization because
7962 // the type-legalizer often scalarizes integer-promoted vectors.
7963 // Performing this optimization before may create bit-casts which
7964 // will be type-legalized to complex code sequences.
7965 // We perform this optimization only before the operation legalizer because we
7966 // may introduce illegal operations.
Nadav Rotem6431ff92012-03-15 08:49:06 +00007967 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
7968 // turn into a single shuffle instruction.
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007969 if ((Level == AfterLegalizeVectorOps || Level == AfterLegalizeTypes) &&
7970 ValidTypes) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007971 bool isLE = TLI.isLittleEndian();
Nadav Rotemf47368b2011-10-31 20:08:25 +00007972 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007973 assert(ElemRatio > 1 && "Invalid element size ratio");
Craig Topperd3b58892012-01-17 09:09:48 +00007974 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
Nadav Rotemf47368b2011-10-31 20:08:25 +00007975 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007976
7977 unsigned NewBVElems = ElemRatio * N->getValueType(0).getVectorNumElements();
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007978 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007979
7980 // Populate the new build_vector
7981 for (unsigned i=0; i < N->getNumOperands(); ++i) {
7982 SDValue Cast = N->getOperand(i);
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007983 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
7984 Cast.getOpcode() == ISD::ZERO_EXTEND ||
7985 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
Nadav Rotemb00418a2011-10-29 21:23:04 +00007986 SDValue In;
7987 if (Cast.getOpcode() == ISD::UNDEF)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007988 In = DAG.getUNDEF(SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007989 else
7990 In = Cast->getOperand(0);
7991 unsigned Index = isLE ? (i * ElemRatio) :
7992 (i * ElemRatio + (ElemRatio - 1));
7993
7994 assert(Index < Ops.size() && "Invalid index");
7995 Ops[Index] = In;
7996 }
7997
7998 // The type of the new BUILD_VECTOR node.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007999 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008000 assert(VecVT.getSizeInBits() == N->getValueType(0).getSizeInBits() &&
8001 "Invalid vector size");
Nadav Rotemf47368b2011-10-31 20:08:25 +00008002 // Check if the new vector type is legal.
8003 if (!isTypeLegal(VecVT)) return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008004
8005 // Make the new BUILD_VECTOR.
8006 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8007 VecVT, &Ops[0], Ops.size());
8008
Nadav Rotem6431ff92012-03-15 08:49:06 +00008009 // The new BUILD_VECTOR node has the potential to be further optimized.
8010 AddToWorkList(BV.getNode());
Nadav Rotemb00418a2011-10-29 21:23:04 +00008011 // Bitcast to the desired type.
8012 return DAG.getNode(ISD::BITCAST, dl, N->getValueType(0), BV);
8013 }
Chris Lattnerca242442006-03-19 01:27:56 +00008014
Dan Gohman7f321562007-06-25 16:23:39 +00008015 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
8016 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
8017 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00008018
8019 // May only combine to shuffle after legalize if shuffle is legal.
8020 if (LegalOperations &&
8021 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
8022 return SDValue();
8023
Dan Gohman475871a2008-07-27 21:46:04 +00008024 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00008025 for (unsigned i = 0; i != NumInScalars; ++i) {
8026 // Ignore undef inputs.
8027 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008028
Dan Gohman7f321562007-06-25 16:23:39 +00008029 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00008030 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00008031 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00008032 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00008033 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008034 break;
8035 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008036
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008037 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00008038 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008039 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
8040 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008041
Gabor Greifba36cb52008-08-28 21:40:38 +00008042 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00008043 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00008044 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00008045 VecIn2 = ExtractedFromVec;
8046 } else {
8047 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008048 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008049 break;
8050 }
8051 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008052
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008053 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00008054 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008055 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00008056 for (unsigned i = 0; i != NumInScalars; ++i) {
8057 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008058 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008059 continue;
8060 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008061
Rafael Espindola15684b22009-04-24 12:40:33 +00008062 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00008063 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00008064 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008065 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00008066 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
8067 if (ExtIndex > VT.getVectorNumElements())
8068 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008069
Nate Begeman5a5ca152009-04-29 05:20:52 +00008070 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008071 continue;
8072 }
8073
8074 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00008075 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008076 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008077 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008078
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008079 // We can't generate a shuffle node with mismatched input and output types.
8080 // Attempt to transform a single input vector to the correct type.
8081 if ((VT != VecIn1.getValueType())) {
8082 // We don't support shuffeling between TWO values of different types.
8083 if (VecIn2.getNode() != 0)
8084 return SDValue();
8085
8086 // We only support widening of vectors which are half the size of the
8087 // output registers. For example XMM->YMM widening on X86 with AVX.
8088 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
8089 return SDValue();
8090
James Molloy8cd08bf2012-09-10 14:01:21 +00008091 // If the input vector type has a different base type to the output
8092 // vector type, bail out.
8093 if (VecIn1.getValueType().getVectorElementType() !=
8094 VT.getVectorElementType())
8095 return SDValue();
8096
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00008097 // Widen the input vector by adding undef values.
8098 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
8099 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008100 }
8101
8102 // If VecIn2 is unused then change it to undef.
8103 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
8104
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008105 // Check that we were able to transform all incoming values to the same
8106 // type.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00008107 if (VecIn2.getValueType() != VecIn1.getValueType() ||
8108 VecIn1.getValueType() != VT)
8109 return SDValue();
8110
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008111 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00008112 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00008113 return SDValue();
8114
Dan Gohman7f321562007-06-25 16:23:39 +00008115 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00008116 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00008117 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008118 Ops[1] = VecIn2;
Nate Begeman9008ca62009-04-27 18:41:29 +00008119 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008120 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008121
Dan Gohman475871a2008-07-27 21:46:04 +00008122 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00008123}
8124
Dan Gohman475871a2008-07-27 21:46:04 +00008125SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00008126 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
8127 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
8128 // inputs come from at most two distinct vectors, turn this into a shuffle
8129 // node.
8130
8131 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00008132 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00008133 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00008134
Nadav Rotemb7e230d2012-07-14 21:30:27 +00008135 // Check if all of the operands are undefs.
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008136 if (ISD::allOperandsUndef(N))
Nadav Rotemb7e230d2012-07-14 21:30:27 +00008137 return DAG.getUNDEF(N->getValueType(0));
8138
Dan Gohman475871a2008-07-27 21:46:04 +00008139 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00008140}
8141
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008142SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
8143 EVT NVT = N->getValueType(0);
8144 SDValue V = N->getOperand(0);
8145
8146 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
8147 // Handle only simple case where vector being inserted and vector
8148 // being extracted are of same type, and are half size of larger vectors.
8149 EVT BigVT = V->getOperand(0).getValueType();
8150 EVT SmallVT = V->getOperand(1).getValueType();
8151 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
8152 return SDValue();
8153
Eli Friedman26323442011-12-07 00:11:56 +00008154 // Only handle cases where both indexes are constants with the same type.
8155 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
8156 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008157
Eli Friedman26323442011-12-07 00:11:56 +00008158 if (InsIdx && ExtIdx &&
8159 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
8160 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
8161 // Combine:
8162 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
8163 // Into:
8164 // indices are equal => V1
8165 // otherwise => (extract_subvec V1, ExtIdx)
8166 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
8167 return V->getOperand(1);
8168 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
8169 V->getOperand(0), N->getOperand(1));
8170 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008171 }
8172
8173 return SDValue();
8174}
8175
Dan Gohman475871a2008-07-27 21:46:04 +00008176SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00008177 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00008178 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00008179
Mon P Wangaeb06d22008-11-10 04:46:22 +00008180 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00008181 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00008182
Craig Topperae1bec52012-04-09 05:16:56 +00008183 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00008184
Craig Topper481b79c2012-01-04 08:07:43 +00008185 // Canonicalize shuffle undef, undef -> undef
8186 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
8187 return DAG.getUNDEF(VT);
8188
8189 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
8190
8191 // Canonicalize shuffle v, v -> v, undef
8192 if (N0 == N1) {
8193 SmallVector<int, 8> NewMask;
8194 for (unsigned i = 0; i != NumElts; ++i) {
8195 int Idx = SVN->getMaskElt(i);
8196 if (Idx >= (int)NumElts) Idx -= NumElts;
8197 NewMask.push_back(Idx);
8198 }
8199 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
8200 &NewMask[0]);
8201 }
8202
8203 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
8204 if (N0.getOpcode() == ISD::UNDEF) {
8205 SmallVector<int, 8> NewMask;
8206 for (unsigned i = 0; i != NumElts; ++i) {
8207 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00008208 if (Idx >= 0) {
8209 if (Idx < (int)NumElts)
8210 Idx += NumElts;
8211 else
8212 Idx -= NumElts;
8213 }
8214 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00008215 }
8216 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
8217 &NewMask[0]);
8218 }
8219
8220 // Remove references to rhs if it is undef
8221 if (N1.getOpcode() == ISD::UNDEF) {
8222 bool Changed = false;
8223 SmallVector<int, 8> NewMask;
8224 for (unsigned i = 0; i != NumElts; ++i) {
8225 int Idx = SVN->getMaskElt(i);
8226 if (Idx >= (int)NumElts) {
8227 Idx = -1;
8228 Changed = true;
8229 }
8230 NewMask.push_back(Idx);
8231 }
8232 if (Changed)
8233 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
8234 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00008235
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008236 // If it is a splat, check if the argument vector is another splat or a
8237 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008238 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00008239 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00008240
Dan Gohman7f321562007-06-25 16:23:39 +00008241 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00008242 // not the number of vector elements, look through it. Be careful not to
8243 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008244 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00008245 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00008246 if (ConvInput.getValueType().isVector() &&
8247 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00008248 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00008249 }
8250
Dan Gohman7f321562007-06-25 16:23:39 +00008251 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008252 assert(V->getNumOperands() == NumElts &&
8253 "BUILD_VECTOR has wrong number of operands");
8254 SDValue Base;
8255 bool AllSame = true;
8256 for (unsigned i = 0; i != NumElts; ++i) {
8257 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
8258 Base = V->getOperand(i);
8259 break;
Evan Cheng917ec982006-07-21 08:25:53 +00008260 }
Evan Cheng917ec982006-07-21 08:25:53 +00008261 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008262 // Splat of <u, u, u, u>, return <u, u, u, u>
8263 if (!Base.getNode())
8264 return N0;
8265 for (unsigned i = 0; i != NumElts; ++i) {
8266 if (V->getOperand(i) != Base) {
8267 AllSame = false;
8268 break;
8269 }
8270 }
8271 // Splat of <x, x, x, x>, return <x, x, x, x>
8272 if (AllSame)
8273 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00008274 }
8275 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00008276
8277 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008278 // and it reverses the swizzle of the previous shuffle then we can
8279 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00008280 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
8281 N1.getOpcode() == ISD::UNDEF) {
8282
Nadav Rotem4ac90812012-04-01 19:31:22 +00008283 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
8284
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008285 // Shuffle nodes can only reverse shuffles with a single non-undef value.
8286 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
8287 return SDValue();
8288
Craig Topperae1bec52012-04-09 05:16:56 +00008289 // The incoming shuffle must be of the same type as the result of the
8290 // current shuffle.
8291 assert(OtherSV->getOperand(0).getValueType() == VT &&
8292 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00008293
8294 for (unsigned i = 0; i != NumElts; ++i) {
8295 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00008296 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00008297 // Next, this index comes from the first value, which is the incoming
8298 // shuffle. Adopt the incoming index.
8299 if (Idx >= 0)
8300 Idx = OtherSV->getMaskElt(Idx);
8301
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008302 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00008303 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008304 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00008305 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008306
8307 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00008308 }
8309
Dan Gohman475871a2008-07-27 21:46:04 +00008310 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00008311}
8312
Jim Grosbach9a526492010-06-23 16:07:42 +00008313SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
8314 if (!TLI.getShouldFoldAtomicFences())
8315 return SDValue();
8316
8317 SDValue atomic = N->getOperand(0);
8318 switch (atomic.getOpcode()) {
8319 case ISD::ATOMIC_CMP_SWAP:
8320 case ISD::ATOMIC_SWAP:
8321 case ISD::ATOMIC_LOAD_ADD:
8322 case ISD::ATOMIC_LOAD_SUB:
8323 case ISD::ATOMIC_LOAD_AND:
8324 case ISD::ATOMIC_LOAD_OR:
8325 case ISD::ATOMIC_LOAD_XOR:
8326 case ISD::ATOMIC_LOAD_NAND:
8327 case ISD::ATOMIC_LOAD_MIN:
8328 case ISD::ATOMIC_LOAD_MAX:
8329 case ISD::ATOMIC_LOAD_UMIN:
8330 case ISD::ATOMIC_LOAD_UMAX:
8331 break;
8332 default:
8333 return SDValue();
8334 }
8335
8336 SDValue fence = atomic.getOperand(0);
8337 if (fence.getOpcode() != ISD::MEMBARRIER)
8338 return SDValue();
8339
8340 switch (atomic.getOpcode()) {
8341 case ISD::ATOMIC_CMP_SWAP:
8342 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
8343 fence.getOperand(0),
8344 atomic.getOperand(1), atomic.getOperand(2),
8345 atomic.getOperand(3)), atomic.getResNo());
8346 case ISD::ATOMIC_SWAP:
8347 case ISD::ATOMIC_LOAD_ADD:
8348 case ISD::ATOMIC_LOAD_SUB:
8349 case ISD::ATOMIC_LOAD_AND:
8350 case ISD::ATOMIC_LOAD_OR:
8351 case ISD::ATOMIC_LOAD_XOR:
8352 case ISD::ATOMIC_LOAD_NAND:
8353 case ISD::ATOMIC_LOAD_MIN:
8354 case ISD::ATOMIC_LOAD_MAX:
8355 case ISD::ATOMIC_LOAD_UMIN:
8356 case ISD::ATOMIC_LOAD_UMAX:
8357 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
8358 fence.getOperand(0),
8359 atomic.getOperand(1), atomic.getOperand(2)),
8360 atomic.getResNo());
8361 default:
8362 return SDValue();
8363 }
8364}
8365
Evan Cheng44f1f092006-04-20 08:56:16 +00008366/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00008367/// an AND to a vector_shuffle with the destination vector and a zero vector.
8368/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00008369/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00008370SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00008371 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00008372 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008373 SDValue LHS = N->getOperand(0);
8374 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00008375 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008376 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00008377 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00008378 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008379 SmallVector<int, 8> Indices;
8380 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00008381 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008382 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00008383 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00008384 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00008385
8386 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00008387 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00008388 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00008389 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00008390 else
Dan Gohman475871a2008-07-27 21:46:04 +00008391 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008392 }
8393
8394 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00008395 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00008396 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008397 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008398
Dan Gohman7f321562007-06-25 16:23:39 +00008399 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00008400 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00008401 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00008402 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00008403 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8404 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008405 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00008406 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008407 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00008408 }
8409 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008410
Dan Gohman475871a2008-07-27 21:46:04 +00008411 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008412}
8413
Dan Gohman7f321562007-06-25 16:23:39 +00008414/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00008415SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00008416 // After legalize, the target may be depending on adds and other
8417 // binary ops to provide legal ways to construct constants or other
8418 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00008419 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00008420
Bob Wilsond7273432010-12-17 23:06:49 +00008421 assert(N->getValueType(0).isVector() &&
8422 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00008423
Dan Gohman475871a2008-07-27 21:46:04 +00008424 SDValue LHS = N->getOperand(0);
8425 SDValue RHS = N->getOperand(1);
8426 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00008427 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00008428
Dan Gohman7f321562007-06-25 16:23:39 +00008429 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00008430 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00008431 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00008432 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00008433 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00008434 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008435 SDValue LHSOp = LHS.getOperand(i);
8436 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00008437 // If these two elements can't be folded, bail out.
8438 if ((LHSOp.getOpcode() != ISD::UNDEF &&
8439 LHSOp.getOpcode() != ISD::Constant &&
8440 LHSOp.getOpcode() != ISD::ConstantFP) ||
8441 (RHSOp.getOpcode() != ISD::UNDEF &&
8442 RHSOp.getOpcode() != ISD::Constant &&
8443 RHSOp.getOpcode() != ISD::ConstantFP))
8444 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008445
Evan Cheng7b336a82006-05-31 06:08:35 +00008446 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00008447 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
8448 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00008449 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008450 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00008451 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008452 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00008453 break;
8454 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008455
Bob Wilsond7273432010-12-17 23:06:49 +00008456 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00008457 EVT RVT = RHSOp.getValueType();
8458 if (RVT != VT) {
8459 // Integer BUILD_VECTOR operands may have types larger than the element
8460 // size (e.g., when the element type is not legal). Prior to type
8461 // legalization, the types may not match between the two BUILD_VECTORS.
8462 // Truncate one of the operands to make them match.
8463 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
8464 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
8465 } else {
8466 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
8467 VT = RVT;
8468 }
8469 }
Bob Wilsond7273432010-12-17 23:06:49 +00008470 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00008471 LHSOp, RHSOp);
8472 if (FoldOp.getOpcode() != ISD::UNDEF &&
8473 FoldOp.getOpcode() != ISD::Constant &&
8474 FoldOp.getOpcode() != ISD::ConstantFP)
8475 break;
8476 Ops.push_back(FoldOp);
8477 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00008478 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008479
Bob Wilsond7273432010-12-17 23:06:49 +00008480 if (Ops.size() == LHS.getNumOperands())
8481 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8482 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00008483 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008484
Dan Gohman475871a2008-07-27 21:46:04 +00008485 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00008486}
8487
Craig Topperdd201ff2012-09-11 01:45:21 +00008488/// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG.
8489SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) {
8490 // After legalize, the target may be depending on adds and other
8491 // binary ops to provide legal ways to construct constants or other
8492 // things. Simplifying them may result in a loss of legality.
8493 if (LegalOperations) return SDValue();
8494
8495 assert(N->getValueType(0).isVector() &&
8496 "SimplifyVUnaryOp only works on vectors!");
8497
8498 SDValue N0 = N->getOperand(0);
8499
8500 if (N0.getOpcode() != ISD::BUILD_VECTOR)
8501 return SDValue();
8502
8503 // Operand is a BUILD_VECTOR node, see if we can constant fold it.
8504 SmallVector<SDValue, 8> Ops;
8505 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
8506 SDValue Op = N0.getOperand(i);
8507 if (Op.getOpcode() != ISD::UNDEF &&
8508 Op.getOpcode() != ISD::ConstantFP)
8509 break;
8510 EVT EltVT = Op.getValueType();
8511 SDValue FoldOp = DAG.getNode(N->getOpcode(), N0.getDebugLoc(), EltVT, Op);
8512 if (FoldOp.getOpcode() != ISD::UNDEF &&
8513 FoldOp.getOpcode() != ISD::ConstantFP)
8514 break;
8515 Ops.push_back(FoldOp);
8516 AddToWorkList(FoldOp.getNode());
8517 }
8518
8519 if (Ops.size() != N0.getNumOperands())
8520 return SDValue();
8521
8522 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8523 N0.getValueType(), &Ops[0], Ops.size());
8524}
8525
Bill Wendling836ca7d2009-01-30 23:59:18 +00008526SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
8527 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00008528 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008529
Bill Wendling836ca7d2009-01-30 23:59:18 +00008530 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00008531 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008532
Nate Begemanf845b452005-10-08 00:29:44 +00008533 // If we got a simplified select_cc node back from SimplifySelectCC, then
8534 // break it down into a new SETCC node, and a new SELECT node, and then return
8535 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00008536 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008537 // Check to see if we got a select_cc back (to turn into setcc/select).
8538 // Otherwise, just return whatever node we got back, like fabs.
8539 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008540 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
8541 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008542 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008543 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00008544 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008545 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
8546 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00008547 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008548
Nate Begemanf845b452005-10-08 00:29:44 +00008549 return SCC;
8550 }
Dan Gohman475871a2008-07-27 21:46:04 +00008551 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008552}
8553
Chris Lattner40c62d52005-10-18 06:04:22 +00008554/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
8555/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00008556/// select. Callers of this should assume that TheSelect is deleted if this
8557/// returns true. As such, they should return the appropriate thing (e.g. the
8558/// node) back to the top-level of the DAG combiner loop to avoid it being
8559/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00008560bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00008561 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008562
Nadav Rotemf94fdb62011-02-11 19:57:47 +00008563 // Cannot simplify select with vector condition
8564 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
8565
Chris Lattner40c62d52005-10-18 06:04:22 +00008566 // If this is a select from two identical things, try to pull the operation
8567 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00008568 if (LHS.getOpcode() != RHS.getOpcode() ||
8569 !LHS.hasOneUse() || !RHS.hasOneUse())
8570 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008571
Chris Lattner18061612010-09-21 15:46:59 +00008572 // If this is a load and the token chain is identical, replace the select
8573 // of two loads with a load through a select of the address to load from.
8574 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
8575 // constants have been dropped into the constant pool.
8576 if (LHS.getOpcode() == ISD::LOAD) {
8577 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
8578 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008579
Chris Lattner18061612010-09-21 15:46:59 +00008580 // Token chains must be identical.
8581 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008582 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00008583 LLD->isVolatile() || RLD->isVolatile() ||
8584 // If this is an EXTLOAD, the VT's must match.
8585 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00008586 // If this is an EXTLOAD, the kind of extension must match.
8587 (LLD->getExtensionType() != RLD->getExtensionType() &&
8588 // The only exception is if one of the extensions is anyext.
8589 LLD->getExtensionType() != ISD::EXTLOAD &&
8590 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00008591 // FIXME: this discards src value information. This is
8592 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00008593 // both potential memory locations. Since we are discarding
8594 // src value info, don't do the transformation if the memory
8595 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00008596 LLD->getPointerInfo().getAddrSpace() != 0 ||
8597 RLD->getPointerInfo().getAddrSpace() != 0)
8598 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008599
Chris Lattnerf1658062010-09-21 15:58:55 +00008600 // Check that the select condition doesn't reach either load. If so,
8601 // folding this will induce a cycle into the DAG. If not, this is safe to
8602 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00008603 SDValue Addr;
8604 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00008605 SDNode *CondNode = TheSelect->getOperand(0).getNode();
8606 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
8607 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
8608 return false;
8609 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
8610 LLD->getBasePtr().getValueType(),
8611 TheSelect->getOperand(0), LLD->getBasePtr(),
8612 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00008613 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00008614 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
8615 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
8616
8617 if ((LLD->hasAnyUseOfValue(1) &&
8618 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00008619 (RLD->hasAnyUseOfValue(1) &&
8620 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00008621 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008622
Chris Lattnerf1658062010-09-21 15:58:55 +00008623 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
8624 LLD->getBasePtr().getValueType(),
8625 TheSelect->getOperand(0),
8626 TheSelect->getOperand(1),
8627 LLD->getBasePtr(), RLD->getBasePtr(),
8628 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00008629 }
8630
Chris Lattnerf1658062010-09-21 15:58:55 +00008631 SDValue Load;
8632 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
8633 Load = DAG.getLoad(TheSelect->getValueType(0),
8634 TheSelect->getDebugLoc(),
8635 // FIXME: Discards pointer info.
8636 LLD->getChain(), Addr, MachinePointerInfo(),
8637 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008638 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00008639 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00008640 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
8641 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00008642 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00008643 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00008644 // FIXME: Discards pointer info.
8645 LLD->getChain(), Addr, MachinePointerInfo(),
8646 LLD->getMemoryVT(), LLD->isVolatile(),
8647 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00008648 }
Chris Lattnerf1658062010-09-21 15:58:55 +00008649
8650 // Users of the select now use the result of the load.
8651 CombineTo(TheSelect, Load);
8652
8653 // Users of the old loads now use the new load's chain. We know the
8654 // old-load value is dead now.
8655 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
8656 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
8657 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00008658 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008659
Chris Lattner40c62d52005-10-18 06:04:22 +00008660 return false;
8661}
8662
Chris Lattner600fec32009-03-11 05:08:08 +00008663/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
8664/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00008665SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00008666 SDValue N2, SDValue N3,
8667 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00008668 // (x ? y : y) -> y.
8669 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008670
Owen Andersone50ed302009-08-10 22:56:29 +00008671 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00008672 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
8673 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
8674 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008675
8676 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00008677 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008678 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00008679 if (SCC.getNode()) AddToWorkList(SCC.getNode());
8680 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008681
8682 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00008683 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008684 return N2;
8685 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00008686 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008687 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00008688
Nate Begemanf845b452005-10-08 00:29:44 +00008689 // Check to see if we can simplify the select into an fabs node
8690 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
8691 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00008692 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008693 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
8694 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
8695 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
8696 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008697 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008698
Nate Begemanf845b452005-10-08 00:29:44 +00008699 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
8700 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
8701 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
8702 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008703 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00008704 }
8705 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008706
Chris Lattner600fec32009-03-11 05:08:08 +00008707 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
8708 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
8709 // in it. This is a win when the constant is not otherwise available because
8710 // it replaces two constant pool loads with one. We only do this if the FP
8711 // type is known to be legal, because if it isn't, then we are before legalize
8712 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00008713 // messing with soft float) and if the ConstantFP is not legal, because if
8714 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00008715 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
8716 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
8717 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00008718 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
8719 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00008720 // If both constants have multiple uses, then we won't need to do an
8721 // extra load, they are likely around in registers for other users.
8722 (TV->hasOneUse() || FV->hasOneUse())) {
8723 Constant *Elts[] = {
8724 const_cast<ConstantFP*>(FV->getConstantFPValue()),
8725 const_cast<ConstantFP*>(TV->getConstantFPValue())
8726 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008727 Type *FPTy = Elts[0]->getType();
Chris Lattner600fec32009-03-11 05:08:08 +00008728 const TargetData &TD = *TLI.getTargetData();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008729
Chris Lattner600fec32009-03-11 05:08:08 +00008730 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00008731 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00008732 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
8733 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00008734 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00008735
8736 // Get the offsets to the 0 and 1 element of the array so that we can
8737 // select between them.
8738 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00008739 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00008740 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008741
Chris Lattner600fec32009-03-11 05:08:08 +00008742 SDValue Cond = DAG.getSetCC(DL,
8743 TLI.getSetCCResultType(N0.getValueType()),
8744 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00008745 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008746 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
8747 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00008748 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008749 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
8750 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00008751 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008752 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00008753 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008754 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00008755
8756 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008757 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008758
Nate Begemanf845b452005-10-08 00:29:44 +00008759 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00008760 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00008761 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00008762 (N1C->isNullValue() || // (a < 0) ? b : 0
8763 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00008764 EVT XType = N0.getValueType();
8765 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00008766 if (XType.bitsGE(AType)) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00008767 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00008768 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00008769 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
8770 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008771 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00008772 SDValue ShCt = DAG.getConstant(ShCtV,
8773 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00008774 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008775 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00008776 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008777
Duncan Sands8e4eb092008-06-08 20:54:56 +00008778 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008779 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008780 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008781 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008782
8783 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008784 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008785
Bill Wendling9729c5a2009-01-31 03:12:48 +00008786 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008787 XType, N0,
8788 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008789 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00008790 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008791
Duncan Sands8e4eb092008-06-08 20:54:56 +00008792 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008793 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008794 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008795 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008796
8797 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008798 }
8799 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008800
Owen Andersoned1088a2010-09-22 22:58:22 +00008801 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
8802 // where y is has a single bit set.
8803 // A plaintext description would be, we can turn the SELECT_CC into an AND
8804 // when the condition can be materialized as an all-ones register. Any
8805 // single bit-test can be materialized as an all-ones register with
8806 // shift-left and shift-right-arith.
8807 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
8808 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008809 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00008810 N2C && N2C->isNullValue()) {
8811 SDValue AndLHS = N0->getOperand(0);
8812 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
8813 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
8814 // Shift the tested bit over the sign bit.
8815 APInt AndMask = ConstAndRHS->getAPIntValue();
8816 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008817 DAG.getConstant(AndMask.countLeadingZeros(),
8818 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008819 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008820
Owen Andersoned1088a2010-09-22 22:58:22 +00008821 // Now arithmetic right shift it all the way over, so the result is either
8822 // all-ones, or zero.
8823 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008824 DAG.getConstant(AndMask.getBitWidth()-1,
8825 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008826 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008827
Owen Andersoned1088a2010-09-22 22:58:22 +00008828 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
8829 }
8830 }
8831
Nate Begeman07ed4172005-10-10 21:26:48 +00008832 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00008833 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00008834 TLI.getBooleanContents(N0.getValueType().isVector()) ==
8835 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008836
Chris Lattner1eba01e2007-04-11 06:50:51 +00008837 // If the caller doesn't want us to simplify this into a zext of a compare,
8838 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00008839 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00008840 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008841
Nate Begeman07ed4172005-10-10 21:26:48 +00008842 // Get a SetCC of the condition
8843 // FIXME: Should probably make sure that setcc is legal if we ever have a
8844 // target where it isn't.
Dan Gohman475871a2008-07-27 21:46:04 +00008845 SDValue Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00008846 // cast from setcc result type to select result type
Duncan Sands25cf2272008-11-24 14:53:14 +00008847 if (LegalTypes) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008848 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00008849 N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00008850 if (N2.getValueType().bitsLT(SCC.getValueType()))
Bill Wendling9729c5a2009-01-31 03:12:48 +00008851 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
Chris Lattner555d8d62006-12-07 22:36:47 +00008852 else
Bill Wendling9729c5a2009-01-31 03:12:48 +00008853 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008854 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008855 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00008856 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00008857 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008858 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008859 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008860
Gabor Greifba36cb52008-08-28 21:40:38 +00008861 AddToWorkList(SCC.getNode());
8862 AddToWorkList(Temp.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00008863
Dan Gohman002e5d02008-03-13 22:13:53 +00008864 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00008865 return Temp;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008866
Nate Begeman07ed4172005-10-10 21:26:48 +00008867 // shl setcc result by log2 n2c
Bill Wendling836ca7d2009-01-30 23:59:18 +00008868 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00008869 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00008870 getShiftAmountTy(Temp.getValueType())));
Nate Begeman07ed4172005-10-10 21:26:48 +00008871 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008872
Nate Begemanf845b452005-10-08 00:29:44 +00008873 // Check to see if this is the equivalent of setcc
8874 // FIXME: Turn all of these into setcc if setcc if setcc is legal
8875 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00008876 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00008877 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00008878 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00008879 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008880 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00008881 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008882 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00008883 return Res;
8884 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008885
Bill Wendling836ca7d2009-01-30 23:59:18 +00008886 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00008887 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008888 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00008889 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008890 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008891 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008892 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00008893 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00008894 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008895 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00008896 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008897 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
8898 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00008899 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00008900 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00008901 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00008902 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008903 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00008904 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008905 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00008906 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008907 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00008908 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008909 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00008910 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00008911 }
8912 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008913
Benjamin Kramercde51102010-07-08 12:09:56 +00008914 // Check to see if this is an integer abs.
8915 // select_cc setg[te] X, 0, X, -X ->
8916 // select_cc setgt X, -1, X, -X ->
8917 // select_cc setl[te] X, 0, -X, X ->
8918 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00008919 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00008920 if (N1C) {
8921 ConstantSDNode *SubC = NULL;
8922 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
8923 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
8924 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
8925 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
8926 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
8927 (N1C->isOne() && CC == ISD::SETLT)) &&
8928 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
8929 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
8930
Owen Andersone50ed302009-08-10 22:56:29 +00008931 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00008932 if (SubC && SubC->isNullValue() && XType.isInteger()) {
8933 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
8934 N0,
8935 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008936 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00008937 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
8938 XType, N0, Shift);
8939 AddToWorkList(Shift.getNode());
8940 AddToWorkList(Add.getNode());
8941 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00008942 }
8943 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008944
Dan Gohman475871a2008-07-27 21:46:04 +00008945 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008946}
8947
Evan Chengfa1eb272007-02-08 22:13:59 +00008948/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00008949SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00008950 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008951 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008952 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00008953 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008954 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00008955}
8956
Nate Begeman69575232005-10-20 02:15:44 +00008957/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
8958/// return a DAG expression to select that will generate the same value by
8959/// multiplying by a magic number. See:
8960/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008961SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008962 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008963 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008964
Andrew Lenharth232c9102006-06-12 16:07:18 +00008965 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008966 ii != ee; ++ii)
8967 AddToWorkList(*ii);
8968 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008969}
8970
8971/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
8972/// return a DAG expression to select that will generate the same value by
8973/// multiplying by a magic number. See:
8974/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008975SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008976 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008977 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00008978
Andrew Lenharth232c9102006-06-12 16:07:18 +00008979 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008980 ii != ee; ++ii)
8981 AddToWorkList(*ii);
8982 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008983}
8984
Nate Begemancc66cdd2009-09-25 06:05:26 +00008985/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00008986// to alias with anything but itself. Provides base object and offset as
8987// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008988static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Roman Divacky2943e372012-09-05 22:15:49 +00008989 const GlobalValue *&GV, const void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00008990 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008991 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008992
Jim Laskey71382342006-10-07 23:37:56 +00008993 // If it's an adding a simple constant then integrate the offset.
8994 if (Base.getOpcode() == ISD::ADD) {
8995 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
8996 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008997 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00008998 }
8999 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009000
Nate Begemancc66cdd2009-09-25 06:05:26 +00009001 // Return the underlying GlobalValue, and update the Offset. Return false
9002 // for GlobalAddressSDNode since the same GlobalAddress may be represented
9003 // by multiple nodes with different offsets.
9004 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
9005 GV = G->getGlobal();
9006 Offset += G->getOffset();
9007 return false;
9008 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009009
Nate Begemancc66cdd2009-09-25 06:05:26 +00009010 // Return the underlying Constant value, and update the Offset. Return false
9011 // for ConstantSDNodes since the same constant pool entry may be represented
9012 // by multiple nodes with different offsets.
9013 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
Roman Divacky2943e372012-09-05 22:15:49 +00009014 CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal()
9015 : (const void *)C->getConstVal();
Nate Begemancc66cdd2009-09-25 06:05:26 +00009016 Offset += C->getOffset();
9017 return false;
9018 }
Jim Laskey71382342006-10-07 23:37:56 +00009019 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009020 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00009021}
9022
9023/// isAlias - Return true if there is any possibility that the two addresses
9024/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00009025bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00009026 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009027 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009028 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00009029 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009030 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009031 unsigned SrcValueAlign2,
9032 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00009033 // If they are the same then they must be aliases.
9034 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00009035
Jim Laskey71382342006-10-07 23:37:56 +00009036 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00009037 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00009038 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00009039 const GlobalValue *GV1, *GV2;
Roman Divacky2943e372012-09-05 22:15:49 +00009040 const void *CV1, *CV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00009041 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
9042 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009043
Nate Begemancc66cdd2009-09-25 06:05:26 +00009044 // If they have a same base address then check to see if they overlap.
9045 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009046 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009047
Owen Anderson4a9f1502010-09-20 20:39:59 +00009048 // It is possible for different frame indices to alias each other, mostly
9049 // when tail call optimization reuses return address slots for arguments.
9050 // To catch this case, look up the actual index of frame indices to compute
9051 // the real alias relationship.
9052 if (isFrameIndex1 && isFrameIndex2) {
9053 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9054 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
9055 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
9056 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
9057 }
9058
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009059 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00009060 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009061 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
9062 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00009063
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009064 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
9065 // compared to the size and offset of the access, we may be able to prove they
9066 // do not alias. This check is conservative for now to catch cases created by
9067 // splitting vector types.
9068 if ((SrcValueAlign1 == SrcValueAlign2) &&
9069 (SrcValueOffset1 != SrcValueOffset2) &&
9070 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
9071 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
9072 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009073
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009074 // There is no overlap between these relatively aligned accesses of similar
9075 // size, return no alias.
9076 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
9077 return false;
9078 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009079
Jim Laskey07a27092006-10-18 19:08:31 +00009080 if (CombinerGlobalAA) {
9081 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00009082 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
9083 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
9084 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00009085 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009086 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
9087 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00009088 if (AAResult == AliasAnalysis::NoAlias)
9089 return false;
9090 }
Jim Laskey096c22e2006-10-18 12:29:57 +00009091
9092 // Otherwise we have to assume they alias.
9093 return true;
Jim Laskey71382342006-10-07 23:37:56 +00009094}
9095
9096/// FindAliasInfo - Extracts the relevant alias information from the memory
9097/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00009098bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00009099 SDValue &Ptr, int64_t &Size,
9100 const Value *&SrcValue,
9101 int &SrcValueOffset,
9102 unsigned &SrcValueAlign,
9103 const MDNode *&TBAAInfo) const {
9104 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
9105
9106 Ptr = LS->getBasePtr();
9107 Size = LS->getMemoryVT().getSizeInBits() >> 3;
9108 SrcValue = LS->getSrcValue();
9109 SrcValueOffset = LS->getSrcValueOffset();
9110 SrcValueAlign = LS->getOriginalAlignment();
9111 TBAAInfo = LS->getTBAAInfo();
9112 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00009113}
9114
Jim Laskey6ff23e52006-10-04 16:53:27 +00009115/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
9116/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00009117void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
9118 SmallVector<SDValue, 8> &Aliases) {
9119 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009120 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00009121
Jim Laskey279f0532006-09-25 16:29:54 +00009122 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00009123 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009124 int64_t Size;
9125 const Value *SrcValue;
9126 int SrcValueOffset;
9127 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009128 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009129 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009130 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00009131
Jim Laskey6ff23e52006-10-04 16:53:27 +00009132 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00009133 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00009134 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009135
Jim Laskeybc588b82006-10-05 15:07:25 +00009136 // Look at each chain and determine if it is an alias. If so, add it to the
9137 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00009138 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00009139 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00009140 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00009141 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009142
9143 // For TokenFactor nodes, look at each operand and only continue up the
9144 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00009145 // find more and revert to original chain since the xform is unlikely to be
9146 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009147 //
9148 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00009149 // chain we found before we hit a tokenfactor rather than the original
9150 // chain.
9151 if (Depth > 6 || Aliases.size() == 2) {
9152 Aliases.clear();
9153 Aliases.push_back(OriginalChain);
9154 break;
9155 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009156
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009157 // Don't bother if we've been before.
9158 if (!Visited.insert(Chain.getNode()))
9159 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00009160
Jim Laskeybc588b82006-10-05 15:07:25 +00009161 switch (Chain.getOpcode()) {
9162 case ISD::EntryToken:
9163 // Entry token is ideal chain operand, but handled in FindBetterChain.
9164 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00009165
Jim Laskeybc588b82006-10-05 15:07:25 +00009166 case ISD::LOAD:
9167 case ISD::STORE: {
9168 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00009169 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009170 int64_t OpSize;
9171 const Value *OpSrcValue;
9172 int OpSrcValueOffset;
9173 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009174 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00009175 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009176 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009177 OpSrcValueAlign,
9178 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00009179
Jim Laskeybc588b82006-10-05 15:07:25 +00009180 // If chain is alias then stop here.
9181 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009182 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009183 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009184 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009185 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00009186 Aliases.push_back(Chain);
9187 } else {
9188 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00009189 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00009190 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00009191 }
Jim Laskeybc588b82006-10-05 15:07:25 +00009192 break;
9193 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009194
Jim Laskeybc588b82006-10-05 15:07:25 +00009195 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009196 // We have to check each of the operands of the token factor for "small"
9197 // token factors, so we queue them up. Adding the operands to the queue
9198 // (stack) in reverse order maintains the original order and increases the
9199 // likelihood that getNode will find a matching token factor (CSE.)
9200 if (Chain.getNumOperands() > 16) {
9201 Aliases.push_back(Chain);
9202 break;
9203 }
Jim Laskeybc588b82006-10-05 15:07:25 +00009204 for (unsigned n = Chain.getNumOperands(); n;)
9205 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00009206 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00009207 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00009208
Jim Laskeybc588b82006-10-05 15:07:25 +00009209 default:
9210 // For all other instructions we will just have to take what we can get.
9211 Aliases.push_back(Chain);
9212 break;
Jim Laskey279f0532006-09-25 16:29:54 +00009213 }
9214 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00009215}
9216
9217/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
9218/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00009219SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
9220 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00009221
Jim Laskey6ff23e52006-10-04 16:53:27 +00009222 // Accumulate all the aliases to this node.
9223 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00009224
Dan Gohman71dc7c92011-05-17 22:20:36 +00009225 // If no operands then chain to entry token.
9226 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00009227 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00009228
9229 // If a single operand then chain to it. We don't need to revisit it.
9230 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00009231 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009232
Jim Laskey6ff23e52006-10-04 16:53:27 +00009233 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009234 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009235 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00009236}
9237
Nate Begeman1d4d4142005-09-01 00:19:25 +00009238// SelectionDAG::Combine - This is the entry point for the file.
9239//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00009240void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00009241 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00009242 /// run - This is the main entry point to this class.
9243 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00009244 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00009245}