blob: 091aa7288ffdbc413371573776fc1f4c879e78dc [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"
Micah Villmow3574eca2012-10-08 16:38:25 +000026#include "llvm/DataLayout.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
Nadav Rotemc653de62012-10-03 16:11:15 +0000304 /// Merge consecutive store operations into a wide store.
305 /// This optimization uses wide integers or vectors when possible.
306 /// \return True if some memory operations were changed.
307 bool MergeConsecutiveStores(StoreSDNode *N);
308
Chris Lattner2392ae72010-04-15 04:48:01 +0000309 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000310 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000311 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000312 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000313
Nate Begeman1d4d4142005-09-01 00:19:25 +0000314 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000315 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000316
Chris Lattner2392ae72010-04-15 04:48:01 +0000317 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000318
Chris Lattner2392ae72010-04-15 04:48:01 +0000319 /// getShiftAmountTy - Returns a type large enough to hold any valid
320 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000321 EVT getShiftAmountTy(EVT LHSTy) {
322 return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000323 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000324
Chris Lattner2392ae72010-04-15 04:48:01 +0000325 /// isTypeLegal - This method returns true if we are running before type
326 /// legalization or if the specified VT is legal.
327 bool isTypeLegal(const EVT &VT) {
328 if (!LegalTypes) return true;
329 return TLI.isTypeLegal(VT);
330 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000331 };
332}
333
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000334
335namespace {
336/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
337/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000338class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000339 DAGCombiner &DC;
340public:
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000341 explicit WorkListRemover(DAGCombiner &dc)
342 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000343
Duncan Sandsedfcf592008-06-11 11:42:12 +0000344 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000345 DC.removeFromWorkList(N);
346 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000347};
348}
349
Chris Lattner24664722006-03-01 04:53:38 +0000350//===----------------------------------------------------------------------===//
351// TargetLowering::DAGCombinerInfo implementation
352//===----------------------------------------------------------------------===//
353
354void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
355 ((DAGCombiner*)DC)->AddToWorkList(N);
356}
357
Cameron Zwariched3caf92011-04-02 02:40:26 +0000358void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
359 ((DAGCombiner*)DC)->removeFromWorkList(N);
360}
361
Dan Gohman475871a2008-07-27 21:46:04 +0000362SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000363CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
364 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000365}
366
Dan Gohman475871a2008-07-27 21:46:04 +0000367SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000368CombineTo(SDNode *N, SDValue Res, bool AddTo) {
369 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000370}
371
372
Dan Gohman475871a2008-07-27 21:46:04 +0000373SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000374CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
375 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000376}
377
Dan Gohmane5af2d32009-01-29 01:59:02 +0000378void TargetLowering::DAGCombinerInfo::
379CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
380 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
381}
Chris Lattner24664722006-03-01 04:53:38 +0000382
Chris Lattner24664722006-03-01 04:53:38 +0000383//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000384// Helper Functions
385//===----------------------------------------------------------------------===//
386
387/// isNegatibleForFree - Return 1 if we can compute the negated form of the
388/// specified expression for the same cost as the expression itself, or 2 if we
389/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000390static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000391 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000392 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000393 unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000394 // No compile time optimizations on this type.
Owen Anderson825b72b2009-08-11 20:47:22 +0000395 if (Op.getValueType() == MVT::ppcf128)
Dale Johannesendb44bf82007-10-16 23:38:29 +0000396 return 0;
397
Chris Lattner29446522007-05-14 22:04:50 +0000398 // fneg is removable even if it has multiple uses.
399 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000400
Chris Lattner29446522007-05-14 22:04:50 +0000401 // Don't allow anything with multiple uses.
402 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000403
Chris Lattner3adf9512007-05-25 02:19:06 +0000404 // Don't recurse exponentially.
405 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000406
Chris Lattner29446522007-05-14 22:04:50 +0000407 switch (Op.getOpcode()) {
408 default: return false;
409 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000410 // Don't invert constant FP values after legalize. The negated constant
411 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000412 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000413 case ISD::FADD:
414 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000415 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000416
Owen Andersonafd3d562012-03-06 00:29:31 +0000417 // After operation legalization, it might not be legal to create new FSUBs.
418 if (LegalOperations &&
419 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
420 return 0;
421
Craig Topper956342b2012-09-09 22:58:45 +0000422 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000423 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
424 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000425 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000426 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000427 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000428 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000429 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000430 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000431 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000432
Bill Wendlingd34470c2009-01-30 23:10:18 +0000433 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000434 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000435
Chris Lattner29446522007-05-14 22:04:50 +0000436 case ISD::FMUL:
437 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000438 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000439
Bill Wendlingd34470c2009-01-30 23:10:18 +0000440 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000441 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
442 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000443 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000444
Owen Andersonafd3d562012-03-06 00:29:31 +0000445 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000446 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000447
Chris Lattner29446522007-05-14 22:04:50 +0000448 case ISD::FP_EXTEND:
449 case ISD::FP_ROUND:
450 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000451 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000452 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000453 }
454}
455
456/// GetNegatedExpression - If isNegatibleForFree returns true, this function
457/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000458static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000459 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000460 // fneg is removable even if it has multiple uses.
461 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000462
Chris Lattner29446522007-05-14 22:04:50 +0000463 // Don't allow anything with multiple uses.
464 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000465
Chris Lattner3adf9512007-05-25 02:19:06 +0000466 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000467 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000468 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000469 case ISD::ConstantFP: {
470 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
471 V.changeSign();
472 return DAG.getConstantFP(V, Op.getValueType());
473 }
Chris Lattner29446522007-05-14 22:04:50 +0000474 case ISD::FADD:
475 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000476 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000477
Bill Wendlingd34470c2009-01-30 23:10:18 +0000478 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000479 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000480 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000481 &DAG.getTarget().Options, Depth+1))
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(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000484 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000485 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000486 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Bill Wendling35247c32009-01-30 00:45:56 +0000487 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000488 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000489 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000490 Op.getOperand(0));
491 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000492 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000493 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000494
Bill Wendlingd34470c2009-01-30 23:10:18 +0000495 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000496 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000497 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000498 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000499
Bill Wendlingd34470c2009-01-30 23:10:18 +0000500 // fold (fneg (fsub A, B)) -> (fsub B, A)
Bill Wendling35247c32009-01-30 00:45:56 +0000501 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
502 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000503
Chris Lattner29446522007-05-14 22:04:50 +0000504 case ISD::FMUL:
505 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000506 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000507
Bill Wendlingd34470c2009-01-30 23:10:18 +0000508 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000509 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000510 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000511 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000512 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000513 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000514 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000515 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000516
Bill Wendlingd34470c2009-01-30 23:10:18 +0000517 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Bill Wendling35247c32009-01-30 00:45:56 +0000518 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000519 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000520 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000521 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000522
Chris Lattner29446522007-05-14 22:04:50 +0000523 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000524 case ISD::FSIN:
Bill Wendling35247c32009-01-30 00:45:56 +0000525 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000526 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000527 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000528 case ISD::FP_ROUND:
Bill Wendling35247c32009-01-30 00:45:56 +0000529 return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000530 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000531 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000532 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000533 }
534}
Chris Lattner24664722006-03-01 04:53:38 +0000535
536
Nate Begeman4ebd8052005-09-01 23:24:04 +0000537// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
538// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000539// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000540// nodes based on the type of node we are checking. This simplifies life a
541// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000542static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
543 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000544 if (N.getOpcode() == ISD::SETCC) {
545 LHS = N.getOperand(0);
546 RHS = N.getOperand(1);
547 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000548 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000549 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000550 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000551 N.getOperand(2).getOpcode() == ISD::Constant &&
552 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000553 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000554 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
555 LHS = N.getOperand(0);
556 RHS = N.getOperand(1);
557 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000558 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000559 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000560 return false;
561}
562
Nate Begeman99801192005-09-07 23:25:52 +0000563// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
564// one use. If this is true, it allows the users to invert the operation for
565// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000566static bool isOneUseSetCC(SDValue N) {
567 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000568 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000569 return true;
570 return false;
571}
572
Bill Wendling35247c32009-01-30 00:45:56 +0000573SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
574 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000575 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000576 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
577 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000578 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000579 SDValue OpNode =
580 DAG.FoldConstantArithmetic(Opc, VT,
581 cast<ConstantSDNode>(N0.getOperand(1)),
582 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000583 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000584 }
585 if (N0.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000586 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendling35247c32009-01-30 00:45:56 +0000587 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
588 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000589 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000590 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000591 }
592 }
Bill Wendling35247c32009-01-30 00:45:56 +0000593
Nate Begemancd4d58c2006-02-03 06:46:56 +0000594 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
595 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000596 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000597 SDValue OpNode =
598 DAG.FoldConstantArithmetic(Opc, VT,
599 cast<ConstantSDNode>(N1.getOperand(1)),
600 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000601 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000602 }
603 if (N1.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000604 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendlingd69c3142009-01-30 02:23:43 +0000605 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000606 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000607 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000608 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000609 }
610 }
Bill Wendling35247c32009-01-30 00:45:56 +0000611
Dan Gohman475871a2008-07-27 21:46:04 +0000612 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000613}
614
Dan Gohman475871a2008-07-27 21:46:04 +0000615SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
616 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000617 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
618 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000619 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000620 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000621 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000622 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000623 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000624 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000625 assert((!To[i].getNode() ||
626 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000627 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000628 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000629 DAG.ReplaceAllUsesWith(N, To);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000630 if (AddTo) {
631 // Push the new nodes and any users onto the worklist
632 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000633 if (To[i].getNode()) {
634 AddToWorkList(To[i].getNode());
635 AddUsersToWorkList(To[i].getNode());
636 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000637 }
638 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000639
Dan Gohmandbe664a2009-01-19 21:44:21 +0000640 // Finally, if the node is now dead, remove it from the graph. The node
641 // may not be dead if the replacement process recursively simplified to
642 // something else needing this node.
643 if (N->use_empty()) {
644 // Nodes can be reintroduced into the worklist. Make sure we do not
645 // process a node that has been replaced.
646 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000647
Dan Gohmandbe664a2009-01-19 21:44:21 +0000648 // Finally, since the node is now dead, remove it from the graph.
649 DAG.DeleteNode(N);
650 }
Dan Gohman475871a2008-07-27 21:46:04 +0000651 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000652}
653
Evan Chenge5b51ac2010-04-17 06:13:15 +0000654void DAGCombiner::
655CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000656 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000657 // are deleted, make sure to remove them from our worklist.
658 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000659 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000660
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000661 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000662 AddToWorkList(TLO.New.getNode());
663 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000664
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000665 // Finally, if the node is now dead, remove it from the graph. The node
666 // may not be dead if the replacement process recursively simplified to
667 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000668 if (TLO.Old.getNode()->use_empty()) {
669 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000670
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000671 // If the operands of this node are only used by the node, they will now
672 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000673 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
674 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
675 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000676
Gabor Greifba36cb52008-08-28 21:40:38 +0000677 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000678 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000679}
680
681/// SimplifyDemandedBits - Check the specified integer node value to see if
682/// it can be simplified or if things it uses can be simplified by bit
683/// propagation. If so, return true.
684bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000685 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000686 APInt KnownZero, KnownOne;
687 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
688 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000689
Dan Gohmane5af2d32009-01-29 01:59:02 +0000690 // Revisit the node.
691 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000692
Dan Gohmane5af2d32009-01-29 01:59:02 +0000693 // Replace the old value with the new one.
694 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000695 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000696 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000697 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000698 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000699 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000700
Dan Gohmane5af2d32009-01-29 01:59:02 +0000701 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000702 return true;
703}
704
Evan Cheng95c57ea2010-04-24 04:43:44 +0000705void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
706 DebugLoc dl = Load->getDebugLoc();
707 EVT VT = Load->getValueType(0);
708 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000709
Evan Cheng95c57ea2010-04-24 04:43:44 +0000710 DEBUG(dbgs() << "\nReplacing.9 ";
711 Load->dump(&DAG);
712 dbgs() << "\nWith: ";
713 Trunc.getNode()->dump(&DAG);
714 dbgs() << '\n');
715 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000716 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
717 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
Evan Cheng95c57ea2010-04-24 04:43:44 +0000718 removeFromWorkList(Load);
719 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000720 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000721}
722
723SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
724 Replace = false;
Evan Cheng4c26e932010-04-19 19:29:22 +0000725 DebugLoc dl = Op.getDebugLoc();
Evan Chenge5b51ac2010-04-17 06:13:15 +0000726 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000727 EVT MemVT = LD->getMemoryVT();
728 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000729 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000730 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000731 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000732 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000733 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000734 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000735 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000736 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000737 LD->isNonTemporal(), LD->getAlignment());
738 }
739
Evan Cheng4c26e932010-04-19 19:29:22 +0000740 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000741 switch (Opc) {
742 default: break;
743 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000744 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000745 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000746 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000747 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000748 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000749 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000750 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000751 case ISD::Constant: {
752 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000753 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000754 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000755 }
Evan Chengcaf77402010-04-23 19:10:30 +0000756 }
757
758 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000759 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000760 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000761}
762
Evan Cheng95c57ea2010-04-24 04:43:44 +0000763SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000764 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
765 return SDValue();
766 EVT OldVT = Op.getValueType();
767 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000768 bool Replace = false;
769 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
770 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000771 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000772 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000773
774 if (Replace)
775 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
776 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000777 DAG.getValueType(OldVT));
778}
779
Evan Cheng95c57ea2010-04-24 04:43:44 +0000780SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000781 EVT OldVT = Op.getValueType();
782 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000783 bool Replace = false;
784 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
785 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000786 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000787 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000788
789 if (Replace)
790 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
791 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000792}
793
Evan Cheng64b7bf72010-04-16 06:14:10 +0000794/// PromoteIntBinOp - Promote the specified integer binary operation if the
795/// target indicates it is beneficial. e.g. On x86, it's usually better to
796/// promote i16 operations to i32 since i16 instructions are longer.
797SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
798 if (!LegalOperations)
799 return SDValue();
800
801 EVT VT = Op.getValueType();
802 if (VT.isVector() || !VT.isInteger())
803 return SDValue();
804
Evan Chenge5b51ac2010-04-17 06:13:15 +0000805 // If operation type is 'undesirable', e.g. i16 on x86, consider
806 // promoting it.
807 unsigned Opc = Op.getOpcode();
808 if (TLI.isTypeDesirableForOp(Opc, VT))
809 return SDValue();
810
Evan Cheng64b7bf72010-04-16 06:14:10 +0000811 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000812 // Consult target whether it is a good idea to promote this operation and
813 // what's the right type to promote it to.
814 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000815 assert(PVT != VT && "Don't know what type to promote to!");
816
Evan Cheng95c57ea2010-04-24 04:43:44 +0000817 bool Replace0 = false;
818 SDValue N0 = Op.getOperand(0);
819 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
820 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000821 return SDValue();
822
Evan Cheng95c57ea2010-04-24 04:43:44 +0000823 bool Replace1 = false;
824 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000825 SDValue NN1;
826 if (N0 == N1)
827 NN1 = NN0;
828 else {
829 NN1 = PromoteOperand(N1, PVT, Replace1);
830 if (NN1.getNode() == 0)
831 return SDValue();
832 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000833
Evan Cheng95c57ea2010-04-24 04:43:44 +0000834 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000835 if (NN1.getNode())
836 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000837
838 if (Replace0)
839 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
840 if (Replace1)
841 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000842
Evan Chengac7eae52010-04-27 19:48:13 +0000843 DEBUG(dbgs() << "\nPromoting ";
844 Op.getNode()->dump(&DAG));
Evan Cheng07c4e102010-04-22 20:19:46 +0000845 DebugLoc dl = Op.getDebugLoc();
846 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000847 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000848 }
849 return SDValue();
850}
851
852/// PromoteIntShiftOp - Promote the specified integer shift operation if the
853/// target indicates it is beneficial. e.g. On x86, it's usually better to
854/// promote i16 operations to i32 since i16 instructions are longer.
855SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
856 if (!LegalOperations)
857 return SDValue();
858
859 EVT VT = Op.getValueType();
860 if (VT.isVector() || !VT.isInteger())
861 return SDValue();
862
863 // If operation type is 'undesirable', e.g. i16 on x86, consider
864 // promoting it.
865 unsigned Opc = Op.getOpcode();
866 if (TLI.isTypeDesirableForOp(Opc, VT))
867 return SDValue();
868
869 EVT PVT = VT;
870 // Consult target whether it is a good idea to promote this operation and
871 // what's the right type to promote it to.
872 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
873 assert(PVT != VT && "Don't know what type to promote to!");
874
Evan Cheng95c57ea2010-04-24 04:43:44 +0000875 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000876 SDValue N0 = Op.getOperand(0);
877 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000878 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000879 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000880 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000881 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000882 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000883 if (N0.getNode() == 0)
884 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000885
Evan Chenge5b51ac2010-04-17 06:13:15 +0000886 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000887 if (Replace)
888 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000889
Evan Chengac7eae52010-04-27 19:48:13 +0000890 DEBUG(dbgs() << "\nPromoting ";
891 Op.getNode()->dump(&DAG));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000892 DebugLoc dl = Op.getDebugLoc();
893 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000894 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000895 }
896 return SDValue();
897}
898
Evan Cheng4c26e932010-04-19 19:29:22 +0000899SDValue DAGCombiner::PromoteExtend(SDValue Op) {
900 if (!LegalOperations)
901 return SDValue();
902
903 EVT VT = Op.getValueType();
904 if (VT.isVector() || !VT.isInteger())
905 return SDValue();
906
907 // If operation type is 'undesirable', e.g. i16 on x86, consider
908 // promoting it.
909 unsigned Opc = Op.getOpcode();
910 if (TLI.isTypeDesirableForOp(Opc, VT))
911 return SDValue();
912
913 EVT PVT = VT;
914 // Consult target whether it is a good idea to promote this operation and
915 // what's the right type to promote it to.
916 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
917 assert(PVT != VT && "Don't know what type to promote to!");
918 // fold (aext (aext x)) -> (aext x)
919 // fold (aext (zext x)) -> (zext x)
920 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000921 DEBUG(dbgs() << "\nPromoting ";
922 Op.getNode()->dump(&DAG));
Evan Cheng4c26e932010-04-19 19:29:22 +0000923 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
924 }
925 return SDValue();
926}
927
928bool DAGCombiner::PromoteLoad(SDValue Op) {
929 if (!LegalOperations)
930 return false;
931
932 EVT VT = Op.getValueType();
933 if (VT.isVector() || !VT.isInteger())
934 return false;
935
936 // If operation type is 'undesirable', e.g. i16 on x86, consider
937 // promoting it.
938 unsigned Opc = Op.getOpcode();
939 if (TLI.isTypeDesirableForOp(Opc, VT))
940 return false;
941
942 EVT PVT = VT;
943 // Consult target whether it is a good idea to promote this operation and
944 // what's the right type to promote it to.
945 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
946 assert(PVT != VT && "Don't know what type to promote to!");
947
948 DebugLoc dl = Op.getDebugLoc();
949 SDNode *N = Op.getNode();
950 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000951 EVT MemVT = LD->getMemoryVT();
952 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000953 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000954 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000955 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000956 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000957 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000958 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000959 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000960 LD->isNonTemporal(), LD->getAlignment());
961 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
962
Evan Cheng95c57ea2010-04-24 04:43:44 +0000963 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000964 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000965 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000966 Result.getNode()->dump(&DAG);
967 dbgs() << '\n');
968 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000969 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
970 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
Evan Cheng4c26e932010-04-19 19:29:22 +0000971 removeFromWorkList(N);
972 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000973 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000974 return true;
975 }
976 return false;
977}
978
Evan Chenge5b51ac2010-04-17 06:13:15 +0000979
Chris Lattner29446522007-05-14 22:04:50 +0000980//===----------------------------------------------------------------------===//
981// Main DAG Combiner implementation
982//===----------------------------------------------------------------------===//
983
Duncan Sands25cf2272008-11-24 14:53:14 +0000984void DAGCombiner::Run(CombineLevel AtLevel) {
985 // set the instance variables, so that the various visit routines may use it.
986 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +0000987 LegalOperations = Level >= AfterLegalizeVectorOps;
988 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +0000989
Evan Cheng17a568b2008-08-29 22:21:44 +0000990 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +0000991 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
992 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +0000993 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +0000994
Evan Cheng17a568b2008-08-29 22:21:44 +0000995 // Create a dummy node (which is not added to allnodes), that adds a reference
996 // to the root node, preventing it from being deleted, and tracking any
997 // changes of the root.
998 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +0000999
Jim Laskey26f7fa72006-10-17 19:33:52 +00001000 // The root of the dag may dangle to deleted nodes until the dag combiner is
1001 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +00001002 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00001003
James Molloy6660c052012-02-16 09:17:04 +00001004 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +00001005 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +00001006 while (!WorkListContents.empty()) {
1007 SDNode *N;
1008 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1009 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1010 // worklist *should* contain, and check the node we want to visit is should
1011 // actually be visited.
1012 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001013 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001014 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001015
Evan Cheng17a568b2008-08-29 22:21:44 +00001016 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1017 // N is deleted from the DAG, since they too may now be dead or may have a
1018 // reduced number of uses, allowing other xforms.
1019 if (N->use_empty() && N != &Dummy) {
1020 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1021 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001022
Evan Cheng17a568b2008-08-29 22:21:44 +00001023 DAG.DeleteNode(N);
1024 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001025 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001026
Evan Cheng17a568b2008-08-29 22:21:44 +00001027 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001028
Evan Cheng17a568b2008-08-29 22:21:44 +00001029 if (RV.getNode() == 0)
1030 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001031
Evan Cheng17a568b2008-08-29 22:21:44 +00001032 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001033
Evan Cheng17a568b2008-08-29 22:21:44 +00001034 // If we get back the same node we passed in, rather than a new node or
1035 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001036 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001037 // mechanics for us, we have no work to do in this case.
1038 if (RV.getNode() == N)
1039 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001040
Evan Cheng17a568b2008-08-29 22:21:44 +00001041 assert(N->getOpcode() != ISD::DELETED_NODE &&
1042 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1043 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001044
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001045 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001046 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001047 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001048 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001049 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001050
Devang Patel9728ea22011-05-23 22:04:42 +00001051 // Transfer debug value.
1052 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001053 WorkListRemover DeadNodes(*this);
1054 if (N->getNumValues() == RV.getNode()->getNumValues())
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001055 DAG.ReplaceAllUsesWith(N, RV.getNode());
Evan Cheng17a568b2008-08-29 22:21:44 +00001056 else {
1057 assert(N->getValueType(0) == RV.getValueType() &&
1058 N->getNumValues() == 1 && "Type mismatch");
1059 SDValue OpV = RV;
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001060 DAG.ReplaceAllUsesWith(N, &OpV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001061 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001062
Evan Cheng17a568b2008-08-29 22:21:44 +00001063 // Push the new node and any users onto the worklist
1064 AddToWorkList(RV.getNode());
1065 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001066
Evan Cheng17a568b2008-08-29 22:21:44 +00001067 // Add any uses of the old node to the worklist in case this node is the
1068 // last one that uses them. They may become dead after this node is
1069 // deleted.
1070 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1071 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001072
Dan Gohmandbe664a2009-01-19 21:44:21 +00001073 // Finally, if the node is now dead, remove it from the graph. The node
1074 // may not be dead if the replacement process recursively simplified to
1075 // something else needing this node.
1076 if (N->use_empty()) {
1077 // Nodes can be reintroduced into the worklist. Make sure we do not
1078 // process a node that has been replaced.
1079 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001080
Dan Gohmandbe664a2009-01-19 21:44:21 +00001081 // Finally, since the node is now dead, remove it from the graph.
1082 DAG.DeleteNode(N);
1083 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001084 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001085
Chris Lattner95038592005-10-05 06:35:28 +00001086 // If the root changed (e.g. it was a dead load, update the root).
1087 DAG.setRoot(Dummy.getValue());
Hal Finkel31490ba2012-04-16 03:33:22 +00001088 DAG.RemoveDeadNodes();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001089}
1090
Dan Gohman475871a2008-07-27 21:46:04 +00001091SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001092 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001093 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001094 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001095 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001096 case ISD::ADD: return visitADD(N);
1097 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001098 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001099 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001100 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001101 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001102 case ISD::MUL: return visitMUL(N);
1103 case ISD::SDIV: return visitSDIV(N);
1104 case ISD::UDIV: return visitUDIV(N);
1105 case ISD::SREM: return visitSREM(N);
1106 case ISD::UREM: return visitUREM(N);
1107 case ISD::MULHU: return visitMULHU(N);
1108 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001109 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1110 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001111 case ISD::SMULO: return visitSMULO(N);
1112 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001113 case ISD::SDIVREM: return visitSDIVREM(N);
1114 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001115 case ISD::AND: return visitAND(N);
1116 case ISD::OR: return visitOR(N);
1117 case ISD::XOR: return visitXOR(N);
1118 case ISD::SHL: return visitSHL(N);
1119 case ISD::SRA: return visitSRA(N);
1120 case ISD::SRL: return visitSRL(N);
1121 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001122 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001123 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001124 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001125 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001126 case ISD::SELECT: return visitSELECT(N);
1127 case ISD::SELECT_CC: return visitSELECT_CC(N);
1128 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001129 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1130 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001131 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001132 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1133 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001134 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001135 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001136 case ISD::FADD: return visitFADD(N);
1137 case ISD::FSUB: return visitFSUB(N);
1138 case ISD::FMUL: return visitFMUL(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00001139 case ISD::FMA: return visitFMA(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001140 case ISD::FDIV: return visitFDIV(N);
1141 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001142 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001143 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1144 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1145 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1146 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1147 case ISD::FP_ROUND: return visitFP_ROUND(N);
1148 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1149 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1150 case ISD::FNEG: return visitFNEG(N);
1151 case ISD::FABS: return visitFABS(N);
Owen Anderson7c626d32012-08-13 23:32:49 +00001152 case ISD::FFLOOR: return visitFFLOOR(N);
1153 case ISD::FCEIL: return visitFCEIL(N);
1154 case ISD::FTRUNC: return visitFTRUNC(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001155 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001156 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001157 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001158 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001159 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001160 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001161 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1162 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001163 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001164 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001165 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001166 }
Dan Gohman475871a2008-07-27 21:46:04 +00001167 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001168}
1169
Dan Gohman475871a2008-07-27 21:46:04 +00001170SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001171 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001172
1173 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001174 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001175 assert(N->getOpcode() != ISD::DELETED_NODE &&
1176 "Node was deleted but visit returned NULL!");
1177
1178 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1179 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1180
1181 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001182 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001183 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001184
1185 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1186 }
1187 }
1188
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001189 // If nothing happened still, try promoting the operation.
1190 if (RV.getNode() == 0) {
1191 switch (N->getOpcode()) {
1192 default: break;
1193 case ISD::ADD:
1194 case ISD::SUB:
1195 case ISD::MUL:
1196 case ISD::AND:
1197 case ISD::OR:
1198 case ISD::XOR:
1199 RV = PromoteIntBinOp(SDValue(N, 0));
1200 break;
1201 case ISD::SHL:
1202 case ISD::SRA:
1203 case ISD::SRL:
1204 RV = PromoteIntShiftOp(SDValue(N, 0));
1205 break;
1206 case ISD::SIGN_EXTEND:
1207 case ISD::ZERO_EXTEND:
1208 case ISD::ANY_EXTEND:
1209 RV = PromoteExtend(SDValue(N, 0));
1210 break;
1211 case ISD::LOAD:
1212 if (PromoteLoad(SDValue(N, 0)))
1213 RV = SDValue(N, 0);
1214 break;
1215 }
1216 }
1217
Scott Michelfdc40a02009-02-17 22:15:04 +00001218 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001219 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001220 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001221 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1222 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001223 SDValue N0 = N->getOperand(0);
1224 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001225
Evan Cheng08b11732008-03-22 01:55:50 +00001226 // Constant operands are canonicalized to RHS.
1227 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001228 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001229 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1230 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001231 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001232 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001233 }
1234 }
1235
Dan Gohman389079b2007-10-08 17:57:15 +00001236 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001237}
Dan Gohman389079b2007-10-08 17:57:15 +00001238
Chris Lattner6270f682006-10-08 22:57:01 +00001239/// getInputChainForNode - Given a node, return its input chain if it has one,
1240/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001241static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001242 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001243 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001244 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001245 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001246 return N->getOperand(NumOps-1);
1247 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001248 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001249 return N->getOperand(i);
1250 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001251 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001252}
1253
Dan Gohman475871a2008-07-27 21:46:04 +00001254SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001255 // If N has two operands, where one has an input chain equal to the other,
1256 // the 'other' chain is redundant.
1257 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001258 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001259 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001260 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001261 return N->getOperand(1);
1262 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001263
Chris Lattnerc76d4412007-05-16 06:37:59 +00001264 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001265 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001266 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001267 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001268
Jim Laskey6ff23e52006-10-04 16:53:27 +00001269 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001270 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001271
Jim Laskey71382342006-10-07 23:37:56 +00001272 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001273 // encountered.
1274 for (unsigned i = 0; i < TFs.size(); ++i) {
1275 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001276
Jim Laskey6ff23e52006-10-04 16:53:27 +00001277 // Check each of the operands.
1278 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001279 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001280
Jim Laskey6ff23e52006-10-04 16:53:27 +00001281 switch (Op.getOpcode()) {
1282 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001283 // Entry tokens don't need to be added to the list. They are
1284 // rededundant.
1285 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001286 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001287
Jim Laskey6ff23e52006-10-04 16:53:27 +00001288 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001289 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001290 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001291 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001292 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001293 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001294 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001295 Changed = true;
1296 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001297 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001298 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001299
Jim Laskey6ff23e52006-10-04 16:53:27 +00001300 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001301 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001302 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001303 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001304 else
1305 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001306 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001307 }
1308 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001309 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001310
Dan Gohman475871a2008-07-27 21:46:04 +00001311 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001312
1313 // If we've change things around then replace token factor.
1314 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001315 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001316 // The entry token is the only possible outcome.
1317 Result = DAG.getEntryNode();
1318 } else {
1319 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001320 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001321 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001322 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001323
Jim Laskey274062c2006-10-13 23:32:28 +00001324 // Don't add users to work list.
1325 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001326 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001327
Jim Laskey6ff23e52006-10-04 16:53:27 +00001328 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001329}
1330
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001331/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001332SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001333 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001334 // Replacing results may cause a different MERGE_VALUES to suddenly
1335 // be CSE'd with N, and carry its uses with it. Iterate until no
1336 // uses remain, to ensure that the node can be safely deleted.
Pete Cooper3affd9e2012-06-20 19:35:43 +00001337 // First add the users of this node to the work list so that they
1338 // can be tried again once they have new operands.
1339 AddUsersToWorkList(N);
Dan Gohman00edf392009-08-10 23:43:19 +00001340 do {
1341 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001342 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
Dan Gohman00edf392009-08-10 23:43:19 +00001343 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001344 removeFromWorkList(N);
1345 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001346 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001347}
1348
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001349static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001350SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1351 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001352 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001353 SDValue N00 = N0.getOperand(0);
1354 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001355 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001356
Gabor Greifba36cb52008-08-28 21:40:38 +00001357 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001358 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001359 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1360 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1361 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1362 N00.getOperand(0), N01),
1363 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1364 N00.getOperand(1), N01));
1365 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001366 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001367
Dan Gohman475871a2008-07-27 21:46:04 +00001368 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001369}
1370
Dan Gohman475871a2008-07-27 21:46:04 +00001371SDValue DAGCombiner::visitADD(SDNode *N) {
1372 SDValue N0 = N->getOperand(0);
1373 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001374 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1375 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001376 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001377
1378 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001379 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001380 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001381 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001382 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001383
Dan Gohman613e0d82007-07-03 14:03:57 +00001384 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001385 if (N0.getOpcode() == ISD::UNDEF)
1386 return N0;
1387 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001388 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001389 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001390 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001391 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001392 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001393 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001394 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001395 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001396 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001397 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001398 // fold (add Sym, c) -> Sym+c
1399 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001400 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001401 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001402 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001403 GA->getOffset() +
1404 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001405 // fold ((c1-A)+c2) -> (c1+c2)-A
1406 if (N1C && N0.getOpcode() == ISD::SUB)
1407 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001408 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001409 DAG.getConstant(N1C->getAPIntValue()+
1410 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001411 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001412 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001413 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001414 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001415 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001416 // fold ((0-A) + B) -> B-A
1417 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1418 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001419 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001420 // fold (A + (0-B)) -> A-B
1421 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1422 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001423 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001424 // fold (A+(B-A)) -> B
1425 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001426 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001427 // fold ((B-A)+A) -> B
1428 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1429 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001430 // fold (A+(B-(A+C))) 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(0))
1433 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001434 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001435 // fold (A+(B-(C+A))) to (B-C)
1436 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001437 N0 == N1.getOperand(1).getOperand(1))
1438 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001439 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001440 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001441 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1442 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001443 N0 == N1.getOperand(0).getOperand(1))
1444 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1445 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001446
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001447 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1448 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1449 SDValue N00 = N0.getOperand(0);
1450 SDValue N01 = N0.getOperand(1);
1451 SDValue N10 = N1.getOperand(0);
1452 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001453
1454 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1455 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1456 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1457 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001458 }
Chris Lattner947c2892006-03-13 06:51:27 +00001459
Dan Gohman475871a2008-07-27 21:46:04 +00001460 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1461 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001462
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001463 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001464 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001465 APInt LHSZero, LHSOne;
1466 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001467 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001468
Dan Gohman948d8ea2008-02-20 16:33:30 +00001469 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001470 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001471
Chris Lattner947c2892006-03-13 06:51:27 +00001472 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1473 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001474 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001475 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001476 }
1477 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001478
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001479 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001480 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001481 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001482 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001483 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001484 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001485 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001486 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001487 }
1488
Dan Gohmancd9e1552010-01-19 23:30:49 +00001489 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1490 if (N1.getOpcode() == ISD::SHL &&
1491 N1.getOperand(0).getOpcode() == ISD::SUB)
1492 if (ConstantSDNode *C =
1493 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1494 if (C->getAPIntValue() == 0)
1495 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1496 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1497 N1.getOperand(0).getOperand(1),
1498 N1.getOperand(1)));
1499 if (N0.getOpcode() == ISD::SHL &&
1500 N0.getOperand(0).getOpcode() == ISD::SUB)
1501 if (ConstantSDNode *C =
1502 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1503 if (C->getAPIntValue() == 0)
1504 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1505 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1506 N0.getOperand(0).getOperand(1),
1507 N0.getOperand(1)));
1508
Owen Andersonbc146b02010-09-21 20:42:50 +00001509 if (N1.getOpcode() == ISD::AND) {
1510 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001511 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001512 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1513 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001514
Owen Andersonbc146b02010-09-21 20:42:50 +00001515 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1516 // and similar xforms where the inner op is either ~0 or 0.
1517 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1518 DebugLoc DL = N->getDebugLoc();
1519 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1520 }
1521 }
1522
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001523 // add (sext i1), X -> sub X, (zext i1)
1524 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1525 N0.getOperand(0).getValueType() == MVT::i1 &&
1526 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1527 DebugLoc DL = N->getDebugLoc();
1528 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1529 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1530 }
1531
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001532 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001533}
1534
Dan Gohman475871a2008-07-27 21:46:04 +00001535SDValue DAGCombiner::visitADDC(SDNode *N) {
1536 SDValue N0 = N->getOperand(0);
1537 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001538 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1539 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001540 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001541
Chris Lattner91153682007-03-04 20:03:15 +00001542 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001543 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001544 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001545 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001546 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001547
Chris Lattner91153682007-03-04 20:03:15 +00001548 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001549 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001550 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001551
Chris Lattnerb6541762007-03-04 20:40:38 +00001552 // fold (addc x, 0) -> x + no carry out
1553 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001554 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001555 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001556
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001557 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001558 APInt LHSZero, LHSOne;
1559 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001560 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001561
Dan Gohman948d8ea2008-02-20 16:33:30 +00001562 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001563 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001564
Chris Lattnerb6541762007-03-04 20:40:38 +00001565 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1566 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001567 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendling14036c02009-01-30 02:38:00 +00001568 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001569 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001570 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001571 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001572
Dan Gohman475871a2008-07-27 21:46:04 +00001573 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001574}
1575
Dan Gohman475871a2008-07-27 21:46:04 +00001576SDValue DAGCombiner::visitADDE(SDNode *N) {
1577 SDValue N0 = N->getOperand(0);
1578 SDValue N1 = N->getOperand(1);
1579 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001580 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1581 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001582
Chris Lattner91153682007-03-04 20:03:15 +00001583 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001584 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001585 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1586 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001587
Chris Lattnerb6541762007-03-04 20:40:38 +00001588 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001589 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001590 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001591
Dan Gohman475871a2008-07-27 21:46:04 +00001592 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001593}
1594
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001595// Since it may not be valid to emit a fold to zero for vector initializers
1596// check if we can before folding.
1597static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001598 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001599 if (!VT.isVector()) {
1600 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001601 }
1602 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001603 // Produce a vector of zeros.
1604 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1605 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1606 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1607 &Ops[0], Ops.size());
1608 }
1609 return SDValue();
1610}
1611
Dan Gohman475871a2008-07-27 21:46:04 +00001612SDValue DAGCombiner::visitSUB(SDNode *N) {
1613 SDValue N0 = N->getOperand(0);
1614 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001615 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1616 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001617 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1618 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001619 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001620
Dan Gohman7f321562007-06-25 16:23:39 +00001621 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001622 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001623 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001624 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001625 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001626
Chris Lattner854077d2005-10-17 01:07:11 +00001627 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001628 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001629 if (N0 == N1)
1630 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001631 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001632 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001633 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001634 // fold (sub x, c) -> (add x, -c)
1635 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001636 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001637 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001638 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1639 if (N0C && N0C->isAllOnesValue())
1640 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001641 // fold A-(A-B) -> B
1642 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1643 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001644 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001645 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001646 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001647 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001648 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001649 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001650 // fold C2-(A+C1) -> (C2-C1)-A
1651 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00001652 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(),
1653 VT);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001654 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
Bill Wendling96cb1122012-07-19 00:04:14 +00001655 N1.getOperand(0));
Eric Christopher7332e6e2011-07-14 01:12:15 +00001656 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001657 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001658 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001659 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1660 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001661 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001662 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1663 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001664 // fold ((A+(C+B))-B) -> A+C
1665 if (N0.getOpcode() == ISD::ADD &&
1666 N0.getOperand(1).getOpcode() == ISD::ADD &&
1667 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001668 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1669 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001670 // fold ((A-(B-C))-C) -> A-B
1671 if (N0.getOpcode() == ISD::SUB &&
1672 N0.getOperand(1).getOpcode() == ISD::SUB &&
1673 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001674 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1675 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001676
Dan Gohman613e0d82007-07-03 14:03:57 +00001677 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001678 if (N0.getOpcode() == ISD::UNDEF)
1679 return N0;
1680 if (N1.getOpcode() == ISD::UNDEF)
1681 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001682
Dan Gohman6520e202008-10-18 02:06:02 +00001683 // If the relocation model supports it, consider symbol offsets.
1684 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001685 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001686 // fold (sub Sym, c) -> Sym-c
1687 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001688 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001689 GA->getOffset() -
1690 (uint64_t)N1C->getSExtValue());
1691 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1692 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1693 if (GA->getGlobal() == GB->getGlobal())
1694 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1695 VT);
1696 }
1697
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001698 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001699}
1700
Craig Toppercc274522012-01-07 09:06:39 +00001701SDValue DAGCombiner::visitSUBC(SDNode *N) {
1702 SDValue N0 = N->getOperand(0);
1703 SDValue N1 = N->getOperand(1);
1704 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1705 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1706 EVT VT = N0.getValueType();
1707
1708 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001709 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001710 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1711 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1712 MVT::Glue));
1713
1714 // fold (subc x, x) -> 0 + no borrow
1715 if (N0 == N1)
1716 return CombineTo(N, DAG.getConstant(0, VT),
1717 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1718 MVT::Glue));
1719
1720 // fold (subc x, 0) -> x + no borrow
1721 if (N1C && N1C->isNullValue())
1722 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1723 MVT::Glue));
1724
1725 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1726 if (N0C && N0C->isAllOnesValue())
1727 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1728 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1729 MVT::Glue));
1730
1731 return SDValue();
1732}
1733
1734SDValue DAGCombiner::visitSUBE(SDNode *N) {
1735 SDValue N0 = N->getOperand(0);
1736 SDValue N1 = N->getOperand(1);
1737 SDValue CarryIn = N->getOperand(2);
1738
1739 // fold (sube x, y, false) -> (subc x, y)
1740 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1741 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1742
1743 return SDValue();
1744}
1745
Dan Gohman475871a2008-07-27 21:46:04 +00001746SDValue DAGCombiner::visitMUL(SDNode *N) {
1747 SDValue N0 = N->getOperand(0);
1748 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001749 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1750 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001751 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001752
Dan Gohman7f321562007-06-25 16:23:39 +00001753 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001754 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001755 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001756 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001757 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001758
Dan Gohman613e0d82007-07-03 14:03:57 +00001759 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001760 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001761 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001762 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001763 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001764 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001765 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001766 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001767 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001768 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001769 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001770 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001771 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001772 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001773 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1774 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001775 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001776 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001777 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001778 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001779 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001780 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001781 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1782 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001783 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001784 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001785 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1786 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001787 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001788 DAG.getConstant(Log2Val,
1789 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001790 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001791 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001792 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001793 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001794 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1795 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001796 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001797 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1798 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001799 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001800
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001801 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1802 // use.
1803 {
Dan Gohman475871a2008-07-27 21:46:04 +00001804 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001805 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1806 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001807 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001808 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001809 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001810 isa<ConstantSDNode>(N1.getOperand(1)) &&
1811 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001812 Sh = N1; Y = N0;
1813 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001814
Gabor Greifba36cb52008-08-28 21:40:38 +00001815 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001816 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1817 Sh.getOperand(0), Y);
1818 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1819 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001820 }
1821 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001822
Chris Lattnera1deca32006-03-04 23:33:26 +00001823 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001824 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001825 isa<ConstantSDNode>(N0.getOperand(1)))
1826 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1827 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1828 N0.getOperand(0), N1),
1829 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1830 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001831
Nate Begemancd4d58c2006-02-03 06:46:56 +00001832 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001833 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001834 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001835 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001836
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001837 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001838}
1839
Dan Gohman475871a2008-07-27 21:46:04 +00001840SDValue DAGCombiner::visitSDIV(SDNode *N) {
1841 SDValue N0 = N->getOperand(0);
1842 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001843 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1844 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001845 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001846
Dan Gohman7f321562007-06-25 16:23:39 +00001847 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001848 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001849 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001850 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001851 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001852
Nate Begeman1d4d4142005-09-01 00:19:25 +00001853 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001854 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001855 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001856 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001857 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001858 return N0;
1859 // fold (sdiv X, -1) -> 0-X
1860 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001861 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1862 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001863 // If we know the sign bits of both operands are zero, strength reduce to a
1864 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001865 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001866 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001867 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1868 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001869 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001870 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001871 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001872 (N1C->getAPIntValue().isPowerOf2() ||
1873 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001874 // If dividing by powers of two is cheap, then don't perform the following
1875 // fold.
1876 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001877 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001878
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001879 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001880
Chris Lattner8f4880b2006-02-16 08:02:36 +00001881 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001882 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1883 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001884 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001885 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001886
Chris Lattner8f4880b2006-02-16 08:02:36 +00001887 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001888 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1889 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001890 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001891 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001892 AddToWorkList(SRL.getNode());
1893 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001894 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001895 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001896
Nate Begeman405e3ec2005-10-21 00:02:42 +00001897 // If we're dividing by a positive value, we're done. Otherwise, we must
1898 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001899 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001900 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001901
Gabor Greifba36cb52008-08-28 21:40:38 +00001902 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001903 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1904 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001905 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001906
Nate Begeman69575232005-10-20 02:15:44 +00001907 // if integer divide is expensive and we satisfy the requirements, emit an
1908 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001909 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001910 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001911 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001912 }
Dan Gohman7f321562007-06-25 16:23:39 +00001913
Dan Gohman613e0d82007-07-03 14:03:57 +00001914 // undef / X -> 0
1915 if (N0.getOpcode() == ISD::UNDEF)
1916 return DAG.getConstant(0, VT);
1917 // X / undef -> undef
1918 if (N1.getOpcode() == ISD::UNDEF)
1919 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001920
Dan Gohman475871a2008-07-27 21:46:04 +00001921 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001922}
1923
Dan Gohman475871a2008-07-27 21:46:04 +00001924SDValue DAGCombiner::visitUDIV(SDNode *N) {
1925 SDValue N0 = N->getOperand(0);
1926 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001927 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1928 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001929 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001930
Dan Gohman7f321562007-06-25 16:23:39 +00001931 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001932 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001933 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001934 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001935 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001936
Nate Begeman1d4d4142005-09-01 00:19:25 +00001937 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001938 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001939 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001940 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001941 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001942 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001943 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001944 getShiftAmountTy(N0.getValueType())));
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001945 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001946 if (N1.getOpcode() == ISD::SHL) {
1947 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001948 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001949 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001950 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1951 N1.getOperand(1),
1952 DAG.getConstant(SHC->getAPIntValue()
1953 .logBase2(),
1954 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001955 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001956 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001957 }
1958 }
1959 }
Nate Begeman69575232005-10-20 02:15:44 +00001960 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001961 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001962 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001963 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001964 }
Dan Gohman7f321562007-06-25 16:23:39 +00001965
Dan Gohman613e0d82007-07-03 14:03:57 +00001966 // undef / X -> 0
1967 if (N0.getOpcode() == ISD::UNDEF)
1968 return DAG.getConstant(0, VT);
1969 // X / undef -> undef
1970 if (N1.getOpcode() == ISD::UNDEF)
1971 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001972
Dan Gohman475871a2008-07-27 21:46:04 +00001973 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001974}
1975
Dan Gohman475871a2008-07-27 21:46:04 +00001976SDValue DAGCombiner::visitSREM(SDNode *N) {
1977 SDValue N0 = N->getOperand(0);
1978 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001979 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1980 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001981 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001982
Nate Begeman1d4d4142005-09-01 00:19:25 +00001983 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001984 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001985 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001986 // If we know the sign bits of both operands are zero, strength reduce to a
1987 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001988 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001989 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001990 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00001991 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001992
Dan Gohman77003042007-11-26 23:46:11 +00001993 // If X/C can be simplified by the division-by-constant logic, lower
1994 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001995 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001996 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001997 AddToWorkList(Div.getNode());
1998 SDValue OptimizedDiv = combine(Div.getNode());
1999 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002000 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2001 OptimizedDiv, N1);
2002 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002003 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002004 return Sub;
2005 }
Chris Lattner26d29902006-10-12 20:58:32 +00002006 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002007
Dan Gohman613e0d82007-07-03 14:03:57 +00002008 // undef % X -> 0
2009 if (N0.getOpcode() == ISD::UNDEF)
2010 return DAG.getConstant(0, VT);
2011 // X % undef -> undef
2012 if (N1.getOpcode() == ISD::UNDEF)
2013 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002014
Dan Gohman475871a2008-07-27 21:46:04 +00002015 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002016}
2017
Dan Gohman475871a2008-07-27 21:46:04 +00002018SDValue DAGCombiner::visitUREM(SDNode *N) {
2019 SDValue N0 = N->getOperand(0);
2020 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002021 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2022 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002023 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002024
Nate Begeman1d4d4142005-09-01 00:19:25 +00002025 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002026 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002027 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002028 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002029 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002030 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002031 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002032 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2033 if (N1.getOpcode() == ISD::SHL) {
2034 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002035 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002036 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002037 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002038 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002039 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002040 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002041 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002042 }
2043 }
2044 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002045
Dan Gohman77003042007-11-26 23:46:11 +00002046 // If X/C can be simplified by the division-by-constant logic, lower
2047 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002048 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002049 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002050 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002051 SDValue OptimizedDiv = combine(Div.getNode());
2052 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002053 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2054 OptimizedDiv, N1);
2055 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002056 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002057 return Sub;
2058 }
Chris Lattner26d29902006-10-12 20:58:32 +00002059 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002060
Dan Gohman613e0d82007-07-03 14:03:57 +00002061 // undef % X -> 0
2062 if (N0.getOpcode() == ISD::UNDEF)
2063 return DAG.getConstant(0, VT);
2064 // X % undef -> undef
2065 if (N1.getOpcode() == ISD::UNDEF)
2066 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002067
Dan Gohman475871a2008-07-27 21:46:04 +00002068 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002069}
2070
Dan Gohman475871a2008-07-27 21:46:04 +00002071SDValue DAGCombiner::visitMULHS(SDNode *N) {
2072 SDValue N0 = N->getOperand(0);
2073 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002074 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002075 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002076 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002077
Nate Begeman1d4d4142005-09-01 00:19:25 +00002078 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002079 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002080 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002081 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002082 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002083 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2084 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002085 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002086 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002087 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002088 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002089
Chris Lattnerde1c3602010-12-13 08:39:01 +00002090 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2091 // plus a shift.
2092 if (VT.isSimple() && !VT.isVector()) {
2093 MVT Simple = VT.getSimpleVT();
2094 unsigned SimpleSize = Simple.getSizeInBits();
2095 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2096 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2097 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2098 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2099 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002100 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002101 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002102 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2103 }
2104 }
Owen Anderson95771af2011-02-25 21:41:48 +00002105
Dan Gohman475871a2008-07-27 21:46:04 +00002106 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002107}
2108
Dan Gohman475871a2008-07-27 21:46:04 +00002109SDValue DAGCombiner::visitMULHU(SDNode *N) {
2110 SDValue N0 = N->getOperand(0);
2111 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002112 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002113 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002114 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002115
Nate Begeman1d4d4142005-09-01 00:19:25 +00002116 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002117 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002118 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002119 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002120 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002121 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002122 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002123 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002124 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002125
Chris Lattnerde1c3602010-12-13 08:39:01 +00002126 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2127 // plus a shift.
2128 if (VT.isSimple() && !VT.isVector()) {
2129 MVT Simple = VT.getSimpleVT();
2130 unsigned SimpleSize = Simple.getSizeInBits();
2131 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2132 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2133 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2134 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2135 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2136 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002137 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002138 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2139 }
2140 }
Owen Anderson95771af2011-02-25 21:41:48 +00002141
Dan Gohman475871a2008-07-27 21:46:04 +00002142 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002143}
2144
Dan Gohman389079b2007-10-08 17:57:15 +00002145/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2146/// compute two values. LoOp and HiOp give the opcodes for the two computations
2147/// that are being performed. Return true if a simplification was made.
2148///
Scott Michelfdc40a02009-02-17 22:15:04 +00002149SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002150 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002151 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002152 bool HiExists = N->hasAnyUseOfValue(1);
2153 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002154 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002155 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002156 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2157 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002158 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002159 }
2160
2161 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002162 bool LoExists = N->hasAnyUseOfValue(0);
2163 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002164 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002165 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002166 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2167 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002168 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002169 }
2170
Evan Cheng44711942007-11-08 09:25:29 +00002171 // If both halves are used, return as it is.
2172 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002173 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002174
2175 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002176 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002177 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2178 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002179 AddToWorkList(Lo.getNode());
2180 SDValue LoOpt = combine(Lo.getNode());
2181 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002182 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002183 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002184 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002185 }
2186
Evan Cheng44711942007-11-08 09:25:29 +00002187 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002188 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002189 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002190 AddToWorkList(Hi.getNode());
2191 SDValue HiOpt = combine(Hi.getNode());
2192 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002193 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002194 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002195 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002196 }
Bill Wendling826d1142009-01-30 03:08:40 +00002197
Dan Gohman475871a2008-07-27 21:46:04 +00002198 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002199}
2200
Dan Gohman475871a2008-07-27 21:46:04 +00002201SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2202 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002203 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002204
Chris Lattner33e77d32010-12-15 06:04:19 +00002205 EVT VT = N->getValueType(0);
2206 DebugLoc DL = N->getDebugLoc();
2207
2208 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2209 // plus a shift.
2210 if (VT.isSimple() && !VT.isVector()) {
2211 MVT Simple = VT.getSimpleVT();
2212 unsigned SimpleSize = Simple.getSizeInBits();
2213 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2214 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2215 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2216 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2217 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2218 // Compute the high part as N1.
2219 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002220 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002221 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2222 // Compute the low part as N0.
2223 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2224 return CombineTo(N, Lo, Hi);
2225 }
2226 }
Owen Anderson95771af2011-02-25 21:41:48 +00002227
Dan Gohman475871a2008-07-27 21:46:04 +00002228 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002229}
2230
Dan Gohman475871a2008-07-27 21:46:04 +00002231SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2232 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002233 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002234
Chris Lattner33e77d32010-12-15 06:04:19 +00002235 EVT VT = N->getValueType(0);
2236 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002237
Chris Lattner33e77d32010-12-15 06:04:19 +00002238 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2239 // plus a shift.
2240 if (VT.isSimple() && !VT.isVector()) {
2241 MVT Simple = VT.getSimpleVT();
2242 unsigned SimpleSize = Simple.getSizeInBits();
2243 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2244 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2245 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2246 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2247 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2248 // Compute the high part as N1.
2249 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002250 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002251 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2252 // Compute the low part as N0.
2253 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2254 return CombineTo(N, Lo, Hi);
2255 }
2256 }
Owen Anderson95771af2011-02-25 21:41:48 +00002257
Dan Gohman475871a2008-07-27 21:46:04 +00002258 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002259}
2260
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002261SDValue DAGCombiner::visitSMULO(SDNode *N) {
2262 // (smulo x, 2) -> (saddo x, x)
2263 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2264 if (C2->getAPIntValue() == 2)
2265 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2266 N->getOperand(0), N->getOperand(0));
2267
2268 return SDValue();
2269}
2270
2271SDValue DAGCombiner::visitUMULO(SDNode *N) {
2272 // (umulo x, 2) -> (uaddo x, x)
2273 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2274 if (C2->getAPIntValue() == 2)
2275 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2276 N->getOperand(0), N->getOperand(0));
2277
2278 return SDValue();
2279}
2280
Dan Gohman475871a2008-07-27 21:46:04 +00002281SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2282 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002283 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002284
Dan Gohman475871a2008-07-27 21:46:04 +00002285 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002286}
2287
Dan Gohman475871a2008-07-27 21:46:04 +00002288SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2289 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002290 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002291
Dan Gohman475871a2008-07-27 21:46:04 +00002292 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002293}
2294
Chris Lattner35e5c142006-05-05 05:51:50 +00002295/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2296/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002297SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2298 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002299 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002300 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002301
Dan Gohmanff00a552010-01-14 03:08:49 +00002302 // Bail early if none of these transforms apply.
2303 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2304
Chris Lattner540121f2006-05-05 06:31:05 +00002305 // For each of OP in AND/OR/XOR:
2306 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2307 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2308 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002309 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002310 //
2311 // do not sink logical op inside of a vector extend, since it may combine
2312 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002313 EVT Op0VT = N0.getOperand(0).getValueType();
2314 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002315 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002316 // Avoid infinite looping with PromoteIntBinOp.
2317 (N0.getOpcode() == ISD::ANY_EXTEND &&
2318 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002319 (N0.getOpcode() == ISD::TRUNCATE &&
2320 (!TLI.isZExtFree(VT, Op0VT) ||
2321 !TLI.isTruncateFree(Op0VT, VT)) &&
2322 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002323 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002324 Op0VT == N1.getOperand(0).getValueType() &&
2325 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002326 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2327 N0.getOperand(0).getValueType(),
2328 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002329 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002330 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002331 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002332
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002333 // For each of OP in SHL/SRL/SRA/AND...
2334 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2335 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2336 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002337 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002338 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002339 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002340 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2341 N0.getOperand(0).getValueType(),
2342 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002343 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002344 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2345 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002346 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002347
Nadav Rotem4ac90812012-04-01 19:31:22 +00002348 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2349 // Only perform this optimization after type legalization and before
2350 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2351 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2352 // we don't want to undo this promotion.
2353 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2354 // on scalars.
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002355 if ((N0.getOpcode() == ISD::BITCAST ||
2356 N0.getOpcode() == ISD::SCALAR_TO_VECTOR) &&
2357 Level == AfterLegalizeTypes) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002358 SDValue In0 = N0.getOperand(0);
2359 SDValue In1 = N1.getOperand(0);
2360 EVT In0Ty = In0.getValueType();
2361 EVT In1Ty = In1.getValueType();
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002362 DebugLoc DL = N->getDebugLoc();
2363 // If both incoming values are integers, and the original types are the
2364 // same.
Nadav Rotem4ac90812012-04-01 19:31:22 +00002365 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002366 SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1);
2367 SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002368 AddToWorkList(Op.getNode());
2369 return BC;
2370 }
2371 }
2372
2373 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2374 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2375 // If both shuffles use the same mask, and both shuffle within a single
2376 // vector, then it is worthwhile to move the swizzle after the operation.
2377 // The type-legalizer generates this pattern when loading illegal
2378 // vector types from memory. In many cases this allows additional shuffle
2379 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002380 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2381 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2382 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002383 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2384 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002385
2386 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2387 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002388
2389 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002390
2391 // Check that both shuffles use the same mask. The masks are known to be of
2392 // the same length because the result vector type is the same.
2393 bool SameMask = true;
2394 for (unsigned i = 0; i != NumElts; ++i) {
2395 int Idx0 = SVN0->getMaskElt(i);
2396 int Idx1 = SVN1->getMaskElt(i);
2397 if (Idx0 != Idx1) {
2398 SameMask = false;
2399 break;
2400 }
2401 }
2402
Craig Topperf9204232012-04-09 07:19:09 +00002403 if (SameMask) {
2404 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT,
2405 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002406 AddToWorkList(Op.getNode());
Craig Topperf9204232012-04-09 07:19:09 +00002407 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op,
2408 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002409 }
2410 }
Craig Topperf9204232012-04-09 07:19:09 +00002411
Dan Gohman475871a2008-07-27 21:46:04 +00002412 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002413}
2414
Dan Gohman475871a2008-07-27 21:46:04 +00002415SDValue DAGCombiner::visitAND(SDNode *N) {
2416 SDValue N0 = N->getOperand(0);
2417 SDValue N1 = N->getOperand(1);
2418 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002419 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2420 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002421 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002422 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002423
Dan Gohman7f321562007-06-25 16:23:39 +00002424 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002425 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002426 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002427 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002428 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002429
Dan Gohman613e0d82007-07-03 14:03:57 +00002430 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002431 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002432 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002433 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002434 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002435 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002436 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002437 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002438 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002439 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002440 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002441 return N0;
2442 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002443 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002444 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002445 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002446 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002447 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002448 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002449 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002450 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002451 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002452 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002453 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002454 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002455 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2456 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002457 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002458 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002459 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002460 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002461 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2462 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002463
Chris Lattner1ec05d12006-03-01 21:47:21 +00002464 // Replace uses of the AND with uses of the Zero extend node.
2465 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002466
Chris Lattner3603cd62006-02-02 07:17:31 +00002467 // We actually want to replace all uses of the any_extend with the
2468 // zero_extend, to avoid duplicating things. This will later cause this
2469 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002470 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002471 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002472 }
2473 }
James Molloy6259dcd2012-02-20 12:02:38 +00002474 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2475 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2476 // already be zero by virtue of the width of the base type of the load.
2477 //
2478 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2479 // more cases.
2480 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2481 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2482 N0.getOpcode() == ISD::LOAD) {
2483 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2484 N0 : N0.getOperand(0) );
2485
2486 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2487 // This can be a pure constant or a vector splat, in which case we treat the
2488 // vector as a scalar and use the splat value.
2489 APInt Constant = APInt::getNullValue(1);
2490 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2491 Constant = C->getAPIntValue();
2492 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2493 APInt SplatValue, SplatUndef;
2494 unsigned SplatBitSize;
2495 bool HasAnyUndefs;
2496 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2497 SplatBitSize, HasAnyUndefs);
2498 if (IsSplat) {
2499 // Undef bits can contribute to a possible optimisation if set, so
2500 // set them.
2501 SplatValue |= SplatUndef;
2502
2503 // The splat value may be something like "0x00FFFFFF", which means 0 for
2504 // the first vector value and FF for the rest, repeating. We need a mask
2505 // that will apply equally to all members of the vector, so AND all the
2506 // lanes of the constant together.
2507 EVT VT = Vector->getValueType(0);
2508 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002509
2510 // If the splat value has been compressed to a bitlength lower
2511 // than the size of the vector lane, we need to re-expand it to
2512 // the lane size.
2513 if (BitWidth > SplatBitSize)
2514 for (SplatValue = SplatValue.zextOrTrunc(BitWidth);
2515 SplatBitSize < BitWidth;
2516 SplatBitSize = SplatBitSize * 2)
2517 SplatValue |= SplatValue.shl(SplatBitSize);
2518
James Molloy6259dcd2012-02-20 12:02:38 +00002519 Constant = APInt::getAllOnesValue(BitWidth);
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002520 for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i)
James Molloy6259dcd2012-02-20 12:02:38 +00002521 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2522 }
2523 }
2524
2525 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2526 // actually legal and isn't going to get expanded, else this is a false
2527 // optimisation.
2528 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2529 Load->getMemoryVT());
2530
2531 // Resize the constant to the same size as the original memory access before
2532 // extension. If it is still the AllOnesValue then this AND is completely
2533 // unneeded.
2534 Constant =
2535 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2536
2537 bool B;
2538 switch (Load->getExtensionType()) {
2539 default: B = false; break;
2540 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2541 case ISD::ZEXTLOAD:
2542 case ISD::NON_EXTLOAD: B = true; break;
2543 }
2544
2545 if (B && Constant.isAllOnesValue()) {
2546 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2547 // preserve semantics once we get rid of the AND.
2548 SDValue NewLoad(Load, 0);
2549 if (Load->getExtensionType() == ISD::EXTLOAD) {
2550 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2551 Load->getValueType(0), Load->getDebugLoc(),
2552 Load->getChain(), Load->getBasePtr(),
2553 Load->getOffset(), Load->getMemoryVT(),
2554 Load->getMemOperand());
2555 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
Hal Finkeld65e4632012-06-20 15:42:48 +00002556 if (Load->getNumValues() == 3) {
2557 // PRE/POST_INC loads have 3 values.
2558 SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1),
2559 NewLoad.getValue(2) };
2560 CombineTo(Load, To, 3, true);
2561 } else {
2562 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2563 }
James Molloy6259dcd2012-02-20 12:02:38 +00002564 }
2565
2566 // Fold the AND away, taking care not to fold to the old load node if we
2567 // replaced it.
2568 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2569
2570 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2571 }
2572 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002573 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2574 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2575 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2576 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002577
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002578 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002579 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002580 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002581 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002582 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2583 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002584 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002585 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002586 }
Bill Wendling2627a882009-01-30 20:43:18 +00002587 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002588 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002589 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2590 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002591 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002592 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002593 }
Bill Wendling2627a882009-01-30 20:43:18 +00002594 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002595 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002596 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2597 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002598 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002599 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002600 }
2601 }
2602 // canonicalize equivalent to ll == rl
2603 if (LL == RR && LR == RL) {
2604 Op1 = ISD::getSetCCSwappedOperands(Op1);
2605 std::swap(RL, RR);
2606 }
2607 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002608 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002609 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002610 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002611 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002612 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2613 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002614 }
2615 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002616
Bill Wendling2627a882009-01-30 20:43:18 +00002617 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002618 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002619 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002620 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002621 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002622
Nate Begemande996292006-02-03 22:24:05 +00002623 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2624 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002625 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002626 SimplifyDemandedBits(SDValue(N, 0)))
2627 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002628
Nate Begemanded49632005-10-13 03:11:28 +00002629 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002630 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002631 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002632 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002633 // If we zero all the possible extended bits, then we can turn this into
2634 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002635 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002636 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002637 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002638 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002639 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002640 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002641 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002642 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002643 LN0->isVolatile(), LN0->isNonTemporal(),
2644 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002645 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002646 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002647 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002648 }
2649 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002650 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002651 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002652 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002653 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002654 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002655 // If we zero all the possible extended bits, then we can turn this into
2656 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002657 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002658 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002659 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002660 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002661 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002662 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002663 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002664 LN0->getBasePtr(), LN0->getPointerInfo(),
2665 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002666 LN0->isVolatile(), LN0->isNonTemporal(),
2667 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002668 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002669 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002670 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002671 }
2672 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002673
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002674 // fold (and (load x), 255) -> (zextload x, i8)
2675 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002676 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2677 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2678 (N0.getOpcode() == ISD::ANY_EXTEND &&
2679 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2680 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2681 LoadSDNode *LN0 = HasAnyExt
2682 ? cast<LoadSDNode>(N0.getOperand(0))
2683 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002684 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002685 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002686 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002687 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2688 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2689 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002690
Evan Chengd40d03e2010-01-06 19:38:29 +00002691 if (ExtVT == LoadedVT &&
2692 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002693 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002694
2695 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002696 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002697 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002698 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002699 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2700 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002701 AddToWorkList(N);
2702 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2703 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2704 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002705
Chris Lattneref7634c2010-01-07 21:53:27 +00002706 // Do not change the width of a volatile load.
2707 // Do not generate loads of non-round integer types since these can
2708 // be expensive (and would be wrong if the type is not byte sized).
2709 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2710 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2711 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002712
Chris Lattneref7634c2010-01-07 21:53:27 +00002713 unsigned Alignment = LN0->getAlignment();
2714 SDValue NewPtr = LN0->getBasePtr();
2715
2716 // For big endian targets, we need to add an offset to the pointer
2717 // to load the correct bytes. For little endian systems, we merely
2718 // need to read fewer bytes from the same pointer.
2719 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002720 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2721 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2722 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002723 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2724 NewPtr, DAG.getConstant(PtrOff, PtrType));
2725 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002726 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002727
2728 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002729
Chris Lattneref7634c2010-01-07 21:53:27 +00002730 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2731 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002732 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002733 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002734 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002735 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2736 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002737 AddToWorkList(N);
2738 CombineTo(LN0, Load, Load.getValue(1));
2739 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002740 }
Evan Cheng466685d2006-10-09 20:57:25 +00002741 }
Chris Lattner15045b62006-02-28 06:35:35 +00002742 }
2743 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002744
Evan Chenga9e13ba2012-07-17 18:54:11 +00002745 if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
2746 VT.getSizeInBits() <= 64) {
2747 if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2748 APInt ADDC = ADDI->getAPIntValue();
2749 if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2750 // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal
2751 // immediate for an add, but it is legal if its top c2 bits are set,
2752 // transform the ADD so the immediate doesn't need to be materialized
2753 // in a register.
2754 if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
2755 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
2756 SRLI->getZExtValue());
2757 if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) {
2758 ADDC |= Mask;
2759 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2760 SDValue NewAdd =
2761 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
2762 N0.getOperand(0), DAG.getConstant(ADDC, VT));
2763 CombineTo(N0.getNode(), NewAdd);
2764 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2765 }
2766 }
2767 }
2768 }
2769 }
2770 }
2771
2772
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002773 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002774}
2775
Evan Cheng9568e5c2011-06-21 06:01:08 +00002776/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2777///
2778SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2779 bool DemandHighBits) {
2780 if (!LegalOperations)
2781 return SDValue();
2782
2783 EVT VT = N->getValueType(0);
2784 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2785 return SDValue();
2786 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2787 return SDValue();
2788
2789 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2790 bool LookPassAnd0 = false;
2791 bool LookPassAnd1 = false;
2792 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2793 std::swap(N0, N1);
2794 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2795 std::swap(N0, N1);
2796 if (N0.getOpcode() == ISD::AND) {
2797 if (!N0.getNode()->hasOneUse())
2798 return SDValue();
2799 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2800 if (!N01C || N01C->getZExtValue() != 0xFF00)
2801 return SDValue();
2802 N0 = N0.getOperand(0);
2803 LookPassAnd0 = true;
2804 }
2805
2806 if (N1.getOpcode() == ISD::AND) {
2807 if (!N1.getNode()->hasOneUse())
2808 return SDValue();
2809 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2810 if (!N11C || N11C->getZExtValue() != 0xFF)
2811 return SDValue();
2812 N1 = N1.getOperand(0);
2813 LookPassAnd1 = true;
2814 }
2815
2816 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2817 std::swap(N0, N1);
2818 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2819 return SDValue();
2820 if (!N0.getNode()->hasOneUse() ||
2821 !N1.getNode()->hasOneUse())
2822 return SDValue();
2823
2824 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2825 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2826 if (!N01C || !N11C)
2827 return SDValue();
2828 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2829 return SDValue();
2830
2831 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2832 SDValue N00 = N0->getOperand(0);
2833 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2834 if (!N00.getNode()->hasOneUse())
2835 return SDValue();
2836 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2837 if (!N001C || N001C->getZExtValue() != 0xFF)
2838 return SDValue();
2839 N00 = N00.getOperand(0);
2840 LookPassAnd0 = true;
2841 }
2842
2843 SDValue N10 = N1->getOperand(0);
2844 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2845 if (!N10.getNode()->hasOneUse())
2846 return SDValue();
2847 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2848 if (!N101C || N101C->getZExtValue() != 0xFF00)
2849 return SDValue();
2850 N10 = N10.getOperand(0);
2851 LookPassAnd1 = true;
2852 }
2853
2854 if (N00 != N10)
2855 return SDValue();
2856
2857 // Make sure everything beyond the low halfword is zero since the SRL 16
2858 // will clear the top bits.
2859 unsigned OpSizeInBits = VT.getSizeInBits();
2860 if (DemandHighBits && OpSizeInBits > 16 &&
2861 (!LookPassAnd0 || !LookPassAnd1) &&
2862 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2863 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002864
Evan Cheng9568e5c2011-06-21 06:01:08 +00002865 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2866 if (OpSizeInBits > 16)
2867 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2868 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2869 return Res;
2870}
2871
2872/// isBSwapHWordElement - Return true if the specified node is an element
2873/// that makes up a 32-bit packed halfword byteswap. i.e.
2874/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2875static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2876 if (!N.getNode()->hasOneUse())
2877 return false;
2878
2879 unsigned Opc = N.getOpcode();
2880 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2881 return false;
2882
2883 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2884 if (!N1C)
2885 return false;
2886
2887 unsigned Num;
2888 switch (N1C->getZExtValue()) {
2889 default:
2890 return false;
2891 case 0xFF: Num = 0; break;
2892 case 0xFF00: Num = 1; break;
2893 case 0xFF0000: Num = 2; break;
2894 case 0xFF000000: Num = 3; break;
2895 }
2896
2897 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2898 SDValue N0 = N.getOperand(0);
2899 if (Opc == ISD::AND) {
2900 if (Num == 0 || Num == 2) {
2901 // (x >> 8) & 0xff
2902 // (x >> 8) & 0xff0000
2903 if (N0.getOpcode() != ISD::SRL)
2904 return false;
2905 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2906 if (!C || C->getZExtValue() != 8)
2907 return false;
2908 } else {
2909 // (x << 8) & 0xff00
2910 // (x << 8) & 0xff000000
2911 if (N0.getOpcode() != ISD::SHL)
2912 return false;
2913 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2914 if (!C || C->getZExtValue() != 8)
2915 return false;
2916 }
2917 } else if (Opc == ISD::SHL) {
2918 // (x & 0xff) << 8
2919 // (x & 0xff0000) << 8
2920 if (Num != 0 && Num != 2)
2921 return false;
2922 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2923 if (!C || C->getZExtValue() != 8)
2924 return false;
2925 } else { // Opc == ISD::SRL
2926 // (x & 0xff00) >> 8
2927 // (x & 0xff000000) >> 8
2928 if (Num != 1 && Num != 3)
2929 return false;
2930 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2931 if (!C || C->getZExtValue() != 8)
2932 return false;
2933 }
2934
2935 if (Parts[Num])
2936 return false;
2937
2938 Parts[Num] = N0.getOperand(0).getNode();
2939 return true;
2940}
2941
2942/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2943/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2944/// => (rotl (bswap x), 16)
2945SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2946 if (!LegalOperations)
2947 return SDValue();
2948
2949 EVT VT = N->getValueType(0);
2950 if (VT != MVT::i32)
2951 return SDValue();
2952 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2953 return SDValue();
2954
2955 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2956 // Look for either
2957 // (or (or (and), (and)), (or (and), (and)))
2958 // (or (or (or (and), (and)), (and)), (and))
2959 if (N0.getOpcode() != ISD::OR)
2960 return SDValue();
2961 SDValue N00 = N0.getOperand(0);
2962 SDValue N01 = N0.getOperand(1);
2963
2964 if (N1.getOpcode() == ISD::OR) {
2965 // (or (or (and), (and)), (or (and), (and)))
2966 SDValue N000 = N00.getOperand(0);
2967 if (!isBSwapHWordElement(N000, Parts))
2968 return SDValue();
2969
2970 SDValue N001 = N00.getOperand(1);
2971 if (!isBSwapHWordElement(N001, Parts))
2972 return SDValue();
2973 SDValue N010 = N01.getOperand(0);
2974 if (!isBSwapHWordElement(N010, Parts))
2975 return SDValue();
2976 SDValue N011 = N01.getOperand(1);
2977 if (!isBSwapHWordElement(N011, Parts))
2978 return SDValue();
2979 } else {
2980 // (or (or (or (and), (and)), (and)), (and))
2981 if (!isBSwapHWordElement(N1, Parts))
2982 return SDValue();
2983 if (!isBSwapHWordElement(N01, Parts))
2984 return SDValue();
2985 if (N00.getOpcode() != ISD::OR)
2986 return SDValue();
2987 SDValue N000 = N00.getOperand(0);
2988 if (!isBSwapHWordElement(N000, Parts))
2989 return SDValue();
2990 SDValue N001 = N00.getOperand(1);
2991 if (!isBSwapHWordElement(N001, Parts))
2992 return SDValue();
2993 }
2994
2995 // Make sure the parts are all coming from the same node.
2996 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2997 return SDValue();
2998
2999 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
3000 SDValue(Parts[0],0));
3001
3002 // Result of the bswap should be rotated by 16. If it's not legal, than
3003 // do (x << 16) | (x >> 16).
3004 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
3005 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
3006 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
Craig Topper0eb5dad2012-09-29 07:18:53 +00003007 if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
Evan Cheng9568e5c2011-06-21 06:01:08 +00003008 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
3009 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
3010 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
3011 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
3012}
3013
Dan Gohman475871a2008-07-27 21:46:04 +00003014SDValue DAGCombiner::visitOR(SDNode *N) {
3015 SDValue N0 = N->getOperand(0);
3016 SDValue N1 = N->getOperand(1);
3017 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00003018 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3019 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003020 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003021
Dan Gohman7f321562007-06-25 16:23:39 +00003022 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003023 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003024 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003025 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003026 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003027
Dan Gohman613e0d82007-07-03 14:03:57 +00003028 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00003029 if (!LegalOperations &&
3030 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00003031 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
3032 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
3033 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003034 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003035 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003036 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003037 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003038 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00003039 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003040 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003041 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003042 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003043 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003044 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003045 return N1;
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003046 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003047 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003048 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00003049
3050 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
3051 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
3052 if (BSwap.getNode() != 0)
3053 return BSwap;
3054 BSwap = MatchBSwapHWordLow(N, N0, N1);
3055 if (BSwap.getNode() != 0)
3056 return BSwap;
3057
Nate Begemancd4d58c2006-02-03 06:46:56 +00003058 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00003059 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003060 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003061 return ROR;
3062 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003063 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003064 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003065 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003066 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003067 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003068 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
3069 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3070 N0.getOperand(0), N1),
3071 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003072 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003073 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3074 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3075 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3076 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003077
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003078 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003079 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003080 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3081 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003082 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003083 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003084 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
3085 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003086 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003087 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003088 }
Bill Wendling09025642009-01-30 20:59:34 +00003089 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3090 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003091 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003092 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003093 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
3094 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003095 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003096 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003097 }
3098 }
3099 // canonicalize equivalent to ll == rl
3100 if (LL == RR && LR == RL) {
3101 Op1 = ISD::getSetCCSwappedOperands(Op1);
3102 std::swap(RL, RR);
3103 }
3104 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003105 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003106 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003107 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00003108 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00003109 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
3110 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003111 }
3112 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003113
Bill Wendling09025642009-01-30 20:59:34 +00003114 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003115 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003116 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003117 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003118 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003119
Bill Wendling09025642009-01-30 20:59:34 +00003120 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003121 if (N0.getOpcode() == ISD::AND &&
3122 N1.getOpcode() == ISD::AND &&
3123 N0.getOperand(1).getOpcode() == ISD::Constant &&
3124 N1.getOperand(1).getOpcode() == ISD::Constant &&
3125 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003126 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003127 // We can only do this xform if we know that bits from X that are set in C2
3128 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003129 const APInt &LHSMask =
3130 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3131 const APInt &RHSMask =
3132 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003133
Dan Gohmanea859be2007-06-22 14:59:07 +00003134 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3135 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003136 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3137 N0.getOperand(0), N1.getOperand(0));
3138 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3139 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003140 }
3141 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003142
Chris Lattner516b9622006-09-14 20:50:57 +00003143 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003144 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003145 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003146
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003147 // Simplify the operands using demanded-bits information.
3148 if (!VT.isVector() &&
3149 SimplifyDemandedBits(SDValue(N, 0)))
3150 return SDValue(N, 0);
3151
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003152 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003153}
3154
Chris Lattner516b9622006-09-14 20:50:57 +00003155/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003156static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003157 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003158 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003159 Mask = Op.getOperand(1);
3160 Op = Op.getOperand(0);
3161 } else {
3162 return false;
3163 }
3164 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003165
Chris Lattner516b9622006-09-14 20:50:57 +00003166 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3167 Shift = Op;
3168 return true;
3169 }
Bill Wendling09025642009-01-30 20:59:34 +00003170
Scott Michelfdc40a02009-02-17 22:15:04 +00003171 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003172}
3173
Chris Lattner516b9622006-09-14 20:50:57 +00003174// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3175// idioms for rotate, and if the target supports rotation instructions, generate
3176// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003177SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003178 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003179 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003180 if (!TLI.isTypeLegal(VT)) return 0;
3181
3182 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003183 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3184 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003185 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003186
Chris Lattner516b9622006-09-14 20:50:57 +00003187 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003188 SDValue LHSShift; // The shift.
3189 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003190 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3191 return 0; // Not part of a rotate.
3192
Dan Gohman475871a2008-07-27 21:46:04 +00003193 SDValue RHSShift; // The shift.
3194 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003195 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3196 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003197
Chris Lattner516b9622006-09-14 20:50:57 +00003198 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3199 return 0; // Not shifting the same value.
3200
3201 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3202 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003203
Chris Lattner516b9622006-09-14 20:50:57 +00003204 // Canonicalize shl to left side in a shl/srl pair.
3205 if (RHSShift.getOpcode() == ISD::SHL) {
3206 std::swap(LHS, RHS);
3207 std::swap(LHSShift, RHSShift);
3208 std::swap(LHSMask , RHSMask );
3209 }
3210
Duncan Sands83ec4b62008-06-06 12:08:01 +00003211 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003212 SDValue LHSShiftArg = LHSShift.getOperand(0);
3213 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3214 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003215
3216 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3217 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003218 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3219 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003220 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3221 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003222 if ((LShVal + RShVal) != OpSizeInBits)
3223 return 0;
3224
Craig Topper32b73432012-09-29 06:54:22 +00003225 SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3226 LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003227
Chris Lattner516b9622006-09-14 20:50:57 +00003228 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003229 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003230 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003231
Gabor Greifba36cb52008-08-28 21:40:38 +00003232 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003233 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3234 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003235 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003236 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003237 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3238 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003239 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003240
Bill Wendling317bd702009-01-30 21:14:50 +00003241 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003242 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003243
Gabor Greifba36cb52008-08-28 21:40:38 +00003244 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003245 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003246
Chris Lattner516b9622006-09-14 20:50:57 +00003247 // If there is a mask here, and we have a variable shift, we can't be sure
3248 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003249 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003250 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003251
Chris Lattner516b9622006-09-14 20:50:57 +00003252 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3253 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003254 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3255 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003256 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003257 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003258 if (SUBC->getAPIntValue() == OpSizeInBits) {
Craig Topper32b73432012-09-29 06:54:22 +00003259 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, LHSShiftArg,
3260 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003261 }
Chris Lattner516b9622006-09-14 20:50:57 +00003262 }
3263 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003264
Chris Lattner516b9622006-09-14 20:50:57 +00003265 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3266 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003267 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3268 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003269 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003270 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003271 if (SUBC->getAPIntValue() == OpSizeInBits) {
Craig Topper32b73432012-09-29 06:54:22 +00003272 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg,
3273 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003274 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003275 }
3276 }
3277
Dan Gohman74feef22008-10-17 01:23:35 +00003278 // Look for sign/zext/any-extended or truncate cases:
Craig Topper0eb5dad2012-09-29 07:18:53 +00003279 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3280 LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3281 LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3282 LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
3283 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3284 RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3285 RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3286 RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003287 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3288 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003289 if (RExtOp0.getOpcode() == ISD::SUB &&
3290 RExtOp0.getOperand(1) == LExtOp0) {
3291 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003292 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003293 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003294 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003295 if (ConstantSDNode *SUBC =
3296 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003297 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003298 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3299 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003300 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003301 }
3302 }
3303 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3304 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003305 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003306 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003307 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003308 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003309 if (ConstantSDNode *SUBC =
3310 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003311 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003312 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3313 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003314 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003315 }
3316 }
Chris Lattner516b9622006-09-14 20:50:57 +00003317 }
3318 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003319
Chris Lattner516b9622006-09-14 20:50:57 +00003320 return 0;
3321}
3322
Dan Gohman475871a2008-07-27 21:46:04 +00003323SDValue DAGCombiner::visitXOR(SDNode *N) {
3324 SDValue N0 = N->getOperand(0);
3325 SDValue N1 = N->getOperand(1);
3326 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003327 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3328 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003329 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003330
Dan Gohman7f321562007-06-25 16:23:39 +00003331 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003332 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003333 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003334 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003335 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003336
Evan Cheng26471c42008-03-25 20:08:07 +00003337 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3338 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3339 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003340 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003341 if (N0.getOpcode() == ISD::UNDEF)
3342 return N0;
3343 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003344 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003345 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003346 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003347 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003348 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003349 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003350 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003351 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003352 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003353 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003354 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003355 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003356 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003357 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003358
Nate Begeman1d4d4142005-09-01 00:19:25 +00003359 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003360 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003361 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003362 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3363 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003364
Duncan Sands25cf2272008-11-24 14:53:14 +00003365 if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003366 switch (N0.getOpcode()) {
3367 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003368 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003369 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003370 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003371 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003372 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003373 N0.getOperand(3), NotCC);
3374 }
3375 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003376 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003377
Chris Lattner61c5ff42007-09-10 21:39:07 +00003378 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003379 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003380 N0.getNode()->hasOneUse() &&
3381 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003382 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003383 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003384 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003385 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003386 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003387 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003388
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003389 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003390 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003391 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003392 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003393 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3394 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003395 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3396 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003397 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003398 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003399 }
3400 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003401 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003402 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003403 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003404 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003405 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3406 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003407 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3408 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003409 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003410 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003411 }
3412 }
Bill Wendling317bd702009-01-30 21:14:50 +00003413 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003414 if (N1C && N0.getOpcode() == ISD::XOR) {
3415 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3416 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3417 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003418 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3419 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003420 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003421 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003422 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3423 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003424 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003425 }
3426 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003427 if (N0 == N1)
3428 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003429
Chris Lattner35e5c142006-05-05 05:51:50 +00003430 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3431 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003432 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003433 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003434 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003435
Chris Lattner3e104b12006-04-08 04:15:24 +00003436 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003437 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003438 SimplifyDemandedBits(SDValue(N, 0)))
3439 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003440
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003441 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003442}
3443
Chris Lattnere70da202007-12-06 07:33:36 +00003444/// visitShiftByConstant - Handle transforms common to the three shifts, when
3445/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003446SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003447 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003448 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003449
Chris Lattnere70da202007-12-06 07:33:36 +00003450 // We want to pull some binops through shifts, so that we have (and (shift))
3451 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3452 // thing happens with address calculations, so it's important to canonicalize
3453 // it.
3454 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003455
Chris Lattnere70da202007-12-06 07:33:36 +00003456 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003457 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003458 case ISD::OR:
3459 case ISD::XOR:
3460 HighBitSet = false; // We can only transform sra if the high bit is clear.
3461 break;
3462 case ISD::AND:
3463 HighBitSet = true; // We can only transform sra if the high bit is set.
3464 break;
3465 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003466 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003467 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003468 HighBitSet = false; // We can only transform sra if the high bit is clear.
3469 break;
3470 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003471
Chris Lattnere70da202007-12-06 07:33:36 +00003472 // We require the RHS of the binop to be a constant as well.
3473 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003474 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003475
3476 // FIXME: disable this unless the input to the binop is a shift by a constant.
3477 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003478 //
Bill Wendling88103372009-01-30 21:37:17 +00003479 // void foo(int *X, int i) { X[i & 1235] = 1; }
3480 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003481 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003482 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003483 BinOpLHSVal->getOpcode() != ISD::SRA &&
3484 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3485 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003486 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003487
Owen Andersone50ed302009-08-10 22:56:29 +00003488 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003489
Bill Wendling88103372009-01-30 21:37:17 +00003490 // If this is a signed shift right, and the high bit is modified by the
3491 // logical operation, do not perform the transformation. The highBitSet
3492 // boolean indicates the value of the high bit of the constant which would
3493 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003494 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003495 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3496 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003497 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003498 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003499
Chris Lattnere70da202007-12-06 07:33:36 +00003500 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003501 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3502 N->getValueType(0),
3503 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003504
3505 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003506 SDValue NewShift = DAG.getNode(N->getOpcode(),
3507 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003508 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003509
3510 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003511 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003512}
3513
Dan Gohman475871a2008-07-27 21:46:04 +00003514SDValue DAGCombiner::visitSHL(SDNode *N) {
3515 SDValue N0 = N->getOperand(0);
3516 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003517 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3518 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003519 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003520 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003521
Nate Begeman1d4d4142005-09-01 00:19:25 +00003522 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003523 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003524 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003525 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003526 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003527 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003528 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003529 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003530 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003531 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003532 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003533 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003534 // fold (shl undef, x) -> 0
3535 if (N0.getOpcode() == ISD::UNDEF)
3536 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003537 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003538 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003539 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003540 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003541 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003542 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003543 N1.getOperand(0).getOpcode() == ISD::AND &&
3544 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003545 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003546 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003547 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003548 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003549 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003550 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003551 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003552 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3553 DAG.getNode(ISD::TRUNCATE,
3554 N->getDebugLoc(),
3555 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003556 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003557 }
3558 }
3559
Dan Gohman475871a2008-07-27 21:46:04 +00003560 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3561 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003562
3563 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003564 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003565 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003566 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3567 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003568 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003569 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003570 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003571 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003572 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003573
3574 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3575 // For this to be valid, the second form must not preserve any of the bits
3576 // that are shifted out by the inner shift in the first form. This means
3577 // the outer shift size must be >= the number of bits added by the ext.
3578 // As a corollary, we don't care what kind of ext it is.
3579 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3580 N0.getOpcode() == ISD::ANY_EXTEND ||
3581 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3582 N0.getOperand(0).getOpcode() == ISD::SHL &&
3583 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003584 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003585 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3586 uint64_t c2 = N1C->getZExtValue();
3587 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3588 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3589 if (c2 >= OpSizeInBits - InnerShiftSize) {
3590 if (c1 + c2 >= OpSizeInBits)
3591 return DAG.getConstant(0, VT);
3592 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3593 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3594 N0.getOperand(0)->getOperand(0)),
3595 DAG.getConstant(c1 + c2, N1.getValueType()));
3596 }
3597 }
3598
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003599 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3600 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003601 // Only fold this if the inner shift has no other uses -- if it does, folding
3602 // this will increase the total number of instructions.
3603 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003604 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003605 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003606 if (c1 < VT.getSizeInBits()) {
3607 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003608 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3609 VT.getSizeInBits() - c1);
3610 SDValue Shift;
3611 if (c2 > c1) {
3612 Mask = Mask.shl(c2-c1);
3613 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3614 DAG.getConstant(c2-c1, N1.getValueType()));
3615 } else {
3616 Mask = Mask.lshr(c1-c2);
3617 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3618 DAG.getConstant(c1-c2, N1.getValueType()));
3619 }
3620 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3621 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003622 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003623 }
Bill Wendling88103372009-01-30 21:37:17 +00003624 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003625 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3626 SDValue HiBitsMask =
3627 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3628 VT.getSizeInBits() -
3629 N1C->getZExtValue()),
3630 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003631 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003632 HiBitsMask);
3633 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003634
Evan Chenge5b51ac2010-04-17 06:13:15 +00003635 if (N1C) {
3636 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3637 if (NewSHL.getNode())
3638 return NewSHL;
3639 }
3640
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003641 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003642}
3643
Dan Gohman475871a2008-07-27 21:46:04 +00003644SDValue DAGCombiner::visitSRA(SDNode *N) {
3645 SDValue N0 = N->getOperand(0);
3646 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003647 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3648 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003649 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003650 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003651
Bill Wendling88103372009-01-30 21:37:17 +00003652 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003653 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003654 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003655 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003656 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003657 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003658 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003659 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003660 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003661 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003662 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003663 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003664 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003665 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003666 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003667 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3668 // sext_inreg.
3669 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003670 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003671 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3672 if (VT.isVector())
3673 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3674 ExtVT, VT.getVectorNumElements());
3675 if ((!LegalOperations ||
3676 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003677 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003678 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003679 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003680
Bill Wendling88103372009-01-30 21:37:17 +00003681 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003682 if (N1C && N0.getOpcode() == ISD::SRA) {
3683 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003684 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003685 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003686 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003687 DAG.getConstant(Sum, N1C->getValueType(0)));
3688 }
3689 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003690
Bill Wendling88103372009-01-30 21:37:17 +00003691 // fold (sra (shl X, m), (sub result_size, n))
3692 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003693 // result_size - n != m.
3694 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003695 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003696 if (N0.getOpcode() == ISD::SHL) {
3697 // Get the two constanst of the shifts, CN0 = m, CN = n.
3698 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3699 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003700 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003701 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003702 EVT::getIntegerVT(*DAG.getContext(),
3703 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003704 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003705 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003706
Scott Michelfdc40a02009-02-17 22:15:04 +00003707 // If the shift is not a no-op (in which case this should be just a sign
3708 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003709 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003710 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003711 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003712 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3713 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003714 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003715
Owen Anderson95771af2011-02-25 21:41:48 +00003716 SDValue Amt = DAG.getConstant(ShiftAmt,
3717 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003718 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3719 N0.getOperand(0), Amt);
3720 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3721 Shift);
3722 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3723 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003724 }
3725 }
3726 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003727
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003728 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003729 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003730 N1.getOperand(0).getOpcode() == ISD::AND &&
3731 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003732 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003733 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003734 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003735 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003736 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003737 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003738 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003739 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003740 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003741 DAG.getNode(ISD::TRUNCATE,
3742 N->getDebugLoc(),
3743 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003744 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003745 }
3746 }
3747
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003748 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3749 // if c1 is equal to the number of bits the trunc removes
3750 if (N0.getOpcode() == ISD::TRUNCATE &&
3751 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3752 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3753 N0.getOperand(0).hasOneUse() &&
3754 N0.getOperand(0).getOperand(1).hasOneUse() &&
3755 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3756 EVT LargeVT = N0.getOperand(0).getValueType();
3757 ConstantSDNode *LargeShiftAmt =
3758 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3759
3760 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3761 LargeShiftAmt->getZExtValue()) {
3762 SDValue Amt =
3763 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003764 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003765 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3766 N0.getOperand(0).getOperand(0), Amt);
3767 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3768 }
3769 }
3770
Scott Michelfdc40a02009-02-17 22:15:04 +00003771 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003772 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3773 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003774
3775
Nate Begeman1d4d4142005-09-01 00:19:25 +00003776 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003777 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003778 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003779
Evan Chenge5b51ac2010-04-17 06:13:15 +00003780 if (N1C) {
3781 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3782 if (NewSRA.getNode())
3783 return NewSRA;
3784 }
3785
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003786 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003787}
3788
Dan Gohman475871a2008-07-27 21:46:04 +00003789SDValue DAGCombiner::visitSRL(SDNode *N) {
3790 SDValue N0 = N->getOperand(0);
3791 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003792 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3793 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003794 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003795 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003796
Nate Begeman1d4d4142005-09-01 00:19:25 +00003797 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003798 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003799 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003800 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003801 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003802 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003803 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003804 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003805 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003806 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003807 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003808 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003809 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003810 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003811 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003812 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003813
Bill Wendling88103372009-01-30 21:37:17 +00003814 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003815 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003816 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003817 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3818 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003819 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003820 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003821 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003822 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003823 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003824
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003825 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003826 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3827 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003828 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003829 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003830 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3831 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003832 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3833 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003834 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003835 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003836 if (c1 + OpSizeInBits == InnerShiftSize) {
3837 if (c1 + c2 >= InnerShiftSize)
3838 return DAG.getConstant(0, VT);
3839 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003840 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003841 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003842 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003843 }
3844 }
3845
Chris Lattnerefcddc32010-04-15 05:28:43 +00003846 // fold (srl (shl x, c), c) -> (and x, cst2)
3847 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3848 N0.getValueSizeInBits() <= 64) {
3849 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3850 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3851 DAG.getConstant(~0ULL >> ShAmt, VT));
3852 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003853
Scott Michelfdc40a02009-02-17 22:15:04 +00003854
Chris Lattner06afe072006-05-05 22:53:17 +00003855 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3856 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3857 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003858 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003859 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003860 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003861
Evan Chenge5b51ac2010-04-17 06:13:15 +00003862 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003863 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003864 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003865 N0.getOperand(0),
3866 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003867 AddToWorkList(SmallShift.getNode());
3868 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3869 }
Chris Lattner06afe072006-05-05 22:53:17 +00003870 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003871
Chris Lattner3657ffe2006-10-12 20:23:19 +00003872 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3873 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003874 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003875 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003876 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003877 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003878
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003879 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003880 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003881 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003882 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003883 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003884
Chris Lattner350bec02006-04-02 06:11:11 +00003885 // If any of the input bits are KnownOne, then the input couldn't be all
3886 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003887 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003888
Chris Lattner350bec02006-04-02 06:11:11 +00003889 // If all of the bits input the to ctlz node are known to be zero, then
3890 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003891 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00003892 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003893
Chris Lattner350bec02006-04-02 06:11:11 +00003894 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003895 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003896 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003897 // could be set on input to the CTLZ node. If this bit is set, the SRL
3898 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3899 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003900 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003901 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003902
Chris Lattner350bec02006-04-02 06:11:11 +00003903 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003904 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003905 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003906 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003907 }
Bill Wendling88103372009-01-30 21:37:17 +00003908
3909 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3910 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003911 }
3912 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003913
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003914 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003915 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003916 N1.getOperand(0).getOpcode() == ISD::AND &&
3917 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003918 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003919 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003920 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003921 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003922 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003923 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003924 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003925 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003926 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003927 DAG.getNode(ISD::TRUNCATE,
3928 N->getDebugLoc(),
3929 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003930 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003931 }
3932 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003933
Chris Lattner61a4c072007-04-18 03:06:49 +00003934 // fold operands of srl based on knowledge that the low bits are not
3935 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003936 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3937 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003938
Evan Cheng9ab2b982009-12-18 21:31:31 +00003939 if (N1C) {
3940 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3941 if (NewSRL.getNode())
3942 return NewSRL;
3943 }
3944
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003945 // Attempt to convert a srl of a load into a narrower zero-extending load.
3946 SDValue NarrowLoad = ReduceLoadWidth(N);
3947 if (NarrowLoad.getNode())
3948 return NarrowLoad;
3949
Evan Cheng9ab2b982009-12-18 21:31:31 +00003950 // Here is a common situation. We want to optimize:
3951 //
3952 // %a = ...
3953 // %b = and i32 %a, 2
3954 // %c = srl i32 %b, 1
3955 // brcond i32 %c ...
3956 //
3957 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003958 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00003959 // %a = ...
3960 // %b = and %a, 2
3961 // %c = setcc eq %b, 0
3962 // brcond %c ...
3963 //
3964 // However when after the source operand of SRL is optimized into AND, the SRL
3965 // itself may not be optimized further. Look for it and add the BRCOND into
3966 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00003967 if (N->hasOneUse()) {
3968 SDNode *Use = *N->use_begin();
3969 if (Use->getOpcode() == ISD::BRCOND)
3970 AddToWorkList(Use);
3971 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3972 // Also look pass the truncate.
3973 Use = *Use->use_begin();
3974 if (Use->getOpcode() == ISD::BRCOND)
3975 AddToWorkList(Use);
3976 }
3977 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00003978
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003979 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00003980}
3981
Dan Gohman475871a2008-07-27 21:46:04 +00003982SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3983 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003984 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003985
3986 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003987 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003988 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003989 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003990}
3991
Chandler Carruth63974b22011-12-13 01:56:10 +00003992SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
3993 SDValue N0 = N->getOperand(0);
3994 EVT VT = N->getValueType(0);
3995
3996 // fold (ctlz_zero_undef c1) -> c2
3997 if (isa<ConstantSDNode>(N0))
3998 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3999 return SDValue();
4000}
4001
Dan Gohman475871a2008-07-27 21:46:04 +00004002SDValue DAGCombiner::visitCTTZ(SDNode *N) {
4003 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004004 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004005
Nate Begeman1d4d4142005-09-01 00:19:25 +00004006 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004007 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004008 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004009 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004010}
4011
Chandler Carruth63974b22011-12-13 01:56:10 +00004012SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
4013 SDValue N0 = N->getOperand(0);
4014 EVT VT = N->getValueType(0);
4015
4016 // fold (cttz_zero_undef c1) -> c2
4017 if (isa<ConstantSDNode>(N0))
4018 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
4019 return SDValue();
4020}
4021
Dan Gohman475871a2008-07-27 21:46:04 +00004022SDValue DAGCombiner::visitCTPOP(SDNode *N) {
4023 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004024 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004025
Nate Begeman1d4d4142005-09-01 00:19:25 +00004026 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004027 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004028 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004029 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004030}
4031
Dan Gohman475871a2008-07-27 21:46:04 +00004032SDValue DAGCombiner::visitSELECT(SDNode *N) {
4033 SDValue N0 = N->getOperand(0);
4034 SDValue N1 = N->getOperand(1);
4035 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004036 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4037 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4038 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00004039 EVT VT = N->getValueType(0);
4040 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00004041
Bill Wendling34584e62009-01-30 22:02:18 +00004042 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004043 if (N1 == N2)
4044 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004045 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004046 if (N0C && !N0C->isNullValue())
4047 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004048 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00004049 if (N0C && N0C->isNullValue())
4050 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004051 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004052 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00004053 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4054 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004055 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004056 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004057 (VT0.isInteger() &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00004058 TLI.getBooleanContents(false) ==
4059 TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004060 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004061 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004062 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00004063 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
4064 N0, DAG.getConstant(1, VT0));
4065 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
4066 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004067 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004068 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00004069 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
4070 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004071 }
Bill Wendling34584e62009-01-30 22:02:18 +00004072 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004073 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00004074 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004075 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004076 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004077 }
Bill Wendling34584e62009-01-30 22:02:18 +00004078 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004079 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +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::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004083 }
Bill Wendling34584e62009-01-30 22:02:18 +00004084 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004085 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00004086 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
4087 // fold (select X, X, Y) -> (or X, Y)
4088 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004089 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00004090 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4091 // fold (select X, Y, X) -> (and X, Y)
4092 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004093 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00004094 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004095
Chris Lattner40c62d52005-10-18 06:04:22 +00004096 // If we can fold this based on the true/false value, do so.
4097 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004098 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004099
Nate Begeman44728a72005-09-19 22:34:01 +00004100 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004101 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004102 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004103 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004104 // having to say they don't support SELECT_CC on every type the DAG knows
4105 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004106 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004107 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004108 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4109 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004110 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004111 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004112 }
Bill Wendling34584e62009-01-30 22:02:18 +00004113
Dan Gohman475871a2008-07-27 21:46:04 +00004114 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004115}
4116
Dan Gohman475871a2008-07-27 21:46:04 +00004117SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4118 SDValue N0 = N->getOperand(0);
4119 SDValue N1 = N->getOperand(1);
4120 SDValue N2 = N->getOperand(2);
4121 SDValue N3 = N->getOperand(3);
4122 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004123 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004124
Nate Begeman44728a72005-09-19 22:34:01 +00004125 // fold select_cc lhs, rhs, x, x, cc -> x
4126 if (N2 == N3)
4127 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004128
Chris Lattner5f42a242006-09-20 06:19:26 +00004129 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004130 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004131 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004132 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004133
Gabor Greifba36cb52008-08-28 21:40:38 +00004134 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004135 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004136 return N2; // cond always true -> true val
4137 else
4138 return N3; // cond always false -> false val
4139 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004140
Chris Lattner5f42a242006-09-20 06:19:26 +00004141 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004142 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004143 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4144 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004145 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004146
Chris Lattner40c62d52005-10-18 06:04:22 +00004147 // If we can fold this based on the true/false value, do so.
4148 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004149 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004150
Nate Begeman44728a72005-09-19 22:34:01 +00004151 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004152 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004153}
4154
Dan Gohman475871a2008-07-27 21:46:04 +00004155SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004156 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004157 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4158 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004159}
4160
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004161// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004162// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004163// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004164// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004165static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004166 unsigned ExtOpc,
4167 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004168 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004169 bool HasCopyToRegUses = false;
4170 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004171 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4172 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004173 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004174 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004175 if (User == N)
4176 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004177 if (UI.getUse().getResNo() != N0.getResNo())
4178 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004179 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004180 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004181 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4182 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4183 // Sign bits will be lost after a zext.
4184 return false;
4185 bool Add = false;
4186 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004187 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004188 if (UseOp == N0)
4189 continue;
4190 if (!isa<ConstantSDNode>(UseOp))
4191 return false;
4192 Add = true;
4193 }
4194 if (Add)
4195 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004196 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004197 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004198 // If truncates aren't free and there are users we can't
4199 // extend, it isn't worthwhile.
4200 if (!isTruncFree)
4201 return false;
4202 // Remember if this value is live-out.
4203 if (User->getOpcode() == ISD::CopyToReg)
4204 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004205 }
4206
4207 if (HasCopyToRegUses) {
4208 bool BothLiveOut = false;
4209 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4210 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004211 SDUse &Use = UI.getUse();
4212 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4213 BothLiveOut = true;
4214 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004215 }
4216 }
4217 if (BothLiveOut)
4218 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004219 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004220 return ExtendNodes.size();
4221 }
4222 return true;
4223}
4224
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004225void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4226 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4227 ISD::NodeType ExtType) {
4228 // Extend SetCC uses if necessary.
4229 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4230 SDNode *SetCC = SetCCs[i];
4231 SmallVector<SDValue, 4> Ops;
4232
4233 for (unsigned j = 0; j != 2; ++j) {
4234 SDValue SOp = SetCC->getOperand(j);
4235 if (SOp == Trunc)
4236 Ops.push_back(ExtLoad);
4237 else
4238 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4239 }
4240
4241 Ops.push_back(SetCC->getOperand(2));
4242 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4243 &Ops[0], Ops.size()));
4244 }
4245}
4246
Dan Gohman475871a2008-07-27 21:46:04 +00004247SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4248 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004249 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004250
Nate Begeman1d4d4142005-09-01 00:19:25 +00004251 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004252 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004253 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004254
Nate Begeman1d4d4142005-09-01 00:19:25 +00004255 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004256 // fold (sext (aext x)) -> (sext x)
4257 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004258 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4259 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004260
Chris Lattner22558872007-02-26 03:13:59 +00004261 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004262 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4263 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004264 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4265 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004266 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4267 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004268 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004269 // CombineTo deleted the truncate, if needed, but not what's under it.
4270 AddToWorkList(oye);
4271 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004272 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004273 }
Evan Chengc88138f2007-03-22 01:54:19 +00004274
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004275 // See if the value being truncated is already sign extended. If so, just
4276 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004277 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004278 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4279 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4280 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004281 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004282
Chris Lattner22558872007-02-26 03:13:59 +00004283 if (OpBits == DestBits) {
4284 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4285 // bits, it is already ready.
4286 if (NumSignBits > DestBits-MidBits)
4287 return Op;
4288 } else if (OpBits < DestBits) {
4289 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4290 // bits, just sext from i32.
4291 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004292 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004293 } else {
4294 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4295 // bits, just truncate to i32.
4296 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004297 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004298 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004299
Chris Lattner22558872007-02-26 03:13:59 +00004300 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004301 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4302 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004303 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004304 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004305 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004306 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4307 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004308 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004309 }
Chris Lattner6007b842006-09-21 06:00:20 +00004310 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004311
Evan Cheng110dec22005-12-14 02:19:23 +00004312 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004313 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004314 // on vectors in one instruction. We only perform this transformation on
4315 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004316 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004317 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004318 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004319 bool DoXform = true;
4320 SmallVector<SDNode*, 4> SetCCs;
4321 if (!N0.hasOneUse())
4322 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4323 if (DoXform) {
4324 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004325 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004326 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004327 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004328 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004329 LN0->isVolatile(), LN0->isNonTemporal(),
4330 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004331 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004332 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4333 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004334 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004335 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4336 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004337 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004338 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004339 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004340
4341 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4342 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004343 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4344 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004345 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004346 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004347 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004348 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004349 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004350 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004351 LN0->getBasePtr(), LN0->getPointerInfo(),
4352 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004353 LN0->isVolatile(), LN0->isNonTemporal(),
4354 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004355 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004356 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004357 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4358 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004359 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004360 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004361 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004362 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004363
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004364 // fold (sext (and/or/xor (load x), cst)) ->
4365 // (and/or/xor (sextload x), (sext cst))
4366 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4367 N0.getOpcode() == ISD::XOR) &&
4368 isa<LoadSDNode>(N0.getOperand(0)) &&
4369 N0.getOperand(1).getOpcode() == ISD::Constant &&
4370 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4371 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4372 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4373 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4374 bool DoXform = true;
4375 SmallVector<SDNode*, 4> SetCCs;
4376 if (!N0.hasOneUse())
4377 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4378 SetCCs, TLI);
4379 if (DoXform) {
4380 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4381 LN0->getChain(), LN0->getBasePtr(),
4382 LN0->getPointerInfo(),
4383 LN0->getMemoryVT(),
4384 LN0->isVolatile(),
4385 LN0->isNonTemporal(),
4386 LN0->getAlignment());
4387 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4388 Mask = Mask.sext(VT.getSizeInBits());
4389 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4390 ExtLoad, DAG.getConstant(Mask, VT));
4391 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4392 N0.getOperand(0).getDebugLoc(),
4393 N0.getOperand(0).getValueType(), ExtLoad);
4394 CombineTo(N, And);
4395 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4396 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4397 ISD::SIGN_EXTEND);
4398 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4399 }
4400 }
4401 }
4402
Chris Lattner20a35c32007-04-11 05:32:27 +00004403 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004404 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004405 // Only do this before legalize for now.
4406 if (VT.isVector() && !LegalOperations) {
4407 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004408 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4409 // of the same size as the compared operands. Only optimize sext(setcc())
4410 // if this is the case.
4411 EVT SVT = TLI.getSetCCResultType(N0VT);
4412
4413 // We know that the # elements of the results is the same as the
4414 // # elements of the compare (and the # elements of the compare result
4415 // for that matter). Check to see that they are the same size. If so,
4416 // we know that the element size of the sext'd result matches the
4417 // element size of the compare operands.
4418 if (VT.getSizeInBits() == SVT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004419 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004420 N0.getOperand(1),
4421 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004422 // If the desired elements are smaller or larger than the source
4423 // elements we can use a matching integer vector type and then
4424 // truncate/sign extend
Craig Topper0eb5dad2012-09-29 07:18:53 +00004425 EVT MatchingElementType =
4426 EVT::getIntegerVT(*DAG.getContext(),
4427 N0VT.getScalarType().getSizeInBits());
4428 EVT MatchingVectorType =
4429 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4430 N0VT.getVectorNumElements());
Nadav Rotem2e506192012-04-11 08:26:11 +00004431
Craig Topper0eb5dad2012-09-29 07:18:53 +00004432 if (SVT == MatchingVectorType) {
4433 SDValue VsetCC = DAG.getSetCC(N->getDebugLoc(), MatchingVectorType,
4434 N0.getOperand(0), N0.getOperand(1),
4435 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4436 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Dan Gohman3ce89f42010-04-30 17:19:19 +00004437 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004438 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004439
Chris Lattner2b7a2712009-07-08 00:31:33 +00004440 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004441 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004442 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004443 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004444 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004445 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004446 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004447 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004448 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004449 if (!LegalOperations ||
4450 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4451 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4452 DAG.getSetCC(N->getDebugLoc(),
4453 TLI.getSetCCResultType(VT),
4454 N0.getOperand(0), N0.getOperand(1),
4455 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4456 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004457 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004458
Dan Gohman8f0ad582008-04-28 16:58:24 +00004459 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004460 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004461 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004462 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004463
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004464 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004465}
4466
Rafael Espindoladecbc432012-04-09 16:06:03 +00004467// isTruncateOf - If N is a truncate of some other value, return true, record
4468// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4469// This function computes KnownZero to avoid a duplicated call to
4470// ComputeMaskedBits in the caller.
4471static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4472 APInt &KnownZero) {
4473 APInt KnownOne;
4474 if (N->getOpcode() == ISD::TRUNCATE) {
4475 Op = N->getOperand(0);
4476 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4477 return true;
4478 }
4479
4480 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4481 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4482 return false;
4483
4484 SDValue Op0 = N->getOperand(0);
4485 SDValue Op1 = N->getOperand(1);
4486 assert(Op0.getValueType() == Op1.getValueType());
4487
4488 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4489 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004490 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004491 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004492 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004493 Op = Op0;
4494 else
4495 return false;
4496
4497 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4498
4499 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4500 return false;
4501
4502 return true;
4503}
4504
Dan Gohman475871a2008-07-27 21:46:04 +00004505SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4506 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004507 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004508
Nate Begeman1d4d4142005-09-01 00:19:25 +00004509 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004510 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004511 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004512 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004513 // fold (zext (aext x)) -> (zext x)
4514 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004515 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4516 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004517
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004518 // fold (zext (truncate x)) -> (zext x) or
4519 // (zext (truncate x)) -> (truncate x)
4520 // This is valid when the truncated bits of x are already zero.
4521 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004522 SDValue Op;
4523 APInt KnownZero;
4524 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4525 APInt TruncatedBits =
4526 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4527 APInt(Op.getValueSizeInBits(), 0) :
4528 APInt::getBitsSet(Op.getValueSizeInBits(),
4529 N0.getValueSizeInBits(),
4530 std::min(Op.getValueSizeInBits(),
4531 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004532 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004533 if (VT.bitsGT(Op.getValueType()))
4534 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4535 if (VT.bitsLT(Op.getValueType()))
4536 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4537
4538 return Op;
4539 }
4540 }
4541
Evan Chengc88138f2007-03-22 01:54:19 +00004542 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4543 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004544 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004545 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4546 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004547 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4548 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004549 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004550 // CombineTo deleted the truncate, if needed, but not what's under it.
4551 AddToWorkList(oye);
4552 }
Eli Friedmane545d382011-04-16 23:25:34 +00004553 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004554 }
Evan Chengc88138f2007-03-22 01:54:19 +00004555 }
4556
Chris Lattner6007b842006-09-21 06:00:20 +00004557 // fold (zext (truncate x)) -> (and x, mask)
4558 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004559 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004560
4561 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4562 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4563 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4564 if (NarrowLoad.getNode()) {
4565 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4566 if (NarrowLoad.getNode() != N0.getNode()) {
4567 CombineTo(N0.getNode(), NarrowLoad);
4568 // CombineTo deleted the truncate, if needed, but not what's under it.
4569 AddToWorkList(oye);
4570 }
4571 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4572 }
4573
Dan Gohman475871a2008-07-27 21:46:04 +00004574 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004575 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004576 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004577 AddToWorkList(Op.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004578 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004579 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004580 AddToWorkList(Op.getNode());
Chris Lattner6007b842006-09-21 06:00:20 +00004581 }
Dan Gohman87862e72009-12-11 21:31:27 +00004582 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4583 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004584 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004585
Dan Gohman97121ba2009-04-08 00:15:30 +00004586 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4587 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004588 if (N0.getOpcode() == ISD::AND &&
4589 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004590 N0.getOperand(1).getOpcode() == ISD::Constant &&
4591 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4592 N0.getValueType()) ||
4593 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004594 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004595 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004596 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004597 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004598 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004599 }
Dan Gohman220a8232008-03-03 23:51:38 +00004600 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004601 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004602 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4603 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004604 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004605
Evan Cheng110dec22005-12-14 02:19:23 +00004606 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004607 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004608 // on vectors in one instruction. We only perform this transformation on
4609 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004610 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004611 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004612 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004613 bool DoXform = true;
4614 SmallVector<SDNode*, 4> SetCCs;
4615 if (!N0.hasOneUse())
4616 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4617 if (DoXform) {
4618 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004619 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004620 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004621 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004622 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004623 LN0->isVolatile(), LN0->isNonTemporal(),
4624 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004625 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004626 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4627 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004628 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004629
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004630 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4631 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004632 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004633 }
Evan Cheng110dec22005-12-14 02:19:23 +00004634 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004635
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004636 // fold (zext (and/or/xor (load x), cst)) ->
4637 // (and/or/xor (zextload x), (zext cst))
4638 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4639 N0.getOpcode() == ISD::XOR) &&
4640 isa<LoadSDNode>(N0.getOperand(0)) &&
4641 N0.getOperand(1).getOpcode() == ISD::Constant &&
4642 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4643 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4644 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4645 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4646 bool DoXform = true;
4647 SmallVector<SDNode*, 4> SetCCs;
4648 if (!N0.hasOneUse())
4649 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4650 SetCCs, TLI);
4651 if (DoXform) {
4652 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4653 LN0->getChain(), LN0->getBasePtr(),
4654 LN0->getPointerInfo(),
4655 LN0->getMemoryVT(),
4656 LN0->isVolatile(),
4657 LN0->isNonTemporal(),
4658 LN0->getAlignment());
4659 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4660 Mask = Mask.zext(VT.getSizeInBits());
4661 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4662 ExtLoad, DAG.getConstant(Mask, VT));
4663 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4664 N0.getOperand(0).getDebugLoc(),
4665 N0.getOperand(0).getValueType(), ExtLoad);
4666 CombineTo(N, And);
4667 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4668 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4669 ISD::ZERO_EXTEND);
4670 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4671 }
4672 }
4673 }
4674
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004675 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4676 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004677 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4678 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004679 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004680 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004681 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004682 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004683 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004684 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004685 LN0->getBasePtr(), LN0->getPointerInfo(),
4686 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004687 LN0->isVolatile(), LN0->isNonTemporal(),
4688 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004689 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004690 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004691 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4692 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004693 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004694 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004695 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004696 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004697
Chris Lattner20a35c32007-04-11 05:32:27 +00004698 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004699 if (!LegalOperations && VT.isVector()) {
4700 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4701 // Only do this before legalize for now.
4702 EVT N0VT = N0.getOperand(0).getValueType();
4703 EVT EltVT = VT.getVectorElementType();
4704 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4705 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004706 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004707 // We know that the # elements of the results is the same as the
4708 // # elements of the compare (and the # elements of the compare result
4709 // for that matter). Check to see that they are the same size. If so,
4710 // we know that the element size of the sext'd result matches the
4711 // element size of the compare operands.
4712 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004713 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004714 N0.getOperand(1),
4715 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4716 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4717 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004718
4719 // If the desired elements are smaller or larger than the source
4720 // elements we can use a matching integer vector type and then
4721 // truncate/sign extend
4722 EVT MatchingElementType =
4723 EVT::getIntegerVT(*DAG.getContext(),
4724 N0VT.getScalarType().getSizeInBits());
4725 EVT MatchingVectorType =
4726 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4727 N0VT.getVectorNumElements());
4728 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004729 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004730 N0.getOperand(1),
4731 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4732 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4733 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4734 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4735 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004736 }
4737
4738 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004739 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004740 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004741 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004742 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004743 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004744 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004745
Evan Cheng9818c042009-12-15 03:00:32 +00004746 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004747 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004748 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004749 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4750 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004751 SDValue ShAmt = N0.getOperand(1);
4752 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004753 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004754 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004755 // If the original shl may be shifting out bits, do not perform this
4756 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004757 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4758 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4759 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004760 return SDValue();
4761 }
Chris Lattnere0751182011-02-13 19:09:16 +00004762
4763 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004764
4765 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004766 if (VT.getSizeInBits() >= 256)
4767 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004768
Chris Lattnere0751182011-02-13 19:09:16 +00004769 return DAG.getNode(N0.getOpcode(), DL, VT,
4770 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4771 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004772 }
4773
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004774 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004775}
4776
Dan Gohman475871a2008-07-27 21:46:04 +00004777SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4778 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004779 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004780
Chris Lattner5ffc0662006-05-05 05:58:59 +00004781 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004782 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004783 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004784 // fold (aext (aext x)) -> (aext x)
4785 // fold (aext (zext x)) -> (zext x)
4786 // fold (aext (sext x)) -> (sext x)
4787 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4788 N0.getOpcode() == ISD::ZERO_EXTEND ||
4789 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004790 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004791
Evan Chengc88138f2007-03-22 01:54:19 +00004792 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4793 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4794 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004795 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4796 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004797 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4798 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004799 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004800 // CombineTo deleted the truncate, if needed, but not what's under it.
4801 AddToWorkList(oye);
4802 }
Eli Friedmane545d382011-04-16 23:25:34 +00004803 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004804 }
Evan Chengc88138f2007-03-22 01:54:19 +00004805 }
4806
Chris Lattner84750582006-09-20 06:29:17 +00004807 // fold (aext (truncate x))
4808 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004809 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004810 if (TruncOp.getValueType() == VT)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00004811 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004812 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004813 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4814 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004815 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004816
Dan Gohman97121ba2009-04-08 00:15:30 +00004817 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4818 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004819 if (N0.getOpcode() == ISD::AND &&
4820 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004821 N0.getOperand(1).getOpcode() == ISD::Constant &&
4822 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4823 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004824 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004825 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004826 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004827 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004828 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004829 }
Dan Gohman220a8232008-03-03 23:51:38 +00004830 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004831 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004832 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4833 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004834 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004835
Chris Lattner5ffc0662006-05-05 05:58:59 +00004836 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004837 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004838 // on vectors in one instruction. We only perform this transformation on
4839 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004840 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004841 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004842 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004843 bool DoXform = true;
4844 SmallVector<SDNode*, 4> SetCCs;
4845 if (!N0.hasOneUse())
4846 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4847 if (DoXform) {
4848 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004849 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004850 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004851 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004852 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004853 LN0->isVolatile(), LN0->isNonTemporal(),
4854 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004855 CombineTo(N, ExtLoad);
4856 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4857 N0.getValueType(), ExtLoad);
4858 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004859 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4860 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004861 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4862 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004863 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004864
Chris Lattner5ffc0662006-05-05 05:58:59 +00004865 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4866 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4867 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004868 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004869 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004870 N0.hasOneUse()) {
4871 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004872 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004873 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4874 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004875 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004876 LN0->isVolatile(), LN0->isNonTemporal(),
4877 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004878 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004879 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004880 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4881 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004882 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004883 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004884 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004885
Chris Lattner20a35c32007-04-11 05:32:27 +00004886 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004887 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4888 // Only do this before legalize for now.
4889 if (VT.isVector() && !LegalOperations) {
4890 EVT N0VT = N0.getOperand(0).getValueType();
4891 // We know that the # elements of the results is the same as the
4892 // # elements of the compare (and the # elements of the compare result
4893 // for that matter). Check to see that they are the same size. If so,
4894 // we know that the element size of the sext'd result matches the
4895 // element size of the compare operands.
4896 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004897 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004898 N0.getOperand(1),
4899 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004900 // If the desired elements are smaller or larger than the source
4901 // elements we can use a matching integer vector type and then
4902 // truncate/sign extend
4903 else {
Duncan Sands34727662010-07-12 08:16:59 +00004904 EVT MatchingElementType =
4905 EVT::getIntegerVT(*DAG.getContext(),
4906 N0VT.getScalarType().getSizeInBits());
4907 EVT MatchingVectorType =
4908 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4909 N0VT.getVectorNumElements());
4910 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004911 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004912 N0.getOperand(1),
4913 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4914 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004915 }
4916 }
4917
4918 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004919 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004920 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004921 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004922 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004923 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004924 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004925 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004926
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004927 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004928}
4929
Chris Lattner2b4c2792007-10-13 06:35:54 +00004930/// GetDemandedBits - See if the specified operand can be simplified with the
4931/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004932/// simpler operand, otherwise return a null SDValue.
4933SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004934 switch (V.getOpcode()) {
4935 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004936 case ISD::Constant: {
4937 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4938 assert(CV != 0 && "Const value should be ConstSDNode.");
4939 const APInt &CVal = CV->getAPIntValue();
4940 APInt NewVal = CVal & Mask;
4941 if (NewVal != CVal) {
4942 return DAG.getConstant(NewVal, V.getValueType());
4943 }
4944 break;
4945 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004946 case ISD::OR:
4947 case ISD::XOR:
4948 // If the LHS or RHS don't contribute bits to the or, drop them.
4949 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4950 return V.getOperand(1);
4951 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4952 return V.getOperand(0);
4953 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004954 case ISD::SRL:
4955 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00004956 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00004957 break;
4958 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4959 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004960 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00004961
Dan Gohmancc91d632009-01-03 19:22:06 +00004962 // Watch out for shift count overflow though.
4963 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004964 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00004965 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00004966 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004967 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00004968 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00004969 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004970 }
Dan Gohman475871a2008-07-27 21:46:04 +00004971 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00004972}
4973
Evan Chengc88138f2007-03-22 01:54:19 +00004974/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4975/// bits and then truncated to a narrower type and where N is a multiple
4976/// of number of bits of the narrower type, transform it to a narrower load
4977/// from address + N / num of bits of new type. If the result is to be
4978/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00004979SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00004980 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004981
Evan Chengc88138f2007-03-22 01:54:19 +00004982 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00004983 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004984 EVT VT = N->getValueType(0);
4985 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00004986
Dan Gohman7f8613e2008-08-14 20:04:46 +00004987 // This transformation isn't valid for vector loads.
4988 if (VT.isVector())
4989 return SDValue();
4990
Dan Gohmand1996362010-01-09 02:13:55 +00004991 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00004992 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00004993 if (Opc == ISD::SIGN_EXTEND_INREG) {
4994 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00004995 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004996 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00004997 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004998 ExtType = ISD::ZEXTLOAD;
4999 N0 = SDValue(N, 0);
5000 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
5001 if (!N01) return SDValue();
5002 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
5003 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00005004 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00005005 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
5006 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005007
Owen Andersone50ed302009-08-10 22:56:29 +00005008 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00005009
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005010 // Do not generate loads of non-round integer types since these can
5011 // be expensive (and would be wrong if the type is not byte sized).
5012 if (!ExtVT.isRound())
5013 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005014
Evan Chengc88138f2007-03-22 01:54:19 +00005015 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005016 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00005017 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005018 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005019 // Is the shift amount a multiple of size of VT?
5020 if ((ShAmt & (EVTBits-1)) == 0) {
5021 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00005022 // Is the load width a multiple of size of VT?
5023 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005024 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005025 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005026
Chris Lattnercbf68df2010-12-22 08:02:57 +00005027 // At this point, we must have a load or else we can't do the transform.
5028 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005029
Chris Lattner2831a192010-10-01 05:36:09 +00005030 // If the shift amount is larger than the input type then we're not
5031 // accessing any of the loaded bytes. If the load was a zextload/extload
5032 // then the result of the shift+trunc is zero/undef (handled elsewhere).
5033 // If the load was a sextload then the result is a splat of the sign bit
5034 // of the extended byte. This is not worth optimizing for.
Chris Lattnercbf68df2010-12-22 08:02:57 +00005035 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00005036 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005037 }
5038 }
5039
Dan Gohman394d6292010-11-03 01:47:46 +00005040 // If the load is shifted left (and the result isn't shifted back right),
5041 // we can fold the truncate through the shift.
5042 unsigned ShLeftAmt = 0;
5043 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00005044 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00005045 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5046 ShLeftAmt = N01->getZExtValue();
5047 N0 = N0.getOperand(0);
5048 }
5049 }
Owen Anderson95771af2011-02-25 21:41:48 +00005050
Chris Lattner4c32bc22010-12-22 07:36:50 +00005051 // If we haven't found a load, we can't narrow it. Don't transform one with
5052 // multiple uses, this would require adding a new load.
5053 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
5054 // Don't change the width of a volatile load.
5055 cast<LoadSDNode>(N0)->isVolatile())
5056 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005057
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005058 // Verify that we are actually reducing a load width here.
5059 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005060 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005061
Chris Lattner4c32bc22010-12-22 07:36:50 +00005062 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5063 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005064
Evan Cheng16436df2012-06-26 01:19:33 +00005065 if (PtrType == MVT::Untyped || PtrType.isExtended())
5066 // It's not possible to generate a constant of extended or untyped type.
5067 return SDValue();
5068
Chris Lattner4c32bc22010-12-22 07:36:50 +00005069 // For big endian targets, we need to adjust the offset to the pointer to
5070 // load the correct bytes.
5071 if (TLI.isBigEndian()) {
5072 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5073 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5074 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005075 }
5076
Chris Lattner4c32bc22010-12-22 07:36:50 +00005077 uint64_t PtrOff = ShAmt / 8;
5078 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
5079 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
5080 PtrType, LN0->getBasePtr(),
5081 DAG.getConstant(PtrOff, PtrType));
5082 AddToWorkList(NewPtr.getNode());
5083
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005084 SDValue Load;
5085 if (ExtType == ISD::NON_EXTLOAD)
5086 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
5087 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005088 LN0->isVolatile(), LN0->isNonTemporal(),
5089 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005090 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00005091 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005092 LN0->getPointerInfo().getWithOffset(PtrOff),
5093 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5094 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005095
5096 // Replace the old load's chain with the new load's chain.
5097 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005098 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005099
5100 // Shift the result left, if we've swallowed a left shift.
5101 SDValue Result = Load;
5102 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005103 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005104 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5105 ShImmTy = VT;
5106 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
5107 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
5108 }
5109
5110 // Return the new loaded value.
5111 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005112}
5113
Dan Gohman475871a2008-07-27 21:46:04 +00005114SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5115 SDValue N0 = N->getOperand(0);
5116 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005117 EVT VT = N->getValueType(0);
5118 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005119 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005120 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005121
Nate Begeman1d4d4142005-09-01 00:19:25 +00005122 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005123 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00005124 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005125
Chris Lattner541a24f2006-05-06 22:43:44 +00005126 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005127 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005128 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005129
Nate Begeman646d7e22005-09-02 21:18:40 +00005130 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5131 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00005132 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00005133 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5134 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00005135 }
Chris Lattner4b37e872006-05-08 21:18:59 +00005136
Dan Gohman75dcf082008-07-31 00:50:31 +00005137 // fold (sext_in_reg (sext x)) -> (sext x)
5138 // fold (sext_in_reg (aext x)) -> (sext x)
5139 // if x is small enough.
5140 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5141 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005142 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5143 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00005144 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005145 }
5146
Chris Lattner95a5e052007-04-17 19:03:21 +00005147 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005148 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005149 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005150
Chris Lattner95a5e052007-04-17 19:03:21 +00005151 // fold operands of sext_in_reg based on knowledge that the top bits are not
5152 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005153 if (SimplifyDemandedBits(SDValue(N, 0)))
5154 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005155
Evan Chengc88138f2007-03-22 01:54:19 +00005156 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5157 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005158 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005159 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005160 return NarrowLoad;
5161
Bill Wendling8509c902009-01-30 22:33:24 +00005162 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005163 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005164 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5165 if (N0.getOpcode() == ISD::SRL) {
5166 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005167 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005168 // We can turn this into an SRA iff the input to the SRL is already sign
Chris Lattner4b37e872006-05-08 21:18:59 +00005169 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005170 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005171 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005172 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5173 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005174 }
5175 }
Evan Chengc88138f2007-03-22 01:54:19 +00005176
Nate Begemanded49632005-10-13 03:11:28 +00005177 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005178 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005179 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005180 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005181 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005182 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005183 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005184 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005185 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005186 LN0->getBasePtr(), LN0->getPointerInfo(),
5187 EVT,
David Greene1e559442010-02-15 17:00:31 +00005188 LN0->isVolatile(), LN0->isNonTemporal(),
5189 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005190 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005191 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005192 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005193 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005194 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005195 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005196 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005197 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005198 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005199 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005200 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005201 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005202 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005203 LN0->getBasePtr(), LN0->getPointerInfo(),
5204 EVT,
David Greene1e559442010-02-15 17:00:31 +00005205 LN0->isVolatile(), LN0->isNonTemporal(),
5206 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005207 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005208 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005209 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005210 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005211
5212 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5213 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5214 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5215 N0.getOperand(1), false);
5216 if (BSwap.getNode() != 0)
5217 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5218 BSwap, N1);
5219 }
5220
Dan Gohman475871a2008-07-27 21:46:04 +00005221 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005222}
5223
Dan Gohman475871a2008-07-27 21:46:04 +00005224SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5225 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005226 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005227 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005228
5229 // noop truncate
5230 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005231 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005232 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005233 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005234 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005235 // fold (truncate (truncate x)) -> (truncate x)
5236 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005237 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005238 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005239 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5240 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005241 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005242 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005243 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005244 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5245 N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005246 if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005247 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005248 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005249 // if the source and dest are the same type, we can drop both the extend
5250 // and the truncate.
5251 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005252 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005253
Nadav Rotemcc870a82012-02-05 11:39:23 +00005254 // Fold extract-and-trunc into a narrow extract. For example:
5255 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5256 // i32 y = TRUNCATE(i64 x)
5257 // -- becomes --
5258 // v16i8 b = BITCAST (v2i64 val)
5259 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5260 //
5261 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005262 // creates this pattern) and before operation legalization after which
5263 // we need to be more careful about the vector instructions that we generate.
5264 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5265 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5266
5267 EVT VecTy = N0.getOperand(0).getValueType();
5268 EVT ExTy = N0.getValueType();
5269 EVT TrTy = N->getValueType(0);
5270
5271 unsigned NumElem = VecTy.getVectorNumElements();
5272 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5273
5274 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5275 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5276
5277 SDValue EltNo = N0->getOperand(1);
5278 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5279 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005280 EVT IndexTy = N0->getOperand(1).getValueType();
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005281 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5282
5283 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5284 NVT, N0.getOperand(0));
5285
5286 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5287 N->getDebugLoc(), TrTy, V,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005288 DAG.getConstant(Index, IndexTy));
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005289 }
5290 }
5291
Chris Lattner2b4c2792007-10-13 06:35:54 +00005292 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005293 // only the low bits are being used.
5294 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005295 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005296 // may have different active low bits.
5297 if (!VT.isVector()) {
5298 SDValue Shorter =
5299 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5300 VT.getSizeInBits()));
5301 if (Shorter.getNode())
5302 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5303 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005304 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005305 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005306 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5307 SDValue Reduced = ReduceLoadWidth(N);
5308 if (Reduced.getNode())
5309 return Reduced;
5310 }
5311
5312 // Simplify the operands using demanded-bits information.
5313 if (!VT.isVector() &&
5314 SimplifyDemandedBits(SDValue(N, 0)))
5315 return SDValue(N, 0);
5316
Evan Chenge5b51ac2010-04-17 06:13:15 +00005317 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005318}
5319
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005320static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005321 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005322 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005323 return Elt.getNode();
5324 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005325}
5326
5327/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005328/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005329SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005330 assert(N->getOpcode() == ISD::BUILD_PAIR);
5331
Nate Begemanabc01992009-06-05 21:37:30 +00005332 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5333 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005334 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5335 LD1->getPointerInfo().getAddrSpace() !=
5336 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005337 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005338 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005339
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005340 if (ISD::isNON_EXTLoad(LD2) &&
5341 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005342 // If both are volatile this would reduce the number of volatile loads.
5343 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005344 !LD1->isVolatile() &&
5345 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005346 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005347 unsigned Align = LD1->getAlignment();
Micah Villmow3574eca2012-10-08 16:38:25 +00005348 unsigned NewAlign = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005349 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005350
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005351 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005352 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005353 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005354 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005355 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005356 }
Bill Wendling67a67682009-01-30 22:44:24 +00005357
Dan Gohman475871a2008-07-27 21:46:04 +00005358 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005359}
5360
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005361SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005362 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005363 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005364
Dan Gohman7f321562007-06-25 16:23:39 +00005365 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5366 // Only do this before legalize, since afterward the target may be depending
5367 // on the bitconvert.
5368 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005369 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005370 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005371 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005372 bool isSimple = true;
5373 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5374 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5375 N0.getOperand(i).getOpcode() != ISD::Constant &&
5376 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005377 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005378 break;
5379 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005380
Owen Andersone50ed302009-08-10 22:56:29 +00005381 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005382 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005383 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005384 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005385 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005386 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005387
Dan Gohman3dd168d2008-09-05 01:58:21 +00005388 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005389 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005390 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005391 if (Res.getNode() != N) {
5392 if (!LegalOperations ||
5393 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5394 return Res;
5395
5396 // Folding it resulted in an illegal node, and it's too late to
5397 // do that. Clean up the old node and forego the transformation.
5398 // Ideally this won't happen very often, because instcombine
5399 // and the earlier dagcombine runs (where illegal nodes are
5400 // permitted) should have folded most of them already.
5401 DAG.DeleteNode(Res.getNode());
5402 }
Chris Lattner94683772005-12-23 05:30:37 +00005403 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005404
Bill Wendling67a67682009-01-30 22:44:24 +00005405 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005406 if (N0.getOpcode() == ISD::BITCAST)
5407 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005408 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005409
Chris Lattner57104102005-12-23 05:44:41 +00005410 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005411 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005412 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005413 // Do not change the width of a volatile load.
5414 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005415 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005416 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Micah Villmow3574eca2012-10-08 16:38:25 +00005417 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005418 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005419 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005420
Evan Cheng59d5b682007-05-07 21:27:48 +00005421 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005422 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005423 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005424 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005425 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005426 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005427 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005428 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005429 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005430 Load.getValue(1));
5431 return Load;
5432 }
Chris Lattner57104102005-12-23 05:44:41 +00005433 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005434
Bill Wendling67a67682009-01-30 22:44:24 +00005435 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5436 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005437 // This often reduces constant pool loads.
Owen Anderson29f60f32012-04-02 22:10:29 +00005438 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) ||
5439 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) &&
Nadav Rotem91a7e012012-09-13 14:54:28 +00005440 N0.getNode()->hasOneUse() && VT.isInteger() &&
5441 !VT.isVector() && !N0.getValueType().isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005442 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005443 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005444 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005445
Duncan Sands83ec4b62008-06-06 12:08:01 +00005446 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005447 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005448 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5449 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005450 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005451 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5452 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005453 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005454
Bill Wendling67a67682009-01-30 22:44:24 +00005455 // fold (bitconvert (fcopysign cst, x)) ->
5456 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5457 // Note that we don't handle (copysign x, cst) because this can always be
5458 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005459 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005460 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005461 VT.isInteger() && !VT.isVector()) {
5462 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005463 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005464 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005465 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005466 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005467 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005468
Duncan Sands25cf2272008-11-24 14:53:14 +00005469 // If X has a different width than the result/lhs, sext it or truncate it.
5470 unsigned VTWidth = VT.getSizeInBits();
5471 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005472 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005473 AddToWorkList(X.getNode());
5474 } else if (OrigXWidth > VTWidth) {
5475 // To get the sign bit in the right place, we have to shift it right
5476 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005477 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005478 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005479 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5480 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005481 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005482 AddToWorkList(X.getNode());
5483 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005484
Duncan Sands25cf2272008-11-24 14:53:14 +00005485 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005486 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005487 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005488 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005489
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005490 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005491 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005492 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005493 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005494 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005495
Bill Wendling67a67682009-01-30 22:44:24 +00005496 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005497 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005498 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005499
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005500 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005501 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005502 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5503 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005504 return CombineLD;
5505 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005506
Dan Gohman475871a2008-07-27 21:46:04 +00005507 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005508}
5509
Dan Gohman475871a2008-07-27 21:46:04 +00005510SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005511 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005512 return CombineConsecutiveLoads(N, VT);
5513}
5514
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005515/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005516/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005517/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005518SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005519ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005520 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005521
Chris Lattner6258fb22006-04-02 02:53:43 +00005522 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005523 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005524
Duncan Sands83ec4b62008-06-06 12:08:01 +00005525 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5526 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005527
Chris Lattner6258fb22006-04-02 02:53:43 +00005528 // If this is a conversion of N elements of one type to N elements of another
5529 // type, convert each element. This handles FP<->INT cases.
5530 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005531 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5532 BV->getValueType(0).getVectorNumElements());
5533
5534 // Due to the FP element handling below calling this routine recursively,
5535 // we can end up with a scalar-to-vector node here.
5536 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005537 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5538 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005539 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005540
Dan Gohman475871a2008-07-27 21:46:04 +00005541 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005542 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005543 SDValue Op = BV->getOperand(i);
5544 // If the vector element type is not legal, the BUILD_VECTOR operands
5545 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005546 if (Op.getValueType() != SrcEltVT)
5547 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005548 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005549 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005550 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005551 }
Evan Chenga87008d2009-02-25 22:49:59 +00005552 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5553 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005554 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005555
Chris Lattner6258fb22006-04-02 02:53:43 +00005556 // Otherwise, we're growing or shrinking the elements. To avoid having to
5557 // handle annoying details of growing/shrinking FP values, we convert them to
5558 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005559 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005560 // Convert the input float vector to a int vector where the elements are the
5561 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005562 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005563 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005564 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005565 SrcEltVT = IntVT;
5566 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005567
Chris Lattner6258fb22006-04-02 02:53:43 +00005568 // Now we know the input is an integer vector. If the output is a FP type,
5569 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005570 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005571 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005572 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005573 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005574
Chris Lattner6258fb22006-04-02 02:53:43 +00005575 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005576 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005577 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005578
Chris Lattner6258fb22006-04-02 02:53:43 +00005579 // Okay, we know the src/dst types are both integers of differing types.
5580 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005581 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005582 if (SrcBitSize < DstBitSize) {
5583 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005584
Dan Gohman475871a2008-07-27 21:46:04 +00005585 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005586 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005587 i += NumInputsPerOutput) {
5588 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005589 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005590 bool EltIsUndef = true;
5591 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5592 // Shift the previously computed bits over.
5593 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005594 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005595 if (Op.getOpcode() == ISD::UNDEF) continue;
5596 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005597
Jay Foad40f8f622010-12-07 08:25:19 +00005598 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005599 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005600 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005601
Chris Lattner6258fb22006-04-02 02:53:43 +00005602 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005603 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005604 else
5605 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5606 }
5607
Owen Anderson23b9b192009-08-12 00:36:31 +00005608 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005609 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5610 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005611 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005612
Chris Lattner6258fb22006-04-02 02:53:43 +00005613 // Finally, this must be the case where we are shrinking elements: each input
5614 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005615 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005616 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005617 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5618 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005619 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005620
Dan Gohman7f321562007-06-25 16:23:39 +00005621 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005622 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5623 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005624 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005625 continue;
5626 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005627
Jay Foad40f8f622010-12-07 08:25:19 +00005628 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5629 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005630
Chris Lattner6258fb22006-04-02 02:53:43 +00005631 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005632 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005633 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005634 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005635 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005636 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5637 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005638 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005639 }
5640
5641 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005642 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005643 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5644 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005645
Evan Chenga87008d2009-02-25 22:49:59 +00005646 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5647 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005648}
5649
Dan Gohman475871a2008-07-27 21:46:04 +00005650SDValue DAGCombiner::visitFADD(SDNode *N) {
5651 SDValue N0 = N->getOperand(0);
5652 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005653 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5654 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005655 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005656
Dan Gohman7f321562007-06-25 16:23:39 +00005657 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005658 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005659 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005660 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005661 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005662
Lang Hames01806942012-06-14 20:37:15 +00005663 // fold (fadd c1, c2) -> c1 + c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005664 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005665 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005666 // canonicalize constant to RHS
5667 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005668 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5669 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005670 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5671 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005672 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005673 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005674 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005675 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005676 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005677 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005678 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005679 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005680 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005681 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005682 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005683
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005684 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005685 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5686 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5687 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005688 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005689 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5690 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005691
Owen Anderson43da6c72012-08-30 23:35:16 +00005692 // In unsafe math mode, we can fold chains of FADD's of the same value
5693 // into multiplications. This transform is not safe in general because
5694 // we are reducing the number of rounding steps.
5695 if (DAG.getTarget().Options.UnsafeFPMath &&
5696 TLI.isOperationLegalOrCustom(ISD::FMUL, VT) &&
5697 !N0CFP && !N1CFP) {
5698 if (N0.getOpcode() == ISD::FMUL) {
5699 ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
5700 ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
5701
5702 // (fadd (fmul c, x), x) -> (fmul c+1, x)
5703 if (CFP00 && !CFP01 && N0.getOperand(1) == N1) {
5704 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5705 SDValue(CFP00, 0),
5706 DAG.getConstantFP(1.0, VT));
5707 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5708 N1, NewCFP);
5709 }
5710
5711 // (fadd (fmul x, c), x) -> (fmul c+1, x)
5712 if (CFP01 && !CFP00 && N0.getOperand(0) == N1) {
5713 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5714 SDValue(CFP01, 0),
5715 DAG.getConstantFP(1.0, VT));
5716 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5717 N1, NewCFP);
5718 }
5719
5720 // (fadd (fadd x, x), x) -> (fmul 3.0, x)
5721 if (!CFP00 && !CFP01 && N0.getOperand(0) == N0.getOperand(1) &&
5722 N0.getOperand(0) == N1) {
5723 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5724 N1, DAG.getConstantFP(3.0, VT));
5725 }
5726
5727 // (fadd (fmul c, x), (fadd x, x)) -> (fmul c+2, x)
5728 if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD &&
5729 N1.getOperand(0) == N1.getOperand(1) &&
5730 N0.getOperand(1) == N1.getOperand(0)) {
5731 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5732 SDValue(CFP00, 0),
5733 DAG.getConstantFP(2.0, VT));
5734 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5735 N0.getOperand(1), NewCFP);
5736 }
5737
5738 // (fadd (fmul x, c), (fadd x, x)) -> (fmul c+2, x)
5739 if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD &&
5740 N1.getOperand(0) == N1.getOperand(1) &&
5741 N0.getOperand(0) == N1.getOperand(0)) {
5742 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5743 SDValue(CFP01, 0),
5744 DAG.getConstantFP(2.0, VT));
5745 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5746 N0.getOperand(0), NewCFP);
5747 }
5748 }
5749
5750 if (N1.getOpcode() == ISD::FMUL) {
5751 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
5752 ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1));
5753
5754 // (fadd x, (fmul c, x)) -> (fmul c+1, x)
5755 if (CFP10 && !CFP11 && N1.getOperand(1) == N0) {
5756 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5757 SDValue(CFP10, 0),
5758 DAG.getConstantFP(1.0, VT));
5759 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5760 N0, NewCFP);
5761 }
5762
5763 // (fadd x, (fmul x, c)) -> (fmul c+1, x)
5764 if (CFP11 && !CFP10 && N1.getOperand(0) == N0) {
5765 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5766 SDValue(CFP11, 0),
5767 DAG.getConstantFP(1.0, VT));
5768 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5769 N0, NewCFP);
5770 }
5771
5772 // (fadd x, (fadd x, x)) -> (fmul 3.0, x)
5773 if (!CFP10 && !CFP11 && N1.getOperand(0) == N1.getOperand(1) &&
5774 N1.getOperand(0) == N0) {
5775 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5776 N0, DAG.getConstantFP(3.0, VT));
5777 }
5778
5779 // (fadd (fadd x, x), (fmul c, x)) -> (fmul c+2, x)
5780 if (CFP10 && !CFP11 && N1.getOpcode() == ISD::FADD &&
5781 N1.getOperand(0) == N1.getOperand(1) &&
5782 N0.getOperand(1) == N1.getOperand(0)) {
5783 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5784 SDValue(CFP10, 0),
5785 DAG.getConstantFP(2.0, VT));
5786 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5787 N0.getOperand(1), NewCFP);
5788 }
5789
5790 // (fadd (fadd x, x), (fmul x, c)) -> (fmul c+2, x)
5791 if (CFP11 && !CFP10 && N1.getOpcode() == ISD::FADD &&
5792 N1.getOperand(0) == N1.getOperand(1) &&
5793 N0.getOperand(0) == N1.getOperand(0)) {
5794 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5795 SDValue(CFP11, 0),
5796 DAG.getConstantFP(2.0, VT));
5797 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5798 N0.getOperand(0), NewCFP);
5799 }
5800 }
5801
5802 // (fadd (fadd x, x), (fadd x, x)) -> (fmul 4.0, x)
5803 if (N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD &&
5804 N0.getOperand(0) == N0.getOperand(1) &&
5805 N1.getOperand(0) == N1.getOperand(1) &&
5806 N0.getOperand(0) == N1.getOperand(0)) {
5807 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5808 N0.getOperand(0),
5809 DAG.getConstantFP(4.0, VT));
5810 }
5811 }
5812
Lang Hamesd693caf2012-06-19 22:51:23 +00005813 // FADD -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005814 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005815 DAG.getTarget().Options.UnsafeFPMath) &&
5816 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005817 TLI.isOperationLegalOrCustom(ISD::FMA, VT)) {
Lang Hamesd693caf2012-06-19 22:51:23 +00005818
5819 // fold (fadd (fmul x, y), z) -> (fma x, y, z)
5820 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
5821 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5822 N0.getOperand(0), N0.getOperand(1), N1);
5823 }
Owen Anderson43da6c72012-08-30 23:35:16 +00005824
Michael Liaob79bff52012-09-01 04:09:16 +00005825 // fold (fadd x, (fmul y, z)) -> (fma y, z, x)
Lang Hamesd693caf2012-06-19 22:51:23 +00005826 // Note: Commutes FADD operands.
5827 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
5828 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5829 N1.getOperand(0), N1.getOperand(1), N0);
5830 }
5831 }
5832
Dan Gohman475871a2008-07-27 21:46:04 +00005833 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005834}
5835
Dan Gohman475871a2008-07-27 21:46:04 +00005836SDValue DAGCombiner::visitFSUB(SDNode *N) {
5837 SDValue N0 = N->getOperand(0);
5838 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005839 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5840 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005841 EVT VT = N->getValueType(0);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005842 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005843
Dan Gohman7f321562007-06-25 16:23:39 +00005844 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005845 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005846 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005847 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005848 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005849
Nate Begemana0e221d2005-10-18 00:28:13 +00005850 // fold (fsub c1, c2) -> c1-c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005851 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005852 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005853 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005854 if (DAG.getTarget().Options.UnsafeFPMath &&
5855 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005856 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005857 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005858 if (DAG.getTarget().Options.UnsafeFPMath &&
5859 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005860 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005861 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005862 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005863 return DAG.getNode(ISD::FNEG, dl, VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005864 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005865 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005866 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005867 return DAG.getNode(ISD::FADD, dl, VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005868 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005869
Bill Wendling5a894342012-03-15 05:12:00 +00005870 // If 'unsafe math' is enabled, fold
Owen Anderson713e9532012-05-07 20:51:25 +00005871 // (fsub x, x) -> 0.0 &
Bill Wendling5a894342012-03-15 05:12:00 +00005872 // (fsub x, (fadd x, y)) -> (fneg y) &
5873 // (fsub x, (fadd y, x)) -> (fneg y)
5874 if (DAG.getTarget().Options.UnsafeFPMath) {
Owen Anderson713e9532012-05-07 20:51:25 +00005875 if (N0 == N1)
5876 return DAG.getConstantFP(0.0f, VT);
5877
Bill Wendling5a894342012-03-15 05:12:00 +00005878 if (N1.getOpcode() == ISD::FADD) {
5879 SDValue N10 = N1->getOperand(0);
5880 SDValue N11 = N1->getOperand(1);
5881
5882 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
5883 &DAG.getTarget().Options))
5884 return GetNegatedExpression(N11, DAG, LegalOperations);
5885 else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
5886 &DAG.getTarget().Options))
5887 return GetNegatedExpression(N10, DAG, LegalOperations);
5888 }
5889 }
5890
Lang Hamesd693caf2012-06-19 22:51:23 +00005891 // FSUB -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005892 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005893 DAG.getTarget().Options.UnsafeFPMath) &&
5894 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005895 TLI.isOperationLegalOrCustom(ISD::FMA, VT)) {
Lang Hamesd693caf2012-06-19 22:51:23 +00005896
5897 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z))
5898 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005899 return DAG.getNode(ISD::FMA, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00005900 N0.getOperand(0), N0.getOperand(1),
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005901 DAG.getNode(ISD::FNEG, dl, VT, N1));
Lang Hamesd693caf2012-06-19 22:51:23 +00005902 }
5903
5904 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x)
5905 // Note: Commutes FSUB operands.
5906 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005907 return DAG.getNode(ISD::FMA, dl, VT,
5908 DAG.getNode(ISD::FNEG, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00005909 N1.getOperand(0)),
5910 N1.getOperand(1), N0);
5911 }
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005912
5913 // fold (fsub (-(fmul, x, y)), z) -> (fma (fneg x), y, (fneg z))
5914 if (N0.getOpcode() == ISD::FNEG &&
5915 N0.getOperand(0).getOpcode() == ISD::FMUL &&
5916 N0->hasOneUse() && N0.getOperand(0).hasOneUse()) {
5917 SDValue N00 = N0.getOperand(0).getOperand(0);
5918 SDValue N01 = N0.getOperand(0).getOperand(1);
5919 return DAG.getNode(ISD::FMA, dl, VT,
5920 DAG.getNode(ISD::FNEG, dl, VT, N00), N01,
5921 DAG.getNode(ISD::FNEG, dl, VT, N1));
5922 }
Lang Hamesd693caf2012-06-19 22:51:23 +00005923 }
5924
Dan Gohman475871a2008-07-27 21:46:04 +00005925 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005926}
5927
Dan Gohman475871a2008-07-27 21:46:04 +00005928SDValue DAGCombiner::visitFMUL(SDNode *N) {
5929 SDValue N0 = N->getOperand(0);
5930 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005931 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5932 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005933 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005934 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005935
Dan Gohman7f321562007-06-25 16:23:39 +00005936 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005937 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005938 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005939 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005940 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005941
Nate Begeman11af4ea2005-10-17 20:40:11 +00005942 // fold (fmul c1, c2) -> c1*c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005943 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005944 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005945 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00005946 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005947 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5948 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005949 if (DAG.getTarget().Options.UnsafeFPMath &&
5950 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005951 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00005952 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005953 if (DAG.getTarget().Options.UnsafeFPMath &&
5954 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00005955 return N1;
Owen Anderson363e4b92012-05-02 21:32:35 +00005956 // fold (fmul A, 1.0) -> A
5957 if (N1CFP && N1CFP->isExactlyValue(1.0))
5958 return N0;
Nate Begeman11af4ea2005-10-17 20:40:11 +00005959 // fold (fmul X, 2.0) -> (fadd X, X)
5960 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005961 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00005962 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00005963 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00005964 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005965 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005966
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005967 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005968 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005969 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005970 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005971 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005972 // Both can be negated for free, check to see if at least one is cheaper
5973 // negated.
5974 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005975 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005976 GetNegatedExpression(N0, DAG, LegalOperations),
5977 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005978 }
5979 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005980
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005981 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005982 if (DAG.getTarget().Options.UnsafeFPMath &&
5983 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005984 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005985 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00005986 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00005987 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005988
Dan Gohman475871a2008-07-27 21:46:04 +00005989 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005990}
5991
Owen Anderson062c0a52012-05-02 22:17:40 +00005992SDValue DAGCombiner::visitFMA(SDNode *N) {
5993 SDValue N0 = N->getOperand(0);
5994 SDValue N1 = N->getOperand(1);
5995 SDValue N2 = N->getOperand(2);
5996 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5997 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
5998 EVT VT = N->getValueType(0);
Owen Anderson58d57292012-09-01 06:04:27 +00005999 DebugLoc dl = N->getDebugLoc();
Owen Anderson062c0a52012-05-02 22:17:40 +00006000
6001 if (N0CFP && N0CFP->isExactlyValue(1.0))
6002 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N2);
6003 if (N1CFP && N1CFP->isExactlyValue(1.0))
6004 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N2);
6005
Owen Anderson85ef6f42012-05-30 18:50:39 +00006006 // Canonicalize (fma c, x, y) -> (fma x, c, y)
Owen Andersonf917d202012-05-30 18:54:50 +00006007 if (N0CFP && !N1CFP)
Owen Anderson85ef6f42012-05-30 18:50:39 +00006008 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, N1, N0, N2);
6009
Owen Anderson58d57292012-09-01 06:04:27 +00006010 // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2)
6011 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6012 N2.getOpcode() == ISD::FMUL &&
6013 N0 == N2.getOperand(0) &&
6014 N2.getOperand(1).getOpcode() == ISD::ConstantFP) {
6015 return DAG.getNode(ISD::FMUL, dl, VT, N0,
6016 DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1)));
6017 }
6018
6019
6020 // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y)
6021 if (DAG.getTarget().Options.UnsafeFPMath &&
6022 N0.getOpcode() == ISD::FMUL && N1CFP &&
6023 N0.getOperand(1).getOpcode() == ISD::ConstantFP) {
6024 return DAG.getNode(ISD::FMA, dl, VT,
6025 N0.getOperand(0),
6026 DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)),
6027 N2);
6028 }
6029
6030 // (fma x, 1, y) -> (fadd x, y)
6031 // (fma x, -1, y) -> (fadd (fneg x), y)
6032 if (N1CFP) {
6033 if (N1CFP->isExactlyValue(1.0))
6034 return DAG.getNode(ISD::FADD, dl, VT, N0, N2);
6035
6036 if (N1CFP->isExactlyValue(-1.0) &&
6037 (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) {
6038 SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0);
6039 AddToWorkList(RHSNeg.getNode());
6040 return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg);
6041 }
6042 }
6043
6044 // (fma x, c, x) -> (fmul x, (c+1))
6045 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2) {
6046 return DAG.getNode(ISD::FMUL, dl, VT,
6047 N0,
6048 DAG.getNode(ISD::FADD, dl, VT,
6049 N1, DAG.getConstantFP(1.0, VT)));
6050 }
6051
6052 // (fma x, c, (fneg x)) -> (fmul x, (c-1))
6053 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6054 N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0) {
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
Owen Anderson062c0a52012-05-02 22:17:40 +00006062 return SDValue();
6063}
6064
Dan Gohman475871a2008-07-27 21:46:04 +00006065SDValue DAGCombiner::visitFDIV(SDNode *N) {
6066 SDValue N0 = N->getOperand(0);
6067 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006068 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6069 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006070 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006071 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006072
Dan Gohman7f321562007-06-25 16:23:39 +00006073 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006074 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006075 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006076 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006077 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006078
Nate Begemana148d982006-01-18 22:35:16 +00006079 // fold (fdiv c1, c2) -> c1/c2
Owen Anderson825b72b2009-08-11 20:47:22 +00006080 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006081 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006082
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00006083 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
6084 if (N1CFP && VT != MVT::ppcf128 && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00006085 // Compute the reciprocal 1.0 / c2.
6086 APFloat N1APF = N1CFP->getValueAPF();
6087 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
6088 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00006089 // Only do the transform if the reciprocal is a legal fp immediate that
6090 // isn't too nasty (eg NaN, denormal, ...).
6091 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00006092 (!LegalOperations ||
6093 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
6094 // backend)... we should handle this gracefully after Legalize.
6095 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
6096 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
6097 TLI.isFPImmLegal(Recip, VT)))
Duncan Sands961d6662012-04-07 20:04:00 +00006098 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0,
6099 DAG.getConstantFP(Recip, VT));
6100 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006101
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006102 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006103 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006104 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006105 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006106 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006107 // Both can be negated for free, check to see if at least one is cheaper
6108 // negated.
6109 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00006110 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006111 GetNegatedExpression(N0, DAG, LegalOperations),
6112 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006113 }
6114 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006115
Dan Gohman475871a2008-07-27 21:46:04 +00006116 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006117}
6118
Dan Gohman475871a2008-07-27 21:46:04 +00006119SDValue DAGCombiner::visitFREM(SDNode *N) {
6120 SDValue N0 = N->getOperand(0);
6121 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006122 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6123 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006124 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00006125
Nate Begemana148d982006-01-18 22:35:16 +00006126 // fold (frem c1, c2) -> fmod(c1,c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00006127 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006128 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00006129
Dan Gohman475871a2008-07-27 21:46:04 +00006130 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006131}
6132
Dan Gohman475871a2008-07-27 21:46:04 +00006133SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
6134 SDValue N0 = N->getOperand(0);
6135 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00006136 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6137 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006138 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00006139
Owen Anderson825b72b2009-08-11 20:47:22 +00006140 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00006141 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006142
Chris Lattner12d83032006-03-05 05:30:57 +00006143 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00006144 const APFloat& V = N1CFP->getValueAPF();
Sylvestre Ledru94c22712012-09-27 10:14:43 +00006145 // copysign(x, c1) -> fabs(x) iff ispos(c1)
6146 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00006147 if (!V.isNegative()) {
6148 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006149 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00006150 } else {
6151 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006152 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00006153 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00006154 }
Chris Lattner12d83032006-03-05 05:30:57 +00006155 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006156
Chris Lattner12d83032006-03-05 05:30:57 +00006157 // copysign(fabs(x), y) -> copysign(x, y)
6158 // copysign(fneg(x), y) -> copysign(x, y)
6159 // copysign(copysign(x,z), y) -> copysign(x, y)
6160 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
6161 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006162 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6163 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00006164
6165 // copysign(x, abs(y)) -> abs(x)
6166 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006167 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006168
Chris Lattner12d83032006-03-05 05:30:57 +00006169 // copysign(x, copysign(y,z)) -> copysign(x, z)
6170 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006171 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6172 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006173
Chris Lattner12d83032006-03-05 05:30:57 +00006174 // copysign(x, fp_extend(y)) -> copysign(x, y)
6175 // copysign(x, fp_round(y)) -> copysign(x, y)
6176 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006177 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6178 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006179
Dan Gohman475871a2008-07-27 21:46:04 +00006180 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00006181}
6182
Dan Gohman475871a2008-07-27 21:46:04 +00006183SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
6184 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006185 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006186 EVT VT = N->getValueType(0);
6187 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00006188
Nate Begeman1d4d4142005-09-01 00:19:25 +00006189 // fold (sint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00006190 if (N0C && OpVT != MVT::ppcf128 &&
6191 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006192 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006193 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006194 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006195
Chris Lattnercda88752008-06-26 00:16:49 +00006196 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
6197 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006198 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
6199 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006200 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006201 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006202 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006203 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006204
Nadav Rotemed1a3352012-07-23 07:59:50 +00006205 // The next optimizations are desireable only if SELECT_CC can be lowered.
6206 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6207 // having to say they don't support SELECT_CC on every type the DAG knows
6208 // about, since there is no way to mark an opcode illegal at all value types
6209 // (See also visitSELECT)
6210 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6211 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6212 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 &&
6213 !VT.isVector() &&
6214 (!LegalOperations ||
6215 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6216 SDValue Ops[] =
6217 { N0.getOperand(0), N0.getOperand(1),
6218 DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT),
6219 N0.getOperand(2) };
6220 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6221 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006222
Nadav Rotemed1a3352012-07-23 07:59:50 +00006223 // fold (sint_to_fp (zext (setcc x, y, cc))) ->
6224 // (select_cc x, y, 1.0, 0.0,, cc)
6225 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
6226 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() &&
6227 (!LegalOperations ||
6228 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6229 SDValue Ops[] =
6230 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1),
6231 DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT),
6232 N0.getOperand(0).getOperand(2) };
6233 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6234 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006235 }
6236
Dan Gohman475871a2008-07-27 21:46:04 +00006237 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006238}
6239
Dan Gohman475871a2008-07-27 21:46:04 +00006240SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
6241 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006242 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006243 EVT VT = N->getValueType(0);
6244 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00006245
Nate Begeman1d4d4142005-09-01 00:19:25 +00006246 // fold (uint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00006247 if (N0C && OpVT != MVT::ppcf128 &&
6248 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006249 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006250 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006251 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006252
Chris Lattnercda88752008-06-26 00:16:49 +00006253 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6254 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006255 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6256 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006257 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006258 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006259 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006260 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006261
Nadav Rotemed1a3352012-07-23 07:59:50 +00006262 // The next optimizations are desireable only if SELECT_CC can be lowered.
6263 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6264 // having to say they don't support SELECT_CC on every type the DAG knows
6265 // about, since there is no way to mark an opcode illegal at all value types
6266 // (See also visitSELECT)
6267 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6268 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
Owen Andersond9bf71f2012-07-09 20:31:12 +00006269
Nadav Rotemed1a3352012-07-23 07:59:50 +00006270 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() &&
6271 (!LegalOperations ||
6272 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6273 SDValue Ops[] =
6274 { N0.getOperand(0), N0.getOperand(1),
6275 DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT),
6276 N0.getOperand(2) };
6277 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6278 }
6279 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006280
Dan Gohman475871a2008-07-27 21:46:04 +00006281 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006282}
6283
Dan Gohman475871a2008-07-27 21:46:04 +00006284SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
6285 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006286 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006287 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006288
Nate Begeman1d4d4142005-09-01 00:19:25 +00006289 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00006290 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006291 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
6292
Dan Gohman475871a2008-07-27 21:46:04 +00006293 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006294}
6295
Dan Gohman475871a2008-07-27 21:46:04 +00006296SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
6297 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006298 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006299 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006300
Nate Begeman1d4d4142005-09-01 00:19:25 +00006301 // fold (fp_to_uint c1fp) -> c1
Owen Anderson825b72b2009-08-11 20:47:22 +00006302 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006303 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
6304
Dan Gohman475871a2008-07-27 21:46:04 +00006305 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006306}
6307
Dan Gohman475871a2008-07-27 21:46:04 +00006308SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
6309 SDValue N0 = N->getOperand(0);
6310 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006311 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006312 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006313
Nate Begeman1d4d4142005-09-01 00:19:25 +00006314 // fold (fp_round c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00006315 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006316 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006317
Chris Lattner79dbea52006-03-13 06:26:26 +00006318 // fold (fp_round (fp_extend x)) -> x
6319 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
6320 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006321
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006322 // fold (fp_round (fp_round x)) -> (fp_round x)
6323 if (N0.getOpcode() == ISD::FP_ROUND) {
6324 // This is a value preserving truncation if both round's are.
6325 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006326 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00006327 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006328 DAG.getIntPtrConstant(IsTrunc));
6329 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006330
Chris Lattner79dbea52006-03-13 06:26:26 +00006331 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00006332 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00006333 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
6334 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00006335 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00006336 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6337 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00006338 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006339
Dan Gohman475871a2008-07-27 21:46:04 +00006340 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006341}
6342
Dan Gohman475871a2008-07-27 21:46:04 +00006343SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6344 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006345 EVT VT = N->getValueType(0);
6346 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00006347 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006348
Nate Begeman1d4d4142005-09-01 00:19:25 +00006349 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00006350 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00006351 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006352 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006353 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006354
Dan Gohman475871a2008-07-27 21:46:04 +00006355 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006356}
6357
Dan Gohman475871a2008-07-27 21:46:04 +00006358SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6359 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006360 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006361 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006362
Chris Lattner5938bef2007-12-29 06:55:23 +00006363 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00006364 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00006365 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00006366 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006367
Nate Begeman1d4d4142005-09-01 00:19:25 +00006368 // fold (fp_extend c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00006369 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006370 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006371
6372 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6373 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006374 if (N0.getOpcode() == ISD::FP_ROUND
6375 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006376 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006377 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006378 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006379 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
6380 In, N0.getOperand(1));
6381 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006382 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006383
Chris Lattner0bd48932008-01-17 07:00:52 +00006384 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006385 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006386 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006387 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006388 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00006389 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006390 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006391 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006392 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006393 LN0->isVolatile(), LN0->isNonTemporal(),
6394 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006395 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006396 CombineTo(N0.getNode(),
6397 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
6398 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006399 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006400 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006401 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006402
Dan Gohman475871a2008-07-27 21:46:04 +00006403 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006404}
6405
Dan Gohman475871a2008-07-27 21:46:04 +00006406SDValue DAGCombiner::visitFNEG(SDNode *N) {
6407 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006408 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006409
Craig Topperdd201ff2012-09-11 01:45:21 +00006410 if (VT.isVector()) {
6411 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6412 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper956342b2012-09-09 22:58:45 +00006413 }
6414
Owen Andersonafd3d562012-03-06 00:29:31 +00006415 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6416 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006417 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006418
Chris Lattner3bd39d42008-01-27 17:42:27 +00006419 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6420 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006421 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006422 !VT.isVector() &&
6423 N0.getNode()->hasOneUse() &&
6424 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006425 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006426 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006427 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006428 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
6429 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006430 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006431 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006432 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006433 }
6434 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006435
Owen Anderson58d57292012-09-01 06:04:27 +00006436 // (fneg (fmul c, x)) -> (fmul -c, x)
6437 if (N0.getOpcode() == ISD::FMUL) {
6438 ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
6439 if (CFP1) {
6440 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
6441 N0.getOperand(0),
6442 DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
6443 N0.getOperand(1)));
6444 }
6445 }
6446
Dan Gohman475871a2008-07-27 21:46:04 +00006447 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006448}
6449
Owen Anderson7c626d32012-08-13 23:32:49 +00006450SDValue DAGCombiner::visitFCEIL(SDNode *N) {
6451 SDValue N0 = N->getOperand(0);
6452 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6453 EVT VT = N->getValueType(0);
6454
6455 // fold (fceil c1) -> fceil(c1)
6456 if (N0CFP && VT != MVT::ppcf128)
6457 return DAG.getNode(ISD::FCEIL, N->getDebugLoc(), VT, N0);
6458
6459 return SDValue();
6460}
6461
6462SDValue DAGCombiner::visitFTRUNC(SDNode *N) {
6463 SDValue N0 = N->getOperand(0);
6464 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6465 EVT VT = N->getValueType(0);
6466
6467 // fold (ftrunc c1) -> ftrunc(c1)
6468 if (N0CFP && VT != MVT::ppcf128)
6469 return DAG.getNode(ISD::FTRUNC, N->getDebugLoc(), VT, N0);
6470
6471 return SDValue();
6472}
6473
6474SDValue DAGCombiner::visitFFLOOR(SDNode *N) {
6475 SDValue N0 = N->getOperand(0);
6476 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6477 EVT VT = N->getValueType(0);
6478
6479 // fold (ffloor c1) -> ffloor(c1)
6480 if (N0CFP && VT != MVT::ppcf128)
6481 return DAG.getNode(ISD::FFLOOR, N->getDebugLoc(), VT, N0);
6482
6483 return SDValue();
6484}
6485
Dan Gohman475871a2008-07-27 21:46:04 +00006486SDValue DAGCombiner::visitFABS(SDNode *N) {
6487 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006488 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006489 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006490
Craig Topperdd201ff2012-09-11 01:45:21 +00006491 if (VT.isVector()) {
6492 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6493 if (FoldedVOp.getNode()) return FoldedVOp;
6494 }
6495
Nate Begeman1d4d4142005-09-01 00:19:25 +00006496 // fold (fabs c1) -> fabs(c1)
Owen Anderson825b72b2009-08-11 20:47:22 +00006497 if (N0CFP && VT != MVT::ppcf128)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006498 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006499 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006500 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006501 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006502 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006503 // fold (fabs (fcopysign x, y)) -> (fabs x)
6504 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006505 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006506
Chris Lattner3bd39d42008-01-27 17:42:27 +00006507 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6508 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006509 if (!TLI.isFAbsFree(VT) &&
6510 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006511 N0.getOperand(0).getValueType().isInteger() &&
6512 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006513 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006514 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006515 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006516 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006517 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006518 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006519 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006520 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006521 }
6522 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006523
Dan Gohman475871a2008-07-27 21:46:04 +00006524 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006525}
6526
Dan Gohman475871a2008-07-27 21:46:04 +00006527SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6528 SDValue Chain = N->getOperand(0);
6529 SDValue N1 = N->getOperand(1);
6530 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006531
Dan Gohmane0f06c72009-11-17 00:47:23 +00006532 // If N is a constant we could fold this into a fallthrough or unconditional
6533 // branch. However that doesn't happen very often in normal code, because
6534 // Instcombine/SimplifyCFG should have handled the available opportunities.
6535 // If we did this folding here, it would be necessary to update the
6536 // MachineBasicBlock CFG, which is awkward.
6537
Nate Begeman750ac1b2006-02-01 07:19:44 +00006538 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6539 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006540 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006541 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
6542 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006543 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006544 N1.getOperand(0), N1.getOperand(1), N2);
6545 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006546
Evan Cheng2a135ae2010-10-04 22:41:01 +00006547 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6548 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6549 (N1.getOperand(0).hasOneUse() &&
6550 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6551 SDNode *Trunc = 0;
6552 if (N1.getOpcode() == ISD::TRUNCATE) {
6553 // Look pass the truncate.
6554 Trunc = N1.getNode();
6555 N1 = N1.getOperand(0);
6556 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006557
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006558 // Match this pattern so that we can generate simpler code:
6559 //
6560 // %a = ...
6561 // %b = and i32 %a, 2
6562 // %c = srl i32 %b, 1
6563 // brcond i32 %c ...
6564 //
6565 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006566 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006567 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006568 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006569 // %c = setcc eq %b, 0
6570 // brcond %c ...
6571 //
6572 // This applies only when the AND constant value has one bit set and the
6573 // SRL constant is equal to the log2 of the AND constant. The back-end is
6574 // smart enough to convert the result into a TEST/JMP sequence.
6575 SDValue Op0 = N1.getOperand(0);
6576 SDValue Op1 = N1.getOperand(1);
6577
6578 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006579 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006580 SDValue AndOp1 = Op0.getOperand(1);
6581
6582 if (AndOp1.getOpcode() == ISD::Constant) {
6583 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6584
6585 if (AndConst.isPowerOf2() &&
6586 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6587 SDValue SetCC =
6588 DAG.getSetCC(N->getDebugLoc(),
6589 TLI.getSetCCResultType(Op0.getValueType()),
6590 Op0, DAG.getConstant(0, Op0.getValueType()),
6591 ISD::SETNE);
6592
Evan Chengd40d03e2010-01-06 19:38:29 +00006593 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6594 MVT::Other, Chain, SetCC, N2);
6595 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6596 // will convert it back to (X & C1) >> C2.
6597 CombineTo(N, NewBRCond, false);
6598 // Truncate is dead.
6599 if (Trunc) {
6600 removeFromWorkList(Trunc);
6601 DAG.DeleteNode(Trunc);
6602 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006603 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006604 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006605 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006606 removeFromWorkList(N1.getNode());
6607 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006608 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006609 }
6610 }
6611 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006612
6613 if (Trunc)
6614 // Restore N1 if the above transformation doesn't match.
6615 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006616 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006617
Evan Cheng2c755ba2010-02-27 07:36:59 +00006618 // Transform br(xor(x, y)) -> br(x != y)
6619 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6620 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6621 SDNode *TheXor = N1.getNode();
6622 SDValue Op0 = TheXor->getOperand(0);
6623 SDValue Op1 = TheXor->getOperand(1);
6624 if (Op0.getOpcode() == Op1.getOpcode()) {
6625 // Avoid missing important xor optimizations.
6626 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00006627 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006628 DEBUG(dbgs() << "\nReplacing.8 ";
6629 TheXor->dump(&DAG);
6630 dbgs() << "\nWith: ";
6631 Tmp.getNode()->dump(&DAG);
6632 dbgs() << '\n');
6633 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006634 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
Evan Cheng2c755ba2010-02-27 07:36:59 +00006635 removeFromWorkList(TheXor);
6636 DAG.DeleteNode(TheXor);
6637 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6638 MVT::Other, Chain, Tmp, N2);
6639 }
6640 }
6641
6642 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6643 bool Equal = false;
6644 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6645 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6646 Op0.getOpcode() == ISD::XOR) {
6647 TheXor = Op0.getNode();
6648 Equal = true;
6649 }
6650
Evan Cheng2a135ae2010-10-04 22:41:01 +00006651 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006652 if (LegalTypes)
6653 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6654 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6655 SetCCVT,
6656 Op0, Op1,
6657 Equal ? ISD::SETEQ : ISD::SETNE);
6658 // Replace the uses of XOR with SETCC
6659 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006660 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006661 removeFromWorkList(N1.getNode());
6662 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006663 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6664 MVT::Other, Chain, SetCC, N2);
6665 }
6666 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006667
Dan Gohman475871a2008-07-27 21:46:04 +00006668 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006669}
6670
Chris Lattner3ea0b472005-10-05 06:47:48 +00006671// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6672//
Dan Gohman475871a2008-07-27 21:46:04 +00006673SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006674 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006675 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006676
Dan Gohmane0f06c72009-11-17 00:47:23 +00006677 // If N is a constant we could fold this into a fallthrough or unconditional
6678 // branch. However that doesn't happen very often in normal code, because
6679 // Instcombine/SimplifyCFG should have handled the available opportunities.
6680 // If we did this folding here, it would be necessary to update the
6681 // MachineBasicBlock CFG, which is awkward.
6682
Duncan Sands8eab8a22008-06-09 11:32:28 +00006683 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006684 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006685 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6686 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006687 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006688
Nate Begemane17daeb2005-10-05 21:43:42 +00006689 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006690 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006691 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006692 N->getOperand(0), Simp.getOperand(2),
6693 Simp.getOperand(0), Simp.getOperand(1),
6694 N->getOperand(4));
6695
Dan Gohman475871a2008-07-27 21:46:04 +00006696 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006697}
6698
Evan Chengc4b527a2012-01-13 01:37:24 +00006699/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6700/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00006701/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00006702static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6703 SelectionDAG &DAG,
6704 const TargetLowering &TLI) {
6705 EVT VT;
6706 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6707 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6708 return false;
6709 VT = Use->getValueType(0);
6710 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6711 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6712 return false;
6713 VT = ST->getValue().getValueType();
6714 } else
6715 return false;
6716
6717 TargetLowering::AddrMode AM;
6718 if (N->getOpcode() == ISD::ADD) {
6719 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6720 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006721 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006722 AM.BaseOffs = Offset->getSExtValue();
6723 else
Evan Cheng03be3622012-03-06 23:33:32 +00006724 // [reg +/- reg]
6725 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006726 } else if (N->getOpcode() == ISD::SUB) {
6727 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6728 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006729 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006730 AM.BaseOffs = -Offset->getSExtValue();
6731 else
Evan Cheng03be3622012-03-06 23:33:32 +00006732 // [reg +/- reg]
6733 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006734 } else
6735 return false;
6736
6737 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6738}
6739
Duncan Sandsec87aa82008-06-15 20:12:31 +00006740/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6741/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006742/// and it has other uses besides the load / store. After the
6743/// transformation, the new indexed load / store has effectively folded
6744/// the add / subtract in and all of its other uses are redirected to the
6745/// new load / store.
6746bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006747 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006748 return false;
6749
6750 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006751 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006752 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006753 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006754 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006755 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006756 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006757 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006758 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6759 return false;
6760 Ptr = LD->getBasePtr();
6761 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006762 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006763 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006764 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006765 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6766 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6767 return false;
6768 Ptr = ST->getBasePtr();
6769 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006770 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006771 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006772 }
Chris Lattner448f2192006-11-11 00:39:41 +00006773
Chris Lattner9f1794e2006-11-11 00:56:29 +00006774 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6775 // out. There is no reason to make this a preinc/predec.
6776 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006777 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006778 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006779
Chris Lattner9f1794e2006-11-11 00:56:29 +00006780 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006781 SDValue BasePtr;
6782 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006783 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6784 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6785 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006786 // Don't create a indexed load / store with zero offset.
6787 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006788 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006789 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006790
Chris Lattner41e53fd2006-11-11 01:00:15 +00006791 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006792 // 1) The new base ptr is a frame index.
6793 // 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 +00006794 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006795 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006796 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006797 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006798
Chris Lattner41e53fd2006-11-11 01:00:15 +00006799 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6800 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006801 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006802 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006803
Chris Lattner41e53fd2006-11-11 01:00:15 +00006804 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006805 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006806 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006807 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006808 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006809 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006810
Evan Chengc843abe2007-05-24 02:35:39 +00006811 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006812 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006813
6814 // Caches for hasPredecessorHelper
6815 SmallPtrSet<const SDNode *, 32> Visited;
6816 SmallVector<const SDNode *, 16> Worklist;
6817
Gabor Greifba36cb52008-08-28 21:40:38 +00006818 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6819 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006820 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006821 if (Use == N)
6822 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006823 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006824 return false;
6825
Evan Chengc4b527a2012-01-13 01:37:24 +00006826 // If Ptr may be folded in addressing mode of other use, then it's
6827 // not profitable to do this transformation.
6828 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006829 RealUse = true;
6830 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006831
Chris Lattner9f1794e2006-11-11 00:56:29 +00006832 if (!RealUse)
6833 return false;
6834
Dan Gohman475871a2008-07-27 21:46:04 +00006835 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006836 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006837 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6838 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006839 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006840 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6841 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006842 ++PreIndexedNodes;
6843 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006844 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006845 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006846 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006847 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006848 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006849 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006850 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006851 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6852 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006853 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006854 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006855 }
6856
Chris Lattner9f1794e2006-11-11 00:56:29 +00006857 // Finally, since the node is now dead, remove it from the graph.
6858 DAG.DeleteNode(N);
6859
6860 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006861 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greifba36cb52008-08-28 21:40:38 +00006862 removeFromWorkList(Ptr.getNode());
6863 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006864
6865 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006866}
6867
Duncan Sandsec87aa82008-06-15 20:12:31 +00006868/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006869/// add / sub of the base pointer node into a post-indexed load / store.
6870/// The transformation folded the add / subtract into the new indexed
6871/// load / store effectively and all of its uses are redirected to the
6872/// new load / store.
6873bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006874 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006875 return false;
6876
6877 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006878 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006879 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006880 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006881 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006882 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006883 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006884 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6885 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6886 return false;
6887 Ptr = LD->getBasePtr();
6888 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006889 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006890 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006891 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006892 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6893 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6894 return false;
6895 Ptr = ST->getBasePtr();
6896 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006897 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006898 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006899 }
Chris Lattner448f2192006-11-11 00:39:41 +00006900
Gabor Greifba36cb52008-08-28 21:40:38 +00006901 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006902 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006903
Gabor Greifba36cb52008-08-28 21:40:38 +00006904 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6905 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006906 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006907 if (Op == N ||
6908 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6909 continue;
6910
Dan Gohman475871a2008-07-27 21:46:04 +00006911 SDValue BasePtr;
6912 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006913 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6914 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00006915 // Don't create a indexed load / store with zero offset.
6916 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006917 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006918 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006919
Chris Lattner9f1794e2006-11-11 00:56:29 +00006920 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00006921 // 1) All uses are load / store ops that use it as base ptr (and
6922 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00006923 // 2) Op must be independent of N, i.e. Op is neither a predecessor
6924 // nor a successor of N. Otherwise, if Op is folded that would
6925 // create a cycle.
6926
Evan Chengcaab1292009-05-06 18:25:01 +00006927 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6928 continue;
6929
Chris Lattner9f1794e2006-11-11 00:56:29 +00006930 // Check for #1.
6931 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006932 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6933 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00006934 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00006935 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00006936 continue;
6937
Chris Lattner9f1794e2006-11-11 00:56:29 +00006938 // If all the uses are load / store addresses, then don't do the
6939 // transformation.
6940 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6941 bool RealUse = false;
6942 for (SDNode::use_iterator III = Use->use_begin(),
6943 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00006944 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00006945 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006946 RealUse = true;
6947 }
Chris Lattner448f2192006-11-11 00:39:41 +00006948
Chris Lattner9f1794e2006-11-11 00:56:29 +00006949 if (!RealUse) {
6950 TryNext = true;
6951 break;
Chris Lattner448f2192006-11-11 00:39:41 +00006952 }
6953 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006954 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006955
Chris Lattner9f1794e2006-11-11 00:56:29 +00006956 if (TryNext)
6957 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006958
Chris Lattner9f1794e2006-11-11 00:56:29 +00006959 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00006960 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006961 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00006962 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6963 BasePtr, Offset, AM)
6964 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6965 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006966 ++PostIndexedNodes;
6967 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006968 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006969 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006970 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006971 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006972 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006973 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006974 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006975 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
6976 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006977 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006978 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner448f2192006-11-11 00:39:41 +00006979 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006980
Chris Lattner9f1794e2006-11-11 00:56:29 +00006981 // Finally, since the node is now dead, remove it from the graph.
6982 DAG.DeleteNode(N);
6983
6984 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00006985 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006986 Result.getValue(isLoad ? 1 : 0));
Chris Lattner9f1794e2006-11-11 00:56:29 +00006987 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006988 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006989 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006990 }
6991 }
6992 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006993
Chris Lattner448f2192006-11-11 00:39:41 +00006994 return false;
6995}
6996
Dan Gohman475871a2008-07-27 21:46:04 +00006997SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00006998 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006999 SDValue Chain = LD->getChain();
7000 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007001
Evan Cheng45a7ca92007-05-01 00:38:21 +00007002 // If load is not volatile and there are no uses of the loaded value (and
7003 // the updated indexed value in case of indexed loads), change uses of the
7004 // chain value into uses of the chain input (i.e. delete the dead load).
7005 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007006 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00007007 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00007008 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00007009 // It's not safe to use the two value CombineTo variant here. e.g.
7010 // v1, chain2 = load chain1, loc
7011 // v2, chain3 = load chain2, loc
7012 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00007013 // Now we replace use of chain2 with chain1. This makes the second load
7014 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00007015 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007016 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007017 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007018 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007019 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007020 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007021 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendlingc0debad2009-01-30 23:27:35 +00007022
Chris Lattner125991a2008-01-24 07:57:06 +00007023 if (N->use_empty()) {
7024 removeFromWorkList(N);
7025 DAG.DeleteNode(N);
7026 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007027
Dan Gohman475871a2008-07-27 21:46:04 +00007028 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00007029 }
Evan Cheng498f5592007-05-01 08:53:39 +00007030 } else {
7031 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00007032 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00007033 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007034 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00007035 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007036 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007037 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007038 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007039 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007040 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007041 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman475871a2008-07-27 21:46:04 +00007042 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007043 DAG.getUNDEF(N->getValueType(1)));
7044 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng02c42852008-01-16 23:11:54 +00007045 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00007046 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007047 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00007048 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00007049 }
7050 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007051
Chris Lattner01a22022005-10-10 22:04:48 +00007052 // If this load is directly stored, replace the load value with the stored
7053 // value.
7054 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007055 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00007056 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007057 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007058 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
7059 if (PrevST->getBasePtr() == Ptr &&
7060 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007061 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00007062 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007063 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007064
Evan Cheng255f20f2010-04-01 06:04:33 +00007065 // Try to infer better alignment information than the load already has.
7066 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007067 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7068 if (Align > LD->getAlignment())
7069 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
7070 LD->getValueType(0),
7071 Chain, Ptr, LD->getPointerInfo(),
7072 LD->getMemoryVT(),
7073 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007074 }
7075 }
7076
Jim Laskey7ca56af2006-10-11 13:47:09 +00007077 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007078 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007079 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007080
Jim Laskey6ff23e52006-10-04 16:53:27 +00007081 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007082 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007083 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007084
Jim Laskey279f0532006-09-25 16:29:54 +00007085 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007086 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00007087 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00007088 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007089 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007090 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007091 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00007092 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
7093 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00007094 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007095 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007096 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007097 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00007098 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007099 }
Jim Laskey279f0532006-09-25 16:29:54 +00007100
Jim Laskey6ff23e52006-10-04 16:53:27 +00007101 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00007102 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007103 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007104
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007105 // Make sure the new and old chains are cleaned up.
7106 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007107
Jim Laskey274062c2006-10-13 23:32:28 +00007108 // Replace uses with load result and token factor. Don't add users
7109 // to work list.
7110 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007111 }
7112 }
7113
Evan Cheng7fc033a2006-11-03 03:06:21 +00007114 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007115 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007116 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00007117
Dan Gohman475871a2008-07-27 21:46:04 +00007118 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00007119}
7120
Chris Lattner2392ae72010-04-15 04:48:01 +00007121/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
7122/// load is having specific bytes cleared out. If so, return the byte size
7123/// being masked out and the shift amount.
7124static std::pair<unsigned, unsigned>
7125CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
7126 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007127
Chris Lattner2392ae72010-04-15 04:48:01 +00007128 // Check for the structure we're looking for.
7129 if (V->getOpcode() != ISD::AND ||
7130 !isa<ConstantSDNode>(V->getOperand(1)) ||
7131 !ISD::isNormalLoad(V->getOperand(0).getNode()))
7132 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007133
Chris Lattnere6987582010-04-15 06:10:49 +00007134 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00007135 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00007136 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007137
Chris Lattnere6987582010-04-15 06:10:49 +00007138 // The store should be chained directly to the load or be an operand of a
7139 // tokenfactor.
7140 if (LD == Chain.getNode())
7141 ; // ok.
7142 else if (Chain->getOpcode() != ISD::TokenFactor)
7143 return Result; // Fail.
7144 else {
7145 bool isOk = false;
7146 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
7147 if (Chain->getOperand(i).getNode() == LD) {
7148 isOk = true;
7149 break;
7150 }
7151 if (!isOk) return Result;
7152 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007153
Chris Lattner2392ae72010-04-15 04:48:01 +00007154 // This only handles simple types.
7155 if (V.getValueType() != MVT::i16 &&
7156 V.getValueType() != MVT::i32 &&
7157 V.getValueType() != MVT::i64)
7158 return Result;
7159
7160 // Check the constant mask. Invert it so that the bits being masked out are
7161 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
7162 // follow the sign bit for uniformity.
7163 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
7164 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
7165 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
7166 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
7167 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
7168 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007169
Chris Lattner2392ae72010-04-15 04:48:01 +00007170 // See if we have a continuous run of bits. If so, we have 0*1+0*
7171 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
7172 return Result;
7173
7174 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
7175 if (V.getValueType() != MVT::i64 && NotMaskLZ)
7176 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007177
Chris Lattner2392ae72010-04-15 04:48:01 +00007178 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
7179 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007180 case 1:
7181 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00007182 case 4: break;
7183 default: return Result; // All one mask, or 5-byte mask.
7184 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007185
Chris Lattner2392ae72010-04-15 04:48:01 +00007186 // Verify that the first bit starts at a multiple of mask so that the access
7187 // is aligned the same as the access width.
7188 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007189
Chris Lattner2392ae72010-04-15 04:48:01 +00007190 Result.first = MaskedBytes;
7191 Result.second = NotMaskTZ/8;
7192 return Result;
7193}
7194
7195
7196/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
7197/// provides a value as specified by MaskInfo. If so, replace the specified
7198/// store with a narrower store of truncated IVal.
7199static SDNode *
7200ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
7201 SDValue IVal, StoreSDNode *St,
7202 DAGCombiner *DC) {
7203 unsigned NumBytes = MaskInfo.first;
7204 unsigned ByteShift = MaskInfo.second;
7205 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007206
Chris Lattner2392ae72010-04-15 04:48:01 +00007207 // Check to see if IVal is all zeros in the part being masked in by the 'or'
7208 // that uses this. If not, this is not a replacement.
7209 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
7210 ByteShift*8, (ByteShift+NumBytes)*8);
7211 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007212
Chris Lattner2392ae72010-04-15 04:48:01 +00007213 // Check that it is legal on the target to do this. It is legal if the new
7214 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
7215 // legalization.
7216 MVT VT = MVT::getIntegerVT(NumBytes*8);
7217 if (!DC->isTypeLegal(VT))
7218 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007219
Chris Lattner2392ae72010-04-15 04:48:01 +00007220 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
7221 // shifted by ByteShift and truncated down to NumBytes.
7222 if (ByteShift)
7223 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00007224 DAG.getConstant(ByteShift*8,
7225 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00007226
7227 // Figure out the offset for the store and the alignment of the access.
7228 unsigned StOffset;
7229 unsigned NewAlign = St->getAlignment();
7230
7231 if (DAG.getTargetLoweringInfo().isLittleEndian())
7232 StOffset = ByteShift;
7233 else
7234 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007235
Chris Lattner2392ae72010-04-15 04:48:01 +00007236 SDValue Ptr = St->getBasePtr();
7237 if (StOffset) {
7238 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
7239 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
7240 NewAlign = MinAlign(NewAlign, StOffset);
7241 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007242
Chris Lattner2392ae72010-04-15 04:48:01 +00007243 // Truncate down to the new size.
7244 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007245
Chris Lattner2392ae72010-04-15 04:48:01 +00007246 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007247 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007248 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00007249 false, false, NewAlign).getNode();
7250}
7251
Evan Cheng8b944d32009-05-28 00:35:15 +00007252
7253/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
7254/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
7255/// of the loaded bits, try narrowing the load and store if it would end up
7256/// being a win for performance or code size.
7257SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
7258 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00007259 if (ST->isVolatile())
7260 return SDValue();
7261
Evan Cheng8b944d32009-05-28 00:35:15 +00007262 SDValue Chain = ST->getChain();
7263 SDValue Value = ST->getValue();
7264 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00007265 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00007266
7267 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00007268 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007269
7270 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007271
Chris Lattner2392ae72010-04-15 04:48:01 +00007272 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
7273 // is a byte mask indicating a consecutive number of bytes, check to see if
7274 // Y is known to provide just those bytes. If so, we try to replace the
7275 // load + replace + store sequence with a single (narrower) store, which makes
7276 // the load dead.
7277 if (Opc == ISD::OR) {
7278 std::pair<unsigned, unsigned> MaskedLoad;
7279 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
7280 if (MaskedLoad.first)
7281 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7282 Value.getOperand(1), ST,this))
7283 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007284
Chris Lattner2392ae72010-04-15 04:48:01 +00007285 // Or is commutative, so try swapping X and Y.
7286 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
7287 if (MaskedLoad.first)
7288 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7289 Value.getOperand(0), ST,this))
7290 return SDValue(NewST, 0);
7291 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007292
Evan Cheng8b944d32009-05-28 00:35:15 +00007293 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
7294 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00007295 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007296
7297 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00007298 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
7299 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00007300 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00007301 if (LD->getBasePtr() != Ptr ||
7302 LD->getPointerInfo().getAddrSpace() !=
7303 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00007304 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007305
7306 // Find the type to narrow it the load / op / store to.
7307 SDValue N1 = Value.getOperand(1);
7308 unsigned BitWidth = N1.getValueSizeInBits();
7309 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
7310 if (Opc == ISD::AND)
7311 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00007312 if (Imm == 0 || Imm.isAllOnesValue())
7313 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007314 unsigned ShAmt = Imm.countTrailingZeros();
7315 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
7316 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00007317 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007318 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00007319 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00007320 TLI.isNarrowingProfitable(VT, NewVT))) {
7321 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00007322 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007323 }
Evan Chengcdcecc02009-05-28 18:41:02 +00007324 if (NewBW >= BitWidth)
7325 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007326
7327 // If the lsb changed does not start at the type bitwidth boundary,
7328 // start at the previous one.
7329 if (ShAmt % NewBW)
7330 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
7331 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
7332 if ((Imm & Mask) == Imm) {
7333 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
7334 if (Opc == ISD::AND)
7335 NewImm ^= APInt::getAllOnesValue(NewBW);
7336 uint64_t PtrOff = ShAmt / 8;
7337 // For big endian targets, we need to adjust the offset to the pointer to
7338 // load the correct bytes.
7339 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00007340 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00007341
7342 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007343 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007344 if (NewAlign < TLI.getDataLayout()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00007345 return SDValue();
7346
Evan Cheng8b944d32009-05-28 00:35:15 +00007347 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
7348 Ptr.getValueType(), Ptr,
7349 DAG.getConstant(PtrOff, Ptr.getValueType()));
7350 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
7351 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007352 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007353 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007354 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007355 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
7356 DAG.getConstant(NewImm, NewVT));
7357 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
7358 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007359 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007360 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007361
7362 AddToWorkList(NewPtr.getNode());
7363 AddToWorkList(NewLD.getNode());
7364 AddToWorkList(NewVal.getNode());
7365 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007366 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Cheng8b944d32009-05-28 00:35:15 +00007367 ++OpsNarrowed;
7368 return NewST;
7369 }
7370 }
7371
Evan Chengcdcecc02009-05-28 18:41:02 +00007372 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007373}
7374
Evan Cheng31959b12011-02-02 01:06:55 +00007375/// TransformFPLoadStorePair - For a given floating point load / store pair,
7376/// if the load value isn't used by any other operations, then consider
7377/// transforming the pair to integer load / store operations if the target
7378/// deems the transformation profitable.
7379SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
7380 StoreSDNode *ST = cast<StoreSDNode>(N);
7381 SDValue Chain = ST->getChain();
7382 SDValue Value = ST->getValue();
7383 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
7384 Value.hasOneUse() &&
7385 Chain == SDValue(Value.getNode(), 1)) {
7386 LoadSDNode *LD = cast<LoadSDNode>(Value);
7387 EVT VT = LD->getMemoryVT();
7388 if (!VT.isFloatingPoint() ||
7389 VT != ST->getMemoryVT() ||
7390 LD->isNonTemporal() ||
7391 ST->isNonTemporal() ||
7392 LD->getPointerInfo().getAddrSpace() != 0 ||
7393 ST->getPointerInfo().getAddrSpace() != 0)
7394 return SDValue();
7395
7396 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
7397 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
7398 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
7399 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
7400 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
7401 return SDValue();
7402
7403 unsigned LDAlign = LD->getAlignment();
7404 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007405 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007406 unsigned ABIAlign = TLI.getDataLayout()->getABITypeAlignment(IntVTTy);
Evan Cheng31959b12011-02-02 01:06:55 +00007407 if (LDAlign < ABIAlign || STAlign < ABIAlign)
7408 return SDValue();
7409
7410 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
7411 LD->getChain(), LD->getBasePtr(),
7412 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007413 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00007414
7415 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
7416 NewLD, ST->getBasePtr(),
7417 ST->getPointerInfo(),
7418 false, false, STAlign);
7419
7420 AddToWorkList(NewLD.getNode());
7421 AddToWorkList(NewST.getNode());
7422 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007423 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Cheng31959b12011-02-02 01:06:55 +00007424 ++LdStFP2Int;
7425 return NewST;
7426 }
7427
7428 return SDValue();
7429}
7430
Nadav Rotemc653de62012-10-03 16:11:15 +00007431/// Returns the base pointer and an integer offset from that object.
7432static std::pair<SDValue, int64_t> GetPointerBaseAndOffset(SDValue Ptr) {
7433 if (Ptr->getOpcode() == ISD::ADD && isa<ConstantSDNode>(Ptr->getOperand(1))) {
7434 int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue();
7435 SDValue Base = Ptr->getOperand(0);
7436 return std::make_pair(Base, Offset);
7437 }
7438
7439 return std::make_pair(Ptr, 0);
7440}
7441
7442/// Holds a pointer to an LSBaseSDNode as well as information on where it
7443/// is located in a sequence of memory operations connected by a chain.
7444struct MemOpLink {
7445 MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq):
7446 MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { }
7447 // Ptr to the mem node.
7448 LSBaseSDNode *MemNode;
7449 // Offset from the base ptr.
7450 int64_t OffsetFromBase;
7451 // What is the sequence number of this mem node.
7452 // Lowest mem operand in the DAG starts at zero.
7453 unsigned SequenceNum;
7454};
7455
7456/// Sorts store nodes in a link according to their offset from a shared
7457// base ptr.
7458struct ConsecutiveMemoryChainSorter {
7459 bool operator()(MemOpLink LHS, MemOpLink RHS) {
7460 return LHS.OffsetFromBase < RHS.OffsetFromBase;
7461 }
7462};
7463
7464bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) {
7465 EVT MemVT = St->getMemoryVT();
7466 int64_t ElementSizeBytes = MemVT.getSizeInBits()/8;
7467
7468 // Don't merge vectors into wider inputs.
7469 if (MemVT.isVector() || !MemVT.isSimple())
7470 return false;
7471
7472 // Perform an early exit check. Do not bother looking at stored values that
7473 // are not constants or loads.
7474 SDValue StoredVal = St->getValue();
7475 bool IsLoadSrc = isa<LoadSDNode>(StoredVal);
7476 if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) &&
7477 !IsLoadSrc)
7478 return false;
7479
7480 // Only look at ends of store sequences.
7481 SDValue Chain = SDValue(St, 1);
7482 if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE)
7483 return false;
7484
7485 // This holds the base pointer and the offset in bytes from the base pointer.
7486 std::pair<SDValue, int64_t> BasePtr =
7487 GetPointerBaseAndOffset(St->getBasePtr());
7488
7489 // We must have a base and an offset.
7490 if (!BasePtr.first.getNode())
7491 return false;
7492
7493 // Do not handle stores to undef base pointers.
7494 if (BasePtr.first.getOpcode() == ISD::UNDEF)
7495 return false;
7496
7497 SmallVector<MemOpLink, 8> StoreNodes;
7498 // Walk up the chain and look for nodes with offsets from the same
7499 // base pointer. Stop when reaching an instruction with a different kind
7500 // or instruction which has a different base pointer.
7501 unsigned Seq = 0;
7502 StoreSDNode *Index = St;
7503 while (Index) {
7504 // If the chain has more than one use, then we can't reorder the mem ops.
7505 if (Index != St && !SDValue(Index, 1)->hasOneUse())
7506 break;
7507
7508 // Find the base pointer and offset for this memory node.
7509 std::pair<SDValue, int64_t> Ptr =
7510 GetPointerBaseAndOffset(Index->getBasePtr());
7511
7512 // Check that the base pointer is the same as the original one.
7513 if (Ptr.first.getNode() != BasePtr.first.getNode())
7514 break;
7515
7516 // Check that the alignment is the same.
7517 if (Index->getAlignment() != St->getAlignment())
7518 break;
7519
7520 // The memory operands must not be volatile.
7521 if (Index->isVolatile() || Index->isIndexed())
7522 break;
7523
7524 // No truncation.
7525 if (StoreSDNode *St = dyn_cast<StoreSDNode>(Index))
7526 if (St->isTruncatingStore())
7527 break;
7528
7529 // The stored memory type must be the same.
7530 if (Index->getMemoryVT() != MemVT)
7531 break;
7532
7533 // We do not allow unaligned stores because we want to prevent overriding
7534 // stores.
7535 if (Index->getAlignment()*8 != MemVT.getSizeInBits())
7536 break;
7537
7538 // We found a potential memory operand to merge.
7539 StoreNodes.push_back(MemOpLink(Index, Ptr.second, Seq++));
7540
7541 // Move up the chain to the next memory operation.
7542 Index = dyn_cast<StoreSDNode>(Index->getChain().getNode());
7543 }
7544
7545 // Check if there is anything to merge.
7546 if (StoreNodes.size() < 2)
7547 return false;
7548
7549 // Sort the memory operands according to their distance from the base pointer.
7550 std::sort(StoreNodes.begin(), StoreNodes.end(),
7551 ConsecutiveMemoryChainSorter());
7552
7553 // Scan the memory operations on the chain and find the first non-consecutive
7554 // store memory address.
7555 unsigned LastConsecutiveStore = 0;
7556 int64_t StartAddress = StoreNodes[0].OffsetFromBase;
7557 for (unsigned i=1; i<StoreNodes.size(); ++i) {
7558 int64_t CurrAddress = StoreNodes[i].OffsetFromBase;
7559 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
7560 break;
7561
7562 // Mark this node as useful.
7563 LastConsecutiveStore = i;
7564 }
7565
7566 // The node with the lowest store address.
7567 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode;
7568
7569 // Store the constants into memory as one consecutive store.
7570 if (!IsLoadSrc) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007571 unsigned LastLegalType = 0;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007572 unsigned LastLegalVectorType = 0;
7573 bool NonZero = false;
Nadav Rotemc653de62012-10-03 16:11:15 +00007574 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
7575 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7576 SDValue StoredVal = St->getValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007577
7578 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00007579 NonZero |= !C->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007580 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00007581 NonZero |= !C->getConstantFPValue()->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007582 } else {
7583 // Non constant.
Nadav Rotemc653de62012-10-03 16:11:15 +00007584 break;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007585 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007586
Nadav Rotemc653de62012-10-03 16:11:15 +00007587 // Find a legal type for the constant store.
7588 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
7589 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7590 if (TLI.isTypeLegal(StoreTy))
7591 LastLegalType = i+1;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007592
7593 // Find a legal type for the vector store.
7594 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
7595 if (TLI.isTypeLegal(Ty))
7596 LastLegalVectorType = i + 1;
Nadav Rotemc653de62012-10-03 16:11:15 +00007597 }
7598
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007599 // We only use vectors if the constant is known to be zero.
7600 if (NonZero)
7601 LastLegalVectorType = 0;
7602
Nadav Rotemc653de62012-10-03 16:11:15 +00007603 // Check if we found a legal integer type to store.
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007604 if (LastLegalType == 0 && LastLegalVectorType == 0)
Nadav Rotemc653de62012-10-03 16:11:15 +00007605 return false;
7606
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007607 bool UseVector = LastLegalVectorType > LastLegalType;
7608 unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType;
7609
7610 // Make sure we have something to merge.
7611 if (NumElem < 2)
7612 return false;
Nadav Rotemc653de62012-10-03 16:11:15 +00007613
7614 unsigned EarliestNodeUsed = 0;
7615 for (unsigned i=0; i < NumElem; ++i) {
7616 // Find a chain for the new wide-store operand. Notice that some
7617 // of the store nodes that we found may not be selected for inclusion
7618 // in the wide store. The chain we use needs to be the chain of the
7619 // earliest store node which is *used* and replaced by the wide store.
7620 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
7621 EarliestNodeUsed = i;
7622 }
7623
7624 // The earliest Node in the DAG.
7625 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
Nadav Rotemc653de62012-10-03 16:11:15 +00007626 DebugLoc DL = StoreNodes[0].MemNode->getDebugLoc();
Nadav Rotemc653de62012-10-03 16:11:15 +00007627
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007628 SDValue StoredVal;
7629 if (UseVector) {
7630 // Find a legal type for the vector store.
7631 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
7632 assert(TLI.isTypeLegal(Ty) && "Illegal vector store");
7633 StoredVal = DAG.getConstant(0, Ty);
7634 } else {
7635 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
7636 APInt StoreInt(StoreBW, 0);
7637
7638 // Construct a single integer constant which is made of the smaller
7639 // constant inputs.
7640 bool IsLE = TLI.isLittleEndian();
7641 for (unsigned i = 0; i < NumElem ; ++i) {
7642 unsigned Idx = IsLE ?(NumElem - 1 - i) : i;
7643 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode);
7644 SDValue Val = St->getValue();
7645 StoreInt<<=ElementSizeBytes*8;
7646 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) {
7647 StoreInt|=C->getAPIntValue().zext(StoreBW);
7648 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) {
7649 StoreInt|= C->getValueAPF().bitcastToAPInt().zext(StoreBW);
7650 } else {
7651 assert(false && "Invalid constant element type");
7652 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007653 }
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007654
7655 // Create the new Load and Store operations.
7656 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7657 StoredVal = DAG.getConstant(StoreInt, StoreTy);
Nadav Rotemc653de62012-10-03 16:11:15 +00007658 }
7659
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007660 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), DL, StoredVal,
Nadav Rotemc653de62012-10-03 16:11:15 +00007661 FirstInChain->getBasePtr(),
7662 FirstInChain->getPointerInfo(),
7663 false, false,
7664 FirstInChain->getAlignment());
7665
7666 // Replace the first store with the new store
7667 CombineTo(EarliestOp, NewStore);
7668 // Erase all other stores.
7669 for (unsigned i = 0; i < NumElem ; ++i) {
7670 if (StoreNodes[i].MemNode == EarliestOp)
7671 continue;
7672 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7673 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
7674 removeFromWorkList(St);
7675 DAG.DeleteNode(St);
7676 }
7677
7678 return true;
7679 }
7680
7681 // Below we handle the case of multiple consecutive stores that
7682 // come from multiple consecutive loads. We merge them into a single
7683 // wide load and a single wide store.
7684
7685 // Look for load nodes which are used by the stored values.
7686 SmallVector<MemOpLink, 8> LoadNodes;
7687
7688 // Find acceptable loads. Loads need to have the same chain (token factor),
7689 // must not be zext, volatile, indexed, and they must be consecutive.
7690 SDValue LdBasePtr;
7691 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
7692 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7693 LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue());
7694 if (!Ld) break;
7695
7696 // Loads must only have one use.
7697 if (!Ld->hasNUsesOfValue(1, 0))
7698 break;
7699
7700 // Check that the alignment is the same as the stores.
7701 if (Ld->getAlignment() != St->getAlignment())
7702 break;
7703
7704 // The memory operands must not be volatile.
7705 if (Ld->isVolatile() || Ld->isIndexed())
7706 break;
7707
7708 // We do not accept ext loads.
7709 if (Ld->getExtensionType() != ISD::NON_EXTLOAD)
7710 break;
7711
7712 // The stored memory type must be the same.
7713 if (Ld->getMemoryVT() != MemVT)
7714 break;
7715
7716 std::pair<SDValue, int64_t> LdPtr =
7717 GetPointerBaseAndOffset(Ld->getBasePtr());
7718
7719 // If this is not the first ptr that we check.
7720 if (LdBasePtr.getNode()) {
7721 // The base ptr must be the same.
7722 if (LdPtr.first != LdBasePtr)
7723 break;
7724 } else {
7725 // Check that all other base pointers are the same as this one.
7726 LdBasePtr = LdPtr.first;
7727 }
7728
7729 // We found a potential memory operand to merge.
7730 LoadNodes.push_back(MemOpLink(Ld, LdPtr.second, 0));
7731 }
7732
7733 if (LoadNodes.size() < 2)
7734 return false;
7735
7736 // Scan the memory operations on the chain and find the first non-consecutive
7737 // load memory address. These variables hold the index in the store node
7738 // array.
7739 unsigned LastConsecutiveLoad = 0;
7740 // This variable refers to the size and not index in the array.
7741 unsigned LastLegalVectorType = 0;
7742 unsigned LastLegalIntegerType = 0;
7743 StartAddress = LoadNodes[0].OffsetFromBase;
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007744 SDValue FirstChain = LoadNodes[0].MemNode->getChain();
7745 for (unsigned i = 1; i < LoadNodes.size(); ++i) {
7746 // All loads much share the same chain.
7747 if (LoadNodes[i].MemNode->getChain() != FirstChain)
7748 break;
7749
Nadav Rotemc653de62012-10-03 16:11:15 +00007750 int64_t CurrAddress = LoadNodes[i].OffsetFromBase;
7751 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
7752 break;
7753 LastConsecutiveLoad = i;
7754
7755 // Find a legal type for the vector store.
7756 EVT StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
7757 if (TLI.isTypeLegal(StoreTy))
7758 LastLegalVectorType = i + 1;
7759
7760 // Find a legal type for the integer store.
7761 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
7762 StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7763 if (TLI.isTypeLegal(StoreTy))
7764 LastLegalIntegerType = i + 1;
7765 }
7766
7767 // Only use vector types if the vector type is larger than the integer type.
7768 // If they are the same, use integers.
7769 bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType;
7770 unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType);
7771
7772 // We add +1 here because the LastXXX variables refer to location while
7773 // the NumElem refers to array/index size.
7774 unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1;
7775 NumElem = std::min(LastLegalType, NumElem);
7776
7777 if (NumElem < 2)
7778 return false;
7779
7780 // The earliest Node in the DAG.
7781 unsigned EarliestNodeUsed = 0;
7782 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
7783 for (unsigned i=1; i<NumElem; ++i) {
7784 // Find a chain for the new wide-store operand. Notice that some
7785 // of the store nodes that we found may not be selected for inclusion
7786 // in the wide store. The chain we use needs to be the chain of the
7787 // earliest store node which is *used* and replaced by the wide store.
7788 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
7789 EarliestNodeUsed = i;
7790 }
7791
7792 // Find if it is better to use vectors or integers to load and store
7793 // to memory.
7794 EVT JointMemOpVT;
7795 if (UseVectorTy) {
7796 JointMemOpVT = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
7797 } else {
7798 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
7799 JointMemOpVT = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7800 }
7801
7802 DebugLoc LoadDL = LoadNodes[0].MemNode->getDebugLoc();
7803 DebugLoc StoreDL = StoreNodes[0].MemNode->getDebugLoc();
7804
7805 LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode);
7806 SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL,
7807 FirstLoad->getChain(),
7808 FirstLoad->getBasePtr(),
7809 FirstLoad->getPointerInfo(),
7810 false, false, false,
7811 FirstLoad->getAlignment());
7812
7813 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), StoreDL, NewLoad,
7814 FirstInChain->getBasePtr(),
7815 FirstInChain->getPointerInfo(), false, false,
7816 FirstInChain->getAlignment());
7817
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007818 // Replace one of the loads with the new load.
7819 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode);
7820 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1),
7821 SDValue(NewLoad.getNode(), 1));
7822
7823 // Remove the rest of the load chains.
7824 for (unsigned i = 1; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007825 // Replace all chain users of the old load nodes with the chain of the new
7826 // load node.
7827 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode);
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007828 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain());
7829 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007830
Nadav Rotem2e7d3812012-10-03 19:30:31 +00007831 // Replace the first store with the new store.
7832 CombineTo(EarliestOp, NewStore);
7833 // Erase all other stores.
7834 for (unsigned i = 0; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007835 // Remove all Store nodes.
7836 if (StoreNodes[i].MemNode == EarliestOp)
7837 continue;
7838 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7839 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
7840 removeFromWorkList(St);
7841 DAG.DeleteNode(St);
7842 }
7843
7844 return true;
7845}
7846
Dan Gohman475871a2008-07-27 21:46:04 +00007847SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007848 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007849 SDValue Chain = ST->getChain();
7850 SDValue Value = ST->getValue();
7851 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007852
Evan Cheng59d5b682007-05-07 21:27:48 +00007853 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00007854 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007855 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007856 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00007857 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00007858 EVT SVT = Value.getOperand(0).getValueType();
Micah Villmow3574eca2012-10-08 16:38:25 +00007859 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00007860 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007861 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00007862 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007863 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00007864 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00007865 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007866 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00007867 }
Owen Andersona34d9362011-04-14 17:30:49 +00007868
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007869 // Turn 'store undef, Ptr' -> nothing.
7870 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
7871 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007872
Nate Begeman2cbba892006-12-11 02:23:46 +00007873 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00007874 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007875 // NOTE: If the original store is volatile, this transform must not increase
7876 // the number of stores. For example, on x86-32 an f64 can be stored in one
7877 // processor operation but an i64 (which is not legal) requires two. So the
7878 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00007879 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00007880 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00007881 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007882 default: llvm_unreachable("Unknown FP type");
Pete Cooper438c0402012-06-21 18:00:39 +00007883 case MVT::f16: // We don't do this for these yet.
7884 case MVT::f80:
Owen Anderson825b72b2009-08-11 20:47:22 +00007885 case MVT::f128:
7886 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00007887 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007888 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00007889 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007890 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00007891 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00007892 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00007893 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007894 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007895 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00007896 }
7897 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007898 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00007899 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007900 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007901 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00007902 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00007903 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00007904 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007905 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007906 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007907 }
Owen Andersona34d9362011-04-14 17:30:49 +00007908
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007909 if (!ST->isVolatile() &&
7910 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00007911 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00007912 // argument passing. Since this is so common, custom legalize the
7913 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00007914 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007915 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
7916 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00007917 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00007918
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007919 unsigned Alignment = ST->getAlignment();
7920 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00007921 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007922
Bill Wendlingc144a572009-01-30 23:36:47 +00007923 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007924 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007925 isVolatile, isNonTemporal,
7926 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00007927 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00007928 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00007929 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00007930 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007931 Ptr, ST->getPointerInfo().getWithOffset(4),
7932 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00007933 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00007934 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00007935 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00007936 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007937
Chris Lattner62be1a72006-12-12 04:16:14 +00007938 break;
Evan Cheng25ece662006-12-11 17:25:19 +00007939 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007940 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007941 }
7942
Evan Cheng255f20f2010-04-01 06:04:33 +00007943 // Try to infer better alignment information than the store already has.
7944 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007945 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7946 if (Align > ST->getAlignment())
7947 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
7948 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
7949 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007950 }
7951 }
7952
Evan Cheng31959b12011-02-02 01:06:55 +00007953 // Try transforming a pair floating point load / store ops to integer
7954 // load / store ops.
7955 SDValue NewST = TransformFPLoadStorePair(N);
7956 if (NewST.getNode())
7957 return NewST;
7958
Scott Michelfdc40a02009-02-17 22:15:04 +00007959 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007960 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007961 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007962
Jim Laskey6ff23e52006-10-04 16:53:27 +00007963 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007964 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007965 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007966
7967 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007968 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007969 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007970 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007971 ST->getMemoryVT(), ST->isVolatile(),
7972 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007973 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00007974 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007975 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007976 ST->isVolatile(), ST->isNonTemporal(),
7977 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007978 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007979
Jim Laskey279f0532006-09-25 16:29:54 +00007980 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00007981 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007982 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00007983
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007984 // Make sure the new and old chains are cleaned up.
7985 AddToWorkList(Token.getNode());
7986
Jim Laskey274062c2006-10-13 23:32:28 +00007987 // Don't add users to work list.
7988 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007989 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00007990 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007991
Evan Cheng33dbedc2006-11-05 09:31:14 +00007992 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007993 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007994 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00007995
Chris Lattner3c872852007-12-29 06:26:16 +00007996 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00007997 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00007998 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00007999 // See if we can simplify the input to this truncstore with knowledge that
8000 // only the low bits are being used. For example:
8001 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00008002 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00008003 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00008004 APInt::getLowBitsSet(
8005 Value.getValueType().getScalarType().getSizeInBits(),
8006 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00008007 AddToWorkList(Value.getNode());
8008 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00008009 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008010 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008011 ST->isVolatile(), ST->isNonTemporal(),
8012 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00008013
Chris Lattnere33544c2007-10-13 06:58:48 +00008014 // Otherwise, see if we can simplify the operation with
8015 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00008016 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00008017 APInt::getLowBitsSet(
8018 Value.getValueType().getScalarType().getSizeInBits(),
8019 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00008020 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00008021 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008022
Chris Lattner3c872852007-12-29 06:26:16 +00008023 // If this is a load followed by a store to the same location, then the store
8024 // is dead/noop.
8025 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008026 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008027 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00008028 // There can't be any side effects between the load and store, such as
8029 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00008030 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00008031 // The store is dead, remove it.
8032 return Chain;
8033 }
8034 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008035
Chris Lattnerddf89562008-01-17 19:59:44 +00008036 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
8037 // truncating store. We can do this even if this is already a truncstore.
8038 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00008039 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008040 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008041 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00008042 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008043 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008044 ST->isVolatile(), ST->isNonTemporal(),
8045 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00008046 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008047
Nadav Rotemc653de62012-10-03 16:11:15 +00008048 // Only perform this optimization before the types are legal, because we
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008049 // don't want to perform this optimization on every DAGCombine invocation.
Nadav Rotemc653de62012-10-03 16:11:15 +00008050 if (!LegalTypes && MergeConsecutiveStores(ST))
8051 return SDValue(N, 0);
8052
Evan Cheng8b944d32009-05-28 00:35:15 +00008053 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00008054}
8055
Dan Gohman475871a2008-07-27 21:46:04 +00008056SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
8057 SDValue InVec = N->getOperand(0);
8058 SDValue InVal = N->getOperand(1);
8059 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00008060 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008061
Bob Wilson492fd452010-05-19 23:42:58 +00008062 // If the inserted element is an UNDEF, just use the input vector.
8063 if (InVal.getOpcode() == ISD::UNDEF)
8064 return InVec;
8065
Nadav Rotem609d54e2011-02-12 14:40:33 +00008066 EVT VT = InVec.getValueType();
8067
Owen Anderson95771af2011-02-25 21:41:48 +00008068 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00008069 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
8070 return SDValue();
8071
Eli Friedman9db817f2011-09-09 21:04:06 +00008072 // Check that we know which element is being inserted
8073 if (!isa<ConstantSDNode>(EltNo))
8074 return SDValue();
8075 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008076
Eli Friedman9db817f2011-09-09 21:04:06 +00008077 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
8078 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
8079 // vector elements.
8080 SmallVector<SDValue, 8> Ops;
8081 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
8082 Ops.append(InVec.getNode()->op_begin(),
8083 InVec.getNode()->op_end());
8084 } else if (InVec.getOpcode() == ISD::UNDEF) {
8085 unsigned NElts = VT.getVectorNumElements();
8086 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
8087 } else {
8088 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008089 }
Eli Friedman9db817f2011-09-09 21:04:06 +00008090
8091 // Insert the element
8092 if (Elt < Ops.size()) {
8093 // All the operands of BUILD_VECTOR must have the same type;
8094 // we enforce that here.
8095 EVT OpVT = Ops[0].getValueType();
8096 if (InVal.getValueType() != OpVT)
8097 InVal = OpVT.bitsGT(InVal.getValueType()) ?
8098 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
8099 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
8100 Ops[Elt] = InVal;
8101 }
8102
8103 // Return the new vector
8104 return DAG.getNode(ISD::BUILD_VECTOR, dl,
8105 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00008106}
8107
Dan Gohman475871a2008-07-27 21:46:04 +00008108SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008109 // (vextract (scalar_to_vector val, 0) -> val
8110 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00008111 EVT VT = InVec.getValueType();
8112 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008113
Duncan Sandsc356f332011-05-09 08:03:33 +00008114 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
8115 // Check if the result type doesn't match the inserted element type. A
8116 // SCALAR_TO_VECTOR may truncate the inserted element and the
8117 // EXTRACT_VECTOR_ELT may widen the extracted vector.
8118 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00008119 if (InOp.getValueType() != NVT) {
8120 assert(InOp.getValueType().isInteger() && NVT.isInteger());
8121 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
8122 }
8123 return InOp;
8124 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008125
Nadav Rotemba05c912012-01-17 21:44:01 +00008126 SDValue EltNo = N->getOperand(1);
8127 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
8128
8129 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
8130 // We only perform this optimization before the op legalization phase because
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008131 // we may introduce new vector instructions which are not backed by TD
8132 // patterns. For example on AVX, extracting elements from a wide vector
8133 // without using extract_subvector.
Nadav Rotemba05c912012-01-17 21:44:01 +00008134 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
8135 && ConstEltNo && !LegalOperations) {
8136 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
8137 int NumElem = VT.getVectorNumElements();
8138 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
8139 // Find the new index to extract from.
8140 int OrigElt = SVOp->getMaskElt(Elt);
8141
8142 // Extracting an undef index is undef.
8143 if (OrigElt == -1)
8144 return DAG.getUNDEF(NVT);
8145
8146 // Select the right vector half to extract from.
8147 if (OrigElt < NumElem) {
8148 InVec = InVec->getOperand(0);
8149 } else {
8150 InVec = InVec->getOperand(1);
8151 OrigElt -= NumElem;
8152 }
8153
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008154 EVT IndexTy = N->getOperand(1).getValueType();
Nadav Rotemba05c912012-01-17 21:44:01 +00008155 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008156 InVec, DAG.getConstant(OrigElt, IndexTy));
Nadav Rotemba05c912012-01-17 21:44:01 +00008157 }
8158
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008159 // Perform only after legalization to ensure build_vector / vector_shuffle
8160 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00008161 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008162
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008163 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
8164 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
8165 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00008166
Nadav Rotemba05c912012-01-17 21:44:01 +00008167 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00008168 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00008169 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00008170 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00008171 EVT ExtVT = VT.getVectorElementType();
8172 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00008173
Evan Cheng84387ea2012-03-13 22:00:52 +00008174 // If the result of load has to be truncated, then it's not necessarily
8175 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00008176 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00008177 return SDValue();
8178
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008179 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008180 // Don't duplicate a load with other uses.
8181 if (!InVec.hasOneUse())
8182 return SDValue();
8183
Owen Andersone50ed302009-08-10 22:56:29 +00008184 EVT BCVT = InVec.getOperand(0).getValueType();
8185 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008186 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00008187 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
8188 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008189 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00008190 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008191 NewLoad = true;
8192 }
Evan Cheng513da432007-10-06 08:19:55 +00008193
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008194 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00008195 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00008196 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008197 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00008198 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00008199 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00008200 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008201 // Don't duplicate a load with other uses.
8202 if (!InVec.hasOneUse())
8203 return SDValue();
8204
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008205 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00008206 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008207 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
8208 // =>
8209 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00008210
Eli Friedmand6e25602011-12-26 22:49:32 +00008211 // Don't duplicate a load with other uses.
8212 if (!InVec.hasOneUse())
8213 return SDValue();
8214
Mon P Wanga60b5232008-12-11 00:26:16 +00008215 // If the bit convert changed the number of elements, it is unsafe
8216 // to examine the mask.
8217 if (BCNumEltsChanged)
8218 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00008219
8220 // Select the input vector, guarding against out of range extract vector.
8221 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00008222 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00008223 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
8224
Eli Friedmand6e25602011-12-26 22:49:32 +00008225 if (InVec.getOpcode() == ISD::BITCAST) {
8226 // Don't duplicate a load with other uses.
8227 if (!InVec.hasOneUse())
8228 return SDValue();
8229
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008230 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00008231 }
Gabor Greifba36cb52008-08-28 21:40:38 +00008232 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008233 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00008234 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00008235 }
8236 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008237
Eli Friedmand6e25602011-12-26 22:49:32 +00008238 // Make sure we found a non-volatile load and the extractelement is
8239 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00008240 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00008241 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008242
Eric Christopherd81f17a2010-11-03 20:44:42 +00008243 // If Idx was -1 above, Elt is going to be -1, so just return undef.
8244 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00008245 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00008246
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008247 unsigned Align = LN0->getAlignment();
8248 if (NewLoad) {
8249 // Check the resultant load doesn't need a higher alignment than the
8250 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00008251 unsigned NewAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00008252 TLI.getDataLayout()
Eric Christopher503a64d2010-12-09 04:48:06 +00008253 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00008254
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008255 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008256 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00008257
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008258 Align = NewAlign;
8259 }
8260
Dan Gohman475871a2008-07-27 21:46:04 +00008261 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00008262 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008263
Eric Christopherd81f17a2010-11-03 20:44:42 +00008264 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00008265 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00008266 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008267 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00008268 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00008269 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008270 DAG.getConstant(PtrOff, PtrType));
8271 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008272
Eli Friedman4db4add2011-11-16 23:50:22 +00008273 // The replacement we need to do here is a little tricky: we need to
8274 // replace an extractelement of a load with a load.
8275 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00008276 // Note that this replacement assumes that the extractvalue is the only
8277 // use of the load; that's okay because we don't want to perform this
8278 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00008279 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00008280 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00008281 if (NVT.bitsGT(LVT)) {
8282 // If the result type of vextract is wider than the load, then issue an
8283 // extending load instead.
8284 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
8285 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
8286 Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(),
8287 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
8288 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008289 Chain = Load.getValue(1);
8290 } else {
Evan Cheng84387ea2012-03-13 22:00:52 +00008291 Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
8292 LN0->getPointerInfo().getWithOffset(PtrOff),
8293 LN0->isVolatile(), LN0->isNonTemporal(),
8294 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008295 Chain = Load.getValue(1);
8296 if (NVT.bitsLT(LVT))
8297 Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load);
8298 else
8299 Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load);
8300 }
Eli Friedman4db4add2011-11-16 23:50:22 +00008301 WorkListRemover DeadNodes(*this);
8302 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00008303 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00008304 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedman4db4add2011-11-16 23:50:22 +00008305 // Since we're explcitly calling ReplaceAllUses, add the new node to the
8306 // worklist explicitly as well.
8307 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00008308 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00008309 // Make sure to revisit this node to clean it up; it will usually be dead.
8310 AddToWorkList(N);
8311 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00008312 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008313
Dan Gohman475871a2008-07-27 21:46:04 +00008314 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00008315}
Evan Cheng513da432007-10-06 08:19:55 +00008316
Dan Gohman475871a2008-07-27 21:46:04 +00008317SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00008318 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008319 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008320 EVT VT = N->getValueType(0);
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008321
8322 // A vector built entirely of undefs is undef.
8323 if (ISD::allOperandsUndef(N))
8324 return DAG.getUNDEF(VT);
8325
Nadav Rotemb00418a2011-10-29 21:23:04 +00008326 // Check to see if this is a BUILD_VECTOR of a bunch of values
8327 // which come from any_extend or zero_extend nodes. If so, we can create
8328 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00008329 // optimizations. We do not handle sign-extend because we can't fill the sign
8330 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008331 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00008332 bool AllAnyExt = true;
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008333
Craig Topperd3b58892012-01-17 09:09:48 +00008334 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00008335 SDValue In = N->getOperand(i);
8336 // Ignore undef inputs.
8337 if (In.getOpcode() == ISD::UNDEF) continue;
8338
8339 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
8340 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
8341
Nadav Rotemf47368b2011-10-31 20:08:25 +00008342 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008343 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00008344 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008345 break;
8346 }
8347
8348 // The input is a ZeroExt or AnyExt. Check the original type.
8349 EVT InTy = In.getOperand(0).getValueType();
8350
8351 // Check that all of the widened source types are the same.
8352 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00008353 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008354 SourceType = InTy;
8355 else if (InTy != SourceType) {
8356 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00008357 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008358 break;
8359 }
8360
8361 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00008362 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008363 }
8364
Nadav Rotemf47368b2011-10-31 20:08:25 +00008365 // In order to have valid types, all of the inputs must be extended from the
8366 // same source type and all of the inputs must be any or zero extend.
8367 // Scalar sizes must be a power of two.
8368 EVT OutScalarTy = N->getValueType(0).getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008369 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00008370 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
8371 isPowerOf2_32(SourceType.getSizeInBits());
8372
8373 // We perform this optimization post type-legalization because
8374 // the type-legalizer often scalarizes integer-promoted vectors.
8375 // Performing this optimization before may create bit-casts which
8376 // will be type-legalized to complex code sequences.
8377 // We perform this optimization only before the operation legalizer because we
8378 // may introduce illegal operations.
Nadav Rotem6431ff92012-03-15 08:49:06 +00008379 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
8380 // turn into a single shuffle instruction.
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008381 if ((Level == AfterLegalizeVectorOps || Level == AfterLegalizeTypes) &&
8382 ValidTypes) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00008383 bool isLE = TLI.isLittleEndian();
Nadav Rotemf47368b2011-10-31 20:08:25 +00008384 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008385 assert(ElemRatio > 1 && "Invalid element size ratio");
Craig Topperd3b58892012-01-17 09:09:48 +00008386 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
Nadav Rotemf47368b2011-10-31 20:08:25 +00008387 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008388
8389 unsigned NewBVElems = ElemRatio * N->getValueType(0).getVectorNumElements();
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00008390 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008391
8392 // Populate the new build_vector
8393 for (unsigned i=0; i < N->getNumOperands(); ++i) {
8394 SDValue Cast = N->getOperand(i);
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00008395 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
8396 Cast.getOpcode() == ISD::ZERO_EXTEND ||
8397 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
Nadav Rotemb00418a2011-10-29 21:23:04 +00008398 SDValue In;
8399 if (Cast.getOpcode() == ISD::UNDEF)
Nadav Rotemf47368b2011-10-31 20:08:25 +00008400 In = DAG.getUNDEF(SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008401 else
8402 In = Cast->getOperand(0);
8403 unsigned Index = isLE ? (i * ElemRatio) :
8404 (i * ElemRatio + (ElemRatio - 1));
8405
8406 assert(Index < Ops.size() && "Invalid index");
8407 Ops[Index] = In;
8408 }
8409
8410 // The type of the new BUILD_VECTOR node.
Nadav Rotemf47368b2011-10-31 20:08:25 +00008411 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008412 assert(VecVT.getSizeInBits() == N->getValueType(0).getSizeInBits() &&
8413 "Invalid vector size");
Nadav Rotemf47368b2011-10-31 20:08:25 +00008414 // Check if the new vector type is legal.
8415 if (!isTypeLegal(VecVT)) return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008416
8417 // Make the new BUILD_VECTOR.
8418 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8419 VecVT, &Ops[0], Ops.size());
8420
Nadav Rotem6431ff92012-03-15 08:49:06 +00008421 // The new BUILD_VECTOR node has the potential to be further optimized.
8422 AddToWorkList(BV.getNode());
Nadav Rotemb00418a2011-10-29 21:23:04 +00008423 // Bitcast to the desired type.
8424 return DAG.getNode(ISD::BITCAST, dl, N->getValueType(0), BV);
8425 }
Chris Lattnerca242442006-03-19 01:27:56 +00008426
Dan Gohman7f321562007-06-25 16:23:39 +00008427 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
8428 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
8429 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00008430
8431 // May only combine to shuffle after legalize if shuffle is legal.
8432 if (LegalOperations &&
8433 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
8434 return SDValue();
8435
Dan Gohman475871a2008-07-27 21:46:04 +00008436 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00008437 for (unsigned i = 0; i != NumInScalars; ++i) {
8438 // Ignore undef inputs.
8439 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008440
Dan Gohman7f321562007-06-25 16:23:39 +00008441 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00008442 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00008443 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00008444 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00008445 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008446 break;
8447 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008448
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008449 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00008450 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008451 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
8452 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008453
Gabor Greifba36cb52008-08-28 21:40:38 +00008454 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00008455 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00008456 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00008457 VecIn2 = ExtractedFromVec;
8458 } else {
8459 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008460 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008461 break;
8462 }
8463 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008464
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008465 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00008466 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008467 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00008468 for (unsigned i = 0; i != NumInScalars; ++i) {
8469 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008470 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008471 continue;
8472 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008473
Rafael Espindola15684b22009-04-24 12:40:33 +00008474 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00008475 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00008476 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008477 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00008478 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
8479 if (ExtIndex > VT.getVectorNumElements())
8480 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008481
Nate Begeman5a5ca152009-04-29 05:20:52 +00008482 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008483 continue;
8484 }
8485
8486 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00008487 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008488 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008489 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008490
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008491 // We can't generate a shuffle node with mismatched input and output types.
8492 // Attempt to transform a single input vector to the correct type.
8493 if ((VT != VecIn1.getValueType())) {
8494 // We don't support shuffeling between TWO values of different types.
8495 if (VecIn2.getNode() != 0)
8496 return SDValue();
8497
8498 // We only support widening of vectors which are half the size of the
8499 // output registers. For example XMM->YMM widening on X86 with AVX.
8500 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
8501 return SDValue();
8502
James Molloy8cd08bf2012-09-10 14:01:21 +00008503 // If the input vector type has a different base type to the output
8504 // vector type, bail out.
8505 if (VecIn1.getValueType().getVectorElementType() !=
8506 VT.getVectorElementType())
8507 return SDValue();
8508
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00008509 // Widen the input vector by adding undef values.
8510 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
8511 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008512 }
8513
8514 // If VecIn2 is unused then change it to undef.
8515 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
8516
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008517 // Check that we were able to transform all incoming values to the same
8518 // type.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00008519 if (VecIn2.getValueType() != VecIn1.getValueType() ||
8520 VecIn1.getValueType() != VT)
8521 return SDValue();
8522
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008523 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00008524 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00008525 return SDValue();
8526
Dan Gohman7f321562007-06-25 16:23:39 +00008527 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00008528 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00008529 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008530 Ops[1] = VecIn2;
Nate Begeman9008ca62009-04-27 18:41:29 +00008531 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008532 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008533
Dan Gohman475871a2008-07-27 21:46:04 +00008534 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00008535}
8536
Dan Gohman475871a2008-07-27 21:46:04 +00008537SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00008538 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
8539 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
8540 // inputs come from at most two distinct vectors, turn this into a shuffle
8541 // node.
8542
8543 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00008544 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00008545 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00008546
Nadav Rotemb7e230d2012-07-14 21:30:27 +00008547 // Check if all of the operands are undefs.
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008548 if (ISD::allOperandsUndef(N))
Nadav Rotemb7e230d2012-07-14 21:30:27 +00008549 return DAG.getUNDEF(N->getValueType(0));
8550
Dan Gohman475871a2008-07-27 21:46:04 +00008551 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00008552}
8553
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008554SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
8555 EVT NVT = N->getValueType(0);
8556 SDValue V = N->getOperand(0);
8557
8558 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
8559 // Handle only simple case where vector being inserted and vector
8560 // being extracted are of same type, and are half size of larger vectors.
8561 EVT BigVT = V->getOperand(0).getValueType();
8562 EVT SmallVT = V->getOperand(1).getValueType();
8563 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
8564 return SDValue();
8565
Eli Friedman26323442011-12-07 00:11:56 +00008566 // Only handle cases where both indexes are constants with the same type.
8567 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
8568 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008569
Eli Friedman26323442011-12-07 00:11:56 +00008570 if (InsIdx && ExtIdx &&
8571 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
8572 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
8573 // Combine:
8574 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
8575 // Into:
8576 // indices are equal => V1
8577 // otherwise => (extract_subvec V1, ExtIdx)
8578 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
8579 return V->getOperand(1);
8580 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
8581 V->getOperand(0), N->getOperand(1));
8582 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00008583 }
8584
8585 return SDValue();
8586}
8587
Dan Gohman475871a2008-07-27 21:46:04 +00008588SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00008589 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00008590 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00008591
Mon P Wangaeb06d22008-11-10 04:46:22 +00008592 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00008593 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00008594
Craig Topperae1bec52012-04-09 05:16:56 +00008595 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00008596
Craig Topper481b79c2012-01-04 08:07:43 +00008597 // Canonicalize shuffle undef, undef -> undef
8598 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
8599 return DAG.getUNDEF(VT);
8600
8601 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
8602
8603 // Canonicalize shuffle v, v -> v, undef
8604 if (N0 == N1) {
8605 SmallVector<int, 8> NewMask;
8606 for (unsigned i = 0; i != NumElts; ++i) {
8607 int Idx = SVN->getMaskElt(i);
8608 if (Idx >= (int)NumElts) Idx -= NumElts;
8609 NewMask.push_back(Idx);
8610 }
8611 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
8612 &NewMask[0]);
8613 }
8614
8615 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
8616 if (N0.getOpcode() == ISD::UNDEF) {
8617 SmallVector<int, 8> NewMask;
8618 for (unsigned i = 0; i != NumElts; ++i) {
8619 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00008620 if (Idx >= 0) {
8621 if (Idx < (int)NumElts)
8622 Idx += NumElts;
8623 else
8624 Idx -= NumElts;
8625 }
8626 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00008627 }
8628 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
8629 &NewMask[0]);
8630 }
8631
8632 // Remove references to rhs if it is undef
8633 if (N1.getOpcode() == ISD::UNDEF) {
8634 bool Changed = false;
8635 SmallVector<int, 8> NewMask;
8636 for (unsigned i = 0; i != NumElts; ++i) {
8637 int Idx = SVN->getMaskElt(i);
8638 if (Idx >= (int)NumElts) {
8639 Idx = -1;
8640 Changed = true;
8641 }
8642 NewMask.push_back(Idx);
8643 }
8644 if (Changed)
8645 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
8646 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00008647
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008648 // If it is a splat, check if the argument vector is another splat or a
8649 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008650 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00008651 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00008652
Dan Gohman7f321562007-06-25 16:23:39 +00008653 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00008654 // not the number of vector elements, look through it. Be careful not to
8655 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008656 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00008657 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00008658 if (ConvInput.getValueType().isVector() &&
8659 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00008660 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00008661 }
8662
Dan Gohman7f321562007-06-25 16:23:39 +00008663 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008664 assert(V->getNumOperands() == NumElts &&
8665 "BUILD_VECTOR has wrong number of operands");
8666 SDValue Base;
8667 bool AllSame = true;
8668 for (unsigned i = 0; i != NumElts; ++i) {
8669 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
8670 Base = V->getOperand(i);
8671 break;
Evan Cheng917ec982006-07-21 08:25:53 +00008672 }
Evan Cheng917ec982006-07-21 08:25:53 +00008673 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00008674 // Splat of <u, u, u, u>, return <u, u, u, u>
8675 if (!Base.getNode())
8676 return N0;
8677 for (unsigned i = 0; i != NumElts; ++i) {
8678 if (V->getOperand(i) != Base) {
8679 AllSame = false;
8680 break;
8681 }
8682 }
8683 // Splat of <x, x, x, x>, return <x, x, x, x>
8684 if (AllSame)
8685 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00008686 }
8687 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00008688
8689 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008690 // and it reverses the swizzle of the previous shuffle then we can
8691 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00008692 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
8693 N1.getOpcode() == ISD::UNDEF) {
8694
Nadav Rotem4ac90812012-04-01 19:31:22 +00008695 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
8696
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008697 // Shuffle nodes can only reverse shuffles with a single non-undef value.
8698 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
8699 return SDValue();
8700
Craig Topperae1bec52012-04-09 05:16:56 +00008701 // The incoming shuffle must be of the same type as the result of the
8702 // current shuffle.
8703 assert(OtherSV->getOperand(0).getValueType() == VT &&
8704 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00008705
8706 for (unsigned i = 0; i != NumElts; ++i) {
8707 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00008708 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00008709 // Next, this index comes from the first value, which is the incoming
8710 // shuffle. Adopt the incoming index.
8711 if (Idx >= 0)
8712 Idx = OtherSV->getMaskElt(Idx);
8713
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008714 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00008715 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008716 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00008717 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00008718
8719 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00008720 }
8721
Dan Gohman475871a2008-07-27 21:46:04 +00008722 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00008723}
8724
Jim Grosbach9a526492010-06-23 16:07:42 +00008725SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
8726 if (!TLI.getShouldFoldAtomicFences())
8727 return SDValue();
8728
8729 SDValue atomic = N->getOperand(0);
8730 switch (atomic.getOpcode()) {
8731 case ISD::ATOMIC_CMP_SWAP:
8732 case ISD::ATOMIC_SWAP:
8733 case ISD::ATOMIC_LOAD_ADD:
8734 case ISD::ATOMIC_LOAD_SUB:
8735 case ISD::ATOMIC_LOAD_AND:
8736 case ISD::ATOMIC_LOAD_OR:
8737 case ISD::ATOMIC_LOAD_XOR:
8738 case ISD::ATOMIC_LOAD_NAND:
8739 case ISD::ATOMIC_LOAD_MIN:
8740 case ISD::ATOMIC_LOAD_MAX:
8741 case ISD::ATOMIC_LOAD_UMIN:
8742 case ISD::ATOMIC_LOAD_UMAX:
8743 break;
8744 default:
8745 return SDValue();
8746 }
8747
8748 SDValue fence = atomic.getOperand(0);
8749 if (fence.getOpcode() != ISD::MEMBARRIER)
8750 return SDValue();
8751
8752 switch (atomic.getOpcode()) {
8753 case ISD::ATOMIC_CMP_SWAP:
8754 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
8755 fence.getOperand(0),
8756 atomic.getOperand(1), atomic.getOperand(2),
8757 atomic.getOperand(3)), atomic.getResNo());
8758 case ISD::ATOMIC_SWAP:
8759 case ISD::ATOMIC_LOAD_ADD:
8760 case ISD::ATOMIC_LOAD_SUB:
8761 case ISD::ATOMIC_LOAD_AND:
8762 case ISD::ATOMIC_LOAD_OR:
8763 case ISD::ATOMIC_LOAD_XOR:
8764 case ISD::ATOMIC_LOAD_NAND:
8765 case ISD::ATOMIC_LOAD_MIN:
8766 case ISD::ATOMIC_LOAD_MAX:
8767 case ISD::ATOMIC_LOAD_UMIN:
8768 case ISD::ATOMIC_LOAD_UMAX:
8769 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
8770 fence.getOperand(0),
8771 atomic.getOperand(1), atomic.getOperand(2)),
8772 atomic.getResNo());
8773 default:
8774 return SDValue();
8775 }
8776}
8777
Evan Cheng44f1f092006-04-20 08:56:16 +00008778/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00008779/// an AND to a vector_shuffle with the destination vector and a zero vector.
8780/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00008781/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00008782SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00008783 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00008784 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008785 SDValue LHS = N->getOperand(0);
8786 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00008787 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008788 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00008789 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00008790 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008791 SmallVector<int, 8> Indices;
8792 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00008793 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008794 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00008795 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00008796 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00008797
8798 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00008799 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00008800 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00008801 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00008802 else
Dan Gohman475871a2008-07-27 21:46:04 +00008803 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008804 }
8805
8806 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00008807 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00008808 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008809 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008810
Dan Gohman7f321562007-06-25 16:23:39 +00008811 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00008812 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00008813 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00008814 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00008815 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8816 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008817 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00008818 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008819 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00008820 }
8821 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008822
Dan Gohman475871a2008-07-27 21:46:04 +00008823 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00008824}
8825
Dan Gohman7f321562007-06-25 16:23:39 +00008826/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00008827SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00008828 // After legalize, the target may be depending on adds and other
8829 // binary ops to provide legal ways to construct constants or other
8830 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00008831 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00008832
Bob Wilsond7273432010-12-17 23:06:49 +00008833 assert(N->getValueType(0).isVector() &&
8834 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00008835
Dan Gohman475871a2008-07-27 21:46:04 +00008836 SDValue LHS = N->getOperand(0);
8837 SDValue RHS = N->getOperand(1);
8838 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00008839 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00008840
Dan Gohman7f321562007-06-25 16:23:39 +00008841 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00008842 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00008843 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00008844 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00008845 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00008846 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008847 SDValue LHSOp = LHS.getOperand(i);
8848 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00008849 // If these two elements can't be folded, bail out.
8850 if ((LHSOp.getOpcode() != ISD::UNDEF &&
8851 LHSOp.getOpcode() != ISD::Constant &&
8852 LHSOp.getOpcode() != ISD::ConstantFP) ||
8853 (RHSOp.getOpcode() != ISD::UNDEF &&
8854 RHSOp.getOpcode() != ISD::Constant &&
8855 RHSOp.getOpcode() != ISD::ConstantFP))
8856 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008857
Evan Cheng7b336a82006-05-31 06:08:35 +00008858 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00008859 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
8860 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00008861 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008862 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00008863 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008864 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00008865 break;
8866 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008867
Bob Wilsond7273432010-12-17 23:06:49 +00008868 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00008869 EVT RVT = RHSOp.getValueType();
8870 if (RVT != VT) {
8871 // Integer BUILD_VECTOR operands may have types larger than the element
8872 // size (e.g., when the element type is not legal). Prior to type
8873 // legalization, the types may not match between the two BUILD_VECTORS.
8874 // Truncate one of the operands to make them match.
8875 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
8876 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
8877 } else {
8878 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
8879 VT = RVT;
8880 }
8881 }
Bob Wilsond7273432010-12-17 23:06:49 +00008882 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00008883 LHSOp, RHSOp);
8884 if (FoldOp.getOpcode() != ISD::UNDEF &&
8885 FoldOp.getOpcode() != ISD::Constant &&
8886 FoldOp.getOpcode() != ISD::ConstantFP)
8887 break;
8888 Ops.push_back(FoldOp);
8889 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00008890 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008891
Bob Wilsond7273432010-12-17 23:06:49 +00008892 if (Ops.size() == LHS.getNumOperands())
8893 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8894 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00008895 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008896
Dan Gohman475871a2008-07-27 21:46:04 +00008897 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00008898}
8899
Craig Topperdd201ff2012-09-11 01:45:21 +00008900/// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG.
8901SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) {
8902 // After legalize, the target may be depending on adds and other
8903 // binary ops to provide legal ways to construct constants or other
8904 // things. Simplifying them may result in a loss of legality.
8905 if (LegalOperations) return SDValue();
8906
8907 assert(N->getValueType(0).isVector() &&
8908 "SimplifyVUnaryOp only works on vectors!");
8909
8910 SDValue N0 = N->getOperand(0);
8911
8912 if (N0.getOpcode() != ISD::BUILD_VECTOR)
8913 return SDValue();
8914
8915 // Operand is a BUILD_VECTOR node, see if we can constant fold it.
8916 SmallVector<SDValue, 8> Ops;
8917 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
8918 SDValue Op = N0.getOperand(i);
8919 if (Op.getOpcode() != ISD::UNDEF &&
8920 Op.getOpcode() != ISD::ConstantFP)
8921 break;
8922 EVT EltVT = Op.getValueType();
8923 SDValue FoldOp = DAG.getNode(N->getOpcode(), N0.getDebugLoc(), EltVT, Op);
8924 if (FoldOp.getOpcode() != ISD::UNDEF &&
8925 FoldOp.getOpcode() != ISD::ConstantFP)
8926 break;
8927 Ops.push_back(FoldOp);
8928 AddToWorkList(FoldOp.getNode());
8929 }
8930
8931 if (Ops.size() != N0.getNumOperands())
8932 return SDValue();
8933
8934 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8935 N0.getValueType(), &Ops[0], Ops.size());
8936}
8937
Bill Wendling836ca7d2009-01-30 23:59:18 +00008938SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
8939 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00008940 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008941
Bill Wendling836ca7d2009-01-30 23:59:18 +00008942 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00008943 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008944
Nate Begemanf845b452005-10-08 00:29:44 +00008945 // If we got a simplified select_cc node back from SimplifySelectCC, then
8946 // break it down into a new SETCC node, and a new SELECT node, and then return
8947 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00008948 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008949 // Check to see if we got a select_cc back (to turn into setcc/select).
8950 // Otherwise, just return whatever node we got back, like fabs.
8951 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008952 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
8953 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008954 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008955 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00008956 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008957 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
8958 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00008959 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008960
Nate Begemanf845b452005-10-08 00:29:44 +00008961 return SCC;
8962 }
Dan Gohman475871a2008-07-27 21:46:04 +00008963 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008964}
8965
Chris Lattner40c62d52005-10-18 06:04:22 +00008966/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
8967/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00008968/// select. Callers of this should assume that TheSelect is deleted if this
8969/// returns true. As such, they should return the appropriate thing (e.g. the
8970/// node) back to the top-level of the DAG combiner loop to avoid it being
8971/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00008972bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00008973 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008974
Nadav Rotemf94fdb62011-02-11 19:57:47 +00008975 // Cannot simplify select with vector condition
8976 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
8977
Chris Lattner40c62d52005-10-18 06:04:22 +00008978 // If this is a select from two identical things, try to pull the operation
8979 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00008980 if (LHS.getOpcode() != RHS.getOpcode() ||
8981 !LHS.hasOneUse() || !RHS.hasOneUse())
8982 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008983
Chris Lattner18061612010-09-21 15:46:59 +00008984 // If this is a load and the token chain is identical, replace the select
8985 // of two loads with a load through a select of the address to load from.
8986 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
8987 // constants have been dropped into the constant pool.
8988 if (LHS.getOpcode() == ISD::LOAD) {
8989 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
8990 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008991
Chris Lattner18061612010-09-21 15:46:59 +00008992 // Token chains must be identical.
8993 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008994 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00008995 LLD->isVolatile() || RLD->isVolatile() ||
8996 // If this is an EXTLOAD, the VT's must match.
8997 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00008998 // If this is an EXTLOAD, the kind of extension must match.
8999 (LLD->getExtensionType() != RLD->getExtensionType() &&
9000 // The only exception is if one of the extensions is anyext.
9001 LLD->getExtensionType() != ISD::EXTLOAD &&
9002 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00009003 // FIXME: this discards src value information. This is
9004 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00009005 // both potential memory locations. Since we are discarding
9006 // src value info, don't do the transformation if the memory
9007 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00009008 LLD->getPointerInfo().getAddrSpace() != 0 ||
9009 RLD->getPointerInfo().getAddrSpace() != 0)
9010 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009011
Chris Lattnerf1658062010-09-21 15:58:55 +00009012 // Check that the select condition doesn't reach either load. If so,
9013 // folding this will induce a cycle into the DAG. If not, this is safe to
9014 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00009015 SDValue Addr;
9016 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00009017 SDNode *CondNode = TheSelect->getOperand(0).getNode();
9018 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
9019 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
9020 return false;
9021 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
9022 LLD->getBasePtr().getValueType(),
9023 TheSelect->getOperand(0), LLD->getBasePtr(),
9024 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00009025 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00009026 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
9027 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
9028
9029 if ((LLD->hasAnyUseOfValue(1) &&
9030 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00009031 (RLD->hasAnyUseOfValue(1) &&
9032 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00009033 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009034
Chris Lattnerf1658062010-09-21 15:58:55 +00009035 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
9036 LLD->getBasePtr().getValueType(),
9037 TheSelect->getOperand(0),
9038 TheSelect->getOperand(1),
9039 LLD->getBasePtr(), RLD->getBasePtr(),
9040 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00009041 }
9042
Chris Lattnerf1658062010-09-21 15:58:55 +00009043 SDValue Load;
9044 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
9045 Load = DAG.getLoad(TheSelect->getValueType(0),
9046 TheSelect->getDebugLoc(),
9047 // FIXME: Discards pointer info.
9048 LLD->getChain(), Addr, MachinePointerInfo(),
9049 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009050 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00009051 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00009052 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
9053 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00009054 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00009055 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00009056 // FIXME: Discards pointer info.
9057 LLD->getChain(), Addr, MachinePointerInfo(),
9058 LLD->getMemoryVT(), LLD->isVolatile(),
9059 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00009060 }
Chris Lattnerf1658062010-09-21 15:58:55 +00009061
9062 // Users of the select now use the result of the load.
9063 CombineTo(TheSelect, Load);
9064
9065 // Users of the old loads now use the new load's chain. We know the
9066 // old-load value is dead now.
9067 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
9068 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
9069 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00009070 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009071
Chris Lattner40c62d52005-10-18 06:04:22 +00009072 return false;
9073}
9074
Chris Lattner600fec32009-03-11 05:08:08 +00009075/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
9076/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00009077SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00009078 SDValue N2, SDValue N3,
9079 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00009080 // (x ? y : y) -> y.
9081 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009082
Owen Andersone50ed302009-08-10 22:56:29 +00009083 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00009084 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
9085 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
9086 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009087
9088 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00009089 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009090 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00009091 if (SCC.getNode()) AddToWorkList(SCC.getNode());
9092 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009093
9094 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00009095 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009096 return N2;
9097 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00009098 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009099 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00009100
Nate Begemanf845b452005-10-08 00:29:44 +00009101 // Check to see if we can simplify the select into an fabs node
9102 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
9103 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00009104 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009105 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
9106 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
9107 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
9108 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009109 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009110
Nate Begemanf845b452005-10-08 00:29:44 +00009111 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
9112 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
9113 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
9114 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009115 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00009116 }
9117 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009118
Chris Lattner600fec32009-03-11 05:08:08 +00009119 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
9120 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
9121 // in it. This is a win when the constant is not otherwise available because
9122 // it replaces two constant pool loads with one. We only do this if the FP
9123 // type is known to be legal, because if it isn't, then we are before legalize
9124 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00009125 // messing with soft float) and if the ConstantFP is not legal, because if
9126 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00009127 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
9128 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
9129 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00009130 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
9131 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00009132 // If both constants have multiple uses, then we won't need to do an
9133 // extra load, they are likely around in registers for other users.
9134 (TV->hasOneUse() || FV->hasOneUse())) {
9135 Constant *Elts[] = {
9136 const_cast<ConstantFP*>(FV->getConstantFPValue()),
9137 const_cast<ConstantFP*>(TV->getConstantFPValue())
9138 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009139 Type *FPTy = Elts[0]->getType();
Micah Villmow3574eca2012-10-08 16:38:25 +00009140 const DataLayout &TD = *TLI.getDataLayout();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009141
Chris Lattner600fec32009-03-11 05:08:08 +00009142 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00009143 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00009144 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
9145 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00009146 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00009147
9148 // Get the offsets to the 0 and 1 element of the array so that we can
9149 // select between them.
9150 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00009151 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00009152 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009153
Chris Lattner600fec32009-03-11 05:08:08 +00009154 SDValue Cond = DAG.getSetCC(DL,
9155 TLI.getSetCCResultType(N0.getValueType()),
9156 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00009157 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009158 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
9159 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00009160 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009161 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
9162 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00009163 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009164 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00009165 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00009166 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00009167
9168 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009169 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009170
Nate Begemanf845b452005-10-08 00:29:44 +00009171 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00009172 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00009173 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00009174 (N1C->isNullValue() || // (a < 0) ? b : 0
9175 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00009176 EVT XType = N0.getValueType();
9177 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00009178 if (XType.bitsGE(AType)) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00009179 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00009180 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00009181 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
9182 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00009183 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00009184 SDValue ShCt = DAG.getConstant(ShCtV,
9185 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00009186 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009187 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00009188 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009189
Duncan Sands8e4eb092008-06-08 20:54:56 +00009190 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009191 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009192 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009193 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009194
9195 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009196 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009197
Bill Wendling9729c5a2009-01-31 03:12:48 +00009198 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009199 XType, N0,
9200 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009201 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00009202 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009203
Duncan Sands8e4eb092008-06-08 20:54:56 +00009204 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009205 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009206 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009207 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009208
9209 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009210 }
9211 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009212
Owen Andersoned1088a2010-09-22 22:58:22 +00009213 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
9214 // where y is has a single bit set.
9215 // A plaintext description would be, we can turn the SELECT_CC into an AND
9216 // when the condition can be materialized as an all-ones register. Any
9217 // single bit-test can be materialized as an all-ones register with
9218 // shift-left and shift-right-arith.
9219 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
9220 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009221 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00009222 N2C && N2C->isNullValue()) {
9223 SDValue AndLHS = N0->getOperand(0);
9224 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
9225 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
9226 // Shift the tested bit over the sign bit.
9227 APInt AndMask = ConstAndRHS->getAPIntValue();
9228 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00009229 DAG.getConstant(AndMask.countLeadingZeros(),
9230 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00009231 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009232
Owen Andersoned1088a2010-09-22 22:58:22 +00009233 // Now arithmetic right shift it all the way over, so the result is either
9234 // all-ones, or zero.
9235 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00009236 DAG.getConstant(AndMask.getBitWidth()-1,
9237 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00009238 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009239
Owen Andersoned1088a2010-09-22 22:58:22 +00009240 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
9241 }
9242 }
9243
Nate Begeman07ed4172005-10-10 21:26:48 +00009244 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00009245 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00009246 TLI.getBooleanContents(N0.getValueType().isVector()) ==
9247 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009248
Chris Lattner1eba01e2007-04-11 06:50:51 +00009249 // If the caller doesn't want us to simplify this into a zext of a compare,
9250 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00009251 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00009252 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00009253
Nate Begeman07ed4172005-10-10 21:26:48 +00009254 // Get a SetCC of the condition
9255 // FIXME: Should probably make sure that setcc is legal if we ever have a
9256 // target where it isn't.
Dan Gohman475871a2008-07-27 21:46:04 +00009257 SDValue Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00009258 // cast from setcc result type to select result type
Duncan Sands25cf2272008-11-24 14:53:14 +00009259 if (LegalTypes) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009260 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00009261 N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00009262 if (N2.getValueType().bitsLT(SCC.getValueType()))
Bill Wendling9729c5a2009-01-31 03:12:48 +00009263 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
Chris Lattner555d8d62006-12-07 22:36:47 +00009264 else
Bill Wendling9729c5a2009-01-31 03:12:48 +00009265 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009266 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00009267 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00009268 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00009269 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009270 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00009271 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009272
Gabor Greifba36cb52008-08-28 21:40:38 +00009273 AddToWorkList(SCC.getNode());
9274 AddToWorkList(Temp.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00009275
Dan Gohman002e5d02008-03-13 22:13:53 +00009276 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00009277 return Temp;
Bill Wendling836ca7d2009-01-30 23:59:18 +00009278
Nate Begeman07ed4172005-10-10 21:26:48 +00009279 // shl setcc result by log2 n2c
Bill Wendling836ca7d2009-01-30 23:59:18 +00009280 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00009281 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00009282 getShiftAmountTy(Temp.getValueType())));
Nate Begeman07ed4172005-10-10 21:26:48 +00009283 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009284
Nate Begemanf845b452005-10-08 00:29:44 +00009285 // Check to see if this is the equivalent of setcc
9286 // FIXME: Turn all of these into setcc if setcc if setcc is legal
9287 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00009288 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00009289 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00009290 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00009291 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009292 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00009293 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009294 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00009295 return Res;
9296 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009297
Bill Wendling836ca7d2009-01-30 23:59:18 +00009298 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00009299 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00009300 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00009301 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009302 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009303 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00009304 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00009305 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00009306 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009307 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00009308 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009309 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
9310 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00009311 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00009312 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00009313 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00009314 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009315 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00009316 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009317 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00009318 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009319 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00009320 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009321 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00009322 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00009323 }
9324 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009325
Benjamin Kramercde51102010-07-08 12:09:56 +00009326 // Check to see if this is an integer abs.
9327 // select_cc setg[te] X, 0, X, -X ->
9328 // select_cc setgt X, -1, X, -X ->
9329 // select_cc setl[te] X, 0, -X, X ->
9330 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00009331 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00009332 if (N1C) {
9333 ConstantSDNode *SubC = NULL;
9334 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
9335 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
9336 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
9337 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
9338 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
9339 (N1C->isOne() && CC == ISD::SETLT)) &&
9340 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
9341 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
9342
Owen Andersone50ed302009-08-10 22:56:29 +00009343 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00009344 if (SubC && SubC->isNullValue() && XType.isInteger()) {
9345 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
9346 N0,
9347 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009348 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00009349 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
9350 XType, N0, Shift);
9351 AddToWorkList(Shift.getNode());
9352 AddToWorkList(Add.getNode());
9353 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00009354 }
9355 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009356
Dan Gohman475871a2008-07-27 21:46:04 +00009357 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00009358}
9359
Evan Chengfa1eb272007-02-08 22:13:59 +00009360/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00009361SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00009362 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009363 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009364 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00009365 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009366 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00009367}
9368
Nate Begeman69575232005-10-20 02:15:44 +00009369/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
9370/// return a DAG expression to select that will generate the same value by
9371/// multiplying by a magic number. See:
9372/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00009373SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00009374 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00009375 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009376
Andrew Lenharth232c9102006-06-12 16:07:18 +00009377 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009378 ii != ee; ++ii)
9379 AddToWorkList(*ii);
9380 return S;
Nate Begeman69575232005-10-20 02:15:44 +00009381}
9382
9383/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
9384/// return a DAG expression to select that will generate the same value by
9385/// multiplying by a magic number. See:
9386/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00009387SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00009388 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00009389 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00009390
Andrew Lenharth232c9102006-06-12 16:07:18 +00009391 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009392 ii != ee; ++ii)
9393 AddToWorkList(*ii);
9394 return S;
Nate Begeman69575232005-10-20 02:15:44 +00009395}
9396
Nate Begemancc66cdd2009-09-25 06:05:26 +00009397/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00009398// to alias with anything but itself. Provides base object and offset as
9399// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009400static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Roman Divacky2943e372012-09-05 22:15:49 +00009401 const GlobalValue *&GV, const void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00009402 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009403 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00009404
Jim Laskey71382342006-10-07 23:37:56 +00009405 // If it's an adding a simple constant then integrate the offset.
9406 if (Base.getOpcode() == ISD::ADD) {
9407 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
9408 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00009409 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00009410 }
9411 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009412
Nate Begemancc66cdd2009-09-25 06:05:26 +00009413 // Return the underlying GlobalValue, and update the Offset. Return false
9414 // for GlobalAddressSDNode since the same GlobalAddress may be represented
9415 // by multiple nodes with different offsets.
9416 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
9417 GV = G->getGlobal();
9418 Offset += G->getOffset();
9419 return false;
9420 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009421
Nate Begemancc66cdd2009-09-25 06:05:26 +00009422 // Return the underlying Constant value, and update the Offset. Return false
9423 // for ConstantSDNodes since the same constant pool entry may be represented
9424 // by multiple nodes with different offsets.
9425 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
Roman Divacky2943e372012-09-05 22:15:49 +00009426 CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal()
9427 : (const void *)C->getConstVal();
Nate Begemancc66cdd2009-09-25 06:05:26 +00009428 Offset += C->getOffset();
9429 return false;
9430 }
Jim Laskey71382342006-10-07 23:37:56 +00009431 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009432 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00009433}
9434
9435/// isAlias - Return true if there is any possibility that the two addresses
9436/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00009437bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00009438 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009439 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009440 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00009441 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009442 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009443 unsigned SrcValueAlign2,
9444 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00009445 // If they are the same then they must be aliases.
9446 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00009447
Jim Laskey71382342006-10-07 23:37:56 +00009448 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00009449 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00009450 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00009451 const GlobalValue *GV1, *GV2;
Roman Divacky2943e372012-09-05 22:15:49 +00009452 const void *CV1, *CV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00009453 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
9454 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009455
Nate Begemancc66cdd2009-09-25 06:05:26 +00009456 // If they have a same base address then check to see if they overlap.
9457 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009458 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009459
Owen Anderson4a9f1502010-09-20 20:39:59 +00009460 // It is possible for different frame indices to alias each other, mostly
9461 // when tail call optimization reuses return address slots for arguments.
9462 // To catch this case, look up the actual index of frame indices to compute
9463 // the real alias relationship.
9464 if (isFrameIndex1 && isFrameIndex2) {
9465 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9466 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
9467 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
9468 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
9469 }
9470
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009471 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00009472 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009473 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
9474 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00009475
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009476 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
9477 // compared to the size and offset of the access, we may be able to prove they
9478 // do not alias. This check is conservative for now to catch cases created by
9479 // splitting vector types.
9480 if ((SrcValueAlign1 == SrcValueAlign2) &&
9481 (SrcValueOffset1 != SrcValueOffset2) &&
9482 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
9483 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
9484 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009485
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009486 // There is no overlap between these relatively aligned accesses of similar
9487 // size, return no alias.
9488 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
9489 return false;
9490 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009491
Jim Laskey07a27092006-10-18 19:08:31 +00009492 if (CombinerGlobalAA) {
9493 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00009494 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
9495 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
9496 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00009497 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009498 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
9499 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00009500 if (AAResult == AliasAnalysis::NoAlias)
9501 return false;
9502 }
Jim Laskey096c22e2006-10-18 12:29:57 +00009503
9504 // Otherwise we have to assume they alias.
9505 return true;
Jim Laskey71382342006-10-07 23:37:56 +00009506}
9507
9508/// FindAliasInfo - Extracts the relevant alias information from the memory
9509/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00009510bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00009511 SDValue &Ptr, int64_t &Size,
9512 const Value *&SrcValue,
9513 int &SrcValueOffset,
9514 unsigned &SrcValueAlign,
9515 const MDNode *&TBAAInfo) const {
9516 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
9517
9518 Ptr = LS->getBasePtr();
9519 Size = LS->getMemoryVT().getSizeInBits() >> 3;
9520 SrcValue = LS->getSrcValue();
9521 SrcValueOffset = LS->getSrcValueOffset();
9522 SrcValueAlign = LS->getOriginalAlignment();
9523 TBAAInfo = LS->getTBAAInfo();
9524 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00009525}
9526
Jim Laskey6ff23e52006-10-04 16:53:27 +00009527/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
9528/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00009529void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
9530 SmallVector<SDValue, 8> &Aliases) {
9531 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009532 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00009533
Jim Laskey279f0532006-09-25 16:29:54 +00009534 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00009535 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009536 int64_t Size;
9537 const Value *SrcValue;
9538 int SrcValueOffset;
9539 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009540 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009541 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009542 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00009543
Jim Laskey6ff23e52006-10-04 16:53:27 +00009544 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00009545 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00009546 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009547
Jim Laskeybc588b82006-10-05 15:07:25 +00009548 // Look at each chain and determine if it is an alias. If so, add it to the
9549 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00009550 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00009551 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00009552 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00009553 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009554
9555 // For TokenFactor nodes, look at each operand and only continue up the
9556 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00009557 // find more and revert to original chain since the xform is unlikely to be
9558 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009559 //
9560 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00009561 // chain we found before we hit a tokenfactor rather than the original
9562 // chain.
9563 if (Depth > 6 || Aliases.size() == 2) {
9564 Aliases.clear();
9565 Aliases.push_back(OriginalChain);
9566 break;
9567 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009568
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009569 // Don't bother if we've been before.
9570 if (!Visited.insert(Chain.getNode()))
9571 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00009572
Jim Laskeybc588b82006-10-05 15:07:25 +00009573 switch (Chain.getOpcode()) {
9574 case ISD::EntryToken:
9575 // Entry token is ideal chain operand, but handled in FindBetterChain.
9576 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00009577
Jim Laskeybc588b82006-10-05 15:07:25 +00009578 case ISD::LOAD:
9579 case ISD::STORE: {
9580 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00009581 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009582 int64_t OpSize;
9583 const Value *OpSrcValue;
9584 int OpSrcValueOffset;
9585 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009586 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00009587 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009588 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009589 OpSrcValueAlign,
9590 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00009591
Jim Laskeybc588b82006-10-05 15:07:25 +00009592 // If chain is alias then stop here.
9593 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009594 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009595 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009596 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009597 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00009598 Aliases.push_back(Chain);
9599 } else {
9600 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00009601 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00009602 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00009603 }
Jim Laskeybc588b82006-10-05 15:07:25 +00009604 break;
9605 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009606
Jim Laskeybc588b82006-10-05 15:07:25 +00009607 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009608 // We have to check each of the operands of the token factor for "small"
9609 // token factors, so we queue them up. Adding the operands to the queue
9610 // (stack) in reverse order maintains the original order and increases the
9611 // likelihood that getNode will find a matching token factor (CSE.)
9612 if (Chain.getNumOperands() > 16) {
9613 Aliases.push_back(Chain);
9614 break;
9615 }
Jim Laskeybc588b82006-10-05 15:07:25 +00009616 for (unsigned n = Chain.getNumOperands(); n;)
9617 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00009618 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00009619 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00009620
Jim Laskeybc588b82006-10-05 15:07:25 +00009621 default:
9622 // For all other instructions we will just have to take what we can get.
9623 Aliases.push_back(Chain);
9624 break;
Jim Laskey279f0532006-09-25 16:29:54 +00009625 }
9626 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00009627}
9628
9629/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
9630/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00009631SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
9632 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00009633
Jim Laskey6ff23e52006-10-04 16:53:27 +00009634 // Accumulate all the aliases to this node.
9635 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00009636
Dan Gohman71dc7c92011-05-17 22:20:36 +00009637 // If no operands then chain to entry token.
9638 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00009639 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00009640
9641 // If a single operand then chain to it. We don't need to revisit it.
9642 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00009643 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009644
Jim Laskey6ff23e52006-10-04 16:53:27 +00009645 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009646 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009647 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00009648}
9649
Nate Begeman1d4d4142005-09-01 00:19:25 +00009650// SelectionDAG::Combine - This is the entry point for the file.
9651//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00009652void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00009653 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00009654 /// run - This is the main entry point to this class.
9655 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00009656 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00009657}